blob: 54e70be16ec6353775040d2d69dfab1fc066369c [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- ParseDecl.cpp - Declaration Parsing ------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Declaration portions of the Parser interfaces.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/Parse/Parser.h"
Chris Lattner500d3292009-01-29 05:15:15 +000015#include "clang/Parse/ParseDiagnostic.h"
Chris Lattner31e05722007-08-26 06:24:45 +000016#include "clang/Parse/Scope.h"
Chris Lattnerc46d1a12008-10-20 06:45:43 +000017#include "ExtensionRAIIObject.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000018#include "llvm/ADT/SmallSet.h"
19using namespace clang;
20
21//===----------------------------------------------------------------------===//
22// C99 6.7: Declarations.
23//===----------------------------------------------------------------------===//
24
25/// ParseTypeName
26/// type-name: [C99 6.7.6]
27/// specifier-qualifier-list abstract-declarator[opt]
Sebastian Redl4c5d3202008-11-21 19:14:01 +000028///
29/// Called type-id in C++.
Douglas Gregor809070a2009-02-18 17:45:20 +000030Action::TypeResult Parser::ParseTypeName() {
Reid Spencer5f016e22007-07-11 17:01:13 +000031 // Parse the common declaration-specifiers piece.
32 DeclSpec DS;
33 ParseSpecifierQualifierList(DS);
34
35 // Parse the abstract-declarator, if present.
36 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
37 ParseDeclarator(DeclaratorInfo);
38
Chris Lattnereaaebc72009-04-25 08:06:05 +000039 if (DeclaratorInfo.isInvalidType())
Douglas Gregor809070a2009-02-18 17:45:20 +000040 return true;
41
42 return Actions.ActOnTypeName(CurScope, DeclaratorInfo);
Reid Spencer5f016e22007-07-11 17:01:13 +000043}
44
45/// ParseAttributes - Parse a non-empty attributes list.
46///
47/// [GNU] attributes:
48/// attribute
49/// attributes attribute
50///
51/// [GNU] attribute:
52/// '__attribute__' '(' '(' attribute-list ')' ')'
53///
54/// [GNU] attribute-list:
55/// attrib
56/// attribute_list ',' attrib
57///
58/// [GNU] attrib:
59/// empty
60/// attrib-name
61/// attrib-name '(' identifier ')'
62/// attrib-name '(' identifier ',' nonempty-expr-list ')'
63/// attrib-name '(' argument-expression-list [C99 6.5.2] ')'
64///
65/// [GNU] attrib-name:
66/// identifier
67/// typespec
68/// typequal
69/// storageclass
70///
71/// FIXME: The GCC grammar/code for this construct implies we need two
72/// token lookahead. Comment from gcc: "If they start with an identifier
73/// which is followed by a comma or close parenthesis, then the arguments
74/// start with that identifier; otherwise they are an expression list."
75///
76/// At the moment, I am not doing 2 token lookahead. I am also unaware of
77/// any attributes that don't work (based on my limited testing). Most
78/// attributes are very simple in practice. Until we find a bug, I don't see
79/// a pressing need to implement the 2 token lookahead.
80
Sebastian Redlab197ba2009-02-09 18:23:29 +000081AttributeList *Parser::ParseAttributes(SourceLocation *EndLoc) {
Chris Lattner04d66662007-10-09 17:33:22 +000082 assert(Tok.is(tok::kw___attribute) && "Not an attribute list!");
Reid Spencer5f016e22007-07-11 17:01:13 +000083
84 AttributeList *CurrAttr = 0;
85
Chris Lattner04d66662007-10-09 17:33:22 +000086 while (Tok.is(tok::kw___attribute)) {
Reid Spencer5f016e22007-07-11 17:01:13 +000087 ConsumeToken();
88 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after,
89 "attribute")) {
90 SkipUntil(tok::r_paren, true); // skip until ) or ;
91 return CurrAttr;
92 }
93 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after, "(")) {
94 SkipUntil(tok::r_paren, true); // skip until ) or ;
95 return CurrAttr;
96 }
97 // Parse the attribute-list. e.g. __attribute__(( weak, alias("__f") ))
Chris Lattner04d66662007-10-09 17:33:22 +000098 while (Tok.is(tok::identifier) || isDeclarationSpecifier() ||
99 Tok.is(tok::comma)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000100
Chris Lattner04d66662007-10-09 17:33:22 +0000101 if (Tok.is(tok::comma)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000102 // allows for empty/non-empty attributes. ((__vector_size__(16),,,,))
103 ConsumeToken();
104 continue;
105 }
106 // we have an identifier or declaration specifier (const, int, etc.)
107 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
108 SourceLocation AttrNameLoc = ConsumeToken();
109
110 // check if we have a "paramterized" attribute
Chris Lattner04d66662007-10-09 17:33:22 +0000111 if (Tok.is(tok::l_paren)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000112 ConsumeParen(); // ignore the left paren loc for now
113
Chris Lattner04d66662007-10-09 17:33:22 +0000114 if (Tok.is(tok::identifier)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000115 IdentifierInfo *ParmName = Tok.getIdentifierInfo();
116 SourceLocation ParmLoc = ConsumeToken();
117
Chris Lattner04d66662007-10-09 17:33:22 +0000118 if (Tok.is(tok::r_paren)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000119 // __attribute__(( mode(byte) ))
120 ConsumeParen(); // ignore the right paren loc for now
121 CurrAttr = new AttributeList(AttrName, AttrNameLoc,
122 ParmName, ParmLoc, 0, 0, CurrAttr);
Chris Lattner04d66662007-10-09 17:33:22 +0000123 } else if (Tok.is(tok::comma)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000124 ConsumeToken();
125 // __attribute__(( format(printf, 1, 2) ))
Sebastian Redla55e52c2008-11-25 22:21:31 +0000126 ExprVector ArgExprs(Actions);
Reid Spencer5f016e22007-07-11 17:01:13 +0000127 bool ArgExprsOk = true;
128
129 // now parse the non-empty comma separated list of expressions
130 while (1) {
Sebastian Redl2f7ece72008-12-11 21:36:32 +0000131 OwningExprResult ArgExpr(ParseAssignmentExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000132 if (ArgExpr.isInvalid()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000133 ArgExprsOk = false;
134 SkipUntil(tok::r_paren);
135 break;
136 } else {
Sebastian Redleffa8d12008-12-10 00:02:53 +0000137 ArgExprs.push_back(ArgExpr.release());
Reid Spencer5f016e22007-07-11 17:01:13 +0000138 }
Chris Lattner04d66662007-10-09 17:33:22 +0000139 if (Tok.isNot(tok::comma))
Reid Spencer5f016e22007-07-11 17:01:13 +0000140 break;
141 ConsumeToken(); // Eat the comma, move to the next argument
142 }
Chris Lattner04d66662007-10-09 17:33:22 +0000143 if (ArgExprsOk && Tok.is(tok::r_paren)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000144 ConsumeParen(); // ignore the right paren loc for now
145 CurrAttr = new AttributeList(AttrName, AttrNameLoc, ParmName,
Sebastian Redla55e52c2008-11-25 22:21:31 +0000146 ParmLoc, ArgExprs.take(), ArgExprs.size(), CurrAttr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000147 }
148 }
149 } else { // not an identifier
150 // parse a possibly empty comma separated list of expressions
Chris Lattner04d66662007-10-09 17:33:22 +0000151 if (Tok.is(tok::r_paren)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000152 // __attribute__(( nonnull() ))
153 ConsumeParen(); // ignore the right paren loc for now
154 CurrAttr = new AttributeList(AttrName, AttrNameLoc,
155 0, SourceLocation(), 0, 0, CurrAttr);
156 } else {
157 // __attribute__(( aligned(16) ))
Sebastian Redla55e52c2008-11-25 22:21:31 +0000158 ExprVector ArgExprs(Actions);
Reid Spencer5f016e22007-07-11 17:01:13 +0000159 bool ArgExprsOk = true;
160
161 // now parse the list of expressions
162 while (1) {
Sebastian Redl2f7ece72008-12-11 21:36:32 +0000163 OwningExprResult ArgExpr(ParseAssignmentExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000164 if (ArgExpr.isInvalid()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000165 ArgExprsOk = false;
166 SkipUntil(tok::r_paren);
167 break;
168 } else {
Sebastian Redleffa8d12008-12-10 00:02:53 +0000169 ArgExprs.push_back(ArgExpr.release());
Reid Spencer5f016e22007-07-11 17:01:13 +0000170 }
Chris Lattner04d66662007-10-09 17:33:22 +0000171 if (Tok.isNot(tok::comma))
Reid Spencer5f016e22007-07-11 17:01:13 +0000172 break;
173 ConsumeToken(); // Eat the comma, move to the next argument
174 }
175 // Match the ')'.
Chris Lattner04d66662007-10-09 17:33:22 +0000176 if (ArgExprsOk && Tok.is(tok::r_paren)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000177 ConsumeParen(); // ignore the right paren loc for now
Sebastian Redla55e52c2008-11-25 22:21:31 +0000178 CurrAttr = new AttributeList(AttrName, AttrNameLoc, 0,
179 SourceLocation(), ArgExprs.take(), ArgExprs.size(),
Reid Spencer5f016e22007-07-11 17:01:13 +0000180 CurrAttr);
181 }
182 }
183 }
184 } else {
185 CurrAttr = new AttributeList(AttrName, AttrNameLoc,
186 0, SourceLocation(), 0, 0, CurrAttr);
187 }
188 }
189 if (ExpectAndConsume(tok::r_paren, diag::err_expected_rparen))
Reid Spencer5f016e22007-07-11 17:01:13 +0000190 SkipUntil(tok::r_paren, false);
Sebastian Redlab197ba2009-02-09 18:23:29 +0000191 SourceLocation Loc = Tok.getLocation();;
192 if (ExpectAndConsume(tok::r_paren, diag::err_expected_rparen)) {
193 SkipUntil(tok::r_paren, false);
194 }
195 if (EndLoc)
196 *EndLoc = Loc;
Reid Spencer5f016e22007-07-11 17:01:13 +0000197 }
198 return CurrAttr;
199}
200
Steve Narofff59e17e2008-12-24 20:59:21 +0000201/// FuzzyParseMicrosoftDeclSpec. When -fms-extensions is enabled, this
202/// routine is called to skip/ignore tokens that comprise the MS declspec.
203void Parser::FuzzyParseMicrosoftDeclSpec() {
204 assert(Tok.is(tok::kw___declspec) && "Not a declspec!");
205 ConsumeToken();
206 if (Tok.is(tok::l_paren)) {
207 unsigned short savedParenCount = ParenCount;
208 do {
209 ConsumeAnyToken();
210 } while (ParenCount > savedParenCount && Tok.isNot(tok::eof));
211 }
212 return;
213}
214
Reid Spencer5f016e22007-07-11 17:01:13 +0000215/// ParseDeclaration - Parse a full 'declaration', which consists of
216/// declaration-specifiers, some number of declarators, and a semicolon.
Chris Lattner97144fc2009-04-02 04:16:50 +0000217/// 'Context' should be a Declarator::TheContext value. This returns the
218/// location of the semicolon in DeclEnd.
Chris Lattner8f08cb72007-08-25 06:57:03 +0000219///
220/// declaration: [C99 6.7]
221/// block-declaration ->
222/// simple-declaration
223/// others [FIXME]
Douglas Gregoradcac882008-12-01 23:54:00 +0000224/// [C++] template-declaration
Chris Lattner8f08cb72007-08-25 06:57:03 +0000225/// [C++] namespace-definition
Douglas Gregorf780abc2008-12-30 03:27:21 +0000226/// [C++] using-directive
227/// [C++] using-declaration [TODO]
Sebastian Redl50de12f2009-03-24 22:27:57 +0000228/// [C++0x] static_assert-declaration
Chris Lattner8f08cb72007-08-25 06:57:03 +0000229/// others... [FIXME]
230///
Chris Lattner97144fc2009-04-02 04:16:50 +0000231Parser::DeclGroupPtrTy Parser::ParseDeclaration(unsigned Context,
232 SourceLocation &DeclEnd) {
Chris Lattner682bf922009-03-29 16:50:03 +0000233 DeclPtrTy SingleDecl;
Chris Lattner8f08cb72007-08-25 06:57:03 +0000234 switch (Tok.getKind()) {
Douglas Gregoradcac882008-12-01 23:54:00 +0000235 case tok::kw_template:
Douglas Gregor1426e532009-05-12 21:31:51 +0000236 case tok::kw_export:
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000237 SingleDecl = ParseDeclarationStartingWithTemplate(Context, DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +0000238 break;
Chris Lattner8f08cb72007-08-25 06:57:03 +0000239 case tok::kw_namespace:
Chris Lattner97144fc2009-04-02 04:16:50 +0000240 SingleDecl = ParseNamespace(Context, DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +0000241 break;
Douglas Gregorf780abc2008-12-30 03:27:21 +0000242 case tok::kw_using:
Chris Lattner97144fc2009-04-02 04:16:50 +0000243 SingleDecl = ParseUsingDirectiveOrDeclaration(Context, DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +0000244 break;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000245 case tok::kw_static_assert:
Chris Lattner97144fc2009-04-02 04:16:50 +0000246 SingleDecl = ParseStaticAssertDeclaration(DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +0000247 break;
Chris Lattner8f08cb72007-08-25 06:57:03 +0000248 default:
Chris Lattner97144fc2009-04-02 04:16:50 +0000249 return ParseSimpleDeclaration(Context, DeclEnd);
Chris Lattner8f08cb72007-08-25 06:57:03 +0000250 }
Chris Lattner682bf922009-03-29 16:50:03 +0000251
252 // This routine returns a DeclGroup, if the thing we parsed only contains a
253 // single decl, convert it now.
254 return Actions.ConvertDeclToDeclGroup(SingleDecl);
Chris Lattner8f08cb72007-08-25 06:57:03 +0000255}
256
257/// simple-declaration: [C99 6.7: declaration] [C++ 7p1: dcl.dcl]
258/// declaration-specifiers init-declarator-list[opt] ';'
259///[C90/C++]init-declarator-list ';' [TODO]
260/// [OMP] threadprivate-directive [TODO]
Chris Lattnercd147752009-03-29 17:27:48 +0000261///
262/// If RequireSemi is false, this does not check for a ';' at the end of the
263/// declaration.
264Parser::DeclGroupPtrTy Parser::ParseSimpleDeclaration(unsigned Context,
Chris Lattner97144fc2009-04-02 04:16:50 +0000265 SourceLocation &DeclEnd,
Chris Lattnercd147752009-03-29 17:27:48 +0000266 bool RequireSemi) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000267 // Parse the common declaration-specifiers piece.
268 DeclSpec DS;
269 ParseDeclarationSpecifiers(DS);
270
271 // C99 6.7.2.3p6: Handle "struct-or-union identifier;", "enum { X };"
272 // declaration-specifiers init-declarator-list[opt] ';'
Chris Lattner04d66662007-10-09 17:33:22 +0000273 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000274 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +0000275 DeclPtrTy TheDecl = Actions.ParsedFreeStandingDeclSpec(CurScope, DS);
276 return Actions.ConvertDeclToDeclGroup(TheDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +0000277 }
278
279 Declarator DeclaratorInfo(DS, (Declarator::TheContext)Context);
280 ParseDeclarator(DeclaratorInfo);
281
Chris Lattner23c4b182009-03-29 17:18:04 +0000282 DeclGroupPtrTy DG =
283 ParseInitDeclaratorListAfterFirstDeclarator(DeclaratorInfo);
Chris Lattnercd147752009-03-29 17:27:48 +0000284
Chris Lattner97144fc2009-04-02 04:16:50 +0000285 DeclEnd = Tok.getLocation();
286
Chris Lattnercd147752009-03-29 17:27:48 +0000287 // If the client wants to check what comes after the declaration, just return
288 // immediately without checking anything!
289 if (!RequireSemi) return DG;
Chris Lattner23c4b182009-03-29 17:18:04 +0000290
291 if (Tok.is(tok::semi)) {
292 ConsumeToken();
Chris Lattner23c4b182009-03-29 17:18:04 +0000293 return DG;
294 }
295
Chris Lattner23c4b182009-03-29 17:18:04 +0000296 Diag(Tok, diag::err_expected_semi_declation);
297 // Skip to end of block or statement
298 SkipUntil(tok::r_brace, true, true);
299 if (Tok.is(tok::semi))
300 ConsumeToken();
301 return DG;
Reid Spencer5f016e22007-07-11 17:01:13 +0000302}
303
Douglas Gregor1426e532009-05-12 21:31:51 +0000304/// \brief Parse 'declaration' after parsing 'declaration-specifiers
305/// declarator'. This method parses the remainder of the declaration
306/// (including any attributes or initializer, among other things) and
307/// finalizes the declaration.
Reid Spencer5f016e22007-07-11 17:01:13 +0000308///
Reid Spencer5f016e22007-07-11 17:01:13 +0000309/// init-declarator: [C99 6.7]
310/// declarator
311/// declarator '=' initializer
312/// [GNU] declarator simple-asm-expr[opt] attributes[opt]
313/// [GNU] declarator simple-asm-expr[opt] attributes[opt] '=' initializer
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +0000314/// [C++] declarator initializer[opt]
315///
316/// [C++] initializer:
317/// [C++] '=' initializer-clause
318/// [C++] '(' expression-list ')'
Sebastian Redl50de12f2009-03-24 22:27:57 +0000319/// [C++0x] '=' 'default' [TODO]
320/// [C++0x] '=' 'delete'
321///
322/// According to the standard grammar, =default and =delete are function
323/// definitions, but that definitely doesn't fit with the parser here.
Reid Spencer5f016e22007-07-11 17:01:13 +0000324///
Douglas Gregor1426e532009-05-12 21:31:51 +0000325Parser::DeclPtrTy Parser::ParseDeclarationAfterDeclarator(Declarator &D) {
326 // If a simple-asm-expr is present, parse it.
327 if (Tok.is(tok::kw_asm)) {
328 SourceLocation Loc;
329 OwningExprResult AsmLabel(ParseSimpleAsm(&Loc));
330 if (AsmLabel.isInvalid()) {
331 SkipUntil(tok::semi, true, true);
332 return DeclPtrTy();
333 }
334
335 D.setAsmLabel(AsmLabel.release());
336 D.SetRangeEnd(Loc);
337 }
338
339 // If attributes are present, parse them.
340 if (Tok.is(tok::kw___attribute)) {
341 SourceLocation Loc;
342 AttributeList *AttrList = ParseAttributes(&Loc);
343 D.AddAttributes(AttrList, Loc);
344 }
345
346 // Inform the current actions module that we just parsed this declarator.
347 DeclPtrTy ThisDecl = Actions.ActOnDeclarator(CurScope, D);
348
349 // Parse declarator '=' initializer.
350 if (Tok.is(tok::equal)) {
351 ConsumeToken();
352 if (getLang().CPlusPlus0x && Tok.is(tok::kw_delete)) {
353 SourceLocation DelLoc = ConsumeToken();
354 Actions.SetDeclDeleted(ThisDecl, DelLoc);
355 } else {
356 OwningExprResult Init(ParseInitializer());
357 if (Init.isInvalid()) {
358 SkipUntil(tok::semi, true, true);
359 return DeclPtrTy();
360 }
361 Actions.AddInitializerToDecl(ThisDecl, move(Init));
362 }
363 } else if (Tok.is(tok::l_paren)) {
364 // Parse C++ direct initializer: '(' expression-list ')'
365 SourceLocation LParenLoc = ConsumeParen();
366 ExprVector Exprs(Actions);
367 CommaLocsTy CommaLocs;
368
369 if (ParseExpressionList(Exprs, CommaLocs)) {
370 SkipUntil(tok::r_paren);
371 } else {
372 // Match the ')'.
373 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
374
375 assert(!Exprs.empty() && Exprs.size()-1 == CommaLocs.size() &&
376 "Unexpected number of commas!");
377 Actions.AddCXXDirectInitializerToDecl(ThisDecl, LParenLoc,
378 move_arg(Exprs),
Jay Foadbeaaccd2009-05-21 09:52:38 +0000379 CommaLocs.data(), RParenLoc);
Douglas Gregor1426e532009-05-12 21:31:51 +0000380 }
381 } else {
382 Actions.ActOnUninitializedDecl(ThisDecl);
383 }
384
385 return ThisDecl;
386}
387
388/// ParseInitDeclaratorListAfterFirstDeclarator - Parse 'declaration' after
389/// parsing 'declaration-specifiers declarator'. This method is split out this
390/// way to handle the ambiguity between top-level function-definitions and
391/// declarations.
392///
393/// init-declarator-list: [C99 6.7]
394/// init-declarator
395/// init-declarator-list ',' init-declarator
396///
397/// According to the standard grammar, =default and =delete are function
398/// definitions, but that definitely doesn't fit with the parser here.
399///
Chris Lattner682bf922009-03-29 16:50:03 +0000400Parser::DeclGroupPtrTy Parser::
Reid Spencer5f016e22007-07-11 17:01:13 +0000401ParseInitDeclaratorListAfterFirstDeclarator(Declarator &D) {
Chris Lattner682bf922009-03-29 16:50:03 +0000402 // Declarators may be grouped together ("int X, *Y, Z();"). Remember the decls
403 // that we parse together here.
404 llvm::SmallVector<DeclPtrTy, 8> DeclsInGroup;
Reid Spencer5f016e22007-07-11 17:01:13 +0000405
406 // At this point, we know that it is not a function definition. Parse the
407 // rest of the init-declarator-list.
408 while (1) {
Douglas Gregor1426e532009-05-12 21:31:51 +0000409 DeclPtrTy ThisDecl = ParseDeclarationAfterDeclarator(D);
410 if (ThisDecl.get())
411 DeclsInGroup.push_back(ThisDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +0000412
Reid Spencer5f016e22007-07-11 17:01:13 +0000413 // If we don't have a comma, it is either the end of the list (a ';') or an
414 // error, bail out.
Chris Lattner04d66662007-10-09 17:33:22 +0000415 if (Tok.isNot(tok::comma))
Reid Spencer5f016e22007-07-11 17:01:13 +0000416 break;
417
418 // Consume the comma.
419 ConsumeToken();
420
421 // Parse the next declarator.
422 D.clear();
Chris Lattneraab740a2008-10-20 04:57:38 +0000423
424 // Accept attributes in an init-declarator. In the first declarator in a
425 // declaration, these would be part of the declspec. In subsequent
426 // declarators, they become part of the declarator itself, so that they
427 // don't apply to declarators after *this* one. Examples:
428 // short __attribute__((common)) var; -> declspec
429 // short var __attribute__((common)); -> declarator
430 // short x, __attribute__((common)) var; -> declarator
Sebastian Redlab197ba2009-02-09 18:23:29 +0000431 if (Tok.is(tok::kw___attribute)) {
432 SourceLocation Loc;
433 AttributeList *AttrList = ParseAttributes(&Loc);
434 D.AddAttributes(AttrList, Loc);
435 }
Chris Lattneraab740a2008-10-20 04:57:38 +0000436
Reid Spencer5f016e22007-07-11 17:01:13 +0000437 ParseDeclarator(D);
438 }
439
Jay Foadbeaaccd2009-05-21 09:52:38 +0000440 return Actions.FinalizeDeclaratorGroup(CurScope, DeclsInGroup.data(),
Chris Lattner23c4b182009-03-29 17:18:04 +0000441 DeclsInGroup.size());
Reid Spencer5f016e22007-07-11 17:01:13 +0000442}
443
444/// ParseSpecifierQualifierList
445/// specifier-qualifier-list:
446/// type-specifier specifier-qualifier-list[opt]
447/// type-qualifier specifier-qualifier-list[opt]
448/// [GNU] attributes specifier-qualifier-list[opt]
449///
450void Parser::ParseSpecifierQualifierList(DeclSpec &DS) {
451 /// specifier-qualifier-list is a subset of declaration-specifiers. Just
452 /// parse declaration-specifiers and complain about extra stuff.
Reid Spencer5f016e22007-07-11 17:01:13 +0000453 ParseDeclarationSpecifiers(DS);
454
455 // Validate declspec for type-name.
456 unsigned Specs = DS.getParsedSpecifiers();
Chris Lattnerb6645dd2009-04-14 21:16:09 +0000457 if (Specs == DeclSpec::PQ_None && !DS.getNumProtocolQualifiers() &&
458 !DS.getAttributes())
Reid Spencer5f016e22007-07-11 17:01:13 +0000459 Diag(Tok, diag::err_typename_requires_specqual);
460
461 // Issue diagnostic and remove storage class if present.
462 if (Specs & DeclSpec::PQ_StorageClassSpecifier) {
463 if (DS.getStorageClassSpecLoc().isValid())
464 Diag(DS.getStorageClassSpecLoc(),diag::err_typename_invalid_storageclass);
465 else
466 Diag(DS.getThreadSpecLoc(), diag::err_typename_invalid_storageclass);
467 DS.ClearStorageClassSpecs();
468 }
469
470 // Issue diagnostic and remove function specfier if present.
471 if (Specs & DeclSpec::PQ_FunctionSpecifier) {
Douglas Gregorb48fe382008-10-31 09:07:45 +0000472 if (DS.isInlineSpecified())
473 Diag(DS.getInlineSpecLoc(), diag::err_typename_invalid_functionspec);
474 if (DS.isVirtualSpecified())
475 Diag(DS.getVirtualSpecLoc(), diag::err_typename_invalid_functionspec);
476 if (DS.isExplicitSpecified())
477 Diag(DS.getExplicitSpecLoc(), diag::err_typename_invalid_functionspec);
Reid Spencer5f016e22007-07-11 17:01:13 +0000478 DS.ClearFunctionSpecs();
479 }
480}
481
Chris Lattnerc199ab32009-04-12 20:42:31 +0000482/// isValidAfterIdentifierInDeclaratorAfterDeclSpec - Return true if the
483/// specified token is valid after the identifier in a declarator which
484/// immediately follows the declspec. For example, these things are valid:
485///
486/// int x [ 4]; // direct-declarator
487/// int x ( int y); // direct-declarator
488/// int(int x ) // direct-declarator
489/// int x ; // simple-declaration
490/// int x = 17; // init-declarator-list
491/// int x , y; // init-declarator-list
492/// int x __asm__ ("foo"); // init-declarator-list
Chris Lattnerb6645dd2009-04-14 21:16:09 +0000493/// int x : 4; // struct-declarator
Chris Lattnerc83c27a2009-04-12 22:29:43 +0000494/// int x { 5}; // C++'0x unified initializers
Chris Lattnerc199ab32009-04-12 20:42:31 +0000495///
496/// This is not, because 'x' does not immediately follow the declspec (though
497/// ')' happens to be valid anyway).
498/// int (x)
499///
500static bool isValidAfterIdentifierInDeclarator(const Token &T) {
501 return T.is(tok::l_square) || T.is(tok::l_paren) || T.is(tok::r_paren) ||
502 T.is(tok::semi) || T.is(tok::comma) || T.is(tok::equal) ||
Chris Lattnerb6645dd2009-04-14 21:16:09 +0000503 T.is(tok::kw_asm) || T.is(tok::l_brace) || T.is(tok::colon);
Chris Lattnerc199ab32009-04-12 20:42:31 +0000504}
505
Chris Lattnere40c2952009-04-14 21:34:55 +0000506
507/// ParseImplicitInt - This method is called when we have an non-typename
508/// identifier in a declspec (which normally terminates the decl spec) when
509/// the declspec has no type specifier. In this case, the declspec is either
510/// malformed or is "implicit int" (in K&R and C89).
511///
512/// This method handles diagnosing this prettily and returns false if the
513/// declspec is done being processed. If it recovers and thinks there may be
514/// other pieces of declspec after it, it returns true.
515///
Chris Lattnerf4382f52009-04-14 22:17:06 +0000516bool Parser::ParseImplicitInt(DeclSpec &DS, CXXScopeSpec *SS,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000517 const ParsedTemplateInfo &TemplateInfo,
Chris Lattnere40c2952009-04-14 21:34:55 +0000518 AccessSpecifier AS) {
Chris Lattnerf4382f52009-04-14 22:17:06 +0000519 assert(Tok.is(tok::identifier) && "should have identifier");
520
Chris Lattnere40c2952009-04-14 21:34:55 +0000521 SourceLocation Loc = Tok.getLocation();
522 // If we see an identifier that is not a type name, we normally would
523 // parse it as the identifer being declared. However, when a typename
524 // is typo'd or the definition is not included, this will incorrectly
525 // parse the typename as the identifier name and fall over misparsing
526 // later parts of the diagnostic.
527 //
528 // As such, we try to do some look-ahead in cases where this would
529 // otherwise be an "implicit-int" case to see if this is invalid. For
530 // example: "static foo_t x = 4;" In this case, if we parsed foo_t as
531 // an identifier with implicit int, we'd get a parse error because the
532 // next token is obviously invalid for a type. Parse these as a case
533 // with an invalid type specifier.
534 assert(!DS.hasTypeSpecifier() && "Type specifier checked above");
535
536 // Since we know that this either implicit int (which is rare) or an
537 // error, we'd do lookahead to try to do better recovery.
538 if (isValidAfterIdentifierInDeclarator(NextToken())) {
539 // If this token is valid for implicit int, e.g. "static x = 4", then
540 // we just avoid eating the identifier, so it will be parsed as the
541 // identifier in the declarator.
542 return false;
543 }
544
545 // Otherwise, if we don't consume this token, we are going to emit an
546 // error anyway. Try to recover from various common problems. Check
547 // to see if this was a reference to a tag name without a tag specified.
548 // This is a common problem in C (saying 'foo' instead of 'struct foo').
Chris Lattnerf4382f52009-04-14 22:17:06 +0000549 //
550 // C++ doesn't need this, and isTagName doesn't take SS.
551 if (SS == 0) {
552 const char *TagName = 0;
553 tok::TokenKind TagKind = tok::unknown;
Chris Lattnere40c2952009-04-14 21:34:55 +0000554
Chris Lattnere40c2952009-04-14 21:34:55 +0000555 switch (Actions.isTagName(*Tok.getIdentifierInfo(), CurScope)) {
556 default: break;
557 case DeclSpec::TST_enum: TagName="enum" ;TagKind=tok::kw_enum ;break;
558 case DeclSpec::TST_union: TagName="union" ;TagKind=tok::kw_union ;break;
559 case DeclSpec::TST_struct:TagName="struct";TagKind=tok::kw_struct;break;
560 case DeclSpec::TST_class: TagName="class" ;TagKind=tok::kw_class ;break;
561 }
Chris Lattnere40c2952009-04-14 21:34:55 +0000562
Chris Lattnerf4382f52009-04-14 22:17:06 +0000563 if (TagName) {
564 Diag(Loc, diag::err_use_of_tag_name_without_tag)
565 << Tok.getIdentifierInfo() << TagName
566 << CodeModificationHint::CreateInsertion(Tok.getLocation(),TagName);
567
568 // Parse this as a tag as if the missing tag were present.
569 if (TagKind == tok::kw_enum)
570 ParseEnumSpecifier(Loc, DS, AS);
571 else
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000572 ParseClassSpecifier(TagKind, Loc, DS, TemplateInfo, AS);
Chris Lattnerf4382f52009-04-14 22:17:06 +0000573 return true;
574 }
Chris Lattnere40c2952009-04-14 21:34:55 +0000575 }
576
577 // Since this is almost certainly an invalid type name, emit a
578 // diagnostic that says it, eat the token, and mark the declspec as
579 // invalid.
Chris Lattnerf4382f52009-04-14 22:17:06 +0000580 SourceRange R;
581 if (SS) R = SS->getRange();
582
583 Diag(Loc, diag::err_unknown_typename) << Tok.getIdentifierInfo() << R;
Chris Lattnere40c2952009-04-14 21:34:55 +0000584 const char *PrevSpec;
585 DS.SetTypeSpecType(DeclSpec::TST_error, Loc, PrevSpec);
586 DS.SetRangeEnd(Tok.getLocation());
587 ConsumeToken();
588
589 // TODO: Could inject an invalid typedef decl in an enclosing scope to
590 // avoid rippling error messages on subsequent uses of the same type,
591 // could be useful if #include was forgotten.
592 return false;
593}
594
Reid Spencer5f016e22007-07-11 17:01:13 +0000595/// ParseDeclarationSpecifiers
596/// declaration-specifiers: [C99 6.7]
597/// storage-class-specifier declaration-specifiers[opt]
598/// type-specifier declaration-specifiers[opt]
Reid Spencer5f016e22007-07-11 17:01:13 +0000599/// [C99] function-specifier declaration-specifiers[opt]
600/// [GNU] attributes declaration-specifiers[opt]
601///
602/// storage-class-specifier: [C99 6.7.1]
603/// 'typedef'
604/// 'extern'
605/// 'static'
606/// 'auto'
607/// 'register'
Sebastian Redl669d5d72008-11-14 23:42:31 +0000608/// [C++] 'mutable'
Reid Spencer5f016e22007-07-11 17:01:13 +0000609/// [GNU] '__thread'
Reid Spencer5f016e22007-07-11 17:01:13 +0000610/// function-specifier: [C99 6.7.4]
611/// [C99] 'inline'
Douglas Gregorb48fe382008-10-31 09:07:45 +0000612/// [C++] 'virtual'
613/// [C++] 'explicit'
Anders Carlssonf47f7a12009-05-06 04:46:28 +0000614/// 'friend': [C++ dcl.friend]
615
Reid Spencer5f016e22007-07-11 17:01:13 +0000616///
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000617void Parser::ParseDeclarationSpecifiers(DeclSpec &DS,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000618 const ParsedTemplateInfo &TemplateInfo,
Chris Lattnerc199ab32009-04-12 20:42:31 +0000619 AccessSpecifier AS) {
Chris Lattner81c018d2008-03-13 06:29:04 +0000620 DS.SetRangeStart(Tok.getLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +0000621 while (1) {
622 int isInvalid = false;
623 const char *PrevSpec = 0;
624 SourceLocation Loc = Tok.getLocation();
Douglas Gregor12e083c2008-11-07 15:42:26 +0000625
Reid Spencer5f016e22007-07-11 17:01:13 +0000626 switch (Tok.getKind()) {
Douglas Gregor12e083c2008-11-07 15:42:26 +0000627 default:
Chris Lattnerbce61352008-07-26 00:20:22 +0000628 DoneWithDeclSpec:
Reid Spencer5f016e22007-07-11 17:01:13 +0000629 // If this is not a declaration specifier token, we're done reading decl
630 // specifiers. First verify that DeclSpec's are consistent.
Douglas Gregor9b3064b2009-04-01 22:41:11 +0000631 DS.Finish(Diags, PP);
Reid Spencer5f016e22007-07-11 17:01:13 +0000632 return;
Chris Lattner5e02c472009-01-05 00:07:25 +0000633
634 case tok::coloncolon: // ::foo::bar
635 // Annotate C++ scope specifiers. If we get one, loop.
636 if (TryAnnotateCXXScopeToken())
637 continue;
638 goto DoneWithDeclSpec;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000639
640 case tok::annot_cxxscope: {
641 if (DS.hasTypeSpecifier())
642 goto DoneWithDeclSpec;
643
644 // We are looking for a qualified typename.
Douglas Gregor9135c722009-03-25 15:40:00 +0000645 Token Next = NextToken();
646 if (Next.is(tok::annot_template_id) &&
647 static_cast<TemplateIdAnnotation *>(Next.getAnnotationValue())
Douglas Gregorc45c2322009-03-31 00:43:58 +0000648 ->Kind == TNK_Type_template) {
Douglas Gregor9135c722009-03-25 15:40:00 +0000649 // We have a qualified template-id, e.g., N::A<int>
650 CXXScopeSpec SS;
651 ParseOptionalCXXScopeSpecifier(SS);
652 assert(Tok.is(tok::annot_template_id) &&
653 "ParseOptionalCXXScopeSpecifier not working");
654 AnnotateTemplateIdTokenAsType(&SS);
655 continue;
656 }
657
658 if (Next.isNot(tok::identifier))
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000659 goto DoneWithDeclSpec;
660
661 CXXScopeSpec SS;
Douglas Gregor35073692009-03-26 23:56:24 +0000662 SS.setScopeRep(Tok.getAnnotationValue());
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000663 SS.setRange(Tok.getAnnotationRange());
664
665 // If the next token is the name of the class type that the C++ scope
666 // denotes, followed by a '(', then this is a constructor declaration.
667 // We're done with the decl-specifiers.
Chris Lattnerf4382f52009-04-14 22:17:06 +0000668 if (Actions.isCurrentClassName(*Next.getIdentifierInfo(),
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000669 CurScope, &SS) &&
670 GetLookAheadToken(2).is(tok::l_paren))
671 goto DoneWithDeclSpec;
672
Douglas Gregorb696ea32009-02-04 17:00:24 +0000673 TypeTy *TypeRep = Actions.getTypeName(*Next.getIdentifierInfo(),
674 Next.getLocation(), CurScope, &SS);
Douglas Gregor55f6b142009-02-09 18:46:07 +0000675
Chris Lattnerf4382f52009-04-14 22:17:06 +0000676 // If the referenced identifier is not a type, then this declspec is
677 // erroneous: We already checked about that it has no type specifier, and
678 // C++ doesn't have implicit int. Diagnose it as a typo w.r.t. to the
679 // typename.
680 if (TypeRep == 0) {
681 ConsumeToken(); // Eat the scope spec so the identifier is current.
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000682 if (ParseImplicitInt(DS, &SS, TemplateInfo, AS)) continue;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000683 goto DoneWithDeclSpec;
Chris Lattnerf4382f52009-04-14 22:17:06 +0000684 }
Douglas Gregore4e5b052009-03-19 00:18:19 +0000685
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000686 ConsumeToken(); // The C++ scope.
687
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000688 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000689 TypeRep);
690 if (isInvalid)
691 break;
692
693 DS.SetRangeEnd(Tok.getLocation());
694 ConsumeToken(); // The typename.
695
696 continue;
697 }
Chris Lattner80d0c892009-01-21 19:48:37 +0000698
699 case tok::annot_typename: {
Douglas Gregor31a19b62009-04-01 21:51:26 +0000700 if (Tok.getAnnotationValue())
701 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
702 Tok.getAnnotationValue());
703 else
704 DS.SetTypeSpecError();
Chris Lattner80d0c892009-01-21 19:48:37 +0000705 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
706 ConsumeToken(); // The typename
707
708 // Objective-C supports syntax of the form 'id<proto1,proto2>' where 'id'
709 // is a specific typedef and 'itf<proto1,proto2>' where 'itf' is an
710 // Objective-C interface. If we don't have Objective-C or a '<', this is
711 // just a normal reference to a typedef name.
712 if (!Tok.is(tok::less) || !getLang().ObjC1)
713 continue;
714
715 SourceLocation EndProtoLoc;
Chris Lattnerb28317a2009-03-28 19:18:32 +0000716 llvm::SmallVector<DeclPtrTy, 8> ProtocolDecl;
Chris Lattner80d0c892009-01-21 19:48:37 +0000717 ParseObjCProtocolReferences(ProtocolDecl, false, EndProtoLoc);
718 DS.setProtocolQualifiers(&ProtocolDecl[0], ProtocolDecl.size());
719
720 DS.SetRangeEnd(EndProtoLoc);
721 continue;
722 }
723
Chris Lattner3bd934a2008-07-26 01:18:38 +0000724 // typedef-name
725 case tok::identifier: {
Chris Lattner5e02c472009-01-05 00:07:25 +0000726 // In C++, check to see if this is a scope specifier like foo::bar::, if
727 // so handle it as such. This is important for ctor parsing.
Chris Lattner837acd02009-01-21 19:19:26 +0000728 if (getLang().CPlusPlus && TryAnnotateCXXScopeToken())
729 continue;
Chris Lattner5e02c472009-01-05 00:07:25 +0000730
Chris Lattner3bd934a2008-07-26 01:18:38 +0000731 // This identifier can only be a typedef name if we haven't already seen
732 // a type-specifier. Without this check we misparse:
733 // typedef int X; struct Y { short X; }; as 'short int'.
734 if (DS.hasTypeSpecifier())
735 goto DoneWithDeclSpec;
736
737 // It has to be available as a typedef too!
Douglas Gregorb696ea32009-02-04 17:00:24 +0000738 TypeTy *TypeRep = Actions.getTypeName(*Tok.getIdentifierInfo(),
739 Tok.getLocation(), CurScope);
Douglas Gregor55f6b142009-02-09 18:46:07 +0000740
Chris Lattnerc199ab32009-04-12 20:42:31 +0000741 // If this is not a typedef name, don't parse it as part of the declspec,
742 // it must be an implicit int or an error.
743 if (TypeRep == 0) {
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000744 if (ParseImplicitInt(DS, 0, TemplateInfo, AS)) continue;
Chris Lattner3bd934a2008-07-26 01:18:38 +0000745 goto DoneWithDeclSpec;
Chris Lattnerc199ab32009-04-12 20:42:31 +0000746 }
Douglas Gregor55f6b142009-02-09 18:46:07 +0000747
Douglas Gregorb48fe382008-10-31 09:07:45 +0000748 // C++: If the identifier is actually the name of the class type
749 // being defined and the next token is a '(', then this is a
750 // constructor declaration. We're done with the decl-specifiers
751 // and will treat this token as an identifier.
Chris Lattnerc199ab32009-04-12 20:42:31 +0000752 if (getLang().CPlusPlus && CurScope->isClassScope() &&
Douglas Gregorb48fe382008-10-31 09:07:45 +0000753 Actions.isCurrentClassName(*Tok.getIdentifierInfo(), CurScope) &&
754 NextToken().getKind() == tok::l_paren)
755 goto DoneWithDeclSpec;
756
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000757 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
Chris Lattner3bd934a2008-07-26 01:18:38 +0000758 TypeRep);
759 if (isInvalid)
760 break;
761
762 DS.SetRangeEnd(Tok.getLocation());
763 ConsumeToken(); // The identifier
764
765 // Objective-C supports syntax of the form 'id<proto1,proto2>' where 'id'
766 // is a specific typedef and 'itf<proto1,proto2>' where 'itf' is an
767 // Objective-C interface. If we don't have Objective-C or a '<', this is
768 // just a normal reference to a typedef name.
769 if (!Tok.is(tok::less) || !getLang().ObjC1)
770 continue;
771
772 SourceLocation EndProtoLoc;
Chris Lattnerb28317a2009-03-28 19:18:32 +0000773 llvm::SmallVector<DeclPtrTy, 8> ProtocolDecl;
Chris Lattnere13b9592008-07-26 04:03:38 +0000774 ParseObjCProtocolReferences(ProtocolDecl, false, EndProtoLoc);
Chris Lattnerae4da612008-07-26 01:53:50 +0000775 DS.setProtocolQualifiers(&ProtocolDecl[0], ProtocolDecl.size());
Chris Lattner3bd934a2008-07-26 01:18:38 +0000776
777 DS.SetRangeEnd(EndProtoLoc);
778
Steve Naroff4f9b9f12008-09-22 10:28:57 +0000779 // Need to support trailing type qualifiers (e.g. "id<p> const").
780 // If a type specifier follows, it will be diagnosed elsewhere.
781 continue;
Chris Lattner3bd934a2008-07-26 01:18:38 +0000782 }
Douglas Gregor39a8de12009-02-25 19:37:18 +0000783
784 // type-name
785 case tok::annot_template_id: {
786 TemplateIdAnnotation *TemplateId
787 = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
Douglas Gregorc45c2322009-03-31 00:43:58 +0000788 if (TemplateId->Kind != TNK_Type_template) {
Douglas Gregor39a8de12009-02-25 19:37:18 +0000789 // This template-id does not refer to a type name, so we're
790 // done with the type-specifiers.
791 goto DoneWithDeclSpec;
792 }
793
794 // Turn the template-id annotation token into a type annotation
795 // token, then try again to parse it as a type-specifier.
Douglas Gregor31a19b62009-04-01 21:51:26 +0000796 AnnotateTemplateIdTokenAsType();
Douglas Gregor39a8de12009-02-25 19:37:18 +0000797 continue;
798 }
799
Reid Spencer5f016e22007-07-11 17:01:13 +0000800 // GNU attributes support.
801 case tok::kw___attribute:
802 DS.AddAttributes(ParseAttributes());
803 continue;
Steve Narofff59e17e2008-12-24 20:59:21 +0000804
805 // Microsoft declspec support.
806 case tok::kw___declspec:
807 if (!PP.getLangOptions().Microsoft)
808 goto DoneWithDeclSpec;
809 FuzzyParseMicrosoftDeclSpec();
810 continue;
Reid Spencer5f016e22007-07-11 17:01:13 +0000811
Steve Naroff239f0732008-12-25 14:16:32 +0000812 // Microsoft single token adornments.
Steve Naroff86bc6cf2008-12-25 14:41:26 +0000813 case tok::kw___forceinline:
814 case tok::kw___w64:
Steve Naroff239f0732008-12-25 14:16:32 +0000815 case tok::kw___cdecl:
816 case tok::kw___stdcall:
817 case tok::kw___fastcall:
818 if (!PP.getLangOptions().Microsoft)
819 goto DoneWithDeclSpec;
820 // Just ignore it.
821 break;
822
Reid Spencer5f016e22007-07-11 17:01:13 +0000823 // storage-class-specifier
824 case tok::kw_typedef:
825 isInvalid = DS.SetStorageClassSpec(DeclSpec::SCS_typedef, Loc, PrevSpec);
826 break;
827 case tok::kw_extern:
828 if (DS.isThreadSpecified())
Chris Lattner1ab3b962008-11-18 07:48:38 +0000829 Diag(Tok, diag::ext_thread_before) << "extern";
Reid Spencer5f016e22007-07-11 17:01:13 +0000830 isInvalid = DS.SetStorageClassSpec(DeclSpec::SCS_extern, Loc, PrevSpec);
831 break;
Steve Naroff8d54bf22007-12-18 00:16:02 +0000832 case tok::kw___private_extern__:
Chris Lattnerf97409f2008-04-06 06:57:35 +0000833 isInvalid = DS.SetStorageClassSpec(DeclSpec::SCS_private_extern, Loc,
834 PrevSpec);
Steve Naroff8d54bf22007-12-18 00:16:02 +0000835 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000836 case tok::kw_static:
837 if (DS.isThreadSpecified())
Chris Lattner1ab3b962008-11-18 07:48:38 +0000838 Diag(Tok, diag::ext_thread_before) << "static";
Reid Spencer5f016e22007-07-11 17:01:13 +0000839 isInvalid = DS.SetStorageClassSpec(DeclSpec::SCS_static, Loc, PrevSpec);
840 break;
841 case tok::kw_auto:
842 isInvalid = DS.SetStorageClassSpec(DeclSpec::SCS_auto, Loc, PrevSpec);
843 break;
844 case tok::kw_register:
845 isInvalid = DS.SetStorageClassSpec(DeclSpec::SCS_register, Loc, PrevSpec);
846 break;
Sebastian Redl669d5d72008-11-14 23:42:31 +0000847 case tok::kw_mutable:
848 isInvalid = DS.SetStorageClassSpec(DeclSpec::SCS_mutable, Loc, PrevSpec);
849 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000850 case tok::kw___thread:
851 isInvalid = DS.SetStorageClassSpecThread(Loc, PrevSpec)*2;
852 break;
Douglas Gregor12e083c2008-11-07 15:42:26 +0000853
Reid Spencer5f016e22007-07-11 17:01:13 +0000854 // function-specifier
855 case tok::kw_inline:
856 isInvalid = DS.SetFunctionSpecInline(Loc, PrevSpec);
857 break;
Douglas Gregorb48fe382008-10-31 09:07:45 +0000858 case tok::kw_virtual:
859 isInvalid = DS.SetFunctionSpecVirtual(Loc, PrevSpec);
860 break;
Douglas Gregorb48fe382008-10-31 09:07:45 +0000861 case tok::kw_explicit:
862 isInvalid = DS.SetFunctionSpecExplicit(Loc, PrevSpec);
863 break;
Chris Lattner80d0c892009-01-21 19:48:37 +0000864
Anders Carlssonf47f7a12009-05-06 04:46:28 +0000865 // friend
866 case tok::kw_friend:
867 isInvalid = DS.SetFriendSpec(Loc, PrevSpec);
868 break;
869
Chris Lattner80d0c892009-01-21 19:48:37 +0000870 // type-specifier
871 case tok::kw_short:
872 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_short, Loc, PrevSpec);
873 break;
874 case tok::kw_long:
875 if (DS.getTypeSpecWidth() != DeclSpec::TSW_long)
876 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_long, Loc, PrevSpec);
877 else
878 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_longlong, Loc, PrevSpec);
879 break;
880 case tok::kw_signed:
881 isInvalid = DS.SetTypeSpecSign(DeclSpec::TSS_signed, Loc, PrevSpec);
882 break;
883 case tok::kw_unsigned:
884 isInvalid = DS.SetTypeSpecSign(DeclSpec::TSS_unsigned, Loc, PrevSpec);
885 break;
886 case tok::kw__Complex:
887 isInvalid = DS.SetTypeSpecComplex(DeclSpec::TSC_complex, Loc, PrevSpec);
888 break;
889 case tok::kw__Imaginary:
890 isInvalid = DS.SetTypeSpecComplex(DeclSpec::TSC_imaginary, Loc, PrevSpec);
891 break;
892 case tok::kw_void:
893 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_void, Loc, PrevSpec);
894 break;
895 case tok::kw_char:
896 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char, Loc, PrevSpec);
897 break;
898 case tok::kw_int:
899 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, PrevSpec);
900 break;
901 case tok::kw_float:
902 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_float, Loc, PrevSpec);
903 break;
904 case tok::kw_double:
905 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_double, Loc, PrevSpec);
906 break;
907 case tok::kw_wchar_t:
908 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_wchar, Loc, PrevSpec);
909 break;
910 case tok::kw_bool:
911 case tok::kw__Bool:
912 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_bool, Loc, PrevSpec);
913 break;
914 case tok::kw__Decimal32:
915 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal32, Loc, PrevSpec);
916 break;
917 case tok::kw__Decimal64:
918 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal64, Loc, PrevSpec);
919 break;
920 case tok::kw__Decimal128:
921 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal128, Loc, PrevSpec);
922 break;
923
924 // class-specifier:
925 case tok::kw_class:
926 case tok::kw_struct:
Chris Lattner4c97d762009-04-12 21:49:30 +0000927 case tok::kw_union: {
928 tok::TokenKind Kind = Tok.getKind();
929 ConsumeToken();
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000930 ParseClassSpecifier(Kind, Loc, DS, TemplateInfo, AS);
Chris Lattner80d0c892009-01-21 19:48:37 +0000931 continue;
Chris Lattner4c97d762009-04-12 21:49:30 +0000932 }
Chris Lattner80d0c892009-01-21 19:48:37 +0000933
934 // enum-specifier:
935 case tok::kw_enum:
Chris Lattner4c97d762009-04-12 21:49:30 +0000936 ConsumeToken();
937 ParseEnumSpecifier(Loc, DS, AS);
Chris Lattner80d0c892009-01-21 19:48:37 +0000938 continue;
939
940 // cv-qualifier:
941 case tok::kw_const:
942 isInvalid = DS.SetTypeQual(DeclSpec::TQ_const, Loc, PrevSpec,getLang())*2;
943 break;
944 case tok::kw_volatile:
945 isInvalid = DS.SetTypeQual(DeclSpec::TQ_volatile, Loc, PrevSpec,
946 getLang())*2;
947 break;
948 case tok::kw_restrict:
949 isInvalid = DS.SetTypeQual(DeclSpec::TQ_restrict, Loc, PrevSpec,
950 getLang())*2;
951 break;
952
Douglas Gregord57959a2009-03-27 23:10:48 +0000953 // C++ typename-specifier:
954 case tok::kw_typename:
955 if (TryAnnotateTypeOrScopeToken())
956 continue;
957 break;
958
Chris Lattner80d0c892009-01-21 19:48:37 +0000959 // GNU typeof support.
960 case tok::kw_typeof:
961 ParseTypeofSpecifier(DS);
962 continue;
963
Steve Naroffd3ded1f2008-06-05 00:02:44 +0000964 case tok::less:
Chris Lattner3bd934a2008-07-26 01:18:38 +0000965 // GCC ObjC supports types like "<SomeProtocol>" as a synonym for
Chris Lattnerbce61352008-07-26 00:20:22 +0000966 // "id<SomeProtocol>". This is hopelessly old fashioned and dangerous,
967 // but we support it.
Chris Lattner3bd934a2008-07-26 01:18:38 +0000968 if (DS.hasTypeSpecifier() || !getLang().ObjC1)
Chris Lattnerbce61352008-07-26 00:20:22 +0000969 goto DoneWithDeclSpec;
970
971 {
972 SourceLocation EndProtoLoc;
Chris Lattnerb28317a2009-03-28 19:18:32 +0000973 llvm::SmallVector<DeclPtrTy, 8> ProtocolDecl;
Chris Lattnere13b9592008-07-26 04:03:38 +0000974 ParseObjCProtocolReferences(ProtocolDecl, false, EndProtoLoc);
Chris Lattnerae4da612008-07-26 01:53:50 +0000975 DS.setProtocolQualifiers(&ProtocolDecl[0], ProtocolDecl.size());
Chris Lattner3bd934a2008-07-26 01:18:38 +0000976 DS.SetRangeEnd(EndProtoLoc);
977
Chris Lattner1ab3b962008-11-18 07:48:38 +0000978 Diag(Loc, diag::warn_objc_protocol_qualifier_missing_id)
Chris Lattner75e36062009-04-03 18:38:42 +0000979 << CodeModificationHint::CreateInsertion(Loc, "id")
Chris Lattner1ab3b962008-11-18 07:48:38 +0000980 << SourceRange(Loc, EndProtoLoc);
Steve Naroff4f9b9f12008-09-22 10:28:57 +0000981 // Need to support trailing type qualifiers (e.g. "id<p> const").
982 // If a type specifier follows, it will be diagnosed elsewhere.
983 continue;
Steve Naroffd3ded1f2008-06-05 00:02:44 +0000984 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000985 }
986 // If the specifier combination wasn't legal, issue a diagnostic.
987 if (isInvalid) {
988 assert(PrevSpec && "Method did not return previous specifier!");
Chris Lattner1ab3b962008-11-18 07:48:38 +0000989 // Pick between error or extwarn.
990 unsigned DiagID = isInvalid == 1 ? diag::err_invalid_decl_spec_combination
991 : diag::ext_duplicate_declspec;
992 Diag(Tok, DiagID) << PrevSpec;
Reid Spencer5f016e22007-07-11 17:01:13 +0000993 }
Chris Lattner81c018d2008-03-13 06:29:04 +0000994 DS.SetRangeEnd(Tok.getLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +0000995 ConsumeToken();
996 }
997}
Douglas Gregoradcac882008-12-01 23:54:00 +0000998
Chris Lattner7a0ab5f2009-01-06 06:59:53 +0000999/// ParseOptionalTypeSpecifier - Try to parse a single type-specifier. We
Douglas Gregor12e083c2008-11-07 15:42:26 +00001000/// primarily follow the C++ grammar with additions for C99 and GNU,
1001/// which together subsume the C grammar. Note that the C++
1002/// type-specifier also includes the C type-qualifier (for const,
1003/// volatile, and C99 restrict). Returns true if a type-specifier was
1004/// found (and parsed), false otherwise.
1005///
1006/// type-specifier: [C++ 7.1.5]
1007/// simple-type-specifier
1008/// class-specifier
1009/// enum-specifier
1010/// elaborated-type-specifier [TODO]
1011/// cv-qualifier
1012///
1013/// cv-qualifier: [C++ 7.1.5.1]
1014/// 'const'
1015/// 'volatile'
1016/// [C99] 'restrict'
1017///
1018/// simple-type-specifier: [ C++ 7.1.5.2]
1019/// '::'[opt] nested-name-specifier[opt] type-name [TODO]
1020/// '::'[opt] nested-name-specifier 'template' template-id [TODO]
1021/// 'char'
1022/// 'wchar_t'
1023/// 'bool'
1024/// 'short'
1025/// 'int'
1026/// 'long'
1027/// 'signed'
1028/// 'unsigned'
1029/// 'float'
1030/// 'double'
1031/// 'void'
1032/// [C99] '_Bool'
1033/// [C99] '_Complex'
1034/// [C99] '_Imaginary' // Removed in TC2?
1035/// [GNU] '_Decimal32'
1036/// [GNU] '_Decimal64'
1037/// [GNU] '_Decimal128'
1038/// [GNU] typeof-specifier
1039/// [OBJC] class-name objc-protocol-refs[opt] [TODO]
1040/// [OBJC] typedef-name objc-protocol-refs[opt] [TODO]
Chris Lattner7a0ab5f2009-01-06 06:59:53 +00001041bool Parser::ParseOptionalTypeSpecifier(DeclSpec &DS, int& isInvalid,
1042 const char *&PrevSpec,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001043 const ParsedTemplateInfo &TemplateInfo) {
Douglas Gregor12e083c2008-11-07 15:42:26 +00001044 SourceLocation Loc = Tok.getLocation();
1045
1046 switch (Tok.getKind()) {
Chris Lattner166a8fc2009-01-04 23:41:41 +00001047 case tok::identifier: // foo::bar
Douglas Gregord57959a2009-03-27 23:10:48 +00001048 case tok::kw_typename: // typename foo::bar
Chris Lattner166a8fc2009-01-04 23:41:41 +00001049 // Annotate typenames and C++ scope specifiers. If we get one, just
1050 // recurse to handle whatever we get.
1051 if (TryAnnotateTypeOrScopeToken())
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001052 return ParseOptionalTypeSpecifier(DS, isInvalid, PrevSpec, TemplateInfo);
Chris Lattner166a8fc2009-01-04 23:41:41 +00001053 // Otherwise, not a type specifier.
1054 return false;
1055 case tok::coloncolon: // ::foo::bar
1056 if (NextToken().is(tok::kw_new) || // ::new
1057 NextToken().is(tok::kw_delete)) // ::delete
1058 return false;
1059
1060 // Annotate typenames and C++ scope specifiers. If we get one, just
1061 // recurse to handle whatever we get.
1062 if (TryAnnotateTypeOrScopeToken())
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001063 return ParseOptionalTypeSpecifier(DS, isInvalid, PrevSpec, TemplateInfo);
Chris Lattner166a8fc2009-01-04 23:41:41 +00001064 // Otherwise, not a type specifier.
1065 return false;
1066
Douglas Gregor12e083c2008-11-07 15:42:26 +00001067 // simple-type-specifier:
Chris Lattnerb31757b2009-01-06 05:06:21 +00001068 case tok::annot_typename: {
Douglas Gregor31a19b62009-04-01 21:51:26 +00001069 if (Tok.getAnnotationValue())
1070 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
1071 Tok.getAnnotationValue());
1072 else
1073 DS.SetTypeSpecError();
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001074 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
1075 ConsumeToken(); // The typename
Douglas Gregor12e083c2008-11-07 15:42:26 +00001076
1077 // Objective-C supports syntax of the form 'id<proto1,proto2>' where 'id'
1078 // is a specific typedef and 'itf<proto1,proto2>' where 'itf' is an
1079 // Objective-C interface. If we don't have Objective-C or a '<', this is
1080 // just a normal reference to a typedef name.
1081 if (!Tok.is(tok::less) || !getLang().ObjC1)
1082 return true;
1083
1084 SourceLocation EndProtoLoc;
Chris Lattnerb28317a2009-03-28 19:18:32 +00001085 llvm::SmallVector<DeclPtrTy, 8> ProtocolDecl;
Douglas Gregor12e083c2008-11-07 15:42:26 +00001086 ParseObjCProtocolReferences(ProtocolDecl, false, EndProtoLoc);
1087 DS.setProtocolQualifiers(&ProtocolDecl[0], ProtocolDecl.size());
1088
1089 DS.SetRangeEnd(EndProtoLoc);
1090 return true;
1091 }
1092
1093 case tok::kw_short:
1094 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_short, Loc, PrevSpec);
1095 break;
1096 case tok::kw_long:
1097 if (DS.getTypeSpecWidth() != DeclSpec::TSW_long)
1098 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_long, Loc, PrevSpec);
1099 else
1100 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_longlong, Loc, PrevSpec);
1101 break;
1102 case tok::kw_signed:
1103 isInvalid = DS.SetTypeSpecSign(DeclSpec::TSS_signed, Loc, PrevSpec);
1104 break;
1105 case tok::kw_unsigned:
1106 isInvalid = DS.SetTypeSpecSign(DeclSpec::TSS_unsigned, Loc, PrevSpec);
1107 break;
1108 case tok::kw__Complex:
1109 isInvalid = DS.SetTypeSpecComplex(DeclSpec::TSC_complex, Loc, PrevSpec);
1110 break;
1111 case tok::kw__Imaginary:
1112 isInvalid = DS.SetTypeSpecComplex(DeclSpec::TSC_imaginary, Loc, PrevSpec);
1113 break;
1114 case tok::kw_void:
1115 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_void, Loc, PrevSpec);
1116 break;
1117 case tok::kw_char:
1118 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char, Loc, PrevSpec);
1119 break;
1120 case tok::kw_int:
1121 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, PrevSpec);
1122 break;
1123 case tok::kw_float:
1124 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_float, Loc, PrevSpec);
1125 break;
1126 case tok::kw_double:
1127 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_double, Loc, PrevSpec);
1128 break;
1129 case tok::kw_wchar_t:
1130 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_wchar, Loc, PrevSpec);
1131 break;
1132 case tok::kw_bool:
1133 case tok::kw__Bool:
1134 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_bool, Loc, PrevSpec);
1135 break;
1136 case tok::kw__Decimal32:
1137 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal32, Loc, PrevSpec);
1138 break;
1139 case tok::kw__Decimal64:
1140 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal64, Loc, PrevSpec);
1141 break;
1142 case tok::kw__Decimal128:
1143 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal128, Loc, PrevSpec);
1144 break;
1145
1146 // class-specifier:
1147 case tok::kw_class:
1148 case tok::kw_struct:
Chris Lattner4c97d762009-04-12 21:49:30 +00001149 case tok::kw_union: {
1150 tok::TokenKind Kind = Tok.getKind();
1151 ConsumeToken();
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001152 ParseClassSpecifier(Kind, Loc, DS, TemplateInfo);
Douglas Gregor12e083c2008-11-07 15:42:26 +00001153 return true;
Chris Lattner4c97d762009-04-12 21:49:30 +00001154 }
Douglas Gregor12e083c2008-11-07 15:42:26 +00001155
1156 // enum-specifier:
1157 case tok::kw_enum:
Chris Lattner4c97d762009-04-12 21:49:30 +00001158 ConsumeToken();
1159 ParseEnumSpecifier(Loc, DS);
Douglas Gregor12e083c2008-11-07 15:42:26 +00001160 return true;
1161
1162 // cv-qualifier:
1163 case tok::kw_const:
1164 isInvalid = DS.SetTypeQual(DeclSpec::TQ_const , Loc, PrevSpec,
1165 getLang())*2;
1166 break;
1167 case tok::kw_volatile:
1168 isInvalid = DS.SetTypeQual(DeclSpec::TQ_volatile, Loc, PrevSpec,
1169 getLang())*2;
1170 break;
1171 case tok::kw_restrict:
1172 isInvalid = DS.SetTypeQual(DeclSpec::TQ_restrict, Loc, PrevSpec,
1173 getLang())*2;
1174 break;
1175
1176 // GNU typeof support.
1177 case tok::kw_typeof:
1178 ParseTypeofSpecifier(DS);
1179 return true;
1180
Steve Naroff239f0732008-12-25 14:16:32 +00001181 case tok::kw___cdecl:
1182 case tok::kw___stdcall:
1183 case tok::kw___fastcall:
Chris Lattner837acd02009-01-21 19:19:26 +00001184 if (!PP.getLangOptions().Microsoft) return false;
1185 ConsumeToken();
1186 return true;
Steve Naroff239f0732008-12-25 14:16:32 +00001187
Douglas Gregor12e083c2008-11-07 15:42:26 +00001188 default:
1189 // Not a type-specifier; do nothing.
1190 return false;
1191 }
1192
1193 // If the specifier combination wasn't legal, issue a diagnostic.
1194 if (isInvalid) {
1195 assert(PrevSpec && "Method did not return previous specifier!");
Chris Lattner1ab3b962008-11-18 07:48:38 +00001196 // Pick between error or extwarn.
1197 unsigned DiagID = isInvalid == 1 ? diag::err_invalid_decl_spec_combination
1198 : diag::ext_duplicate_declspec;
1199 Diag(Tok, DiagID) << PrevSpec;
Douglas Gregor12e083c2008-11-07 15:42:26 +00001200 }
1201 DS.SetRangeEnd(Tok.getLocation());
1202 ConsumeToken(); // whatever we parsed above.
1203 return true;
1204}
Reid Spencer5f016e22007-07-11 17:01:13 +00001205
Chris Lattnercd4b83c2007-10-29 04:42:53 +00001206/// ParseStructDeclaration - Parse a struct declaration without the terminating
1207/// semicolon.
1208///
Reid Spencer5f016e22007-07-11 17:01:13 +00001209/// struct-declaration:
Chris Lattnercd4b83c2007-10-29 04:42:53 +00001210/// specifier-qualifier-list struct-declarator-list
Reid Spencer5f016e22007-07-11 17:01:13 +00001211/// [GNU] __extension__ struct-declaration
Chris Lattnercd4b83c2007-10-29 04:42:53 +00001212/// [GNU] specifier-qualifier-list
Reid Spencer5f016e22007-07-11 17:01:13 +00001213/// struct-declarator-list:
1214/// struct-declarator
1215/// struct-declarator-list ',' struct-declarator
1216/// [GNU] struct-declarator-list ',' attributes[opt] struct-declarator
1217/// struct-declarator:
1218/// declarator
1219/// [GNU] declarator attributes[opt]
1220/// declarator[opt] ':' constant-expression
1221/// [GNU] declarator[opt] ':' constant-expression attributes[opt]
1222///
Chris Lattnere1359422008-04-10 06:46:29 +00001223void Parser::
1224ParseStructDeclaration(DeclSpec &DS,
1225 llvm::SmallVectorImpl<FieldDeclarator> &Fields) {
Chris Lattnerc46d1a12008-10-20 06:45:43 +00001226 if (Tok.is(tok::kw___extension__)) {
1227 // __extension__ silences extension warnings in the subexpression.
1228 ExtensionRAIIObject O(Diags); // Use RAII to do this.
Steve Naroff28a7ca82007-08-20 22:28:22 +00001229 ConsumeToken();
Chris Lattnerc46d1a12008-10-20 06:45:43 +00001230 return ParseStructDeclaration(DS, Fields);
1231 }
Steve Naroff28a7ca82007-08-20 22:28:22 +00001232
1233 // Parse the common specifier-qualifiers-list piece.
Chris Lattner60b1e3e2008-04-10 06:15:14 +00001234 SourceLocation DSStart = Tok.getLocation();
Steve Naroff28a7ca82007-08-20 22:28:22 +00001235 ParseSpecifierQualifierList(DS);
Steve Naroff28a7ca82007-08-20 22:28:22 +00001236
Douglas Gregor4920f1f2009-01-12 22:49:06 +00001237 // If there are no declarators, this is a free-standing declaration
1238 // specifier. Let the actions module cope with it.
Chris Lattner04d66662007-10-09 17:33:22 +00001239 if (Tok.is(tok::semi)) {
Douglas Gregor4920f1f2009-01-12 22:49:06 +00001240 Actions.ParsedFreeStandingDeclSpec(CurScope, DS);
Steve Naroff28a7ca82007-08-20 22:28:22 +00001241 return;
1242 }
1243
1244 // Read struct-declarators until we find the semicolon.
Chris Lattnerebe457c2008-04-10 16:37:40 +00001245 Fields.push_back(FieldDeclarator(DS));
Steve Naroff28a7ca82007-08-20 22:28:22 +00001246 while (1) {
Chris Lattnere1359422008-04-10 06:46:29 +00001247 FieldDeclarator &DeclaratorInfo = Fields.back();
1248
Steve Naroff28a7ca82007-08-20 22:28:22 +00001249 /// struct-declarator: declarator
1250 /// struct-declarator: declarator[opt] ':' constant-expression
Chris Lattner04d66662007-10-09 17:33:22 +00001251 if (Tok.isNot(tok::colon))
Chris Lattnere1359422008-04-10 06:46:29 +00001252 ParseDeclarator(DeclaratorInfo.D);
Steve Naroff28a7ca82007-08-20 22:28:22 +00001253
Chris Lattner04d66662007-10-09 17:33:22 +00001254 if (Tok.is(tok::colon)) {
Steve Naroff28a7ca82007-08-20 22:28:22 +00001255 ConsumeToken();
Sebastian Redl2f7ece72008-12-11 21:36:32 +00001256 OwningExprResult Res(ParseConstantExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001257 if (Res.isInvalid())
Steve Naroff28a7ca82007-08-20 22:28:22 +00001258 SkipUntil(tok::semi, true, true);
Chris Lattner60b1e3e2008-04-10 06:15:14 +00001259 else
Sebastian Redleffa8d12008-12-10 00:02:53 +00001260 DeclaratorInfo.BitfieldSize = Res.release();
Steve Naroff28a7ca82007-08-20 22:28:22 +00001261 }
Sebastian Redlab197ba2009-02-09 18:23:29 +00001262
Steve Naroff28a7ca82007-08-20 22:28:22 +00001263 // If attributes exist after the declarator, parse them.
Sebastian Redlab197ba2009-02-09 18:23:29 +00001264 if (Tok.is(tok::kw___attribute)) {
1265 SourceLocation Loc;
1266 AttributeList *AttrList = ParseAttributes(&Loc);
1267 DeclaratorInfo.D.AddAttributes(AttrList, Loc);
1268 }
1269
Steve Naroff28a7ca82007-08-20 22:28:22 +00001270 // If we don't have a comma, it is either the end of the list (a ';')
1271 // or an error, bail out.
Chris Lattner04d66662007-10-09 17:33:22 +00001272 if (Tok.isNot(tok::comma))
Chris Lattnercd4b83c2007-10-29 04:42:53 +00001273 return;
Sebastian Redlab197ba2009-02-09 18:23:29 +00001274
Steve Naroff28a7ca82007-08-20 22:28:22 +00001275 // Consume the comma.
1276 ConsumeToken();
Sebastian Redlab197ba2009-02-09 18:23:29 +00001277
Steve Naroff28a7ca82007-08-20 22:28:22 +00001278 // Parse the next declarator.
Chris Lattnerebe457c2008-04-10 16:37:40 +00001279 Fields.push_back(FieldDeclarator(DS));
Sebastian Redlab197ba2009-02-09 18:23:29 +00001280
Steve Naroff28a7ca82007-08-20 22:28:22 +00001281 // Attributes are only allowed on the second declarator.
Sebastian Redlab197ba2009-02-09 18:23:29 +00001282 if (Tok.is(tok::kw___attribute)) {
1283 SourceLocation Loc;
1284 AttributeList *AttrList = ParseAttributes(&Loc);
1285 Fields.back().D.AddAttributes(AttrList, Loc);
1286 }
Steve Naroff28a7ca82007-08-20 22:28:22 +00001287 }
Steve Naroff28a7ca82007-08-20 22:28:22 +00001288}
1289
1290/// ParseStructUnionBody
1291/// struct-contents:
1292/// struct-declaration-list
1293/// [EXT] empty
1294/// [GNU] "struct-declaration-list" without terminatoring ';'
1295/// struct-declaration-list:
1296/// struct-declaration
1297/// struct-declaration-list struct-declaration
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00001298/// [OBC] '@' 'defs' '(' class-name ')'
Steve Naroff28a7ca82007-08-20 22:28:22 +00001299///
Reid Spencer5f016e22007-07-11 17:01:13 +00001300void Parser::ParseStructUnionBody(SourceLocation RecordLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00001301 unsigned TagType, DeclPtrTy TagDecl) {
Chris Lattner49f28ca2009-03-05 08:00:35 +00001302 PrettyStackTraceActionsDecl CrashInfo(TagDecl, RecordLoc, Actions,
1303 PP.getSourceManager(),
1304 "parsing struct/union body");
Chris Lattner27b7f102009-03-05 02:25:03 +00001305
Reid Spencer5f016e22007-07-11 17:01:13 +00001306 SourceLocation LBraceLoc = ConsumeBrace();
1307
Douglas Gregor3218c4b2009-01-09 22:42:13 +00001308 ParseScope StructScope(this, Scope::ClassScope|Scope::DeclScope);
Douglas Gregor72de6672009-01-08 20:45:30 +00001309 Actions.ActOnTagStartDefinition(CurScope, TagDecl);
1310
Reid Spencer5f016e22007-07-11 17:01:13 +00001311 // Empty structs are an extension in C (C99 6.7.2.1p7), but are allowed in
1312 // C++.
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001313 if (Tok.is(tok::r_brace) && !getLang().CPlusPlus)
Chris Lattner1ab3b962008-11-18 07:48:38 +00001314 Diag(Tok, diag::ext_empty_struct_union_enum)
1315 << DeclSpec::getSpecifierName((DeclSpec::TST)TagType);
Reid Spencer5f016e22007-07-11 17:01:13 +00001316
Chris Lattnerb28317a2009-03-28 19:18:32 +00001317 llvm::SmallVector<DeclPtrTy, 32> FieldDecls;
Chris Lattnere1359422008-04-10 06:46:29 +00001318 llvm::SmallVector<FieldDeclarator, 8> FieldDeclarators;
1319
Reid Spencer5f016e22007-07-11 17:01:13 +00001320 // While we still have something to read, read the declarations in the struct.
Chris Lattner04d66662007-10-09 17:33:22 +00001321 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001322 // Each iteration of this loop reads one struct-declaration.
1323
1324 // Check for extraneous top-level semicolon.
Chris Lattner04d66662007-10-09 17:33:22 +00001325 if (Tok.is(tok::semi)) {
Douglas Gregor9b3064b2009-04-01 22:41:11 +00001326 Diag(Tok, diag::ext_extra_struct_semi)
1327 << CodeModificationHint::CreateRemoval(SourceRange(Tok.getLocation()));
Reid Spencer5f016e22007-07-11 17:01:13 +00001328 ConsumeToken();
1329 continue;
1330 }
Chris Lattnere1359422008-04-10 06:46:29 +00001331
1332 // Parse all the comma separated declarators.
1333 DeclSpec DS;
1334 FieldDeclarators.clear();
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00001335 if (!Tok.is(tok::at)) {
1336 ParseStructDeclaration(DS, FieldDeclarators);
1337
1338 // Convert them all to fields.
1339 for (unsigned i = 0, e = FieldDeclarators.size(); i != e; ++i) {
1340 FieldDeclarator &FD = FieldDeclarators[i];
1341 // Install the declarator into the current TagDecl.
Chris Lattnerb28317a2009-03-28 19:18:32 +00001342 DeclPtrTy Field = Actions.ActOnField(CurScope, TagDecl,
1343 DS.getSourceRange().getBegin(),
1344 FD.D, FD.BitfieldSize);
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00001345 FieldDecls.push_back(Field);
1346 }
1347 } else { // Handle @defs
1348 ConsumeToken();
1349 if (!Tok.isObjCAtKeyword(tok::objc_defs)) {
1350 Diag(Tok, diag::err_unexpected_at);
1351 SkipUntil(tok::semi, true, true);
1352 continue;
1353 }
1354 ConsumeToken();
1355 ExpectAndConsume(tok::l_paren, diag::err_expected_lparen);
1356 if (!Tok.is(tok::identifier)) {
1357 Diag(Tok, diag::err_expected_ident);
1358 SkipUntil(tok::semi, true, true);
1359 continue;
1360 }
Chris Lattnerb28317a2009-03-28 19:18:32 +00001361 llvm::SmallVector<DeclPtrTy, 16> Fields;
Douglas Gregor44b43212008-12-11 16:49:14 +00001362 Actions.ActOnDefs(CurScope, TagDecl, Tok.getLocation(),
1363 Tok.getIdentifierInfo(), Fields);
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00001364 FieldDecls.insert(FieldDecls.end(), Fields.begin(), Fields.end());
1365 ConsumeToken();
1366 ExpectAndConsume(tok::r_paren, diag::err_expected_rparen);
1367 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001368
Chris Lattner04d66662007-10-09 17:33:22 +00001369 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001370 ConsumeToken();
Chris Lattner04d66662007-10-09 17:33:22 +00001371 } else if (Tok.is(tok::r_brace)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001372 Diag(Tok, diag::ext_expected_semi_decl_list);
Reid Spencer5f016e22007-07-11 17:01:13 +00001373 break;
1374 } else {
1375 Diag(Tok, diag::err_expected_semi_decl_list);
1376 // Skip to end of block or statement
1377 SkipUntil(tok::r_brace, true, true);
1378 }
1379 }
1380
Steve Naroff60fccee2007-10-29 21:38:07 +00001381 SourceLocation RBraceLoc = MatchRHSPunctuation(tok::r_brace, LBraceLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +00001382
Reid Spencer5f016e22007-07-11 17:01:13 +00001383 AttributeList *AttrList = 0;
1384 // If attributes exist after struct contents, parse them.
Chris Lattner04d66662007-10-09 17:33:22 +00001385 if (Tok.is(tok::kw___attribute))
Daniel Dunbar5e592d82008-10-03 16:42:10 +00001386 AttrList = ParseAttributes();
Daniel Dunbar1bfe1c22008-10-03 02:03:53 +00001387
1388 Actions.ActOnFields(CurScope,
Jay Foadbeaaccd2009-05-21 09:52:38 +00001389 RecordLoc, TagDecl, FieldDecls.data(), FieldDecls.size(),
Daniel Dunbar1bfe1c22008-10-03 02:03:53 +00001390 LBraceLoc, RBraceLoc,
Douglas Gregor72de6672009-01-08 20:45:30 +00001391 AttrList);
1392 StructScope.Exit();
1393 Actions.ActOnTagFinishDefinition(CurScope, TagDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +00001394}
1395
1396
1397/// ParseEnumSpecifier
1398/// enum-specifier: [C99 6.7.2.2]
1399/// 'enum' identifier[opt] '{' enumerator-list '}'
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001400///[C99/C++]'enum' identifier[opt] '{' enumerator-list ',' '}'
Reid Spencer5f016e22007-07-11 17:01:13 +00001401/// [GNU] 'enum' attributes[opt] identifier[opt] '{' enumerator-list ',' [opt]
1402/// '}' attributes[opt]
1403/// 'enum' identifier
1404/// [GNU] 'enum' attributes[opt] identifier
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001405///
1406/// [C++] elaborated-type-specifier:
1407/// [C++] 'enum' '::'[opt] nested-name-specifier[opt] identifier
1408///
Chris Lattner4c97d762009-04-12 21:49:30 +00001409void Parser::ParseEnumSpecifier(SourceLocation StartLoc, DeclSpec &DS,
1410 AccessSpecifier AS) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001411 // Parse the tag portion of this.
Argyrios Kyrtzidise281b4c2008-09-11 00:21:41 +00001412
1413 AttributeList *Attr = 0;
1414 // If attributes exist after tag, parse them.
1415 if (Tok.is(tok::kw___attribute))
1416 Attr = ParseAttributes();
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001417
1418 CXXScopeSpec SS;
Chris Lattner7a0ab5f2009-01-06 06:59:53 +00001419 if (getLang().CPlusPlus && ParseOptionalCXXScopeSpecifier(SS)) {
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001420 if (Tok.isNot(tok::identifier)) {
1421 Diag(Tok, diag::err_expected_ident);
1422 if (Tok.isNot(tok::l_brace)) {
1423 // Has no name and is not a definition.
1424 // Skip the rest of this declarator, up until the comma or semicolon.
1425 SkipUntil(tok::comma, true);
1426 return;
1427 }
1428 }
1429 }
Argyrios Kyrtzidise281b4c2008-09-11 00:21:41 +00001430
1431 // Must have either 'enum name' or 'enum {...}'.
1432 if (Tok.isNot(tok::identifier) && Tok.isNot(tok::l_brace)) {
1433 Diag(Tok, diag::err_expected_ident_lbrace);
1434
1435 // Skip the rest of this declarator, up until the comma or semicolon.
1436 SkipUntil(tok::comma, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001437 return;
Argyrios Kyrtzidise281b4c2008-09-11 00:21:41 +00001438 }
1439
1440 // If an identifier is present, consume and remember it.
1441 IdentifierInfo *Name = 0;
1442 SourceLocation NameLoc;
1443 if (Tok.is(tok::identifier)) {
1444 Name = Tok.getIdentifierInfo();
1445 NameLoc = ConsumeToken();
1446 }
1447
1448 // There are three options here. If we have 'enum foo;', then this is a
1449 // forward declaration. If we have 'enum foo {...' then this is a
1450 // definition. Otherwise we have something like 'enum foo xyz', a reference.
1451 //
1452 // This is needed to handle stuff like this right (C99 6.7.2.3p11):
1453 // enum foo {..}; void bar() { enum foo; } <- new foo in bar.
1454 // enum foo {..}; void bar() { enum foo x; } <- use of old foo.
1455 //
1456 Action::TagKind TK;
1457 if (Tok.is(tok::l_brace))
1458 TK = Action::TK_Definition;
1459 else if (Tok.is(tok::semi))
1460 TK = Action::TK_Declaration;
1461 else
1462 TK = Action::TK_Reference;
Douglas Gregor402abb52009-05-28 23:31:59 +00001463 bool Owned = false;
Chris Lattnerb28317a2009-03-28 19:18:32 +00001464 DeclPtrTy TagDecl = Actions.ActOnTag(CurScope, DeclSpec::TST_enum, TK,
Douglas Gregor402abb52009-05-28 23:31:59 +00001465 StartLoc, SS, Name, NameLoc, Attr, AS,
1466 Owned);
Reid Spencer5f016e22007-07-11 17:01:13 +00001467
Chris Lattner04d66662007-10-09 17:33:22 +00001468 if (Tok.is(tok::l_brace))
Reid Spencer5f016e22007-07-11 17:01:13 +00001469 ParseEnumBody(StartLoc, TagDecl);
1470
1471 // TODO: semantic analysis on the declspec for enums.
1472 const char *PrevSpec = 0;
Chris Lattnerb28317a2009-03-28 19:18:32 +00001473 if (DS.SetTypeSpecType(DeclSpec::TST_enum, StartLoc, PrevSpec,
Douglas Gregor402abb52009-05-28 23:31:59 +00001474 TagDecl.getAs<void>(), Owned))
Chris Lattner1ab3b962008-11-18 07:48:38 +00001475 Diag(StartLoc, diag::err_invalid_decl_spec_combination) << PrevSpec;
Reid Spencer5f016e22007-07-11 17:01:13 +00001476}
1477
1478/// ParseEnumBody - Parse a {} enclosed enumerator-list.
1479/// enumerator-list:
1480/// enumerator
1481/// enumerator-list ',' enumerator
1482/// enumerator:
1483/// enumeration-constant
1484/// enumeration-constant '=' constant-expression
1485/// enumeration-constant:
1486/// identifier
1487///
Chris Lattnerb28317a2009-03-28 19:18:32 +00001488void Parser::ParseEnumBody(SourceLocation StartLoc, DeclPtrTy EnumDecl) {
Douglas Gregor074149e2009-01-05 19:45:36 +00001489 // Enter the scope of the enum body and start the definition.
1490 ParseScope EnumScope(this, Scope::DeclScope);
Douglas Gregor72de6672009-01-08 20:45:30 +00001491 Actions.ActOnTagStartDefinition(CurScope, EnumDecl);
Douglas Gregor074149e2009-01-05 19:45:36 +00001492
Reid Spencer5f016e22007-07-11 17:01:13 +00001493 SourceLocation LBraceLoc = ConsumeBrace();
1494
Chris Lattner7946dd32007-08-27 17:24:30 +00001495 // C does not allow an empty enumerator-list, C++ does [dcl.enum].
Chris Lattner04d66662007-10-09 17:33:22 +00001496 if (Tok.is(tok::r_brace) && !getLang().CPlusPlus)
Chris Lattner1ab3b962008-11-18 07:48:38 +00001497 Diag(Tok, diag::ext_empty_struct_union_enum) << "enum";
Reid Spencer5f016e22007-07-11 17:01:13 +00001498
Chris Lattnerb28317a2009-03-28 19:18:32 +00001499 llvm::SmallVector<DeclPtrTy, 32> EnumConstantDecls;
Reid Spencer5f016e22007-07-11 17:01:13 +00001500
Chris Lattnerb28317a2009-03-28 19:18:32 +00001501 DeclPtrTy LastEnumConstDecl;
Reid Spencer5f016e22007-07-11 17:01:13 +00001502
1503 // Parse the enumerator-list.
Chris Lattner04d66662007-10-09 17:33:22 +00001504 while (Tok.is(tok::identifier)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001505 IdentifierInfo *Ident = Tok.getIdentifierInfo();
1506 SourceLocation IdentLoc = ConsumeToken();
1507
1508 SourceLocation EqualLoc;
Sebastian Redl15faa7f2008-12-09 20:22:58 +00001509 OwningExprResult AssignedVal(Actions);
Chris Lattner04d66662007-10-09 17:33:22 +00001510 if (Tok.is(tok::equal)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001511 EqualLoc = ConsumeToken();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001512 AssignedVal = ParseConstantExpression();
1513 if (AssignedVal.isInvalid())
Reid Spencer5f016e22007-07-11 17:01:13 +00001514 SkipUntil(tok::comma, tok::r_brace, true, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001515 }
1516
1517 // Install the enumerator constant into EnumDecl.
Chris Lattnerb28317a2009-03-28 19:18:32 +00001518 DeclPtrTy EnumConstDecl = Actions.ActOnEnumConstant(CurScope, EnumDecl,
1519 LastEnumConstDecl,
1520 IdentLoc, Ident,
1521 EqualLoc,
1522 AssignedVal.release());
Reid Spencer5f016e22007-07-11 17:01:13 +00001523 EnumConstantDecls.push_back(EnumConstDecl);
1524 LastEnumConstDecl = EnumConstDecl;
1525
Chris Lattner04d66662007-10-09 17:33:22 +00001526 if (Tok.isNot(tok::comma))
Reid Spencer5f016e22007-07-11 17:01:13 +00001527 break;
1528 SourceLocation CommaLoc = ConsumeToken();
1529
Douglas Gregor9b3064b2009-04-01 22:41:11 +00001530 if (Tok.isNot(tok::identifier) &&
1531 !(getLang().C99 || getLang().CPlusPlus0x))
1532 Diag(CommaLoc, diag::ext_enumerator_list_comma)
1533 << getLang().CPlusPlus
1534 << CodeModificationHint::CreateRemoval((SourceRange(CommaLoc)));
Reid Spencer5f016e22007-07-11 17:01:13 +00001535 }
1536
1537 // Eat the }.
Mike Stumpc6e35aa2009-05-16 07:06:02 +00001538 SourceLocation RBraceLoc = MatchRHSPunctuation(tok::r_brace, LBraceLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +00001539
Mike Stumpc6e35aa2009-05-16 07:06:02 +00001540 Actions.ActOnEnumBody(StartLoc, LBraceLoc, RBraceLoc, EnumDecl,
Jay Foadbeaaccd2009-05-21 09:52:38 +00001541 EnumConstantDecls.data(), EnumConstantDecls.size());
Reid Spencer5f016e22007-07-11 17:01:13 +00001542
Chris Lattnerb28317a2009-03-28 19:18:32 +00001543 Action::AttrTy *AttrList = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00001544 // If attributes exist after the identifier list, parse them.
Chris Lattner04d66662007-10-09 17:33:22 +00001545 if (Tok.is(tok::kw___attribute))
Reid Spencer5f016e22007-07-11 17:01:13 +00001546 AttrList = ParseAttributes(); // FIXME: where do they do?
Douglas Gregor72de6672009-01-08 20:45:30 +00001547
1548 EnumScope.Exit();
1549 Actions.ActOnTagFinishDefinition(CurScope, EnumDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +00001550}
1551
1552/// isTypeSpecifierQualifier - Return true if the current token could be the
Steve Naroff5f8aa692008-02-11 23:15:56 +00001553/// start of a type-qualifier-list.
1554bool Parser::isTypeQualifier() const {
1555 switch (Tok.getKind()) {
1556 default: return false;
1557 // type-qualifier
1558 case tok::kw_const:
1559 case tok::kw_volatile:
1560 case tok::kw_restrict:
1561 return true;
1562 }
1563}
1564
1565/// isTypeSpecifierQualifier - Return true if the current token could be the
Reid Spencer5f016e22007-07-11 17:01:13 +00001566/// start of a specifier-qualifier-list.
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001567bool Parser::isTypeSpecifierQualifier() {
Reid Spencer5f016e22007-07-11 17:01:13 +00001568 switch (Tok.getKind()) {
1569 default: return false;
Chris Lattner166a8fc2009-01-04 23:41:41 +00001570
1571 case tok::identifier: // foo::bar
Douglas Gregord57959a2009-03-27 23:10:48 +00001572 case tok::kw_typename: // typename T::type
Chris Lattner166a8fc2009-01-04 23:41:41 +00001573 // Annotate typenames and C++ scope specifiers. If we get one, just
1574 // recurse to handle whatever we get.
1575 if (TryAnnotateTypeOrScopeToken())
1576 return isTypeSpecifierQualifier();
1577 // Otherwise, not a type specifier.
1578 return false;
Douglas Gregord57959a2009-03-27 23:10:48 +00001579
Chris Lattner166a8fc2009-01-04 23:41:41 +00001580 case tok::coloncolon: // ::foo::bar
1581 if (NextToken().is(tok::kw_new) || // ::new
1582 NextToken().is(tok::kw_delete)) // ::delete
1583 return false;
1584
1585 // Annotate typenames and C++ scope specifiers. If we get one, just
1586 // recurse to handle whatever we get.
1587 if (TryAnnotateTypeOrScopeToken())
1588 return isTypeSpecifierQualifier();
1589 // Otherwise, not a type specifier.
1590 return false;
1591
Reid Spencer5f016e22007-07-11 17:01:13 +00001592 // GNU attributes support.
1593 case tok::kw___attribute:
Steve Naroffd1861fd2007-07-31 12:34:36 +00001594 // GNU typeof support.
1595 case tok::kw_typeof:
1596
Reid Spencer5f016e22007-07-11 17:01:13 +00001597 // type-specifiers
1598 case tok::kw_short:
1599 case tok::kw_long:
1600 case tok::kw_signed:
1601 case tok::kw_unsigned:
1602 case tok::kw__Complex:
1603 case tok::kw__Imaginary:
1604 case tok::kw_void:
1605 case tok::kw_char:
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +00001606 case tok::kw_wchar_t:
Reid Spencer5f016e22007-07-11 17:01:13 +00001607 case tok::kw_int:
1608 case tok::kw_float:
1609 case tok::kw_double:
Chris Lattner9298d962007-11-15 05:25:19 +00001610 case tok::kw_bool:
Reid Spencer5f016e22007-07-11 17:01:13 +00001611 case tok::kw__Bool:
1612 case tok::kw__Decimal32:
1613 case tok::kw__Decimal64:
1614 case tok::kw__Decimal128:
1615
Chris Lattner99dc9142008-04-13 18:59:07 +00001616 // struct-or-union-specifier (C99) or class-specifier (C++)
1617 case tok::kw_class:
Reid Spencer5f016e22007-07-11 17:01:13 +00001618 case tok::kw_struct:
1619 case tok::kw_union:
1620 // enum-specifier
1621 case tok::kw_enum:
1622
1623 // type-qualifier
1624 case tok::kw_const:
1625 case tok::kw_volatile:
1626 case tok::kw_restrict:
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001627
1628 // typedef-name
Chris Lattnerb31757b2009-01-06 05:06:21 +00001629 case tok::annot_typename:
Reid Spencer5f016e22007-07-11 17:01:13 +00001630 return true;
Chris Lattner7c186be2008-10-20 00:25:30 +00001631
1632 // GNU ObjC bizarre protocol extension: <proto1,proto2> with implicit 'id'.
1633 case tok::less:
1634 return getLang().ObjC1;
Steve Naroff239f0732008-12-25 14:16:32 +00001635
1636 case tok::kw___cdecl:
1637 case tok::kw___stdcall:
1638 case tok::kw___fastcall:
1639 return PP.getLangOptions().Microsoft;
Reid Spencer5f016e22007-07-11 17:01:13 +00001640 }
1641}
1642
1643/// isDeclarationSpecifier() - Return true if the current token is part of a
1644/// declaration specifier.
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001645bool Parser::isDeclarationSpecifier() {
Reid Spencer5f016e22007-07-11 17:01:13 +00001646 switch (Tok.getKind()) {
1647 default: return false;
Chris Lattner166a8fc2009-01-04 23:41:41 +00001648
1649 case tok::identifier: // foo::bar
Steve Naroff61f72cb2009-03-09 21:12:44 +00001650 // Unfortunate hack to support "Class.factoryMethod" notation.
1651 if (getLang().ObjC1 && NextToken().is(tok::period))
1652 return false;
Douglas Gregord57959a2009-03-27 23:10:48 +00001653 // Fall through
Steve Naroff61f72cb2009-03-09 21:12:44 +00001654
Douglas Gregord57959a2009-03-27 23:10:48 +00001655 case tok::kw_typename: // typename T::type
Chris Lattner166a8fc2009-01-04 23:41:41 +00001656 // Annotate typenames and C++ scope specifiers. If we get one, just
1657 // recurse to handle whatever we get.
1658 if (TryAnnotateTypeOrScopeToken())
1659 return isDeclarationSpecifier();
1660 // Otherwise, not a declaration specifier.
1661 return false;
1662 case tok::coloncolon: // ::foo::bar
1663 if (NextToken().is(tok::kw_new) || // ::new
1664 NextToken().is(tok::kw_delete)) // ::delete
1665 return false;
1666
1667 // Annotate typenames and C++ scope specifiers. If we get one, just
1668 // recurse to handle whatever we get.
1669 if (TryAnnotateTypeOrScopeToken())
1670 return isDeclarationSpecifier();
1671 // Otherwise, not a declaration specifier.
1672 return false;
1673
Reid Spencer5f016e22007-07-11 17:01:13 +00001674 // storage-class-specifier
1675 case tok::kw_typedef:
1676 case tok::kw_extern:
Steve Naroff8d54bf22007-12-18 00:16:02 +00001677 case tok::kw___private_extern__:
Reid Spencer5f016e22007-07-11 17:01:13 +00001678 case tok::kw_static:
1679 case tok::kw_auto:
1680 case tok::kw_register:
1681 case tok::kw___thread:
1682
1683 // type-specifiers
1684 case tok::kw_short:
1685 case tok::kw_long:
1686 case tok::kw_signed:
1687 case tok::kw_unsigned:
1688 case tok::kw__Complex:
1689 case tok::kw__Imaginary:
1690 case tok::kw_void:
1691 case tok::kw_char:
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +00001692 case tok::kw_wchar_t:
Reid Spencer5f016e22007-07-11 17:01:13 +00001693 case tok::kw_int:
1694 case tok::kw_float:
1695 case tok::kw_double:
Chris Lattner9298d962007-11-15 05:25:19 +00001696 case tok::kw_bool:
Reid Spencer5f016e22007-07-11 17:01:13 +00001697 case tok::kw__Bool:
1698 case tok::kw__Decimal32:
1699 case tok::kw__Decimal64:
1700 case tok::kw__Decimal128:
1701
Chris Lattner99dc9142008-04-13 18:59:07 +00001702 // struct-or-union-specifier (C99) or class-specifier (C++)
1703 case tok::kw_class:
Reid Spencer5f016e22007-07-11 17:01:13 +00001704 case tok::kw_struct:
1705 case tok::kw_union:
1706 // enum-specifier
1707 case tok::kw_enum:
1708
1709 // type-qualifier
1710 case tok::kw_const:
1711 case tok::kw_volatile:
1712 case tok::kw_restrict:
Steve Naroffd1861fd2007-07-31 12:34:36 +00001713
Reid Spencer5f016e22007-07-11 17:01:13 +00001714 // function-specifier
1715 case tok::kw_inline:
Douglas Gregorb48fe382008-10-31 09:07:45 +00001716 case tok::kw_virtual:
1717 case tok::kw_explicit:
Chris Lattnerd6c7c182007-08-09 16:40:21 +00001718
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001719 // typedef-name
Chris Lattnerb31757b2009-01-06 05:06:21 +00001720 case tok::annot_typename:
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001721
Chris Lattner1ef08762007-08-09 17:01:07 +00001722 // GNU typeof support.
1723 case tok::kw_typeof:
1724
1725 // GNU attributes.
Chris Lattnerd6c7c182007-08-09 16:40:21 +00001726 case tok::kw___attribute:
Reid Spencer5f016e22007-07-11 17:01:13 +00001727 return true;
Chris Lattnerf3948c42008-07-26 03:38:44 +00001728
1729 // GNU ObjC bizarre protocol extension: <proto1,proto2> with implicit 'id'.
1730 case tok::less:
1731 return getLang().ObjC1;
Steve Naroff239f0732008-12-25 14:16:32 +00001732
Steve Naroff47f52092009-01-06 19:34:12 +00001733 case tok::kw___declspec:
Steve Naroff239f0732008-12-25 14:16:32 +00001734 case tok::kw___cdecl:
1735 case tok::kw___stdcall:
1736 case tok::kw___fastcall:
1737 return PP.getLangOptions().Microsoft;
Reid Spencer5f016e22007-07-11 17:01:13 +00001738 }
1739}
1740
1741
1742/// ParseTypeQualifierListOpt
1743/// type-qualifier-list: [C99 6.7.5]
1744/// type-qualifier
Chris Lattner5a69d1c2008-12-18 07:02:59 +00001745/// [GNU] attributes [ only if AttributesAllowed=true ]
Reid Spencer5f016e22007-07-11 17:01:13 +00001746/// type-qualifier-list type-qualifier
Chris Lattner5a69d1c2008-12-18 07:02:59 +00001747/// [GNU] type-qualifier-list attributes [ only if AttributesAllowed=true ]
Reid Spencer5f016e22007-07-11 17:01:13 +00001748///
Chris Lattner5a69d1c2008-12-18 07:02:59 +00001749void Parser::ParseTypeQualifierListOpt(DeclSpec &DS, bool AttributesAllowed) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001750 while (1) {
1751 int isInvalid = false;
1752 const char *PrevSpec = 0;
1753 SourceLocation Loc = Tok.getLocation();
1754
1755 switch (Tok.getKind()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001756 case tok::kw_const:
1757 isInvalid = DS.SetTypeQual(DeclSpec::TQ_const , Loc, PrevSpec,
1758 getLang())*2;
1759 break;
1760 case tok::kw_volatile:
1761 isInvalid = DS.SetTypeQual(DeclSpec::TQ_volatile, Loc, PrevSpec,
1762 getLang())*2;
1763 break;
1764 case tok::kw_restrict:
1765 isInvalid = DS.SetTypeQual(DeclSpec::TQ_restrict, Loc, PrevSpec,
1766 getLang())*2;
1767 break;
Steve Naroff86bc6cf2008-12-25 14:41:26 +00001768 case tok::kw___ptr64:
Steve Naroff239f0732008-12-25 14:16:32 +00001769 case tok::kw___cdecl:
1770 case tok::kw___stdcall:
1771 case tok::kw___fastcall:
1772 if (!PP.getLangOptions().Microsoft)
1773 goto DoneWithTypeQuals;
1774 // Just ignore it.
1775 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00001776 case tok::kw___attribute:
Chris Lattner5a69d1c2008-12-18 07:02:59 +00001777 if (AttributesAllowed) {
1778 DS.AddAttributes(ParseAttributes());
1779 continue; // do *not* consume the next token!
1780 }
1781 // otherwise, FALL THROUGH!
1782 default:
Steve Naroff239f0732008-12-25 14:16:32 +00001783 DoneWithTypeQuals:
Chris Lattner5a69d1c2008-12-18 07:02:59 +00001784 // If this is not a type-qualifier token, we're done reading type
1785 // qualifiers. First verify that DeclSpec's are consistent.
Douglas Gregor9b3064b2009-04-01 22:41:11 +00001786 DS.Finish(Diags, PP);
Chris Lattner5a69d1c2008-12-18 07:02:59 +00001787 return;
Reid Spencer5f016e22007-07-11 17:01:13 +00001788 }
Chris Lattnera1fcbad2008-12-18 06:50:14 +00001789
Reid Spencer5f016e22007-07-11 17:01:13 +00001790 // If the specifier combination wasn't legal, issue a diagnostic.
1791 if (isInvalid) {
1792 assert(PrevSpec && "Method did not return previous specifier!");
Chris Lattner1ab3b962008-11-18 07:48:38 +00001793 // Pick between error or extwarn.
1794 unsigned DiagID = isInvalid == 1 ? diag::err_invalid_decl_spec_combination
1795 : diag::ext_duplicate_declspec;
1796 Diag(Tok, DiagID) << PrevSpec;
Reid Spencer5f016e22007-07-11 17:01:13 +00001797 }
1798 ConsumeToken();
1799 }
1800}
1801
1802
1803/// ParseDeclarator - Parse and verify a newly-initialized declarator.
1804///
1805void Parser::ParseDeclarator(Declarator &D) {
1806 /// This implements the 'declarator' production in the C grammar, then checks
1807 /// for well-formedness and issues diagnostics.
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001808 ParseDeclaratorInternal(D, &Parser::ParseDirectDeclarator);
Reid Spencer5f016e22007-07-11 17:01:13 +00001809}
1810
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001811/// ParseDeclaratorInternal - Parse a C or C++ declarator. The direct-declarator
1812/// is parsed by the function passed to it. Pass null, and the direct-declarator
1813/// isn't parsed at all, making this function effectively parse the C++
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001814/// ptr-operator production.
1815///
Sebastian Redlf30208a2009-01-24 21:16:55 +00001816/// declarator: [C99 6.7.5] [C++ 8p4, dcl.decl]
1817/// [C] pointer[opt] direct-declarator
1818/// [C++] direct-declarator
1819/// [C++] ptr-operator declarator
Reid Spencer5f016e22007-07-11 17:01:13 +00001820///
1821/// pointer: [C99 6.7.5]
1822/// '*' type-qualifier-list[opt]
1823/// '*' type-qualifier-list[opt] pointer
1824///
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001825/// ptr-operator:
1826/// '*' cv-qualifier-seq[opt]
1827/// '&'
Sebastian Redl05532f22009-03-15 22:02:01 +00001828/// [C++0x] '&&'
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001829/// [GNU] '&' restrict[opt] attributes[opt]
Sebastian Redl05532f22009-03-15 22:02:01 +00001830/// [GNU?] '&&' restrict[opt] attributes[opt]
Sebastian Redlf30208a2009-01-24 21:16:55 +00001831/// '::'[opt] nested-name-specifier '*' cv-qualifier-seq[opt]
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001832void Parser::ParseDeclaratorInternal(Declarator &D,
1833 DirectDeclParseFunction DirectDeclParser) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001834
Sebastian Redlf30208a2009-01-24 21:16:55 +00001835 // C++ member pointers start with a '::' or a nested-name.
1836 // Member pointers get special handling, since there's no place for the
1837 // scope spec in the generic path below.
Chris Lattnerf919bfe2009-03-24 17:04:48 +00001838 if (getLang().CPlusPlus &&
1839 (Tok.is(tok::coloncolon) || Tok.is(tok::identifier) ||
1840 Tok.is(tok::annot_cxxscope))) {
Sebastian Redlf30208a2009-01-24 21:16:55 +00001841 CXXScopeSpec SS;
1842 if (ParseOptionalCXXScopeSpecifier(SS)) {
1843 if(Tok.isNot(tok::star)) {
1844 // The scope spec really belongs to the direct-declarator.
1845 D.getCXXScopeSpec() = SS;
1846 if (DirectDeclParser)
1847 (this->*DirectDeclParser)(D);
1848 return;
1849 }
1850
1851 SourceLocation Loc = ConsumeToken();
Sebastian Redlab197ba2009-02-09 18:23:29 +00001852 D.SetRangeEnd(Loc);
Sebastian Redlf30208a2009-01-24 21:16:55 +00001853 DeclSpec DS;
1854 ParseTypeQualifierListOpt(DS);
Sebastian Redlab197ba2009-02-09 18:23:29 +00001855 D.ExtendWithDeclSpec(DS);
Sebastian Redlf30208a2009-01-24 21:16:55 +00001856
1857 // Recurse to parse whatever is left.
1858 ParseDeclaratorInternal(D, DirectDeclParser);
1859
1860 // Sema will have to catch (syntactically invalid) pointers into global
1861 // scope. It has to catch pointers into namespace scope anyway.
1862 D.AddTypeInfo(DeclaratorChunk::getMemberPointer(SS,DS.getTypeQualifiers(),
Sebastian Redlab197ba2009-02-09 18:23:29 +00001863 Loc, DS.TakeAttributes()),
1864 /* Don't replace range end. */SourceLocation());
Sebastian Redlf30208a2009-01-24 21:16:55 +00001865 return;
1866 }
1867 }
1868
1869 tok::TokenKind Kind = Tok.getKind();
Steve Naroff5618bd42008-08-27 16:04:49 +00001870 // Not a pointer, C++ reference, or block.
Chris Lattner9af55002009-03-27 04:18:06 +00001871 if (Kind != tok::star && Kind != tok::caret &&
Chris Lattnerf919bfe2009-03-24 17:04:48 +00001872 (Kind != tok::amp || !getLang().CPlusPlus) &&
Sebastian Redl743de1f2009-03-23 00:00:23 +00001873 // We parse rvalue refs in C++03, because otherwise the errors are scary.
Chris Lattner9af55002009-03-27 04:18:06 +00001874 (Kind != tok::ampamp || !getLang().CPlusPlus)) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001875 if (DirectDeclParser)
1876 (this->*DirectDeclParser)(D);
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001877 return;
1878 }
Sebastian Redlf30208a2009-01-24 21:16:55 +00001879
Sebastian Redl05532f22009-03-15 22:02:01 +00001880 // Otherwise, '*' -> pointer, '^' -> block, '&' -> lvalue reference,
1881 // '&&' -> rvalue reference
Sebastian Redl743de1f2009-03-23 00:00:23 +00001882 SourceLocation Loc = ConsumeToken(); // Eat the *, ^, & or &&.
Sebastian Redlab197ba2009-02-09 18:23:29 +00001883 D.SetRangeEnd(Loc);
Reid Spencer5f016e22007-07-11 17:01:13 +00001884
Chris Lattner9af55002009-03-27 04:18:06 +00001885 if (Kind == tok::star || Kind == tok::caret) {
Chris Lattner76549142008-02-21 01:32:26 +00001886 // Is a pointer.
Reid Spencer5f016e22007-07-11 17:01:13 +00001887 DeclSpec DS;
Sebastian Redlf30208a2009-01-24 21:16:55 +00001888
Reid Spencer5f016e22007-07-11 17:01:13 +00001889 ParseTypeQualifierListOpt(DS);
Sebastian Redlab197ba2009-02-09 18:23:29 +00001890 D.ExtendWithDeclSpec(DS);
Sebastian Redlf30208a2009-01-24 21:16:55 +00001891
Reid Spencer5f016e22007-07-11 17:01:13 +00001892 // Recursively parse the declarator.
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001893 ParseDeclaratorInternal(D, DirectDeclParser);
Steve Naroff5618bd42008-08-27 16:04:49 +00001894 if (Kind == tok::star)
1895 // Remember that we parsed a pointer type, and remember the type-quals.
1896 D.AddTypeInfo(DeclaratorChunk::getPointer(DS.getTypeQualifiers(), Loc,
Sebastian Redlab197ba2009-02-09 18:23:29 +00001897 DS.TakeAttributes()),
1898 SourceLocation());
Steve Naroff5618bd42008-08-27 16:04:49 +00001899 else
1900 // Remember that we parsed a Block type, and remember the type-quals.
1901 D.AddTypeInfo(DeclaratorChunk::getBlockPointer(DS.getTypeQualifiers(),
Mike Stump75b163f2009-04-21 00:51:43 +00001902 Loc, DS.TakeAttributes()),
Sebastian Redlab197ba2009-02-09 18:23:29 +00001903 SourceLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00001904 } else {
1905 // Is a reference
1906 DeclSpec DS;
1907
Sebastian Redl743de1f2009-03-23 00:00:23 +00001908 // Complain about rvalue references in C++03, but then go on and build
1909 // the declarator.
1910 if (Kind == tok::ampamp && !getLang().CPlusPlus0x)
1911 Diag(Loc, diag::err_rvalue_reference);
1912
Reid Spencer5f016e22007-07-11 17:01:13 +00001913 // C++ 8.3.2p1: cv-qualified references are ill-formed except when the
1914 // cv-qualifiers are introduced through the use of a typedef or of a
1915 // template type argument, in which case the cv-qualifiers are ignored.
1916 //
1917 // [GNU] Retricted references are allowed.
1918 // [GNU] Attributes on references are allowed.
1919 ParseTypeQualifierListOpt(DS);
Sebastian Redlab197ba2009-02-09 18:23:29 +00001920 D.ExtendWithDeclSpec(DS);
Reid Spencer5f016e22007-07-11 17:01:13 +00001921
1922 if (DS.getTypeQualifiers() != DeclSpec::TQ_unspecified) {
1923 if (DS.getTypeQualifiers() & DeclSpec::TQ_const)
1924 Diag(DS.getConstSpecLoc(),
Chris Lattner1ab3b962008-11-18 07:48:38 +00001925 diag::err_invalid_reference_qualifier_application) << "const";
Reid Spencer5f016e22007-07-11 17:01:13 +00001926 if (DS.getTypeQualifiers() & DeclSpec::TQ_volatile)
1927 Diag(DS.getVolatileSpecLoc(),
Chris Lattner1ab3b962008-11-18 07:48:38 +00001928 diag::err_invalid_reference_qualifier_application) << "volatile";
Reid Spencer5f016e22007-07-11 17:01:13 +00001929 }
1930
1931 // Recursively parse the declarator.
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001932 ParseDeclaratorInternal(D, DirectDeclParser);
Reid Spencer5f016e22007-07-11 17:01:13 +00001933
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +00001934 if (D.getNumTypeObjects() > 0) {
1935 // C++ [dcl.ref]p4: There shall be no references to references.
1936 DeclaratorChunk& InnerChunk = D.getTypeObject(D.getNumTypeObjects() - 1);
1937 if (InnerChunk.Kind == DeclaratorChunk::Reference) {
Chris Lattnerda83bac2008-11-19 07:37:42 +00001938 if (const IdentifierInfo *II = D.getIdentifier())
1939 Diag(InnerChunk.Loc, diag::err_illegal_decl_reference_to_reference)
1940 << II;
1941 else
1942 Diag(InnerChunk.Loc, diag::err_illegal_decl_reference_to_reference)
1943 << "type name";
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +00001944
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001945 // Once we've complained about the reference-to-reference, we
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +00001946 // can go ahead and build the (technically ill-formed)
1947 // declarator: reference collapsing will take care of it.
1948 }
1949 }
1950
Reid Spencer5f016e22007-07-11 17:01:13 +00001951 // Remember that we parsed a reference type. It doesn't have type-quals.
Chris Lattner76549142008-02-21 01:32:26 +00001952 D.AddTypeInfo(DeclaratorChunk::getReference(DS.getTypeQualifiers(), Loc,
Sebastian Redl05532f22009-03-15 22:02:01 +00001953 DS.TakeAttributes(),
1954 Kind == tok::amp),
Sebastian Redlab197ba2009-02-09 18:23:29 +00001955 SourceLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00001956 }
1957}
1958
1959/// ParseDirectDeclarator
1960/// direct-declarator: [C99 6.7.5]
Douglas Gregor42a552f2008-11-05 20:51:48 +00001961/// [C99] identifier
Reid Spencer5f016e22007-07-11 17:01:13 +00001962/// '(' declarator ')'
1963/// [GNU] '(' attributes declarator ')'
1964/// [C90] direct-declarator '[' constant-expression[opt] ']'
1965/// [C99] direct-declarator '[' type-qual-list[opt] assignment-expr[opt] ']'
1966/// [C99] direct-declarator '[' 'static' type-qual-list[opt] assign-expr ']'
1967/// [C99] direct-declarator '[' type-qual-list 'static' assignment-expr ']'
1968/// [C99] direct-declarator '[' type-qual-list[opt] '*' ']'
1969/// direct-declarator '(' parameter-type-list ')'
1970/// direct-declarator '(' identifier-list[opt] ')'
1971/// [GNU] direct-declarator '(' parameter-forward-declarations
1972/// parameter-type-list[opt] ')'
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001973/// [C++] direct-declarator '(' parameter-declaration-clause ')'
1974/// cv-qualifier-seq[opt] exception-specification[opt]
Douglas Gregorb48fe382008-10-31 09:07:45 +00001975/// [C++] declarator-id
Douglas Gregor42a552f2008-11-05 20:51:48 +00001976///
1977/// declarator-id: [C++ 8]
1978/// id-expression
1979/// '::'[opt] nested-name-specifier[opt] type-name
1980///
1981/// id-expression: [C++ 5.1]
1982/// unqualified-id
1983/// qualified-id [TODO]
1984///
1985/// unqualified-id: [C++ 5.1]
1986/// identifier
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001987/// operator-function-id
Douglas Gregor42a552f2008-11-05 20:51:48 +00001988/// conversion-function-id [TODO]
1989/// '~' class-name
Douglas Gregor39a8de12009-02-25 19:37:18 +00001990/// template-id
Argyrios Kyrtzidisc7ed9c62008-11-07 22:02:30 +00001991///
Reid Spencer5f016e22007-07-11 17:01:13 +00001992void Parser::ParseDirectDeclarator(Declarator &D) {
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00001993 DeclaratorScopeObj DeclScopeObj(*this, D.getCXXScopeSpec());
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001994
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00001995 if (getLang().CPlusPlus) {
1996 if (D.mayHaveIdentifier()) {
Sebastian Redlf30208a2009-01-24 21:16:55 +00001997 // ParseDeclaratorInternal might already have parsed the scope.
1998 bool afterCXXScope = D.getCXXScopeSpec().isSet() ||
1999 ParseOptionalCXXScopeSpecifier(D.getCXXScopeSpec());
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00002000 if (afterCXXScope) {
2001 // Change the declaration context for name lookup, until this function
2002 // is exited (and the declarator has been parsed).
2003 DeclScopeObj.EnterDeclaratorScope();
2004 }
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002005
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00002006 if (Tok.is(tok::identifier)) {
2007 assert(Tok.getIdentifierInfo() && "Not an identifier?");
Anders Carlsson4649cac2009-04-30 22:41:11 +00002008
2009 // If this identifier is the name of the current class, it's a
2010 // constructor name.
2011 if (!D.getDeclSpec().hasTypeSpecifier() &&
2012 Actions.isCurrentClassName(*Tok.getIdentifierInfo(),CurScope)) {
2013 D.setConstructor(Actions.getTypeName(*Tok.getIdentifierInfo(),
2014 Tok.getLocation(), CurScope),
2015 Tok.getLocation());
2016 // This is a normal identifier.
2017 } else
2018 D.SetIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00002019 ConsumeToken();
2020 goto PastIdentifier;
Douglas Gregor39a8de12009-02-25 19:37:18 +00002021 } else if (Tok.is(tok::annot_template_id)) {
2022 TemplateIdAnnotation *TemplateId
2023 = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
2024
2025 // FIXME: Could this template-id name a constructor?
2026
2027 // FIXME: This is an egregious hack, where we silently ignore
2028 // the specialization (which should be a function template
2029 // specialization name) and use the name instead. This hack
2030 // will go away when we have support for function
2031 // specializations.
2032 D.SetIdentifier(TemplateId->Name, Tok.getLocation());
2033 TemplateId->Destroy();
2034 ConsumeToken();
2035 goto PastIdentifier;
Douglas Gregor70316a02008-12-26 15:00:45 +00002036 } else if (Tok.is(tok::kw_operator)) {
2037 SourceLocation OperatorLoc = Tok.getLocation();
Sebastian Redlab197ba2009-02-09 18:23:29 +00002038 SourceLocation EndLoc;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00002039
Douglas Gregor70316a02008-12-26 15:00:45 +00002040 // First try the name of an overloaded operator
Sebastian Redlab197ba2009-02-09 18:23:29 +00002041 if (OverloadedOperatorKind Op = TryParseOperatorFunctionId(&EndLoc)) {
2042 D.setOverloadedOperator(Op, OperatorLoc, EndLoc);
Douglas Gregor70316a02008-12-26 15:00:45 +00002043 } else {
2044 // This must be a conversion function (C++ [class.conv.fct]).
Sebastian Redlab197ba2009-02-09 18:23:29 +00002045 if (TypeTy *ConvType = ParseConversionFunctionId(&EndLoc))
2046 D.setConversionFunction(ConvType, OperatorLoc, EndLoc);
2047 else {
Douglas Gregor70316a02008-12-26 15:00:45 +00002048 D.SetIdentifier(0, Tok.getLocation());
Sebastian Redlab197ba2009-02-09 18:23:29 +00002049 }
Douglas Gregor70316a02008-12-26 15:00:45 +00002050 }
2051 goto PastIdentifier;
2052 } else if (Tok.is(tok::tilde)) {
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00002053 // This should be a C++ destructor.
2054 SourceLocation TildeLoc = ConsumeToken();
2055 if (Tok.is(tok::identifier)) {
Sebastian Redlab197ba2009-02-09 18:23:29 +00002056 // FIXME: Inaccurate.
2057 SourceLocation NameLoc = Tok.getLocation();
Douglas Gregor7f43d672009-02-25 23:52:28 +00002058 SourceLocation EndLoc;
Douglas Gregor31a19b62009-04-01 21:51:26 +00002059 TypeResult Type = ParseClassName(EndLoc);
2060 if (Type.isInvalid())
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00002061 D.SetIdentifier(0, TildeLoc);
Douglas Gregor31a19b62009-04-01 21:51:26 +00002062 else
2063 D.setDestructor(Type.get(), TildeLoc, NameLoc);
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00002064 } else {
2065 Diag(Tok, diag::err_expected_class_name);
2066 D.SetIdentifier(0, TildeLoc);
2067 }
2068 goto PastIdentifier;
2069 }
2070
2071 // If we reached this point, token is not identifier and not '~'.
2072
2073 if (afterCXXScope) {
2074 Diag(Tok, diag::err_expected_unqualified_id);
2075 D.SetIdentifier(0, Tok.getLocation());
2076 D.setInvalidType(true);
2077 goto PastIdentifier;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002078 }
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00002079 }
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00002080 }
2081
2082 // If we reached this point, we are either in C/ObjC or the token didn't
2083 // satisfy any of the C++-specific checks.
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00002084 if (Tok.is(tok::identifier) && D.mayHaveIdentifier()) {
2085 assert(!getLang().CPlusPlus &&
2086 "There's a C++-specific check for tok::identifier above");
2087 assert(Tok.getIdentifierInfo() && "Not an identifier?");
2088 D.SetIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
2089 ConsumeToken();
2090 } else if (Tok.is(tok::l_paren)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002091 // direct-declarator: '(' declarator ')'
2092 // direct-declarator: '(' attributes declarator ')'
2093 // Example: 'char (*X)' or 'int (*XX)(void)'
2094 ParseParenDeclarator(D);
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00002095 } else if (D.mayOmitIdentifier()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002096 // This could be something simple like "int" (in which case the declarator
2097 // portion is empty), if an abstract-declarator is allowed.
2098 D.SetIdentifier(0, Tok.getLocation());
2099 } else {
Douglas Gregore950d4b2009-03-06 23:28:18 +00002100 if (D.getContext() == Declarator::MemberContext)
2101 Diag(Tok, diag::err_expected_member_name_or_semi)
2102 << D.getDeclSpec().getSourceRange();
2103 else if (getLang().CPlusPlus)
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002104 Diag(Tok, diag::err_expected_unqualified_id);
2105 else
Chris Lattner1ab3b962008-11-18 07:48:38 +00002106 Diag(Tok, diag::err_expected_ident_lparen);
Reid Spencer5f016e22007-07-11 17:01:13 +00002107 D.SetIdentifier(0, Tok.getLocation());
Chris Lattner1f6f54b2008-11-11 06:13:16 +00002108 D.setInvalidType(true);
Reid Spencer5f016e22007-07-11 17:01:13 +00002109 }
2110
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00002111 PastIdentifier:
Reid Spencer5f016e22007-07-11 17:01:13 +00002112 assert(D.isPastIdentifier() &&
2113 "Haven't past the location of the identifier yet?");
2114
2115 while (1) {
Chris Lattner04d66662007-10-09 17:33:22 +00002116 if (Tok.is(tok::l_paren)) {
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00002117 // The paren may be part of a C++ direct initializer, eg. "int x(1);".
2118 // In such a case, check if we actually have a function declarator; if it
2119 // is not, the declarator has been fully parsed.
Chris Lattner7399ee02008-10-20 02:05:46 +00002120 if (getLang().CPlusPlus && D.mayBeFollowedByCXXDirectInit()) {
2121 // When not in file scope, warn for ambiguous function declarators, just
2122 // in case the author intended it as a variable definition.
2123 bool warnIfAmbiguous = D.getContext() != Declarator::FileContext;
2124 if (!isCXXFunctionDeclarator(warnIfAmbiguous))
2125 break;
2126 }
Chris Lattneref4715c2008-04-06 05:45:57 +00002127 ParseFunctionDeclarator(ConsumeParen(), D);
Chris Lattner04d66662007-10-09 17:33:22 +00002128 } else if (Tok.is(tok::l_square)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002129 ParseBracketDeclarator(D);
2130 } else {
2131 break;
2132 }
2133 }
2134}
2135
Chris Lattneref4715c2008-04-06 05:45:57 +00002136/// ParseParenDeclarator - We parsed the declarator D up to a paren. This is
2137/// only called before the identifier, so these are most likely just grouping
2138/// parens for precedence. If we find that these are actually function
2139/// parameter parens in an abstract-declarator, we call ParseFunctionDeclarator.
2140///
2141/// direct-declarator:
2142/// '(' declarator ')'
2143/// [GNU] '(' attributes declarator ')'
Chris Lattner7399ee02008-10-20 02:05:46 +00002144/// direct-declarator '(' parameter-type-list ')'
2145/// direct-declarator '(' identifier-list[opt] ')'
2146/// [GNU] direct-declarator '(' parameter-forward-declarations
2147/// parameter-type-list[opt] ')'
Chris Lattneref4715c2008-04-06 05:45:57 +00002148///
2149void Parser::ParseParenDeclarator(Declarator &D) {
2150 SourceLocation StartLoc = ConsumeParen();
2151 assert(!D.isPastIdentifier() && "Should be called before passing identifier");
2152
Chris Lattner7399ee02008-10-20 02:05:46 +00002153 // Eat any attributes before we look at whether this is a grouping or function
2154 // declarator paren. If this is a grouping paren, the attribute applies to
2155 // the type being built up, for example:
2156 // int (__attribute__(()) *x)(long y)
2157 // If this ends up not being a grouping paren, the attribute applies to the
2158 // first argument, for example:
2159 // int (__attribute__(()) int x)
2160 // In either case, we need to eat any attributes to be able to determine what
2161 // sort of paren this is.
2162 //
2163 AttributeList *AttrList = 0;
2164 bool RequiresArg = false;
2165 if (Tok.is(tok::kw___attribute)) {
2166 AttrList = ParseAttributes();
2167
2168 // We require that the argument list (if this is a non-grouping paren) be
2169 // present even if the attribute list was empty.
2170 RequiresArg = true;
2171 }
Steve Naroff239f0732008-12-25 14:16:32 +00002172 // Eat any Microsoft extensions.
Douglas Gregor5a2f5d32009-01-10 00:48:18 +00002173 while ((Tok.is(tok::kw___cdecl) || Tok.is(tok::kw___stdcall) ||
2174 (Tok.is(tok::kw___fastcall))) && PP.getLangOptions().Microsoft)
Steve Naroff239f0732008-12-25 14:16:32 +00002175 ConsumeToken();
Chris Lattner7399ee02008-10-20 02:05:46 +00002176
Chris Lattneref4715c2008-04-06 05:45:57 +00002177 // If we haven't past the identifier yet (or where the identifier would be
2178 // stored, if this is an abstract declarator), then this is probably just
2179 // grouping parens. However, if this could be an abstract-declarator, then
2180 // this could also be the start of function arguments (consider 'void()').
2181 bool isGrouping;
2182
2183 if (!D.mayOmitIdentifier()) {
2184 // If this can't be an abstract-declarator, this *must* be a grouping
2185 // paren, because we haven't seen the identifier yet.
2186 isGrouping = true;
2187 } else if (Tok.is(tok::r_paren) || // 'int()' is a function.
Argyrios Kyrtzidise25d2702008-10-06 00:07:55 +00002188 (getLang().CPlusPlus && Tok.is(tok::ellipsis)) || // C++ int(...)
Chris Lattneref4715c2008-04-06 05:45:57 +00002189 isDeclarationSpecifier()) { // 'int(int)' is a function.
2190 // This handles C99 6.7.5.3p11: in "typedef int X; void foo(X)", X is
2191 // considered to be a type, not a K&R identifier-list.
2192 isGrouping = false;
2193 } else {
2194 // Otherwise, this is a grouping paren, e.g. 'int (*X)' or 'int(X)'.
2195 isGrouping = true;
2196 }
2197
2198 // If this is a grouping paren, handle:
2199 // direct-declarator: '(' declarator ')'
2200 // direct-declarator: '(' attributes declarator ')'
2201 if (isGrouping) {
Argyrios Kyrtzidis3f2a8a02008-10-07 10:21:57 +00002202 bool hadGroupingParens = D.hasGroupingParens();
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00002203 D.setGroupingParens(true);
Chris Lattner7399ee02008-10-20 02:05:46 +00002204 if (AttrList)
Sebastian Redlab197ba2009-02-09 18:23:29 +00002205 D.AddAttributes(AttrList, SourceLocation());
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00002206
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002207 ParseDeclaratorInternal(D, &Parser::ParseDirectDeclarator);
Chris Lattneref4715c2008-04-06 05:45:57 +00002208 // Match the ')'.
Sebastian Redlab197ba2009-02-09 18:23:29 +00002209 SourceLocation Loc = MatchRHSPunctuation(tok::r_paren, StartLoc);
Argyrios Kyrtzidis3f2a8a02008-10-07 10:21:57 +00002210
2211 D.setGroupingParens(hadGroupingParens);
Sebastian Redlab197ba2009-02-09 18:23:29 +00002212 D.SetRangeEnd(Loc);
Chris Lattneref4715c2008-04-06 05:45:57 +00002213 return;
2214 }
2215
2216 // Okay, if this wasn't a grouping paren, it must be the start of a function
2217 // argument list. Recognize that this declarator will never have an
Chris Lattner7399ee02008-10-20 02:05:46 +00002218 // identifier (and remember where it would have been), then call into
2219 // ParseFunctionDeclarator to handle of argument list.
Chris Lattneref4715c2008-04-06 05:45:57 +00002220 D.SetIdentifier(0, Tok.getLocation());
2221
Chris Lattner7399ee02008-10-20 02:05:46 +00002222 ParseFunctionDeclarator(StartLoc, D, AttrList, RequiresArg);
Chris Lattneref4715c2008-04-06 05:45:57 +00002223}
2224
2225/// ParseFunctionDeclarator - We are after the identifier and have parsed the
2226/// declarator D up to a paren, which indicates that we are parsing function
2227/// arguments.
Reid Spencer5f016e22007-07-11 17:01:13 +00002228///
Chris Lattner7399ee02008-10-20 02:05:46 +00002229/// If AttrList is non-null, then the caller parsed those arguments immediately
2230/// after the open paren - they should be considered to be the first argument of
2231/// a parameter. If RequiresArg is true, then the first argument of the
2232/// function is required to be present and required to not be an identifier
2233/// list.
2234///
Reid Spencer5f016e22007-07-11 17:01:13 +00002235/// This method also handles this portion of the grammar:
2236/// parameter-type-list: [C99 6.7.5]
2237/// parameter-list
2238/// parameter-list ',' '...'
2239///
2240/// parameter-list: [C99 6.7.5]
2241/// parameter-declaration
2242/// parameter-list ',' parameter-declaration
2243///
2244/// parameter-declaration: [C99 6.7.5]
2245/// declaration-specifiers declarator
Chris Lattner04421082008-04-08 04:40:51 +00002246/// [C++] declaration-specifiers declarator '=' assignment-expression
Reid Spencer5f016e22007-07-11 17:01:13 +00002247/// [GNU] declaration-specifiers declarator attributes
Sebastian Redl50de12f2009-03-24 22:27:57 +00002248/// declaration-specifiers abstract-declarator[opt]
2249/// [C++] declaration-specifiers abstract-declarator[opt]
Chris Lattner8123a952008-04-10 02:22:51 +00002250/// '=' assignment-expression
Reid Spencer5f016e22007-07-11 17:01:13 +00002251/// [GNU] declaration-specifiers abstract-declarator[opt] attributes
2252///
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002253/// For C++, after the parameter-list, it also parses "cv-qualifier-seq[opt]"
Sebastian Redl50de12f2009-03-24 22:27:57 +00002254/// and "exception-specification[opt]".
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002255///
Chris Lattner7399ee02008-10-20 02:05:46 +00002256void Parser::ParseFunctionDeclarator(SourceLocation LParenLoc, Declarator &D,
2257 AttributeList *AttrList,
2258 bool RequiresArg) {
Chris Lattneref4715c2008-04-06 05:45:57 +00002259 // lparen is already consumed!
2260 assert(D.isPastIdentifier() && "Should not call before identifier!");
Reid Spencer5f016e22007-07-11 17:01:13 +00002261
Chris Lattner7399ee02008-10-20 02:05:46 +00002262 // This parameter list may be empty.
Chris Lattner04d66662007-10-09 17:33:22 +00002263 if (Tok.is(tok::r_paren)) {
Chris Lattner7399ee02008-10-20 02:05:46 +00002264 if (RequiresArg) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00002265 Diag(Tok, diag::err_argument_required_after_attribute);
Chris Lattner7399ee02008-10-20 02:05:46 +00002266 delete AttrList;
2267 }
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002268
Sebastian Redlab197ba2009-02-09 18:23:29 +00002269 SourceLocation Loc = ConsumeParen(); // Eat the closing ')'.
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002270
2271 // cv-qualifier-seq[opt].
2272 DeclSpec DS;
Sebastian Redl7dc81342009-04-29 17:30:04 +00002273 bool hasExceptionSpec = false;
2274 bool hasAnyExceptionSpec = false;
2275 // FIXME: Does an empty vector ever allocate? Exception specifications are
2276 // extremely rare, so we want something like a SmallVector<TypeTy*, 0>. :-)
2277 std::vector<TypeTy*> Exceptions;
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002278 if (getLang().CPlusPlus) {
Chris Lattner5a69d1c2008-12-18 07:02:59 +00002279 ParseTypeQualifierListOpt(DS, false /*no attributes*/);
Sebastian Redlab197ba2009-02-09 18:23:29 +00002280 if (!DS.getSourceRange().getEnd().isInvalid())
2281 Loc = DS.getSourceRange().getEnd();
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002282
2283 // Parse exception-specification[opt].
Sebastian Redl7dc81342009-04-29 17:30:04 +00002284 if (Tok.is(tok::kw_throw)) {
2285 hasExceptionSpec = true;
2286 ParseExceptionSpecification(Loc, Exceptions, hasAnyExceptionSpec);
2287 }
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002288 }
2289
Chris Lattnerf97409f2008-04-06 06:57:35 +00002290 // Remember that we parsed a function type, and remember the attributes.
Reid Spencer5f016e22007-07-11 17:01:13 +00002291 // int() -> no prototype, no '...'.
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002292 D.AddTypeInfo(DeclaratorChunk::getFunction(/*prototype*/getLang().CPlusPlus,
Chris Lattnerf97409f2008-04-06 06:57:35 +00002293 /*variadic*/ false,
Douglas Gregor965acbb2009-02-18 07:07:28 +00002294 SourceLocation(),
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002295 /*arglist*/ 0, 0,
2296 DS.getTypeQualifiers(),
Sebastian Redl7dc81342009-04-29 17:30:04 +00002297 hasExceptionSpec,
2298 hasAnyExceptionSpec,
2299 Exceptions.empty() ? 0 :
2300 &Exceptions[0],
2301 Exceptions.size(),
Sebastian Redlab197ba2009-02-09 18:23:29 +00002302 LParenLoc, D),
2303 Loc);
Chris Lattnerf97409f2008-04-06 06:57:35 +00002304 return;
Chris Lattner7399ee02008-10-20 02:05:46 +00002305 }
2306
2307 // Alternatively, this parameter list may be an identifier list form for a
2308 // K&R-style function: void foo(a,b,c)
Steve Naroff2d081c42009-01-28 19:16:40 +00002309 if (!getLang().CPlusPlus && Tok.is(tok::identifier)) {
Steve Narofff64ef622009-01-30 14:23:32 +00002310 if (!TryAnnotateTypeOrScopeToken()) {
Chris Lattner7399ee02008-10-20 02:05:46 +00002311 // K&R identifier lists can't have typedefs as identifiers, per
2312 // C99 6.7.5.3p11.
Steve Naroff2d081c42009-01-28 19:16:40 +00002313 if (RequiresArg) {
2314 Diag(Tok, diag::err_argument_required_after_attribute);
2315 delete AttrList;
2316 }
Steve Naroff2d081c42009-01-28 19:16:40 +00002317 // Identifier list. Note that '(' identifier-list ')' is only allowed for
2318 // normal declarators, not for abstract-declarators.
2319 return ParseFunctionDeclaratorIdentifierList(LParenLoc, D);
Chris Lattner7399ee02008-10-20 02:05:46 +00002320 }
Chris Lattnerf97409f2008-04-06 06:57:35 +00002321 }
2322
2323 // Finally, a normal, non-empty parameter type list.
2324
2325 // Build up an array of information about the parsed arguments.
2326 llvm::SmallVector<DeclaratorChunk::ParamInfo, 16> ParamInfo;
Chris Lattner04421082008-04-08 04:40:51 +00002327
2328 // Enter function-declaration scope, limiting any declarators to the
2329 // function prototype scope, including parameter declarators.
Chris Lattnerae50fa02009-03-05 00:00:31 +00002330 ParseScope PrototypeScope(this,
2331 Scope::FunctionPrototypeScope|Scope::DeclScope);
Chris Lattnerf97409f2008-04-06 06:57:35 +00002332
2333 bool IsVariadic = false;
Douglas Gregor965acbb2009-02-18 07:07:28 +00002334 SourceLocation EllipsisLoc;
Chris Lattnerf97409f2008-04-06 06:57:35 +00002335 while (1) {
2336 if (Tok.is(tok::ellipsis)) {
2337 IsVariadic = true;
Douglas Gregor965acbb2009-02-18 07:07:28 +00002338 EllipsisLoc = ConsumeToken(); // Consume the ellipsis.
Chris Lattnerf97409f2008-04-06 06:57:35 +00002339 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00002340 }
2341
Chris Lattnerf97409f2008-04-06 06:57:35 +00002342 SourceLocation DSStart = Tok.getLocation();
Reid Spencer5f016e22007-07-11 17:01:13 +00002343
Chris Lattnerf97409f2008-04-06 06:57:35 +00002344 // Parse the declaration-specifiers.
2345 DeclSpec DS;
Chris Lattner7399ee02008-10-20 02:05:46 +00002346
2347 // If the caller parsed attributes for the first argument, add them now.
2348 if (AttrList) {
2349 DS.AddAttributes(AttrList);
2350 AttrList = 0; // Only apply the attributes to the first parameter.
2351 }
Chris Lattnere64c5492009-02-27 18:38:20 +00002352 ParseDeclarationSpecifiers(DS);
2353
Chris Lattnerf97409f2008-04-06 06:57:35 +00002354 // Parse the declarator. This is "PrototypeContext", because we must
2355 // accept either 'declarator' or 'abstract-declarator' here.
2356 Declarator ParmDecl(DS, Declarator::PrototypeContext);
2357 ParseDeclarator(ParmDecl);
2358
2359 // Parse GNU attributes, if present.
Sebastian Redlab197ba2009-02-09 18:23:29 +00002360 if (Tok.is(tok::kw___attribute)) {
2361 SourceLocation Loc;
2362 AttributeList *AttrList = ParseAttributes(&Loc);
2363 ParmDecl.AddAttributes(AttrList, Loc);
2364 }
Chris Lattnerf97409f2008-04-06 06:57:35 +00002365
Chris Lattnerf97409f2008-04-06 06:57:35 +00002366 // Remember this parsed parameter in ParamInfo.
2367 IdentifierInfo *ParmII = ParmDecl.getIdentifier();
2368
Douglas Gregor72b505b2008-12-16 21:30:33 +00002369 // DefArgToks is used when the parsing of default arguments needs
2370 // to be delayed.
2371 CachedTokens *DefArgToks = 0;
2372
Chris Lattnerf97409f2008-04-06 06:57:35 +00002373 // If no parameter was specified, verify that *something* was specified,
2374 // otherwise we have a missing type and identifier.
Chris Lattnere64c5492009-02-27 18:38:20 +00002375 if (DS.isEmpty() && ParmDecl.getIdentifier() == 0 &&
2376 ParmDecl.getNumTypeObjects() == 0) {
Chris Lattnerf97409f2008-04-06 06:57:35 +00002377 // Completely missing, emit error.
2378 Diag(DSStart, diag::err_missing_param);
2379 } else {
2380 // Otherwise, we have something. Add it and let semantic analysis try
2381 // to grok it and add the result to the ParamInfo we are building.
2382
2383 // Inform the actions module about the parameter declarator, so it gets
2384 // added to the current scope.
Chris Lattnerb28317a2009-03-28 19:18:32 +00002385 DeclPtrTy Param = Actions.ActOnParamDeclarator(CurScope, ParmDecl);
Chris Lattner04421082008-04-08 04:40:51 +00002386
2387 // Parse the default argument, if any. We parse the default
2388 // arguments in all dialects; the semantic analysis in
2389 // ActOnParamDefaultArgument will reject the default argument in
2390 // C.
2391 if (Tok.is(tok::equal)) {
Douglas Gregor61366e92008-12-24 00:01:03 +00002392 SourceLocation EqualLoc = Tok.getLocation();
2393
Chris Lattner04421082008-04-08 04:40:51 +00002394 // Parse the default argument
Douglas Gregor72b505b2008-12-16 21:30:33 +00002395 if (D.getContext() == Declarator::MemberContext) {
2396 // If we're inside a class definition, cache the tokens
2397 // corresponding to the default argument. We'll actually parse
2398 // them when we see the end of the class definition.
2399 // FIXME: Templates will require something similar.
2400 // FIXME: Can we use a smart pointer for Toks?
2401 DefArgToks = new CachedTokens;
2402
2403 if (!ConsumeAndStoreUntil(tok::comma, tok::r_paren, *DefArgToks,
2404 tok::semi, false)) {
2405 delete DefArgToks;
2406 DefArgToks = 0;
Douglas Gregor61366e92008-12-24 00:01:03 +00002407 Actions.ActOnParamDefaultArgumentError(Param);
2408 } else
2409 Actions.ActOnParamUnparsedDefaultArgument(Param, EqualLoc);
Chris Lattner04421082008-04-08 04:40:51 +00002410 } else {
Douglas Gregor72b505b2008-12-16 21:30:33 +00002411 // Consume the '='.
Douglas Gregor61366e92008-12-24 00:01:03 +00002412 ConsumeToken();
Douglas Gregor72b505b2008-12-16 21:30:33 +00002413
2414 OwningExprResult DefArgResult(ParseAssignmentExpression());
2415 if (DefArgResult.isInvalid()) {
2416 Actions.ActOnParamDefaultArgumentError(Param);
2417 SkipUntil(tok::comma, tok::r_paren, true, true);
2418 } else {
2419 // Inform the actions module about the default argument
2420 Actions.ActOnParamDefaultArgument(Param, EqualLoc,
Sebastian Redlf53597f2009-03-15 17:47:39 +00002421 move(DefArgResult));
Douglas Gregor72b505b2008-12-16 21:30:33 +00002422 }
Chris Lattner04421082008-04-08 04:40:51 +00002423 }
2424 }
Chris Lattnerf97409f2008-04-06 06:57:35 +00002425
2426 ParamInfo.push_back(DeclaratorChunk::ParamInfo(ParmII,
Douglas Gregor72b505b2008-12-16 21:30:33 +00002427 ParmDecl.getIdentifierLoc(), Param,
2428 DefArgToks));
Chris Lattnerf97409f2008-04-06 06:57:35 +00002429 }
2430
2431 // If the next token is a comma, consume it and keep reading arguments.
2432 if (Tok.isNot(tok::comma)) break;
2433
2434 // Consume the comma.
2435 ConsumeToken();
Reid Spencer5f016e22007-07-11 17:01:13 +00002436 }
2437
Chris Lattnerf97409f2008-04-06 06:57:35 +00002438 // Leave prototype scope.
Douglas Gregor8935b8b2008-12-10 06:34:36 +00002439 PrototypeScope.Exit();
Chris Lattnerf97409f2008-04-06 06:57:35 +00002440
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002441 // If we have the closing ')', eat it.
Sebastian Redlab197ba2009-02-09 18:23:29 +00002442 SourceLocation Loc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002443
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002444 DeclSpec DS;
Sebastian Redl7dc81342009-04-29 17:30:04 +00002445 bool hasExceptionSpec = false;
2446 bool hasAnyExceptionSpec = false;
2447 // FIXME: Does an empty vector ever allocate? Exception specifications are
2448 // extremely rare, so we want something like a SmallVector<TypeTy*, 0>. :-)
2449 std::vector<TypeTy*> Exceptions;
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002450 if (getLang().CPlusPlus) {
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002451 // Parse cv-qualifier-seq[opt].
Chris Lattner5a69d1c2008-12-18 07:02:59 +00002452 ParseTypeQualifierListOpt(DS, false /*no attributes*/);
Sebastian Redlab197ba2009-02-09 18:23:29 +00002453 if (!DS.getSourceRange().getEnd().isInvalid())
2454 Loc = DS.getSourceRange().getEnd();
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002455
2456 // Parse exception-specification[opt].
Sebastian Redl7dc81342009-04-29 17:30:04 +00002457 if (Tok.is(tok::kw_throw)) {
2458 hasExceptionSpec = true;
2459 ParseExceptionSpecification(Loc, Exceptions, hasAnyExceptionSpec);
2460 }
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002461 }
2462
Reid Spencer5f016e22007-07-11 17:01:13 +00002463 // Remember that we parsed a function type, and remember the attributes.
Chris Lattnerf97409f2008-04-06 06:57:35 +00002464 D.AddTypeInfo(DeclaratorChunk::getFunction(/*proto*/true, IsVariadic,
Douglas Gregor965acbb2009-02-18 07:07:28 +00002465 EllipsisLoc,
Jay Foadbeaaccd2009-05-21 09:52:38 +00002466 ParamInfo.data(), ParamInfo.size(),
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002467 DS.getTypeQualifiers(),
Sebastian Redl7dc81342009-04-29 17:30:04 +00002468 hasExceptionSpec,
2469 hasAnyExceptionSpec,
2470 Exceptions.empty() ? 0 :
2471 &Exceptions[0],
2472 Exceptions.size(), LParenLoc, D),
Sebastian Redlab197ba2009-02-09 18:23:29 +00002473 Loc);
Reid Spencer5f016e22007-07-11 17:01:13 +00002474}
2475
Chris Lattner66d28652008-04-06 06:34:08 +00002476/// ParseFunctionDeclaratorIdentifierList - While parsing a function declarator
2477/// we found a K&R-style identifier list instead of a type argument list. The
2478/// current token is known to be the first identifier in the list.
2479///
2480/// identifier-list: [C99 6.7.5]
2481/// identifier
2482/// identifier-list ',' identifier
2483///
2484void Parser::ParseFunctionDeclaratorIdentifierList(SourceLocation LParenLoc,
2485 Declarator &D) {
2486 // Build up an array of information about the parsed arguments.
2487 llvm::SmallVector<DeclaratorChunk::ParamInfo, 16> ParamInfo;
2488 llvm::SmallSet<const IdentifierInfo*, 16> ParamsSoFar;
2489
2490 // If there was no identifier specified for the declarator, either we are in
2491 // an abstract-declarator, or we are in a parameter declarator which was found
2492 // to be abstract. In abstract-declarators, identifier lists are not valid:
2493 // diagnose this.
2494 if (!D.getIdentifier())
2495 Diag(Tok, diag::ext_ident_list_in_param);
2496
2497 // Tok is known to be the first identifier in the list. Remember this
2498 // identifier in ParamInfo.
Chris Lattner3825c2e2008-04-06 06:50:56 +00002499 ParamsSoFar.insert(Tok.getIdentifierInfo());
Chris Lattner66d28652008-04-06 06:34:08 +00002500 ParamInfo.push_back(DeclaratorChunk::ParamInfo(Tok.getIdentifierInfo(),
Chris Lattnerb28317a2009-03-28 19:18:32 +00002501 Tok.getLocation(),
2502 DeclPtrTy()));
Chris Lattner66d28652008-04-06 06:34:08 +00002503
Chris Lattner50c64772008-04-06 06:39:19 +00002504 ConsumeToken(); // eat the first identifier.
Chris Lattner66d28652008-04-06 06:34:08 +00002505
2506 while (Tok.is(tok::comma)) {
2507 // Eat the comma.
2508 ConsumeToken();
2509
Chris Lattner50c64772008-04-06 06:39:19 +00002510 // If this isn't an identifier, report the error and skip until ')'.
Chris Lattner66d28652008-04-06 06:34:08 +00002511 if (Tok.isNot(tok::identifier)) {
2512 Diag(Tok, diag::err_expected_ident);
Chris Lattner50c64772008-04-06 06:39:19 +00002513 SkipUntil(tok::r_paren);
2514 return;
Chris Lattner66d28652008-04-06 06:34:08 +00002515 }
Chris Lattneraaf9ddb2008-04-06 06:47:48 +00002516
Chris Lattner66d28652008-04-06 06:34:08 +00002517 IdentifierInfo *ParmII = Tok.getIdentifierInfo();
Chris Lattneraaf9ddb2008-04-06 06:47:48 +00002518
2519 // Reject 'typedef int y; int test(x, y)', but continue parsing.
Douglas Gregorb696ea32009-02-04 17:00:24 +00002520 if (Actions.getTypeName(*ParmII, Tok.getLocation(), CurScope))
Chris Lattnerda83bac2008-11-19 07:37:42 +00002521 Diag(Tok, diag::err_unexpected_typedef_ident) << ParmII;
Chris Lattner66d28652008-04-06 06:34:08 +00002522
2523 // Verify that the argument identifier has not already been mentioned.
2524 if (!ParamsSoFar.insert(ParmII)) {
Chris Lattnerda83bac2008-11-19 07:37:42 +00002525 Diag(Tok, diag::err_param_redefinition) << ParmII;
Chris Lattner50c64772008-04-06 06:39:19 +00002526 } else {
2527 // Remember this identifier in ParamInfo.
Chris Lattner66d28652008-04-06 06:34:08 +00002528 ParamInfo.push_back(DeclaratorChunk::ParamInfo(ParmII,
Chris Lattnerb28317a2009-03-28 19:18:32 +00002529 Tok.getLocation(),
2530 DeclPtrTy()));
Chris Lattner50c64772008-04-06 06:39:19 +00002531 }
Chris Lattner66d28652008-04-06 06:34:08 +00002532
2533 // Eat the identifier.
2534 ConsumeToken();
2535 }
Sebastian Redlab197ba2009-02-09 18:23:29 +00002536
2537 // If we have the closing ')', eat it and we're done.
2538 SourceLocation RLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
2539
Chris Lattner50c64772008-04-06 06:39:19 +00002540 // Remember that we parsed a function type, and remember the attributes. This
2541 // function type is always a K&R style function type, which is not varargs and
2542 // has no prototype.
2543 D.AddTypeInfo(DeclaratorChunk::getFunction(/*proto*/false, /*varargs*/false,
Douglas Gregor965acbb2009-02-18 07:07:28 +00002544 SourceLocation(),
Chris Lattner50c64772008-04-06 06:39:19 +00002545 &ParamInfo[0], ParamInfo.size(),
Sebastian Redl7dc81342009-04-29 17:30:04 +00002546 /*TypeQuals*/0,
2547 /*exception*/false, false, 0, 0,
2548 LParenLoc, D),
Sebastian Redlab197ba2009-02-09 18:23:29 +00002549 RLoc);
Chris Lattner66d28652008-04-06 06:34:08 +00002550}
Chris Lattneref4715c2008-04-06 05:45:57 +00002551
Reid Spencer5f016e22007-07-11 17:01:13 +00002552/// [C90] direct-declarator '[' constant-expression[opt] ']'
2553/// [C99] direct-declarator '[' type-qual-list[opt] assignment-expr[opt] ']'
2554/// [C99] direct-declarator '[' 'static' type-qual-list[opt] assign-expr ']'
2555/// [C99] direct-declarator '[' type-qual-list 'static' assignment-expr ']'
2556/// [C99] direct-declarator '[' type-qual-list[opt] '*' ']'
2557void Parser::ParseBracketDeclarator(Declarator &D) {
2558 SourceLocation StartLoc = ConsumeBracket();
2559
Chris Lattner378c7e42008-12-18 07:27:21 +00002560 // C array syntax has many features, but by-far the most common is [] and [4].
2561 // This code does a fast path to handle some of the most obvious cases.
2562 if (Tok.getKind() == tok::r_square) {
Sebastian Redlab197ba2009-02-09 18:23:29 +00002563 SourceLocation EndLoc = MatchRHSPunctuation(tok::r_square, StartLoc);
Chris Lattner378c7e42008-12-18 07:27:21 +00002564 // Remember that we parsed the empty array type.
2565 OwningExprResult NumElements(Actions);
Sebastian Redlab197ba2009-02-09 18:23:29 +00002566 D.AddTypeInfo(DeclaratorChunk::getArray(0, false, false, 0, StartLoc),
2567 EndLoc);
Chris Lattner378c7e42008-12-18 07:27:21 +00002568 return;
2569 } else if (Tok.getKind() == tok::numeric_constant &&
2570 GetLookAheadToken(1).is(tok::r_square)) {
2571 // [4] is very common. Parse the numeric constant expression.
Sebastian Redlcd965b92009-01-18 18:53:16 +00002572 OwningExprResult ExprRes(Actions.ActOnNumericConstant(Tok));
Chris Lattner378c7e42008-12-18 07:27:21 +00002573 ConsumeToken();
2574
Sebastian Redlab197ba2009-02-09 18:23:29 +00002575 SourceLocation EndLoc = MatchRHSPunctuation(tok::r_square, StartLoc);
Chris Lattner378c7e42008-12-18 07:27:21 +00002576
2577 // If there was an error parsing the assignment-expression, recover.
2578 if (ExprRes.isInvalid())
2579 ExprRes.release(); // Deallocate expr, just use [].
2580
2581 // Remember that we parsed a array type, and remember its features.
2582 D.AddTypeInfo(DeclaratorChunk::getArray(0, false, 0,
Sebastian Redlab197ba2009-02-09 18:23:29 +00002583 ExprRes.release(), StartLoc),
2584 EndLoc);
Chris Lattner378c7e42008-12-18 07:27:21 +00002585 return;
2586 }
2587
Reid Spencer5f016e22007-07-11 17:01:13 +00002588 // If valid, this location is the position where we read the 'static' keyword.
2589 SourceLocation StaticLoc;
Chris Lattner04d66662007-10-09 17:33:22 +00002590 if (Tok.is(tok::kw_static))
Reid Spencer5f016e22007-07-11 17:01:13 +00002591 StaticLoc = ConsumeToken();
2592
2593 // If there is a type-qualifier-list, read it now.
Chris Lattnera1fcbad2008-12-18 06:50:14 +00002594 // Type qualifiers in an array subscript are a C99 feature.
Reid Spencer5f016e22007-07-11 17:01:13 +00002595 DeclSpec DS;
Chris Lattner5a69d1c2008-12-18 07:02:59 +00002596 ParseTypeQualifierListOpt(DS, false /*no attributes*/);
Reid Spencer5f016e22007-07-11 17:01:13 +00002597
2598 // If we haven't already read 'static', check to see if there is one after the
2599 // type-qualifier-list.
Chris Lattner04d66662007-10-09 17:33:22 +00002600 if (!StaticLoc.isValid() && Tok.is(tok::kw_static))
Reid Spencer5f016e22007-07-11 17:01:13 +00002601 StaticLoc = ConsumeToken();
2602
2603 // Handle "direct-declarator [ type-qual-list[opt] * ]".
2604 bool isStar = false;
Sebastian Redl15faa7f2008-12-09 20:22:58 +00002605 OwningExprResult NumElements(Actions);
Chris Lattner5dcc6ce2008-04-06 05:26:30 +00002606
2607 // Handle the case where we have '[*]' as the array size. However, a leading
2608 // star could be the start of an expression, for example 'X[*p + 4]'. Verify
2609 // the the token after the star is a ']'. Since stars in arrays are
2610 // infrequent, use of lookahead is not costly here.
2611 if (Tok.is(tok::star) && GetLookAheadToken(1).is(tok::r_square)) {
Chris Lattnera711dd02008-04-06 05:27:21 +00002612 ConsumeToken(); // Eat the '*'.
Reid Spencer5f016e22007-07-11 17:01:13 +00002613
Chris Lattnera1fcbad2008-12-18 06:50:14 +00002614 if (StaticLoc.isValid()) {
Chris Lattner5dcc6ce2008-04-06 05:26:30 +00002615 Diag(StaticLoc, diag::err_unspecified_vla_size_with_static);
Chris Lattnera1fcbad2008-12-18 06:50:14 +00002616 StaticLoc = SourceLocation(); // Drop the static.
2617 }
Chris Lattner5dcc6ce2008-04-06 05:26:30 +00002618 isStar = true;
Chris Lattner04d66662007-10-09 17:33:22 +00002619 } else if (Tok.isNot(tok::r_square)) {
Chris Lattner378c7e42008-12-18 07:27:21 +00002620 // Note, in C89, this production uses the constant-expr production instead
2621 // of assignment-expr. The only difference is that assignment-expr allows
2622 // things like '=' and '*='. Sema rejects these in C89 mode because they
2623 // are not i-c-e's, so we don't need to distinguish between the two here.
2624
Reid Spencer5f016e22007-07-11 17:01:13 +00002625 // Parse the assignment-expression now.
2626 NumElements = ParseAssignmentExpression();
2627 }
2628
2629 // If there was an error parsing the assignment-expression, recover.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002630 if (NumElements.isInvalid()) {
Chris Lattner5cb10d32009-04-24 22:30:50 +00002631 D.setInvalidType(true);
Reid Spencer5f016e22007-07-11 17:01:13 +00002632 // If the expression was invalid, skip it.
2633 SkipUntil(tok::r_square);
2634 return;
2635 }
Sebastian Redlab197ba2009-02-09 18:23:29 +00002636
2637 SourceLocation EndLoc = MatchRHSPunctuation(tok::r_square, StartLoc);
2638
Chris Lattner378c7e42008-12-18 07:27:21 +00002639 // Remember that we parsed a array type, and remember its features.
Reid Spencer5f016e22007-07-11 17:01:13 +00002640 D.AddTypeInfo(DeclaratorChunk::getArray(DS.getTypeQualifiers(),
2641 StaticLoc.isValid(), isStar,
Sebastian Redlab197ba2009-02-09 18:23:29 +00002642 NumElements.release(), StartLoc),
2643 EndLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +00002644}
2645
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00002646/// [GNU] typeof-specifier:
2647/// typeof ( expressions )
2648/// typeof ( type-name )
2649/// [GNU/C++] typeof unary-expression
Steve Naroffd1861fd2007-07-31 12:34:36 +00002650///
2651void Parser::ParseTypeofSpecifier(DeclSpec &DS) {
Chris Lattner04d66662007-10-09 17:33:22 +00002652 assert(Tok.is(tok::kw_typeof) && "Not a typeof specifier");
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00002653 Token OpTok = Tok;
Steve Naroffd1861fd2007-07-31 12:34:36 +00002654 SourceLocation StartLoc = ConsumeToken();
2655
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00002656 bool isCastExpr;
2657 TypeTy *CastTy;
2658 SourceRange CastRange;
2659 OwningExprResult Operand = ParseExprAfterTypeofSizeofAlignof(OpTok,
2660 isCastExpr,
2661 CastTy,
2662 CastRange);
2663
2664 if (CastRange.getEnd().isInvalid())
Argyrios Kyrtzidis64096252009-05-22 10:22:18 +00002665 // FIXME: Not accurate, the range gets one token more than it should.
2666 DS.SetRangeEnd(Tok.getLocation());
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00002667 else
2668 DS.SetRangeEnd(CastRange.getEnd());
2669
2670 if (isCastExpr) {
2671 if (!CastTy) {
2672 DS.SetTypeSpecError();
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00002673 return;
Douglas Gregor809070a2009-02-18 17:45:20 +00002674 }
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00002675
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00002676 const char *PrevSpec = 0;
2677 // Check for duplicate type specifiers (e.g. "int typeof(int)").
2678 if (DS.SetTypeSpecType(DeclSpec::TST_typeofType, StartLoc, PrevSpec,
2679 CastTy))
2680 Diag(StartLoc, diag::err_invalid_decl_spec_combination) << PrevSpec;
2681 return;
Argyrios Kyrtzidis64096252009-05-22 10:22:18 +00002682 }
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00002683
Argyrios Kyrtzidis64096252009-05-22 10:22:18 +00002684 // If we get here, the operand to the typeof was an expresion.
2685 if (Operand.isInvalid()) {
2686 DS.SetTypeSpecError();
Steve Naroff9dfa7b42007-08-02 02:53:48 +00002687 return;
Steve Naroffd1861fd2007-07-31 12:34:36 +00002688 }
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00002689
Argyrios Kyrtzidis64096252009-05-22 10:22:18 +00002690 const char *PrevSpec = 0;
2691 // Check for duplicate type specifiers (e.g. "int typeof(int)").
2692 if (DS.SetTypeSpecType(DeclSpec::TST_typeofExpr, StartLoc, PrevSpec,
2693 Operand.release()))
2694 Diag(StartLoc, diag::err_invalid_decl_spec_combination) << PrevSpec;
Steve Naroffd1861fd2007-07-31 12:34:36 +00002695}