blob: 390fd34536eda9aad2bc42a31a6c67851c63ff2c [file] [log] [blame]
Chris Lattner7ad0fbe2006-11-05 07:46:30 +00001//===--- ParseDecl.cpp - Declaration Parsing ------------------------------===//
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5b12ab82007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Declaration portions of the Parser interfaces.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/Parse/Parser.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000015#include "RAIIObjectsForParser.h"
Benjamin Kramerd7d2b1f2012-12-01 16:35:25 +000016#include "clang/Basic/AddressSpaces.h"
Peter Collingbourne599cb8e2011-03-18 22:38:29 +000017#include "clang/Basic/OpenCL.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000018#include "clang/Parse/ParseDiagnostic.h"
Kaelyn Uhrain031643e2012-04-26 23:36:17 +000019#include "clang/Sema/Lookup.h"
John McCall8b0666c2010-08-20 18:27:03 +000020#include "clang/Sema/ParsedTemplate.h"
John McCallfaf5fb42010-08-26 23:41:50 +000021#include "clang/Sema/PrettyDeclStackTrace.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000022#include "clang/Sema/Scope.h"
Chris Lattnerad9ac942007-01-23 01:14:52 +000023#include "llvm/ADT/SmallSet.h"
Benjamin Kramer49038022012-02-04 13:45:25 +000024#include "llvm/ADT/SmallString.h"
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +000025#include "llvm/ADT/StringSwitch.h"
Chris Lattnerc0acd3d2006-07-31 05:13:43 +000026using namespace clang;
27
28//===----------------------------------------------------------------------===//
29// C99 6.7: Declarations.
30//===----------------------------------------------------------------------===//
31
Chris Lattnerf5fbd792006-08-10 23:56:11 +000032/// ParseTypeName
33/// type-name: [C99 6.7.6]
34/// specifier-qualifier-list abstract-declarator[opt]
Sebastian Redlbd150f42008-11-21 19:14:01 +000035///
36/// Called type-id in C++.
Douglas Gregor205d5e32011-01-31 16:09:46 +000037TypeResult Parser::ParseTypeName(SourceRange *Range,
John McCall31168b02011-06-15 23:02:42 +000038 Declarator::TheContext Context,
Richard Smithcd1c0552011-07-01 19:46:12 +000039 AccessSpecifier AS,
40 Decl **OwnedType) {
Richard Smith62dad822012-03-15 01:02:11 +000041 DeclSpecContext DSC = getDeclSpecContextFromDeclaratorContext(Context);
Richard Smith2f07ad52012-05-09 20:55:26 +000042 if (DSC == DSC_normal)
43 DSC = DSC_type_specifier;
Richard Smithbfdb1082012-03-12 08:56:40 +000044
Chris Lattnerf5fbd792006-08-10 23:56:11 +000045 // Parse the common declaration-specifiers piece.
John McCall084e83d2011-03-24 11:26:52 +000046 DeclSpec DS(AttrFactory);
Richard Smithbfdb1082012-03-12 08:56:40 +000047 ParseSpecifierQualifierList(DS, AS, DSC);
Richard Smithcd1c0552011-07-01 19:46:12 +000048 if (OwnedType)
49 *OwnedType = DS.isTypeSpecOwned() ? DS.getRepAsDecl() : 0;
Sebastian Redld6434562009-05-29 18:02:33 +000050
Chris Lattnerf5fbd792006-08-10 23:56:11 +000051 // Parse the abstract-declarator, if present.
Douglas Gregor205d5e32011-01-31 16:09:46 +000052 Declarator DeclaratorInfo(DS, Context);
Chris Lattnerf5fbd792006-08-10 23:56:11 +000053 ParseDeclarator(DeclaratorInfo);
Sebastian Redld6434562009-05-29 18:02:33 +000054 if (Range)
55 *Range = DeclaratorInfo.getSourceRange();
56
Chris Lattnerf6d1c9c2009-04-25 08:06:05 +000057 if (DeclaratorInfo.isInvalidType())
Douglas Gregor220cac52009-02-18 17:45:20 +000058 return true;
59
Douglas Gregor0be31a22010-07-02 17:43:08 +000060 return Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
Chris Lattnerf5fbd792006-08-10 23:56:11 +000061}
62
Caitlin Sadowski9385dd72011-09-08 17:42:22 +000063
64/// isAttributeLateParsed - Return true if the attribute has arguments that
65/// require late parsing.
66static bool isAttributeLateParsed(const IdentifierInfo &II) {
67 return llvm::StringSwitch<bool>(II.getName())
68#include "clang/Parse/AttrLateParsed.inc"
69 .Default(false);
70}
71
Alexis Hunt96d5c762009-11-21 08:43:09 +000072/// ParseGNUAttributes - Parse a non-empty attributes list.
Chris Lattnerb8cd5c22006-08-15 04:10:46 +000073///
74/// [GNU] attributes:
75/// attribute
76/// attributes attribute
77///
78/// [GNU] attribute:
79/// '__attribute__' '(' '(' attribute-list ')' ')'
80///
81/// [GNU] attribute-list:
82/// attrib
83/// attribute_list ',' attrib
84///
85/// [GNU] attrib:
86/// empty
Steve Naroff0f2fe172007-06-01 17:11:19 +000087/// attrib-name
88/// attrib-name '(' identifier ')'
89/// attrib-name '(' identifier ',' nonempty-expr-list ')'
90/// attrib-name '(' argument-expression-list [C99 6.5.2] ')'
Chris Lattnerb8cd5c22006-08-15 04:10:46 +000091///
Steve Naroff0f2fe172007-06-01 17:11:19 +000092/// [GNU] attrib-name:
93/// identifier
94/// typespec
95/// typequal
96/// storageclass
Mike Stump11289f42009-09-09 15:08:12 +000097///
Steve Naroff0f2fe172007-06-01 17:11:19 +000098/// FIXME: The GCC grammar/code for this construct implies we need two
Mike Stump11289f42009-09-09 15:08:12 +000099/// token lookahead. Comment from gcc: "If they start with an identifier
100/// which is followed by a comma or close parenthesis, then the arguments
Steve Naroff0f2fe172007-06-01 17:11:19 +0000101/// start with that identifier; otherwise they are an expression list."
102///
Richard Smithb12bf692011-10-17 21:20:17 +0000103/// GCC does not require the ',' between attribs in an attribute-list.
104///
Steve Naroff0f2fe172007-06-01 17:11:19 +0000105/// At the moment, I am not doing 2 token lookahead. I am also unaware of
106/// any attributes that don't work (based on my limited testing). Most
107/// attributes are very simple in practice. Until we find a bug, I don't see
108/// a pressing need to implement the 2 token lookahead.
Chris Lattnerb8cd5c22006-08-15 04:10:46 +0000109
John McCall53fa7142010-12-24 02:08:15 +0000110void Parser::ParseGNUAttributes(ParsedAttributes &attrs,
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000111 SourceLocation *endLoc,
112 LateParsedAttrList *LateAttrs) {
Alexis Hunt96d5c762009-11-21 08:43:09 +0000113 assert(Tok.is(tok::kw___attribute) && "Not a GNU attribute list!");
Mike Stump11289f42009-09-09 15:08:12 +0000114
Chris Lattner76c72282007-10-09 17:33:22 +0000115 while (Tok.is(tok::kw___attribute)) {
Steve Naroff0f2fe172007-06-01 17:11:19 +0000116 ConsumeToken();
117 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after,
118 "attribute")) {
119 SkipUntil(tok::r_paren, true); // skip until ) or ;
John McCall53fa7142010-12-24 02:08:15 +0000120 return;
Steve Naroff0f2fe172007-06-01 17:11:19 +0000121 }
122 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after, "(")) {
123 SkipUntil(tok::r_paren, true); // skip until ) or ;
John McCall53fa7142010-12-24 02:08:15 +0000124 return;
Steve Naroff0f2fe172007-06-01 17:11:19 +0000125 }
126 // Parse the attribute-list. e.g. __attribute__(( weak, alias("__f") ))
Chris Lattner76c72282007-10-09 17:33:22 +0000127 while (Tok.is(tok::identifier) || isDeclarationSpecifier() ||
128 Tok.is(tok::comma)) {
Mike Stump11289f42009-09-09 15:08:12 +0000129 if (Tok.is(tok::comma)) {
Steve Naroff0f2fe172007-06-01 17:11:19 +0000130 // allows for empty/non-empty attributes. ((__vector_size__(16),,,,))
131 ConsumeToken();
132 continue;
133 }
134 // we have an identifier or declaration specifier (const, int, etc.)
135 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
136 SourceLocation AttrNameLoc = ConsumeToken();
Mike Stump11289f42009-09-09 15:08:12 +0000137
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000138 if (Tok.is(tok::l_paren)) {
139 // handle "parameterized" attributes
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +0000140 if (LateAttrs && isAttributeLateParsed(*AttrName)) {
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000141 LateParsedAttribute *LA =
142 new LateParsedAttribute(this, *AttrName, AttrNameLoc);
143 LateAttrs->push_back(LA);
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +0000144
145 // Attributes in a class are parsed at the end of the class, along
146 // with other late-parsed declarations.
DeLesley Hutchins66e300e2012-11-02 21:44:32 +0000147 if (!ClassStack.empty() && !LateAttrs->parseSoon())
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +0000148 getCurrentClass().LateParsedDeclarations.push_back(LA);
Mike Stump11289f42009-09-09 15:08:12 +0000149
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000150 // consume everything up to and including the matching right parens
151 ConsumeAndStoreUntil(tok::r_paren, LA->Toks, true, false);
Mike Stump11289f42009-09-09 15:08:12 +0000152
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000153 Token Eof;
154 Eof.startToken();
155 Eof.setLocation(Tok.getLocation());
156 LA->Toks.push_back(Eof);
157 } else {
Michael Han23214e52012-10-03 01:56:22 +0000158 ParseGNUAttributeArgs(AttrName, AttrNameLoc, attrs, endLoc,
Michael Han360d2252012-10-04 16:42:52 +0000159 0, SourceLocation(), AttributeList::AS_GNU);
Steve Naroff0f2fe172007-06-01 17:11:19 +0000160 }
161 } else {
John McCall084e83d2011-03-24 11:26:52 +0000162 attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc,
Alexis Hunta0e54d42012-06-18 16:13:52 +0000163 0, SourceLocation(), 0, 0, AttributeList::AS_GNU);
Steve Naroff0f2fe172007-06-01 17:11:19 +0000164 }
165 }
Steve Naroff98d153c2007-06-06 23:19:11 +0000166 if (ExpectAndConsume(tok::r_paren, diag::err_expected_rparen))
Steve Naroff98d153c2007-06-06 23:19:11 +0000167 SkipUntil(tok::r_paren, false);
Alexis Hunt96d5c762009-11-21 08:43:09 +0000168 SourceLocation Loc = Tok.getLocation();
Sebastian Redlf6591ca2009-02-09 18:23:29 +0000169 if (ExpectAndConsume(tok::r_paren, diag::err_expected_rparen)) {
170 SkipUntil(tok::r_paren, false);
171 }
John McCall53fa7142010-12-24 02:08:15 +0000172 if (endLoc)
173 *endLoc = Loc;
Steve Naroff0f2fe172007-06-01 17:11:19 +0000174 }
Steve Naroff0f2fe172007-06-01 17:11:19 +0000175}
Chris Lattnerf5fbd792006-08-10 23:56:11 +0000176
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000177
Michael Han23214e52012-10-03 01:56:22 +0000178/// Parse the arguments to a parameterized GNU attribute or
179/// a C++11 attribute in "gnu" namespace.
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000180void Parser::ParseGNUAttributeArgs(IdentifierInfo *AttrName,
181 SourceLocation AttrNameLoc,
182 ParsedAttributes &Attrs,
Michael Han23214e52012-10-03 01:56:22 +0000183 SourceLocation *EndLoc,
184 IdentifierInfo *ScopeName,
185 SourceLocation ScopeLoc,
186 AttributeList::Syntax Syntax) {
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000187
188 assert(Tok.is(tok::l_paren) && "Attribute arg list not starting with '('");
189
190 // Availability attributes have their own grammar.
191 if (AttrName->isStr("availability")) {
192 ParseAvailabilityAttribute(*AttrName, AttrNameLoc, Attrs, EndLoc);
193 return;
194 }
195 // Thread safety attributes fit into the FIXME case above, so we
196 // just parse the arguments as a list of expressions
197 if (IsThreadSafetyAttribute(AttrName->getName())) {
198 ParseThreadSafetyAttribute(*AttrName, AttrNameLoc, Attrs, EndLoc);
199 return;
200 }
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +0000201 // Type safety attributes have their own grammar.
202 if (AttrName->isStr("type_tag_for_datatype")) {
203 ParseTypeTagForDatatypeAttribute(*AttrName, AttrNameLoc, Attrs, EndLoc);
204 return;
205 }
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000206
207 ConsumeParen(); // ignore the left paren loc for now
208
Richard Smithb12bf692011-10-17 21:20:17 +0000209 IdentifierInfo *ParmName = 0;
210 SourceLocation ParmLoc;
211 bool BuiltinType = false;
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000212
Richard Smithb12bf692011-10-17 21:20:17 +0000213 switch (Tok.getKind()) {
214 case tok::kw_char:
215 case tok::kw_wchar_t:
216 case tok::kw_char16_t:
217 case tok::kw_char32_t:
218 case tok::kw_bool:
219 case tok::kw_short:
220 case tok::kw_int:
221 case tok::kw_long:
222 case tok::kw___int64:
Richard Smithf016bbc2012-04-04 06:24:32 +0000223 case tok::kw___int128:
Richard Smithb12bf692011-10-17 21:20:17 +0000224 case tok::kw_signed:
225 case tok::kw_unsigned:
226 case tok::kw_float:
227 case tok::kw_double:
228 case tok::kw_void:
229 case tok::kw_typeof:
230 // __attribute__(( vec_type_hint(char) ))
231 // FIXME: Don't just discard the builtin type token.
232 ConsumeToken();
233 BuiltinType = true;
234 break;
235
236 case tok::identifier:
237 ParmName = Tok.getIdentifierInfo();
238 ParmLoc = ConsumeToken();
239 break;
240
241 default:
242 break;
243 }
244
Benjamin Kramerf0623432012-08-23 22:51:59 +0000245 ExprVector ArgExprs;
Richard Smithb12bf692011-10-17 21:20:17 +0000246
247 if (!BuiltinType &&
248 (ParmLoc.isValid() ? Tok.is(tok::comma) : Tok.isNot(tok::r_paren))) {
249 // Eat the comma.
250 if (ParmLoc.isValid())
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000251 ConsumeToken();
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000252
Richard Smithb12bf692011-10-17 21:20:17 +0000253 // Parse the non-empty comma-separated list of expressions.
254 while (1) {
255 ExprResult ArgExpr(ParseAssignmentExpression());
256 if (ArgExpr.isInvalid()) {
257 SkipUntil(tok::r_paren);
258 return;
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000259 }
Richard Smithb12bf692011-10-17 21:20:17 +0000260 ArgExprs.push_back(ArgExpr.release());
261 if (Tok.isNot(tok::comma))
262 break;
263 ConsumeToken(); // Eat the comma, move to the next argument
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000264 }
Richard Smithb12bf692011-10-17 21:20:17 +0000265 }
Fariborz Jahanian6b708652011-10-18 17:11:10 +0000266 else if (Tok.is(tok::less) && AttrName->isStr("iboutletcollection")) {
267 if (!ExpectAndConsume(tok::less, diag::err_expected_less_after, "<",
268 tok::greater)) {
Fariborz Jahanian7f733022011-10-18 23:13:50 +0000269 while (Tok.is(tok::identifier)) {
270 ConsumeToken();
271 if (Tok.is(tok::greater))
272 break;
273 if (Tok.is(tok::comma)) {
274 ConsumeToken();
275 continue;
276 }
277 }
278 if (Tok.isNot(tok::greater))
279 Diag(Tok, diag::err_iboutletcollection_with_protocol);
Fariborz Jahanian6b708652011-10-18 17:11:10 +0000280 SkipUntil(tok::r_paren, false, true); // skip until ')'
281 }
282 }
Richard Smithb12bf692011-10-17 21:20:17 +0000283
284 SourceLocation RParen = Tok.getLocation();
285 if (!ExpectAndConsume(tok::r_paren, diag::err_expected_rparen)) {
Michael Han360d2252012-10-04 16:42:52 +0000286 SourceLocation AttrLoc = ScopeLoc.isValid() ? ScopeLoc : AttrNameLoc;
Richard Smithb12bf692011-10-17 21:20:17 +0000287 AttributeList *attr =
Michael Han360d2252012-10-04 16:42:52 +0000288 Attrs.addNew(AttrName, SourceRange(AttrLoc, RParen),
Michael Han23214e52012-10-03 01:56:22 +0000289 ScopeName, ScopeLoc, ParmName, ParmLoc,
290 ArgExprs.data(), ArgExprs.size(), Syntax);
Alexis Hunt3bc72c12012-06-19 23:57:03 +0000291 if (BuiltinType && attr->getKind() == AttributeList::AT_IBOutletCollection)
Richard Smithb12bf692011-10-17 21:20:17 +0000292 Diag(Tok, diag::err_iboutletcollection_builtintype);
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000293 }
294}
295
Chad Rosierc1183952012-06-26 22:30:43 +0000296/// \brief Parses a single argument for a declspec, including the
Aaron Ballman478faed2012-06-19 22:09:27 +0000297/// surrounding parens.
Chad Rosierc1183952012-06-26 22:30:43 +0000298void Parser::ParseMicrosoftDeclSpecWithSingleArg(IdentifierInfo *AttrName,
Aaron Ballman478faed2012-06-19 22:09:27 +0000299 SourceLocation AttrNameLoc,
300 ParsedAttributes &Attrs)
301{
302 BalancedDelimiterTracker T(*this, tok::l_paren);
Chad Rosierc1183952012-06-26 22:30:43 +0000303 if (T.expectAndConsume(diag::err_expected_lparen_after,
Aaron Ballman478faed2012-06-19 22:09:27 +0000304 AttrName->getNameStart(), tok::r_paren))
305 return;
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000306
Aaron Ballman478faed2012-06-19 22:09:27 +0000307 ExprResult ArgExpr(ParseConstantExpression());
308 if (ArgExpr.isInvalid()) {
309 T.skipToEnd();
310 return;
311 }
312 Expr *ExprList = ArgExpr.take();
Chad Rosierc1183952012-06-26 22:30:43 +0000313 Attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0, SourceLocation(),
Aaron Ballman478faed2012-06-19 22:09:27 +0000314 &ExprList, 1, AttributeList::AS_Declspec);
315
316 T.consumeClose();
317}
318
Chad Rosierc1183952012-06-26 22:30:43 +0000319/// \brief Determines whether a declspec is a "simple" one requiring no
Aaron Ballman478faed2012-06-19 22:09:27 +0000320/// arguments.
321bool Parser::IsSimpleMicrosoftDeclSpec(IdentifierInfo *Ident) {
322 return llvm::StringSwitch<bool>(Ident->getName())
323 .Case("dllimport", true)
324 .Case("dllexport", true)
325 .Case("noreturn", true)
326 .Case("nothrow", true)
327 .Case("noinline", true)
328 .Case("naked", true)
329 .Case("appdomain", true)
330 .Case("process", true)
331 .Case("jitintrinsic", true)
332 .Case("noalias", true)
333 .Case("restrict", true)
334 .Case("novtable", true)
335 .Case("selectany", true)
336 .Case("thread", true)
337 .Default(false);
338}
339
Chad Rosierc1183952012-06-26 22:30:43 +0000340/// \brief Attempts to parse a declspec which is not simple (one that takes
Aaron Ballman478faed2012-06-19 22:09:27 +0000341/// parameters). Will return false if we properly handled the declspec, or
342/// true if it is an unknown declspec.
Chad Rosierc1183952012-06-26 22:30:43 +0000343void Parser::ParseComplexMicrosoftDeclSpec(IdentifierInfo *Ident,
Aaron Ballman478faed2012-06-19 22:09:27 +0000344 SourceLocation Loc,
345 ParsedAttributes &Attrs) {
346 // Try to handle the easy case first -- these declspecs all take a single
347 // parameter as their argument.
348 if (llvm::StringSwitch<bool>(Ident->getName())
349 .Case("uuid", true)
350 .Case("align", true)
351 .Case("allocate", true)
352 .Default(false)) {
353 ParseMicrosoftDeclSpecWithSingleArg(Ident, Loc, Attrs);
354 } else if (Ident->getName() == "deprecated") {
Chad Rosierc1183952012-06-26 22:30:43 +0000355 // The deprecated declspec has an optional single argument, so we will
356 // check for a l-paren to decide whether we should parse an argument or
Aaron Ballman478faed2012-06-19 22:09:27 +0000357 // not.
358 if (Tok.getKind() == tok::l_paren)
359 ParseMicrosoftDeclSpecWithSingleArg(Ident, Loc, Attrs);
360 else
Chad Rosierc1183952012-06-26 22:30:43 +0000361 Attrs.addNew(Ident, Loc, 0, Loc, 0, SourceLocation(), 0, 0,
Aaron Ballman478faed2012-06-19 22:09:27 +0000362 AttributeList::AS_Declspec);
363 } else if (Ident->getName() == "property") {
364 // The property declspec is more complex in that it can take one or two
Chad Rosierc1183952012-06-26 22:30:43 +0000365 // assignment expressions as a parameter, but the lhs of the assignment
Aaron Ballman478faed2012-06-19 22:09:27 +0000366 // must be named get or put.
367 //
Chad Rosierc1183952012-06-26 22:30:43 +0000368 // For right now, we will just skip to the closing right paren of the
Aaron Ballman478faed2012-06-19 22:09:27 +0000369 // property expression.
370 //
371 // FIXME: we should deal with __declspec(property) at some point because it
372 // is used in the platform SDK headers for the Parallel Patterns Library
373 // and ATL.
374 BalancedDelimiterTracker T(*this, tok::l_paren);
Chad Rosierc1183952012-06-26 22:30:43 +0000375 if (T.expectAndConsume(diag::err_expected_lparen_after,
Aaron Ballman478faed2012-06-19 22:09:27 +0000376 Ident->getNameStart(), tok::r_paren))
377 return;
378 T.skipToEnd();
379 } else {
380 // We don't recognize this as a valid declspec, but instead of creating the
381 // attribute and allowing sema to warn about it, we will warn here instead.
382 // This is because some attributes have multiple spellings, but we need to
383 // disallow that for declspecs (such as align vs aligned). If we made the
Chad Rosierc1183952012-06-26 22:30:43 +0000384 // attribute, we'd have to split the valid declspec spelling logic into
Aaron Ballman478faed2012-06-19 22:09:27 +0000385 // both locations.
386 Diag(Loc, diag::warn_ms_declspec_unknown) << Ident;
387
388 // If there's an open paren, we should eat the open and close parens under
389 // the assumption that this unknown declspec has parameters.
390 BalancedDelimiterTracker T(*this, tok::l_paren);
391 if (!T.consumeOpen())
392 T.skipToEnd();
393 }
394}
395
Eli Friedman06de2b52009-06-08 07:21:15 +0000396/// [MS] decl-specifier:
397/// __declspec ( extended-decl-modifier-seq )
398///
399/// [MS] extended-decl-modifier-seq:
400/// extended-decl-modifier[opt]
401/// extended-decl-modifier extended-decl-modifier-seq
Aaron Ballman478faed2012-06-19 22:09:27 +0000402void Parser::ParseMicrosoftDeclSpec(ParsedAttributes &Attrs) {
Steve Naroff3a9b7e02008-12-24 20:59:21 +0000403 assert(Tok.is(tok::kw___declspec) && "Not a declspec!");
Eli Friedman06de2b52009-06-08 07:21:15 +0000404
Steve Naroff3a9b7e02008-12-24 20:59:21 +0000405 ConsumeToken();
Aaron Ballman478faed2012-06-19 22:09:27 +0000406 BalancedDelimiterTracker T(*this, tok::l_paren);
Chad Rosierc1183952012-06-26 22:30:43 +0000407 if (T.expectAndConsume(diag::err_expected_lparen_after, "__declspec",
Aaron Ballman478faed2012-06-19 22:09:27 +0000408 tok::r_paren))
John McCall53fa7142010-12-24 02:08:15 +0000409 return;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +0000410
Chad Rosierc1183952012-06-26 22:30:43 +0000411 // An empty declspec is perfectly legal and should not warn. Additionally,
Aaron Ballman478faed2012-06-19 22:09:27 +0000412 // you can specify multiple attributes per declspec.
413 while (Tok.getKind() != tok::r_paren) {
414 // We expect either a well-known identifier or a generic string. Anything
415 // else is a malformed declspec.
416 bool IsString = Tok.getKind() == tok::string_literal ? true : false;
Chad Rosierc1183952012-06-26 22:30:43 +0000417 if (!IsString && Tok.getKind() != tok::identifier &&
Aaron Ballman478faed2012-06-19 22:09:27 +0000418 Tok.getKind() != tok::kw_restrict) {
419 Diag(Tok, diag::err_ms_declspec_type);
420 T.skipToEnd();
421 return;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +0000422 }
Aaron Ballman478faed2012-06-19 22:09:27 +0000423
424 IdentifierInfo *AttrName;
425 SourceLocation AttrNameLoc;
426 if (IsString) {
427 SmallString<8> StrBuffer;
428 bool Invalid = false;
429 StringRef Str = PP.getSpelling(Tok, StrBuffer, &Invalid);
430 if (Invalid) {
431 T.skipToEnd();
432 return;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +0000433 }
Aaron Ballman478faed2012-06-19 22:09:27 +0000434 AttrName = PP.getIdentifierInfo(Str);
435 AttrNameLoc = ConsumeStringToken();
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +0000436 } else {
Aaron Ballman478faed2012-06-19 22:09:27 +0000437 AttrName = Tok.getIdentifierInfo();
438 AttrNameLoc = ConsumeToken();
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +0000439 }
Chad Rosierc1183952012-06-26 22:30:43 +0000440
Aaron Ballman478faed2012-06-19 22:09:27 +0000441 if (IsString || IsSimpleMicrosoftDeclSpec(AttrName))
Chad Rosierc1183952012-06-26 22:30:43 +0000442 // If we have a generic string, we will allow it because there is no
443 // documented list of allowable string declspecs, but we know they exist
Aaron Ballman478faed2012-06-19 22:09:27 +0000444 // (for instance, SAL declspecs in older versions of MSVC).
445 //
Chad Rosierc1183952012-06-26 22:30:43 +0000446 // Alternatively, if the identifier is a simple one, then it requires no
Aaron Ballman478faed2012-06-19 22:09:27 +0000447 // arguments and can be turned into an attribute directly.
Chad Rosierc1183952012-06-26 22:30:43 +0000448 Attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0, SourceLocation(),
Aaron Ballman478faed2012-06-19 22:09:27 +0000449 0, 0, AttributeList::AS_Declspec);
450 else
451 ParseComplexMicrosoftDeclSpec(AttrName, AttrNameLoc, Attrs);
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +0000452 }
Aaron Ballman478faed2012-06-19 22:09:27 +0000453 T.consumeClose();
Eli Friedman53339e02009-06-08 23:27:34 +0000454}
455
John McCall53fa7142010-12-24 02:08:15 +0000456void Parser::ParseMicrosoftTypeAttributes(ParsedAttributes &attrs) {
Eli Friedman53339e02009-06-08 23:27:34 +0000457 // Treat these like attributes
Eli Friedman53339e02009-06-08 23:27:34 +0000458 while (Tok.is(tok::kw___fastcall) || Tok.is(tok::kw___stdcall) ||
Douglas Gregora941dca2010-05-18 16:57:00 +0000459 Tok.is(tok::kw___thiscall) || Tok.is(tok::kw___cdecl) ||
Francois Pichet17ed0202011-08-18 09:59:55 +0000460 Tok.is(tok::kw___ptr64) || Tok.is(tok::kw___w64) ||
Francois Pichetf2fb4112011-08-25 00:36:46 +0000461 Tok.is(tok::kw___ptr32) ||
Francois Pichet17ed0202011-08-18 09:59:55 +0000462 Tok.is(tok::kw___unaligned)) {
Eli Friedman53339e02009-06-08 23:27:34 +0000463 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
464 SourceLocation AttrNameLoc = ConsumeToken();
John McCall084e83d2011-03-24 11:26:52 +0000465 attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0,
Aaron Ballman478faed2012-06-19 22:09:27 +0000466 SourceLocation(), 0, 0, AttributeList::AS_MSTypespec);
Eli Friedman53339e02009-06-08 23:27:34 +0000467 }
Steve Naroff3a9b7e02008-12-24 20:59:21 +0000468}
469
John McCall53fa7142010-12-24 02:08:15 +0000470void Parser::ParseBorlandTypeAttributes(ParsedAttributes &attrs) {
Dawn Perchik335e16b2010-09-03 01:29:35 +0000471 // Treat these like attributes
472 while (Tok.is(tok::kw___pascal)) {
473 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
474 SourceLocation AttrNameLoc = ConsumeToken();
John McCall084e83d2011-03-24 11:26:52 +0000475 attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0,
Aaron Ballman478faed2012-06-19 22:09:27 +0000476 SourceLocation(), 0, 0, AttributeList::AS_MSTypespec);
Dawn Perchik335e16b2010-09-03 01:29:35 +0000477 }
John McCall53fa7142010-12-24 02:08:15 +0000478}
479
Peter Collingbourne7ce13fc2011-02-14 01:42:53 +0000480void Parser::ParseOpenCLAttributes(ParsedAttributes &attrs) {
481 // Treat these like attributes
482 while (Tok.is(tok::kw___kernel)) {
483 SourceLocation AttrNameLoc = ConsumeToken();
John McCall084e83d2011-03-24 11:26:52 +0000484 attrs.addNew(PP.getIdentifierInfo("opencl_kernel_function"),
485 AttrNameLoc, 0, AttrNameLoc, 0,
Alexis Hunta0e54d42012-06-18 16:13:52 +0000486 SourceLocation(), 0, 0, AttributeList::AS_GNU);
Peter Collingbourne7ce13fc2011-02-14 01:42:53 +0000487 }
488}
489
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000490void Parser::ParseOpenCLQualifiers(DeclSpec &DS) {
491 SourceLocation Loc = Tok.getLocation();
492 switch(Tok.getKind()) {
493 // OpenCL qualifiers:
494 case tok::kw___private:
Chad Rosierc1183952012-06-26 22:30:43 +0000495 case tok::kw_private:
John McCall084e83d2011-03-24 11:26:52 +0000496 DS.getAttributes().addNewInteger(
Chad Rosierc1183952012-06-26 22:30:43 +0000497 Actions.getASTContext(),
John McCall084e83d2011-03-24 11:26:52 +0000498 PP.getIdentifierInfo("address_space"), Loc, 0);
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000499 break;
Chad Rosierc1183952012-06-26 22:30:43 +0000500
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000501 case tok::kw___global:
John McCall084e83d2011-03-24 11:26:52 +0000502 DS.getAttributes().addNewInteger(
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000503 Actions.getASTContext(),
John McCall084e83d2011-03-24 11:26:52 +0000504 PP.getIdentifierInfo("address_space"), Loc, LangAS::opencl_global);
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000505 break;
Chad Rosierc1183952012-06-26 22:30:43 +0000506
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000507 case tok::kw___local:
John McCall084e83d2011-03-24 11:26:52 +0000508 DS.getAttributes().addNewInteger(
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000509 Actions.getASTContext(),
John McCall084e83d2011-03-24 11:26:52 +0000510 PP.getIdentifierInfo("address_space"), Loc, LangAS::opencl_local);
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000511 break;
Chad Rosierc1183952012-06-26 22:30:43 +0000512
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000513 case tok::kw___constant:
John McCall084e83d2011-03-24 11:26:52 +0000514 DS.getAttributes().addNewInteger(
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000515 Actions.getASTContext(),
John McCall084e83d2011-03-24 11:26:52 +0000516 PP.getIdentifierInfo("address_space"), Loc, LangAS::opencl_constant);
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000517 break;
Chad Rosierc1183952012-06-26 22:30:43 +0000518
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000519 case tok::kw___read_only:
John McCall084e83d2011-03-24 11:26:52 +0000520 DS.getAttributes().addNewInteger(
Chad Rosierc1183952012-06-26 22:30:43 +0000521 Actions.getASTContext(),
John McCall084e83d2011-03-24 11:26:52 +0000522 PP.getIdentifierInfo("opencl_image_access"), Loc, CLIA_read_only);
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000523 break;
Chad Rosierc1183952012-06-26 22:30:43 +0000524
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000525 case tok::kw___write_only:
John McCall084e83d2011-03-24 11:26:52 +0000526 DS.getAttributes().addNewInteger(
Chad Rosierc1183952012-06-26 22:30:43 +0000527 Actions.getASTContext(),
John McCall084e83d2011-03-24 11:26:52 +0000528 PP.getIdentifierInfo("opencl_image_access"), Loc, CLIA_write_only);
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000529 break;
Chad Rosierc1183952012-06-26 22:30:43 +0000530
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000531 case tok::kw___read_write:
John McCall084e83d2011-03-24 11:26:52 +0000532 DS.getAttributes().addNewInteger(
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000533 Actions.getASTContext(),
John McCall084e83d2011-03-24 11:26:52 +0000534 PP.getIdentifierInfo("opencl_image_access"), Loc, CLIA_read_write);
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000535 break;
536 default: break;
537 }
538}
539
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000540/// \brief Parse a version number.
541///
542/// version:
543/// simple-integer
544/// simple-integer ',' simple-integer
545/// simple-integer ',' simple-integer ',' simple-integer
546VersionTuple Parser::ParseVersionTuple(SourceRange &Range) {
547 Range = Tok.getLocation();
548
549 if (!Tok.is(tok::numeric_constant)) {
550 Diag(Tok, diag::err_expected_version);
551 SkipUntil(tok::comma, tok::r_paren, true, true, true);
552 return VersionTuple();
553 }
554
555 // Parse the major (and possibly minor and subminor) versions, which
556 // are stored in the numeric constant. We utilize a quirk of the
557 // lexer, which is that it handles something like 1.2.3 as a single
558 // numeric constant, rather than two separate tokens.
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +0000559 SmallString<512> Buffer;
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000560 Buffer.resize(Tok.getLength()+1);
561 const char *ThisTokBegin = &Buffer[0];
562
563 // Get the spelling of the token, which eliminates trigraphs, etc.
564 bool Invalid = false;
565 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin, &Invalid);
566 if (Invalid)
567 return VersionTuple();
568
569 // Parse the major version.
570 unsigned AfterMajor = 0;
571 unsigned Major = 0;
572 while (AfterMajor < ActualLength && isdigit(ThisTokBegin[AfterMajor])) {
573 Major = Major * 10 + ThisTokBegin[AfterMajor] - '0';
574 ++AfterMajor;
575 }
576
577 if (AfterMajor == 0) {
578 Diag(Tok, diag::err_expected_version);
579 SkipUntil(tok::comma, tok::r_paren, true, true, true);
580 return VersionTuple();
581 }
582
583 if (AfterMajor == ActualLength) {
584 ConsumeToken();
585
586 // We only had a single version component.
587 if (Major == 0) {
588 Diag(Tok, diag::err_zero_version);
589 return VersionTuple();
590 }
591
592 return VersionTuple(Major);
593 }
594
595 if (ThisTokBegin[AfterMajor] != '.' || (AfterMajor + 1 == ActualLength)) {
596 Diag(Tok, diag::err_expected_version);
597 SkipUntil(tok::comma, tok::r_paren, true, true, true);
598 return VersionTuple();
599 }
600
601 // Parse the minor version.
602 unsigned AfterMinor = AfterMajor + 1;
603 unsigned Minor = 0;
604 while (AfterMinor < ActualLength && isdigit(ThisTokBegin[AfterMinor])) {
605 Minor = Minor * 10 + ThisTokBegin[AfterMinor] - '0';
606 ++AfterMinor;
607 }
608
609 if (AfterMinor == ActualLength) {
610 ConsumeToken();
Chad Rosierc1183952012-06-26 22:30:43 +0000611
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000612 // We had major.minor.
613 if (Major == 0 && Minor == 0) {
614 Diag(Tok, diag::err_zero_version);
615 return VersionTuple();
616 }
617
Chad Rosierc1183952012-06-26 22:30:43 +0000618 return VersionTuple(Major, Minor);
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000619 }
620
621 // If what follows is not a '.', we have a problem.
622 if (ThisTokBegin[AfterMinor] != '.') {
623 Diag(Tok, diag::err_expected_version);
624 SkipUntil(tok::comma, tok::r_paren, true, true, true);
Chad Rosierc1183952012-06-26 22:30:43 +0000625 return VersionTuple();
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000626 }
627
628 // Parse the subminor version.
629 unsigned AfterSubminor = AfterMinor + 1;
630 unsigned Subminor = 0;
631 while (AfterSubminor < ActualLength && isdigit(ThisTokBegin[AfterSubminor])) {
632 Subminor = Subminor * 10 + ThisTokBegin[AfterSubminor] - '0';
633 ++AfterSubminor;
634 }
635
636 if (AfterSubminor != ActualLength) {
637 Diag(Tok, diag::err_expected_version);
638 SkipUntil(tok::comma, tok::r_paren, true, true, true);
639 return VersionTuple();
640 }
641 ConsumeToken();
642 return VersionTuple(Major, Minor, Subminor);
643}
644
645/// \brief Parse the contents of the "availability" attribute.
646///
647/// availability-attribute:
Fariborz Jahanian88d510d2011-12-10 00:28:41 +0000648/// 'availability' '(' platform ',' version-arg-list, opt-message')'
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000649///
650/// platform:
651/// identifier
652///
653/// version-arg-list:
654/// version-arg
655/// version-arg ',' version-arg-list
656///
657/// version-arg:
658/// 'introduced' '=' version
659/// 'deprecated' '=' version
Douglas Gregorfdd417f2012-03-11 04:53:21 +0000660/// 'obsoleted' = version
Douglas Gregor7ab142b2011-03-26 03:35:55 +0000661/// 'unavailable'
Fariborz Jahanian88d510d2011-12-10 00:28:41 +0000662/// opt-message:
663/// 'message' '=' <string>
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000664void Parser::ParseAvailabilityAttribute(IdentifierInfo &Availability,
665 SourceLocation AvailabilityLoc,
666 ParsedAttributes &attrs,
667 SourceLocation *endLoc) {
668 SourceLocation PlatformLoc;
669 IdentifierInfo *Platform = 0;
670
671 enum { Introduced, Deprecated, Obsoleted, Unknown };
672 AvailabilityChange Changes[Unknown];
Fariborz Jahanian88d510d2011-12-10 00:28:41 +0000673 ExprResult MessageExpr;
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000674
675 // Opening '('.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +0000676 BalancedDelimiterTracker T(*this, tok::l_paren);
677 if (T.consumeOpen()) {
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000678 Diag(Tok, diag::err_expected_lparen);
679 return;
680 }
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000681
682 // Parse the platform name,
683 if (Tok.isNot(tok::identifier)) {
684 Diag(Tok, diag::err_availability_expected_platform);
685 SkipUntil(tok::r_paren);
686 return;
687 }
688 Platform = Tok.getIdentifierInfo();
689 PlatformLoc = ConsumeToken();
690
691 // Parse the ',' following the platform name.
692 if (ExpectAndConsume(tok::comma, diag::err_expected_comma, "", tok::r_paren))
693 return;
694
695 // If we haven't grabbed the pointers for the identifiers
696 // "introduced", "deprecated", and "obsoleted", do so now.
697 if (!Ident_introduced) {
698 Ident_introduced = PP.getIdentifierInfo("introduced");
699 Ident_deprecated = PP.getIdentifierInfo("deprecated");
700 Ident_obsoleted = PP.getIdentifierInfo("obsoleted");
Douglas Gregor7ab142b2011-03-26 03:35:55 +0000701 Ident_unavailable = PP.getIdentifierInfo("unavailable");
Fariborz Jahanian88d510d2011-12-10 00:28:41 +0000702 Ident_message = PP.getIdentifierInfo("message");
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000703 }
704
705 // Parse the set of introductions/deprecations/removals.
Douglas Gregor7ab142b2011-03-26 03:35:55 +0000706 SourceLocation UnavailableLoc;
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000707 do {
708 if (Tok.isNot(tok::identifier)) {
709 Diag(Tok, diag::err_availability_expected_change);
710 SkipUntil(tok::r_paren);
711 return;
712 }
713 IdentifierInfo *Keyword = Tok.getIdentifierInfo();
714 SourceLocation KeywordLoc = ConsumeToken();
715
Douglas Gregor7ab142b2011-03-26 03:35:55 +0000716 if (Keyword == Ident_unavailable) {
717 if (UnavailableLoc.isValid()) {
718 Diag(KeywordLoc, diag::err_availability_redundant)
719 << Keyword << SourceRange(UnavailableLoc);
Chad Rosierc1183952012-06-26 22:30:43 +0000720 }
Douglas Gregor7ab142b2011-03-26 03:35:55 +0000721 UnavailableLoc = KeywordLoc;
722
723 if (Tok.isNot(tok::comma))
724 break;
725
726 ConsumeToken();
727 continue;
Chad Rosierc1183952012-06-26 22:30:43 +0000728 }
729
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000730 if (Tok.isNot(tok::equal)) {
731 Diag(Tok, diag::err_expected_equal_after)
732 << Keyword;
733 SkipUntil(tok::r_paren);
734 return;
735 }
736 ConsumeToken();
Fariborz Jahanian88d510d2011-12-10 00:28:41 +0000737 if (Keyword == Ident_message) {
738 if (!isTokenStringLiteral()) {
Andy Gibbsa8df57a2012-11-17 19:16:52 +0000739 Diag(Tok, diag::err_expected_string_literal)
740 << /*Source='availability attribute'*/2;
Fariborz Jahanian88d510d2011-12-10 00:28:41 +0000741 SkipUntil(tok::r_paren);
742 return;
743 }
744 MessageExpr = ParseStringLiteralExpression();
745 break;
746 }
Chad Rosierc1183952012-06-26 22:30:43 +0000747
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000748 SourceRange VersionRange;
749 VersionTuple Version = ParseVersionTuple(VersionRange);
Chad Rosierc1183952012-06-26 22:30:43 +0000750
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000751 if (Version.empty()) {
752 SkipUntil(tok::r_paren);
753 return;
754 }
755
756 unsigned Index;
757 if (Keyword == Ident_introduced)
758 Index = Introduced;
759 else if (Keyword == Ident_deprecated)
760 Index = Deprecated;
761 else if (Keyword == Ident_obsoleted)
762 Index = Obsoleted;
Chad Rosierc1183952012-06-26 22:30:43 +0000763 else
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000764 Index = Unknown;
765
766 if (Index < Unknown) {
767 if (!Changes[Index].KeywordLoc.isInvalid()) {
768 Diag(KeywordLoc, diag::err_availability_redundant)
Chad Rosierc1183952012-06-26 22:30:43 +0000769 << Keyword
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000770 << SourceRange(Changes[Index].KeywordLoc,
771 Changes[Index].VersionRange.getEnd());
772 }
773
774 Changes[Index].KeywordLoc = KeywordLoc;
775 Changes[Index].Version = Version;
776 Changes[Index].VersionRange = VersionRange;
777 } else {
778 Diag(KeywordLoc, diag::err_availability_unknown_change)
779 << Keyword << VersionRange;
780 }
781
782 if (Tok.isNot(tok::comma))
783 break;
784
785 ConsumeToken();
786 } while (true);
787
788 // Closing ')'.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +0000789 if (T.consumeClose())
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000790 return;
791
792 if (endLoc)
Douglas Gregore7a8e3b2011-10-12 16:37:45 +0000793 *endLoc = T.getCloseLocation();
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000794
Douglas Gregor7ab142b2011-03-26 03:35:55 +0000795 // The 'unavailable' availability cannot be combined with any other
796 // availability changes. Make sure that hasn't happened.
797 if (UnavailableLoc.isValid()) {
798 bool Complained = false;
799 for (unsigned Index = Introduced; Index != Unknown; ++Index) {
800 if (Changes[Index].KeywordLoc.isValid()) {
801 if (!Complained) {
802 Diag(UnavailableLoc, diag::warn_availability_and_unavailable)
803 << SourceRange(Changes[Index].KeywordLoc,
804 Changes[Index].VersionRange.getEnd());
805 Complained = true;
806 }
807
808 // Clear out the availability.
809 Changes[Index] = AvailabilityChange();
810 }
811 }
812 }
813
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000814 // Record this attribute
Chad Rosierc1183952012-06-26 22:30:43 +0000815 attrs.addNew(&Availability,
816 SourceRange(AvailabilityLoc, T.getCloseLocation()),
Fariborz Jahanian586be882012-01-23 23:38:32 +0000817 0, AvailabilityLoc,
John McCall084e83d2011-03-24 11:26:52 +0000818 Platform, PlatformLoc,
819 Changes[Introduced],
820 Changes[Deprecated],
Chad Rosierc1183952012-06-26 22:30:43 +0000821 Changes[Obsoleted],
Fariborz Jahanian88d510d2011-12-10 00:28:41 +0000822 UnavailableLoc, MessageExpr.take(),
Alexis Hunta0e54d42012-06-18 16:13:52 +0000823 AttributeList::AS_GNU);
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000824}
825
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000826
827// Late Parsed Attributes:
828// See other examples of late parsing in lib/Parse/ParseCXXInlineMethods
829
830void Parser::LateParsedDeclaration::ParseLexedAttributes() {}
831
832void Parser::LateParsedClass::ParseLexedAttributes() {
833 Self->ParseLexedAttributes(*Class);
834}
835
836void Parser::LateParsedAttribute::ParseLexedAttributes() {
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +0000837 Self->ParseLexedAttribute(*this, true, false);
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000838}
839
840/// Wrapper class which calls ParseLexedAttribute, after setting up the
841/// scope appropriately.
842void Parser::ParseLexedAttributes(ParsingClass &Class) {
843 // Deal with templates
844 // FIXME: Test cases to make sure this does the right thing for templates.
845 bool HasTemplateScope = !Class.TopLevelClass && Class.TemplateScope;
846 ParseScope ClassTemplateScope(this, Scope::TemplateParamScope,
847 HasTemplateScope);
848 if (HasTemplateScope)
849 Actions.ActOnReenterTemplateScope(getCurScope(), Class.TagOrTemplate);
850
Douglas Gregor3024f072012-04-16 07:05:22 +0000851 // Set or update the scope flags.
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000852 bool AlreadyHasClassScope = Class.TopLevelClass;
Douglas Gregor3024f072012-04-16 07:05:22 +0000853 unsigned ScopeFlags = Scope::ClassScope|Scope::DeclScope;
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000854 ParseScope ClassScope(this, ScopeFlags, !AlreadyHasClassScope);
855 ParseScopeFlags ClassScopeFlags(this, ScopeFlags, AlreadyHasClassScope);
856
DeLesley Hutchins6f860042012-04-06 15:10:17 +0000857 // Enter the scope of nested classes
858 if (!AlreadyHasClassScope)
859 Actions.ActOnStartDelayedMemberDeclarations(getCurScope(),
860 Class.TagOrTemplate);
Benjamin Kramer1d373c62012-05-17 12:01:52 +0000861 if (!Class.LateParsedDeclarations.empty()) {
Douglas Gregor3024f072012-04-16 07:05:22 +0000862 for (unsigned i = 0, ni = Class.LateParsedDeclarations.size(); i < ni; ++i){
863 Class.LateParsedDeclarations[i]->ParseLexedAttributes();
864 }
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000865 }
Chad Rosierc1183952012-06-26 22:30:43 +0000866
DeLesley Hutchins6f860042012-04-06 15:10:17 +0000867 if (!AlreadyHasClassScope)
868 Actions.ActOnFinishDelayedMemberDeclarations(getCurScope(),
869 Class.TagOrTemplate);
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000870}
871
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +0000872
873/// \brief Parse all attributes in LAs, and attach them to Decl D.
874void Parser::ParseLexedAttributeList(LateParsedAttrList &LAs, Decl *D,
875 bool EnterScope, bool OnDefinition) {
DeLesley Hutchins66e300e2012-11-02 21:44:32 +0000876 assert(LAs.parseSoon() &&
877 "Attribute list should be marked for immediate parsing.");
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +0000878 for (unsigned i = 0, ni = LAs.size(); i < ni; ++i) {
DeLesley Hutchins19c722d2012-08-15 22:41:04 +0000879 if (D)
880 LAs[i]->addDecl(D);
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +0000881 ParseLexedAttribute(*LAs[i], EnterScope, OnDefinition);
Benjamin Kramerbafc49a2012-04-14 12:44:47 +0000882 delete LAs[i];
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +0000883 }
884 LAs.clear();
885}
886
887
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000888/// \brief Finish parsing an attribute for which parsing was delayed.
889/// This will be called at the end of parsing a class declaration
890/// for each LateParsedAttribute. We consume the saved tokens and
Chad Rosierc1183952012-06-26 22:30:43 +0000891/// create an attribute with the arguments filled in. We add this
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000892/// to the Attribute list for the decl.
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +0000893void Parser::ParseLexedAttribute(LateParsedAttribute &LA,
894 bool EnterScope, bool OnDefinition) {
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000895 // Save the current token position.
896 SourceLocation OrigLoc = Tok.getLocation();
897
898 // Append the current token at the end of the new token stream so that it
899 // doesn't get lost.
900 LA.Toks.push_back(Tok);
901 PP.EnterTokenStream(LA.Toks.data(), LA.Toks.size(), true, false);
902 // Consume the previously pushed token.
903 ConsumeAnyToken();
904
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +0000905 if (OnDefinition && !IsThreadSafetyAttribute(LA.AttrName.getName())) {
906 Diag(Tok, diag::warn_attribute_on_function_definition)
907 << LA.AttrName.getName();
908 }
909
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000910 ParsedAttributes Attrs(AttrFactory);
911 SourceLocation endLoc;
912
DeLesley Hutchinsf1150d32012-08-20 21:32:18 +0000913 if (LA.Decls.size() > 0) {
DeLesley Hutchinsbd2ee132012-03-02 22:12:59 +0000914 Decl *D = LA.Decls[0];
DeLesley Hutchinsf1150d32012-08-20 21:32:18 +0000915 NamedDecl *ND = dyn_cast<NamedDecl>(D);
916 RecordDecl *RD = dyn_cast_or_null<RecordDecl>(D->getDeclContext());
Caitlin Sadowski990d5712011-09-08 17:42:31 +0000917
DeLesley Hutchinsf1150d32012-08-20 21:32:18 +0000918 // Allow 'this' within late-parsed attributes.
919 Sema::CXXThisScopeRAII ThisScope(Actions, RD,
920 /*TypeQuals=*/0,
921 ND && RD && ND->isCXXInstanceMember());
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000922
DeLesley Hutchinsf1150d32012-08-20 21:32:18 +0000923 if (LA.Decls.size() == 1) {
924 // If the Decl is templatized, add template parameters to scope.
925 bool HasTemplateScope = EnterScope && D->isTemplateDecl();
926 ParseScope TempScope(this, Scope::TemplateParamScope, HasTemplateScope);
927 if (HasTemplateScope)
928 Actions.ActOnReenterTemplateScope(Actions.CurScope, D);
DeLesley Hutchinsbd2ee132012-03-02 22:12:59 +0000929
DeLesley Hutchinsf1150d32012-08-20 21:32:18 +0000930 // If the Decl is on a function, add function parameters to the scope.
931 bool HasFunScope = EnterScope && D->isFunctionOrFunctionTemplate();
932 ParseScope FnScope(this, Scope::FnScope|Scope::DeclScope, HasFunScope);
933 if (HasFunScope)
934 Actions.ActOnReenterFunctionContext(Actions.CurScope, D);
DeLesley Hutchinsbd2ee132012-03-02 22:12:59 +0000935
Michael Han23214e52012-10-03 01:56:22 +0000936 ParseGNUAttributeArgs(&LA.AttrName, LA.AttrNameLoc, Attrs, &endLoc,
Michael Han360d2252012-10-04 16:42:52 +0000937 0, SourceLocation(), AttributeList::AS_GNU);
DeLesley Hutchinsf1150d32012-08-20 21:32:18 +0000938
939 if (HasFunScope) {
940 Actions.ActOnExitFunctionContext();
941 FnScope.Exit(); // Pop scope, and remove Decls from IdResolver
942 }
943 if (HasTemplateScope) {
944 TempScope.Exit();
945 }
946 } else {
947 // If there are multiple decls, then the decl cannot be within the
948 // function scope.
Michael Han23214e52012-10-03 01:56:22 +0000949 ParseGNUAttributeArgs(&LA.AttrName, LA.AttrNameLoc, Attrs, &endLoc,
Michael Han360d2252012-10-04 16:42:52 +0000950 0, SourceLocation(), AttributeList::AS_GNU);
DeLesley Hutchinsbd2ee132012-03-02 22:12:59 +0000951 }
DeLesley Hutchins71d61032012-03-02 22:29:50 +0000952 } else {
953 Diag(Tok, diag::warn_attribute_no_decl) << LA.AttrName.getName();
Caitlin Sadowski990d5712011-09-08 17:42:31 +0000954 }
955
DeLesley Hutchinsbd2ee132012-03-02 22:12:59 +0000956 for (unsigned i = 0, ni = LA.Decls.size(); i < ni; ++i) {
957 Actions.ActOnFinishDelayedAttribute(getCurScope(), LA.Decls[i], Attrs);
958 }
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000959
960 if (Tok.getLocation() != OrigLoc) {
961 // Due to a parsing error, we either went over the cached tokens or
962 // there are still cached tokens left, so we skip the leftover tokens.
963 // Since this is an uncommon situation that should be avoided, use the
964 // expensive isBeforeInTranslationUnit call.
965 if (PP.getSourceManager().isBeforeInTranslationUnit(Tok.getLocation(),
966 OrigLoc))
967 while (Tok.getLocation() != OrigLoc && Tok.isNot(tok::eof))
Douglas Gregor0cf55e92012-03-08 01:00:17 +0000968 ConsumeAnyToken();
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000969 }
970}
971
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000972/// \brief Wrapper around a case statement checking if AttrName is
973/// one of the thread safety attributes
974bool Parser::IsThreadSafetyAttribute(llvm::StringRef AttrName){
975 return llvm::StringSwitch<bool>(AttrName)
976 .Case("guarded_by", true)
977 .Case("guarded_var", true)
978 .Case("pt_guarded_by", true)
979 .Case("pt_guarded_var", true)
980 .Case("lockable", true)
981 .Case("scoped_lockable", true)
982 .Case("no_thread_safety_analysis", true)
983 .Case("acquired_after", true)
984 .Case("acquired_before", true)
985 .Case("exclusive_lock_function", true)
986 .Case("shared_lock_function", true)
987 .Case("exclusive_trylock_function", true)
988 .Case("shared_trylock_function", true)
989 .Case("unlock_function", true)
990 .Case("lock_returned", true)
991 .Case("locks_excluded", true)
992 .Case("exclusive_locks_required", true)
993 .Case("shared_locks_required", true)
994 .Default(false);
995}
996
997/// \brief Parse the contents of thread safety attributes. These
998/// should always be parsed as an expression list.
999///
1000/// We need to special case the parsing due to the fact that if the first token
1001/// of the first argument is an identifier, the main parse loop will store
1002/// that token as a "parameter" and the rest of
1003/// the arguments will be added to a list of "arguments". However,
1004/// subsequent tokens in the first argument are lost. We instead parse each
1005/// argument as an expression and add all arguments to the list of "arguments".
1006/// In future, we will take advantage of this special case to also
1007/// deal with some argument scoping issues here (for example, referring to a
1008/// function parameter in the attribute on that function).
1009void Parser::ParseThreadSafetyAttribute(IdentifierInfo &AttrName,
1010 SourceLocation AttrNameLoc,
1011 ParsedAttributes &Attrs,
1012 SourceLocation *EndLoc) {
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001013 assert(Tok.is(tok::l_paren) && "Attribute arg list not starting with '('");
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +00001014
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001015 BalancedDelimiterTracker T(*this, tok::l_paren);
1016 T.consumeOpen();
Chad Rosierc1183952012-06-26 22:30:43 +00001017
Benjamin Kramerf0623432012-08-23 22:51:59 +00001018 ExprVector ArgExprs;
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001019 bool ArgExprsOk = true;
Chad Rosierc1183952012-06-26 22:30:43 +00001020
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001021 // now parse the list of expressions
DeLesley Hutchins36f5d852011-12-14 19:36:06 +00001022 while (Tok.isNot(tok::r_paren)) {
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001023 ExprResult ArgExpr(ParseAssignmentExpression());
1024 if (ArgExpr.isInvalid()) {
1025 ArgExprsOk = false;
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001026 T.consumeClose();
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001027 break;
1028 } else {
1029 ArgExprs.push_back(ArgExpr.release());
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +00001030 }
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001031 if (Tok.isNot(tok::comma))
1032 break;
1033 ConsumeToken(); // Eat the comma, move to the next argument
1034 }
1035 // Match the ')'.
DeLesley Hutchins30398dd2012-01-20 22:50:54 +00001036 if (ArgExprsOk && !T.consumeClose()) {
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001037 Attrs.addNew(&AttrName, AttrNameLoc, 0, AttrNameLoc, 0, SourceLocation(),
Benjamin Kramerf0623432012-08-23 22:51:59 +00001038 ArgExprs.data(), ArgExprs.size(), AttributeList::AS_GNU);
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +00001039 }
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001040 if (EndLoc)
1041 *EndLoc = T.getCloseLocation();
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +00001042}
1043
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +00001044void Parser::ParseTypeTagForDatatypeAttribute(IdentifierInfo &AttrName,
1045 SourceLocation AttrNameLoc,
1046 ParsedAttributes &Attrs,
1047 SourceLocation *EndLoc) {
1048 assert(Tok.is(tok::l_paren) && "Attribute arg list not starting with '('");
1049
1050 BalancedDelimiterTracker T(*this, tok::l_paren);
1051 T.consumeOpen();
1052
1053 if (Tok.isNot(tok::identifier)) {
1054 Diag(Tok, diag::err_expected_ident);
1055 T.skipToEnd();
1056 return;
1057 }
1058 IdentifierInfo *ArgumentKind = Tok.getIdentifierInfo();
1059 SourceLocation ArgumentKindLoc = ConsumeToken();
1060
1061 if (Tok.isNot(tok::comma)) {
1062 Diag(Tok, diag::err_expected_comma);
1063 T.skipToEnd();
1064 return;
1065 }
1066 ConsumeToken();
1067
1068 SourceRange MatchingCTypeRange;
1069 TypeResult MatchingCType = ParseTypeName(&MatchingCTypeRange);
1070 if (MatchingCType.isInvalid()) {
1071 T.skipToEnd();
1072 return;
1073 }
1074
1075 bool LayoutCompatible = false;
1076 bool MustBeNull = false;
1077 while (Tok.is(tok::comma)) {
1078 ConsumeToken();
1079 if (Tok.isNot(tok::identifier)) {
1080 Diag(Tok, diag::err_expected_ident);
1081 T.skipToEnd();
1082 return;
1083 }
1084 IdentifierInfo *Flag = Tok.getIdentifierInfo();
1085 if (Flag->isStr("layout_compatible"))
1086 LayoutCompatible = true;
1087 else if (Flag->isStr("must_be_null"))
1088 MustBeNull = true;
1089 else {
1090 Diag(Tok, diag::err_type_safety_unknown_flag) << Flag;
1091 T.skipToEnd();
1092 return;
1093 }
1094 ConsumeToken(); // consume flag
1095 }
1096
1097 if (!T.consumeClose()) {
1098 Attrs.addNewTypeTagForDatatype(&AttrName, AttrNameLoc, 0, AttrNameLoc,
1099 ArgumentKind, ArgumentKindLoc,
1100 MatchingCType.release(), LayoutCompatible,
1101 MustBeNull, AttributeList::AS_GNU);
1102 }
1103
1104 if (EndLoc)
1105 *EndLoc = T.getCloseLocation();
1106}
1107
Richard Smith7bdcc4a2012-04-10 01:32:12 +00001108/// DiagnoseProhibitedCXX11Attribute - We have found the opening square brackets
1109/// of a C++11 attribute-specifier in a location where an attribute is not
1110/// permitted. By C++11 [dcl.attr.grammar]p6, this is ill-formed. Diagnose this
1111/// situation.
1112///
1113/// \return \c true if we skipped an attribute-like chunk of tokens, \c false if
1114/// this doesn't appear to actually be an attribute-specifier, and the caller
1115/// should try to parse it.
1116bool Parser::DiagnoseProhibitedCXX11Attribute() {
1117 assert(Tok.is(tok::l_square) && NextToken().is(tok::l_square));
1118
1119 switch (isCXX11AttributeSpecifier(/*Disambiguate*/true)) {
1120 case CAK_NotAttributeSpecifier:
1121 // No diagnostic: we're in Obj-C++11 and this is not actually an attribute.
1122 return false;
1123
1124 case CAK_InvalidAttributeSpecifier:
1125 Diag(Tok.getLocation(), diag::err_l_square_l_square_not_attribute);
1126 return false;
1127
1128 case CAK_AttributeSpecifier:
1129 // Parse and discard the attributes.
1130 SourceLocation BeginLoc = ConsumeBracket();
1131 ConsumeBracket();
1132 SkipUntil(tok::r_square, /*StopAtSemi*/ false);
1133 assert(Tok.is(tok::r_square) && "isCXX11AttributeSpecifier lied");
1134 SourceLocation EndLoc = ConsumeBracket();
1135 Diag(BeginLoc, diag::err_attributes_not_allowed)
1136 << SourceRange(BeginLoc, EndLoc);
1137 return true;
1138 }
Chandler Carruthd8f7d382012-04-10 16:03:08 +00001139 llvm_unreachable("All cases handled above.");
Richard Smith7bdcc4a2012-04-10 01:32:12 +00001140}
1141
John McCall53fa7142010-12-24 02:08:15 +00001142void Parser::DiagnoseProhibitedAttributes(ParsedAttributesWithRange &attrs) {
1143 Diag(attrs.Range.getBegin(), diag::err_attributes_not_allowed)
1144 << attrs.Range;
Dawn Perchik335e16b2010-09-03 01:29:35 +00001145}
1146
Michael Han64536a62012-11-06 19:34:54 +00001147void Parser::ProhibitCXX11Attributes(ParsedAttributesWithRange &attrs) {
1148 AttributeList *AttrList = attrs.getList();
1149 while (AttrList) {
1150 if (AttrList->isCXX0XAttribute()) {
1151 Diag(AttrList->getLoc(), diag::warn_attribute_no_decl)
1152 << AttrList->getName();
1153 AttrList->setInvalid();
1154 }
1155 AttrList = AttrList->getNext();
1156 }
1157}
1158
Chris Lattner53361ac2006-08-10 05:19:57 +00001159/// ParseDeclaration - Parse a full 'declaration', which consists of
1160/// declaration-specifiers, some number of declarators, and a semicolon.
Chris Lattner49836b42009-04-02 04:16:50 +00001161/// 'Context' should be a Declarator::TheContext value. This returns the
1162/// location of the semicolon in DeclEnd.
Chris Lattnera5235172007-08-25 06:57:03 +00001163///
1164/// declaration: [C99 6.7]
1165/// block-declaration ->
1166/// simple-declaration
1167/// others [FIXME]
Douglas Gregoreb31f392008-12-01 23:54:00 +00001168/// [C++] template-declaration
Chris Lattnera5235172007-08-25 06:57:03 +00001169/// [C++] namespace-definition
Douglas Gregord7c4d982008-12-30 03:27:21 +00001170/// [C++] using-directive
Douglas Gregor77b50e12009-06-22 23:06:13 +00001171/// [C++] using-declaration
Richard Smithc202b282012-04-14 00:33:13 +00001172/// [C++11/C11] static_assert-declaration
Chris Lattnera5235172007-08-25 06:57:03 +00001173/// others... [FIXME]
1174///
Fariborz Jahanian1db5c942010-09-28 20:42:35 +00001175Parser::DeclGroupPtrTy Parser::ParseDeclaration(StmtVector &Stmts,
1176 unsigned Context,
Alexis Hunt96d5c762009-11-21 08:43:09 +00001177 SourceLocation &DeclEnd,
John McCall53fa7142010-12-24 02:08:15 +00001178 ParsedAttributesWithRange &attrs) {
Argyrios Kyrtzidis355094e2010-06-17 10:52:18 +00001179 ParenBraceBracketBalancer BalancerRAIIObj(*this);
Fariborz Jahanian59b75282011-08-30 17:10:52 +00001180 // Must temporarily exit the objective-c container scope for
1181 // parsing c none objective-c decls.
1182 ObjCDeclContextSwitch ObjCDC(*this);
Chad Rosierc1183952012-06-26 22:30:43 +00001183
John McCall48871652010-08-21 09:40:31 +00001184 Decl *SingleDecl = 0;
Richard Smithcd1c0552011-07-01 19:46:12 +00001185 Decl *OwnedType = 0;
Chris Lattnera5235172007-08-25 06:57:03 +00001186 switch (Tok.getKind()) {
Douglas Gregoreb31f392008-12-01 23:54:00 +00001187 case tok::kw_template:
Douglas Gregor23996282009-05-12 21:31:51 +00001188 case tok::kw_export:
John McCall53fa7142010-12-24 02:08:15 +00001189 ProhibitAttributes(attrs);
Douglas Gregor1b57ff32009-05-12 23:25:50 +00001190 SingleDecl = ParseDeclarationStartingWithTemplate(Context, DeclEnd);
Chris Lattner5bbb3c82009-03-29 16:50:03 +00001191 break;
Sebastian Redl67667942010-08-27 23:12:46 +00001192 case tok::kw_inline:
Sebastian Redl5a5f2c72010-08-31 00:36:45 +00001193 // Could be the start of an inline namespace. Allowed as an ext in C++03.
David Blaikiebbafb8a2012-03-11 07:00:24 +00001194 if (getLangOpts().CPlusPlus && NextToken().is(tok::kw_namespace)) {
John McCall53fa7142010-12-24 02:08:15 +00001195 ProhibitAttributes(attrs);
Sebastian Redl67667942010-08-27 23:12:46 +00001196 SourceLocation InlineLoc = ConsumeToken();
1197 SingleDecl = ParseNamespace(Context, DeclEnd, InlineLoc);
1198 break;
1199 }
Chad Rosierc1183952012-06-26 22:30:43 +00001200 return ParseSimpleDeclaration(Stmts, Context, DeclEnd, attrs,
Fariborz Jahanian1db5c942010-09-28 20:42:35 +00001201 true);
Chris Lattnera5235172007-08-25 06:57:03 +00001202 case tok::kw_namespace:
John McCall53fa7142010-12-24 02:08:15 +00001203 ProhibitAttributes(attrs);
Chris Lattner49836b42009-04-02 04:16:50 +00001204 SingleDecl = ParseNamespace(Context, DeclEnd);
Chris Lattner5bbb3c82009-03-29 16:50:03 +00001205 break;
Douglas Gregord7c4d982008-12-30 03:27:21 +00001206 case tok::kw_using:
John McCall9b72f892010-11-10 02:40:36 +00001207 SingleDecl = ParseUsingDirectiveOrDeclaration(Context, ParsedTemplateInfo(),
Richard Smithcd1c0552011-07-01 19:46:12 +00001208 DeclEnd, attrs, &OwnedType);
Chris Lattner5bbb3c82009-03-29 16:50:03 +00001209 break;
Anders Carlssonf24fcff62009-03-11 16:27:10 +00001210 case tok::kw_static_assert:
Peter Collingbourne3d9cbdc2011-04-15 00:35:57 +00001211 case tok::kw__Static_assert:
John McCall53fa7142010-12-24 02:08:15 +00001212 ProhibitAttributes(attrs);
Chris Lattner49836b42009-04-02 04:16:50 +00001213 SingleDecl = ParseStaticAssertDeclaration(DeclEnd);
Chris Lattner5bbb3c82009-03-29 16:50:03 +00001214 break;
Chris Lattnera5235172007-08-25 06:57:03 +00001215 default:
John McCall53fa7142010-12-24 02:08:15 +00001216 return ParseSimpleDeclaration(Stmts, Context, DeclEnd, attrs, true);
Chris Lattnera5235172007-08-25 06:57:03 +00001217 }
Chad Rosierc1183952012-06-26 22:30:43 +00001218
Chris Lattner5bbb3c82009-03-29 16:50:03 +00001219 // This routine returns a DeclGroup, if the thing we parsed only contains a
Richard Smithcd1c0552011-07-01 19:46:12 +00001220 // single decl, convert it now. Alias declarations can also declare a type;
1221 // include that too if it is present.
1222 return Actions.ConvertDeclToDeclGroup(SingleDecl, OwnedType);
Chris Lattnera5235172007-08-25 06:57:03 +00001223}
1224
1225/// simple-declaration: [C99 6.7: declaration] [C++ 7p1: dcl.dcl]
1226/// declaration-specifiers init-declarator-list[opt] ';'
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00001227/// [C++11] attribute-specifier-seq decl-specifier-seq[opt]
1228/// init-declarator-list ';'
Chris Lattnera5235172007-08-25 06:57:03 +00001229///[C90/C++]init-declarator-list ';' [TODO]
1230/// [OMP] threadprivate-directive [TODO]
Chris Lattner32dc41c2009-03-29 17:27:48 +00001231///
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00001232/// for-range-declaration: [C++11 6.5p1: stmt.ranged]
Richard Smith02e85f32011-04-14 22:09:26 +00001233/// attribute-specifier-seq[opt] type-specifier-seq declarator
1234///
Chris Lattner32dc41c2009-03-29 17:27:48 +00001235/// If RequireSemi is false, this does not check for a ';' at the end of the
Chris Lattner005fc1b2010-04-05 18:18:31 +00001236/// declaration. If it is true, it checks for and eats it.
Richard Smith02e85f32011-04-14 22:09:26 +00001237///
1238/// If FRI is non-null, we might be parsing a for-range-declaration instead
1239/// of a simple-declaration. If we find that we are, we also parse the
1240/// for-range-initializer, and place it here.
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00001241Parser::DeclGroupPtrTy
1242Parser::ParseSimpleDeclaration(StmtVector &Stmts, unsigned Context,
1243 SourceLocation &DeclEnd,
1244 ParsedAttributesWithRange &attrs,
1245 bool RequireSemi, ForRangeInit *FRI) {
Chris Lattner53361ac2006-08-10 05:19:57 +00001246 // Parse the common declaration-specifiers piece.
John McCall28a6aea2009-11-04 02:18:39 +00001247 ParsingDeclSpec DS(*this);
John McCall53fa7142010-12-24 02:08:15 +00001248 DS.takeAttributesFrom(attrs);
Douglas Gregor0e7dde52011-04-24 05:37:28 +00001249
Douglas Gregor9de54ea2010-01-13 17:31:36 +00001250 ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS_none,
Richard Smith30482bc2011-02-20 03:19:35 +00001251 getDeclSpecContextFromDeclaratorContext(Context));
Abramo Bagnara1cd83682012-01-07 10:52:36 +00001252
Chris Lattner0e894622006-08-13 19:58:17 +00001253 // C99 6.7.2.3p6: Handle "struct-or-union identifier;", "enum { X };"
1254 // declaration-specifiers init-declarator-list[opt] ';'
Chris Lattner76c72282007-10-09 17:33:22 +00001255 if (Tok.is(tok::semi)) {
Argyrios Kyrtzidisfbb2bb52012-05-16 23:49:15 +00001256 DeclEnd = Tok.getLocation();
Chris Lattner005fc1b2010-04-05 18:18:31 +00001257 if (RequireSemi) ConsumeToken();
John McCall48871652010-08-21 09:40:31 +00001258 Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS_none,
Douglas Gregor0e7dde52011-04-24 05:37:28 +00001259 DS);
John McCall28a6aea2009-11-04 02:18:39 +00001260 DS.complete(TheDecl);
Chris Lattner5bbb3c82009-03-29 16:50:03 +00001261 return Actions.ConvertDeclToDeclGroup(TheDecl);
Chris Lattner0e894622006-08-13 19:58:17 +00001262 }
Chad Rosierc1183952012-06-26 22:30:43 +00001263
1264 return ParseDeclGroup(DS, Context, /*FunctionDefs=*/ false, &DeclEnd, FRI);
John McCalld5a36322009-11-03 19:26:08 +00001265}
Mike Stump11289f42009-09-09 15:08:12 +00001266
Richard Smith09f76ee2011-10-19 21:33:05 +00001267/// Returns true if this might be the start of a declarator, or a common typo
1268/// for a declarator.
1269bool Parser::MightBeDeclarator(unsigned Context) {
1270 switch (Tok.getKind()) {
1271 case tok::annot_cxxscope:
1272 case tok::annot_template_id:
1273 case tok::caret:
1274 case tok::code_completion:
1275 case tok::coloncolon:
1276 case tok::ellipsis:
1277 case tok::kw___attribute:
1278 case tok::kw_operator:
1279 case tok::l_paren:
1280 case tok::star:
1281 return true;
1282
1283 case tok::amp:
1284 case tok::ampamp:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001285 return getLangOpts().CPlusPlus;
Richard Smith09f76ee2011-10-19 21:33:05 +00001286
Richard Smithc8a79032012-01-09 22:31:44 +00001287 case tok::l_square: // Might be an attribute on an unnamed bit-field.
David Blaikiebbafb8a2012-03-11 07:00:24 +00001288 return Context == Declarator::MemberContext && getLangOpts().CPlusPlus0x &&
Richard Smithc8a79032012-01-09 22:31:44 +00001289 NextToken().is(tok::l_square);
1290
1291 case tok::colon: // Might be a typo for '::' or an unnamed bit-field.
David Blaikiebbafb8a2012-03-11 07:00:24 +00001292 return Context == Declarator::MemberContext || getLangOpts().CPlusPlus;
Richard Smithc8a79032012-01-09 22:31:44 +00001293
Richard Smith09f76ee2011-10-19 21:33:05 +00001294 case tok::identifier:
1295 switch (NextToken().getKind()) {
1296 case tok::code_completion:
1297 case tok::coloncolon:
1298 case tok::comma:
1299 case tok::equal:
1300 case tok::equalequal: // Might be a typo for '='.
1301 case tok::kw_alignas:
1302 case tok::kw_asm:
1303 case tok::kw___attribute:
1304 case tok::l_brace:
1305 case tok::l_paren:
1306 case tok::l_square:
1307 case tok::less:
1308 case tok::r_brace:
1309 case tok::r_paren:
1310 case tok::r_square:
1311 case tok::semi:
1312 return true;
1313
1314 case tok::colon:
1315 // At namespace scope, 'identifier:' is probably a typo for 'identifier::'
Richard Smithc8a79032012-01-09 22:31:44 +00001316 // and in block scope it's probably a label. Inside a class definition,
1317 // this is a bit-field.
1318 return Context == Declarator::MemberContext ||
David Blaikiebbafb8a2012-03-11 07:00:24 +00001319 (getLangOpts().CPlusPlus && Context == Declarator::FileContext);
Richard Smithc8a79032012-01-09 22:31:44 +00001320
1321 case tok::identifier: // Possible virt-specifier.
David Blaikiebbafb8a2012-03-11 07:00:24 +00001322 return getLangOpts().CPlusPlus0x && isCXX0XVirtSpecifier(NextToken());
Richard Smith09f76ee2011-10-19 21:33:05 +00001323
1324 default:
1325 return false;
1326 }
1327
1328 default:
1329 return false;
1330 }
1331}
1332
Richard Smithb8caac82012-04-11 20:59:20 +00001333/// Skip until we reach something which seems like a sensible place to pick
1334/// up parsing after a malformed declaration. This will sometimes stop sooner
1335/// than SkipUntil(tok::r_brace) would, but will never stop later.
1336void Parser::SkipMalformedDecl() {
1337 while (true) {
1338 switch (Tok.getKind()) {
1339 case tok::l_brace:
1340 // Skip until matching }, then stop. We've probably skipped over
1341 // a malformed class or function definition or similar.
1342 ConsumeBrace();
1343 SkipUntil(tok::r_brace, /*StopAtSemi*/false);
1344 if (Tok.is(tok::comma) || Tok.is(tok::l_brace) || Tok.is(tok::kw_try)) {
1345 // This declaration isn't over yet. Keep skipping.
1346 continue;
1347 }
1348 if (Tok.is(tok::semi))
1349 ConsumeToken();
1350 return;
1351
1352 case tok::l_square:
1353 ConsumeBracket();
1354 SkipUntil(tok::r_square, /*StopAtSemi*/false);
1355 continue;
1356
1357 case tok::l_paren:
1358 ConsumeParen();
1359 SkipUntil(tok::r_paren, /*StopAtSemi*/false);
1360 continue;
1361
1362 case tok::r_brace:
1363 return;
1364
1365 case tok::semi:
1366 ConsumeToken();
1367 return;
1368
1369 case tok::kw_inline:
1370 // 'inline namespace' at the start of a line is almost certainly
Jordan Rose12e730c2012-07-09 16:54:53 +00001371 // a good place to pick back up parsing, except in an Objective-C
1372 // @interface context.
1373 if (Tok.isAtStartOfLine() && NextToken().is(tok::kw_namespace) &&
1374 (!ParsingInObjCContainer || CurParsedObjCImpl))
Richard Smithb8caac82012-04-11 20:59:20 +00001375 return;
1376 break;
1377
1378 case tok::kw_namespace:
1379 // 'namespace' at the start of a line is almost certainly a good
Jordan Rose12e730c2012-07-09 16:54:53 +00001380 // place to pick back up parsing, except in an Objective-C
1381 // @interface context.
1382 if (Tok.isAtStartOfLine() &&
1383 (!ParsingInObjCContainer || CurParsedObjCImpl))
1384 return;
1385 break;
1386
1387 case tok::at:
1388 // @end is very much like } in Objective-C contexts.
1389 if (NextToken().isObjCAtKeyword(tok::objc_end) &&
1390 ParsingInObjCContainer)
1391 return;
1392 break;
1393
1394 case tok::minus:
1395 case tok::plus:
1396 // - and + probably start new method declarations in Objective-C contexts.
1397 if (Tok.isAtStartOfLine() && ParsingInObjCContainer)
Richard Smithb8caac82012-04-11 20:59:20 +00001398 return;
1399 break;
1400
1401 case tok::eof:
1402 return;
1403
1404 default:
1405 break;
1406 }
1407
1408 ConsumeAnyToken();
1409 }
1410}
1411
John McCalld5a36322009-11-03 19:26:08 +00001412/// ParseDeclGroup - Having concluded that this is either a function
1413/// definition or a group of object declarations, actually parse the
1414/// result.
John McCall28a6aea2009-11-04 02:18:39 +00001415Parser::DeclGroupPtrTy Parser::ParseDeclGroup(ParsingDeclSpec &DS,
1416 unsigned Context,
John McCalld5a36322009-11-03 19:26:08 +00001417 bool AllowFunctionDefinitions,
Richard Smith02e85f32011-04-14 22:09:26 +00001418 SourceLocation *DeclEnd,
1419 ForRangeInit *FRI) {
John McCalld5a36322009-11-03 19:26:08 +00001420 // Parse the first declarator.
John McCall28a6aea2009-11-04 02:18:39 +00001421 ParsingDeclarator D(*this, DS, static_cast<Declarator::TheContext>(Context));
John McCalld5a36322009-11-03 19:26:08 +00001422 ParseDeclarator(D);
Chris Lattner32dc41c2009-03-29 17:27:48 +00001423
John McCalld5a36322009-11-03 19:26:08 +00001424 // Bail out if the first declarator didn't seem well-formed.
1425 if (!D.hasName() && !D.mayOmitIdentifier()) {
Richard Smithb8caac82012-04-11 20:59:20 +00001426 SkipMalformedDecl();
John McCalld5a36322009-11-03 19:26:08 +00001427 return DeclGroupPtrTy();
Chris Lattnerefb0f112009-03-29 17:18:04 +00001428 }
Mike Stump11289f42009-09-09 15:08:12 +00001429
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +00001430 // Save late-parsed attributes for now; they need to be parsed in the
1431 // appropriate function scope after the function Decl has been constructed.
DeLesley Hutchins66e300e2012-11-02 21:44:32 +00001432 // These will be parsed in ParseFunctionDefinition or ParseLexedAttrList.
1433 LateParsedAttrList LateParsedAttrs(true);
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +00001434 if (D.isFunctionDeclarator())
1435 MaybeParseGNUAttributes(D, &LateParsedAttrs);
1436
Chris Lattnerdbb1e932010-07-11 22:24:20 +00001437 // Check to see if we have a function *definition* which must have a body.
1438 if (AllowFunctionDefinitions && D.isFunctionDeclarator() &&
1439 // Look at the next token to make sure that this isn't a function
1440 // declaration. We have to check this because __attribute__ might be the
1441 // start of a function definition in GCC-extended K&R C.
Fariborz Jahanian712bb812012-08-10 15:54:40 +00001442 !isDeclarationAfterDeclarator()) {
Chad Rosierc1183952012-06-26 22:30:43 +00001443
Chris Lattner13901342010-07-11 22:42:07 +00001444 if (isStartOfFunctionDefinition(D)) {
John McCalld5a36322009-11-03 19:26:08 +00001445 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
1446 Diag(Tok, diag::err_function_declared_typedef);
1447
1448 // Recover by treating the 'typedef' as spurious.
1449 DS.ClearStorageClassSpecs();
1450 }
1451
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +00001452 Decl *TheDecl =
1453 ParseFunctionDefinition(D, ParsedTemplateInfo(), &LateParsedAttrs);
John McCalld5a36322009-11-03 19:26:08 +00001454 return Actions.ConvertDeclToDeclGroup(TheDecl);
Chris Lattner13901342010-07-11 22:42:07 +00001455 }
Chad Rosierc1183952012-06-26 22:30:43 +00001456
Chris Lattner13901342010-07-11 22:42:07 +00001457 if (isDeclarationSpecifier()) {
1458 // If there is an invalid declaration specifier right after the function
1459 // prototype, then we must be in a missing semicolon case where this isn't
1460 // actually a body. Just fall through into the code that handles it as a
1461 // prototype, and let the top-level code handle the erroneous declspec
1462 // where it would otherwise expect a comma or semicolon.
John McCalld5a36322009-11-03 19:26:08 +00001463 } else {
1464 Diag(Tok, diag::err_expected_fn_body);
1465 SkipUntil(tok::semi);
1466 return DeclGroupPtrTy();
1467 }
1468 }
1469
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +00001470 if (ParseAsmAttributesAfterDeclarator(D))
Richard Smith02e85f32011-04-14 22:09:26 +00001471 return DeclGroupPtrTy();
1472
1473 // C++0x [stmt.iter]p1: Check if we have a for-range-declarator. If so, we
1474 // must parse and analyze the for-range-initializer before the declaration is
1475 // analyzed.
1476 if (FRI && Tok.is(tok::colon)) {
1477 FRI->ColonLoc = ConsumeToken();
Sebastian Redl3da34892011-06-05 12:23:16 +00001478 if (Tok.is(tok::l_brace))
1479 FRI->RangeExpr = ParseBraceInitializer();
1480 else
1481 FRI->RangeExpr = ParseExpression();
Richard Smith02e85f32011-04-14 22:09:26 +00001482 Decl *ThisDecl = Actions.ActOnDeclarator(getCurScope(), D);
1483 Actions.ActOnCXXForRangeDecl(ThisDecl);
1484 Actions.FinalizeDeclaration(ThisDecl);
John McCallcf6e0c82012-01-27 01:29:43 +00001485 D.complete(ThisDecl);
Richard Smith02e85f32011-04-14 22:09:26 +00001486 return Actions.FinalizeDeclaratorGroup(getCurScope(), DS, &ThisDecl, 1);
1487 }
1488
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001489 SmallVector<Decl *, 8> DeclsInGroup;
Richard Smith02e85f32011-04-14 22:09:26 +00001490 Decl *FirstDecl = ParseDeclarationAfterDeclaratorAndAttributes(D);
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +00001491 if (LateParsedAttrs.size() > 0)
1492 ParseLexedAttributeList(LateParsedAttrs, FirstDecl, true, false);
John McCall28a6aea2009-11-04 02:18:39 +00001493 D.complete(FirstDecl);
John McCall48871652010-08-21 09:40:31 +00001494 if (FirstDecl)
John McCalld5a36322009-11-03 19:26:08 +00001495 DeclsInGroup.push_back(FirstDecl);
1496
Richard Smith09f76ee2011-10-19 21:33:05 +00001497 bool ExpectSemi = Context != Declarator::ForContext;
Fariborz Jahanian577574a2012-07-02 23:37:09 +00001498
John McCalld5a36322009-11-03 19:26:08 +00001499 // If we don't have a comma, it is either the end of the list (a ';') or an
1500 // error, bail out.
1501 while (Tok.is(tok::comma)) {
Richard Smith09f76ee2011-10-19 21:33:05 +00001502 SourceLocation CommaLoc = ConsumeToken();
1503
1504 if (Tok.isAtStartOfLine() && ExpectSemi && !MightBeDeclarator(Context)) {
1505 // This comma was followed by a line-break and something which can't be
1506 // the start of a declarator. The comma was probably a typo for a
1507 // semicolon.
1508 Diag(CommaLoc, diag::err_expected_semi_declaration)
1509 << FixItHint::CreateReplacement(CommaLoc, ";");
1510 ExpectSemi = false;
1511 break;
1512 }
John McCalld5a36322009-11-03 19:26:08 +00001513
1514 // Parse the next declarator.
1515 D.clear();
Richard Smith8d06f422012-01-12 23:53:29 +00001516 D.setCommaLoc(CommaLoc);
John McCalld5a36322009-11-03 19:26:08 +00001517
1518 // Accept attributes in an init-declarator. In the first declarator in a
1519 // declaration, these would be part of the declspec. In subsequent
1520 // declarators, they become part of the declarator itself, so that they
1521 // don't apply to declarators after *this* one. Examples:
1522 // short __attribute__((common)) var; -> declspec
1523 // short var __attribute__((common)); -> declarator
1524 // short x, __attribute__((common)) var; -> declarator
John McCall53fa7142010-12-24 02:08:15 +00001525 MaybeParseGNUAttributes(D);
John McCalld5a36322009-11-03 19:26:08 +00001526
1527 ParseDeclarator(D);
Fariborz Jahanian372030b2012-01-13 00:14:12 +00001528 if (!D.isInvalidType()) {
1529 Decl *ThisDecl = ParseDeclarationAfterDeclarator(D);
1530 D.complete(ThisDecl);
1531 if (ThisDecl)
Chad Rosierc1183952012-06-26 22:30:43 +00001532 DeclsInGroup.push_back(ThisDecl);
Fariborz Jahanian372030b2012-01-13 00:14:12 +00001533 }
John McCalld5a36322009-11-03 19:26:08 +00001534 }
1535
1536 if (DeclEnd)
1537 *DeclEnd = Tok.getLocation();
1538
Richard Smith09f76ee2011-10-19 21:33:05 +00001539 if (ExpectSemi &&
Chris Lattner02f1b612012-04-28 16:12:17 +00001540 ExpectAndConsumeSemi(Context == Declarator::FileContext
1541 ? diag::err_invalid_token_after_toplevel_declarator
1542 : diag::err_expected_semi_declaration)) {
Chris Lattner13901342010-07-11 22:42:07 +00001543 // Okay, there was no semicolon and one was expected. If we see a
1544 // declaration specifier, just assume it was missing and continue parsing.
1545 // Otherwise things are very confused and we skip to recover.
1546 if (!isDeclarationSpecifier()) {
1547 SkipUntil(tok::r_brace, true, true);
1548 if (Tok.is(tok::semi))
1549 ConsumeToken();
1550 }
John McCalld5a36322009-11-03 19:26:08 +00001551 }
1552
Douglas Gregor0be31a22010-07-02 17:43:08 +00001553 return Actions.FinalizeDeclaratorGroup(getCurScope(), DS,
John McCalld5a36322009-11-03 19:26:08 +00001554 DeclsInGroup.data(),
1555 DeclsInGroup.size());
Chris Lattner53361ac2006-08-10 05:19:57 +00001556}
1557
Richard Smith02e85f32011-04-14 22:09:26 +00001558/// Parse an optional simple-asm-expr and attributes, and attach them to a
1559/// declarator. Returns true on an error.
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +00001560bool Parser::ParseAsmAttributesAfterDeclarator(Declarator &D) {
Richard Smith02e85f32011-04-14 22:09:26 +00001561 // If a simple-asm-expr is present, parse it.
1562 if (Tok.is(tok::kw_asm)) {
1563 SourceLocation Loc;
1564 ExprResult AsmLabel(ParseSimpleAsm(&Loc));
1565 if (AsmLabel.isInvalid()) {
1566 SkipUntil(tok::semi, true, true);
1567 return true;
1568 }
1569
1570 D.setAsmLabel(AsmLabel.release());
1571 D.SetRangeEnd(Loc);
1572 }
1573
1574 MaybeParseGNUAttributes(D);
1575 return false;
1576}
1577
Douglas Gregor23996282009-05-12 21:31:51 +00001578/// \brief Parse 'declaration' after parsing 'declaration-specifiers
1579/// declarator'. This method parses the remainder of the declaration
1580/// (including any attributes or initializer, among other things) and
1581/// finalizes the declaration.
Chris Lattnerf0f3baa2006-08-14 00:15:20 +00001582///
Chris Lattnerf0f3baa2006-08-14 00:15:20 +00001583/// init-declarator: [C99 6.7]
1584/// declarator
1585/// declarator '=' initializer
Chris Lattner6d7e6342006-08-15 03:41:14 +00001586/// [GNU] declarator simple-asm-expr[opt] attributes[opt]
1587/// [GNU] declarator simple-asm-expr[opt] attributes[opt] '=' initializer
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00001588/// [C++] declarator initializer[opt]
1589///
1590/// [C++] initializer:
1591/// [C++] '=' initializer-clause
1592/// [C++] '(' expression-list ')'
Sebastian Redlf769df52009-03-24 22:27:57 +00001593/// [C++0x] '=' 'default' [TODO]
1594/// [C++0x] '=' 'delete'
Sebastian Redl3da34892011-06-05 12:23:16 +00001595/// [C++0x] braced-init-list
Sebastian Redlf769df52009-03-24 22:27:57 +00001596///
1597/// According to the standard grammar, =default and =delete are function
1598/// definitions, but that definitely doesn't fit with the parser here.
Chris Lattnerf0f3baa2006-08-14 00:15:20 +00001599///
John McCall48871652010-08-21 09:40:31 +00001600Decl *Parser::ParseDeclarationAfterDeclarator(Declarator &D,
Douglas Gregorb52fabb2009-06-23 23:11:28 +00001601 const ParsedTemplateInfo &TemplateInfo) {
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +00001602 if (ParseAsmAttributesAfterDeclarator(D))
Richard Smith02e85f32011-04-14 22:09:26 +00001603 return 0;
Mike Stump11289f42009-09-09 15:08:12 +00001604
Richard Smith02e85f32011-04-14 22:09:26 +00001605 return ParseDeclarationAfterDeclaratorAndAttributes(D, TemplateInfo);
1606}
Mike Stump11289f42009-09-09 15:08:12 +00001607
Richard Smith02e85f32011-04-14 22:09:26 +00001608Decl *Parser::ParseDeclarationAfterDeclaratorAndAttributes(Declarator &D,
1609 const ParsedTemplateInfo &TemplateInfo) {
Douglas Gregor23996282009-05-12 21:31:51 +00001610 // Inform the current actions module that we just parsed this declarator.
John McCall48871652010-08-21 09:40:31 +00001611 Decl *ThisDecl = 0;
Douglas Gregor450f00842009-09-25 18:43:00 +00001612 switch (TemplateInfo.Kind) {
1613 case ParsedTemplateInfo::NonTemplate:
Douglas Gregor0be31a22010-07-02 17:43:08 +00001614 ThisDecl = Actions.ActOnDeclarator(getCurScope(), D);
Douglas Gregor450f00842009-09-25 18:43:00 +00001615 break;
Chad Rosierc1183952012-06-26 22:30:43 +00001616
Douglas Gregor450f00842009-09-25 18:43:00 +00001617 case ParsedTemplateInfo::Template:
1618 case ParsedTemplateInfo::ExplicitSpecialization:
Douglas Gregor0be31a22010-07-02 17:43:08 +00001619 ThisDecl = Actions.ActOnTemplateDeclarator(getCurScope(),
Benjamin Kramercc4c49d2012-08-23 23:38:35 +00001620 *TemplateInfo.TemplateParams,
Douglas Gregor450f00842009-09-25 18:43:00 +00001621 D);
1622 break;
Chad Rosierc1183952012-06-26 22:30:43 +00001623
Douglas Gregor450f00842009-09-25 18:43:00 +00001624 case ParsedTemplateInfo::ExplicitInstantiation: {
Chad Rosierc1183952012-06-26 22:30:43 +00001625 DeclResult ThisRes
Douglas Gregor0be31a22010-07-02 17:43:08 +00001626 = Actions.ActOnExplicitInstantiation(getCurScope(),
Douglas Gregor450f00842009-09-25 18:43:00 +00001627 TemplateInfo.ExternLoc,
1628 TemplateInfo.TemplateLoc,
1629 D);
1630 if (ThisRes.isInvalid()) {
1631 SkipUntil(tok::semi, true, true);
John McCall48871652010-08-21 09:40:31 +00001632 return 0;
Douglas Gregor450f00842009-09-25 18:43:00 +00001633 }
Chad Rosierc1183952012-06-26 22:30:43 +00001634
Douglas Gregor450f00842009-09-25 18:43:00 +00001635 ThisDecl = ThisRes.get();
1636 break;
1637 }
1638 }
Mike Stump11289f42009-09-09 15:08:12 +00001639
Richard Smith30482bc2011-02-20 03:19:35 +00001640 bool TypeContainsAuto =
1641 D.getDeclSpec().getTypeSpecType() == DeclSpec::TST_auto;
1642
Douglas Gregor23996282009-05-12 21:31:51 +00001643 // Parse declarator '=' initializer.
Richard Trieuc64d3232012-01-18 22:54:52 +00001644 // If a '==' or '+=' is found, suggest a fixit to '='.
Richard Trieu4972a6d2012-01-19 22:01:51 +00001645 if (isTokenEqualOrEqualTypo()) {
Douglas Gregor23996282009-05-12 21:31:51 +00001646 ConsumeToken();
Anders Carlsson991285e2010-09-24 21:25:25 +00001647 if (Tok.is(tok::kw_delete)) {
Alexis Hunt5a7fa252011-05-12 06:15:49 +00001648 if (D.isFunctionDeclarator())
1649 Diag(ConsumeToken(), diag::err_default_delete_in_multiple_declaration)
1650 << 1 /* delete */;
1651 else
1652 Diag(ConsumeToken(), diag::err_deleted_non_function);
Alexis Hunt5dafebc2011-05-06 01:42:00 +00001653 } else if (Tok.is(tok::kw_default)) {
Alexis Hunt5a7fa252011-05-12 06:15:49 +00001654 if (D.isFunctionDeclarator())
Sebastian Redl46afb552012-02-11 23:51:21 +00001655 Diag(ConsumeToken(), diag::err_default_delete_in_multiple_declaration)
1656 << 0 /* default */;
Alexis Hunt5a7fa252011-05-12 06:15:49 +00001657 else
1658 Diag(ConsumeToken(), diag::err_default_special_members);
Douglas Gregor23996282009-05-12 21:31:51 +00001659 } else {
David Blaikiebbafb8a2012-03-11 07:00:24 +00001660 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
John McCall1f4ee7b2009-12-19 09:28:58 +00001661 EnterScope(0);
Douglas Gregor0be31a22010-07-02 17:43:08 +00001662 Actions.ActOnCXXEnterDeclInitializer(getCurScope(), ThisDecl);
John McCall1f4ee7b2009-12-19 09:28:58 +00001663 }
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00001664
Douglas Gregor7aa6b222010-05-30 01:49:25 +00001665 if (Tok.is(tok::code_completion)) {
Douglas Gregor0be31a22010-07-02 17:43:08 +00001666 Actions.CodeCompleteInitializer(getCurScope(), ThisDecl);
Peter Collingbourne6b4fdc22012-07-27 12:56:09 +00001667 Actions.FinalizeDeclaration(ThisDecl);
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +00001668 cutOffParsing();
1669 return 0;
Douglas Gregor7aa6b222010-05-30 01:49:25 +00001670 }
Chad Rosierc1183952012-06-26 22:30:43 +00001671
John McCalldadc5752010-08-24 06:29:42 +00001672 ExprResult Init(ParseInitializer());
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00001673
David Blaikiebbafb8a2012-03-11 07:00:24 +00001674 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
Douglas Gregor0be31a22010-07-02 17:43:08 +00001675 Actions.ActOnCXXExitDeclInitializer(getCurScope(), ThisDecl);
John McCall1f4ee7b2009-12-19 09:28:58 +00001676 ExitScope();
1677 }
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00001678
Douglas Gregor23996282009-05-12 21:31:51 +00001679 if (Init.isInvalid()) {
Douglas Gregor604c3022010-03-01 18:27:54 +00001680 SkipUntil(tok::comma, true, true);
1681 Actions.ActOnInitializerError(ThisDecl);
1682 } else
Richard Smith30482bc2011-02-20 03:19:35 +00001683 Actions.AddInitializerToDecl(ThisDecl, Init.take(),
1684 /*DirectInit=*/false, TypeContainsAuto);
Douglas Gregor23996282009-05-12 21:31:51 +00001685 }
1686 } else if (Tok.is(tok::l_paren)) {
1687 // Parse C++ direct initializer: '(' expression-list ')'
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001688 BalancedDelimiterTracker T(*this, tok::l_paren);
1689 T.consumeOpen();
1690
Benjamin Kramerf0623432012-08-23 22:51:59 +00001691 ExprVector Exprs;
Douglas Gregor23996282009-05-12 21:31:51 +00001692 CommaLocsTy CommaLocs;
1693
David Blaikiebbafb8a2012-03-11 07:00:24 +00001694 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
Douglas Gregor613bf102009-12-22 17:47:17 +00001695 EnterScope(0);
Douglas Gregor0be31a22010-07-02 17:43:08 +00001696 Actions.ActOnCXXEnterDeclInitializer(getCurScope(), ThisDecl);
Douglas Gregor613bf102009-12-22 17:47:17 +00001697 }
1698
Douglas Gregor23996282009-05-12 21:31:51 +00001699 if (ParseExpressionList(Exprs, CommaLocs)) {
David Blaikieeae04112012-10-10 23:15:05 +00001700 Actions.ActOnInitializerError(ThisDecl);
Douglas Gregor23996282009-05-12 21:31:51 +00001701 SkipUntil(tok::r_paren);
Douglas Gregor613bf102009-12-22 17:47:17 +00001702
David Blaikiebbafb8a2012-03-11 07:00:24 +00001703 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
Douglas Gregor0be31a22010-07-02 17:43:08 +00001704 Actions.ActOnCXXExitDeclInitializer(getCurScope(), ThisDecl);
Douglas Gregor613bf102009-12-22 17:47:17 +00001705 ExitScope();
1706 }
Douglas Gregor23996282009-05-12 21:31:51 +00001707 } else {
1708 // Match the ')'.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001709 T.consumeClose();
Douglas Gregor23996282009-05-12 21:31:51 +00001710
1711 assert(!Exprs.empty() && Exprs.size()-1 == CommaLocs.size() &&
1712 "Unexpected number of commas!");
Douglas Gregor613bf102009-12-22 17:47:17 +00001713
David Blaikiebbafb8a2012-03-11 07:00:24 +00001714 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
Douglas Gregor0be31a22010-07-02 17:43:08 +00001715 Actions.ActOnCXXExitDeclInitializer(getCurScope(), ThisDecl);
Douglas Gregor613bf102009-12-22 17:47:17 +00001716 ExitScope();
1717 }
1718
Sebastian Redla9351792012-02-11 23:51:47 +00001719 ExprResult Initializer = Actions.ActOnParenListExpr(T.getOpenLocation(),
1720 T.getCloseLocation(),
Benjamin Kramer62b95d82012-08-23 21:35:17 +00001721 Exprs);
Sebastian Redla9351792012-02-11 23:51:47 +00001722 Actions.AddInitializerToDecl(ThisDecl, Initializer.take(),
1723 /*DirectInit=*/true, TypeContainsAuto);
Douglas Gregor23996282009-05-12 21:31:51 +00001724 }
Fariborz Jahanian8a369a82012-07-03 22:54:28 +00001725 } else if (getLangOpts().CPlusPlus0x && Tok.is(tok::l_brace) &&
Fariborz Jahanian8be1ecd2012-07-03 23:22:13 +00001726 (!CurParsedObjCImpl || !D.isFunctionDeclarator())) {
Sebastian Redl3da34892011-06-05 12:23:16 +00001727 // Parse C++0x braced-init-list.
Richard Smith5d164bc2011-10-15 05:09:34 +00001728 Diag(Tok, diag::warn_cxx98_compat_generalized_initializer_lists);
1729
Sebastian Redl3da34892011-06-05 12:23:16 +00001730 if (D.getCXXScopeSpec().isSet()) {
1731 EnterScope(0);
1732 Actions.ActOnCXXEnterDeclInitializer(getCurScope(), ThisDecl);
1733 }
1734
1735 ExprResult Init(ParseBraceInitializer());
1736
1737 if (D.getCXXScopeSpec().isSet()) {
1738 Actions.ActOnCXXExitDeclInitializer(getCurScope(), ThisDecl);
1739 ExitScope();
1740 }
1741
1742 if (Init.isInvalid()) {
1743 Actions.ActOnInitializerError(ThisDecl);
1744 } else
1745 Actions.AddInitializerToDecl(ThisDecl, Init.take(),
1746 /*DirectInit=*/true, TypeContainsAuto);
1747
Douglas Gregor23996282009-05-12 21:31:51 +00001748 } else {
Richard Smith30482bc2011-02-20 03:19:35 +00001749 Actions.ActOnUninitializedDecl(ThisDecl, TypeContainsAuto);
Douglas Gregor23996282009-05-12 21:31:51 +00001750 }
1751
Richard Smithb2bc2e62011-02-21 20:05:19 +00001752 Actions.FinalizeDeclaration(ThisDecl);
1753
Douglas Gregor23996282009-05-12 21:31:51 +00001754 return ThisDecl;
1755}
1756
Chris Lattner1890ac82006-08-13 01:16:23 +00001757/// ParseSpecifierQualifierList
1758/// specifier-qualifier-list:
1759/// type-specifier specifier-qualifier-list[opt]
1760/// type-qualifier specifier-qualifier-list[opt]
Chris Lattnere37e2332006-08-15 04:50:22 +00001761/// [GNU] attributes specifier-qualifier-list[opt]
Chris Lattner1890ac82006-08-13 01:16:23 +00001762///
Richard Smithc5b05522012-03-12 07:56:15 +00001763void Parser::ParseSpecifierQualifierList(DeclSpec &DS, AccessSpecifier AS,
1764 DeclSpecContext DSC) {
Chris Lattner1890ac82006-08-13 01:16:23 +00001765 /// specifier-qualifier-list is a subset of declaration-specifiers. Just
1766 /// parse declaration-specifiers and complain about extra stuff.
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00001767 /// TODO: diagnose attribute-specifiers and alignment-specifiers.
Richard Smithc5b05522012-03-12 07:56:15 +00001768 ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS, DSC);
Mike Stump11289f42009-09-09 15:08:12 +00001769
Chris Lattner1890ac82006-08-13 01:16:23 +00001770 // Validate declspec for type-name.
1771 unsigned Specs = DS.getParsedSpecifiers();
Richard Smith2f07ad52012-05-09 20:55:26 +00001772 if ((DSC == DSC_type_specifier || DSC == DSC_trailing) &&
1773 !DS.hasTypeSpecifier()) {
Richard Smithc5b05522012-03-12 07:56:15 +00001774 Diag(Tok, diag::err_expected_type);
1775 DS.SetTypeSpecError();
1776 } else if (Specs == DeclSpec::PQ_None && !DS.getNumProtocolQualifiers() &&
1777 !DS.hasAttributes()) {
Chris Lattner1890ac82006-08-13 01:16:23 +00001778 Diag(Tok, diag::err_typename_requires_specqual);
Richard Smithc5b05522012-03-12 07:56:15 +00001779 if (!DS.hasTypeSpecifier())
1780 DS.SetTypeSpecError();
1781 }
Mike Stump11289f42009-09-09 15:08:12 +00001782
Chris Lattner1b22eed2006-11-28 05:12:07 +00001783 // Issue diagnostic and remove storage class if present.
Chris Lattner1890ac82006-08-13 01:16:23 +00001784 if (Specs & DeclSpec::PQ_StorageClassSpecifier) {
Chris Lattner1b22eed2006-11-28 05:12:07 +00001785 if (DS.getStorageClassSpecLoc().isValid())
1786 Diag(DS.getStorageClassSpecLoc(),diag::err_typename_invalid_storageclass);
1787 else
1788 Diag(DS.getThreadSpecLoc(), diag::err_typename_invalid_storageclass);
Chris Lattnera925dc62006-11-28 04:33:46 +00001789 DS.ClearStorageClassSpecs();
Chris Lattner1890ac82006-08-13 01:16:23 +00001790 }
Mike Stump11289f42009-09-09 15:08:12 +00001791
Chris Lattner1b22eed2006-11-28 05:12:07 +00001792 // Issue diagnostic and remove function specfier if present.
Chris Lattner1890ac82006-08-13 01:16:23 +00001793 if (Specs & DeclSpec::PQ_FunctionSpecifier) {
Douglas Gregor61956c42008-10-31 09:07:45 +00001794 if (DS.isInlineSpecified())
1795 Diag(DS.getInlineSpecLoc(), diag::err_typename_invalid_functionspec);
1796 if (DS.isVirtualSpecified())
1797 Diag(DS.getVirtualSpecLoc(), diag::err_typename_invalid_functionspec);
1798 if (DS.isExplicitSpecified())
1799 Diag(DS.getExplicitSpecLoc(), diag::err_typename_invalid_functionspec);
Chris Lattnera925dc62006-11-28 04:33:46 +00001800 DS.ClearFunctionSpecs();
Chris Lattner1890ac82006-08-13 01:16:23 +00001801 }
Richard Smithc5b05522012-03-12 07:56:15 +00001802
1803 // Issue diagnostic and remove constexpr specfier if present.
1804 if (DS.isConstexprSpecified()) {
1805 Diag(DS.getConstexprSpecLoc(), diag::err_typename_invalid_constexpr);
1806 DS.ClearConstexprSpec();
1807 }
Chris Lattner1890ac82006-08-13 01:16:23 +00001808}
Chris Lattner53361ac2006-08-10 05:19:57 +00001809
Chris Lattner6cc055a2009-04-12 20:42:31 +00001810/// isValidAfterIdentifierInDeclaratorAfterDeclSpec - Return true if the
1811/// specified token is valid after the identifier in a declarator which
1812/// immediately follows the declspec. For example, these things are valid:
1813///
1814/// int x [ 4]; // direct-declarator
1815/// int x ( int y); // direct-declarator
1816/// int(int x ) // direct-declarator
1817/// int x ; // simple-declaration
1818/// int x = 17; // init-declarator-list
1819/// int x , y; // init-declarator-list
1820/// int x __asm__ ("foo"); // init-declarator-list
Chris Lattnera723ba92009-04-14 21:16:09 +00001821/// int x : 4; // struct-declarator
Chris Lattner2b988c12009-04-12 22:29:43 +00001822/// int x { 5}; // C++'0x unified initializers
Chris Lattner6cc055a2009-04-12 20:42:31 +00001823///
1824/// This is not, because 'x' does not immediately follow the declspec (though
1825/// ')' happens to be valid anyway).
1826/// int (x)
1827///
1828static bool isValidAfterIdentifierInDeclarator(const Token &T) {
1829 return T.is(tok::l_square) || T.is(tok::l_paren) || T.is(tok::r_paren) ||
1830 T.is(tok::semi) || T.is(tok::comma) || T.is(tok::equal) ||
Chris Lattnera723ba92009-04-14 21:16:09 +00001831 T.is(tok::kw_asm) || T.is(tok::l_brace) || T.is(tok::colon);
Chris Lattner6cc055a2009-04-12 20:42:31 +00001832}
1833
Chris Lattner20a0c612009-04-14 21:34:55 +00001834
1835/// ParseImplicitInt - This method is called when we have an non-typename
1836/// identifier in a declspec (which normally terminates the decl spec) when
1837/// the declspec has no type specifier. In this case, the declspec is either
1838/// malformed or is "implicit int" (in K&R and C89).
1839///
1840/// This method handles diagnosing this prettily and returns false if the
1841/// declspec is done being processed. If it recovers and thinks there may be
1842/// other pieces of declspec after it, it returns true.
1843///
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00001844bool Parser::ParseImplicitInt(DeclSpec &DS, CXXScopeSpec *SS,
Douglas Gregor1b57ff32009-05-12 23:25:50 +00001845 const ParsedTemplateInfo &TemplateInfo,
Michael Han9407e502012-11-26 22:54:45 +00001846 AccessSpecifier AS, DeclSpecContext DSC,
1847 ParsedAttributesWithRange &Attrs) {
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00001848 assert(Tok.is(tok::identifier) && "should have identifier");
Mike Stump11289f42009-09-09 15:08:12 +00001849
Chris Lattner20a0c612009-04-14 21:34:55 +00001850 SourceLocation Loc = Tok.getLocation();
1851 // If we see an identifier that is not a type name, we normally would
1852 // parse it as the identifer being declared. However, when a typename
1853 // is typo'd or the definition is not included, this will incorrectly
1854 // parse the typename as the identifier name and fall over misparsing
1855 // later parts of the diagnostic.
1856 //
1857 // As such, we try to do some look-ahead in cases where this would
1858 // otherwise be an "implicit-int" case to see if this is invalid. For
1859 // example: "static foo_t x = 4;" In this case, if we parsed foo_t as
1860 // an identifier with implicit int, we'd get a parse error because the
1861 // next token is obviously invalid for a type. Parse these as a case
1862 // with an invalid type specifier.
1863 assert(!DS.hasTypeSpecifier() && "Type specifier checked above");
Mike Stump11289f42009-09-09 15:08:12 +00001864
Chris Lattner20a0c612009-04-14 21:34:55 +00001865 // Since we know that this either implicit int (which is rare) or an
Richard Smitha952ebb2012-05-15 21:01:51 +00001866 // error, do lookahead to try to do better recovery. This never applies
1867 // within a type specifier. Outside of C++, we allow this even if the
1868 // language doesn't "officially" support implicit int -- we support
1869 // implicit int as an extension in C99 and C11. Allegedly, MS also
1870 // supports implicit int in C++ mode.
Richard Smith2f07ad52012-05-09 20:55:26 +00001871 if (DSC != DSC_type_specifier && DSC != DSC_trailing &&
Richard Smitha952ebb2012-05-15 21:01:51 +00001872 (!getLangOpts().CPlusPlus || getLangOpts().MicrosoftExt) &&
Richard Smithc5b05522012-03-12 07:56:15 +00001873 isValidAfterIdentifierInDeclarator(NextToken())) {
Chris Lattner20a0c612009-04-14 21:34:55 +00001874 // If this token is valid for implicit int, e.g. "static x = 4", then
1875 // we just avoid eating the identifier, so it will be parsed as the
1876 // identifier in the declarator.
1877 return false;
1878 }
Mike Stump11289f42009-09-09 15:08:12 +00001879
Richard Smitha952ebb2012-05-15 21:01:51 +00001880 if (getLangOpts().CPlusPlus &&
1881 DS.getStorageClassSpec() == DeclSpec::SCS_auto) {
1882 // Don't require a type specifier if we have the 'auto' storage class
1883 // specifier in C++98 -- we'll promote it to a type specifier.
1884 return false;
1885 }
1886
Chris Lattner20a0c612009-04-14 21:34:55 +00001887 // Otherwise, if we don't consume this token, we are going to emit an
1888 // error anyway. Try to recover from various common problems. Check
1889 // to see if this was a reference to a tag name without a tag specified.
1890 // This is a common problem in C (saying 'foo' instead of 'struct foo').
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00001891 //
1892 // C++ doesn't need this, and isTagName doesn't take SS.
1893 if (SS == 0) {
Argyrios Kyrtzidis1f329402011-04-21 17:29:47 +00001894 const char *TagName = 0, *FixitTagName = 0;
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00001895 tok::TokenKind TagKind = tok::unknown;
Mike Stump11289f42009-09-09 15:08:12 +00001896
Douglas Gregor0be31a22010-07-02 17:43:08 +00001897 switch (Actions.isTagName(*Tok.getIdentifierInfo(), getCurScope())) {
Chris Lattner20a0c612009-04-14 21:34:55 +00001898 default: break;
Argyrios Kyrtzidis1f329402011-04-21 17:29:47 +00001899 case DeclSpec::TST_enum:
1900 TagName="enum" ; FixitTagName = "enum " ; TagKind=tok::kw_enum ;break;
1901 case DeclSpec::TST_union:
1902 TagName="union" ; FixitTagName = "union " ;TagKind=tok::kw_union ;break;
1903 case DeclSpec::TST_struct:
1904 TagName="struct"; FixitTagName = "struct ";TagKind=tok::kw_struct;break;
Joao Matosdc86f942012-08-31 18:45:21 +00001905 case DeclSpec::TST_interface:
1906 TagName="__interface"; FixitTagName = "__interface ";
1907 TagKind=tok::kw___interface;break;
Argyrios Kyrtzidis1f329402011-04-21 17:29:47 +00001908 case DeclSpec::TST_class:
1909 TagName="class" ; FixitTagName = "class " ;TagKind=tok::kw_class ;break;
Chris Lattner20a0c612009-04-14 21:34:55 +00001910 }
Mike Stump11289f42009-09-09 15:08:12 +00001911
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00001912 if (TagName) {
Kaelyn Uhrain031643e2012-04-26 23:36:17 +00001913 IdentifierInfo *TokenName = Tok.getIdentifierInfo();
1914 LookupResult R(Actions, TokenName, SourceLocation(),
1915 Sema::LookupOrdinaryName);
1916
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00001917 Diag(Loc, diag::err_use_of_tag_name_without_tag)
Kaelyn Uhrain031643e2012-04-26 23:36:17 +00001918 << TokenName << TagName << getLangOpts().CPlusPlus
1919 << FixItHint::CreateInsertion(Tok.getLocation(), FixitTagName);
1920
1921 if (Actions.LookupParsedName(R, getCurScope(), SS)) {
1922 for (LookupResult::iterator I = R.begin(), IEnd = R.end();
1923 I != IEnd; ++I)
Kaelyn Uhrain3fe3f852012-04-27 18:26:49 +00001924 Diag((*I)->getLocation(), diag::note_decl_hiding_tag_type)
Kaelyn Uhrain031643e2012-04-26 23:36:17 +00001925 << TokenName << TagName;
1926 }
Mike Stump11289f42009-09-09 15:08:12 +00001927
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00001928 // Parse this as a tag as if the missing tag were present.
1929 if (TagKind == tok::kw_enum)
Richard Smithc5b05522012-03-12 07:56:15 +00001930 ParseEnumSpecifier(Loc, DS, TemplateInfo, AS, DSC_normal);
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00001931 else
Richard Smithc5b05522012-03-12 07:56:15 +00001932 ParseClassSpecifier(TagKind, Loc, DS, TemplateInfo, AS,
Michael Han9407e502012-11-26 22:54:45 +00001933 /*EnteringContext*/ false, DSC_normal, Attrs);
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00001934 return true;
1935 }
Chris Lattner20a0c612009-04-14 21:34:55 +00001936 }
Mike Stump11289f42009-09-09 15:08:12 +00001937
Richard Smithfe904f02012-05-15 21:29:55 +00001938 // Determine whether this identifier could plausibly be the name of something
Richard Smithedd124e2012-05-15 21:42:17 +00001939 // being declared (with a missing type).
Richard Smithfe904f02012-05-15 21:29:55 +00001940 if (DSC != DSC_type_specifier && DSC != DSC_trailing &&
1941 (!SS || DSC == DSC_top_level || DSC == DSC_class)) {
Richard Smitha952ebb2012-05-15 21:01:51 +00001942 // Look ahead to the next token to try to figure out what this declaration
1943 // was supposed to be.
1944 switch (NextToken().getKind()) {
1945 case tok::comma:
1946 case tok::equal:
1947 case tok::kw_asm:
1948 case tok::l_brace:
1949 case tok::l_square:
1950 case tok::semi:
1951 // This looks like a variable declaration. The type is probably missing.
1952 // We're done parsing decl-specifiers.
1953 return false;
1954
1955 case tok::l_paren: {
1956 // static x(4); // 'x' is not a type
1957 // x(int n); // 'x' is not a type
1958 // x (*p)[]; // 'x' is a type
1959 //
1960 // Since we're in an error case (or the rare 'implicit int in C++' MS
1961 // extension), we can afford to perform a tentative parse to determine
1962 // which case we're in.
1963 TentativeParsingAction PA(*this);
1964 ConsumeToken();
1965 TPResult TPR = TryParseDeclarator(/*mayBeAbstract*/false);
1966 PA.Revert();
1967 if (TPR == TPResult::False())
1968 return false;
1969 // The identifier is followed by a parenthesized declarator.
1970 // It's supposed to be a type.
1971 break;
1972 }
1973
1974 default:
1975 // This is probably supposed to be a type. This includes cases like:
1976 // int f(itn);
1977 // struct S { unsinged : 4; };
1978 break;
1979 }
1980 }
1981
Chad Rosierc1183952012-06-26 22:30:43 +00001982 // This is almost certainly an invalid type name. Let the action emit a
Douglas Gregor15e56022009-10-13 23:27:22 +00001983 // diagnostic and attempt to recover.
John McCallba7bf592010-08-24 05:47:05 +00001984 ParsedType T;
Kaelyn Uhrainb5b17fe2012-06-15 23:45:58 +00001985 IdentifierInfo *II = Tok.getIdentifierInfo();
1986 if (Actions.DiagnoseUnknownTypeName(II, Loc, getCurScope(), SS, T)) {
Douglas Gregor15e56022009-10-13 23:27:22 +00001987 // The action emitted a diagnostic, so we don't have to.
1988 if (T) {
1989 // The action has suggested that the type T could be used. Set that as
1990 // the type in the declaration specifiers, consume the would-be type
1991 // name token, and we're done.
1992 const char *PrevSpec;
1993 unsigned DiagID;
John McCallba7bf592010-08-24 05:47:05 +00001994 DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec, DiagID, T);
Douglas Gregor15e56022009-10-13 23:27:22 +00001995 DS.SetRangeEnd(Tok.getLocation());
1996 ConsumeToken();
Kaelyn Uhrainb5b17fe2012-06-15 23:45:58 +00001997 // There may be other declaration specifiers after this.
1998 return true;
1999 } else if (II != Tok.getIdentifierInfo()) {
2000 // If no type was suggested, the correction is to a keyword
2001 Tok.setKind(II->getTokenID());
Douglas Gregor15e56022009-10-13 23:27:22 +00002002 // There may be other declaration specifiers after this.
2003 return true;
2004 }
Chad Rosierc1183952012-06-26 22:30:43 +00002005
Douglas Gregor15e56022009-10-13 23:27:22 +00002006 // Fall through; the action had no suggestion for us.
2007 } else {
2008 // The action did not emit a diagnostic, so emit one now.
2009 SourceRange R;
2010 if (SS) R = SS->getRange();
2011 Diag(Loc, diag::err_unknown_typename) << Tok.getIdentifierInfo() << R;
2012 }
Mike Stump11289f42009-09-09 15:08:12 +00002013
Douglas Gregor15e56022009-10-13 23:27:22 +00002014 // Mark this as an error.
Richard Smithc5b05522012-03-12 07:56:15 +00002015 DS.SetTypeSpecError();
Chris Lattner20a0c612009-04-14 21:34:55 +00002016 DS.SetRangeEnd(Tok.getLocation());
2017 ConsumeToken();
Mike Stump11289f42009-09-09 15:08:12 +00002018
Chris Lattner20a0c612009-04-14 21:34:55 +00002019 // TODO: Could inject an invalid typedef decl in an enclosing scope to
2020 // avoid rippling error messages on subsequent uses of the same type,
2021 // could be useful if #include was forgotten.
2022 return false;
2023}
2024
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002025/// \brief Determine the declaration specifier context from the declarator
2026/// context.
2027///
2028/// \param Context the declarator context, which is one of the
2029/// Declarator::TheContext enumerator values.
Chad Rosierc1183952012-06-26 22:30:43 +00002030Parser::DeclSpecContext
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002031Parser::getDeclSpecContextFromDeclaratorContext(unsigned Context) {
2032 if (Context == Declarator::MemberContext)
2033 return DSC_class;
2034 if (Context == Declarator::FileContext)
2035 return DSC_top_level;
Richard Smith62dad822012-03-15 01:02:11 +00002036 if (Context == Declarator::TrailingReturnContext)
2037 return DSC_trailing;
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002038 return DSC_normal;
2039}
2040
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002041/// ParseAlignArgument - Parse the argument to an alignment-specifier.
2042///
2043/// FIXME: Simply returns an alignof() expression if the argument is a
2044/// type. Ideally, the type should be propagated directly into Sema.
2045///
Benjamin Kramere56f3932011-12-23 17:00:35 +00002046/// [C11] type-id
2047/// [C11] constant-expression
Peter Collingbourne7d33cd32011-10-23 20:07:52 +00002048/// [C++0x] type-id ...[opt]
2049/// [C++0x] assignment-expression ...[opt]
2050ExprResult Parser::ParseAlignArgument(SourceLocation Start,
2051 SourceLocation &EllipsisLoc) {
2052 ExprResult ER;
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002053 if (isTypeIdInParens()) {
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002054 SourceLocation TypeLoc = Tok.getLocation();
2055 ParsedType Ty = ParseTypeName().get();
2056 SourceRange TypeRange(Start, Tok.getLocation());
Peter Collingbourne7d33cd32011-10-23 20:07:52 +00002057 ER = Actions.ActOnUnaryExprOrTypeTraitExpr(TypeLoc, UETT_AlignOf, true,
2058 Ty.getAsOpaquePtr(), TypeRange);
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002059 } else
Peter Collingbourne7d33cd32011-10-23 20:07:52 +00002060 ER = ParseConstantExpression();
2061
David Blaikiebbafb8a2012-03-11 07:00:24 +00002062 if (getLangOpts().CPlusPlus0x && Tok.is(tok::ellipsis))
Peter Collingbourneccbcce02011-10-24 17:56:00 +00002063 EllipsisLoc = ConsumeToken();
Peter Collingbourne7d33cd32011-10-23 20:07:52 +00002064
2065 return ER;
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002066}
2067
2068/// ParseAlignmentSpecifier - Parse an alignment-specifier, and add the
2069/// attribute to Attrs.
2070///
2071/// alignment-specifier:
Benjamin Kramere56f3932011-12-23 17:00:35 +00002072/// [C11] '_Alignas' '(' type-id ')'
2073/// [C11] '_Alignas' '(' constant-expression ')'
Peter Collingbourne7d33cd32011-10-23 20:07:52 +00002074/// [C++0x] 'alignas' '(' type-id ...[opt] ')'
2075/// [C++0x] 'alignas' '(' assignment-expression ...[opt] ')'
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002076void Parser::ParseAlignmentSpecifier(ParsedAttributes &Attrs,
2077 SourceLocation *endLoc) {
2078 assert((Tok.is(tok::kw_alignas) || Tok.is(tok::kw__Alignas)) &&
2079 "Not an alignment-specifier!");
2080
2081 SourceLocation KWLoc = Tok.getLocation();
2082 ConsumeToken();
2083
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002084 BalancedDelimiterTracker T(*this, tok::l_paren);
2085 if (T.expectAndConsume(diag::err_expected_lparen))
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002086 return;
2087
Peter Collingbourne7d33cd32011-10-23 20:07:52 +00002088 SourceLocation EllipsisLoc;
2089 ExprResult ArgExpr = ParseAlignArgument(T.getOpenLocation(), EllipsisLoc);
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002090 if (ArgExpr.isInvalid()) {
2091 SkipUntil(tok::r_paren);
2092 return;
2093 }
2094
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002095 T.consumeClose();
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002096 if (endLoc)
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002097 *endLoc = T.getCloseLocation();
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002098
Peter Collingbourne7d33cd32011-10-23 20:07:52 +00002099 // FIXME: Handle pack-expansions here.
2100 if (EllipsisLoc.isValid()) {
2101 Diag(EllipsisLoc, diag::err_alignas_pack_exp_unsupported);
2102 return;
2103 }
2104
Benjamin Kramerf0623432012-08-23 22:51:59 +00002105 ExprVector ArgExprs;
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002106 ArgExprs.push_back(ArgExpr.release());
Alexis Hunt3bc72c12012-06-19 23:57:03 +00002107 // FIXME: This should not be GNU, but we since the attribute used is
2108 // based on the spelling, and there is no true spelling for
2109 // C++11 attributes, this isn't accepted.
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002110 Attrs.addNew(PP.getIdentifierInfo("aligned"), KWLoc, 0, KWLoc,
Benjamin Kramerf0623432012-08-23 22:51:59 +00002111 0, T.getOpenLocation(), ArgExprs.data(), 1,
Alexis Hunt3bc72c12012-06-19 23:57:03 +00002112 AttributeList::AS_GNU);
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002113}
2114
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00002115/// ParseDeclarationSpecifiers
2116/// declaration-specifiers: [C99 6.7]
Chris Lattner3b561a32006-08-13 00:12:11 +00002117/// storage-class-specifier declaration-specifiers[opt]
2118/// type-specifier declaration-specifiers[opt]
Chris Lattner3b561a32006-08-13 00:12:11 +00002119/// [C99] function-specifier declaration-specifiers[opt]
Benjamin Kramere56f3932011-12-23 17:00:35 +00002120/// [C11] alignment-specifier declaration-specifiers[opt]
Chris Lattnere37e2332006-08-15 04:50:22 +00002121/// [GNU] attributes declaration-specifiers[opt]
Douglas Gregor26701a42011-09-09 02:06:17 +00002122/// [Clang] '__module_private__' declaration-specifiers[opt]
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00002123///
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002124/// storage-class-specifier: [C99 6.7.1]
Chris Lattnerda48a8e2006-08-04 05:25:55 +00002125/// 'typedef'
2126/// 'extern'
2127/// 'static'
2128/// 'auto'
2129/// 'register'
Sebastian Redlccdfaba2008-11-14 23:42:31 +00002130/// [C++] 'mutable'
Chris Lattnerda48a8e2006-08-04 05:25:55 +00002131/// [GNU] '__thread'
Chris Lattnerb9093cd2006-08-04 04:39:53 +00002132/// function-specifier: [C99 6.7.4]
Chris Lattner3b561a32006-08-13 00:12:11 +00002133/// [C99] 'inline'
Douglas Gregor61956c42008-10-31 09:07:45 +00002134/// [C++] 'virtual'
2135/// [C++] 'explicit'
Peter Collingbourne7ce13fc2011-02-14 01:42:53 +00002136/// [OpenCL] '__kernel'
Anders Carlssoncd8db412009-05-06 04:46:28 +00002137/// 'friend': [C++ dcl.friend]
Sebastian Redl39c2a8b2009-11-05 15:47:02 +00002138/// 'constexpr': [C++0x dcl.constexpr]
Anders Carlssoncd8db412009-05-06 04:46:28 +00002139
Chris Lattnerb9093cd2006-08-04 04:39:53 +00002140///
Douglas Gregorb9bd8a92008-12-24 02:52:09 +00002141void Parser::ParseDeclarationSpecifiers(DeclSpec &DS,
Douglas Gregor1b57ff32009-05-12 23:25:50 +00002142 const ParsedTemplateInfo &TemplateInfo,
John McCall07e91c02009-08-06 02:15:43 +00002143 AccessSpecifier AS,
DeLesley Hutchinsbd2ee132012-03-02 22:12:59 +00002144 DeclSpecContext DSContext,
2145 LateParsedAttrList *LateAttrs) {
Douglas Gregor0e7dde52011-04-24 05:37:28 +00002146 if (DS.getSourceRange().isInvalid()) {
2147 DS.SetRangeStart(Tok.getLocation());
2148 DS.SetRangeEnd(Tok.getLocation());
2149 }
Chad Rosierc1183952012-06-26 22:30:43 +00002150
Douglas Gregordf593fb2011-11-07 17:33:42 +00002151 bool EnteringContext = (DSContext == DSC_class || DSContext == DSC_top_level);
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00002152 bool AttrsLastTime = false;
2153 ParsedAttributesWithRange attrs(AttrFactory);
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00002154 while (1) {
John McCall49bfce42009-08-03 20:12:06 +00002155 bool isInvalid = false;
Chris Lattnerb9093cd2006-08-04 04:39:53 +00002156 const char *PrevSpec = 0;
John McCall49bfce42009-08-03 20:12:06 +00002157 unsigned DiagID = 0;
2158
Chris Lattner4d8f8732006-11-28 05:05:08 +00002159 SourceLocation Loc = Tok.getLocation();
Douglas Gregor450c75a2008-11-07 15:42:26 +00002160
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00002161 switch (Tok.getKind()) {
Mike Stump11289f42009-09-09 15:08:12 +00002162 default:
Chris Lattner0974b232008-07-26 00:20:22 +00002163 DoneWithDeclSpec:
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00002164 if (!AttrsLastTime)
2165 ProhibitAttributes(attrs);
Michael Han64536a62012-11-06 19:34:54 +00002166 else {
2167 // Reject C++11 attributes that appertain to decl specifiers as
2168 // we don't support any C++11 attributes that appertain to decl
2169 // specifiers. This also conforms to what g++ 4.8 is doing.
2170 ProhibitCXX11Attributes(attrs);
2171
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00002172 DS.takeAttributesFrom(attrs);
Michael Han64536a62012-11-06 19:34:54 +00002173 }
Peter Collingbourne70188b32011-09-29 18:03:57 +00002174
Chris Lattnerb9093cd2006-08-04 04:39:53 +00002175 // If this is not a declaration specifier token, we're done reading decl
2176 // specifiers. First verify that DeclSpec's are consistent.
Douglas Gregore3e01a22009-04-01 22:41:11 +00002177 DS.Finish(Diags, PP);
Chris Lattnerb9093cd2006-08-04 04:39:53 +00002178 return;
Mike Stump11289f42009-09-09 15:08:12 +00002179
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00002180 case tok::l_square:
2181 case tok::kw_alignas:
2182 if (!isCXX11AttributeSpecifier())
2183 goto DoneWithDeclSpec;
2184
2185 ProhibitAttributes(attrs);
2186 // FIXME: It would be good to recover by accepting the attributes,
2187 // but attempting to do that now would cause serious
2188 // madness in terms of diagnostics.
2189 attrs.clear();
2190 attrs.Range = SourceRange();
2191
2192 ParseCXX11Attributes(attrs);
2193 AttrsLastTime = true;
Chad Rosierc1183952012-06-26 22:30:43 +00002194 continue;
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00002195
Douglas Gregorc49f5b22010-08-23 18:23:48 +00002196 case tok::code_completion: {
John McCallfaf5fb42010-08-26 23:41:50 +00002197 Sema::ParserCompletionContext CCC = Sema::PCC_Namespace;
Douglas Gregorc49f5b22010-08-23 18:23:48 +00002198 if (DS.hasTypeSpecifier()) {
2199 bool AllowNonIdentifiers
2200 = (getCurScope()->getFlags() & (Scope::ControlScope |
2201 Scope::BlockScope |
2202 Scope::TemplateParamScope |
2203 Scope::FunctionPrototypeScope |
2204 Scope::AtCatchScope)) == 0;
2205 bool AllowNestedNameSpecifiers
Chad Rosierc1183952012-06-26 22:30:43 +00002206 = DSContext == DSC_top_level ||
Douglas Gregorc49f5b22010-08-23 18:23:48 +00002207 (DSContext == DSC_class && DS.isFriendSpecified());
2208
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00002209 Actions.CodeCompleteDeclSpec(getCurScope(), DS,
Chad Rosierc1183952012-06-26 22:30:43 +00002210 AllowNonIdentifiers,
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00002211 AllowNestedNameSpecifiers);
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +00002212 return cutOffParsing();
Chad Rosierc1183952012-06-26 22:30:43 +00002213 }
2214
Douglas Gregor80039242011-02-15 20:33:25 +00002215 if (getCurScope()->getFnParent() || getCurScope()->getBlockParent())
2216 CCC = Sema::PCC_LocalDeclarationSpecifiers;
2217 else if (TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate)
Chad Rosierc1183952012-06-26 22:30:43 +00002218 CCC = DSContext == DSC_class? Sema::PCC_MemberTemplate
John McCallfaf5fb42010-08-26 23:41:50 +00002219 : Sema::PCC_Template;
Douglas Gregorc49f5b22010-08-23 18:23:48 +00002220 else if (DSContext == DSC_class)
John McCallfaf5fb42010-08-26 23:41:50 +00002221 CCC = Sema::PCC_Class;
Argyrios Kyrtzidisb6c6a582012-02-07 16:50:53 +00002222 else if (CurParsedObjCImpl)
John McCallfaf5fb42010-08-26 23:41:50 +00002223 CCC = Sema::PCC_ObjCImplementation;
Chad Rosierc1183952012-06-26 22:30:43 +00002224
Douglas Gregorc49f5b22010-08-23 18:23:48 +00002225 Actions.CodeCompleteOrdinaryName(getCurScope(), CCC);
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +00002226 return cutOffParsing();
Douglas Gregorc49f5b22010-08-23 18:23:48 +00002227 }
2228
Chris Lattnerbd31aa32009-01-05 00:07:25 +00002229 case tok::coloncolon: // ::foo::bar
John McCall1f476a12010-02-26 08:45:28 +00002230 // C++ scope specifier. Annotate and loop, or bail out on error.
2231 if (TryAnnotateCXXScopeToken(true)) {
2232 if (!DS.hasTypeSpecifier())
2233 DS.SetTypeSpecError();
2234 goto DoneWithDeclSpec;
2235 }
John McCall8bc2a702010-03-01 18:20:46 +00002236 if (Tok.is(tok::coloncolon)) // ::new or ::delete
2237 goto DoneWithDeclSpec;
John McCall1f476a12010-02-26 08:45:28 +00002238 continue;
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00002239
2240 case tok::annot_cxxscope: {
Richard Smith3092a3b2012-05-09 18:56:43 +00002241 if (DS.hasTypeSpecifier() || DS.isTypeAltiVecVector())
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00002242 goto DoneWithDeclSpec;
2243
John McCall9dab4e62009-12-12 11:40:51 +00002244 CXXScopeSpec SS;
Douglas Gregor869ad452011-02-24 17:54:50 +00002245 Actions.RestoreNestedNameSpecifierAnnotation(Tok.getAnnotationValue(),
2246 Tok.getAnnotationRange(),
2247 SS);
John McCall9dab4e62009-12-12 11:40:51 +00002248
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00002249 // We are looking for a qualified typename.
Douglas Gregor167fa622009-03-25 15:40:00 +00002250 Token Next = NextToken();
Mike Stump11289f42009-09-09 15:08:12 +00002251 if (Next.is(tok::annot_template_id) &&
Douglas Gregor167fa622009-03-25 15:40:00 +00002252 static_cast<TemplateIdAnnotation *>(Next.getAnnotationValue())
Douglas Gregorb67535d2009-03-31 00:43:58 +00002253 ->Kind == TNK_Type_template) {
Douglas Gregor167fa622009-03-25 15:40:00 +00002254 // We have a qualified template-id, e.g., N::A<int>
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002255
2256 // C++ [class.qual]p2:
2257 // In a lookup in which the constructor is an acceptable lookup
2258 // result and the nested-name-specifier nominates a class C:
2259 //
2260 // - if the name specified after the
2261 // nested-name-specifier, when looked up in C, is the
2262 // injected-class-name of C (Clause 9), or
2263 //
2264 // - if the name specified after the nested-name-specifier
2265 // is the same as the identifier or the
2266 // simple-template-id's template-name in the last
2267 // component of the nested-name-specifier,
2268 //
2269 // the name is instead considered to name the constructor of
2270 // class C.
Chad Rosierc1183952012-06-26 22:30:43 +00002271 //
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002272 // Thus, if the template-name is actually the constructor
2273 // name, then the code is ill-formed; this interpretation is
Chad Rosierc1183952012-06-26 22:30:43 +00002274 // reinforced by the NAD status of core issue 635.
Argyrios Kyrtzidisc0c5dd22011-06-22 06:09:49 +00002275 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Next);
John McCall84821e72010-04-13 06:39:49 +00002276 if ((DSContext == DSC_top_level ||
2277 (DSContext == DSC_class && DS.isFriendSpecified())) &&
2278 TemplateId->Name &&
Douglas Gregor0be31a22010-07-02 17:43:08 +00002279 Actions.isCurrentClassName(*TemplateId->Name, getCurScope(), &SS)) {
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002280 if (isConstructorDeclarator()) {
2281 // The user meant this to be an out-of-line constructor
2282 // definition, but template arguments are not allowed
2283 // there. Just allow this as a constructor; we'll
2284 // complain about it later.
2285 goto DoneWithDeclSpec;
2286 }
2287
2288 // The user meant this to name a type, but it actually names
2289 // a constructor with some extraneous template
2290 // arguments. Complain, then parse it as a type as the user
2291 // intended.
2292 Diag(TemplateId->TemplateNameLoc,
2293 diag::err_out_of_line_template_id_names_constructor)
2294 << TemplateId->Name;
2295 }
2296
John McCall9dab4e62009-12-12 11:40:51 +00002297 DS.getTypeSpecScope() = SS;
2298 ConsumeToken(); // The C++ scope.
Mike Stump11289f42009-09-09 15:08:12 +00002299 assert(Tok.is(tok::annot_template_id) &&
Douglas Gregor167fa622009-03-25 15:40:00 +00002300 "ParseOptionalCXXScopeSpecifier not working");
Douglas Gregore7c20652011-03-02 00:47:37 +00002301 AnnotateTemplateIdTokenAsType();
Douglas Gregor167fa622009-03-25 15:40:00 +00002302 continue;
2303 }
2304
Douglas Gregorc5790df2009-09-28 07:26:33 +00002305 if (Next.is(tok::annot_typename)) {
John McCall9dab4e62009-12-12 11:40:51 +00002306 DS.getTypeSpecScope() = SS;
2307 ConsumeToken(); // The C++ scope.
John McCallba7bf592010-08-24 05:47:05 +00002308 if (Tok.getAnnotationValue()) {
2309 ParsedType T = getTypeAnnotation(Tok);
Nico Weber77430342010-11-22 10:30:56 +00002310 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename,
Chad Rosierc1183952012-06-26 22:30:43 +00002311 Tok.getAnnotationEndLoc(),
John McCallba7bf592010-08-24 05:47:05 +00002312 PrevSpec, DiagID, T);
Richard Smithda837032012-09-14 18:27:01 +00002313 if (isInvalid)
2314 break;
John McCallba7bf592010-08-24 05:47:05 +00002315 }
Douglas Gregorc5790df2009-09-28 07:26:33 +00002316 else
2317 DS.SetTypeSpecError();
2318 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
2319 ConsumeToken(); // The typename
2320 }
2321
Douglas Gregor167fa622009-03-25 15:40:00 +00002322 if (Next.isNot(tok::identifier))
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00002323 goto DoneWithDeclSpec;
2324
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002325 // If we're in a context where the identifier could be a class name,
2326 // check whether this is a constructor declaration.
John McCall84821e72010-04-13 06:39:49 +00002327 if ((DSContext == DSC_top_level ||
2328 (DSContext == DSC_class && DS.isFriendSpecified())) &&
Chad Rosierc1183952012-06-26 22:30:43 +00002329 Actions.isCurrentClassName(*Next.getIdentifierInfo(), getCurScope(),
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002330 &SS)) {
2331 if (isConstructorDeclarator())
2332 goto DoneWithDeclSpec;
2333
2334 // As noted in C++ [class.qual]p2 (cited above), when the name
2335 // of the class is qualified in a context where it could name
2336 // a constructor, its a constructor name. However, we've
2337 // looked at the declarator, and the user probably meant this
2338 // to be a type. Complain that it isn't supposed to be treated
2339 // as a type, then proceed to parse it as a type.
2340 Diag(Next.getLocation(), diag::err_out_of_line_type_names_constructor)
2341 << Next.getIdentifierInfo();
2342 }
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00002343
John McCallba7bf592010-08-24 05:47:05 +00002344 ParsedType TypeRep = Actions.getTypeName(*Next.getIdentifierInfo(),
2345 Next.getLocation(),
Douglas Gregor844cb502011-03-01 18:12:44 +00002346 getCurScope(), &SS,
2347 false, false, ParsedType(),
Abramo Bagnara4244b432012-01-27 08:46:19 +00002348 /*IsCtorOrDtorName=*/false,
Douglas Gregor844cb502011-03-01 18:12:44 +00002349 /*NonTrivialSourceInfo=*/true);
Douglas Gregor8bf42052009-02-09 18:46:07 +00002350
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00002351 // If the referenced identifier is not a type, then this declspec is
2352 // erroneous: We already checked about that it has no type specifier, and
2353 // C++ doesn't have implicit int. Diagnose it as a typo w.r.t. to the
Mike Stump11289f42009-09-09 15:08:12 +00002354 // typename.
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00002355 if (TypeRep == 0) {
2356 ConsumeToken(); // Eat the scope spec so the identifier is current.
Michael Han9407e502012-11-26 22:54:45 +00002357 ParsedAttributesWithRange Attrs(AttrFactory);
2358 if (ParseImplicitInt(DS, &SS, TemplateInfo, AS, DSContext, Attrs)) {
2359 if (!Attrs.empty()) {
2360 AttrsLastTime = true;
2361 attrs.takeAllFrom(Attrs);
2362 }
2363 continue;
2364 }
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00002365 goto DoneWithDeclSpec;
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00002366 }
Mike Stump11289f42009-09-09 15:08:12 +00002367
John McCall9dab4e62009-12-12 11:40:51 +00002368 DS.getTypeSpecScope() = SS;
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00002369 ConsumeToken(); // The C++ scope.
2370
Douglas Gregor9817f4a2009-02-09 15:09:02 +00002371 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
John McCall49bfce42009-08-03 20:12:06 +00002372 DiagID, TypeRep);
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00002373 if (isInvalid)
2374 break;
Mike Stump11289f42009-09-09 15:08:12 +00002375
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00002376 DS.SetRangeEnd(Tok.getLocation());
2377 ConsumeToken(); // The typename.
2378
2379 continue;
2380 }
Mike Stump11289f42009-09-09 15:08:12 +00002381
Chris Lattnere387d9e2009-01-21 19:48:37 +00002382 case tok::annot_typename: {
John McCallba7bf592010-08-24 05:47:05 +00002383 if (Tok.getAnnotationValue()) {
2384 ParsedType T = getTypeAnnotation(Tok);
Nico Weber7f8bb362010-11-22 12:50:03 +00002385 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
John McCallba7bf592010-08-24 05:47:05 +00002386 DiagID, T);
2387 } else
Douglas Gregorfe3d7d02009-04-01 21:51:26 +00002388 DS.SetTypeSpecError();
Chad Rosierc1183952012-06-26 22:30:43 +00002389
Chris Lattner005fc1b2010-04-05 18:18:31 +00002390 if (isInvalid)
2391 break;
2392
Chris Lattnere387d9e2009-01-21 19:48:37 +00002393 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
2394 ConsumeToken(); // The typename
Mike Stump11289f42009-09-09 15:08:12 +00002395
Chris Lattnere387d9e2009-01-21 19:48:37 +00002396 // Objective-C supports syntax of the form 'id<proto1,proto2>' where 'id'
2397 // is a specific typedef and 'itf<proto1,proto2>' where 'itf' is an
Chad Rosierc1183952012-06-26 22:30:43 +00002398 // Objective-C interface.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002399 if (Tok.is(tok::less) && getLangOpts().ObjC1)
Douglas Gregor06e41ae2010-10-21 23:17:00 +00002400 ParseObjCProtocolQualifiers(DS);
Chad Rosierc1183952012-06-26 22:30:43 +00002401
Chris Lattnere387d9e2009-01-21 19:48:37 +00002402 continue;
2403 }
Mike Stump11289f42009-09-09 15:08:12 +00002404
Douglas Gregor06873092011-04-28 15:48:45 +00002405 case tok::kw___is_signed:
2406 // GNU libstdc++ 4.4 uses __is_signed as an identifier, but Clang
2407 // typically treats it as a trait. If we see __is_signed as it appears
2408 // in libstdc++, e.g.,
2409 //
2410 // static const bool __is_signed;
2411 //
2412 // then treat __is_signed as an identifier rather than as a keyword.
2413 if (DS.getTypeSpecType() == TST_bool &&
2414 DS.getTypeQualifiers() == DeclSpec::TQ_const &&
2415 DS.getStorageClassSpec() == DeclSpec::SCS_static) {
2416 Tok.getIdentifierInfo()->RevertTokenIDToIdentifier();
2417 Tok.setKind(tok::identifier);
2418 }
2419
2420 // We're done with the declaration-specifiers.
2421 goto DoneWithDeclSpec;
Chad Rosierc1183952012-06-26 22:30:43 +00002422
Chris Lattner16fac4f2008-07-26 01:18:38 +00002423 // typedef-name
David Blaikie15a430a2011-12-04 05:04:18 +00002424 case tok::kw_decltype:
Chris Lattner16fac4f2008-07-26 01:18:38 +00002425 case tok::identifier: {
Chris Lattnerbd31aa32009-01-05 00:07:25 +00002426 // In C++, check to see if this is a scope specifier like foo::bar::, if
2427 // so handle it as such. This is important for ctor parsing.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002428 if (getLangOpts().CPlusPlus) {
John McCall1f476a12010-02-26 08:45:28 +00002429 if (TryAnnotateCXXScopeToken(true)) {
2430 if (!DS.hasTypeSpecifier())
2431 DS.SetTypeSpecError();
2432 goto DoneWithDeclSpec;
2433 }
2434 if (!Tok.is(tok::identifier))
2435 continue;
2436 }
Mike Stump11289f42009-09-09 15:08:12 +00002437
Chris Lattner16fac4f2008-07-26 01:18:38 +00002438 // This identifier can only be a typedef name if we haven't already seen
2439 // a type-specifier. Without this check we misparse:
2440 // typedef int X; struct Y { short X; }; as 'short int'.
2441 if (DS.hasTypeSpecifier())
2442 goto DoneWithDeclSpec;
Mike Stump11289f42009-09-09 15:08:12 +00002443
John Thompson22334602010-02-05 00:12:22 +00002444 // Check for need to substitute AltiVec keyword tokens.
2445 if (TryAltiVecToken(DS, Loc, PrevSpec, DiagID, isInvalid))
2446 break;
2447
Richard Smith3092a3b2012-05-09 18:56:43 +00002448 // [AltiVec] 2.2: [If the 'vector' specifier is used] The syntax does not
2449 // allow the use of a typedef name as a type specifier.
2450 if (DS.isTypeAltiVecVector())
2451 goto DoneWithDeclSpec;
2452
John McCallba7bf592010-08-24 05:47:05 +00002453 ParsedType TypeRep =
2454 Actions.getTypeName(*Tok.getIdentifierInfo(),
2455 Tok.getLocation(), getCurScope());
Douglas Gregor8bf42052009-02-09 18:46:07 +00002456
Chris Lattner6cc055a2009-04-12 20:42:31 +00002457 // If this is not a typedef name, don't parse it as part of the declspec,
2458 // it must be an implicit int or an error.
John McCallba7bf592010-08-24 05:47:05 +00002459 if (!TypeRep) {
Michael Han9407e502012-11-26 22:54:45 +00002460 ParsedAttributesWithRange Attrs(AttrFactory);
2461 if (ParseImplicitInt(DS, 0, TemplateInfo, AS, DSContext, Attrs)) {
2462 if (!Attrs.empty()) {
2463 AttrsLastTime = true;
2464 attrs.takeAllFrom(Attrs);
2465 }
2466 continue;
2467 }
Chris Lattner16fac4f2008-07-26 01:18:38 +00002468 goto DoneWithDeclSpec;
Chris Lattner6cc055a2009-04-12 20:42:31 +00002469 }
Douglas Gregor8bf42052009-02-09 18:46:07 +00002470
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002471 // If we're in a context where the identifier could be a class name,
2472 // check whether this is a constructor declaration.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002473 if (getLangOpts().CPlusPlus && DSContext == DSC_class &&
Douglas Gregor0be31a22010-07-02 17:43:08 +00002474 Actions.isCurrentClassName(*Tok.getIdentifierInfo(), getCurScope()) &&
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002475 isConstructorDeclarator())
Douglas Gregor61956c42008-10-31 09:07:45 +00002476 goto DoneWithDeclSpec;
2477
Douglas Gregor9817f4a2009-02-09 15:09:02 +00002478 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
John McCall49bfce42009-08-03 20:12:06 +00002479 DiagID, TypeRep);
Chris Lattner16fac4f2008-07-26 01:18:38 +00002480 if (isInvalid)
2481 break;
Mike Stump11289f42009-09-09 15:08:12 +00002482
Chris Lattner16fac4f2008-07-26 01:18:38 +00002483 DS.SetRangeEnd(Tok.getLocation());
2484 ConsumeToken(); // The identifier
2485
2486 // Objective-C supports syntax of the form 'id<proto1,proto2>' where 'id'
2487 // is a specific typedef and 'itf<proto1,proto2>' where 'itf' is an
Chad Rosierc1183952012-06-26 22:30:43 +00002488 // Objective-C interface.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002489 if (Tok.is(tok::less) && getLangOpts().ObjC1)
Douglas Gregor06e41ae2010-10-21 23:17:00 +00002490 ParseObjCProtocolQualifiers(DS);
Chad Rosierc1183952012-06-26 22:30:43 +00002491
Steve Naroffcd5e7822008-09-22 10:28:57 +00002492 // Need to support trailing type qualifiers (e.g. "id<p> const").
2493 // If a type specifier follows, it will be diagnosed elsewhere.
2494 continue;
Chris Lattner16fac4f2008-07-26 01:18:38 +00002495 }
Douglas Gregor7f741122009-02-25 19:37:18 +00002496
2497 // type-name
2498 case tok::annot_template_id: {
Argyrios Kyrtzidisc0c5dd22011-06-22 06:09:49 +00002499 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregorb67535d2009-03-31 00:43:58 +00002500 if (TemplateId->Kind != TNK_Type_template) {
Douglas Gregor7f741122009-02-25 19:37:18 +00002501 // This template-id does not refer to a type name, so we're
2502 // done with the type-specifiers.
2503 goto DoneWithDeclSpec;
2504 }
2505
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002506 // If we're in a context where the template-id could be a
2507 // constructor name or specialization, check whether this is a
2508 // constructor declaration.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002509 if (getLangOpts().CPlusPlus && DSContext == DSC_class &&
Douglas Gregor0be31a22010-07-02 17:43:08 +00002510 Actions.isCurrentClassName(*TemplateId->Name, getCurScope()) &&
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002511 isConstructorDeclarator())
2512 goto DoneWithDeclSpec;
2513
Douglas Gregor7f741122009-02-25 19:37:18 +00002514 // Turn the template-id annotation token into a type annotation
2515 // token, then try again to parse it as a type-specifier.
Douglas Gregorfe3d7d02009-04-01 21:51:26 +00002516 AnnotateTemplateIdTokenAsType();
Douglas Gregor7f741122009-02-25 19:37:18 +00002517 continue;
2518 }
2519
Chris Lattnere37e2332006-08-15 04:50:22 +00002520 // GNU attributes support.
2521 case tok::kw___attribute:
DeLesley Hutchinsbd2ee132012-03-02 22:12:59 +00002522 ParseGNUAttributes(DS.getAttributes(), 0, LateAttrs);
Chris Lattnerb95cca02006-10-17 03:01:08 +00002523 continue;
Steve Naroff3a9b7e02008-12-24 20:59:21 +00002524
2525 // Microsoft declspec support.
2526 case tok::kw___declspec:
John McCall53fa7142010-12-24 02:08:15 +00002527 ParseMicrosoftDeclSpec(DS.getAttributes());
Steve Naroff3a9b7e02008-12-24 20:59:21 +00002528 continue;
Mike Stump11289f42009-09-09 15:08:12 +00002529
Steve Naroff44ac7772008-12-25 14:16:32 +00002530 // Microsoft single token adornments.
Michael J. Spencerf97bd8c2012-06-18 07:00:48 +00002531 case tok::kw___forceinline: {
2532 isInvalid = DS.SetFunctionSpecInline(Loc, PrevSpec, DiagID);
2533 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
Richard Smithda837032012-09-14 18:27:01 +00002534 SourceLocation AttrNameLoc = Tok.getLocation();
Alexis Hunta0e54d42012-06-18 16:13:52 +00002535 // FIXME: This does not work correctly if it is set to be a declspec
2536 // attribute, and a GNU attribute is simply incorrect.
Michael J. Spencerf97bd8c2012-06-18 07:00:48 +00002537 DS.getAttributes().addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0,
Alexis Hunta0e54d42012-06-18 16:13:52 +00002538 SourceLocation(), 0, 0, AttributeList::AS_GNU);
Richard Smithda837032012-09-14 18:27:01 +00002539 break;
Michael J. Spencerf97bd8c2012-06-18 07:00:48 +00002540 }
Eli Friedman53339e02009-06-08 23:27:34 +00002541
2542 case tok::kw___ptr64:
Francois Pichetf2fb4112011-08-25 00:36:46 +00002543 case tok::kw___ptr32:
Steve Narofff9c29d42008-12-25 14:41:26 +00002544 case tok::kw___w64:
Steve Naroff44ac7772008-12-25 14:16:32 +00002545 case tok::kw___cdecl:
2546 case tok::kw___stdcall:
2547 case tok::kw___fastcall:
Douglas Gregora941dca2010-05-18 16:57:00 +00002548 case tok::kw___thiscall:
Francois Pichet17ed0202011-08-18 09:59:55 +00002549 case tok::kw___unaligned:
John McCall53fa7142010-12-24 02:08:15 +00002550 ParseMicrosoftTypeAttributes(DS.getAttributes());
Eli Friedman53339e02009-06-08 23:27:34 +00002551 continue;
2552
Dawn Perchik335e16b2010-09-03 01:29:35 +00002553 // Borland single token adornments.
2554 case tok::kw___pascal:
John McCall53fa7142010-12-24 02:08:15 +00002555 ParseBorlandTypeAttributes(DS.getAttributes());
Dawn Perchik335e16b2010-09-03 01:29:35 +00002556 continue;
2557
Peter Collingbourne7ce13fc2011-02-14 01:42:53 +00002558 // OpenCL single token adornments.
2559 case tok::kw___kernel:
2560 ParseOpenCLAttributes(DS.getAttributes());
2561 continue;
2562
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002563 // storage-class-specifier
2564 case tok::kw_typedef:
Peter Collingbourne485b80f2011-10-06 03:01:00 +00002565 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_typedef, Loc,
2566 PrevSpec, DiagID);
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002567 break;
2568 case tok::kw_extern:
Chris Lattner353f5742006-11-28 04:50:12 +00002569 if (DS.isThreadSpecified())
Chris Lattner6d29c102008-11-18 07:48:38 +00002570 Diag(Tok, diag::ext_thread_before) << "extern";
Peter Collingbourne485b80f2011-10-06 03:01:00 +00002571 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_extern, Loc,
2572 PrevSpec, DiagID);
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002573 break;
Steve Naroff2050b0d2007-12-18 00:16:02 +00002574 case tok::kw___private_extern__:
Peter Collingbourne485b80f2011-10-06 03:01:00 +00002575 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_private_extern,
2576 Loc, PrevSpec, DiagID);
Steve Naroff2050b0d2007-12-18 00:16:02 +00002577 break;
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002578 case tok::kw_static:
Chris Lattner353f5742006-11-28 04:50:12 +00002579 if (DS.isThreadSpecified())
Chris Lattner6d29c102008-11-18 07:48:38 +00002580 Diag(Tok, diag::ext_thread_before) << "static";
Peter Collingbourne485b80f2011-10-06 03:01:00 +00002581 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_static, Loc,
2582 PrevSpec, DiagID);
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002583 break;
2584 case tok::kw_auto:
David Blaikiebbafb8a2012-03-11 07:00:24 +00002585 if (getLangOpts().CPlusPlus0x) {
Fariborz Jahanianbb6db562011-02-22 23:17:49 +00002586 if (isKnownToBeTypeSpecifier(GetLookAheadToken(1))) {
Peter Collingbourne485b80f2011-10-06 03:01:00 +00002587 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_auto, Loc,
2588 PrevSpec, DiagID);
Fariborz Jahanianbb6db562011-02-22 23:17:49 +00002589 if (!isInvalid)
Richard Smith58c74332011-09-04 19:54:14 +00002590 Diag(Tok, diag::ext_auto_storage_class)
Fariborz Jahanianbb6db562011-02-22 23:17:49 +00002591 << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc());
Richard Smith58c74332011-09-04 19:54:14 +00002592 } else
Fariborz Jahanianbb6db562011-02-22 23:17:49 +00002593 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_auto, Loc, PrevSpec,
2594 DiagID);
Richard Smith58c74332011-09-04 19:54:14 +00002595 } else
Peter Collingbourne485b80f2011-10-06 03:01:00 +00002596 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_auto, Loc,
2597 PrevSpec, DiagID);
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002598 break;
2599 case tok::kw_register:
Peter Collingbourne485b80f2011-10-06 03:01:00 +00002600 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_register, Loc,
2601 PrevSpec, DiagID);
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002602 break;
Sebastian Redlccdfaba2008-11-14 23:42:31 +00002603 case tok::kw_mutable:
Peter Collingbourne485b80f2011-10-06 03:01:00 +00002604 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_mutable, Loc,
2605 PrevSpec, DiagID);
Sebastian Redlccdfaba2008-11-14 23:42:31 +00002606 break;
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002607 case tok::kw___thread:
John McCall49bfce42009-08-03 20:12:06 +00002608 isInvalid = DS.SetStorageClassSpecThread(Loc, PrevSpec, DiagID);
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002609 break;
Mike Stump11289f42009-09-09 15:08:12 +00002610
Chris Lattnerb9093cd2006-08-04 04:39:53 +00002611 // function-specifier
2612 case tok::kw_inline:
John McCall49bfce42009-08-03 20:12:06 +00002613 isInvalid = DS.SetFunctionSpecInline(Loc, PrevSpec, DiagID);
Chris Lattnerb9093cd2006-08-04 04:39:53 +00002614 break;
Douglas Gregor61956c42008-10-31 09:07:45 +00002615 case tok::kw_virtual:
John McCall49bfce42009-08-03 20:12:06 +00002616 isInvalid = DS.SetFunctionSpecVirtual(Loc, PrevSpec, DiagID);
Douglas Gregor61956c42008-10-31 09:07:45 +00002617 break;
Douglas Gregor61956c42008-10-31 09:07:45 +00002618 case tok::kw_explicit:
John McCall49bfce42009-08-03 20:12:06 +00002619 isInvalid = DS.SetFunctionSpecExplicit(Loc, PrevSpec, DiagID);
Douglas Gregor61956c42008-10-31 09:07:45 +00002620 break;
Chris Lattnere387d9e2009-01-21 19:48:37 +00002621
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002622 // alignment-specifier
2623 case tok::kw__Alignas:
David Blaikiebbafb8a2012-03-11 07:00:24 +00002624 if (!getLangOpts().C11)
Jordan Rose58d54722012-06-30 21:33:57 +00002625 Diag(Tok, diag::ext_c11_alignment) << Tok.getName();
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002626 ParseAlignmentSpecifier(DS.getAttributes());
2627 continue;
2628
Anders Carlssoncd8db412009-05-06 04:46:28 +00002629 // friend
2630 case tok::kw_friend:
John McCall07e91c02009-08-06 02:15:43 +00002631 if (DSContext == DSC_class)
2632 isInvalid = DS.SetFriendSpec(Loc, PrevSpec, DiagID);
2633 else {
2634 PrevSpec = ""; // not actually used by the diagnostic
2635 DiagID = diag::err_friend_invalid_in_context;
2636 isInvalid = true;
2637 }
Anders Carlssoncd8db412009-05-06 04:46:28 +00002638 break;
Mike Stump11289f42009-09-09 15:08:12 +00002639
Douglas Gregor26701a42011-09-09 02:06:17 +00002640 // Modules
2641 case tok::kw___module_private__:
2642 isInvalid = DS.setModulePrivateSpec(Loc, PrevSpec, DiagID);
2643 break;
Chad Rosierc1183952012-06-26 22:30:43 +00002644
Sebastian Redl39c2a8b2009-11-05 15:47:02 +00002645 // constexpr
2646 case tok::kw_constexpr:
2647 isInvalid = DS.SetConstexprSpec(Loc, PrevSpec, DiagID);
2648 break;
2649
Chris Lattnere387d9e2009-01-21 19:48:37 +00002650 // type-specifier
2651 case tok::kw_short:
John McCall49bfce42009-08-03 20:12:06 +00002652 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_short, Loc, PrevSpec,
2653 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002654 break;
2655 case tok::kw_long:
2656 if (DS.getTypeSpecWidth() != DeclSpec::TSW_long)
John McCall49bfce42009-08-03 20:12:06 +00002657 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_long, Loc, PrevSpec,
2658 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002659 else
John McCall49bfce42009-08-03 20:12:06 +00002660 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_longlong, Loc, PrevSpec,
2661 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002662 break;
Francois Pichet84133e42011-04-28 01:59:37 +00002663 case tok::kw___int64:
2664 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_longlong, Loc, PrevSpec,
2665 DiagID);
2666 break;
Chris Lattnere387d9e2009-01-21 19:48:37 +00002667 case tok::kw_signed:
John McCall49bfce42009-08-03 20:12:06 +00002668 isInvalid = DS.SetTypeSpecSign(DeclSpec::TSS_signed, Loc, PrevSpec,
2669 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002670 break;
2671 case tok::kw_unsigned:
John McCall49bfce42009-08-03 20:12:06 +00002672 isInvalid = DS.SetTypeSpecSign(DeclSpec::TSS_unsigned, Loc, PrevSpec,
2673 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002674 break;
2675 case tok::kw__Complex:
John McCall49bfce42009-08-03 20:12:06 +00002676 isInvalid = DS.SetTypeSpecComplex(DeclSpec::TSC_complex, Loc, PrevSpec,
2677 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002678 break;
2679 case tok::kw__Imaginary:
John McCall49bfce42009-08-03 20:12:06 +00002680 isInvalid = DS.SetTypeSpecComplex(DeclSpec::TSC_imaginary, Loc, PrevSpec,
2681 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002682 break;
2683 case tok::kw_void:
John McCall49bfce42009-08-03 20:12:06 +00002684 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_void, Loc, PrevSpec,
2685 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002686 break;
2687 case tok::kw_char:
John McCall49bfce42009-08-03 20:12:06 +00002688 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char, Loc, PrevSpec,
2689 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002690 break;
2691 case tok::kw_int:
John McCall49bfce42009-08-03 20:12:06 +00002692 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, PrevSpec,
2693 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002694 break;
Richard Smithf016bbc2012-04-04 06:24:32 +00002695 case tok::kw___int128:
2696 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_int128, Loc, PrevSpec,
2697 DiagID);
2698 break;
2699 case tok::kw_half:
2700 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_half, Loc, PrevSpec,
2701 DiagID);
2702 break;
Chris Lattnere387d9e2009-01-21 19:48:37 +00002703 case tok::kw_float:
John McCall49bfce42009-08-03 20:12:06 +00002704 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_float, Loc, PrevSpec,
2705 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002706 break;
2707 case tok::kw_double:
John McCall49bfce42009-08-03 20:12:06 +00002708 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_double, Loc, PrevSpec,
2709 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002710 break;
2711 case tok::kw_wchar_t:
John McCall49bfce42009-08-03 20:12:06 +00002712 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_wchar, Loc, PrevSpec,
2713 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002714 break;
Alisdair Mereditha9ad47d2009-07-14 06:30:34 +00002715 case tok::kw_char16_t:
John McCall49bfce42009-08-03 20:12:06 +00002716 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char16, Loc, PrevSpec,
2717 DiagID);
Alisdair Mereditha9ad47d2009-07-14 06:30:34 +00002718 break;
2719 case tok::kw_char32_t:
John McCall49bfce42009-08-03 20:12:06 +00002720 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char32, Loc, PrevSpec,
2721 DiagID);
Alisdair Mereditha9ad47d2009-07-14 06:30:34 +00002722 break;
Chris Lattnere387d9e2009-01-21 19:48:37 +00002723 case tok::kw_bool:
2724 case tok::kw__Bool:
Argyrios Kyrtzidis20ee5ae2010-11-16 18:18:13 +00002725 if (Tok.is(tok::kw_bool) &&
2726 DS.getTypeSpecType() != DeclSpec::TST_unspecified &&
2727 DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
2728 PrevSpec = ""; // Not used by the diagnostic.
2729 DiagID = diag::err_bool_redeclaration;
Fariborz Jahanian2b059992011-04-19 21:42:37 +00002730 // For better error recovery.
2731 Tok.setKind(tok::identifier);
Argyrios Kyrtzidis20ee5ae2010-11-16 18:18:13 +00002732 isInvalid = true;
2733 } else {
2734 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_bool, Loc, PrevSpec,
2735 DiagID);
2736 }
Chris Lattnere387d9e2009-01-21 19:48:37 +00002737 break;
2738 case tok::kw__Decimal32:
John McCall49bfce42009-08-03 20:12:06 +00002739 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal32, Loc, PrevSpec,
2740 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002741 break;
2742 case tok::kw__Decimal64:
John McCall49bfce42009-08-03 20:12:06 +00002743 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal64, Loc, PrevSpec,
2744 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002745 break;
2746 case tok::kw__Decimal128:
John McCall49bfce42009-08-03 20:12:06 +00002747 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal128, Loc, PrevSpec,
2748 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002749 break;
John Thompson22334602010-02-05 00:12:22 +00002750 case tok::kw___vector:
2751 isInvalid = DS.SetTypeAltiVecVector(true, Loc, PrevSpec, DiagID);
2752 break;
2753 case tok::kw___pixel:
2754 isInvalid = DS.SetTypeAltiVecPixel(true, Loc, PrevSpec, DiagID);
2755 break;
Guy Benyeid8a08ea2012-12-18 14:38:23 +00002756 case tok::kw_image1d_t:
2757 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_image1d_t, Loc,
2758 PrevSpec, DiagID);
2759 break;
2760 case tok::kw_image1d_array_t:
2761 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_image1d_array_t, Loc,
2762 PrevSpec, DiagID);
2763 break;
2764 case tok::kw_image1d_buffer_t:
2765 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_image1d_buffer_t, Loc,
2766 PrevSpec, DiagID);
2767 break;
2768 case tok::kw_image2d_t:
2769 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_image2d_t, Loc,
2770 PrevSpec, DiagID);
2771 break;
2772 case tok::kw_image2d_array_t:
2773 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_image2d_array_t, Loc,
2774 PrevSpec, DiagID);
2775 break;
2776 case tok::kw_image3d_t:
2777 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_image3d_t, Loc,
2778 PrevSpec, DiagID);
2779 break;
John McCall39439732011-04-09 22:50:59 +00002780 case tok::kw___unknown_anytype:
2781 isInvalid = DS.SetTypeSpecType(TST_unknown_anytype, Loc,
2782 PrevSpec, DiagID);
2783 break;
Chris Lattnere387d9e2009-01-21 19:48:37 +00002784
2785 // class-specifier:
2786 case tok::kw_class:
2787 case tok::kw_struct:
Joao Matosdc86f942012-08-31 18:45:21 +00002788 case tok::kw___interface:
Chris Lattnerffaa0e62009-04-12 21:49:30 +00002789 case tok::kw_union: {
2790 tok::TokenKind Kind = Tok.getKind();
2791 ConsumeToken();
Michael Han9407e502012-11-26 22:54:45 +00002792
2793 // These are attributes following class specifiers.
2794 // To produce better diagnostic, we parse them when
2795 // parsing class specifier.
2796 ParsedAttributesWithRange Attributes(AttrFactory);
Richard Smithc5b05522012-03-12 07:56:15 +00002797 ParseClassSpecifier(Kind, Loc, DS, TemplateInfo, AS,
Michael Han9407e502012-11-26 22:54:45 +00002798 EnteringContext, DSContext, Attributes);
2799
2800 // If there are attributes following class specifier,
2801 // take them over and handle them here.
2802 if (!Attributes.empty()) {
2803 AttrsLastTime = true;
2804 attrs.takeAllFrom(Attributes);
2805 }
Chris Lattnere387d9e2009-01-21 19:48:37 +00002806 continue;
Chris Lattnerffaa0e62009-04-12 21:49:30 +00002807 }
Chris Lattnere387d9e2009-01-21 19:48:37 +00002808
2809 // enum-specifier:
2810 case tok::kw_enum:
Chris Lattnerffaa0e62009-04-12 21:49:30 +00002811 ConsumeToken();
Richard Smithc5b05522012-03-12 07:56:15 +00002812 ParseEnumSpecifier(Loc, DS, TemplateInfo, AS, DSContext);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002813 continue;
2814
2815 // cv-qualifier:
2816 case tok::kw_const:
John McCall49bfce42009-08-03 20:12:06 +00002817 isInvalid = DS.SetTypeQual(DeclSpec::TQ_const, Loc, PrevSpec, DiagID,
Richard Smith87e79512012-10-17 23:31:46 +00002818 getLangOpts());
Chris Lattnere387d9e2009-01-21 19:48:37 +00002819 break;
2820 case tok::kw_volatile:
John McCall49bfce42009-08-03 20:12:06 +00002821 isInvalid = DS.SetTypeQual(DeclSpec::TQ_volatile, Loc, PrevSpec, DiagID,
Richard Smith87e79512012-10-17 23:31:46 +00002822 getLangOpts());
Chris Lattnere387d9e2009-01-21 19:48:37 +00002823 break;
2824 case tok::kw_restrict:
John McCall49bfce42009-08-03 20:12:06 +00002825 isInvalid = DS.SetTypeQual(DeclSpec::TQ_restrict, Loc, PrevSpec, DiagID,
Richard Smith87e79512012-10-17 23:31:46 +00002826 getLangOpts());
Chris Lattnere387d9e2009-01-21 19:48:37 +00002827 break;
2828
Douglas Gregor333489b2009-03-27 23:10:48 +00002829 // C++ typename-specifier:
2830 case tok::kw_typename:
John McCall1f476a12010-02-26 08:45:28 +00002831 if (TryAnnotateTypeOrScopeToken()) {
2832 DS.SetTypeSpecError();
2833 goto DoneWithDeclSpec;
2834 }
2835 if (!Tok.is(tok::kw_typename))
Douglas Gregor333489b2009-03-27 23:10:48 +00002836 continue;
2837 break;
2838
Chris Lattnere387d9e2009-01-21 19:48:37 +00002839 // GNU typeof support.
2840 case tok::kw_typeof:
2841 ParseTypeofSpecifier(DS);
2842 continue;
2843
David Blaikie15a430a2011-12-04 05:04:18 +00002844 case tok::annot_decltype:
Anders Carlsson74948d02009-06-24 17:47:40 +00002845 ParseDecltypeSpecifier(DS);
2846 continue;
2847
Alexis Hunt4a257072011-05-19 05:37:45 +00002848 case tok::kw___underlying_type:
2849 ParseUnderlyingTypeSpecifier(DS);
Eli Friedman0dfb8892011-10-06 23:00:33 +00002850 continue;
2851
2852 case tok::kw__Atomic:
2853 ParseAtomicSpecifier(DS);
2854 continue;
Alexis Hunt4a257072011-05-19 05:37:45 +00002855
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00002856 // OpenCL qualifiers:
Chad Rosierc1183952012-06-26 22:30:43 +00002857 case tok::kw_private:
David Blaikiebbafb8a2012-03-11 07:00:24 +00002858 if (!getLangOpts().OpenCL)
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00002859 goto DoneWithDeclSpec;
2860 case tok::kw___private:
2861 case tok::kw___global:
2862 case tok::kw___local:
2863 case tok::kw___constant:
2864 case tok::kw___read_only:
2865 case tok::kw___write_only:
2866 case tok::kw___read_write:
2867 ParseOpenCLQualifiers(DS);
2868 break;
Chad Rosierc1183952012-06-26 22:30:43 +00002869
Steve Naroffcfdf6162008-06-05 00:02:44 +00002870 case tok::less:
Chris Lattner16fac4f2008-07-26 01:18:38 +00002871 // GCC ObjC supports types like "<SomeProtocol>" as a synonym for
Chris Lattner0974b232008-07-26 00:20:22 +00002872 // "id<SomeProtocol>". This is hopelessly old fashioned and dangerous,
2873 // but we support it.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002874 if (DS.hasTypeSpecifier() || !getLangOpts().ObjC1)
Chris Lattner0974b232008-07-26 00:20:22 +00002875 goto DoneWithDeclSpec;
Mike Stump11289f42009-09-09 15:08:12 +00002876
Douglas Gregor3a001f42010-11-19 17:10:50 +00002877 if (!ParseObjCProtocolQualifiers(DS))
2878 Diag(Loc, diag::warn_objc_protocol_qualifier_missing_id)
2879 << FixItHint::CreateInsertion(Loc, "id")
2880 << SourceRange(Loc, DS.getSourceRange().getEnd());
Chad Rosierc1183952012-06-26 22:30:43 +00002881
Douglas Gregor06e41ae2010-10-21 23:17:00 +00002882 // Need to support trailing type qualifiers (e.g. "id<p> const").
2883 // If a type specifier follows, it will be diagnosed elsewhere.
2884 continue;
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00002885 }
John McCall49bfce42009-08-03 20:12:06 +00002886 // If the specifier wasn't legal, issue a diagnostic.
Chris Lattnerb9093cd2006-08-04 04:39:53 +00002887 if (isInvalid) {
2888 assert(PrevSpec && "Method did not return previous specifier!");
John McCall49bfce42009-08-03 20:12:06 +00002889 assert(DiagID);
Chad Rosierc1183952012-06-26 22:30:43 +00002890
Douglas Gregora05f5ab2010-08-23 14:34:43 +00002891 if (DiagID == diag::ext_duplicate_declspec)
2892 Diag(Tok, DiagID)
2893 << PrevSpec << FixItHint::CreateRemoval(Tok.getLocation());
2894 else
2895 Diag(Tok, DiagID) << PrevSpec;
Chris Lattnerb9093cd2006-08-04 04:39:53 +00002896 }
Fariborz Jahanianbb6db562011-02-22 23:17:49 +00002897
Chris Lattner2e232092008-03-13 06:29:04 +00002898 DS.SetRangeEnd(Tok.getLocation());
Fariborz Jahanian2b059992011-04-19 21:42:37 +00002899 if (DiagID != diag::err_bool_redeclaration)
2900 ConsumeToken();
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00002901
2902 AttrsLastTime = false;
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00002903 }
2904}
Douglas Gregoreb31f392008-12-01 23:54:00 +00002905
Chris Lattner70ae4912007-10-29 04:42:53 +00002906/// ParseStructDeclaration - Parse a struct declaration without the terminating
2907/// semicolon.
2908///
Chris Lattner90a26b02007-01-23 04:38:16 +00002909/// struct-declaration:
Chris Lattner70ae4912007-10-29 04:42:53 +00002910/// specifier-qualifier-list struct-declarator-list
Chris Lattner736ed5d2007-06-09 05:59:07 +00002911/// [GNU] __extension__ struct-declaration
Chris Lattner70ae4912007-10-29 04:42:53 +00002912/// [GNU] specifier-qualifier-list
Chris Lattner90a26b02007-01-23 04:38:16 +00002913/// struct-declarator-list:
2914/// struct-declarator
2915/// struct-declarator-list ',' struct-declarator
2916/// [GNU] struct-declarator-list ',' attributes[opt] struct-declarator
2917/// struct-declarator:
2918/// declarator
2919/// [GNU] declarator attributes[opt]
2920/// declarator[opt] ':' constant-expression
2921/// [GNU] declarator[opt] ':' constant-expression attributes[opt]
2922///
Chris Lattnera12405b2008-04-10 06:46:29 +00002923void Parser::
Eli Friedman89b1f2c2012-08-08 23:04:35 +00002924ParseStructDeclaration(ParsingDeclSpec &DS, FieldCallback &Fields) {
Chad Rosierc1183952012-06-26 22:30:43 +00002925
Chris Lattnerf02ef3e2008-10-20 06:45:43 +00002926 if (Tok.is(tok::kw___extension__)) {
2927 // __extension__ silences extension warnings in the subexpression.
2928 ExtensionRAIIObject O(Diags); // Use RAII to do this.
Steve Naroff97170802007-08-20 22:28:22 +00002929 ConsumeToken();
Chris Lattnerf02ef3e2008-10-20 06:45:43 +00002930 return ParseStructDeclaration(DS, Fields);
2931 }
Mike Stump11289f42009-09-09 15:08:12 +00002932
Steve Naroff97170802007-08-20 22:28:22 +00002933 // Parse the common specifier-qualifiers-list piece.
Steve Naroff97170802007-08-20 22:28:22 +00002934 ParseSpecifierQualifierList(DS);
Mike Stump11289f42009-09-09 15:08:12 +00002935
Douglas Gregorc6f58fe2009-01-12 22:49:06 +00002936 // If there are no declarators, this is a free-standing declaration
2937 // specifier. Let the actions module cope with it.
Chris Lattner76c72282007-10-09 17:33:22 +00002938 if (Tok.is(tok::semi)) {
Eli Friedman89b1f2c2012-08-08 23:04:35 +00002939 Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS_none,
2940 DS);
2941 DS.complete(TheDecl);
Steve Naroff97170802007-08-20 22:28:22 +00002942 return;
2943 }
2944
2945 // Read struct-declarators until we find the semicolon.
John McCallcfefb6d2009-11-03 02:38:08 +00002946 bool FirstDeclarator = true;
Richard Smith8d06f422012-01-12 23:53:29 +00002947 SourceLocation CommaLoc;
Steve Naroff97170802007-08-20 22:28:22 +00002948 while (1) {
Eli Friedman89b1f2c2012-08-08 23:04:35 +00002949 ParsingFieldDeclarator DeclaratorInfo(*this, DS);
Richard Smith8d06f422012-01-12 23:53:29 +00002950 DeclaratorInfo.D.setCommaLoc(CommaLoc);
John McCallcfefb6d2009-11-03 02:38:08 +00002951
2952 // Attributes are only allowed here on successive declarators.
John McCall53fa7142010-12-24 02:08:15 +00002953 if (!FirstDeclarator)
2954 MaybeParseGNUAttributes(DeclaratorInfo.D);
Mike Stump11289f42009-09-09 15:08:12 +00002955
Steve Naroff97170802007-08-20 22:28:22 +00002956 /// struct-declarator: declarator
2957 /// struct-declarator: declarator[opt] ':' constant-expression
Chris Lattner17c3b1f2009-12-10 01:59:24 +00002958 if (Tok.isNot(tok::colon)) {
2959 // Don't parse FOO:BAR as if it were a typo for FOO::BAR.
2960 ColonProtectionRAIIObject X(*this);
Chris Lattnera12405b2008-04-10 06:46:29 +00002961 ParseDeclarator(DeclaratorInfo.D);
Chris Lattner17c3b1f2009-12-10 01:59:24 +00002962 }
Mike Stump11289f42009-09-09 15:08:12 +00002963
Chris Lattner76c72282007-10-09 17:33:22 +00002964 if (Tok.is(tok::colon)) {
Steve Naroff97170802007-08-20 22:28:22 +00002965 ConsumeToken();
John McCalldadc5752010-08-24 06:29:42 +00002966 ExprResult Res(ParseConstantExpression());
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00002967 if (Res.isInvalid())
Steve Naroff97170802007-08-20 22:28:22 +00002968 SkipUntil(tok::semi, true, true);
Chris Lattner32295d32008-04-10 06:15:14 +00002969 else
Sebastian Redld9f7b1c2008-12-10 00:02:53 +00002970 DeclaratorInfo.BitfieldSize = Res.release();
Steve Naroff97170802007-08-20 22:28:22 +00002971 }
Sebastian Redlf6591ca2009-02-09 18:23:29 +00002972
Steve Naroff97170802007-08-20 22:28:22 +00002973 // If attributes exist after the declarator, parse them.
John McCall53fa7142010-12-24 02:08:15 +00002974 MaybeParseGNUAttributes(DeclaratorInfo.D);
Sebastian Redlf6591ca2009-02-09 18:23:29 +00002975
John McCallcfefb6d2009-11-03 02:38:08 +00002976 // We're done with this declarator; invoke the callback.
Eli Friedmanba01f2b2012-08-08 23:35:12 +00002977 Fields.invoke(DeclaratorInfo);
John McCallcfefb6d2009-11-03 02:38:08 +00002978
Steve Naroff97170802007-08-20 22:28:22 +00002979 // If we don't have a comma, it is either the end of the list (a ';')
2980 // or an error, bail out.
Chris Lattner76c72282007-10-09 17:33:22 +00002981 if (Tok.isNot(tok::comma))
Chris Lattner70ae4912007-10-29 04:42:53 +00002982 return;
Sebastian Redlf6591ca2009-02-09 18:23:29 +00002983
Steve Naroff97170802007-08-20 22:28:22 +00002984 // Consume the comma.
Richard Smith8d06f422012-01-12 23:53:29 +00002985 CommaLoc = ConsumeToken();
Sebastian Redlf6591ca2009-02-09 18:23:29 +00002986
John McCallcfefb6d2009-11-03 02:38:08 +00002987 FirstDeclarator = false;
Steve Naroff97170802007-08-20 22:28:22 +00002988 }
Steve Naroff97170802007-08-20 22:28:22 +00002989}
2990
2991/// ParseStructUnionBody
2992/// struct-contents:
2993/// struct-declaration-list
2994/// [EXT] empty
2995/// [GNU] "struct-declaration-list" without terminatoring ';'
2996/// struct-declaration-list:
2997/// struct-declaration
2998/// struct-declaration-list struct-declaration
Chris Lattner535b8302008-06-21 19:39:06 +00002999/// [OBC] '@' 'defs' '(' class-name ')'
Steve Naroff97170802007-08-20 22:28:22 +00003000///
Chris Lattner1300fb92007-01-23 23:42:53 +00003001void Parser::ParseStructUnionBody(SourceLocation RecordLoc,
John McCall48871652010-08-21 09:40:31 +00003002 unsigned TagType, Decl *TagDecl) {
John McCallfaf5fb42010-08-26 23:41:50 +00003003 PrettyDeclStackTraceEntry CrashInfo(Actions, TagDecl, RecordLoc,
3004 "parsing struct/union body");
Mike Stump11289f42009-09-09 15:08:12 +00003005
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003006 BalancedDelimiterTracker T(*this, tok::l_brace);
3007 if (T.consumeOpen())
3008 return;
Mike Stump11289f42009-09-09 15:08:12 +00003009
Douglas Gregor658b9552009-01-09 22:42:13 +00003010 ParseScope StructScope(this, Scope::ClassScope|Scope::DeclScope);
Douglas Gregor0be31a22010-07-02 17:43:08 +00003011 Actions.ActOnTagStartDefinition(getCurScope(), TagDecl);
Douglas Gregor82ac25e2009-01-08 20:45:30 +00003012
Chris Lattner7b9ace62007-01-23 20:11:08 +00003013 // Empty structs are an extension in C (C99 6.7.2.1p7), but are allowed in
3014 // C++.
David Blaikiebbafb8a2012-03-11 07:00:24 +00003015 if (Tok.is(tok::r_brace) && !getLangOpts().CPlusPlus) {
Richard Smithe4345902011-12-29 21:57:33 +00003016 Diag(Tok, diag::ext_empty_struct_union) << (TagType == TST_union);
3017 Diag(Tok, diag::warn_empty_struct_union_compat) << (TagType == TST_union);
3018 }
Chris Lattner7b9ace62007-01-23 20:11:08 +00003019
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003020 SmallVector<Decl *, 32> FieldDecls;
Chris Lattnera12405b2008-04-10 06:46:29 +00003021
Chris Lattner7b9ace62007-01-23 20:11:08 +00003022 // While we still have something to read, read the declarations in the struct.
Chris Lattner76c72282007-10-09 17:33:22 +00003023 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
Chris Lattner90a26b02007-01-23 04:38:16 +00003024 // Each iteration of this loop reads one struct-declaration.
Mike Stump11289f42009-09-09 15:08:12 +00003025
Chris Lattner736ed5d2007-06-09 05:59:07 +00003026 // Check for extraneous top-level semicolon.
Chris Lattner76c72282007-10-09 17:33:22 +00003027 if (Tok.is(tok::semi)) {
Richard Smith87f5dc52012-07-23 05:45:25 +00003028 ConsumeExtraSemi(InsideStruct, TagType);
Chris Lattner36e46a22007-06-09 05:49:55 +00003029 continue;
3030 }
Chris Lattnera12405b2008-04-10 06:46:29 +00003031
John McCallcfefb6d2009-11-03 02:38:08 +00003032 if (!Tok.is(tok::at)) {
3033 struct CFieldCallback : FieldCallback {
3034 Parser &P;
John McCall48871652010-08-21 09:40:31 +00003035 Decl *TagDecl;
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003036 SmallVectorImpl<Decl *> &FieldDecls;
John McCallcfefb6d2009-11-03 02:38:08 +00003037
John McCall48871652010-08-21 09:40:31 +00003038 CFieldCallback(Parser &P, Decl *TagDecl,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003039 SmallVectorImpl<Decl *> &FieldDecls) :
John McCallcfefb6d2009-11-03 02:38:08 +00003040 P(P), TagDecl(TagDecl), FieldDecls(FieldDecls) {}
3041
Eli Friedman934dbbf2012-08-08 23:53:27 +00003042 void invoke(ParsingFieldDeclarator &FD) {
John McCallcfefb6d2009-11-03 02:38:08 +00003043 // Install the declarator into the current TagDecl.
John McCall48871652010-08-21 09:40:31 +00003044 Decl *Field = P.Actions.ActOnField(P.getCurScope(), TagDecl,
John McCall5e6253b2009-11-03 21:13:47 +00003045 FD.D.getDeclSpec().getSourceRange().getBegin(),
3046 FD.D, FD.BitfieldSize);
John McCallcfefb6d2009-11-03 02:38:08 +00003047 FieldDecls.push_back(Field);
Eli Friedman89b1f2c2012-08-08 23:04:35 +00003048 FD.complete(Field);
Douglas Gregor66a985d2009-08-26 14:27:30 +00003049 }
John McCallcfefb6d2009-11-03 02:38:08 +00003050 } Callback(*this, TagDecl, FieldDecls);
3051
Eli Friedman89b1f2c2012-08-08 23:04:35 +00003052 // Parse all the comma separated declarators.
3053 ParsingDeclSpec DS(*this);
John McCallcfefb6d2009-11-03 02:38:08 +00003054 ParseStructDeclaration(DS, Callback);
Chris Lattner535b8302008-06-21 19:39:06 +00003055 } else { // Handle @defs
3056 ConsumeToken();
3057 if (!Tok.isObjCAtKeyword(tok::objc_defs)) {
3058 Diag(Tok, diag::err_unexpected_at);
Chris Lattner245c5332010-02-02 00:37:27 +00003059 SkipUntil(tok::semi, true);
Chris Lattner535b8302008-06-21 19:39:06 +00003060 continue;
3061 }
3062 ConsumeToken();
3063 ExpectAndConsume(tok::l_paren, diag::err_expected_lparen);
3064 if (!Tok.is(tok::identifier)) {
3065 Diag(Tok, diag::err_expected_ident);
Chris Lattner245c5332010-02-02 00:37:27 +00003066 SkipUntil(tok::semi, true);
Chris Lattner535b8302008-06-21 19:39:06 +00003067 continue;
3068 }
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003069 SmallVector<Decl *, 16> Fields;
Douglas Gregor0be31a22010-07-02 17:43:08 +00003070 Actions.ActOnDefs(getCurScope(), TagDecl, Tok.getLocation(),
Douglas Gregor91f84212008-12-11 16:49:14 +00003071 Tok.getIdentifierInfo(), Fields);
Chris Lattner535b8302008-06-21 19:39:06 +00003072 FieldDecls.insert(FieldDecls.end(), Fields.begin(), Fields.end());
3073 ConsumeToken();
3074 ExpectAndConsume(tok::r_paren, diag::err_expected_rparen);
Mike Stump11289f42009-09-09 15:08:12 +00003075 }
Chris Lattner736ed5d2007-06-09 05:59:07 +00003076
Chris Lattner76c72282007-10-09 17:33:22 +00003077 if (Tok.is(tok::semi)) {
Chris Lattner90a26b02007-01-23 04:38:16 +00003078 ConsumeToken();
Chris Lattner76c72282007-10-09 17:33:22 +00003079 } else if (Tok.is(tok::r_brace)) {
Chris Lattner245c5332010-02-02 00:37:27 +00003080 ExpectAndConsume(tok::semi, diag::ext_expected_semi_decl_list);
Chris Lattner0c7e82d2007-06-09 05:54:40 +00003081 break;
Chris Lattner90a26b02007-01-23 04:38:16 +00003082 } else {
Chris Lattner245c5332010-02-02 00:37:27 +00003083 ExpectAndConsume(tok::semi, diag::err_expected_semi_decl_list);
3084 // Skip to end of block or statement to avoid ext-warning on extra ';'.
Chris Lattner90a26b02007-01-23 04:38:16 +00003085 SkipUntil(tok::r_brace, true, true);
Chris Lattner245c5332010-02-02 00:37:27 +00003086 // If we stopped at a ';', eat it.
3087 if (Tok.is(tok::semi)) ConsumeToken();
Chris Lattner90a26b02007-01-23 04:38:16 +00003088 }
3089 }
Mike Stump11289f42009-09-09 15:08:12 +00003090
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003091 T.consumeClose();
Mike Stump11289f42009-09-09 15:08:12 +00003092
John McCall084e83d2011-03-24 11:26:52 +00003093 ParsedAttributes attrs(AttrFactory);
Chris Lattner90a26b02007-01-23 04:38:16 +00003094 // If attributes exist after struct contents, parse them.
John McCall53fa7142010-12-24 02:08:15 +00003095 MaybeParseGNUAttributes(attrs);
Daniel Dunbar15619c72008-10-03 02:03:53 +00003096
Douglas Gregor0be31a22010-07-02 17:43:08 +00003097 Actions.ActOnFields(getCurScope(),
David Blaikie751c5582011-09-22 02:58:26 +00003098 RecordLoc, TagDecl, FieldDecls,
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003099 T.getOpenLocation(), T.getCloseLocation(),
John McCall53fa7142010-12-24 02:08:15 +00003100 attrs.getList());
Douglas Gregor82ac25e2009-01-08 20:45:30 +00003101 StructScope.Exit();
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003102 Actions.ActOnTagFinishDefinition(getCurScope(), TagDecl,
3103 T.getCloseLocation());
Chris Lattner90a26b02007-01-23 04:38:16 +00003104}
3105
Chris Lattner3b561a32006-08-13 00:12:11 +00003106/// ParseEnumSpecifier
Chris Lattner1890ac82006-08-13 01:16:23 +00003107/// enum-specifier: [C99 6.7.2.2]
Chris Lattner3b561a32006-08-13 00:12:11 +00003108/// 'enum' identifier[opt] '{' enumerator-list '}'
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00003109///[C99/C++]'enum' identifier[opt] '{' enumerator-list ',' '}'
Chris Lattnere37e2332006-08-15 04:50:22 +00003110/// [GNU] 'enum' attributes[opt] identifier[opt] '{' enumerator-list ',' [opt]
3111/// '}' attributes[opt]
Aaron Ballman9ecff022012-03-01 04:09:28 +00003112/// [MS] 'enum' __declspec[opt] identifier[opt] '{' enumerator-list ',' [opt]
3113/// '}'
Chris Lattner3b561a32006-08-13 00:12:11 +00003114/// 'enum' identifier
Chris Lattnere37e2332006-08-15 04:50:22 +00003115/// [GNU] 'enum' attributes[opt] identifier
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00003116///
Richard Smith7d137e32012-03-23 03:33:32 +00003117/// [C++11] enum-head '{' enumerator-list[opt] '}'
3118/// [C++11] enum-head '{' enumerator-list ',' '}'
Douglas Gregor0bf31402010-10-08 23:50:27 +00003119///
Richard Smith7d137e32012-03-23 03:33:32 +00003120/// enum-head: [C++11]
3121/// enum-key attribute-specifier-seq[opt] identifier[opt] enum-base[opt]
3122/// enum-key attribute-specifier-seq[opt] nested-name-specifier
3123/// identifier enum-base[opt]
Douglas Gregor0bf31402010-10-08 23:50:27 +00003124///
Richard Smith7d137e32012-03-23 03:33:32 +00003125/// enum-key: [C++11]
Douglas Gregor0bf31402010-10-08 23:50:27 +00003126/// 'enum'
3127/// 'enum' 'class'
3128/// 'enum' 'struct'
3129///
Richard Smith7d137e32012-03-23 03:33:32 +00003130/// enum-base: [C++11]
Douglas Gregor0bf31402010-10-08 23:50:27 +00003131/// ':' type-specifier-seq
3132///
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00003133/// [C++] elaborated-type-specifier:
3134/// [C++] 'enum' '::'[opt] nested-name-specifier[opt] identifier
3135///
Chris Lattnerffaa0e62009-04-12 21:49:30 +00003136void Parser::ParseEnumSpecifier(SourceLocation StartLoc, DeclSpec &DS,
Douglas Gregordc70c3a2010-03-02 17:53:14 +00003137 const ParsedTemplateInfo &TemplateInfo,
Richard Smithc5b05522012-03-12 07:56:15 +00003138 AccessSpecifier AS, DeclSpecContext DSC) {
Chris Lattnerffbc2712007-01-25 06:05:38 +00003139 // Parse the tag portion of this.
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003140 if (Tok.is(tok::code_completion)) {
3141 // Code completion for an enum name.
Douglas Gregor0be31a22010-07-02 17:43:08 +00003142 Actions.CodeCompleteTag(getCurScope(), DeclSpec::TST_enum);
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +00003143 return cutOffParsing();
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003144 }
John McCallcb432fa2011-07-06 05:58:41 +00003145
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00003146 // If attributes exist after tag, parse them.
3147 ParsedAttributesWithRange attrs(AttrFactory);
3148 MaybeParseGNUAttributes(attrs);
3149 MaybeParseCXX0XAttributes(attrs);
3150
3151 // If declspecs exist after tag, parse them.
3152 while (Tok.is(tok::kw___declspec))
3153 ParseMicrosoftDeclSpec(attrs);
3154
Richard Smith0f8ee222012-01-10 01:33:14 +00003155 SourceLocation ScopedEnumKWLoc;
John McCallcb432fa2011-07-06 05:58:41 +00003156 bool IsScopedUsingClassTag = false;
3157
John McCallbeae29a2012-06-23 22:30:04 +00003158 // In C++11, recognize 'enum class' and 'enum struct'.
David Blaikiebbafb8a2012-03-11 07:00:24 +00003159 if (getLangOpts().CPlusPlus0x &&
John McCallcb432fa2011-07-06 05:58:41 +00003160 (Tok.is(tok::kw_class) || Tok.is(tok::kw_struct))) {
Richard Smith5d164bc2011-10-15 05:09:34 +00003161 Diag(Tok, diag::warn_cxx98_compat_scoped_enum);
John McCallcb432fa2011-07-06 05:58:41 +00003162 IsScopedUsingClassTag = Tok.is(tok::kw_class);
Richard Smith0f8ee222012-01-10 01:33:14 +00003163 ScopedEnumKWLoc = ConsumeToken();
Chad Rosierc1183952012-06-26 22:30:43 +00003164
John McCallbeae29a2012-06-23 22:30:04 +00003165 // Attributes are not allowed between these keywords. Diagnose,
3166 // but then just treat them like they appeared in the right place.
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00003167 ProhibitAttributes(attrs);
John McCallbeae29a2012-06-23 22:30:04 +00003168
3169 // They are allowed afterwards, though.
3170 MaybeParseGNUAttributes(attrs);
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00003171 MaybeParseCXX0XAttributes(attrs);
John McCallbeae29a2012-06-23 22:30:04 +00003172 while (Tok.is(tok::kw___declspec))
3173 ParseMicrosoftDeclSpec(attrs);
John McCallcb432fa2011-07-06 05:58:41 +00003174 }
Richard Smith7d137e32012-03-23 03:33:32 +00003175
John McCall6347b682012-05-07 06:16:58 +00003176 // C++11 [temp.explicit]p12:
3177 // The usual access controls do not apply to names used to specify
3178 // explicit instantiations.
3179 // We extend this to also cover explicit specializations. Note that
3180 // we don't suppress if this turns out to be an elaborated type
3181 // specifier.
3182 bool shouldDelayDiagsInTag =
3183 (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation ||
3184 TemplateInfo.Kind == ParsedTemplateInfo::ExplicitSpecialization);
3185 SuppressAccessChecks diagsFromTag(*this, shouldDelayDiagsInTag);
Richard Smith7d137e32012-03-23 03:33:32 +00003186
Richard Smithbfdb1082012-03-12 08:56:40 +00003187 // Enum definitions should not be parsed in a trailing-return-type.
3188 bool AllowDeclaration = DSC != DSC_trailing;
3189
3190 bool AllowFixedUnderlyingType = AllowDeclaration &&
3191 (getLangOpts().CPlusPlus0x || getLangOpts().MicrosoftExt ||
3192 getLangOpts().ObjC2);
John McCallcb432fa2011-07-06 05:58:41 +00003193
Abramo Bagnarad7548482010-05-19 21:37:53 +00003194 CXXScopeSpec &SS = DS.getTypeSpecScope();
David Blaikiebbafb8a2012-03-11 07:00:24 +00003195 if (getLangOpts().CPlusPlus) {
John McCallcb432fa2011-07-06 05:58:41 +00003196 // "enum foo : bar;" is not a potential typo for "enum foo::bar;"
3197 // if a fixed underlying type is allowed.
3198 ColonProtectionRAIIObject X(*this, AllowFixedUnderlyingType);
Chad Rosierc1183952012-06-26 22:30:43 +00003199
3200 if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(),
Douglas Gregordf593fb2011-11-07 17:33:42 +00003201 /*EnteringContext=*/false))
John McCall1f476a12010-02-26 08:45:28 +00003202 return;
3203
3204 if (SS.isSet() && Tok.isNot(tok::identifier)) {
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00003205 Diag(Tok, diag::err_expected_ident);
3206 if (Tok.isNot(tok::l_brace)) {
3207 // Has no name and is not a definition.
3208 // Skip the rest of this declarator, up until the comma or semicolon.
3209 SkipUntil(tok::comma, true);
3210 return;
3211 }
3212 }
3213 }
Mike Stump11289f42009-09-09 15:08:12 +00003214
Argyrios Kyrtzidisf01fa822008-09-11 00:21:41 +00003215 // Must have either 'enum name' or 'enum {...}'.
Douglas Gregor6cd5ae42011-02-22 02:55:24 +00003216 if (Tok.isNot(tok::identifier) && Tok.isNot(tok::l_brace) &&
Richard Smithbfdb1082012-03-12 08:56:40 +00003217 !(AllowFixedUnderlyingType && Tok.is(tok::colon))) {
Argyrios Kyrtzidisf01fa822008-09-11 00:21:41 +00003218 Diag(Tok, diag::err_expected_ident_lbrace);
Mike Stump11289f42009-09-09 15:08:12 +00003219
Argyrios Kyrtzidisf01fa822008-09-11 00:21:41 +00003220 // Skip the rest of this declarator, up until the comma or semicolon.
3221 SkipUntil(tok::comma, true);
Chris Lattner3b561a32006-08-13 00:12:11 +00003222 return;
Argyrios Kyrtzidisf01fa822008-09-11 00:21:41 +00003223 }
Mike Stump11289f42009-09-09 15:08:12 +00003224
Argyrios Kyrtzidisf01fa822008-09-11 00:21:41 +00003225 // If an identifier is present, consume and remember it.
3226 IdentifierInfo *Name = 0;
3227 SourceLocation NameLoc;
3228 if (Tok.is(tok::identifier)) {
3229 Name = Tok.getIdentifierInfo();
3230 NameLoc = ConsumeToken();
3231 }
Mike Stump11289f42009-09-09 15:08:12 +00003232
Richard Smith0f8ee222012-01-10 01:33:14 +00003233 if (!Name && ScopedEnumKWLoc.isValid()) {
Douglas Gregor0bf31402010-10-08 23:50:27 +00003234 // C++0x 7.2p2: The optional identifier shall not be omitted in the
3235 // declaration of a scoped enumeration.
3236 Diag(Tok, diag::err_scoped_enum_missing_identifier);
Richard Smith0f8ee222012-01-10 01:33:14 +00003237 ScopedEnumKWLoc = SourceLocation();
Abramo Bagnara0e05e242010-12-03 18:54:17 +00003238 IsScopedUsingClassTag = false;
Douglas Gregor0bf31402010-10-08 23:50:27 +00003239 }
3240
John McCall6347b682012-05-07 06:16:58 +00003241 // Okay, end the suppression area. We'll decide whether to emit the
3242 // diagnostics in a second.
3243 if (shouldDelayDiagsInTag)
3244 diagsFromTag.done();
Richard Smith7d137e32012-03-23 03:33:32 +00003245
Douglas Gregor0bf31402010-10-08 23:50:27 +00003246 TypeResult BaseType;
3247
Douglas Gregord1f69f62010-12-01 17:42:47 +00003248 // Parse the fixed underlying type.
Richard Smith200f47c2012-07-02 19:14:01 +00003249 bool CanBeBitfield = getCurScope()->getFlags() & Scope::ClassScope;
Douglas Gregor6cd5ae42011-02-22 02:55:24 +00003250 if (AllowFixedUnderlyingType && Tok.is(tok::colon)) {
Douglas Gregord1f69f62010-12-01 17:42:47 +00003251 bool PossibleBitfield = false;
Richard Smith200f47c2012-07-02 19:14:01 +00003252 if (CanBeBitfield) {
Douglas Gregord1f69f62010-12-01 17:42:47 +00003253 // If we're in class scope, this can either be an enum declaration with
3254 // an underlying type, or a declaration of a bitfield member. We try to
3255 // use a simple disambiguation scheme first to catch the common cases
Chad Rosierc1183952012-06-26 22:30:43 +00003256 // (integer literal, sizeof); if it's still ambiguous, we then consider
3257 // anything that's a simple-type-specifier followed by '(' as an
3258 // expression. This suffices because function types are not valid
Douglas Gregord1f69f62010-12-01 17:42:47 +00003259 // underlying types anyway.
Richard Smith4f605af2012-08-18 00:55:03 +00003260 EnterExpressionEvaluationContext Unevaluated(Actions,
3261 Sema::ConstantEvaluated);
Douglas Gregord1f69f62010-12-01 17:42:47 +00003262 TPResult TPR = isExpressionOrTypeSpecifierSimple(NextToken().getKind());
Chad Rosierc1183952012-06-26 22:30:43 +00003263 // If the next token starts an expression, we know we're parsing a
Douglas Gregord1f69f62010-12-01 17:42:47 +00003264 // bit-field. This is the common case.
3265 if (TPR == TPResult::True())
3266 PossibleBitfield = true;
3267 // If the next token starts a type-specifier-seq, it may be either a
3268 // a fixed underlying type or the start of a function-style cast in C++;
Chad Rosierc1183952012-06-26 22:30:43 +00003269 // lookahead one more token to see if it's obvious that we have a
Douglas Gregord1f69f62010-12-01 17:42:47 +00003270 // fixed underlying type.
Chad Rosierc1183952012-06-26 22:30:43 +00003271 else if (TPR == TPResult::False() &&
Douglas Gregord1f69f62010-12-01 17:42:47 +00003272 GetLookAheadToken(2).getKind() == tok::semi) {
3273 // Consume the ':'.
3274 ConsumeToken();
3275 } else {
3276 // We have the start of a type-specifier-seq, so we have to perform
3277 // tentative parsing to determine whether we have an expression or a
3278 // type.
3279 TentativeParsingAction TPA(*this);
3280
3281 // Consume the ':'.
3282 ConsumeToken();
Richard Smith1e3b0f02012-02-23 01:36:12 +00003283
3284 // If we see a type specifier followed by an open-brace, we have an
3285 // ambiguity between an underlying type and a C++11 braced
3286 // function-style cast. Resolve this by always treating it as an
3287 // underlying type.
3288 // FIXME: The standard is not entirely clear on how to disambiguate in
3289 // this case.
David Blaikiebbafb8a2012-03-11 07:00:24 +00003290 if ((getLangOpts().CPlusPlus &&
Richard Smith1e3b0f02012-02-23 01:36:12 +00003291 isCXXDeclarationSpecifier(TPResult::True()) != TPResult::True()) ||
David Blaikiebbafb8a2012-03-11 07:00:24 +00003292 (!getLangOpts().CPlusPlus && !isDeclarationSpecifier(true))) {
Douglas Gregord1f69f62010-12-01 17:42:47 +00003293 // We'll parse this as a bitfield later.
3294 PossibleBitfield = true;
3295 TPA.Revert();
3296 } else {
3297 // We have a type-specifier-seq.
3298 TPA.Commit();
3299 }
3300 }
3301 } else {
3302 // Consume the ':'.
3303 ConsumeToken();
3304 }
3305
3306 if (!PossibleBitfield) {
3307 SourceRange Range;
3308 BaseType = ParseTypeName(&Range);
Chad Rosierc1183952012-06-26 22:30:43 +00003309
Eli Friedman0d0355ab2012-11-02 01:34:28 +00003310 if (getLangOpts().CPlusPlus0x) {
Richard Smith5d164bc2011-10-15 05:09:34 +00003311 Diag(StartLoc, diag::warn_cxx98_compat_enum_fixed_underlying_type);
Eli Friedman0d0355ab2012-11-02 01:34:28 +00003312 } else if (!getLangOpts().ObjC2) {
3313 if (getLangOpts().CPlusPlus)
3314 Diag(StartLoc, diag::ext_cxx11_enum_fixed_underlying_type) << Range;
3315 else
3316 Diag(StartLoc, diag::ext_c_enum_fixed_underlying_type) << Range;
3317 }
Douglas Gregord1f69f62010-12-01 17:42:47 +00003318 }
Douglas Gregor0bf31402010-10-08 23:50:27 +00003319 }
3320
Richard Smith0f8ee222012-01-10 01:33:14 +00003321 // There are four options here. If we have 'friend enum foo;' then this is a
3322 // friend declaration, and cannot have an accompanying definition. If we have
3323 // 'enum foo;', then this is a forward declaration. If we have
3324 // 'enum foo {...' then this is a definition. Otherwise we have something
3325 // like 'enum foo xyz', a reference.
Argyrios Kyrtzidisf01fa822008-09-11 00:21:41 +00003326 //
3327 // This is needed to handle stuff like this right (C99 6.7.2.3p11):
3328 // enum foo {..}; void bar() { enum foo; } <- new foo in bar.
3329 // enum foo {..}; void bar() { enum foo x; } <- use of old foo.
3330 //
John McCallfaf5fb42010-08-26 23:41:50 +00003331 Sema::TagUseKind TUK;
John McCall6347b682012-05-07 06:16:58 +00003332 if (!AllowDeclaration) {
Richard Smithbfdb1082012-03-12 08:56:40 +00003333 TUK = Sema::TUK_Reference;
John McCall6347b682012-05-07 06:16:58 +00003334 } else if (Tok.is(tok::l_brace)) {
3335 if (DS.isFriendSpecified()) {
3336 Diag(Tok.getLocation(), diag::err_friend_decl_defines_type)
3337 << SourceRange(DS.getFriendSpecLoc());
3338 ConsumeBrace();
3339 SkipUntil(tok::r_brace);
3340 TUK = Sema::TUK_Friend;
3341 } else {
3342 TUK = Sema::TUK_Definition;
3343 }
Richard Smith369b9f92012-06-25 21:37:02 +00003344 } else if (DSC != DSC_type_specifier &&
3345 (Tok.is(tok::semi) ||
Richard Smith200f47c2012-07-02 19:14:01 +00003346 (Tok.isAtStartOfLine() &&
3347 !isValidAfterTypeSpecifier(CanBeBitfield)))) {
Richard Smith369b9f92012-06-25 21:37:02 +00003348 TUK = DS.isFriendSpecified() ? Sema::TUK_Friend : Sema::TUK_Declaration;
3349 if (Tok.isNot(tok::semi)) {
3350 // A semicolon was missing after this declaration. Diagnose and recover.
3351 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_tagdecl,
3352 "enum");
3353 PP.EnterToken(Tok);
3354 Tok.setKind(tok::semi);
3355 }
John McCall6347b682012-05-07 06:16:58 +00003356 } else {
John McCallfaf5fb42010-08-26 23:41:50 +00003357 TUK = Sema::TUK_Reference;
John McCall6347b682012-05-07 06:16:58 +00003358 }
3359
3360 // If this is an elaborated type specifier, and we delayed
3361 // diagnostics before, just merge them into the current pool.
3362 if (TUK == Sema::TUK_Reference && shouldDelayDiagsInTag) {
3363 diagsFromTag.redelay();
3364 }
Richard Smith7d137e32012-03-23 03:33:32 +00003365
3366 MultiTemplateParamsArg TParams;
Douglas Gregorcbbf3e32010-05-03 17:48:54 +00003367 if (TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate &&
John McCallfaf5fb42010-08-26 23:41:50 +00003368 TUK != Sema::TUK_Reference) {
Richard Smith7d137e32012-03-23 03:33:32 +00003369 if (!getLangOpts().CPlusPlus0x || !SS.isSet()) {
3370 // Skip the rest of this declarator, up until the comma or semicolon.
3371 Diag(Tok, diag::err_enum_template);
3372 SkipUntil(tok::comma, true);
3373 return;
3374 }
3375
3376 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation) {
3377 // Enumerations can't be explicitly instantiated.
3378 DS.SetTypeSpecError();
3379 Diag(StartLoc, diag::err_explicit_instantiation_enum);
3380 return;
3381 }
3382
3383 assert(TemplateInfo.TemplateParams && "no template parameters");
3384 TParams = MultiTemplateParamsArg(TemplateInfo.TemplateParams->data(),
3385 TemplateInfo.TemplateParams->size());
Douglas Gregorcbbf3e32010-05-03 17:48:54 +00003386 }
Chad Rosierc1183952012-06-26 22:30:43 +00003387
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00003388 if (TUK == Sema::TUK_Reference)
3389 ProhibitAttributes(attrs);
Richard Smith7d137e32012-03-23 03:33:32 +00003390
Douglas Gregor6cd5ae42011-02-22 02:55:24 +00003391 if (!Name && TUK != Sema::TUK_Definition) {
3392 Diag(Tok, diag::err_enumerator_unnamed_no_def);
Richard Smith7d137e32012-03-23 03:33:32 +00003393
Douglas Gregor6cd5ae42011-02-22 02:55:24 +00003394 // Skip the rest of this declarator, up until the comma or semicolon.
3395 SkipUntil(tok::comma, true);
3396 return;
3397 }
Richard Smith7d137e32012-03-23 03:33:32 +00003398
Douglas Gregord6ab8742009-05-28 23:31:59 +00003399 bool Owned = false;
John McCall7f41d982009-09-11 04:59:25 +00003400 bool IsDependent = false;
Douglas Gregorba41d012010-04-24 16:38:41 +00003401 const char *PrevSpec = 0;
3402 unsigned DiagID;
John McCall48871652010-08-21 09:40:31 +00003403 Decl *TagDecl = Actions.ActOnTag(getCurScope(), DeclSpec::TST_enum, TUK,
John McCall53fa7142010-12-24 02:08:15 +00003404 StartLoc, SS, Name, NameLoc, attrs.getList(),
Richard Smith7d137e32012-03-23 03:33:32 +00003405 AS, DS.getModulePrivateSpecLoc(), TParams,
Richard Smith0f8ee222012-01-10 01:33:14 +00003406 Owned, IsDependent, ScopedEnumKWLoc,
Abramo Bagnara0e05e242010-12-03 18:54:17 +00003407 IsScopedUsingClassTag, BaseType);
Douglas Gregor0bf31402010-10-08 23:50:27 +00003408
Douglas Gregorba41d012010-04-24 16:38:41 +00003409 if (IsDependent) {
Chad Rosierc1183952012-06-26 22:30:43 +00003410 // This enum has a dependent nested-name-specifier. Handle it as a
Douglas Gregorba41d012010-04-24 16:38:41 +00003411 // dependent tag.
3412 if (!Name) {
3413 DS.SetTypeSpecError();
3414 Diag(Tok, diag::err_expected_type_name_after_typename);
3415 return;
3416 }
Chad Rosierc1183952012-06-26 22:30:43 +00003417
Douglas Gregor0be31a22010-07-02 17:43:08 +00003418 TypeResult Type = Actions.ActOnDependentTag(getCurScope(), DeclSpec::TST_enum,
Chad Rosierc1183952012-06-26 22:30:43 +00003419 TUK, SS, Name, StartLoc,
Douglas Gregorba41d012010-04-24 16:38:41 +00003420 NameLoc);
3421 if (Type.isInvalid()) {
3422 DS.SetTypeSpecError();
3423 return;
3424 }
Chad Rosierc1183952012-06-26 22:30:43 +00003425
Abramo Bagnara9875a3c2011-03-16 20:16:18 +00003426 if (DS.SetTypeSpecType(DeclSpec::TST_typename, StartLoc,
3427 NameLoc.isValid() ? NameLoc : StartLoc,
3428 PrevSpec, DiagID, Type.get()))
Douglas Gregorba41d012010-04-24 16:38:41 +00003429 Diag(StartLoc, DiagID) << PrevSpec;
Chad Rosierc1183952012-06-26 22:30:43 +00003430
Douglas Gregorba41d012010-04-24 16:38:41 +00003431 return;
3432 }
Mike Stump11289f42009-09-09 15:08:12 +00003433
John McCall48871652010-08-21 09:40:31 +00003434 if (!TagDecl) {
Chad Rosierc1183952012-06-26 22:30:43 +00003435 // The action failed to produce an enumeration tag. If this is a
Douglas Gregorba41d012010-04-24 16:38:41 +00003436 // definition, consume the entire definition.
Richard Smithbfdb1082012-03-12 08:56:40 +00003437 if (Tok.is(tok::l_brace) && TUK != Sema::TUK_Reference) {
Douglas Gregorba41d012010-04-24 16:38:41 +00003438 ConsumeBrace();
3439 SkipUntil(tok::r_brace);
3440 }
Chad Rosierc1183952012-06-26 22:30:43 +00003441
Douglas Gregorba41d012010-04-24 16:38:41 +00003442 DS.SetTypeSpecError();
3443 return;
3444 }
Richard Smith0f8ee222012-01-10 01:33:14 +00003445
Richard Smith369b9f92012-06-25 21:37:02 +00003446 if (Tok.is(tok::l_brace) && TUK != Sema::TUK_Reference)
John McCall6347b682012-05-07 06:16:58 +00003447 ParseEnumBody(StartLoc, TagDecl);
Mike Stump11289f42009-09-09 15:08:12 +00003448
Abramo Bagnara9875a3c2011-03-16 20:16:18 +00003449 if (DS.SetTypeSpecType(DeclSpec::TST_enum, StartLoc,
3450 NameLoc.isValid() ? NameLoc : StartLoc,
3451 PrevSpec, DiagID, TagDecl, Owned))
John McCall49bfce42009-08-03 20:12:06 +00003452 Diag(StartLoc, DiagID) << PrevSpec;
Chris Lattner3b561a32006-08-13 00:12:11 +00003453}
3454
Chris Lattnerc1915e22007-01-25 07:29:02 +00003455/// ParseEnumBody - Parse a {} enclosed enumerator-list.
3456/// enumerator-list:
3457/// enumerator
3458/// enumerator-list ',' enumerator
3459/// enumerator:
3460/// enumeration-constant
3461/// enumeration-constant '=' constant-expression
3462/// enumeration-constant:
3463/// identifier
3464///
John McCall48871652010-08-21 09:40:31 +00003465void Parser::ParseEnumBody(SourceLocation StartLoc, Decl *EnumDecl) {
Douglas Gregor07665a62009-01-05 19:45:36 +00003466 // Enter the scope of the enum body and start the definition.
3467 ParseScope EnumScope(this, Scope::DeclScope);
Douglas Gregor0be31a22010-07-02 17:43:08 +00003468 Actions.ActOnTagStartDefinition(getCurScope(), EnumDecl);
Douglas Gregor07665a62009-01-05 19:45:36 +00003469
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003470 BalancedDelimiterTracker T(*this, tok::l_brace);
3471 T.consumeOpen();
Mike Stump11289f42009-09-09 15:08:12 +00003472
Chris Lattner37256fb2007-08-27 17:24:30 +00003473 // C does not allow an empty enumerator-list, C++ does [dcl.enum].
David Blaikiebbafb8a2012-03-11 07:00:24 +00003474 if (Tok.is(tok::r_brace) && !getLangOpts().CPlusPlus)
Fariborz Jahanian6e814922010-05-28 22:23:22 +00003475 Diag(Tok, diag::error_empty_enum);
Mike Stump11289f42009-09-09 15:08:12 +00003476
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003477 SmallVector<Decl *, 32> EnumConstantDecls;
Chris Lattnerc1915e22007-01-25 07:29:02 +00003478
John McCall48871652010-08-21 09:40:31 +00003479 Decl *LastEnumConstDecl = 0;
Mike Stump11289f42009-09-09 15:08:12 +00003480
Chris Lattnerc1915e22007-01-25 07:29:02 +00003481 // Parse the enumerator-list.
Chris Lattner76c72282007-10-09 17:33:22 +00003482 while (Tok.is(tok::identifier)) {
Chris Lattnerc1915e22007-01-25 07:29:02 +00003483 IdentifierInfo *Ident = Tok.getIdentifierInfo();
3484 SourceLocation IdentLoc = ConsumeToken();
Mike Stump11289f42009-09-09 15:08:12 +00003485
John McCall811a0f52010-10-22 23:36:17 +00003486 // If attributes exist after the enumerator, parse them.
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00003487 ParsedAttributesWithRange attrs(AttrFactory);
John McCall53fa7142010-12-24 02:08:15 +00003488 MaybeParseGNUAttributes(attrs);
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00003489 MaybeParseCXX0XAttributes(attrs);
3490 ProhibitAttributes(attrs);
John McCall811a0f52010-10-22 23:36:17 +00003491
Chris Lattnerc1915e22007-01-25 07:29:02 +00003492 SourceLocation EqualLoc;
John McCalldadc5752010-08-24 06:29:42 +00003493 ExprResult AssignedVal;
John McCall2ec85372012-05-07 06:16:41 +00003494 ParsingDeclRAIIObject PD(*this, ParsingDeclRAIIObject::NoParent);
Chad Rosierc1183952012-06-26 22:30:43 +00003495
Chris Lattner76c72282007-10-09 17:33:22 +00003496 if (Tok.is(tok::equal)) {
Chris Lattnerc1915e22007-01-25 07:29:02 +00003497 EqualLoc = ConsumeToken();
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00003498 AssignedVal = ParseConstantExpression();
3499 if (AssignedVal.isInvalid())
Chris Lattnerda6c2ce2007-04-27 19:13:15 +00003500 SkipUntil(tok::comma, tok::r_brace, true, true);
Chris Lattnerc1915e22007-01-25 07:29:02 +00003501 }
Mike Stump11289f42009-09-09 15:08:12 +00003502
Chris Lattnerc1915e22007-01-25 07:29:02 +00003503 // Install the enumerator constant into EnumDecl.
John McCall48871652010-08-21 09:40:31 +00003504 Decl *EnumConstDecl = Actions.ActOnEnumConstant(getCurScope(), EnumDecl,
3505 LastEnumConstDecl,
3506 IdentLoc, Ident,
John McCall53fa7142010-12-24 02:08:15 +00003507 attrs.getList(), EqualLoc,
John McCall48871652010-08-21 09:40:31 +00003508 AssignedVal.release());
Fariborz Jahanian329b3512011-12-09 01:15:54 +00003509 PD.complete(EnumConstDecl);
Chad Rosierc1183952012-06-26 22:30:43 +00003510
Chris Lattner4ef40012007-06-11 01:28:17 +00003511 EnumConstantDecls.push_back(EnumConstDecl);
3512 LastEnumConstDecl = EnumConstDecl;
Mike Stump11289f42009-09-09 15:08:12 +00003513
Douglas Gregorce66d022010-09-07 14:51:08 +00003514 if (Tok.is(tok::identifier)) {
3515 // We're missing a comma between enumerators.
3516 SourceLocation Loc = PP.getLocForEndOfToken(PrevTokLocation);
Chad Rosierc1183952012-06-26 22:30:43 +00003517 Diag(Loc, diag::err_enumerator_list_missing_comma)
Douglas Gregorce66d022010-09-07 14:51:08 +00003518 << FixItHint::CreateInsertion(Loc, ", ");
3519 continue;
3520 }
Chad Rosierc1183952012-06-26 22:30:43 +00003521
Chris Lattner76c72282007-10-09 17:33:22 +00003522 if (Tok.isNot(tok::comma))
Chris Lattnerc1915e22007-01-25 07:29:02 +00003523 break;
3524 SourceLocation CommaLoc = ConsumeToken();
Mike Stump11289f42009-09-09 15:08:12 +00003525
Richard Smith5d164bc2011-10-15 05:09:34 +00003526 if (Tok.isNot(tok::identifier)) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00003527 if (!getLangOpts().C99 && !getLangOpts().CPlusPlus0x)
Richard Smith87f5dc52012-07-23 05:45:25 +00003528 Diag(CommaLoc, getLangOpts().CPlusPlus ?
3529 diag::ext_enumerator_list_comma_cxx :
3530 diag::ext_enumerator_list_comma_c)
Richard Smith5d164bc2011-10-15 05:09:34 +00003531 << FixItHint::CreateRemoval(CommaLoc);
David Blaikiebbafb8a2012-03-11 07:00:24 +00003532 else if (getLangOpts().CPlusPlus0x)
Richard Smith5d164bc2011-10-15 05:09:34 +00003533 Diag(CommaLoc, diag::warn_cxx98_compat_enumerator_list_comma)
3534 << FixItHint::CreateRemoval(CommaLoc);
3535 }
Chris Lattnerc1915e22007-01-25 07:29:02 +00003536 }
Mike Stump11289f42009-09-09 15:08:12 +00003537
Chris Lattnerc1915e22007-01-25 07:29:02 +00003538 // Eat the }.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003539 T.consumeClose();
Chris Lattnerc1915e22007-01-25 07:29:02 +00003540
Chris Lattnerc1915e22007-01-25 07:29:02 +00003541 // If attributes exist after the identifier list, parse them.
John McCall084e83d2011-03-24 11:26:52 +00003542 ParsedAttributes attrs(AttrFactory);
John McCall53fa7142010-12-24 02:08:15 +00003543 MaybeParseGNUAttributes(attrs);
Douglas Gregor82ac25e2009-01-08 20:45:30 +00003544
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003545 Actions.ActOnEnumBody(StartLoc, T.getOpenLocation(), T.getCloseLocation(),
3546 EnumDecl, EnumConstantDecls.data(),
3547 EnumConstantDecls.size(), getCurScope(),
3548 attrs.getList());
Mike Stump11289f42009-09-09 15:08:12 +00003549
Douglas Gregor82ac25e2009-01-08 20:45:30 +00003550 EnumScope.Exit();
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003551 Actions.ActOnTagFinishDefinition(getCurScope(), EnumDecl,
3552 T.getCloseLocation());
Richard Smith369b9f92012-06-25 21:37:02 +00003553
3554 // The next token must be valid after an enum definition. If not, a ';'
3555 // was probably forgotten.
Richard Smith200f47c2012-07-02 19:14:01 +00003556 bool CanBeBitfield = getCurScope()->getFlags() & Scope::ClassScope;
3557 if (!isValidAfterTypeSpecifier(CanBeBitfield)) {
Richard Smith369b9f92012-06-25 21:37:02 +00003558 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_tagdecl, "enum");
3559 // Push this token back into the preprocessor and change our current token
3560 // to ';' so that the rest of the code recovers as though there were an
3561 // ';' after the definition.
3562 PP.EnterToken(Tok);
3563 Tok.setKind(tok::semi);
3564 }
Chris Lattnerc1915e22007-01-25 07:29:02 +00003565}
Chris Lattner3b561a32006-08-13 00:12:11 +00003566
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003567/// isTypeSpecifierQualifier - Return true if the current token could be the
Steve Naroff69e8f9e2008-02-11 23:15:56 +00003568/// start of a type-qualifier-list.
3569bool Parser::isTypeQualifier() const {
3570 switch (Tok.getKind()) {
3571 default: return false;
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00003572
3573 // type-qualifier only in OpenCL
3574 case tok::kw_private:
David Blaikiebbafb8a2012-03-11 07:00:24 +00003575 return getLangOpts().OpenCL;
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00003576
Steve Naroff69e8f9e2008-02-11 23:15:56 +00003577 // type-qualifier
3578 case tok::kw_const:
3579 case tok::kw_volatile:
3580 case tok::kw_restrict:
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00003581 case tok::kw___private:
3582 case tok::kw___local:
3583 case tok::kw___global:
3584 case tok::kw___constant:
3585 case tok::kw___read_only:
3586 case tok::kw___read_write:
3587 case tok::kw___write_only:
Steve Naroff69e8f9e2008-02-11 23:15:56 +00003588 return true;
3589 }
3590}
3591
Chris Lattnerfd48afe2010-02-28 18:18:36 +00003592/// isKnownToBeTypeSpecifier - Return true if we know that the specified token
3593/// is definitely a type-specifier. Return false if it isn't part of a type
3594/// specifier or if we're not sure.
3595bool Parser::isKnownToBeTypeSpecifier(const Token &Tok) const {
3596 switch (Tok.getKind()) {
3597 default: return false;
3598 // type-specifiers
3599 case tok::kw_short:
3600 case tok::kw_long:
Francois Pichet84133e42011-04-28 01:59:37 +00003601 case tok::kw___int64:
Richard Smithf016bbc2012-04-04 06:24:32 +00003602 case tok::kw___int128:
Chris Lattnerfd48afe2010-02-28 18:18:36 +00003603 case tok::kw_signed:
3604 case tok::kw_unsigned:
3605 case tok::kw__Complex:
3606 case tok::kw__Imaginary:
3607 case tok::kw_void:
3608 case tok::kw_char:
3609 case tok::kw_wchar_t:
3610 case tok::kw_char16_t:
3611 case tok::kw_char32_t:
3612 case tok::kw_int:
Anton Korobeynikovf0c267e2011-10-14 23:23:15 +00003613 case tok::kw_half:
Chris Lattnerfd48afe2010-02-28 18:18:36 +00003614 case tok::kw_float:
3615 case tok::kw_double:
3616 case tok::kw_bool:
3617 case tok::kw__Bool:
3618 case tok::kw__Decimal32:
3619 case tok::kw__Decimal64:
3620 case tok::kw__Decimal128:
3621 case tok::kw___vector:
Chad Rosierc1183952012-06-26 22:30:43 +00003622
Guy Benyeid8a08ea2012-12-18 14:38:23 +00003623 // OpenCL specific types:
3624 case tok::kw_image1d_t:
3625 case tok::kw_image1d_array_t:
3626 case tok::kw_image1d_buffer_t:
3627 case tok::kw_image2d_t:
3628 case tok::kw_image2d_array_t:
3629 case tok::kw_image3d_t:
3630
Chris Lattnerfd48afe2010-02-28 18:18:36 +00003631 // struct-or-union-specifier (C99) or class-specifier (C++)
3632 case tok::kw_class:
3633 case tok::kw_struct:
Joao Matosdc86f942012-08-31 18:45:21 +00003634 case tok::kw___interface:
Chris Lattnerfd48afe2010-02-28 18:18:36 +00003635 case tok::kw_union:
3636 // enum-specifier
3637 case tok::kw_enum:
Chad Rosierc1183952012-06-26 22:30:43 +00003638
Chris Lattnerfd48afe2010-02-28 18:18:36 +00003639 // typedef-name
3640 case tok::annot_typename:
3641 return true;
3642 }
3643}
3644
Steve Naroff69e8f9e2008-02-11 23:15:56 +00003645/// isTypeSpecifierQualifier - Return true if the current token could be the
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003646/// start of a specifier-qualifier-list.
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00003647bool Parser::isTypeSpecifierQualifier() {
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003648 switch (Tok.getKind()) {
3649 default: return false;
Mike Stump11289f42009-09-09 15:08:12 +00003650
Chris Lattner020bab92009-01-04 23:41:41 +00003651 case tok::identifier: // foo::bar
John Thompson22334602010-02-05 00:12:22 +00003652 if (TryAltiVecVectorToken())
3653 return true;
3654 // Fall through.
Douglas Gregor333489b2009-03-27 23:10:48 +00003655 case tok::kw_typename: // typename T::type
Chris Lattner020bab92009-01-04 23:41:41 +00003656 // Annotate typenames and C++ scope specifiers. If we get one, just
3657 // recurse to handle whatever we get.
3658 if (TryAnnotateTypeOrScopeToken())
John McCall1f476a12010-02-26 08:45:28 +00003659 return true;
3660 if (Tok.is(tok::identifier))
3661 return false;
3662 return isTypeSpecifierQualifier();
Douglas Gregor333489b2009-03-27 23:10:48 +00003663
Chris Lattner020bab92009-01-04 23:41:41 +00003664 case tok::coloncolon: // ::foo::bar
3665 if (NextToken().is(tok::kw_new) || // ::new
3666 NextToken().is(tok::kw_delete)) // ::delete
3667 return false;
3668
Chris Lattner020bab92009-01-04 23:41:41 +00003669 if (TryAnnotateTypeOrScopeToken())
John McCall1f476a12010-02-26 08:45:28 +00003670 return true;
3671 return isTypeSpecifierQualifier();
Mike Stump11289f42009-09-09 15:08:12 +00003672
Chris Lattnere37e2332006-08-15 04:50:22 +00003673 // GNU attributes support.
3674 case tok::kw___attribute:
Steve Naroffad373bd2007-07-31 12:34:36 +00003675 // GNU typeof support.
3676 case tok::kw_typeof:
Mike Stump11289f42009-09-09 15:08:12 +00003677
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003678 // type-specifiers
3679 case tok::kw_short:
3680 case tok::kw_long:
Francois Pichet84133e42011-04-28 01:59:37 +00003681 case tok::kw___int64:
Richard Smithf016bbc2012-04-04 06:24:32 +00003682 case tok::kw___int128:
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003683 case tok::kw_signed:
3684 case tok::kw_unsigned:
3685 case tok::kw__Complex:
3686 case tok::kw__Imaginary:
3687 case tok::kw_void:
3688 case tok::kw_char:
Argyrios Kyrtzidis40e9e482008-08-09 16:51:54 +00003689 case tok::kw_wchar_t:
Alisdair Mereditha9ad47d2009-07-14 06:30:34 +00003690 case tok::kw_char16_t:
3691 case tok::kw_char32_t:
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003692 case tok::kw_int:
Anton Korobeynikovf0c267e2011-10-14 23:23:15 +00003693 case tok::kw_half:
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003694 case tok::kw_float:
3695 case tok::kw_double:
Chris Lattnerbb31a422007-11-15 05:25:19 +00003696 case tok::kw_bool:
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003697 case tok::kw__Bool:
3698 case tok::kw__Decimal32:
3699 case tok::kw__Decimal64:
3700 case tok::kw__Decimal128:
John Thompson22334602010-02-05 00:12:22 +00003701 case tok::kw___vector:
Mike Stump11289f42009-09-09 15:08:12 +00003702
Guy Benyeid8a08ea2012-12-18 14:38:23 +00003703 // OpenCL specific types:
3704 case tok::kw_image1d_t:
3705 case tok::kw_image1d_array_t:
3706 case tok::kw_image1d_buffer_t:
3707 case tok::kw_image2d_t:
3708 case tok::kw_image2d_array_t:
3709 case tok::kw_image3d_t:
3710
Chris Lattner861a2262008-04-13 18:59:07 +00003711 // struct-or-union-specifier (C99) or class-specifier (C++)
3712 case tok::kw_class:
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003713 case tok::kw_struct:
Joao Matosdc86f942012-08-31 18:45:21 +00003714 case tok::kw___interface:
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003715 case tok::kw_union:
3716 // enum-specifier
3717 case tok::kw_enum:
Mike Stump11289f42009-09-09 15:08:12 +00003718
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003719 // type-qualifier
3720 case tok::kw_const:
3721 case tok::kw_volatile:
3722 case tok::kw_restrict:
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00003723
John McCallea0a39e2012-11-14 00:49:39 +00003724 // Debugger support.
3725 case tok::kw___unknown_anytype:
3726
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00003727 // typedef-name
Chris Lattnera8a3f732009-01-06 05:06:21 +00003728 case tok::annot_typename:
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003729 return true;
Mike Stump11289f42009-09-09 15:08:12 +00003730
Chris Lattner409bf7d2008-10-20 00:25:30 +00003731 // GNU ObjC bizarre protocol extension: <proto1,proto2> with implicit 'id'.
3732 case tok::less:
David Blaikiebbafb8a2012-03-11 07:00:24 +00003733 return getLangOpts().ObjC1;
Mike Stump11289f42009-09-09 15:08:12 +00003734
Steve Naroff44ac7772008-12-25 14:16:32 +00003735 case tok::kw___cdecl:
3736 case tok::kw___stdcall:
3737 case tok::kw___fastcall:
Douglas Gregora941dca2010-05-18 16:57:00 +00003738 case tok::kw___thiscall:
Eli Friedman53339e02009-06-08 23:27:34 +00003739 case tok::kw___w64:
3740 case tok::kw___ptr64:
Francois Pichetf2fb4112011-08-25 00:36:46 +00003741 case tok::kw___ptr32:
Dawn Perchik335e16b2010-09-03 01:29:35 +00003742 case tok::kw___pascal:
Francois Pichet17ed0202011-08-18 09:59:55 +00003743 case tok::kw___unaligned:
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00003744
3745 case tok::kw___private:
3746 case tok::kw___local:
3747 case tok::kw___global:
3748 case tok::kw___constant:
3749 case tok::kw___read_only:
3750 case tok::kw___read_write:
3751 case tok::kw___write_only:
3752
Eli Friedman53339e02009-06-08 23:27:34 +00003753 return true;
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00003754
3755 case tok::kw_private:
David Blaikiebbafb8a2012-03-11 07:00:24 +00003756 return getLangOpts().OpenCL;
Eli Friedman0dfb8892011-10-06 23:00:33 +00003757
Benjamin Kramere56f3932011-12-23 17:00:35 +00003758 // C11 _Atomic()
Eli Friedman0dfb8892011-10-06 23:00:33 +00003759 case tok::kw__Atomic:
3760 return true;
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003761 }
3762}
3763
Chris Lattneracd58a32006-08-06 17:24:14 +00003764/// isDeclarationSpecifier() - Return true if the current token is part of a
3765/// declaration specifier.
Douglas Gregorabf4a3e2010-09-16 01:51:54 +00003766///
3767/// \param DisambiguatingWithExpression True to indicate that the purpose of
3768/// this check is to disambiguate between an expression and a declaration.
3769bool Parser::isDeclarationSpecifier(bool DisambiguatingWithExpression) {
Chris Lattneracd58a32006-08-06 17:24:14 +00003770 switch (Tok.getKind()) {
3771 default: return false;
Mike Stump11289f42009-09-09 15:08:12 +00003772
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00003773 case tok::kw_private:
David Blaikiebbafb8a2012-03-11 07:00:24 +00003774 return getLangOpts().OpenCL;
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00003775
Chris Lattner020bab92009-01-04 23:41:41 +00003776 case tok::identifier: // foo::bar
Steve Naroff9527bbf2009-03-09 21:12:44 +00003777 // Unfortunate hack to support "Class.factoryMethod" notation.
David Blaikiebbafb8a2012-03-11 07:00:24 +00003778 if (getLangOpts().ObjC1 && NextToken().is(tok::period))
Steve Naroff9527bbf2009-03-09 21:12:44 +00003779 return false;
John Thompson22334602010-02-05 00:12:22 +00003780 if (TryAltiVecVectorToken())
3781 return true;
3782 // Fall through.
David Blaikie15a430a2011-12-04 05:04:18 +00003783 case tok::kw_decltype: // decltype(T())::type
Douglas Gregor333489b2009-03-27 23:10:48 +00003784 case tok::kw_typename: // typename T::type
Chris Lattner020bab92009-01-04 23:41:41 +00003785 // Annotate typenames and C++ scope specifiers. If we get one, just
3786 // recurse to handle whatever we get.
3787 if (TryAnnotateTypeOrScopeToken())
John McCall1f476a12010-02-26 08:45:28 +00003788 return true;
3789 if (Tok.is(tok::identifier))
3790 return false;
Chad Rosierc1183952012-06-26 22:30:43 +00003791
Douglas Gregorabf4a3e2010-09-16 01:51:54 +00003792 // If we're in Objective-C and we have an Objective-C class type followed
Chad Rosierc1183952012-06-26 22:30:43 +00003793 // by an identifier and then either ':' or ']', in a place where an
Douglas Gregorabf4a3e2010-09-16 01:51:54 +00003794 // expression is permitted, then this is probably a class message send
3795 // missing the initial '['. In this case, we won't consider this to be
3796 // the start of a declaration.
Chad Rosierc1183952012-06-26 22:30:43 +00003797 if (DisambiguatingWithExpression &&
Douglas Gregorabf4a3e2010-09-16 01:51:54 +00003798 isStartOfObjCClassMessageMissingOpenBracket())
3799 return false;
Chad Rosierc1183952012-06-26 22:30:43 +00003800
John McCall1f476a12010-02-26 08:45:28 +00003801 return isDeclarationSpecifier();
3802
Chris Lattner020bab92009-01-04 23:41:41 +00003803 case tok::coloncolon: // ::foo::bar
3804 if (NextToken().is(tok::kw_new) || // ::new
3805 NextToken().is(tok::kw_delete)) // ::delete
3806 return false;
Mike Stump11289f42009-09-09 15:08:12 +00003807
Chris Lattner020bab92009-01-04 23:41:41 +00003808 // Annotate typenames and C++ scope specifiers. If we get one, just
3809 // recurse to handle whatever we get.
3810 if (TryAnnotateTypeOrScopeToken())
John McCall1f476a12010-02-26 08:45:28 +00003811 return true;
3812 return isDeclarationSpecifier();
Mike Stump11289f42009-09-09 15:08:12 +00003813
Chris Lattneracd58a32006-08-06 17:24:14 +00003814 // storage-class-specifier
3815 case tok::kw_typedef:
3816 case tok::kw_extern:
Steve Naroff2050b0d2007-12-18 00:16:02 +00003817 case tok::kw___private_extern__:
Chris Lattneracd58a32006-08-06 17:24:14 +00003818 case tok::kw_static:
3819 case tok::kw_auto:
3820 case tok::kw_register:
3821 case tok::kw___thread:
Mike Stump11289f42009-09-09 15:08:12 +00003822
Douglas Gregor26701a42011-09-09 02:06:17 +00003823 // Modules
3824 case tok::kw___module_private__:
Chad Rosierc1183952012-06-26 22:30:43 +00003825
John McCallea0a39e2012-11-14 00:49:39 +00003826 // Debugger support
3827 case tok::kw___unknown_anytype:
3828
Chris Lattneracd58a32006-08-06 17:24:14 +00003829 // type-specifiers
3830 case tok::kw_short:
3831 case tok::kw_long:
Francois Pichet84133e42011-04-28 01:59:37 +00003832 case tok::kw___int64:
Richard Smithf016bbc2012-04-04 06:24:32 +00003833 case tok::kw___int128:
Chris Lattneracd58a32006-08-06 17:24:14 +00003834 case tok::kw_signed:
3835 case tok::kw_unsigned:
3836 case tok::kw__Complex:
3837 case tok::kw__Imaginary:
3838 case tok::kw_void:
3839 case tok::kw_char:
Argyrios Kyrtzidis40e9e482008-08-09 16:51:54 +00003840 case tok::kw_wchar_t:
Alisdair Mereditha9ad47d2009-07-14 06:30:34 +00003841 case tok::kw_char16_t:
3842 case tok::kw_char32_t:
3843
Chris Lattneracd58a32006-08-06 17:24:14 +00003844 case tok::kw_int:
Anton Korobeynikovf0c267e2011-10-14 23:23:15 +00003845 case tok::kw_half:
Chris Lattneracd58a32006-08-06 17:24:14 +00003846 case tok::kw_float:
3847 case tok::kw_double:
Chris Lattnerbb31a422007-11-15 05:25:19 +00003848 case tok::kw_bool:
Chris Lattneracd58a32006-08-06 17:24:14 +00003849 case tok::kw__Bool:
3850 case tok::kw__Decimal32:
3851 case tok::kw__Decimal64:
3852 case tok::kw__Decimal128:
John Thompson22334602010-02-05 00:12:22 +00003853 case tok::kw___vector:
Mike Stump11289f42009-09-09 15:08:12 +00003854
Guy Benyeid8a08ea2012-12-18 14:38:23 +00003855 // OpenCL specific types:
3856 case tok::kw_image1d_t:
3857 case tok::kw_image1d_array_t:
3858 case tok::kw_image1d_buffer_t:
3859 case tok::kw_image2d_t:
3860 case tok::kw_image2d_array_t:
3861 case tok::kw_image3d_t:
3862
Chris Lattner861a2262008-04-13 18:59:07 +00003863 // struct-or-union-specifier (C99) or class-specifier (C++)
3864 case tok::kw_class:
Chris Lattneracd58a32006-08-06 17:24:14 +00003865 case tok::kw_struct:
3866 case tok::kw_union:
Joao Matosdc86f942012-08-31 18:45:21 +00003867 case tok::kw___interface:
Chris Lattneracd58a32006-08-06 17:24:14 +00003868 // enum-specifier
3869 case tok::kw_enum:
Mike Stump11289f42009-09-09 15:08:12 +00003870
Chris Lattneracd58a32006-08-06 17:24:14 +00003871 // type-qualifier
3872 case tok::kw_const:
3873 case tok::kw_volatile:
3874 case tok::kw_restrict:
Steve Naroffad373bd2007-07-31 12:34:36 +00003875
Chris Lattneracd58a32006-08-06 17:24:14 +00003876 // function-specifier
3877 case tok::kw_inline:
Douglas Gregor61956c42008-10-31 09:07:45 +00003878 case tok::kw_virtual:
3879 case tok::kw_explicit:
Chris Lattner7b20dc72007-08-09 16:40:21 +00003880
Richard Smithd16fe122012-10-25 00:00:53 +00003881 // friend keyword.
3882 case tok::kw_friend:
3883
Peter Collingbourne3d9cbdc2011-04-15 00:35:57 +00003884 // static_assert-declaration
3885 case tok::kw__Static_assert:
3886
Chris Lattner599e47e2007-08-09 17:01:07 +00003887 // GNU typeof support.
3888 case tok::kw_typeof:
Mike Stump11289f42009-09-09 15:08:12 +00003889
Chris Lattner599e47e2007-08-09 17:01:07 +00003890 // GNU attributes.
Chris Lattner7b20dc72007-08-09 16:40:21 +00003891 case tok::kw___attribute:
Mike Stump11289f42009-09-09 15:08:12 +00003892
Richard Smithd16fe122012-10-25 00:00:53 +00003893 // C++11 decltype and constexpr.
David Blaikie15a430a2011-12-04 05:04:18 +00003894 case tok::annot_decltype:
Richard Smithd16fe122012-10-25 00:00:53 +00003895 case tok::kw_constexpr:
Francois Pichete878cb62011-06-19 08:02:06 +00003896
Benjamin Kramere56f3932011-12-23 17:00:35 +00003897 // C11 _Atomic()
Eli Friedman0dfb8892011-10-06 23:00:33 +00003898 case tok::kw__Atomic:
3899 return true;
3900
Chris Lattner8b2ec162008-07-26 03:38:44 +00003901 // GNU ObjC bizarre protocol extension: <proto1,proto2> with implicit 'id'.
3902 case tok::less:
David Blaikiebbafb8a2012-03-11 07:00:24 +00003903 return getLangOpts().ObjC1;
Mike Stump11289f42009-09-09 15:08:12 +00003904
Douglas Gregor19b7acf2011-04-27 05:41:15 +00003905 // typedef-name
3906 case tok::annot_typename:
3907 return !DisambiguatingWithExpression ||
3908 !isStartOfObjCClassMessageMissingOpenBracket();
Chad Rosierc1183952012-06-26 22:30:43 +00003909
Steve Narofff192fab2009-01-06 19:34:12 +00003910 case tok::kw___declspec:
Steve Naroff44ac7772008-12-25 14:16:32 +00003911 case tok::kw___cdecl:
3912 case tok::kw___stdcall:
3913 case tok::kw___fastcall:
Douglas Gregora941dca2010-05-18 16:57:00 +00003914 case tok::kw___thiscall:
Eli Friedman53339e02009-06-08 23:27:34 +00003915 case tok::kw___w64:
3916 case tok::kw___ptr64:
Francois Pichetf2fb4112011-08-25 00:36:46 +00003917 case tok::kw___ptr32:
Eli Friedman53339e02009-06-08 23:27:34 +00003918 case tok::kw___forceinline:
Dawn Perchik335e16b2010-09-03 01:29:35 +00003919 case tok::kw___pascal:
Francois Pichet17ed0202011-08-18 09:59:55 +00003920 case tok::kw___unaligned:
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00003921
3922 case tok::kw___private:
3923 case tok::kw___local:
3924 case tok::kw___global:
3925 case tok::kw___constant:
3926 case tok::kw___read_only:
3927 case tok::kw___read_write:
3928 case tok::kw___write_only:
3929
Eli Friedman53339e02009-06-08 23:27:34 +00003930 return true;
Chris Lattneracd58a32006-08-06 17:24:14 +00003931 }
3932}
3933
Douglas Gregor9de54ea2010-01-13 17:31:36 +00003934bool Parser::isConstructorDeclarator() {
3935 TentativeParsingAction TPA(*this);
3936
3937 // Parse the C++ scope specifier.
3938 CXXScopeSpec SS;
Chad Rosierc1183952012-06-26 22:30:43 +00003939 if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(),
Douglas Gregordf593fb2011-11-07 17:33:42 +00003940 /*EnteringContext=*/true)) {
John McCall1f476a12010-02-26 08:45:28 +00003941 TPA.Revert();
3942 return false;
3943 }
Douglas Gregor9de54ea2010-01-13 17:31:36 +00003944
3945 // Parse the constructor name.
3946 if (Tok.is(tok::identifier) || Tok.is(tok::annot_template_id)) {
3947 // We already know that we have a constructor name; just consume
3948 // the token.
3949 ConsumeToken();
3950 } else {
3951 TPA.Revert();
3952 return false;
3953 }
3954
Richard Smith43f340f2012-03-27 23:05:05 +00003955 // Current class name must be followed by a left parenthesis.
Douglas Gregor9de54ea2010-01-13 17:31:36 +00003956 if (Tok.isNot(tok::l_paren)) {
3957 TPA.Revert();
3958 return false;
3959 }
3960 ConsumeParen();
3961
Richard Smith43f340f2012-03-27 23:05:05 +00003962 // A right parenthesis, or ellipsis followed by a right parenthesis signals
3963 // that we have a constructor.
3964 if (Tok.is(tok::r_paren) ||
3965 (Tok.is(tok::ellipsis) && NextToken().is(tok::r_paren))) {
Douglas Gregor9de54ea2010-01-13 17:31:36 +00003966 TPA.Revert();
3967 return true;
3968 }
3969
3970 // If we need to, enter the specified scope.
3971 DeclaratorScopeObj DeclScopeObj(*this, SS);
Douglas Gregor0be31a22010-07-02 17:43:08 +00003972 if (SS.isSet() && Actions.ShouldEnterDeclaratorScope(getCurScope(), SS))
Douglas Gregor9de54ea2010-01-13 17:31:36 +00003973 DeclScopeObj.EnterDeclaratorScope();
3974
Francois Pichet79f3a872011-01-31 04:54:32 +00003975 // Optionally skip Microsoft attributes.
John McCall084e83d2011-03-24 11:26:52 +00003976 ParsedAttributes Attrs(AttrFactory);
Francois Pichet79f3a872011-01-31 04:54:32 +00003977 MaybeParseMicrosoftAttributes(Attrs);
3978
Douglas Gregor9de54ea2010-01-13 17:31:36 +00003979 // Check whether the next token(s) are part of a declaration
3980 // specifier, in which case we have the start of a parameter and,
3981 // therefore, we know that this is a constructor.
Richard Smithefd009d2012-03-27 00:56:56 +00003982 bool IsConstructor = false;
3983 if (isDeclarationSpecifier())
3984 IsConstructor = true;
3985 else if (Tok.is(tok::identifier) ||
3986 (Tok.is(tok::annot_cxxscope) && NextToken().is(tok::identifier))) {
3987 // We've seen "C ( X" or "C ( X::Y", but "X" / "X::Y" is not a type.
3988 // This might be a parenthesized member name, but is more likely to
3989 // be a constructor declaration with an invalid argument type. Keep
3990 // looking.
3991 if (Tok.is(tok::annot_cxxscope))
3992 ConsumeToken();
3993 ConsumeToken();
3994
3995 // If this is not a constructor, we must be parsing a declarator,
Richard Smith1453e312012-03-27 01:42:32 +00003996 // which must have one of the following syntactic forms (see the
3997 // grammar extract at the start of ParseDirectDeclarator):
Richard Smithefd009d2012-03-27 00:56:56 +00003998 switch (Tok.getKind()) {
3999 case tok::l_paren:
4000 // C(X ( int));
4001 case tok::l_square:
4002 // C(X [ 5]);
4003 // C(X [ [attribute]]);
4004 case tok::coloncolon:
4005 // C(X :: Y);
4006 // C(X :: *p);
4007 case tok::r_paren:
4008 // C(X )
4009 // Assume this isn't a constructor, rather than assuming it's a
4010 // constructor with an unnamed parameter of an ill-formed type.
4011 break;
4012
4013 default:
4014 IsConstructor = true;
4015 break;
4016 }
4017 }
4018
Douglas Gregor9de54ea2010-01-13 17:31:36 +00004019 TPA.Revert();
4020 return IsConstructor;
4021}
Chris Lattnerb9093cd2006-08-04 04:39:53 +00004022
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004023/// ParseTypeQualifierListOpt
Dawn Perchik335e16b2010-09-03 01:29:35 +00004024/// type-qualifier-list: [C99 6.7.5]
4025/// type-qualifier
Chad Rosierc1183952012-06-26 22:30:43 +00004026/// [vendor] attributes
Dawn Perchik335e16b2010-09-03 01:29:35 +00004027/// [ only if VendorAttributesAllowed=true ]
4028/// type-qualifier-list type-qualifier
Chad Rosierc1183952012-06-26 22:30:43 +00004029/// [vendor] type-qualifier-list attributes
Dawn Perchik335e16b2010-09-03 01:29:35 +00004030/// [ only if VendorAttributesAllowed=true ]
4031/// [C++0x] attribute-specifier[opt] is allowed before cv-qualifier-seq
4032/// [ only if CXX0XAttributesAllowed=true ]
4033/// Note: vendor can be GNU, MS, etc.
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004034///
Dawn Perchik335e16b2010-09-03 01:29:35 +00004035void Parser::ParseTypeQualifierListOpt(DeclSpec &DS,
4036 bool VendorAttributesAllowed,
Richard Smith3dff2512012-04-10 03:25:07 +00004037 bool CXX11AttributesAllowed) {
4038 if (getLangOpts().CPlusPlus0x && CXX11AttributesAllowed &&
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004039 isCXX11AttributeSpecifier()) {
John McCall084e83d2011-03-24 11:26:52 +00004040 ParsedAttributesWithRange attrs(AttrFactory);
Richard Smith3dff2512012-04-10 03:25:07 +00004041 ParseCXX11Attributes(attrs);
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004042 DS.takeAttributesFrom(attrs);
Alexis Hunt96d5c762009-11-21 08:43:09 +00004043 }
Abramo Bagnaraf2a79d92011-03-12 11:17:06 +00004044
4045 SourceLocation EndLoc;
4046
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004047 while (1) {
John McCall49bfce42009-08-03 20:12:06 +00004048 bool isInvalid = false;
Chris Lattnerd9c3c592006-08-05 06:26:47 +00004049 const char *PrevSpec = 0;
John McCall49bfce42009-08-03 20:12:06 +00004050 unsigned DiagID = 0;
Chris Lattner60809f52006-11-28 05:18:46 +00004051 SourceLocation Loc = Tok.getLocation();
Chris Lattnerd9c3c592006-08-05 06:26:47 +00004052
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004053 switch (Tok.getKind()) {
Douglas Gregor28c78432010-08-27 17:35:51 +00004054 case tok::code_completion:
4055 Actions.CodeCompleteTypeQualifiers(DS);
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +00004056 return cutOffParsing();
Chad Rosierc1183952012-06-26 22:30:43 +00004057
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004058 case tok::kw_const:
John McCall49bfce42009-08-03 20:12:06 +00004059 isInvalid = DS.SetTypeQual(DeclSpec::TQ_const , Loc, PrevSpec, DiagID,
Richard Smith87e79512012-10-17 23:31:46 +00004060 getLangOpts());
Chris Lattnerd9c3c592006-08-05 06:26:47 +00004061 break;
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004062 case tok::kw_volatile:
John McCall49bfce42009-08-03 20:12:06 +00004063 isInvalid = DS.SetTypeQual(DeclSpec::TQ_volatile, Loc, PrevSpec, DiagID,
Richard Smith87e79512012-10-17 23:31:46 +00004064 getLangOpts());
Chris Lattnerd9c3c592006-08-05 06:26:47 +00004065 break;
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004066 case tok::kw_restrict:
John McCall49bfce42009-08-03 20:12:06 +00004067 isInvalid = DS.SetTypeQual(DeclSpec::TQ_restrict, Loc, PrevSpec, DiagID,
Richard Smith87e79512012-10-17 23:31:46 +00004068 getLangOpts());
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004069 break;
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00004070
4071 // OpenCL qualifiers:
Chad Rosierc1183952012-06-26 22:30:43 +00004072 case tok::kw_private:
David Blaikiebbafb8a2012-03-11 07:00:24 +00004073 if (!getLangOpts().OpenCL)
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00004074 goto DoneWithTypeQuals;
4075 case tok::kw___private:
4076 case tok::kw___global:
4077 case tok::kw___local:
4078 case tok::kw___constant:
4079 case tok::kw___read_only:
4080 case tok::kw___write_only:
4081 case tok::kw___read_write:
4082 ParseOpenCLQualifiers(DS);
4083 break;
4084
Eli Friedman53339e02009-06-08 23:27:34 +00004085 case tok::kw___w64:
Steve Narofff9c29d42008-12-25 14:41:26 +00004086 case tok::kw___ptr64:
Francois Pichetf2fb4112011-08-25 00:36:46 +00004087 case tok::kw___ptr32:
Steve Naroff44ac7772008-12-25 14:16:32 +00004088 case tok::kw___cdecl:
4089 case tok::kw___stdcall:
4090 case tok::kw___fastcall:
Douglas Gregora941dca2010-05-18 16:57:00 +00004091 case tok::kw___thiscall:
Francois Pichet17ed0202011-08-18 09:59:55 +00004092 case tok::kw___unaligned:
Dawn Perchik335e16b2010-09-03 01:29:35 +00004093 if (VendorAttributesAllowed) {
John McCall53fa7142010-12-24 02:08:15 +00004094 ParseMicrosoftTypeAttributes(DS.getAttributes());
Eli Friedman53339e02009-06-08 23:27:34 +00004095 continue;
4096 }
4097 goto DoneWithTypeQuals;
Dawn Perchik335e16b2010-09-03 01:29:35 +00004098 case tok::kw___pascal:
4099 if (VendorAttributesAllowed) {
John McCall53fa7142010-12-24 02:08:15 +00004100 ParseBorlandTypeAttributes(DS.getAttributes());
Dawn Perchik335e16b2010-09-03 01:29:35 +00004101 continue;
4102 }
4103 goto DoneWithTypeQuals;
Chris Lattnere37e2332006-08-15 04:50:22 +00004104 case tok::kw___attribute:
Dawn Perchik335e16b2010-09-03 01:29:35 +00004105 if (VendorAttributesAllowed) {
John McCall53fa7142010-12-24 02:08:15 +00004106 ParseGNUAttributes(DS.getAttributes());
Chris Lattnercf0bab22008-12-18 07:02:59 +00004107 continue; // do *not* consume the next token!
4108 }
4109 // otherwise, FALL THROUGH!
4110 default:
Steve Naroff44ac7772008-12-25 14:16:32 +00004111 DoneWithTypeQuals:
Chris Lattnercf0bab22008-12-18 07:02:59 +00004112 // If this is not a type-qualifier token, we're done reading type
4113 // qualifiers. First verify that DeclSpec's are consistent.
Douglas Gregore3e01a22009-04-01 22:41:11 +00004114 DS.Finish(Diags, PP);
Abramo Bagnaraf2a79d92011-03-12 11:17:06 +00004115 if (EndLoc.isValid())
4116 DS.SetRangeEnd(EndLoc);
Chris Lattnercf0bab22008-12-18 07:02:59 +00004117 return;
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004118 }
Chris Lattnerb6ec4e72008-12-18 06:50:14 +00004119
Chris Lattnerd9c3c592006-08-05 06:26:47 +00004120 // If the specifier combination wasn't legal, issue a diagnostic.
4121 if (isInvalid) {
4122 assert(PrevSpec && "Method did not return previous specifier!");
Chris Lattner6d29c102008-11-18 07:48:38 +00004123 Diag(Tok, DiagID) << PrevSpec;
Chris Lattnerd9c3c592006-08-05 06:26:47 +00004124 }
Abramo Bagnaraf2a79d92011-03-12 11:17:06 +00004125 EndLoc = ConsumeToken();
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004126 }
4127}
4128
Chris Lattnerd5d0a6c2006-08-07 00:58:14 +00004129
4130/// ParseDeclarator - Parse and verify a newly-initialized declarator.
4131///
4132void Parser::ParseDeclarator(Declarator &D) {
4133 /// This implements the 'declarator' production in the C grammar, then checks
4134 /// for well-formedness and issues diagnostics.
Sebastian Redlbd150f42008-11-21 19:14:01 +00004135 ParseDeclaratorInternal(D, &Parser::ParseDirectDeclarator);
Chris Lattnerd5d0a6c2006-08-07 00:58:14 +00004136}
4137
Richard Smith0efa75c2012-03-29 01:16:42 +00004138static bool isPtrOperatorToken(tok::TokenKind Kind, const LangOptions &Lang) {
4139 if (Kind == tok::star || Kind == tok::caret)
4140 return true;
4141
4142 // We parse rvalue refs in C++03, because otherwise the errors are scary.
4143 if (!Lang.CPlusPlus)
4144 return false;
4145
4146 return Kind == tok::amp || Kind == tok::ampamp;
4147}
4148
Sebastian Redlbd150f42008-11-21 19:14:01 +00004149/// ParseDeclaratorInternal - Parse a C or C++ declarator. The direct-declarator
4150/// is parsed by the function passed to it. Pass null, and the direct-declarator
4151/// isn't parsed at all, making this function effectively parse the C++
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004152/// ptr-operator production.
4153///
Richard Smith09f76ee2011-10-19 21:33:05 +00004154/// If the grammar of this construct is extended, matching changes must also be
Richard Smith1453e312012-03-27 01:42:32 +00004155/// made to TryParseDeclarator and MightBeDeclarator, and possibly to
4156/// isConstructorDeclarator.
Richard Smith09f76ee2011-10-19 21:33:05 +00004157///
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004158/// declarator: [C99 6.7.5] [C++ 8p4, dcl.decl]
4159/// [C] pointer[opt] direct-declarator
4160/// [C++] direct-declarator
4161/// [C++] ptr-operator declarator
Chris Lattner6c7416c2006-08-07 00:19:33 +00004162///
4163/// pointer: [C99 6.7.5]
4164/// '*' type-qualifier-list[opt]
4165/// '*' type-qualifier-list[opt] pointer
4166///
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004167/// ptr-operator:
4168/// '*' cv-qualifier-seq[opt]
4169/// '&'
Sebastian Redled0f3b02009-03-15 22:02:01 +00004170/// [C++0x] '&&'
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004171/// [GNU] '&' restrict[opt] attributes[opt]
Sebastian Redled0f3b02009-03-15 22:02:01 +00004172/// [GNU?] '&&' restrict[opt] attributes[opt]
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004173/// '::'[opt] nested-name-specifier '*' cv-qualifier-seq[opt]
Sebastian Redlbd150f42008-11-21 19:14:01 +00004174void Parser::ParseDeclaratorInternal(Declarator &D,
4175 DirectDeclParseFunction DirectDeclParser) {
Douglas Gregor66a985d2009-08-26 14:27:30 +00004176 if (Diags.hasAllExtensionsSilenced())
4177 D.setExtension();
Chad Rosierc1183952012-06-26 22:30:43 +00004178
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004179 // C++ member pointers start with a '::' or a nested-name.
4180 // Member pointers get special handling, since there's no place for the
4181 // scope spec in the generic path below.
David Blaikiebbafb8a2012-03-11 07:00:24 +00004182 if (getLangOpts().CPlusPlus &&
Chris Lattner803802d2009-03-24 17:04:48 +00004183 (Tok.is(tok::coloncolon) || Tok.is(tok::identifier) ||
4184 Tok.is(tok::annot_cxxscope))) {
Douglas Gregordf593fb2011-11-07 17:33:42 +00004185 bool EnteringContext = D.getContext() == Declarator::FileContext ||
4186 D.getContext() == Declarator::MemberContext;
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004187 CXXScopeSpec SS;
Douglas Gregordf593fb2011-11-07 17:33:42 +00004188 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), EnteringContext);
John McCall1f476a12010-02-26 08:45:28 +00004189
Jeffrey Yasskin4e150f82010-04-07 23:29:58 +00004190 if (SS.isNotEmpty()) {
Mike Stump11289f42009-09-09 15:08:12 +00004191 if (Tok.isNot(tok::star)) {
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004192 // The scope spec really belongs to the direct-declarator.
4193 D.getCXXScopeSpec() = SS;
4194 if (DirectDeclParser)
4195 (this->*DirectDeclParser)(D);
4196 return;
4197 }
4198
4199 SourceLocation Loc = ConsumeToken();
Sebastian Redlf6591ca2009-02-09 18:23:29 +00004200 D.SetRangeEnd(Loc);
John McCall084e83d2011-03-24 11:26:52 +00004201 DeclSpec DS(AttrFactory);
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004202 ParseTypeQualifierListOpt(DS);
Sebastian Redlf6591ca2009-02-09 18:23:29 +00004203 D.ExtendWithDeclSpec(DS);
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004204
4205 // Recurse to parse whatever is left.
4206 ParseDeclaratorInternal(D, DirectDeclParser);
4207
4208 // Sema will have to catch (syntactically invalid) pointers into global
4209 // scope. It has to catch pointers into namespace scope anyway.
4210 D.AddTypeInfo(DeclaratorChunk::getMemberPointer(SS,DS.getTypeQualifiers(),
John McCall084e83d2011-03-24 11:26:52 +00004211 Loc),
4212 DS.getAttributes(),
Sebastian Redlf6591ca2009-02-09 18:23:29 +00004213 /* Don't replace range end. */SourceLocation());
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004214 return;
4215 }
4216 }
4217
4218 tok::TokenKind Kind = Tok.getKind();
Steve Naroffec33ed92008-08-27 16:04:49 +00004219 // Not a pointer, C++ reference, or block.
Richard Smith0efa75c2012-03-29 01:16:42 +00004220 if (!isPtrOperatorToken(Kind, getLangOpts())) {
Sebastian Redlbd150f42008-11-21 19:14:01 +00004221 if (DirectDeclParser)
4222 (this->*DirectDeclParser)(D);
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004223 return;
4224 }
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004225
Sebastian Redled0f3b02009-03-15 22:02:01 +00004226 // Otherwise, '*' -> pointer, '^' -> block, '&' -> lvalue reference,
4227 // '&&' -> rvalue reference
Sebastian Redl3b27be62009-03-23 00:00:23 +00004228 SourceLocation Loc = ConsumeToken(); // Eat the *, ^, & or &&.
Sebastian Redlf6591ca2009-02-09 18:23:29 +00004229 D.SetRangeEnd(Loc);
Bill Wendling3708c182007-05-27 10:15:43 +00004230
Chris Lattner9eac9312009-03-27 04:18:06 +00004231 if (Kind == tok::star || Kind == tok::caret) {
Chris Lattner788404f2008-02-21 01:32:26 +00004232 // Is a pointer.
John McCall084e83d2011-03-24 11:26:52 +00004233 DeclSpec DS(AttrFactory);
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004234
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004235 // FIXME: GNU attributes are not allowed here in a new-type-id.
Bill Wendling3708c182007-05-27 10:15:43 +00004236 ParseTypeQualifierListOpt(DS);
Sebastian Redlf6591ca2009-02-09 18:23:29 +00004237 D.ExtendWithDeclSpec(DS);
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004238
Bill Wendling3708c182007-05-27 10:15:43 +00004239 // Recursively parse the declarator.
Sebastian Redlbd150f42008-11-21 19:14:01 +00004240 ParseDeclaratorInternal(D, DirectDeclParser);
Steve Naroffec33ed92008-08-27 16:04:49 +00004241 if (Kind == tok::star)
4242 // Remember that we parsed a pointer type, and remember the type-quals.
4243 D.AddTypeInfo(DeclaratorChunk::getPointer(DS.getTypeQualifiers(), Loc,
Chandler Carruthe71b378d2011-02-23 18:51:59 +00004244 DS.getConstSpecLoc(),
4245 DS.getVolatileSpecLoc(),
John McCall084e83d2011-03-24 11:26:52 +00004246 DS.getRestrictSpecLoc()),
4247 DS.getAttributes(),
Sebastian Redlf6591ca2009-02-09 18:23:29 +00004248 SourceLocation());
Steve Naroffec33ed92008-08-27 16:04:49 +00004249 else
4250 // Remember that we parsed a Block type, and remember the type-quals.
Mike Stump11289f42009-09-09 15:08:12 +00004251 D.AddTypeInfo(DeclaratorChunk::getBlockPointer(DS.getTypeQualifiers(),
John McCall084e83d2011-03-24 11:26:52 +00004252 Loc),
4253 DS.getAttributes(),
Sebastian Redlf6591ca2009-02-09 18:23:29 +00004254 SourceLocation());
Bill Wendling3708c182007-05-27 10:15:43 +00004255 } else {
4256 // Is a reference
John McCall084e83d2011-03-24 11:26:52 +00004257 DeclSpec DS(AttrFactory);
Bill Wendling93efb222007-06-02 23:28:54 +00004258
Sebastian Redl3b27be62009-03-23 00:00:23 +00004259 // Complain about rvalue references in C++03, but then go on and build
4260 // the declarator.
Richard Smith5d164bc2011-10-15 05:09:34 +00004261 if (Kind == tok::ampamp)
David Blaikiebbafb8a2012-03-11 07:00:24 +00004262 Diag(Loc, getLangOpts().CPlusPlus0x ?
Richard Smith5d164bc2011-10-15 05:09:34 +00004263 diag::warn_cxx98_compat_rvalue_reference :
4264 diag::ext_rvalue_reference);
Sebastian Redl3b27be62009-03-23 00:00:23 +00004265
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004266 // GNU-style and C++11 attributes are allowed here, as is restrict.
4267 ParseTypeQualifierListOpt(DS);
4268 D.ExtendWithDeclSpec(DS);
4269
Bill Wendling93efb222007-06-02 23:28:54 +00004270 // C++ 8.3.2p1: cv-qualified references are ill-formed except when the
4271 // cv-qualifiers are introduced through the use of a typedef or of a
4272 // template type argument, in which case the cv-qualifiers are ignored.
Bill Wendling93efb222007-06-02 23:28:54 +00004273 if (DS.getTypeQualifiers() != DeclSpec::TQ_unspecified) {
4274 if (DS.getTypeQualifiers() & DeclSpec::TQ_const)
4275 Diag(DS.getConstSpecLoc(),
Chris Lattner6d29c102008-11-18 07:48:38 +00004276 diag::err_invalid_reference_qualifier_application) << "const";
Bill Wendling93efb222007-06-02 23:28:54 +00004277 if (DS.getTypeQualifiers() & DeclSpec::TQ_volatile)
4278 Diag(DS.getVolatileSpecLoc(),
Chris Lattner6d29c102008-11-18 07:48:38 +00004279 diag::err_invalid_reference_qualifier_application) << "volatile";
Bill Wendling93efb222007-06-02 23:28:54 +00004280 }
Bill Wendling3708c182007-05-27 10:15:43 +00004281
4282 // Recursively parse the declarator.
Sebastian Redlbd150f42008-11-21 19:14:01 +00004283 ParseDeclaratorInternal(D, DirectDeclParser);
Bill Wendling3708c182007-05-27 10:15:43 +00004284
Douglas Gregor66583c52008-11-03 15:51:28 +00004285 if (D.getNumTypeObjects() > 0) {
4286 // C++ [dcl.ref]p4: There shall be no references to references.
4287 DeclaratorChunk& InnerChunk = D.getTypeObject(D.getNumTypeObjects() - 1);
4288 if (InnerChunk.Kind == DeclaratorChunk::Reference) {
Chris Lattnerebad6a22008-11-19 07:37:42 +00004289 if (const IdentifierInfo *II = D.getIdentifier())
4290 Diag(InnerChunk.Loc, diag::err_illegal_decl_reference_to_reference)
4291 << II;
4292 else
4293 Diag(InnerChunk.Loc, diag::err_illegal_decl_reference_to_reference)
4294 << "type name";
Douglas Gregor66583c52008-11-03 15:51:28 +00004295
Sebastian Redlbd150f42008-11-21 19:14:01 +00004296 // Once we've complained about the reference-to-reference, we
Douglas Gregor66583c52008-11-03 15:51:28 +00004297 // can go ahead and build the (technically ill-formed)
4298 // declarator: reference collapsing will take care of it.
4299 }
4300 }
4301
Bill Wendling3708c182007-05-27 10:15:43 +00004302 // Remember that we parsed a reference type. It doesn't have type-quals.
Chris Lattner788404f2008-02-21 01:32:26 +00004303 D.AddTypeInfo(DeclaratorChunk::getReference(DS.getTypeQualifiers(), Loc,
Sebastian Redled0f3b02009-03-15 22:02:01 +00004304 Kind == tok::amp),
John McCall084e83d2011-03-24 11:26:52 +00004305 DS.getAttributes(),
Sebastian Redlf6591ca2009-02-09 18:23:29 +00004306 SourceLocation());
Bill Wendling3708c182007-05-27 10:15:43 +00004307 }
Chris Lattner6c7416c2006-08-07 00:19:33 +00004308}
4309
Richard Smith0efa75c2012-03-29 01:16:42 +00004310static void diagnoseMisplacedEllipsis(Parser &P, Declarator &D,
4311 SourceLocation EllipsisLoc) {
4312 if (EllipsisLoc.isValid()) {
4313 FixItHint Insertion;
4314 if (!D.getEllipsisLoc().isValid()) {
4315 Insertion = FixItHint::CreateInsertion(D.getIdentifierLoc(), "...");
4316 D.setEllipsisLoc(EllipsisLoc);
4317 }
4318 P.Diag(EllipsisLoc, diag::err_misplaced_ellipsis_in_declaration)
4319 << FixItHint::CreateRemoval(EllipsisLoc) << Insertion << !D.hasName();
4320 }
4321}
4322
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004323/// ParseDirectDeclarator
4324/// direct-declarator: [C99 6.7.5]
Douglas Gregor831c93f2008-11-05 20:51:48 +00004325/// [C99] identifier
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004326/// '(' declarator ')'
4327/// [GNU] '(' attributes declarator ')'
Chris Lattnere8074e62006-08-06 18:30:15 +00004328/// [C90] direct-declarator '[' constant-expression[opt] ']'
4329/// [C99] direct-declarator '[' type-qual-list[opt] assignment-expr[opt] ']'
4330/// [C99] direct-declarator '[' 'static' type-qual-list[opt] assign-expr ']'
4331/// [C99] direct-declarator '[' type-qual-list 'static' assignment-expr ']'
4332/// [C99] direct-declarator '[' type-qual-list[opt] '*' ']'
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004333/// [C++11] direct-declarator '[' constant-expression[opt] ']'
4334/// attribute-specifier-seq[opt]
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004335/// direct-declarator '(' parameter-type-list ')'
4336/// direct-declarator '(' identifier-list[opt] ')'
4337/// [GNU] direct-declarator '(' parameter-forward-declarations
4338/// parameter-type-list[opt] ')'
Argyrios Kyrtzidis22c40fa2008-10-24 21:46:40 +00004339/// [C++] direct-declarator '(' parameter-declaration-clause ')'
4340/// cv-qualifier-seq[opt] exception-specification[opt]
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004341/// [C++11] direct-declarator '(' parameter-declaration-clause ')'
4342/// attribute-specifier-seq[opt] cv-qualifier-seq[opt]
4343/// ref-qualifier[opt] exception-specification[opt]
Douglas Gregor61956c42008-10-31 09:07:45 +00004344/// [C++] declarator-id
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004345/// [C++11] declarator-id attribute-specifier-seq[opt]
Douglas Gregor831c93f2008-11-05 20:51:48 +00004346///
4347/// declarator-id: [C++ 8]
Douglas Gregor27b4c162010-12-23 22:44:42 +00004348/// '...'[opt] id-expression
Douglas Gregor831c93f2008-11-05 20:51:48 +00004349/// '::'[opt] nested-name-specifier[opt] type-name
4350///
4351/// id-expression: [C++ 5.1]
4352/// unqualified-id
Douglas Gregord90fd522009-09-25 21:45:23 +00004353/// qualified-id
Douglas Gregor831c93f2008-11-05 20:51:48 +00004354///
4355/// unqualified-id: [C++ 5.1]
Mike Stump11289f42009-09-09 15:08:12 +00004356/// identifier
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00004357/// operator-function-id
Douglas Gregord90fd522009-09-25 21:45:23 +00004358/// conversion-function-id
Mike Stump11289f42009-09-09 15:08:12 +00004359/// '~' class-name
Douglas Gregor7f741122009-02-25 19:37:18 +00004360/// template-id
Argyrios Kyrtzidise4426352008-11-07 22:02:30 +00004361///
Richard Smith1453e312012-03-27 01:42:32 +00004362/// Note, any additional constructs added here may need corresponding changes
4363/// in isConstructorDeclarator.
Chris Lattneracd58a32006-08-06 17:24:14 +00004364void Parser::ParseDirectDeclarator(Declarator &D) {
Argyrios Kyrtzidis9323b042008-11-26 22:40:03 +00004365 DeclaratorScopeObj DeclScopeObj(*this, D.getCXXScopeSpec());
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00004366
David Blaikiebbafb8a2012-03-11 07:00:24 +00004367 if (getLangOpts().CPlusPlus && D.mayHaveIdentifier()) {
Douglas Gregor7861a802009-11-03 01:35:08 +00004368 // ParseDeclaratorInternal might already have parsed the scope.
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00004369 if (D.getCXXScopeSpec().isEmpty()) {
Douglas Gregordf593fb2011-11-07 17:33:42 +00004370 bool EnteringContext = D.getContext() == Declarator::FileContext ||
4371 D.getContext() == Declarator::MemberContext;
Chad Rosierc1183952012-06-26 22:30:43 +00004372 ParseOptionalCXXScopeSpecifier(D.getCXXScopeSpec(), ParsedType(),
Douglas Gregordf593fb2011-11-07 17:33:42 +00004373 EnteringContext);
John McCall1f476a12010-02-26 08:45:28 +00004374 }
4375
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00004376 if (D.getCXXScopeSpec().isValid()) {
Douglas Gregor0be31a22010-07-02 17:43:08 +00004377 if (Actions.ShouldEnterDeclaratorScope(getCurScope(), D.getCXXScopeSpec()))
John McCall2b058ef2009-12-11 20:04:54 +00004378 // Change the declaration context for name lookup, until this function
4379 // is exited (and the declarator has been parsed).
4380 DeclScopeObj.EnterDeclaratorScope();
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00004381 }
4382
Douglas Gregor27b4c162010-12-23 22:44:42 +00004383 // C++0x [dcl.fct]p14:
4384 // There is a syntactic ambiguity when an ellipsis occurs at the end
Chad Rosierc1183952012-06-26 22:30:43 +00004385 // of a parameter-declaration-clause without a preceding comma. In
4386 // this case, the ellipsis is parsed as part of the
4387 // abstract-declarator if the type of the parameter names a template
Douglas Gregor27b4c162010-12-23 22:44:42 +00004388 // parameter pack that has not been expanded; otherwise, it is parsed
4389 // as part of the parameter-declaration-clause.
Richard Smith0efa75c2012-03-29 01:16:42 +00004390 if (Tok.is(tok::ellipsis) && D.getCXXScopeSpec().isEmpty() &&
Douglas Gregor27b4c162010-12-23 22:44:42 +00004391 !((D.getContext() == Declarator::PrototypeContext ||
4392 D.getContext() == Declarator::BlockLiteralContext) &&
Douglas Gregor27b4c162010-12-23 22:44:42 +00004393 NextToken().is(tok::r_paren) &&
Richard Smith0efa75c2012-03-29 01:16:42 +00004394 !Actions.containsUnexpandedParameterPacks(D))) {
4395 SourceLocation EllipsisLoc = ConsumeToken();
4396 if (isPtrOperatorToken(Tok.getKind(), getLangOpts())) {
4397 // The ellipsis was put in the wrong place. Recover, and explain to
4398 // the user what they should have done.
4399 ParseDeclarator(D);
4400 diagnoseMisplacedEllipsis(*this, D, EllipsisLoc);
4401 return;
4402 } else
4403 D.setEllipsisLoc(EllipsisLoc);
4404
4405 // The ellipsis can't be followed by a parenthesized declarator. We
4406 // check for that in ParseParenDeclarator, after we have disambiguated
4407 // the l_paren token.
4408 }
4409
Douglas Gregor7861a802009-11-03 01:35:08 +00004410 if (Tok.is(tok::identifier) || Tok.is(tok::kw_operator) ||
4411 Tok.is(tok::annot_template_id) || Tok.is(tok::tilde)) {
4412 // We found something that indicates the start of an unqualified-id.
4413 // Parse that unqualified-id.
John McCall84821e72010-04-13 06:39:49 +00004414 bool AllowConstructorName;
4415 if (D.getDeclSpec().hasTypeSpecifier())
4416 AllowConstructorName = false;
4417 else if (D.getCXXScopeSpec().isSet())
4418 AllowConstructorName =
4419 (D.getContext() == Declarator::FileContext ||
4420 (D.getContext() == Declarator::MemberContext &&
4421 D.getDeclSpec().isFriendSpecified()));
4422 else
4423 AllowConstructorName = (D.getContext() == Declarator::MemberContext);
4424
Abramo Bagnara7945c982012-01-27 09:46:47 +00004425 SourceLocation TemplateKWLoc;
Chad Rosierc1183952012-06-26 22:30:43 +00004426 if (ParseUnqualifiedId(D.getCXXScopeSpec(),
4427 /*EnteringContext=*/true,
4428 /*AllowDestructorName=*/true,
Douglas Gregor9de54ea2010-01-13 17:31:36 +00004429 AllowConstructorName,
John McCallba7bf592010-08-24 05:47:05 +00004430 ParsedType(),
Abramo Bagnara7945c982012-01-27 09:46:47 +00004431 TemplateKWLoc,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00004432 D.getName()) ||
4433 // Once we're past the identifier, if the scope was bad, mark the
4434 // whole declarator bad.
4435 D.getCXXScopeSpec().isInvalid()) {
Argyrios Kyrtzidis9323b042008-11-26 22:40:03 +00004436 D.SetIdentifier(0, Tok.getLocation());
4437 D.setInvalidType(true);
Douglas Gregor7861a802009-11-03 01:35:08 +00004438 } else {
4439 // Parsed the unqualified-id; update range information and move along.
4440 if (D.getSourceRange().getBegin().isInvalid())
4441 D.SetRangeBegin(D.getName().getSourceRange().getBegin());
4442 D.SetRangeEnd(D.getName().getSourceRange().getEnd());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004443 }
Douglas Gregor7861a802009-11-03 01:35:08 +00004444 goto PastIdentifier;
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00004445 }
Douglas Gregor7861a802009-11-03 01:35:08 +00004446 } else if (Tok.is(tok::identifier) && D.mayHaveIdentifier()) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00004447 assert(!getLangOpts().CPlusPlus &&
Argyrios Kyrtzidis9323b042008-11-26 22:40:03 +00004448 "There's a C++-specific check for tok::identifier above");
4449 assert(Tok.getIdentifierInfo() && "Not an identifier?");
4450 D.SetIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
4451 ConsumeToken();
Douglas Gregor7861a802009-11-03 01:35:08 +00004452 goto PastIdentifier;
4453 }
Richard Smith0efa75c2012-03-29 01:16:42 +00004454
Douglas Gregor7861a802009-11-03 01:35:08 +00004455 if (Tok.is(tok::l_paren)) {
Chris Lattneracd58a32006-08-06 17:24:14 +00004456 // direct-declarator: '(' declarator ')'
Chris Lattnere37e2332006-08-15 04:50:22 +00004457 // direct-declarator: '(' attributes declarator ')'
Chris Lattneracd58a32006-08-06 17:24:14 +00004458 // Example: 'char (*X)' or 'int (*XX)(void)'
4459 ParseParenDeclarator(D);
Douglas Gregor9de54ea2010-01-13 17:31:36 +00004460
4461 // If the declarator was parenthesized, we entered the declarator
4462 // scope when parsing the parenthesized declarator, then exited
4463 // the scope already. Re-enter the scope, if we need to.
4464 if (D.getCXXScopeSpec().isSet()) {
Fariborz Jahanian358acd52010-08-17 23:50:37 +00004465 // If there was an error parsing parenthesized declarator, declarator
Richard Smith0efa75c2012-03-29 01:16:42 +00004466 // scope may have been entered before. Don't do it again.
Fariborz Jahanian358acd52010-08-17 23:50:37 +00004467 if (!D.isInvalidType() &&
4468 Actions.ShouldEnterDeclaratorScope(getCurScope(), D.getCXXScopeSpec()))
Douglas Gregor9de54ea2010-01-13 17:31:36 +00004469 // Change the declaration context for name lookup, until this function
4470 // is exited (and the declarator has been parsed).
Fariborz Jahanian358acd52010-08-17 23:50:37 +00004471 DeclScopeObj.EnterDeclaratorScope();
Douglas Gregor9de54ea2010-01-13 17:31:36 +00004472 }
Argyrios Kyrtzidis9323b042008-11-26 22:40:03 +00004473 } else if (D.mayOmitIdentifier()) {
Chris Lattneracd58a32006-08-06 17:24:14 +00004474 // This could be something simple like "int" (in which case the declarator
4475 // portion is empty), if an abstract-declarator is allowed.
4476 D.SetIdentifier(0, Tok.getLocation());
4477 } else {
David Blaikie5d577a22012-06-29 22:03:56 +00004478 if (Tok.getKind() == tok::annot_pragma_parser_crash)
David Blaikie5bd4c2a2012-08-21 18:56:49 +00004479 LLVM_BUILTIN_TRAP;
Douglas Gregord9f92e22009-03-06 23:28:18 +00004480 if (D.getContext() == Declarator::MemberContext)
4481 Diag(Tok, diag::err_expected_member_name_or_semi)
4482 << D.getDeclSpec().getSourceRange();
David Blaikiebbafb8a2012-03-11 07:00:24 +00004483 else if (getLangOpts().CPlusPlus)
4484 Diag(Tok, diag::err_expected_unqualified_id) << getLangOpts().CPlusPlus;
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00004485 else
Chris Lattner6d29c102008-11-18 07:48:38 +00004486 Diag(Tok, diag::err_expected_ident_lparen);
Chris Lattnereec40f92006-08-06 21:55:29 +00004487 D.SetIdentifier(0, Tok.getLocation());
Chris Lattner8c5dd732008-11-11 06:13:16 +00004488 D.setInvalidType(true);
Chris Lattneracd58a32006-08-06 17:24:14 +00004489 }
Mike Stump11289f42009-09-09 15:08:12 +00004490
Argyrios Kyrtzidis9323b042008-11-26 22:40:03 +00004491 PastIdentifier:
Chris Lattneracd58a32006-08-06 17:24:14 +00004492 assert(D.isPastIdentifier() &&
4493 "Haven't past the location of the identifier yet?");
Mike Stump11289f42009-09-09 15:08:12 +00004494
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004495 // Don't parse attributes unless we have parsed an unparenthesized name.
4496 if (D.hasName() && !D.getNumTypeObjects())
John McCall53fa7142010-12-24 02:08:15 +00004497 MaybeParseCXX0XAttributes(D);
Alexis Hunt96d5c762009-11-21 08:43:09 +00004498
Chris Lattneracd58a32006-08-06 17:24:14 +00004499 while (1) {
Chris Lattner76c72282007-10-09 17:33:22 +00004500 if (Tok.is(tok::l_paren)) {
David Blaikie15a430a2011-12-04 05:04:18 +00004501 // Enter function-declaration scope, limiting any declarators to the
4502 // function prototype scope, including parameter declarators.
4503 ParseScope PrototypeScope(this,
4504 Scope::FunctionPrototypeScope|Scope::DeclScope);
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00004505 // The paren may be part of a C++ direct initializer, eg. "int x(1);".
4506 // In such a case, check if we actually have a function declarator; if it
4507 // is not, the declarator has been fully parsed.
Richard Smith943c4402012-07-30 21:30:52 +00004508 bool IsAmbiguous = false;
Richard Smith4f605af2012-08-18 00:55:03 +00004509 if (getLangOpts().CPlusPlus && D.mayBeFollowedByCXXDirectInit()) {
4510 // The name of the declarator, if any, is tentatively declared within
4511 // a possible direct initializer.
4512 TentativelyDeclaredIdentifiers.push_back(D.getIdentifier());
4513 bool IsFunctionDecl = isCXXFunctionDeclarator(&IsAmbiguous);
4514 TentativelyDeclaredIdentifiers.pop_back();
4515 if (!IsFunctionDecl)
4516 break;
4517 }
John McCall084e83d2011-03-24 11:26:52 +00004518 ParsedAttributes attrs(AttrFactory);
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00004519 BalancedDelimiterTracker T(*this, tok::l_paren);
4520 T.consumeOpen();
Richard Smith943c4402012-07-30 21:30:52 +00004521 ParseFunctionDeclarator(D, attrs, T, IsAmbiguous);
David Blaikie15a430a2011-12-04 05:04:18 +00004522 PrototypeScope.Exit();
Chris Lattner76c72282007-10-09 17:33:22 +00004523 } else if (Tok.is(tok::l_square)) {
Chris Lattnere8074e62006-08-06 18:30:15 +00004524 ParseBracketDeclarator(D);
Chris Lattneracd58a32006-08-06 17:24:14 +00004525 } else {
4526 break;
4527 }
4528 }
Chad Rosierc1183952012-06-26 22:30:43 +00004529}
Chris Lattneracd58a32006-08-06 17:24:14 +00004530
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004531/// ParseParenDeclarator - We parsed the declarator D up to a paren. This is
4532/// only called before the identifier, so these are most likely just grouping
Mike Stump11289f42009-09-09 15:08:12 +00004533/// parens for precedence. If we find that these are actually function
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004534/// parameter parens in an abstract-declarator, we call ParseFunctionDeclarator.
4535///
4536/// direct-declarator:
4537/// '(' declarator ')'
4538/// [GNU] '(' attributes declarator ')'
Chris Lattner8ff2c6c2008-10-20 02:05:46 +00004539/// direct-declarator '(' parameter-type-list ')'
4540/// direct-declarator '(' identifier-list[opt] ')'
4541/// [GNU] direct-declarator '(' parameter-forward-declarations
4542/// parameter-type-list[opt] ')'
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004543///
4544void Parser::ParseParenDeclarator(Declarator &D) {
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00004545 BalancedDelimiterTracker T(*this, tok::l_paren);
4546 T.consumeOpen();
4547
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004548 assert(!D.isPastIdentifier() && "Should be called before passing identifier");
Mike Stump11289f42009-09-09 15:08:12 +00004549
Chris Lattner8ff2c6c2008-10-20 02:05:46 +00004550 // Eat any attributes before we look at whether this is a grouping or function
4551 // declarator paren. If this is a grouping paren, the attribute applies to
4552 // the type being built up, for example:
4553 // int (__attribute__(()) *x)(long y)
4554 // If this ends up not being a grouping paren, the attribute applies to the
4555 // first argument, for example:
4556 // int (__attribute__(()) int x)
4557 // In either case, we need to eat any attributes to be able to determine what
4558 // sort of paren this is.
4559 //
John McCall084e83d2011-03-24 11:26:52 +00004560 ParsedAttributes attrs(AttrFactory);
Chris Lattner8ff2c6c2008-10-20 02:05:46 +00004561 bool RequiresArg = false;
4562 if (Tok.is(tok::kw___attribute)) {
John McCall53fa7142010-12-24 02:08:15 +00004563 ParseGNUAttributes(attrs);
Mike Stump11289f42009-09-09 15:08:12 +00004564
Chris Lattner8ff2c6c2008-10-20 02:05:46 +00004565 // We require that the argument list (if this is a non-grouping paren) be
4566 // present even if the attribute list was empty.
4567 RequiresArg = true;
4568 }
Steve Naroff44ac7772008-12-25 14:16:32 +00004569 // Eat any Microsoft extensions.
Eli Friedman53339e02009-06-08 23:27:34 +00004570 if (Tok.is(tok::kw___cdecl) || Tok.is(tok::kw___stdcall) ||
Douglas Gregora941dca2010-05-18 16:57:00 +00004571 Tok.is(tok::kw___thiscall) || Tok.is(tok::kw___fastcall) ||
Francois Pichet17ed0202011-08-18 09:59:55 +00004572 Tok.is(tok::kw___w64) || Tok.is(tok::kw___ptr64) ||
Francois Pichetf2fb4112011-08-25 00:36:46 +00004573 Tok.is(tok::kw___ptr32) || Tok.is(tok::kw___unaligned)) {
John McCall53fa7142010-12-24 02:08:15 +00004574 ParseMicrosoftTypeAttributes(attrs);
Eli Friedman53339e02009-06-08 23:27:34 +00004575 }
Dawn Perchik335e16b2010-09-03 01:29:35 +00004576 // Eat any Borland extensions.
Ted Kremenek5eec2b02010-11-10 05:59:39 +00004577 if (Tok.is(tok::kw___pascal))
John McCall53fa7142010-12-24 02:08:15 +00004578 ParseBorlandTypeAttributes(attrs);
Mike Stump11289f42009-09-09 15:08:12 +00004579
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004580 // If we haven't past the identifier yet (or where the identifier would be
4581 // stored, if this is an abstract declarator), then this is probably just
4582 // grouping parens. However, if this could be an abstract-declarator, then
4583 // this could also be the start of function arguments (consider 'void()').
4584 bool isGrouping;
Mike Stump11289f42009-09-09 15:08:12 +00004585
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004586 if (!D.mayOmitIdentifier()) {
4587 // If this can't be an abstract-declarator, this *must* be a grouping
4588 // paren, because we haven't seen the identifier yet.
4589 isGrouping = true;
4590 } else if (Tok.is(tok::r_paren) || // 'int()' is a function.
Richard Smith43f340f2012-03-27 23:05:05 +00004591 (getLangOpts().CPlusPlus && Tok.is(tok::ellipsis) &&
4592 NextToken().is(tok::r_paren)) || // C++ int(...)
Richard Smith2620cd92012-04-11 04:01:28 +00004593 isDeclarationSpecifier() || // 'int(int)' is a function.
4594 isCXX11AttributeSpecifier()) { // 'int([[]]int)' is a function.
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004595 // This handles C99 6.7.5.3p11: in "typedef int X; void foo(X)", X is
4596 // considered to be a type, not a K&R identifier-list.
4597 isGrouping = false;
4598 } else {
4599 // Otherwise, this is a grouping paren, e.g. 'int (*X)' or 'int(X)'.
4600 isGrouping = true;
4601 }
Mike Stump11289f42009-09-09 15:08:12 +00004602
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004603 // If this is a grouping paren, handle:
4604 // direct-declarator: '(' declarator ')'
4605 // direct-declarator: '(' attributes declarator ')'
4606 if (isGrouping) {
Richard Smith0efa75c2012-03-29 01:16:42 +00004607 SourceLocation EllipsisLoc = D.getEllipsisLoc();
4608 D.setEllipsisLoc(SourceLocation());
4609
Argyrios Kyrtzidis8ae36842008-10-07 10:21:57 +00004610 bool hadGroupingParens = D.hasGroupingParens();
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00004611 D.setGroupingParens(true);
Sebastian Redlbd150f42008-11-21 19:14:01 +00004612 ParseDeclaratorInternal(D, &Parser::ParseDirectDeclarator);
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004613 // Match the ')'.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00004614 T.consumeClose();
Chad Rosierc1183952012-06-26 22:30:43 +00004615 D.AddTypeInfo(DeclaratorChunk::getParen(T.getOpenLocation(),
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00004616 T.getCloseLocation()),
4617 attrs, T.getCloseLocation());
Argyrios Kyrtzidis8ae36842008-10-07 10:21:57 +00004618
4619 D.setGroupingParens(hadGroupingParens);
Richard Smith0efa75c2012-03-29 01:16:42 +00004620
4621 // An ellipsis cannot be placed outside parentheses.
4622 if (EllipsisLoc.isValid())
4623 diagnoseMisplacedEllipsis(*this, D, EllipsisLoc);
4624
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004625 return;
4626 }
Mike Stump11289f42009-09-09 15:08:12 +00004627
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004628 // Okay, if this wasn't a grouping paren, it must be the start of a function
4629 // argument list. Recognize that this declarator will never have an
Chris Lattner8ff2c6c2008-10-20 02:05:46 +00004630 // identifier (and remember where it would have been), then call into
4631 // ParseFunctionDeclarator to handle of argument list.
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004632 D.SetIdentifier(0, Tok.getLocation());
4633
David Blaikie15a430a2011-12-04 05:04:18 +00004634 // Enter function-declaration scope, limiting any declarators to the
4635 // function prototype scope, including parameter declarators.
4636 ParseScope PrototypeScope(this,
4637 Scope::FunctionPrototypeScope|Scope::DeclScope);
Richard Smith943c4402012-07-30 21:30:52 +00004638 ParseFunctionDeclarator(D, attrs, T, false, RequiresArg);
David Blaikie15a430a2011-12-04 05:04:18 +00004639 PrototypeScope.Exit();
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004640}
4641
4642/// ParseFunctionDeclarator - We are after the identifier and have parsed the
4643/// declarator D up to a paren, which indicates that we are parsing function
4644/// arguments.
Chris Lattneracd58a32006-08-06 17:24:14 +00004645///
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004646/// If FirstArgAttrs is non-null, then the caller parsed those arguments
4647/// immediately after the open paren - they should be considered to be the
4648/// first argument of a parameter.
Chris Lattner8ff2c6c2008-10-20 02:05:46 +00004649///
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004650/// If RequiresArg is true, then the first argument of the function is required
4651/// to be present and required to not be an identifier list.
Douglas Gregor9e66af42011-07-05 16:44:18 +00004652///
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004653/// For C++, after the parameter-list, it also parses the cv-qualifier-seq[opt],
4654/// (C++11) ref-qualifier[opt], exception-specification[opt],
4655/// (C++11) attribute-specifier-seq[opt], and (C++11) trailing-return-type[opt].
4656///
4657/// [C++11] exception-specification:
Douglas Gregor9e66af42011-07-05 16:44:18 +00004658/// dynamic-exception-specification
4659/// noexcept-specification
4660///
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00004661void Parser::ParseFunctionDeclarator(Declarator &D,
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004662 ParsedAttributes &FirstArgAttrs,
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00004663 BalancedDelimiterTracker &Tracker,
Richard Smith943c4402012-07-30 21:30:52 +00004664 bool IsAmbiguous,
Douglas Gregor9e66af42011-07-05 16:44:18 +00004665 bool RequiresArg) {
Chad Rosierc1183952012-06-26 22:30:43 +00004666 assert(getCurScope()->isFunctionPrototypeScope() &&
David Blaikie15a430a2011-12-04 05:04:18 +00004667 "Should call from a Function scope");
Douglas Gregor9e66af42011-07-05 16:44:18 +00004668 // lparen is already consumed!
4669 assert(D.isPastIdentifier() && "Should not call before identifier!");
4670
4671 // This should be true when the function has typed arguments.
4672 // Otherwise, it is treated as a K&R-style function.
4673 bool HasProto = false;
4674 // Build up an array of information about the parsed arguments.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00004675 SmallVector<DeclaratorChunk::ParamInfo, 16> ParamInfo;
Douglas Gregor9e66af42011-07-05 16:44:18 +00004676 // Remember where we see an ellipsis, if any.
4677 SourceLocation EllipsisLoc;
4678
4679 DeclSpec DS(AttrFactory);
4680 bool RefQualifierIsLValueRef = true;
4681 SourceLocation RefQualifierLoc;
Douglas Gregore248eea2011-10-19 06:04:55 +00004682 SourceLocation ConstQualifierLoc;
4683 SourceLocation VolatileQualifierLoc;
Douglas Gregor9e66af42011-07-05 16:44:18 +00004684 ExceptionSpecificationType ESpecType = EST_None;
4685 SourceRange ESpecRange;
Chris Lattner0e62c1c2011-07-23 10:55:15 +00004686 SmallVector<ParsedType, 2> DynamicExceptions;
4687 SmallVector<SourceRange, 2> DynamicExceptionRanges;
Douglas Gregor9e66af42011-07-05 16:44:18 +00004688 ExprResult NoexceptExpr;
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004689 ParsedAttributes FnAttrs(AttrFactory);
Richard Smith700537c2012-06-12 01:51:59 +00004690 TypeResult TrailingReturnType;
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004691
James Molloy6f8780b2012-02-29 10:24:19 +00004692 Actions.ActOnStartFunctionDeclarator();
4693
Abramo Bagnara2fc03ca2012-10-15 21:05:46 +00004694 /* LocalEndLoc is the end location for the local FunctionTypeLoc.
4695 EndLoc is the end location for the function declarator.
4696 They differ for trailing return types. */
4697 SourceLocation StartLoc, LocalEndLoc, EndLoc;
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00004698 SourceLocation LParenLoc, RParenLoc;
4699 LParenLoc = Tracker.getOpenLocation();
4700 StartLoc = LParenLoc;
4701
Douglas Gregor9e66af42011-07-05 16:44:18 +00004702 if (isFunctionDeclaratorIdentifierList()) {
4703 if (RequiresArg)
4704 Diag(Tok, diag::err_argument_required_after_attribute);
4705
4706 ParseFunctionDeclaratorIdentifierList(D, ParamInfo);
4707
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00004708 Tracker.consumeClose();
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00004709 RParenLoc = Tracker.getCloseLocation();
Abramo Bagnara2fc03ca2012-10-15 21:05:46 +00004710 LocalEndLoc = RParenLoc;
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00004711 EndLoc = RParenLoc;
Douglas Gregor9e66af42011-07-05 16:44:18 +00004712 } else {
Douglas Gregor9e66af42011-07-05 16:44:18 +00004713 if (Tok.isNot(tok::r_paren))
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004714 ParseParameterDeclarationClause(D, FirstArgAttrs, ParamInfo, EllipsisLoc);
Douglas Gregor9e66af42011-07-05 16:44:18 +00004715 else if (RequiresArg)
4716 Diag(Tok, diag::err_argument_required_after_attribute);
4717
David Blaikiebbafb8a2012-03-11 07:00:24 +00004718 HasProto = ParamInfo.size() || getLangOpts().CPlusPlus;
Douglas Gregor9e66af42011-07-05 16:44:18 +00004719
4720 // If we have the closing ')', eat it.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00004721 Tracker.consumeClose();
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00004722 RParenLoc = Tracker.getCloseLocation();
Abramo Bagnara2fc03ca2012-10-15 21:05:46 +00004723 LocalEndLoc = RParenLoc;
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00004724 EndLoc = RParenLoc;
Douglas Gregor9e66af42011-07-05 16:44:18 +00004725
David Blaikiebbafb8a2012-03-11 07:00:24 +00004726 if (getLangOpts().CPlusPlus) {
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004727 // FIXME: Accept these components in any order, and produce fixits to
4728 // correct the order if the user gets it wrong. Ideally we should deal
4729 // with the virt-specifier-seq and pure-specifier in the same way.
Douglas Gregor9e66af42011-07-05 16:44:18 +00004730
4731 // Parse cv-qualifier-seq[opt].
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004732 ParseTypeQualifierListOpt(DS, false /*no attributes*/, false);
4733 if (!DS.getSourceRange().getEnd().isInvalid()) {
4734 EndLoc = DS.getSourceRange().getEnd();
4735 ConstQualifierLoc = DS.getConstSpecLoc();
4736 VolatileQualifierLoc = DS.getVolatileSpecLoc();
4737 }
Douglas Gregor9e66af42011-07-05 16:44:18 +00004738
4739 // Parse ref-qualifier[opt].
4740 if (Tok.is(tok::amp) || Tok.is(tok::ampamp)) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00004741 Diag(Tok, getLangOpts().CPlusPlus0x ?
Richard Smith5d164bc2011-10-15 05:09:34 +00004742 diag::warn_cxx98_compat_ref_qualifier :
4743 diag::ext_ref_qualifier);
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004744
Douglas Gregor9e66af42011-07-05 16:44:18 +00004745 RefQualifierIsLValueRef = Tok.is(tok::amp);
4746 RefQualifierLoc = ConsumeToken();
4747 EndLoc = RefQualifierLoc;
4748 }
4749
Douglas Gregor3024f072012-04-16 07:05:22 +00004750 // C++11 [expr.prim.general]p3:
Chad Rosierc1183952012-06-26 22:30:43 +00004751 // If a declaration declares a member function or member function
4752 // template of a class X, the expression this is a prvalue of type
Douglas Gregor3024f072012-04-16 07:05:22 +00004753 // "pointer to cv-qualifier-seq X" between the optional cv-qualifer-seq
Chad Rosierc1183952012-06-26 22:30:43 +00004754 // and the end of the function-definition, member-declarator, or
Douglas Gregor3024f072012-04-16 07:05:22 +00004755 // declarator.
Chad Rosierc1183952012-06-26 22:30:43 +00004756 bool IsCXX11MemberFunction =
Douglas Gregor3024f072012-04-16 07:05:22 +00004757 getLangOpts().CPlusPlus0x &&
4758 (D.getContext() == Declarator::MemberContext ||
4759 (D.getContext() == Declarator::FileContext &&
Chad Rosierc1183952012-06-26 22:30:43 +00004760 D.getCXXScopeSpec().isValid() &&
Douglas Gregor3024f072012-04-16 07:05:22 +00004761 Actions.CurContext->isRecord()));
4762 Sema::CXXThisScopeRAII ThisScope(Actions,
4763 dyn_cast<CXXRecordDecl>(Actions.CurContext),
4764 DS.getTypeQualifiers(),
4765 IsCXX11MemberFunction);
Richard Smith2331bbf2012-05-02 22:22:32 +00004766
Douglas Gregor9e66af42011-07-05 16:44:18 +00004767 // Parse exception-specification[opt].
Richard Smith2331bbf2012-05-02 22:22:32 +00004768 ESpecType = tryParseExceptionSpecification(ESpecRange,
Douglas Gregor433e0532012-04-16 18:27:27 +00004769 DynamicExceptions,
4770 DynamicExceptionRanges,
Richard Smith2331bbf2012-05-02 22:22:32 +00004771 NoexceptExpr);
Douglas Gregor9e66af42011-07-05 16:44:18 +00004772 if (ESpecType != EST_None)
4773 EndLoc = ESpecRange.getEnd();
4774
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004775 // Parse attribute-specifier-seq[opt]. Per DR 979 and DR 1297, this goes
4776 // after the exception-specification.
4777 MaybeParseCXX0XAttributes(FnAttrs);
4778
Douglas Gregor9e66af42011-07-05 16:44:18 +00004779 // Parse trailing-return-type[opt].
Abramo Bagnara2fc03ca2012-10-15 21:05:46 +00004780 LocalEndLoc = EndLoc;
David Blaikiebbafb8a2012-03-11 07:00:24 +00004781 if (getLangOpts().CPlusPlus0x && Tok.is(tok::arrow)) {
Richard Smith5d164bc2011-10-15 05:09:34 +00004782 Diag(Tok, diag::warn_cxx98_compat_trailing_return_type);
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00004783 if (D.getDeclSpec().getTypeSpecType() == TST_auto)
4784 StartLoc = D.getDeclSpec().getTypeSpecTypeLoc();
Abramo Bagnara2fc03ca2012-10-15 21:05:46 +00004785 LocalEndLoc = Tok.getLocation();
Douglas Gregordb0b9f12011-08-04 15:30:47 +00004786 SourceRange Range;
Richard Smith700537c2012-06-12 01:51:59 +00004787 TrailingReturnType = ParseTrailingReturnType(Range);
Abramo Bagnara2fc03ca2012-10-15 21:05:46 +00004788 EndLoc = Range.getEnd();
Douglas Gregor9e66af42011-07-05 16:44:18 +00004789 }
4790 }
Douglas Gregor9e66af42011-07-05 16:44:18 +00004791 }
4792
4793 // Remember that we parsed a function type, and remember the attributes.
4794 D.AddTypeInfo(DeclaratorChunk::getFunction(HasProto,
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00004795 IsAmbiguous,
4796 LParenLoc,
Douglas Gregor9e66af42011-07-05 16:44:18 +00004797 ParamInfo.data(), ParamInfo.size(),
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00004798 EllipsisLoc, RParenLoc,
Douglas Gregor9e66af42011-07-05 16:44:18 +00004799 DS.getTypeQualifiers(),
4800 RefQualifierIsLValueRef,
Douglas Gregore248eea2011-10-19 06:04:55 +00004801 RefQualifierLoc, ConstQualifierLoc,
4802 VolatileQualifierLoc,
Douglas Gregorad69e652011-07-13 21:47:47 +00004803 /*MutableLoc=*/SourceLocation(),
Douglas Gregor9e66af42011-07-05 16:44:18 +00004804 ESpecType, ESpecRange.getBegin(),
4805 DynamicExceptions.data(),
4806 DynamicExceptionRanges.data(),
4807 DynamicExceptions.size(),
4808 NoexceptExpr.isUsable() ?
4809 NoexceptExpr.get() : 0,
Abramo Bagnara2fc03ca2012-10-15 21:05:46 +00004810 StartLoc, LocalEndLoc, D,
Douglas Gregor9e66af42011-07-05 16:44:18 +00004811 TrailingReturnType),
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004812 FnAttrs, EndLoc);
James Molloy6f8780b2012-02-29 10:24:19 +00004813
4814 Actions.ActOnEndFunctionDeclarator();
Douglas Gregor9e66af42011-07-05 16:44:18 +00004815}
4816
4817/// isFunctionDeclaratorIdentifierList - This parameter list may have an
4818/// identifier list form for a K&R-style function: void foo(a,b,c)
4819///
4820/// Note that identifier-lists are only allowed for normal declarators, not for
4821/// abstract-declarators.
4822bool Parser::isFunctionDeclaratorIdentifierList() {
David Blaikiebbafb8a2012-03-11 07:00:24 +00004823 return !getLangOpts().CPlusPlus
Douglas Gregor9e66af42011-07-05 16:44:18 +00004824 && Tok.is(tok::identifier)
4825 && !TryAltiVecVectorToken()
4826 // K&R identifier lists can't have typedefs as identifiers, per C99
4827 // 6.7.5.3p11.
4828 && (TryAnnotateTypeOrScopeToken() || !Tok.is(tok::annot_typename))
4829 // Identifier lists follow a really simple grammar: the identifiers can
4830 // be followed *only* by a ", identifier" or ")". However, K&R
4831 // identifier lists are really rare in the brave new modern world, and
4832 // it is very common for someone to typo a type in a non-K&R style
4833 // list. If we are presented with something like: "void foo(intptr x,
4834 // float y)", we don't want to start parsing the function declarator as
4835 // though it is a K&R style declarator just because intptr is an
4836 // invalid type.
4837 //
4838 // To handle this, we check to see if the token after the first
4839 // identifier is a "," or ")". Only then do we parse it as an
4840 // identifier list.
4841 && (NextToken().is(tok::comma) || NextToken().is(tok::r_paren));
4842}
4843
4844/// ParseFunctionDeclaratorIdentifierList - While parsing a function declarator
4845/// we found a K&R-style identifier list instead of a typed parameter list.
4846///
4847/// After returning, ParamInfo will hold the parsed parameters.
4848///
4849/// identifier-list: [C99 6.7.5]
4850/// identifier
4851/// identifier-list ',' identifier
4852///
4853void Parser::ParseFunctionDeclaratorIdentifierList(
4854 Declarator &D,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00004855 SmallVector<DeclaratorChunk::ParamInfo, 16> &ParamInfo) {
Douglas Gregor9e66af42011-07-05 16:44:18 +00004856 // If there was no identifier specified for the declarator, either we are in
4857 // an abstract-declarator, or we are in a parameter declarator which was found
4858 // to be abstract. In abstract-declarators, identifier lists are not valid:
4859 // diagnose this.
4860 if (!D.getIdentifier())
4861 Diag(Tok, diag::ext_ident_list_in_param);
4862
4863 // Maintain an efficient lookup of params we have seen so far.
4864 llvm::SmallSet<const IdentifierInfo*, 16> ParamsSoFar;
4865
4866 while (1) {
4867 // If this isn't an identifier, report the error and skip until ')'.
4868 if (Tok.isNot(tok::identifier)) {
4869 Diag(Tok, diag::err_expected_ident);
4870 SkipUntil(tok::r_paren, /*StopAtSemi=*/true, /*DontConsume=*/true);
4871 // Forget we parsed anything.
4872 ParamInfo.clear();
4873 return;
4874 }
4875
4876 IdentifierInfo *ParmII = Tok.getIdentifierInfo();
4877
4878 // Reject 'typedef int y; int test(x, y)', but continue parsing.
4879 if (Actions.getTypeName(*ParmII, Tok.getLocation(), getCurScope()))
4880 Diag(Tok, diag::err_unexpected_typedef_ident) << ParmII;
4881
4882 // Verify that the argument identifier has not already been mentioned.
4883 if (!ParamsSoFar.insert(ParmII)) {
4884 Diag(Tok, diag::err_param_redefinition) << ParmII;
4885 } else {
4886 // Remember this identifier in ParamInfo.
4887 ParamInfo.push_back(DeclaratorChunk::ParamInfo(ParmII,
4888 Tok.getLocation(),
4889 0));
4890 }
4891
4892 // Eat the identifier.
4893 ConsumeToken();
4894
4895 // The list continues if we see a comma.
4896 if (Tok.isNot(tok::comma))
4897 break;
4898 ConsumeToken();
4899 }
4900}
4901
4902/// ParseParameterDeclarationClause - Parse a (possibly empty) parameter-list
4903/// after the opening parenthesis. This function will not parse a K&R-style
4904/// identifier list.
4905///
Richard Smith2620cd92012-04-11 04:01:28 +00004906/// D is the declarator being parsed. If FirstArgAttrs is non-null, then the
4907/// caller parsed those arguments immediately after the open paren - they should
4908/// be considered to be part of the first parameter.
Douglas Gregor9e66af42011-07-05 16:44:18 +00004909///
4910/// After returning, ParamInfo will hold the parsed parameters. EllipsisLoc will
4911/// be the location of the ellipsis, if any was parsed.
4912///
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004913/// parameter-type-list: [C99 6.7.5]
4914/// parameter-list
4915/// parameter-list ',' '...'
Douglas Gregor9bfc2e52009-09-22 21:41:40 +00004916/// [C++] parameter-list '...'
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004917///
4918/// parameter-list: [C99 6.7.5]
4919/// parameter-declaration
4920/// parameter-list ',' parameter-declaration
4921///
4922/// parameter-declaration: [C99 6.7.5]
4923/// declaration-specifiers declarator
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00004924/// [C++] declaration-specifiers declarator '=' assignment-expression
Sebastian Redldb63af22012-03-14 15:54:00 +00004925/// [C++11] initializer-clause
Chris Lattnere37e2332006-08-15 04:50:22 +00004926/// [GNU] declaration-specifiers declarator attributes
Sebastian Redlf769df52009-03-24 22:27:57 +00004927/// declaration-specifiers abstract-declarator[opt]
4928/// [C++] declaration-specifiers abstract-declarator[opt]
Chris Lattner58258242008-04-10 02:22:51 +00004929/// '=' assignment-expression
Chris Lattnere37e2332006-08-15 04:50:22 +00004930/// [GNU] declaration-specifiers abstract-declarator[opt] attributes
Richard Smith2620cd92012-04-11 04:01:28 +00004931/// [C++11] attribute-specifier-seq parameter-declaration
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004932///
Douglas Gregor9e66af42011-07-05 16:44:18 +00004933void Parser::ParseParameterDeclarationClause(
4934 Declarator &D,
Richard Smith2620cd92012-04-11 04:01:28 +00004935 ParsedAttributes &FirstArgAttrs,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00004936 SmallVector<DeclaratorChunk::ParamInfo, 16> &ParamInfo,
Douglas Gregor9e66af42011-07-05 16:44:18 +00004937 SourceLocation &EllipsisLoc) {
Mike Stump11289f42009-09-09 15:08:12 +00004938
Chris Lattner371ed4e2008-04-06 06:57:35 +00004939 while (1) {
4940 if (Tok.is(tok::ellipsis)) {
Richard Smith2620cd92012-04-11 04:01:28 +00004941 // FIXME: Issue a diagnostic if we parsed an attribute-specifier-seq
4942 // before deciding this was a parameter-declaration-clause.
Douglas Gregor94349fd2009-02-18 07:07:28 +00004943 EllipsisLoc = ConsumeToken(); // Consume the ellipsis.
Chris Lattner371ed4e2008-04-06 06:57:35 +00004944 break;
Chris Lattneracd58a32006-08-06 17:24:14 +00004945 }
Mike Stump11289f42009-09-09 15:08:12 +00004946
Chris Lattner371ed4e2008-04-06 06:57:35 +00004947 // Parse the declaration-specifiers.
John McCall28a6aea2009-11-04 02:18:39 +00004948 // Just use the ParsingDeclaration "scope" of the declarator.
John McCall084e83d2011-03-24 11:26:52 +00004949 DeclSpec DS(AttrFactory);
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00004950
Richard Smith2620cd92012-04-11 04:01:28 +00004951 // Parse any C++11 attributes.
4952 MaybeParseCXX0XAttributes(DS.getAttributes());
4953
John McCall53fa7142010-12-24 02:08:15 +00004954 // Skip any Microsoft attributes before a param.
David Blaikiebbafb8a2012-03-11 07:00:24 +00004955 if (getLangOpts().MicrosoftExt && Tok.is(tok::l_square))
John McCall53fa7142010-12-24 02:08:15 +00004956 ParseMicrosoftAttributes(DS.getAttributes());
4957
4958 SourceLocation DSStart = Tok.getLocation();
Chris Lattner8ff2c6c2008-10-20 02:05:46 +00004959
4960 // If the caller parsed attributes for the first argument, add them now.
John McCall53fa7142010-12-24 02:08:15 +00004961 // Take them so that we only apply the attributes to the first parameter.
Douglas Gregor9e66af42011-07-05 16:44:18 +00004962 // FIXME: If we can leave the attributes in the token stream somehow, we can
Richard Smith2620cd92012-04-11 04:01:28 +00004963 // get rid of a parameter (FirstArgAttrs) and this statement. It might be
4964 // too much hassle.
4965 DS.takeAttributesFrom(FirstArgAttrs);
John McCall53fa7142010-12-24 02:08:15 +00004966
Chris Lattnerde39c3e2009-02-27 18:38:20 +00004967 ParseDeclarationSpecifiers(DS);
Mike Stump11289f42009-09-09 15:08:12 +00004968
Chris Lattner371ed4e2008-04-06 06:57:35 +00004969 // Parse the declarator. This is "PrototypeContext", because we must
4970 // accept either 'declarator' or 'abstract-declarator' here.
4971 Declarator ParmDecl(DS, Declarator::PrototypeContext);
4972 ParseDeclarator(ParmDecl);
4973
4974 // Parse GNU attributes, if present.
John McCall53fa7142010-12-24 02:08:15 +00004975 MaybeParseGNUAttributes(ParmDecl);
Mike Stump11289f42009-09-09 15:08:12 +00004976
Chris Lattner371ed4e2008-04-06 06:57:35 +00004977 // Remember this parsed parameter in ParamInfo.
4978 IdentifierInfo *ParmII = ParmDecl.getIdentifier();
Mike Stump11289f42009-09-09 15:08:12 +00004979
Douglas Gregor4d87df52008-12-16 21:30:33 +00004980 // DefArgToks is used when the parsing of default arguments needs
4981 // to be delayed.
4982 CachedTokens *DefArgToks = 0;
4983
Chris Lattner371ed4e2008-04-06 06:57:35 +00004984 // If no parameter was specified, verify that *something* was specified,
4985 // otherwise we have a missing type and identifier.
Chris Lattnerde39c3e2009-02-27 18:38:20 +00004986 if (DS.isEmpty() && ParmDecl.getIdentifier() == 0 &&
4987 ParmDecl.getNumTypeObjects() == 0) {
Chris Lattner371ed4e2008-04-06 06:57:35 +00004988 // Completely missing, emit error.
4989 Diag(DSStart, diag::err_missing_param);
4990 } else {
4991 // Otherwise, we have something. Add it and let semantic analysis try
4992 // to grok it and add the result to the ParamInfo we are building.
Mike Stump11289f42009-09-09 15:08:12 +00004993
Chris Lattner371ed4e2008-04-06 06:57:35 +00004994 // Inform the actions module about the parameter declarator, so it gets
4995 // added to the current scope.
John McCall48871652010-08-21 09:40:31 +00004996 Decl *Param = Actions.ActOnParamDeclarator(getCurScope(), ParmDecl);
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00004997
4998 // Parse the default argument, if any. We parse the default
4999 // arguments in all dialects; the semantic analysis in
5000 // ActOnParamDefaultArgument will reject the default argument in
5001 // C.
5002 if (Tok.is(tok::equal)) {
Douglas Gregor58354032008-12-24 00:01:03 +00005003 SourceLocation EqualLoc = Tok.getLocation();
5004
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00005005 // Parse the default argument
Douglas Gregor4d87df52008-12-16 21:30:33 +00005006 if (D.getContext() == Declarator::MemberContext) {
5007 // If we're inside a class definition, cache the tokens
5008 // corresponding to the default argument. We'll actually parse
5009 // them when we see the end of the class definition.
Douglas Gregor4d87df52008-12-16 21:30:33 +00005010 // FIXME: Can we use a smart pointer for Toks?
5011 DefArgToks = new CachedTokens;
5012
Mike Stump11289f42009-09-09 15:08:12 +00005013 if (!ConsumeAndStoreUntil(tok::comma, tok::r_paren, *DefArgToks,
Argyrios Kyrtzidis8d7bdba2010-04-23 21:20:12 +00005014 /*StopAtSemi=*/true,
5015 /*ConsumeFinalToken=*/false)) {
Douglas Gregor4d87df52008-12-16 21:30:33 +00005016 delete DefArgToks;
5017 DefArgToks = 0;
Douglas Gregor58354032008-12-24 00:01:03 +00005018 Actions.ActOnParamDefaultArgumentError(Param);
Argyrios Kyrtzidis249179c2010-08-06 09:47:24 +00005019 } else {
5020 // Mark the end of the default argument so that we know when to
5021 // stop when we parse it later on.
5022 Token DefArgEnd;
5023 DefArgEnd.startToken();
5024 DefArgEnd.setKind(tok::cxx_defaultarg_end);
5025 DefArgEnd.setLocation(Tok.getLocation());
5026 DefArgToks->push_back(DefArgEnd);
Mike Stump11289f42009-09-09 15:08:12 +00005027 Actions.ActOnParamUnparsedDefaultArgument(Param, EqualLoc,
Anders Carlsson84613c42009-06-12 16:51:40 +00005028 (*DefArgToks)[1].getLocation());
Argyrios Kyrtzidis249179c2010-08-06 09:47:24 +00005029 }
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00005030 } else {
Douglas Gregor4d87df52008-12-16 21:30:33 +00005031 // Consume the '='.
Douglas Gregor58354032008-12-24 00:01:03 +00005032 ConsumeToken();
Mike Stump11289f42009-09-09 15:08:12 +00005033
Chad Rosierc1183952012-06-26 22:30:43 +00005034 // The argument isn't actually potentially evaluated unless it is
Douglas Gregor8a01b2a2010-09-11 20:24:53 +00005035 // used.
5036 EnterExpressionEvaluationContext Eval(Actions,
Douglas Gregor7fcbd902012-02-21 00:37:24 +00005037 Sema::PotentiallyEvaluatedIfUsed,
5038 Param);
Douglas Gregor8a01b2a2010-09-11 20:24:53 +00005039
Sebastian Redldb63af22012-03-14 15:54:00 +00005040 ExprResult DefArgResult;
Sebastian Redl1678d5f2012-03-18 22:25:45 +00005041 if (getLangOpts().CPlusPlus0x && Tok.is(tok::l_brace)) {
5042 Diag(Tok, diag::warn_cxx98_compat_generalized_initializer_lists);
Sebastian Redldb63af22012-03-14 15:54:00 +00005043 DefArgResult = ParseBraceInitializer();
Sebastian Redl1678d5f2012-03-18 22:25:45 +00005044 } else
Sebastian Redldb63af22012-03-14 15:54:00 +00005045 DefArgResult = ParseAssignmentExpression();
Douglas Gregor4d87df52008-12-16 21:30:33 +00005046 if (DefArgResult.isInvalid()) {
5047 Actions.ActOnParamDefaultArgumentError(Param);
5048 SkipUntil(tok::comma, tok::r_paren, true, true);
5049 } else {
5050 // Inform the actions module about the default argument
5051 Actions.ActOnParamDefaultArgument(Param, EqualLoc,
John McCallb268a282010-08-23 23:25:46 +00005052 DefArgResult.take());
Douglas Gregor4d87df52008-12-16 21:30:33 +00005053 }
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00005054 }
5055 }
Mike Stump11289f42009-09-09 15:08:12 +00005056
5057 ParamInfo.push_back(DeclaratorChunk::ParamInfo(ParmII,
5058 ParmDecl.getIdentifierLoc(), Param,
Douglas Gregor4d87df52008-12-16 21:30:33 +00005059 DefArgToks));
Chris Lattner371ed4e2008-04-06 06:57:35 +00005060 }
5061
5062 // If the next token is a comma, consume it and keep reading arguments.
Douglas Gregor9bfc2e52009-09-22 21:41:40 +00005063 if (Tok.isNot(tok::comma)) {
5064 if (Tok.is(tok::ellipsis)) {
Douglas Gregor9bfc2e52009-09-22 21:41:40 +00005065 EllipsisLoc = ConsumeToken(); // Consume the ellipsis.
Chad Rosierc1183952012-06-26 22:30:43 +00005066
David Blaikiebbafb8a2012-03-11 07:00:24 +00005067 if (!getLangOpts().CPlusPlus) {
Douglas Gregor9bfc2e52009-09-22 21:41:40 +00005068 // We have ellipsis without a preceding ',', which is ill-formed
5069 // in C. Complain and provide the fix.
5070 Diag(EllipsisLoc, diag::err_missing_comma_before_ellipsis)
Douglas Gregora771f462010-03-31 17:46:05 +00005071 << FixItHint::CreateInsertion(EllipsisLoc, ", ");
Douglas Gregor9bfc2e52009-09-22 21:41:40 +00005072 }
5073 }
Chad Rosierc1183952012-06-26 22:30:43 +00005074
Douglas Gregor9bfc2e52009-09-22 21:41:40 +00005075 break;
5076 }
Mike Stump11289f42009-09-09 15:08:12 +00005077
Chris Lattner371ed4e2008-04-06 06:57:35 +00005078 // Consume the comma.
5079 ConsumeToken();
Chris Lattneracd58a32006-08-06 17:24:14 +00005080 }
Mike Stump11289f42009-09-09 15:08:12 +00005081
Chris Lattner6c940e62008-04-06 06:34:08 +00005082}
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00005083
Chris Lattnere8074e62006-08-06 18:30:15 +00005084/// [C90] direct-declarator '[' constant-expression[opt] ']'
5085/// [C99] direct-declarator '[' type-qual-list[opt] assignment-expr[opt] ']'
5086/// [C99] direct-declarator '[' 'static' type-qual-list[opt] assign-expr ']'
5087/// [C99] direct-declarator '[' type-qual-list 'static' assignment-expr ']'
5088/// [C99] direct-declarator '[' type-qual-list[opt] '*' ']'
Richard Smith7bdcc4a2012-04-10 01:32:12 +00005089/// [C++11] direct-declarator '[' constant-expression[opt] ']'
5090/// attribute-specifier-seq[opt]
Chris Lattnere8074e62006-08-06 18:30:15 +00005091void Parser::ParseBracketDeclarator(Declarator &D) {
Richard Smith7bdcc4a2012-04-10 01:32:12 +00005092 if (CheckProhibitedCXX11Attribute())
5093 return;
5094
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00005095 BalancedDelimiterTracker T(*this, tok::l_square);
5096 T.consumeOpen();
Mike Stump11289f42009-09-09 15:08:12 +00005097
Chris Lattner84a11622008-12-18 07:27:21 +00005098 // C array syntax has many features, but by-far the most common is [] and [4].
5099 // This code does a fast path to handle some of the most obvious cases.
5100 if (Tok.getKind() == tok::r_square) {
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00005101 T.consumeClose();
John McCall084e83d2011-03-24 11:26:52 +00005102 ParsedAttributes attrs(AttrFactory);
John McCall53fa7142010-12-24 02:08:15 +00005103 MaybeParseCXX0XAttributes(attrs);
Chad Rosierc1183952012-06-26 22:30:43 +00005104
Chris Lattner84a11622008-12-18 07:27:21 +00005105 // Remember that we parsed the empty array type.
John McCalldadc5752010-08-24 06:29:42 +00005106 ExprResult NumElements;
John McCall084e83d2011-03-24 11:26:52 +00005107 D.AddTypeInfo(DeclaratorChunk::getArray(0, false, false, 0,
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00005108 T.getOpenLocation(),
5109 T.getCloseLocation()),
5110 attrs, T.getCloseLocation());
Chris Lattner84a11622008-12-18 07:27:21 +00005111 return;
5112 } else if (Tok.getKind() == tok::numeric_constant &&
5113 GetLookAheadToken(1).is(tok::r_square)) {
5114 // [4] is very common. Parse the numeric constant expression.
Richard Smithbcc22fc2012-03-09 08:00:36 +00005115 ExprResult ExprRes(Actions.ActOnNumericConstant(Tok, getCurScope()));
Chris Lattner84a11622008-12-18 07:27:21 +00005116 ConsumeToken();
5117
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00005118 T.consumeClose();
John McCall084e83d2011-03-24 11:26:52 +00005119 ParsedAttributes attrs(AttrFactory);
John McCall53fa7142010-12-24 02:08:15 +00005120 MaybeParseCXX0XAttributes(attrs);
Mike Stump11289f42009-09-09 15:08:12 +00005121
Chris Lattner84a11622008-12-18 07:27:21 +00005122 // Remember that we parsed a array type, and remember its features.
John McCall084e83d2011-03-24 11:26:52 +00005123 D.AddTypeInfo(DeclaratorChunk::getArray(0, false, 0,
John McCall53fa7142010-12-24 02:08:15 +00005124 ExprRes.release(),
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00005125 T.getOpenLocation(),
5126 T.getCloseLocation()),
5127 attrs, T.getCloseLocation());
Chris Lattner84a11622008-12-18 07:27:21 +00005128 return;
5129 }
Mike Stump11289f42009-09-09 15:08:12 +00005130
Chris Lattnere8074e62006-08-06 18:30:15 +00005131 // If valid, this location is the position where we read the 'static' keyword.
5132 SourceLocation StaticLoc;
Chris Lattner76c72282007-10-09 17:33:22 +00005133 if (Tok.is(tok::kw_static))
Chris Lattneraf635312006-10-16 06:06:51 +00005134 StaticLoc = ConsumeToken();
Mike Stump11289f42009-09-09 15:08:12 +00005135
Chris Lattnere8074e62006-08-06 18:30:15 +00005136 // If there is a type-qualifier-list, read it now.
Chris Lattnerb6ec4e72008-12-18 06:50:14 +00005137 // Type qualifiers in an array subscript are a C99 feature.
John McCall084e83d2011-03-24 11:26:52 +00005138 DeclSpec DS(AttrFactory);
Chris Lattnercf0bab22008-12-18 07:02:59 +00005139 ParseTypeQualifierListOpt(DS, false /*no attributes*/);
Mike Stump11289f42009-09-09 15:08:12 +00005140
Chris Lattnere8074e62006-08-06 18:30:15 +00005141 // If we haven't already read 'static', check to see if there is one after the
5142 // type-qualifier-list.
Chris Lattner76c72282007-10-09 17:33:22 +00005143 if (!StaticLoc.isValid() && Tok.is(tok::kw_static))
Chris Lattneraf635312006-10-16 06:06:51 +00005144 StaticLoc = ConsumeToken();
Mike Stump11289f42009-09-09 15:08:12 +00005145
Chris Lattnere8074e62006-08-06 18:30:15 +00005146 // Handle "direct-declarator [ type-qual-list[opt] * ]".
Chris Lattnere8074e62006-08-06 18:30:15 +00005147 bool isStar = false;
John McCalldadc5752010-08-24 06:29:42 +00005148 ExprResult NumElements;
Mike Stump11289f42009-09-09 15:08:12 +00005149
Chris Lattner521ff2b2008-04-06 05:26:30 +00005150 // Handle the case where we have '[*]' as the array size. However, a leading
5151 // star could be the start of an expression, for example 'X[*p + 4]'. Verify
Sylvestre Ledru830885c2012-07-23 08:59:39 +00005152 // the token after the star is a ']'. Since stars in arrays are
Chris Lattner521ff2b2008-04-06 05:26:30 +00005153 // infrequent, use of lookahead is not costly here.
5154 if (Tok.is(tok::star) && GetLookAheadToken(1).is(tok::r_square)) {
Chris Lattnerc439f0d2008-04-06 05:27:21 +00005155 ConsumeToken(); // Eat the '*'.
Chris Lattner1906f802006-08-06 19:14:46 +00005156
Chris Lattnerb6ec4e72008-12-18 06:50:14 +00005157 if (StaticLoc.isValid()) {
Chris Lattner521ff2b2008-04-06 05:26:30 +00005158 Diag(StaticLoc, diag::err_unspecified_vla_size_with_static);
Chris Lattnerb6ec4e72008-12-18 06:50:14 +00005159 StaticLoc = SourceLocation(); // Drop the static.
5160 }
Chris Lattner521ff2b2008-04-06 05:26:30 +00005161 isStar = true;
Chris Lattner76c72282007-10-09 17:33:22 +00005162 } else if (Tok.isNot(tok::r_square)) {
Chris Lattner84a11622008-12-18 07:27:21 +00005163 // Note, in C89, this production uses the constant-expr production instead
5164 // of assignment-expr. The only difference is that assignment-expr allows
5165 // things like '=' and '*='. Sema rejects these in C89 mode because they
5166 // are not i-c-e's, so we don't need to distinguish between the two here.
Mike Stump11289f42009-09-09 15:08:12 +00005167
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00005168 // Parse the constant-expression or assignment-expression now (depending
5169 // on dialect).
David Blaikiebbafb8a2012-03-11 07:00:24 +00005170 if (getLangOpts().CPlusPlus) {
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00005171 NumElements = ParseConstantExpression();
Eli Friedmane0afc982012-01-21 01:01:51 +00005172 } else {
5173 EnterExpressionEvaluationContext Unevaluated(Actions,
5174 Sema::ConstantEvaluated);
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00005175 NumElements = ParseAssignmentExpression();
Eli Friedmane0afc982012-01-21 01:01:51 +00005176 }
Chris Lattner62591722006-08-12 18:40:58 +00005177 }
Mike Stump11289f42009-09-09 15:08:12 +00005178
Chris Lattner62591722006-08-12 18:40:58 +00005179 // If there was an error parsing the assignment-expression, recover.
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00005180 if (NumElements.isInvalid()) {
Chris Lattnercd2a8c52009-04-24 22:30:50 +00005181 D.setInvalidType(true);
Chris Lattner62591722006-08-12 18:40:58 +00005182 // If the expression was invalid, skip it.
5183 SkipUntil(tok::r_square);
5184 return;
Chris Lattnere8074e62006-08-06 18:30:15 +00005185 }
Sebastian Redlf6591ca2009-02-09 18:23:29 +00005186
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00005187 T.consumeClose();
Sebastian Redlf6591ca2009-02-09 18:23:29 +00005188
John McCall084e83d2011-03-24 11:26:52 +00005189 ParsedAttributes attrs(AttrFactory);
John McCall53fa7142010-12-24 02:08:15 +00005190 MaybeParseCXX0XAttributes(attrs);
Alexis Hunt96d5c762009-11-21 08:43:09 +00005191
Chris Lattner84a11622008-12-18 07:27:21 +00005192 // Remember that we parsed a array type, and remember its features.
John McCall084e83d2011-03-24 11:26:52 +00005193 D.AddTypeInfo(DeclaratorChunk::getArray(DS.getTypeQualifiers(),
Chris Lattnercbc426d2006-12-02 06:43:02 +00005194 StaticLoc.isValid(), isStar,
Douglas Gregor04318252009-07-06 15:59:29 +00005195 NumElements.release(),
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00005196 T.getOpenLocation(),
5197 T.getCloseLocation()),
5198 attrs, T.getCloseLocation());
Chris Lattnere8074e62006-08-06 18:30:15 +00005199}
5200
Argyrios Kyrtzidis2545aeb2008-09-05 11:26:19 +00005201/// [GNU] typeof-specifier:
5202/// typeof ( expressions )
5203/// typeof ( type-name )
5204/// [GNU/C++] typeof unary-expression
Steve Naroffad373bd2007-07-31 12:34:36 +00005205///
5206void Parser::ParseTypeofSpecifier(DeclSpec &DS) {
Chris Lattner76c72282007-10-09 17:33:22 +00005207 assert(Tok.is(tok::kw_typeof) && "Not a typeof specifier");
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00005208 Token OpTok = Tok;
Steve Naroffad373bd2007-07-31 12:34:36 +00005209 SourceLocation StartLoc = ConsumeToken();
5210
John McCalle8595032010-01-13 20:03:27 +00005211 const bool hasParens = Tok.is(tok::l_paren);
5212
Eli Friedman15681d62012-09-26 04:34:21 +00005213 EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated,
5214 Sema::ReuseLambdaContextDecl);
Eli Friedmane0afc982012-01-21 01:01:51 +00005215
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00005216 bool isCastExpr;
John McCallba7bf592010-08-24 05:47:05 +00005217 ParsedType CastTy;
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00005218 SourceRange CastRange;
Peter Collingbournee190dee2011-03-11 19:24:49 +00005219 ExprResult Operand = ParseExprAfterUnaryExprOrTypeTrait(OpTok, isCastExpr,
5220 CastTy, CastRange);
John McCalle8595032010-01-13 20:03:27 +00005221 if (hasParens)
5222 DS.setTypeofParensRange(CastRange);
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00005223
5224 if (CastRange.getEnd().isInvalid())
Argyrios Kyrtzidisf5cc7ac2009-05-22 10:22:18 +00005225 // FIXME: Not accurate, the range gets one token more than it should.
5226 DS.SetRangeEnd(Tok.getLocation());
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00005227 else
5228 DS.SetRangeEnd(CastRange.getEnd());
Mike Stump11289f42009-09-09 15:08:12 +00005229
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00005230 if (isCastExpr) {
5231 if (!CastTy) {
5232 DS.SetTypeSpecError();
Argyrios Kyrtzidis2545aeb2008-09-05 11:26:19 +00005233 return;
Douglas Gregor220cac52009-02-18 17:45:20 +00005234 }
Argyrios Kyrtzidis2545aeb2008-09-05 11:26:19 +00005235
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00005236 const char *PrevSpec = 0;
John McCall49bfce42009-08-03 20:12:06 +00005237 unsigned DiagID;
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00005238 // Check for duplicate type specifiers (e.g. "int typeof(int)").
5239 if (DS.SetTypeSpecType(DeclSpec::TST_typeofType, StartLoc, PrevSpec,
John McCall49bfce42009-08-03 20:12:06 +00005240 DiagID, CastTy))
5241 Diag(StartLoc, DiagID) << PrevSpec;
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00005242 return;
Argyrios Kyrtzidisf5cc7ac2009-05-22 10:22:18 +00005243 }
Argyrios Kyrtzidis2545aeb2008-09-05 11:26:19 +00005244
Argyrios Kyrtzidisf5cc7ac2009-05-22 10:22:18 +00005245 // If we get here, the operand to the typeof was an expresion.
5246 if (Operand.isInvalid()) {
5247 DS.SetTypeSpecError();
Steve Naroff4bd2f712007-08-02 02:53:48 +00005248 return;
Steve Naroffad373bd2007-07-31 12:34:36 +00005249 }
Argyrios Kyrtzidis2545aeb2008-09-05 11:26:19 +00005250
Eli Friedmane0afc982012-01-21 01:01:51 +00005251 // We might need to transform the operand if it is potentially evaluated.
5252 Operand = Actions.HandleExprEvaluationContextForTypeof(Operand.get());
5253 if (Operand.isInvalid()) {
5254 DS.SetTypeSpecError();
5255 return;
5256 }
5257
Argyrios Kyrtzidisf5cc7ac2009-05-22 10:22:18 +00005258 const char *PrevSpec = 0;
John McCall49bfce42009-08-03 20:12:06 +00005259 unsigned DiagID;
Argyrios Kyrtzidisf5cc7ac2009-05-22 10:22:18 +00005260 // Check for duplicate type specifiers (e.g. "int typeof(int)").
5261 if (DS.SetTypeSpecType(DeclSpec::TST_typeofExpr, StartLoc, PrevSpec,
John McCallba7bf592010-08-24 05:47:05 +00005262 DiagID, Operand.get()))
John McCall49bfce42009-08-03 20:12:06 +00005263 Diag(StartLoc, DiagID) << PrevSpec;
Steve Naroffad373bd2007-07-31 12:34:36 +00005264}
Chris Lattner73a9c7d2010-02-28 18:33:55 +00005265
Benjamin Kramere56f3932011-12-23 17:00:35 +00005266/// [C11] atomic-specifier:
Eli Friedman0dfb8892011-10-06 23:00:33 +00005267/// _Atomic ( type-name )
5268///
5269void Parser::ParseAtomicSpecifier(DeclSpec &DS) {
5270 assert(Tok.is(tok::kw__Atomic) && "Not an atomic specifier");
5271
5272 SourceLocation StartLoc = ConsumeToken();
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00005273 BalancedDelimiterTracker T(*this, tok::l_paren);
5274 if (T.expectAndConsume(diag::err_expected_lparen_after, "_Atomic")) {
Eli Friedman0dfb8892011-10-06 23:00:33 +00005275 SkipUntil(tok::r_paren);
5276 return;
5277 }
5278
5279 TypeResult Result = ParseTypeName();
5280 if (Result.isInvalid()) {
5281 SkipUntil(tok::r_paren);
5282 return;
5283 }
5284
5285 // Match the ')'
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00005286 T.consumeClose();
Eli Friedman0dfb8892011-10-06 23:00:33 +00005287
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00005288 if (T.getCloseLocation().isInvalid())
Eli Friedman0dfb8892011-10-06 23:00:33 +00005289 return;
5290
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00005291 DS.setTypeofParensRange(T.getRange());
5292 DS.SetRangeEnd(T.getCloseLocation());
Eli Friedman0dfb8892011-10-06 23:00:33 +00005293
5294 const char *PrevSpec = 0;
5295 unsigned DiagID;
5296 if (DS.SetTypeSpecType(DeclSpec::TST_atomic, StartLoc, PrevSpec,
5297 DiagID, Result.release()))
5298 Diag(StartLoc, DiagID) << PrevSpec;
5299}
5300
Chris Lattner73a9c7d2010-02-28 18:33:55 +00005301
5302/// TryAltiVecVectorTokenOutOfLine - Out of line body that should only be called
5303/// from TryAltiVecVectorToken.
5304bool Parser::TryAltiVecVectorTokenOutOfLine() {
5305 Token Next = NextToken();
5306 switch (Next.getKind()) {
5307 default: return false;
5308 case tok::kw_short:
5309 case tok::kw_long:
5310 case tok::kw_signed:
5311 case tok::kw_unsigned:
5312 case tok::kw_void:
5313 case tok::kw_char:
5314 case tok::kw_int:
5315 case tok::kw_float:
5316 case tok::kw_double:
5317 case tok::kw_bool:
5318 case tok::kw___pixel:
5319 Tok.setKind(tok::kw___vector);
5320 return true;
5321 case tok::identifier:
5322 if (Next.getIdentifierInfo() == Ident_pixel) {
5323 Tok.setKind(tok::kw___vector);
5324 return true;
5325 }
5326 return false;
5327 }
5328}
5329
5330bool Parser::TryAltiVecTokenOutOfLine(DeclSpec &DS, SourceLocation Loc,
5331 const char *&PrevSpec, unsigned &DiagID,
5332 bool &isInvalid) {
5333 if (Tok.getIdentifierInfo() == Ident_vector) {
5334 Token Next = NextToken();
5335 switch (Next.getKind()) {
5336 case tok::kw_short:
5337 case tok::kw_long:
5338 case tok::kw_signed:
5339 case tok::kw_unsigned:
5340 case tok::kw_void:
5341 case tok::kw_char:
5342 case tok::kw_int:
5343 case tok::kw_float:
5344 case tok::kw_double:
5345 case tok::kw_bool:
5346 case tok::kw___pixel:
5347 isInvalid = DS.SetTypeAltiVecVector(true, Loc, PrevSpec, DiagID);
5348 return true;
5349 case tok::identifier:
5350 if (Next.getIdentifierInfo() == Ident_pixel) {
5351 isInvalid = DS.SetTypeAltiVecVector(true, Loc, PrevSpec, DiagID);
5352 return true;
5353 }
5354 break;
5355 default:
5356 break;
5357 }
Douglas Gregor9938e3b2010-06-16 15:28:57 +00005358 } else if ((Tok.getIdentifierInfo() == Ident_pixel) &&
Chris Lattner73a9c7d2010-02-28 18:33:55 +00005359 DS.isTypeAltiVecVector()) {
5360 isInvalid = DS.SetTypeAltiVecPixel(true, Loc, PrevSpec, DiagID);
5361 return true;
5362 }
5363 return false;
5364}