blob: e11fb913a768fd698bc1b475237c14f66761d6e5 [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
Bill Wendling44426052012-12-20 19:22:21 +0000145 // Attributes in a class are parsed at the end of the class, along
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +0000146 // 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) ||
Chad Rosier6c0da112012-12-21 21:27:13 +0000461 Tok.is(tok::kw___ptr32) || Tok.is(tok::kw___unaligned)) {
Eli Friedman53339e02009-06-08 23:27:34 +0000462 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
463 SourceLocation AttrNameLoc = ConsumeToken();
John McCall084e83d2011-03-24 11:26:52 +0000464 attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0,
Richard Smith0cdcc982013-01-29 01:24:26 +0000465 SourceLocation(), 0, 0, AttributeList::AS_Keyword);
Eli Friedman53339e02009-06-08 23:27:34 +0000466 }
Steve Naroff3a9b7e02008-12-24 20:59:21 +0000467}
468
John McCall53fa7142010-12-24 02:08:15 +0000469void Parser::ParseBorlandTypeAttributes(ParsedAttributes &attrs) {
Dawn Perchik335e16b2010-09-03 01:29:35 +0000470 // Treat these like attributes
471 while (Tok.is(tok::kw___pascal)) {
472 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
473 SourceLocation AttrNameLoc = ConsumeToken();
John McCall084e83d2011-03-24 11:26:52 +0000474 attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0,
Richard Smith0cdcc982013-01-29 01:24:26 +0000475 SourceLocation(), 0, 0, AttributeList::AS_Keyword);
Dawn Perchik335e16b2010-09-03 01:29:35 +0000476 }
John McCall53fa7142010-12-24 02:08:15 +0000477}
478
Peter Collingbourne7ce13fc2011-02-14 01:42:53 +0000479void Parser::ParseOpenCLAttributes(ParsedAttributes &attrs) {
480 // Treat these like attributes
481 while (Tok.is(tok::kw___kernel)) {
Richard Smith0cdcc982013-01-29 01:24:26 +0000482 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
Peter Collingbourne7ce13fc2011-02-14 01:42:53 +0000483 SourceLocation AttrNameLoc = ConsumeToken();
Richard Smith0cdcc982013-01-29 01:24:26 +0000484 attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0,
485 SourceLocation(), 0, 0, AttributeList::AS_Keyword);
Peter Collingbourne7ce13fc2011-02-14 01:42:53 +0000486 }
487}
488
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000489void Parser::ParseOpenCLQualifiers(DeclSpec &DS) {
Richard Smith0cdcc982013-01-29 01:24:26 +0000490 // FIXME: The mapping from attribute spelling to semantics should be
491 // performed in Sema, not here.
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000492 SourceLocation Loc = Tok.getLocation();
493 switch(Tok.getKind()) {
494 // OpenCL qualifiers:
495 case tok::kw___private:
Chad Rosierc1183952012-06-26 22:30:43 +0000496 case tok::kw_private:
John McCall084e83d2011-03-24 11:26:52 +0000497 DS.getAttributes().addNewInteger(
Chad Rosierc1183952012-06-26 22:30:43 +0000498 Actions.getASTContext(),
John McCall084e83d2011-03-24 11:26:52 +0000499 PP.getIdentifierInfo("address_space"), Loc, 0);
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000500 break;
Chad Rosierc1183952012-06-26 22:30:43 +0000501
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000502 case tok::kw___global:
John McCall084e83d2011-03-24 11:26:52 +0000503 DS.getAttributes().addNewInteger(
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000504 Actions.getASTContext(),
John McCall084e83d2011-03-24 11:26:52 +0000505 PP.getIdentifierInfo("address_space"), Loc, LangAS::opencl_global);
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000506 break;
Chad Rosierc1183952012-06-26 22:30:43 +0000507
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000508 case tok::kw___local:
John McCall084e83d2011-03-24 11:26:52 +0000509 DS.getAttributes().addNewInteger(
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000510 Actions.getASTContext(),
John McCall084e83d2011-03-24 11:26:52 +0000511 PP.getIdentifierInfo("address_space"), Loc, LangAS::opencl_local);
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000512 break;
Chad Rosierc1183952012-06-26 22:30:43 +0000513
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000514 case tok::kw___constant:
John McCall084e83d2011-03-24 11:26:52 +0000515 DS.getAttributes().addNewInteger(
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000516 Actions.getASTContext(),
John McCall084e83d2011-03-24 11:26:52 +0000517 PP.getIdentifierInfo("address_space"), Loc, LangAS::opencl_constant);
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000518 break;
Chad Rosierc1183952012-06-26 22:30:43 +0000519
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000520 case tok::kw___read_only:
John McCall084e83d2011-03-24 11:26:52 +0000521 DS.getAttributes().addNewInteger(
Chad Rosierc1183952012-06-26 22:30:43 +0000522 Actions.getASTContext(),
John McCall084e83d2011-03-24 11:26:52 +0000523 PP.getIdentifierInfo("opencl_image_access"), Loc, CLIA_read_only);
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000524 break;
Chad Rosierc1183952012-06-26 22:30:43 +0000525
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000526 case tok::kw___write_only:
John McCall084e83d2011-03-24 11:26:52 +0000527 DS.getAttributes().addNewInteger(
Chad Rosierc1183952012-06-26 22:30:43 +0000528 Actions.getASTContext(),
John McCall084e83d2011-03-24 11:26:52 +0000529 PP.getIdentifierInfo("opencl_image_access"), Loc, CLIA_write_only);
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000530 break;
Chad Rosierc1183952012-06-26 22:30:43 +0000531
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000532 case tok::kw___read_write:
John McCall084e83d2011-03-24 11:26:52 +0000533 DS.getAttributes().addNewInteger(
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000534 Actions.getASTContext(),
John McCall084e83d2011-03-24 11:26:52 +0000535 PP.getIdentifierInfo("opencl_image_access"), Loc, CLIA_read_write);
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000536 break;
537 default: break;
538 }
539}
540
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000541/// \brief Parse a version number.
542///
543/// version:
544/// simple-integer
545/// simple-integer ',' simple-integer
546/// simple-integer ',' simple-integer ',' simple-integer
547VersionTuple Parser::ParseVersionTuple(SourceRange &Range) {
548 Range = Tok.getLocation();
549
550 if (!Tok.is(tok::numeric_constant)) {
551 Diag(Tok, diag::err_expected_version);
552 SkipUntil(tok::comma, tok::r_paren, true, true, true);
553 return VersionTuple();
554 }
555
556 // Parse the major (and possibly minor and subminor) versions, which
557 // are stored in the numeric constant. We utilize a quirk of the
558 // lexer, which is that it handles something like 1.2.3 as a single
559 // numeric constant, rather than two separate tokens.
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +0000560 SmallString<512> Buffer;
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000561 Buffer.resize(Tok.getLength()+1);
562 const char *ThisTokBegin = &Buffer[0];
563
564 // Get the spelling of the token, which eliminates trigraphs, etc.
565 bool Invalid = false;
566 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin, &Invalid);
567 if (Invalid)
568 return VersionTuple();
569
570 // Parse the major version.
571 unsigned AfterMajor = 0;
572 unsigned Major = 0;
573 while (AfterMajor < ActualLength && isdigit(ThisTokBegin[AfterMajor])) {
574 Major = Major * 10 + ThisTokBegin[AfterMajor] - '0';
575 ++AfterMajor;
576 }
577
578 if (AfterMajor == 0) {
579 Diag(Tok, diag::err_expected_version);
580 SkipUntil(tok::comma, tok::r_paren, true, true, true);
581 return VersionTuple();
582 }
583
584 if (AfterMajor == ActualLength) {
585 ConsumeToken();
586
587 // We only had a single version component.
588 if (Major == 0) {
589 Diag(Tok, diag::err_zero_version);
590 return VersionTuple();
591 }
592
593 return VersionTuple(Major);
594 }
595
596 if (ThisTokBegin[AfterMajor] != '.' || (AfterMajor + 1 == ActualLength)) {
597 Diag(Tok, diag::err_expected_version);
598 SkipUntil(tok::comma, tok::r_paren, true, true, true);
599 return VersionTuple();
600 }
601
602 // Parse the minor version.
603 unsigned AfterMinor = AfterMajor + 1;
604 unsigned Minor = 0;
605 while (AfterMinor < ActualLength && isdigit(ThisTokBegin[AfterMinor])) {
606 Minor = Minor * 10 + ThisTokBegin[AfterMinor] - '0';
607 ++AfterMinor;
608 }
609
610 if (AfterMinor == ActualLength) {
611 ConsumeToken();
Chad Rosierc1183952012-06-26 22:30:43 +0000612
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000613 // We had major.minor.
614 if (Major == 0 && Minor == 0) {
615 Diag(Tok, diag::err_zero_version);
616 return VersionTuple();
617 }
618
Chad Rosierc1183952012-06-26 22:30:43 +0000619 return VersionTuple(Major, Minor);
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000620 }
621
622 // If what follows is not a '.', we have a problem.
623 if (ThisTokBegin[AfterMinor] != '.') {
624 Diag(Tok, diag::err_expected_version);
625 SkipUntil(tok::comma, tok::r_paren, true, true, true);
Chad Rosierc1183952012-06-26 22:30:43 +0000626 return VersionTuple();
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000627 }
628
629 // Parse the subminor version.
630 unsigned AfterSubminor = AfterMinor + 1;
631 unsigned Subminor = 0;
632 while (AfterSubminor < ActualLength && isdigit(ThisTokBegin[AfterSubminor])) {
633 Subminor = Subminor * 10 + ThisTokBegin[AfterSubminor] - '0';
634 ++AfterSubminor;
635 }
636
637 if (AfterSubminor != ActualLength) {
638 Diag(Tok, diag::err_expected_version);
639 SkipUntil(tok::comma, tok::r_paren, true, true, true);
640 return VersionTuple();
641 }
642 ConsumeToken();
643 return VersionTuple(Major, Minor, Subminor);
644}
645
646/// \brief Parse the contents of the "availability" attribute.
647///
648/// availability-attribute:
Fariborz Jahanian88d510d2011-12-10 00:28:41 +0000649/// 'availability' '(' platform ',' version-arg-list, opt-message')'
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000650///
651/// platform:
652/// identifier
653///
654/// version-arg-list:
655/// version-arg
656/// version-arg ',' version-arg-list
657///
658/// version-arg:
659/// 'introduced' '=' version
660/// 'deprecated' '=' version
Douglas Gregorfdd417f2012-03-11 04:53:21 +0000661/// 'obsoleted' = version
Douglas Gregor7ab142b2011-03-26 03:35:55 +0000662/// 'unavailable'
Fariborz Jahanian88d510d2011-12-10 00:28:41 +0000663/// opt-message:
664/// 'message' '=' <string>
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000665void Parser::ParseAvailabilityAttribute(IdentifierInfo &Availability,
666 SourceLocation AvailabilityLoc,
667 ParsedAttributes &attrs,
668 SourceLocation *endLoc) {
669 SourceLocation PlatformLoc;
670 IdentifierInfo *Platform = 0;
671
672 enum { Introduced, Deprecated, Obsoleted, Unknown };
673 AvailabilityChange Changes[Unknown];
Fariborz Jahanian88d510d2011-12-10 00:28:41 +0000674 ExprResult MessageExpr;
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000675
676 // Opening '('.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +0000677 BalancedDelimiterTracker T(*this, tok::l_paren);
678 if (T.consumeOpen()) {
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000679 Diag(Tok, diag::err_expected_lparen);
680 return;
681 }
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000682
683 // Parse the platform name,
684 if (Tok.isNot(tok::identifier)) {
685 Diag(Tok, diag::err_availability_expected_platform);
686 SkipUntil(tok::r_paren);
687 return;
688 }
689 Platform = Tok.getIdentifierInfo();
690 PlatformLoc = ConsumeToken();
691
692 // Parse the ',' following the platform name.
693 if (ExpectAndConsume(tok::comma, diag::err_expected_comma, "", tok::r_paren))
694 return;
695
696 // If we haven't grabbed the pointers for the identifiers
697 // "introduced", "deprecated", and "obsoleted", do so now.
698 if (!Ident_introduced) {
699 Ident_introduced = PP.getIdentifierInfo("introduced");
700 Ident_deprecated = PP.getIdentifierInfo("deprecated");
701 Ident_obsoleted = PP.getIdentifierInfo("obsoleted");
Douglas Gregor7ab142b2011-03-26 03:35:55 +0000702 Ident_unavailable = PP.getIdentifierInfo("unavailable");
Fariborz Jahanian88d510d2011-12-10 00:28:41 +0000703 Ident_message = PP.getIdentifierInfo("message");
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000704 }
705
706 // Parse the set of introductions/deprecations/removals.
Douglas Gregor7ab142b2011-03-26 03:35:55 +0000707 SourceLocation UnavailableLoc;
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000708 do {
709 if (Tok.isNot(tok::identifier)) {
710 Diag(Tok, diag::err_availability_expected_change);
711 SkipUntil(tok::r_paren);
712 return;
713 }
714 IdentifierInfo *Keyword = Tok.getIdentifierInfo();
715 SourceLocation KeywordLoc = ConsumeToken();
716
Douglas Gregor7ab142b2011-03-26 03:35:55 +0000717 if (Keyword == Ident_unavailable) {
718 if (UnavailableLoc.isValid()) {
719 Diag(KeywordLoc, diag::err_availability_redundant)
720 << Keyword << SourceRange(UnavailableLoc);
Chad Rosierc1183952012-06-26 22:30:43 +0000721 }
Douglas Gregor7ab142b2011-03-26 03:35:55 +0000722 UnavailableLoc = KeywordLoc;
723
724 if (Tok.isNot(tok::comma))
725 break;
726
727 ConsumeToken();
728 continue;
Chad Rosierc1183952012-06-26 22:30:43 +0000729 }
730
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000731 if (Tok.isNot(tok::equal)) {
732 Diag(Tok, diag::err_expected_equal_after)
733 << Keyword;
734 SkipUntil(tok::r_paren);
735 return;
736 }
737 ConsumeToken();
Fariborz Jahanian88d510d2011-12-10 00:28:41 +0000738 if (Keyword == Ident_message) {
739 if (!isTokenStringLiteral()) {
Andy Gibbsa8df57a2012-11-17 19:16:52 +0000740 Diag(Tok, diag::err_expected_string_literal)
741 << /*Source='availability attribute'*/2;
Fariborz Jahanian88d510d2011-12-10 00:28:41 +0000742 SkipUntil(tok::r_paren);
743 return;
744 }
745 MessageExpr = ParseStringLiteralExpression();
746 break;
747 }
Chad Rosierc1183952012-06-26 22:30:43 +0000748
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000749 SourceRange VersionRange;
750 VersionTuple Version = ParseVersionTuple(VersionRange);
Chad Rosierc1183952012-06-26 22:30:43 +0000751
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000752 if (Version.empty()) {
753 SkipUntil(tok::r_paren);
754 return;
755 }
756
757 unsigned Index;
758 if (Keyword == Ident_introduced)
759 Index = Introduced;
760 else if (Keyword == Ident_deprecated)
761 Index = Deprecated;
762 else if (Keyword == Ident_obsoleted)
763 Index = Obsoleted;
Chad Rosierc1183952012-06-26 22:30:43 +0000764 else
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000765 Index = Unknown;
766
767 if (Index < Unknown) {
768 if (!Changes[Index].KeywordLoc.isInvalid()) {
769 Diag(KeywordLoc, diag::err_availability_redundant)
Chad Rosierc1183952012-06-26 22:30:43 +0000770 << Keyword
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000771 << SourceRange(Changes[Index].KeywordLoc,
772 Changes[Index].VersionRange.getEnd());
773 }
774
775 Changes[Index].KeywordLoc = KeywordLoc;
776 Changes[Index].Version = Version;
777 Changes[Index].VersionRange = VersionRange;
778 } else {
779 Diag(KeywordLoc, diag::err_availability_unknown_change)
780 << Keyword << VersionRange;
781 }
782
783 if (Tok.isNot(tok::comma))
784 break;
785
786 ConsumeToken();
787 } while (true);
788
789 // Closing ')'.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +0000790 if (T.consumeClose())
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000791 return;
792
793 if (endLoc)
Douglas Gregore7a8e3b2011-10-12 16:37:45 +0000794 *endLoc = T.getCloseLocation();
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000795
Douglas Gregor7ab142b2011-03-26 03:35:55 +0000796 // The 'unavailable' availability cannot be combined with any other
797 // availability changes. Make sure that hasn't happened.
798 if (UnavailableLoc.isValid()) {
799 bool Complained = false;
800 for (unsigned Index = Introduced; Index != Unknown; ++Index) {
801 if (Changes[Index].KeywordLoc.isValid()) {
802 if (!Complained) {
803 Diag(UnavailableLoc, diag::warn_availability_and_unavailable)
804 << SourceRange(Changes[Index].KeywordLoc,
805 Changes[Index].VersionRange.getEnd());
806 Complained = true;
807 }
808
809 // Clear out the availability.
810 Changes[Index] = AvailabilityChange();
811 }
812 }
813 }
814
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000815 // Record this attribute
Chad Rosierc1183952012-06-26 22:30:43 +0000816 attrs.addNew(&Availability,
817 SourceRange(AvailabilityLoc, T.getCloseLocation()),
Fariborz Jahanian586be882012-01-23 23:38:32 +0000818 0, AvailabilityLoc,
John McCall084e83d2011-03-24 11:26:52 +0000819 Platform, PlatformLoc,
820 Changes[Introduced],
821 Changes[Deprecated],
Chad Rosierc1183952012-06-26 22:30:43 +0000822 Changes[Obsoleted],
Fariborz Jahanian88d510d2011-12-10 00:28:41 +0000823 UnavailableLoc, MessageExpr.take(),
Alexis Hunta0e54d42012-06-18 16:13:52 +0000824 AttributeList::AS_GNU);
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000825}
826
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000827
Bill Wendling44426052012-12-20 19:22:21 +0000828// Late Parsed Attributes:
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000829// See other examples of late parsing in lib/Parse/ParseCXXInlineMethods
830
831void Parser::LateParsedDeclaration::ParseLexedAttributes() {}
832
833void Parser::LateParsedClass::ParseLexedAttributes() {
834 Self->ParseLexedAttributes(*Class);
835}
836
837void Parser::LateParsedAttribute::ParseLexedAttributes() {
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +0000838 Self->ParseLexedAttribute(*this, true, false);
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000839}
840
841/// Wrapper class which calls ParseLexedAttribute, after setting up the
842/// scope appropriately.
843void Parser::ParseLexedAttributes(ParsingClass &Class) {
844 // Deal with templates
845 // FIXME: Test cases to make sure this does the right thing for templates.
846 bool HasTemplateScope = !Class.TopLevelClass && Class.TemplateScope;
847 ParseScope ClassTemplateScope(this, Scope::TemplateParamScope,
848 HasTemplateScope);
849 if (HasTemplateScope)
850 Actions.ActOnReenterTemplateScope(getCurScope(), Class.TagOrTemplate);
851
Douglas Gregor3024f072012-04-16 07:05:22 +0000852 // Set or update the scope flags.
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000853 bool AlreadyHasClassScope = Class.TopLevelClass;
Douglas Gregor3024f072012-04-16 07:05:22 +0000854 unsigned ScopeFlags = Scope::ClassScope|Scope::DeclScope;
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000855 ParseScope ClassScope(this, ScopeFlags, !AlreadyHasClassScope);
856 ParseScopeFlags ClassScopeFlags(this, ScopeFlags, AlreadyHasClassScope);
857
DeLesley Hutchins6f860042012-04-06 15:10:17 +0000858 // Enter the scope of nested classes
859 if (!AlreadyHasClassScope)
860 Actions.ActOnStartDelayedMemberDeclarations(getCurScope(),
861 Class.TagOrTemplate);
Benjamin Kramer1d373c62012-05-17 12:01:52 +0000862 if (!Class.LateParsedDeclarations.empty()) {
Douglas Gregor3024f072012-04-16 07:05:22 +0000863 for (unsigned i = 0, ni = Class.LateParsedDeclarations.size(); i < ni; ++i){
864 Class.LateParsedDeclarations[i]->ParseLexedAttributes();
865 }
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000866 }
Chad Rosierc1183952012-06-26 22:30:43 +0000867
DeLesley Hutchins6f860042012-04-06 15:10:17 +0000868 if (!AlreadyHasClassScope)
869 Actions.ActOnFinishDelayedMemberDeclarations(getCurScope(),
870 Class.TagOrTemplate);
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000871}
872
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +0000873
874/// \brief Parse all attributes in LAs, and attach them to Decl D.
875void Parser::ParseLexedAttributeList(LateParsedAttrList &LAs, Decl *D,
876 bool EnterScope, bool OnDefinition) {
DeLesley Hutchins66e300e2012-11-02 21:44:32 +0000877 assert(LAs.parseSoon() &&
878 "Attribute list should be marked for immediate parsing.");
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +0000879 for (unsigned i = 0, ni = LAs.size(); i < ni; ++i) {
DeLesley Hutchins19c722d2012-08-15 22:41:04 +0000880 if (D)
881 LAs[i]->addDecl(D);
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +0000882 ParseLexedAttribute(*LAs[i], EnterScope, OnDefinition);
Benjamin Kramerbafc49a2012-04-14 12:44:47 +0000883 delete LAs[i];
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +0000884 }
885 LAs.clear();
886}
887
888
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000889/// \brief Finish parsing an attribute for which parsing was delayed.
890/// This will be called at the end of parsing a class declaration
891/// for each LateParsedAttribute. We consume the saved tokens and
Chad Rosierc1183952012-06-26 22:30:43 +0000892/// create an attribute with the arguments filled in. We add this
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000893/// to the Attribute list for the decl.
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +0000894void Parser::ParseLexedAttribute(LateParsedAttribute &LA,
895 bool EnterScope, bool OnDefinition) {
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000896 // Save the current token position.
897 SourceLocation OrigLoc = Tok.getLocation();
898
899 // Append the current token at the end of the new token stream so that it
900 // doesn't get lost.
901 LA.Toks.push_back(Tok);
902 PP.EnterTokenStream(LA.Toks.data(), LA.Toks.size(), true, false);
903 // Consume the previously pushed token.
904 ConsumeAnyToken();
905
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +0000906 if (OnDefinition && !IsThreadSafetyAttribute(LA.AttrName.getName())) {
Richard Smith10876ef2013-01-17 01:30:42 +0000907 // FIXME: Do not warn on C++11 attributes, once we start supporting
908 // them here.
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +0000909 Diag(Tok, diag::warn_attribute_on_function_definition)
910 << LA.AttrName.getName();
911 }
912
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000913 ParsedAttributes Attrs(AttrFactory);
914 SourceLocation endLoc;
915
DeLesley Hutchinsf1150d32012-08-20 21:32:18 +0000916 if (LA.Decls.size() > 0) {
DeLesley Hutchinsbd2ee132012-03-02 22:12:59 +0000917 Decl *D = LA.Decls[0];
DeLesley Hutchinsf1150d32012-08-20 21:32:18 +0000918 NamedDecl *ND = dyn_cast<NamedDecl>(D);
919 RecordDecl *RD = dyn_cast_or_null<RecordDecl>(D->getDeclContext());
Caitlin Sadowski990d5712011-09-08 17:42:31 +0000920
DeLesley Hutchinsf1150d32012-08-20 21:32:18 +0000921 // Allow 'this' within late-parsed attributes.
922 Sema::CXXThisScopeRAII ThisScope(Actions, RD,
923 /*TypeQuals=*/0,
924 ND && RD && ND->isCXXInstanceMember());
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000925
DeLesley Hutchinsf1150d32012-08-20 21:32:18 +0000926 if (LA.Decls.size() == 1) {
927 // If the Decl is templatized, add template parameters to scope.
928 bool HasTemplateScope = EnterScope && D->isTemplateDecl();
929 ParseScope TempScope(this, Scope::TemplateParamScope, HasTemplateScope);
930 if (HasTemplateScope)
931 Actions.ActOnReenterTemplateScope(Actions.CurScope, D);
DeLesley Hutchinsbd2ee132012-03-02 22:12:59 +0000932
DeLesley Hutchinsf1150d32012-08-20 21:32:18 +0000933 // If the Decl is on a function, add function parameters to the scope.
934 bool HasFunScope = EnterScope && D->isFunctionOrFunctionTemplate();
935 ParseScope FnScope(this, Scope::FnScope|Scope::DeclScope, HasFunScope);
936 if (HasFunScope)
937 Actions.ActOnReenterFunctionContext(Actions.CurScope, D);
DeLesley Hutchinsbd2ee132012-03-02 22:12:59 +0000938
Michael Han23214e52012-10-03 01:56:22 +0000939 ParseGNUAttributeArgs(&LA.AttrName, LA.AttrNameLoc, Attrs, &endLoc,
Michael Han360d2252012-10-04 16:42:52 +0000940 0, SourceLocation(), AttributeList::AS_GNU);
DeLesley Hutchinsf1150d32012-08-20 21:32:18 +0000941
942 if (HasFunScope) {
943 Actions.ActOnExitFunctionContext();
944 FnScope.Exit(); // Pop scope, and remove Decls from IdResolver
945 }
946 if (HasTemplateScope) {
947 TempScope.Exit();
948 }
949 } else {
950 // If there are multiple decls, then the decl cannot be within the
951 // function scope.
Michael Han23214e52012-10-03 01:56:22 +0000952 ParseGNUAttributeArgs(&LA.AttrName, LA.AttrNameLoc, Attrs, &endLoc,
Michael Han360d2252012-10-04 16:42:52 +0000953 0, SourceLocation(), AttributeList::AS_GNU);
DeLesley Hutchinsbd2ee132012-03-02 22:12:59 +0000954 }
DeLesley Hutchins71d61032012-03-02 22:29:50 +0000955 } else {
956 Diag(Tok, diag::warn_attribute_no_decl) << LA.AttrName.getName();
Caitlin Sadowski990d5712011-09-08 17:42:31 +0000957 }
958
DeLesley Hutchinsbd2ee132012-03-02 22:12:59 +0000959 for (unsigned i = 0, ni = LA.Decls.size(); i < ni; ++i) {
960 Actions.ActOnFinishDelayedAttribute(getCurScope(), LA.Decls[i], Attrs);
961 }
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000962
963 if (Tok.getLocation() != OrigLoc) {
964 // Due to a parsing error, we either went over the cached tokens or
965 // there are still cached tokens left, so we skip the leftover tokens.
966 // Since this is an uncommon situation that should be avoided, use the
967 // expensive isBeforeInTranslationUnit call.
968 if (PP.getSourceManager().isBeforeInTranslationUnit(Tok.getLocation(),
969 OrigLoc))
970 while (Tok.getLocation() != OrigLoc && Tok.isNot(tok::eof))
Douglas Gregor0cf55e92012-03-08 01:00:17 +0000971 ConsumeAnyToken();
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000972 }
973}
974
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000975/// \brief Wrapper around a case statement checking if AttrName is
976/// one of the thread safety attributes
Dmitri Gribenkof8579502013-01-12 19:30:44 +0000977bool Parser::IsThreadSafetyAttribute(StringRef AttrName) {
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000978 return llvm::StringSwitch<bool>(AttrName)
979 .Case("guarded_by", true)
980 .Case("guarded_var", true)
981 .Case("pt_guarded_by", true)
982 .Case("pt_guarded_var", true)
983 .Case("lockable", true)
984 .Case("scoped_lockable", true)
985 .Case("no_thread_safety_analysis", true)
986 .Case("acquired_after", true)
987 .Case("acquired_before", true)
988 .Case("exclusive_lock_function", true)
989 .Case("shared_lock_function", true)
990 .Case("exclusive_trylock_function", true)
991 .Case("shared_trylock_function", true)
992 .Case("unlock_function", true)
993 .Case("lock_returned", true)
994 .Case("locks_excluded", true)
995 .Case("exclusive_locks_required", true)
996 .Case("shared_locks_required", true)
997 .Default(false);
998}
999
1000/// \brief Parse the contents of thread safety attributes. These
1001/// should always be parsed as an expression list.
1002///
1003/// We need to special case the parsing due to the fact that if the first token
1004/// of the first argument is an identifier, the main parse loop will store
1005/// that token as a "parameter" and the rest of
1006/// the arguments will be added to a list of "arguments". However,
1007/// subsequent tokens in the first argument are lost. We instead parse each
1008/// argument as an expression and add all arguments to the list of "arguments".
1009/// In future, we will take advantage of this special case to also
1010/// deal with some argument scoping issues here (for example, referring to a
1011/// function parameter in the attribute on that function).
1012void Parser::ParseThreadSafetyAttribute(IdentifierInfo &AttrName,
1013 SourceLocation AttrNameLoc,
1014 ParsedAttributes &Attrs,
1015 SourceLocation *EndLoc) {
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001016 assert(Tok.is(tok::l_paren) && "Attribute arg list not starting with '('");
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +00001017
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001018 BalancedDelimiterTracker T(*this, tok::l_paren);
1019 T.consumeOpen();
Chad Rosierc1183952012-06-26 22:30:43 +00001020
Benjamin Kramerf0623432012-08-23 22:51:59 +00001021 ExprVector ArgExprs;
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001022 bool ArgExprsOk = true;
Chad Rosierc1183952012-06-26 22:30:43 +00001023
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001024 // now parse the list of expressions
DeLesley Hutchins36f5d852011-12-14 19:36:06 +00001025 while (Tok.isNot(tok::r_paren)) {
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001026 ExprResult ArgExpr(ParseAssignmentExpression());
1027 if (ArgExpr.isInvalid()) {
1028 ArgExprsOk = false;
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001029 T.consumeClose();
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001030 break;
1031 } else {
1032 ArgExprs.push_back(ArgExpr.release());
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +00001033 }
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001034 if (Tok.isNot(tok::comma))
1035 break;
1036 ConsumeToken(); // Eat the comma, move to the next argument
1037 }
1038 // Match the ')'.
DeLesley Hutchins30398dd2012-01-20 22:50:54 +00001039 if (ArgExprsOk && !T.consumeClose()) {
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001040 Attrs.addNew(&AttrName, AttrNameLoc, 0, AttrNameLoc, 0, SourceLocation(),
Benjamin Kramerf0623432012-08-23 22:51:59 +00001041 ArgExprs.data(), ArgExprs.size(), AttributeList::AS_GNU);
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +00001042 }
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001043 if (EndLoc)
1044 *EndLoc = T.getCloseLocation();
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +00001045}
1046
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +00001047void Parser::ParseTypeTagForDatatypeAttribute(IdentifierInfo &AttrName,
1048 SourceLocation AttrNameLoc,
1049 ParsedAttributes &Attrs,
1050 SourceLocation *EndLoc) {
1051 assert(Tok.is(tok::l_paren) && "Attribute arg list not starting with '('");
1052
1053 BalancedDelimiterTracker T(*this, tok::l_paren);
1054 T.consumeOpen();
1055
1056 if (Tok.isNot(tok::identifier)) {
1057 Diag(Tok, diag::err_expected_ident);
1058 T.skipToEnd();
1059 return;
1060 }
1061 IdentifierInfo *ArgumentKind = Tok.getIdentifierInfo();
1062 SourceLocation ArgumentKindLoc = ConsumeToken();
1063
1064 if (Tok.isNot(tok::comma)) {
1065 Diag(Tok, diag::err_expected_comma);
1066 T.skipToEnd();
1067 return;
1068 }
1069 ConsumeToken();
1070
1071 SourceRange MatchingCTypeRange;
1072 TypeResult MatchingCType = ParseTypeName(&MatchingCTypeRange);
1073 if (MatchingCType.isInvalid()) {
1074 T.skipToEnd();
1075 return;
1076 }
1077
1078 bool LayoutCompatible = false;
1079 bool MustBeNull = false;
1080 while (Tok.is(tok::comma)) {
1081 ConsumeToken();
1082 if (Tok.isNot(tok::identifier)) {
1083 Diag(Tok, diag::err_expected_ident);
1084 T.skipToEnd();
1085 return;
1086 }
1087 IdentifierInfo *Flag = Tok.getIdentifierInfo();
1088 if (Flag->isStr("layout_compatible"))
1089 LayoutCompatible = true;
1090 else if (Flag->isStr("must_be_null"))
1091 MustBeNull = true;
1092 else {
1093 Diag(Tok, diag::err_type_safety_unknown_flag) << Flag;
1094 T.skipToEnd();
1095 return;
1096 }
1097 ConsumeToken(); // consume flag
1098 }
1099
1100 if (!T.consumeClose()) {
1101 Attrs.addNewTypeTagForDatatype(&AttrName, AttrNameLoc, 0, AttrNameLoc,
1102 ArgumentKind, ArgumentKindLoc,
1103 MatchingCType.release(), LayoutCompatible,
1104 MustBeNull, AttributeList::AS_GNU);
1105 }
1106
1107 if (EndLoc)
1108 *EndLoc = T.getCloseLocation();
1109}
1110
Richard Smith7bdcc4a2012-04-10 01:32:12 +00001111/// DiagnoseProhibitedCXX11Attribute - We have found the opening square brackets
1112/// of a C++11 attribute-specifier in a location where an attribute is not
1113/// permitted. By C++11 [dcl.attr.grammar]p6, this is ill-formed. Diagnose this
1114/// situation.
1115///
1116/// \return \c true if we skipped an attribute-like chunk of tokens, \c false if
1117/// this doesn't appear to actually be an attribute-specifier, and the caller
1118/// should try to parse it.
1119bool Parser::DiagnoseProhibitedCXX11Attribute() {
1120 assert(Tok.is(tok::l_square) && NextToken().is(tok::l_square));
1121
1122 switch (isCXX11AttributeSpecifier(/*Disambiguate*/true)) {
1123 case CAK_NotAttributeSpecifier:
1124 // No diagnostic: we're in Obj-C++11 and this is not actually an attribute.
1125 return false;
1126
1127 case CAK_InvalidAttributeSpecifier:
1128 Diag(Tok.getLocation(), diag::err_l_square_l_square_not_attribute);
1129 return false;
1130
1131 case CAK_AttributeSpecifier:
1132 // Parse and discard the attributes.
1133 SourceLocation BeginLoc = ConsumeBracket();
1134 ConsumeBracket();
1135 SkipUntil(tok::r_square, /*StopAtSemi*/ false);
1136 assert(Tok.is(tok::r_square) && "isCXX11AttributeSpecifier lied");
1137 SourceLocation EndLoc = ConsumeBracket();
1138 Diag(BeginLoc, diag::err_attributes_not_allowed)
1139 << SourceRange(BeginLoc, EndLoc);
1140 return true;
1141 }
Chandler Carruthd8f7d382012-04-10 16:03:08 +00001142 llvm_unreachable("All cases handled above.");
Richard Smith7bdcc4a2012-04-10 01:32:12 +00001143}
1144
John McCall53fa7142010-12-24 02:08:15 +00001145void Parser::DiagnoseProhibitedAttributes(ParsedAttributesWithRange &attrs) {
1146 Diag(attrs.Range.getBegin(), diag::err_attributes_not_allowed)
1147 << attrs.Range;
Dawn Perchik335e16b2010-09-03 01:29:35 +00001148}
1149
Michael Han64536a62012-11-06 19:34:54 +00001150void Parser::ProhibitCXX11Attributes(ParsedAttributesWithRange &attrs) {
1151 AttributeList *AttrList = attrs.getList();
1152 while (AttrList) {
Richard Smith89645bc2013-01-02 12:01:23 +00001153 if (AttrList->isCXX11Attribute()) {
Richard Smith810ad3e2013-01-29 10:02:16 +00001154 Diag(AttrList->getLoc(), diag::err_attribute_not_type_attr)
Michael Han64536a62012-11-06 19:34:54 +00001155 << AttrList->getName();
1156 AttrList->setInvalid();
1157 }
1158 AttrList = AttrList->getNext();
1159 }
1160}
1161
Chris Lattner53361ac2006-08-10 05:19:57 +00001162/// ParseDeclaration - Parse a full 'declaration', which consists of
1163/// declaration-specifiers, some number of declarators, and a semicolon.
Chris Lattner49836b42009-04-02 04:16:50 +00001164/// 'Context' should be a Declarator::TheContext value. This returns the
1165/// location of the semicolon in DeclEnd.
Chris Lattnera5235172007-08-25 06:57:03 +00001166///
1167/// declaration: [C99 6.7]
1168/// block-declaration ->
1169/// simple-declaration
1170/// others [FIXME]
Douglas Gregoreb31f392008-12-01 23:54:00 +00001171/// [C++] template-declaration
Chris Lattnera5235172007-08-25 06:57:03 +00001172/// [C++] namespace-definition
Douglas Gregord7c4d982008-12-30 03:27:21 +00001173/// [C++] using-directive
Douglas Gregor77b50e12009-06-22 23:06:13 +00001174/// [C++] using-declaration
Richard Smithc202b282012-04-14 00:33:13 +00001175/// [C++11/C11] static_assert-declaration
Chris Lattnera5235172007-08-25 06:57:03 +00001176/// others... [FIXME]
1177///
Fariborz Jahanian1db5c942010-09-28 20:42:35 +00001178Parser::DeclGroupPtrTy Parser::ParseDeclaration(StmtVector &Stmts,
1179 unsigned Context,
Alexis Hunt96d5c762009-11-21 08:43:09 +00001180 SourceLocation &DeclEnd,
John McCall53fa7142010-12-24 02:08:15 +00001181 ParsedAttributesWithRange &attrs) {
Argyrios Kyrtzidis355094e2010-06-17 10:52:18 +00001182 ParenBraceBracketBalancer BalancerRAIIObj(*this);
Fariborz Jahanian59b75282011-08-30 17:10:52 +00001183 // Must temporarily exit the objective-c container scope for
1184 // parsing c none objective-c decls.
1185 ObjCDeclContextSwitch ObjCDC(*this);
Chad Rosierc1183952012-06-26 22:30:43 +00001186
John McCall48871652010-08-21 09:40:31 +00001187 Decl *SingleDecl = 0;
Richard Smithcd1c0552011-07-01 19:46:12 +00001188 Decl *OwnedType = 0;
Chris Lattnera5235172007-08-25 06:57:03 +00001189 switch (Tok.getKind()) {
Douglas Gregoreb31f392008-12-01 23:54:00 +00001190 case tok::kw_template:
Douglas Gregor23996282009-05-12 21:31:51 +00001191 case tok::kw_export:
John McCall53fa7142010-12-24 02:08:15 +00001192 ProhibitAttributes(attrs);
Douglas Gregor1b57ff32009-05-12 23:25:50 +00001193 SingleDecl = ParseDeclarationStartingWithTemplate(Context, DeclEnd);
Chris Lattner5bbb3c82009-03-29 16:50:03 +00001194 break;
Sebastian Redl67667942010-08-27 23:12:46 +00001195 case tok::kw_inline:
Sebastian Redl5a5f2c72010-08-31 00:36:45 +00001196 // Could be the start of an inline namespace. Allowed as an ext in C++03.
David Blaikiebbafb8a2012-03-11 07:00:24 +00001197 if (getLangOpts().CPlusPlus && NextToken().is(tok::kw_namespace)) {
John McCall53fa7142010-12-24 02:08:15 +00001198 ProhibitAttributes(attrs);
Sebastian Redl67667942010-08-27 23:12:46 +00001199 SourceLocation InlineLoc = ConsumeToken();
1200 SingleDecl = ParseNamespace(Context, DeclEnd, InlineLoc);
1201 break;
1202 }
Chad Rosierc1183952012-06-26 22:30:43 +00001203 return ParseSimpleDeclaration(Stmts, Context, DeclEnd, attrs,
Fariborz Jahanian1db5c942010-09-28 20:42:35 +00001204 true);
Chris Lattnera5235172007-08-25 06:57:03 +00001205 case tok::kw_namespace:
John McCall53fa7142010-12-24 02:08:15 +00001206 ProhibitAttributes(attrs);
Chris Lattner49836b42009-04-02 04:16:50 +00001207 SingleDecl = ParseNamespace(Context, DeclEnd);
Chris Lattner5bbb3c82009-03-29 16:50:03 +00001208 break;
Douglas Gregord7c4d982008-12-30 03:27:21 +00001209 case tok::kw_using:
John McCall9b72f892010-11-10 02:40:36 +00001210 SingleDecl = ParseUsingDirectiveOrDeclaration(Context, ParsedTemplateInfo(),
Richard Smithcd1c0552011-07-01 19:46:12 +00001211 DeclEnd, attrs, &OwnedType);
Chris Lattner5bbb3c82009-03-29 16:50:03 +00001212 break;
Anders Carlssonf24fcff62009-03-11 16:27:10 +00001213 case tok::kw_static_assert:
Peter Collingbourne3d9cbdc2011-04-15 00:35:57 +00001214 case tok::kw__Static_assert:
John McCall53fa7142010-12-24 02:08:15 +00001215 ProhibitAttributes(attrs);
Chris Lattner49836b42009-04-02 04:16:50 +00001216 SingleDecl = ParseStaticAssertDeclaration(DeclEnd);
Chris Lattner5bbb3c82009-03-29 16:50:03 +00001217 break;
Chris Lattnera5235172007-08-25 06:57:03 +00001218 default:
John McCall53fa7142010-12-24 02:08:15 +00001219 return ParseSimpleDeclaration(Stmts, Context, DeclEnd, attrs, true);
Chris Lattnera5235172007-08-25 06:57:03 +00001220 }
Chad Rosierc1183952012-06-26 22:30:43 +00001221
Chris Lattner5bbb3c82009-03-29 16:50:03 +00001222 // This routine returns a DeclGroup, if the thing we parsed only contains a
Richard Smithcd1c0552011-07-01 19:46:12 +00001223 // single decl, convert it now. Alias declarations can also declare a type;
1224 // include that too if it is present.
1225 return Actions.ConvertDeclToDeclGroup(SingleDecl, OwnedType);
Chris Lattnera5235172007-08-25 06:57:03 +00001226}
1227
1228/// simple-declaration: [C99 6.7: declaration] [C++ 7p1: dcl.dcl]
1229/// declaration-specifiers init-declarator-list[opt] ';'
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00001230/// [C++11] attribute-specifier-seq decl-specifier-seq[opt]
1231/// init-declarator-list ';'
Chris Lattnera5235172007-08-25 06:57:03 +00001232///[C90/C++]init-declarator-list ';' [TODO]
1233/// [OMP] threadprivate-directive [TODO]
Chris Lattner32dc41c2009-03-29 17:27:48 +00001234///
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00001235/// for-range-declaration: [C++11 6.5p1: stmt.ranged]
Richard Smith02e85f32011-04-14 22:09:26 +00001236/// attribute-specifier-seq[opt] type-specifier-seq declarator
1237///
Chris Lattner32dc41c2009-03-29 17:27:48 +00001238/// If RequireSemi is false, this does not check for a ';' at the end of the
Chris Lattner005fc1b2010-04-05 18:18:31 +00001239/// declaration. If it is true, it checks for and eats it.
Richard Smith02e85f32011-04-14 22:09:26 +00001240///
1241/// If FRI is non-null, we might be parsing a for-range-declaration instead
1242/// of a simple-declaration. If we find that we are, we also parse the
1243/// for-range-initializer, and place it here.
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00001244Parser::DeclGroupPtrTy
1245Parser::ParseSimpleDeclaration(StmtVector &Stmts, unsigned Context,
1246 SourceLocation &DeclEnd,
1247 ParsedAttributesWithRange &attrs,
1248 bool RequireSemi, ForRangeInit *FRI) {
Chris Lattner53361ac2006-08-10 05:19:57 +00001249 // Parse the common declaration-specifiers piece.
John McCall28a6aea2009-11-04 02:18:39 +00001250 ParsingDeclSpec DS(*this);
John McCall53fa7142010-12-24 02:08:15 +00001251 DS.takeAttributesFrom(attrs);
Douglas Gregor0e7dde52011-04-24 05:37:28 +00001252
Douglas Gregor9de54ea2010-01-13 17:31:36 +00001253 ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS_none,
Richard Smith30482bc2011-02-20 03:19:35 +00001254 getDeclSpecContextFromDeclaratorContext(Context));
Abramo Bagnara1cd83682012-01-07 10:52:36 +00001255
Chris Lattner0e894622006-08-13 19:58:17 +00001256 // C99 6.7.2.3p6: Handle "struct-or-union identifier;", "enum { X };"
1257 // declaration-specifiers init-declarator-list[opt] ';'
Chris Lattner76c72282007-10-09 17:33:22 +00001258 if (Tok.is(tok::semi)) {
Argyrios Kyrtzidisfbb2bb52012-05-16 23:49:15 +00001259 DeclEnd = Tok.getLocation();
Chris Lattner005fc1b2010-04-05 18:18:31 +00001260 if (RequireSemi) ConsumeToken();
John McCall48871652010-08-21 09:40:31 +00001261 Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS_none,
Douglas Gregor0e7dde52011-04-24 05:37:28 +00001262 DS);
John McCall28a6aea2009-11-04 02:18:39 +00001263 DS.complete(TheDecl);
Chris Lattner5bbb3c82009-03-29 16:50:03 +00001264 return Actions.ConvertDeclToDeclGroup(TheDecl);
Chris Lattner0e894622006-08-13 19:58:17 +00001265 }
Chad Rosierc1183952012-06-26 22:30:43 +00001266
1267 return ParseDeclGroup(DS, Context, /*FunctionDefs=*/ false, &DeclEnd, FRI);
John McCalld5a36322009-11-03 19:26:08 +00001268}
Mike Stump11289f42009-09-09 15:08:12 +00001269
Richard Smith09f76ee2011-10-19 21:33:05 +00001270/// Returns true if this might be the start of a declarator, or a common typo
1271/// for a declarator.
1272bool Parser::MightBeDeclarator(unsigned Context) {
1273 switch (Tok.getKind()) {
1274 case tok::annot_cxxscope:
1275 case tok::annot_template_id:
1276 case tok::caret:
1277 case tok::code_completion:
1278 case tok::coloncolon:
1279 case tok::ellipsis:
1280 case tok::kw___attribute:
1281 case tok::kw_operator:
1282 case tok::l_paren:
1283 case tok::star:
1284 return true;
1285
1286 case tok::amp:
1287 case tok::ampamp:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001288 return getLangOpts().CPlusPlus;
Richard Smith09f76ee2011-10-19 21:33:05 +00001289
Richard Smithc8a79032012-01-09 22:31:44 +00001290 case tok::l_square: // Might be an attribute on an unnamed bit-field.
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001291 return Context == Declarator::MemberContext && getLangOpts().CPlusPlus11 &&
Richard Smithc8a79032012-01-09 22:31:44 +00001292 NextToken().is(tok::l_square);
1293
1294 case tok::colon: // Might be a typo for '::' or an unnamed bit-field.
David Blaikiebbafb8a2012-03-11 07:00:24 +00001295 return Context == Declarator::MemberContext || getLangOpts().CPlusPlus;
Richard Smithc8a79032012-01-09 22:31:44 +00001296
Richard Smith09f76ee2011-10-19 21:33:05 +00001297 case tok::identifier:
1298 switch (NextToken().getKind()) {
1299 case tok::code_completion:
1300 case tok::coloncolon:
1301 case tok::comma:
1302 case tok::equal:
1303 case tok::equalequal: // Might be a typo for '='.
1304 case tok::kw_alignas:
1305 case tok::kw_asm:
1306 case tok::kw___attribute:
1307 case tok::l_brace:
1308 case tok::l_paren:
1309 case tok::l_square:
1310 case tok::less:
1311 case tok::r_brace:
1312 case tok::r_paren:
1313 case tok::r_square:
1314 case tok::semi:
1315 return true;
1316
1317 case tok::colon:
1318 // At namespace scope, 'identifier:' is probably a typo for 'identifier::'
Richard Smithc8a79032012-01-09 22:31:44 +00001319 // and in block scope it's probably a label. Inside a class definition,
1320 // this is a bit-field.
1321 return Context == Declarator::MemberContext ||
David Blaikiebbafb8a2012-03-11 07:00:24 +00001322 (getLangOpts().CPlusPlus && Context == Declarator::FileContext);
Richard Smithc8a79032012-01-09 22:31:44 +00001323
1324 case tok::identifier: // Possible virt-specifier.
Richard Smith89645bc2013-01-02 12:01:23 +00001325 return getLangOpts().CPlusPlus11 && isCXX11VirtSpecifier(NextToken());
Richard Smith09f76ee2011-10-19 21:33:05 +00001326
1327 default:
1328 return false;
1329 }
1330
1331 default:
1332 return false;
1333 }
1334}
1335
Richard Smithb8caac82012-04-11 20:59:20 +00001336/// Skip until we reach something which seems like a sensible place to pick
1337/// up parsing after a malformed declaration. This will sometimes stop sooner
1338/// than SkipUntil(tok::r_brace) would, but will never stop later.
1339void Parser::SkipMalformedDecl() {
1340 while (true) {
1341 switch (Tok.getKind()) {
1342 case tok::l_brace:
1343 // Skip until matching }, then stop. We've probably skipped over
1344 // a malformed class or function definition or similar.
1345 ConsumeBrace();
1346 SkipUntil(tok::r_brace, /*StopAtSemi*/false);
1347 if (Tok.is(tok::comma) || Tok.is(tok::l_brace) || Tok.is(tok::kw_try)) {
1348 // This declaration isn't over yet. Keep skipping.
1349 continue;
1350 }
1351 if (Tok.is(tok::semi))
1352 ConsumeToken();
1353 return;
1354
1355 case tok::l_square:
1356 ConsumeBracket();
1357 SkipUntil(tok::r_square, /*StopAtSemi*/false);
1358 continue;
1359
1360 case tok::l_paren:
1361 ConsumeParen();
1362 SkipUntil(tok::r_paren, /*StopAtSemi*/false);
1363 continue;
1364
1365 case tok::r_brace:
1366 return;
1367
1368 case tok::semi:
1369 ConsumeToken();
1370 return;
1371
1372 case tok::kw_inline:
1373 // 'inline namespace' at the start of a line is almost certainly
Jordan Rose12e730c2012-07-09 16:54:53 +00001374 // a good place to pick back up parsing, except in an Objective-C
1375 // @interface context.
1376 if (Tok.isAtStartOfLine() && NextToken().is(tok::kw_namespace) &&
1377 (!ParsingInObjCContainer || CurParsedObjCImpl))
Richard Smithb8caac82012-04-11 20:59:20 +00001378 return;
1379 break;
1380
1381 case tok::kw_namespace:
1382 // 'namespace' at the start of a line is almost certainly a good
Jordan Rose12e730c2012-07-09 16:54:53 +00001383 // place to pick back up parsing, except in an Objective-C
1384 // @interface context.
1385 if (Tok.isAtStartOfLine() &&
1386 (!ParsingInObjCContainer || CurParsedObjCImpl))
1387 return;
1388 break;
1389
1390 case tok::at:
1391 // @end is very much like } in Objective-C contexts.
1392 if (NextToken().isObjCAtKeyword(tok::objc_end) &&
1393 ParsingInObjCContainer)
1394 return;
1395 break;
1396
1397 case tok::minus:
1398 case tok::plus:
1399 // - and + probably start new method declarations in Objective-C contexts.
1400 if (Tok.isAtStartOfLine() && ParsingInObjCContainer)
Richard Smithb8caac82012-04-11 20:59:20 +00001401 return;
1402 break;
1403
1404 case tok::eof:
1405 return;
1406
1407 default:
1408 break;
1409 }
1410
1411 ConsumeAnyToken();
1412 }
1413}
1414
John McCalld5a36322009-11-03 19:26:08 +00001415/// ParseDeclGroup - Having concluded that this is either a function
1416/// definition or a group of object declarations, actually parse the
1417/// result.
John McCall28a6aea2009-11-04 02:18:39 +00001418Parser::DeclGroupPtrTy Parser::ParseDeclGroup(ParsingDeclSpec &DS,
1419 unsigned Context,
John McCalld5a36322009-11-03 19:26:08 +00001420 bool AllowFunctionDefinitions,
Richard Smith02e85f32011-04-14 22:09:26 +00001421 SourceLocation *DeclEnd,
1422 ForRangeInit *FRI) {
John McCalld5a36322009-11-03 19:26:08 +00001423 // Parse the first declarator.
John McCall28a6aea2009-11-04 02:18:39 +00001424 ParsingDeclarator D(*this, DS, static_cast<Declarator::TheContext>(Context));
John McCalld5a36322009-11-03 19:26:08 +00001425 ParseDeclarator(D);
Chris Lattner32dc41c2009-03-29 17:27:48 +00001426
John McCalld5a36322009-11-03 19:26:08 +00001427 // Bail out if the first declarator didn't seem well-formed.
1428 if (!D.hasName() && !D.mayOmitIdentifier()) {
Richard Smithb8caac82012-04-11 20:59:20 +00001429 SkipMalformedDecl();
John McCalld5a36322009-11-03 19:26:08 +00001430 return DeclGroupPtrTy();
Chris Lattnerefb0f112009-03-29 17:18:04 +00001431 }
Mike Stump11289f42009-09-09 15:08:12 +00001432
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +00001433 // Save late-parsed attributes for now; they need to be parsed in the
1434 // appropriate function scope after the function Decl has been constructed.
DeLesley Hutchins66e300e2012-11-02 21:44:32 +00001435 // These will be parsed in ParseFunctionDefinition or ParseLexedAttrList.
1436 LateParsedAttrList LateParsedAttrs(true);
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +00001437 if (D.isFunctionDeclarator())
1438 MaybeParseGNUAttributes(D, &LateParsedAttrs);
1439
Chris Lattnerdbb1e932010-07-11 22:24:20 +00001440 // Check to see if we have a function *definition* which must have a body.
1441 if (AllowFunctionDefinitions && D.isFunctionDeclarator() &&
1442 // Look at the next token to make sure that this isn't a function
1443 // declaration. We have to check this because __attribute__ might be the
1444 // start of a function definition in GCC-extended K&R C.
Fariborz Jahanian712bb812012-08-10 15:54:40 +00001445 !isDeclarationAfterDeclarator()) {
Chad Rosierc1183952012-06-26 22:30:43 +00001446
Chris Lattner13901342010-07-11 22:42:07 +00001447 if (isStartOfFunctionDefinition(D)) {
John McCalld5a36322009-11-03 19:26:08 +00001448 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
1449 Diag(Tok, diag::err_function_declared_typedef);
1450
1451 // Recover by treating the 'typedef' as spurious.
1452 DS.ClearStorageClassSpecs();
1453 }
1454
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +00001455 Decl *TheDecl =
1456 ParseFunctionDefinition(D, ParsedTemplateInfo(), &LateParsedAttrs);
John McCalld5a36322009-11-03 19:26:08 +00001457 return Actions.ConvertDeclToDeclGroup(TheDecl);
Chris Lattner13901342010-07-11 22:42:07 +00001458 }
Chad Rosierc1183952012-06-26 22:30:43 +00001459
Chris Lattner13901342010-07-11 22:42:07 +00001460 if (isDeclarationSpecifier()) {
1461 // If there is an invalid declaration specifier right after the function
1462 // prototype, then we must be in a missing semicolon case where this isn't
1463 // actually a body. Just fall through into the code that handles it as a
1464 // prototype, and let the top-level code handle the erroneous declspec
1465 // where it would otherwise expect a comma or semicolon.
John McCalld5a36322009-11-03 19:26:08 +00001466 } else {
1467 Diag(Tok, diag::err_expected_fn_body);
1468 SkipUntil(tok::semi);
1469 return DeclGroupPtrTy();
1470 }
1471 }
1472
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +00001473 if (ParseAsmAttributesAfterDeclarator(D))
Richard Smith02e85f32011-04-14 22:09:26 +00001474 return DeclGroupPtrTy();
1475
1476 // C++0x [stmt.iter]p1: Check if we have a for-range-declarator. If so, we
1477 // must parse and analyze the for-range-initializer before the declaration is
1478 // analyzed.
1479 if (FRI && Tok.is(tok::colon)) {
1480 FRI->ColonLoc = ConsumeToken();
Sebastian Redl3da34892011-06-05 12:23:16 +00001481 if (Tok.is(tok::l_brace))
1482 FRI->RangeExpr = ParseBraceInitializer();
1483 else
1484 FRI->RangeExpr = ParseExpression();
Richard Smith02e85f32011-04-14 22:09:26 +00001485 Decl *ThisDecl = Actions.ActOnDeclarator(getCurScope(), D);
1486 Actions.ActOnCXXForRangeDecl(ThisDecl);
1487 Actions.FinalizeDeclaration(ThisDecl);
John McCallcf6e0c82012-01-27 01:29:43 +00001488 D.complete(ThisDecl);
Richard Smith02e85f32011-04-14 22:09:26 +00001489 return Actions.FinalizeDeclaratorGroup(getCurScope(), DS, &ThisDecl, 1);
1490 }
1491
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001492 SmallVector<Decl *, 8> DeclsInGroup;
Richard Smith02e85f32011-04-14 22:09:26 +00001493 Decl *FirstDecl = ParseDeclarationAfterDeclaratorAndAttributes(D);
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +00001494 if (LateParsedAttrs.size() > 0)
1495 ParseLexedAttributeList(LateParsedAttrs, FirstDecl, true, false);
John McCall28a6aea2009-11-04 02:18:39 +00001496 D.complete(FirstDecl);
John McCall48871652010-08-21 09:40:31 +00001497 if (FirstDecl)
John McCalld5a36322009-11-03 19:26:08 +00001498 DeclsInGroup.push_back(FirstDecl);
1499
Richard Smith09f76ee2011-10-19 21:33:05 +00001500 bool ExpectSemi = Context != Declarator::ForContext;
Fariborz Jahanian577574a2012-07-02 23:37:09 +00001501
John McCalld5a36322009-11-03 19:26:08 +00001502 // If we don't have a comma, it is either the end of the list (a ';') or an
1503 // error, bail out.
1504 while (Tok.is(tok::comma)) {
Richard Smith09f76ee2011-10-19 21:33:05 +00001505 SourceLocation CommaLoc = ConsumeToken();
1506
1507 if (Tok.isAtStartOfLine() && ExpectSemi && !MightBeDeclarator(Context)) {
1508 // This comma was followed by a line-break and something which can't be
1509 // the start of a declarator. The comma was probably a typo for a
1510 // semicolon.
1511 Diag(CommaLoc, diag::err_expected_semi_declaration)
1512 << FixItHint::CreateReplacement(CommaLoc, ";");
1513 ExpectSemi = false;
1514 break;
1515 }
John McCalld5a36322009-11-03 19:26:08 +00001516
1517 // Parse the next declarator.
1518 D.clear();
Richard Smith8d06f422012-01-12 23:53:29 +00001519 D.setCommaLoc(CommaLoc);
John McCalld5a36322009-11-03 19:26:08 +00001520
1521 // Accept attributes in an init-declarator. In the first declarator in a
1522 // declaration, these would be part of the declspec. In subsequent
1523 // declarators, they become part of the declarator itself, so that they
1524 // don't apply to declarators after *this* one. Examples:
1525 // short __attribute__((common)) var; -> declspec
1526 // short var __attribute__((common)); -> declarator
1527 // short x, __attribute__((common)) var; -> declarator
John McCall53fa7142010-12-24 02:08:15 +00001528 MaybeParseGNUAttributes(D);
John McCalld5a36322009-11-03 19:26:08 +00001529
1530 ParseDeclarator(D);
Fariborz Jahanian372030b2012-01-13 00:14:12 +00001531 if (!D.isInvalidType()) {
1532 Decl *ThisDecl = ParseDeclarationAfterDeclarator(D);
1533 D.complete(ThisDecl);
1534 if (ThisDecl)
Chad Rosierc1183952012-06-26 22:30:43 +00001535 DeclsInGroup.push_back(ThisDecl);
Fariborz Jahanian372030b2012-01-13 00:14:12 +00001536 }
John McCalld5a36322009-11-03 19:26:08 +00001537 }
1538
1539 if (DeclEnd)
1540 *DeclEnd = Tok.getLocation();
1541
Richard Smith09f76ee2011-10-19 21:33:05 +00001542 if (ExpectSemi &&
Chris Lattner02f1b612012-04-28 16:12:17 +00001543 ExpectAndConsumeSemi(Context == Declarator::FileContext
1544 ? diag::err_invalid_token_after_toplevel_declarator
1545 : diag::err_expected_semi_declaration)) {
Chris Lattner13901342010-07-11 22:42:07 +00001546 // Okay, there was no semicolon and one was expected. If we see a
1547 // declaration specifier, just assume it was missing and continue parsing.
1548 // Otherwise things are very confused and we skip to recover.
1549 if (!isDeclarationSpecifier()) {
1550 SkipUntil(tok::r_brace, true, true);
1551 if (Tok.is(tok::semi))
1552 ConsumeToken();
1553 }
John McCalld5a36322009-11-03 19:26:08 +00001554 }
1555
Douglas Gregor0be31a22010-07-02 17:43:08 +00001556 return Actions.FinalizeDeclaratorGroup(getCurScope(), DS,
John McCalld5a36322009-11-03 19:26:08 +00001557 DeclsInGroup.data(),
1558 DeclsInGroup.size());
Chris Lattner53361ac2006-08-10 05:19:57 +00001559}
1560
Richard Smith02e85f32011-04-14 22:09:26 +00001561/// Parse an optional simple-asm-expr and attributes, and attach them to a
1562/// declarator. Returns true on an error.
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +00001563bool Parser::ParseAsmAttributesAfterDeclarator(Declarator &D) {
Richard Smith02e85f32011-04-14 22:09:26 +00001564 // If a simple-asm-expr is present, parse it.
1565 if (Tok.is(tok::kw_asm)) {
1566 SourceLocation Loc;
1567 ExprResult AsmLabel(ParseSimpleAsm(&Loc));
1568 if (AsmLabel.isInvalid()) {
1569 SkipUntil(tok::semi, true, true);
1570 return true;
1571 }
1572
1573 D.setAsmLabel(AsmLabel.release());
1574 D.SetRangeEnd(Loc);
1575 }
1576
1577 MaybeParseGNUAttributes(D);
1578 return false;
1579}
1580
Douglas Gregor23996282009-05-12 21:31:51 +00001581/// \brief Parse 'declaration' after parsing 'declaration-specifiers
1582/// declarator'. This method parses the remainder of the declaration
1583/// (including any attributes or initializer, among other things) and
1584/// finalizes the declaration.
Chris Lattnerf0f3baa2006-08-14 00:15:20 +00001585///
Chris Lattnerf0f3baa2006-08-14 00:15:20 +00001586/// init-declarator: [C99 6.7]
1587/// declarator
1588/// declarator '=' initializer
Chris Lattner6d7e6342006-08-15 03:41:14 +00001589/// [GNU] declarator simple-asm-expr[opt] attributes[opt]
1590/// [GNU] declarator simple-asm-expr[opt] attributes[opt] '=' initializer
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00001591/// [C++] declarator initializer[opt]
1592///
1593/// [C++] initializer:
1594/// [C++] '=' initializer-clause
1595/// [C++] '(' expression-list ')'
Sebastian Redlf769df52009-03-24 22:27:57 +00001596/// [C++0x] '=' 'default' [TODO]
1597/// [C++0x] '=' 'delete'
Sebastian Redl3da34892011-06-05 12:23:16 +00001598/// [C++0x] braced-init-list
Sebastian Redlf769df52009-03-24 22:27:57 +00001599///
1600/// According to the standard grammar, =default and =delete are function
1601/// definitions, but that definitely doesn't fit with the parser here.
Chris Lattnerf0f3baa2006-08-14 00:15:20 +00001602///
John McCall48871652010-08-21 09:40:31 +00001603Decl *Parser::ParseDeclarationAfterDeclarator(Declarator &D,
Douglas Gregorb52fabb2009-06-23 23:11:28 +00001604 const ParsedTemplateInfo &TemplateInfo) {
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +00001605 if (ParseAsmAttributesAfterDeclarator(D))
Richard Smith02e85f32011-04-14 22:09:26 +00001606 return 0;
Mike Stump11289f42009-09-09 15:08:12 +00001607
Richard Smith02e85f32011-04-14 22:09:26 +00001608 return ParseDeclarationAfterDeclaratorAndAttributes(D, TemplateInfo);
1609}
Mike Stump11289f42009-09-09 15:08:12 +00001610
Richard Smith02e85f32011-04-14 22:09:26 +00001611Decl *Parser::ParseDeclarationAfterDeclaratorAndAttributes(Declarator &D,
1612 const ParsedTemplateInfo &TemplateInfo) {
Douglas Gregor23996282009-05-12 21:31:51 +00001613 // Inform the current actions module that we just parsed this declarator.
John McCall48871652010-08-21 09:40:31 +00001614 Decl *ThisDecl = 0;
Douglas Gregor450f00842009-09-25 18:43:00 +00001615 switch (TemplateInfo.Kind) {
1616 case ParsedTemplateInfo::NonTemplate:
Douglas Gregor0be31a22010-07-02 17:43:08 +00001617 ThisDecl = Actions.ActOnDeclarator(getCurScope(), D);
Douglas Gregor450f00842009-09-25 18:43:00 +00001618 break;
Chad Rosierc1183952012-06-26 22:30:43 +00001619
Douglas Gregor450f00842009-09-25 18:43:00 +00001620 case ParsedTemplateInfo::Template:
1621 case ParsedTemplateInfo::ExplicitSpecialization:
Douglas Gregor0be31a22010-07-02 17:43:08 +00001622 ThisDecl = Actions.ActOnTemplateDeclarator(getCurScope(),
Benjamin Kramercc4c49d2012-08-23 23:38:35 +00001623 *TemplateInfo.TemplateParams,
Douglas Gregor450f00842009-09-25 18:43:00 +00001624 D);
1625 break;
Chad Rosierc1183952012-06-26 22:30:43 +00001626
Douglas Gregor450f00842009-09-25 18:43:00 +00001627 case ParsedTemplateInfo::ExplicitInstantiation: {
Chad Rosierc1183952012-06-26 22:30:43 +00001628 DeclResult ThisRes
Douglas Gregor0be31a22010-07-02 17:43:08 +00001629 = Actions.ActOnExplicitInstantiation(getCurScope(),
Douglas Gregor450f00842009-09-25 18:43:00 +00001630 TemplateInfo.ExternLoc,
1631 TemplateInfo.TemplateLoc,
1632 D);
1633 if (ThisRes.isInvalid()) {
1634 SkipUntil(tok::semi, true, true);
John McCall48871652010-08-21 09:40:31 +00001635 return 0;
Douglas Gregor450f00842009-09-25 18:43:00 +00001636 }
Chad Rosierc1183952012-06-26 22:30:43 +00001637
Douglas Gregor450f00842009-09-25 18:43:00 +00001638 ThisDecl = ThisRes.get();
1639 break;
1640 }
1641 }
Mike Stump11289f42009-09-09 15:08:12 +00001642
Richard Smith30482bc2011-02-20 03:19:35 +00001643 bool TypeContainsAuto =
1644 D.getDeclSpec().getTypeSpecType() == DeclSpec::TST_auto;
1645
Douglas Gregor23996282009-05-12 21:31:51 +00001646 // Parse declarator '=' initializer.
Richard Trieuc64d3232012-01-18 22:54:52 +00001647 // If a '==' or '+=' is found, suggest a fixit to '='.
Richard Trieu4972a6d2012-01-19 22:01:51 +00001648 if (isTokenEqualOrEqualTypo()) {
Douglas Gregor23996282009-05-12 21:31:51 +00001649 ConsumeToken();
Anders Carlsson991285e2010-09-24 21:25:25 +00001650 if (Tok.is(tok::kw_delete)) {
Alexis Hunt5a7fa252011-05-12 06:15:49 +00001651 if (D.isFunctionDeclarator())
1652 Diag(ConsumeToken(), diag::err_default_delete_in_multiple_declaration)
1653 << 1 /* delete */;
1654 else
1655 Diag(ConsumeToken(), diag::err_deleted_non_function);
Alexis Hunt5dafebc2011-05-06 01:42:00 +00001656 } else if (Tok.is(tok::kw_default)) {
Alexis Hunt5a7fa252011-05-12 06:15:49 +00001657 if (D.isFunctionDeclarator())
Sebastian Redl46afb552012-02-11 23:51:21 +00001658 Diag(ConsumeToken(), diag::err_default_delete_in_multiple_declaration)
1659 << 0 /* default */;
Alexis Hunt5a7fa252011-05-12 06:15:49 +00001660 else
1661 Diag(ConsumeToken(), diag::err_default_special_members);
Douglas Gregor23996282009-05-12 21:31:51 +00001662 } else {
David Blaikiebbafb8a2012-03-11 07:00:24 +00001663 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
John McCall1f4ee7b2009-12-19 09:28:58 +00001664 EnterScope(0);
Douglas Gregor0be31a22010-07-02 17:43:08 +00001665 Actions.ActOnCXXEnterDeclInitializer(getCurScope(), ThisDecl);
John McCall1f4ee7b2009-12-19 09:28:58 +00001666 }
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00001667
Douglas Gregor7aa6b222010-05-30 01:49:25 +00001668 if (Tok.is(tok::code_completion)) {
Douglas Gregor0be31a22010-07-02 17:43:08 +00001669 Actions.CodeCompleteInitializer(getCurScope(), ThisDecl);
Peter Collingbourne6b4fdc22012-07-27 12:56:09 +00001670 Actions.FinalizeDeclaration(ThisDecl);
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +00001671 cutOffParsing();
1672 return 0;
Douglas Gregor7aa6b222010-05-30 01:49:25 +00001673 }
Chad Rosierc1183952012-06-26 22:30:43 +00001674
John McCalldadc5752010-08-24 06:29:42 +00001675 ExprResult Init(ParseInitializer());
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00001676
David Blaikiebbafb8a2012-03-11 07:00:24 +00001677 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
Douglas Gregor0be31a22010-07-02 17:43:08 +00001678 Actions.ActOnCXXExitDeclInitializer(getCurScope(), ThisDecl);
John McCall1f4ee7b2009-12-19 09:28:58 +00001679 ExitScope();
1680 }
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00001681
Douglas Gregor23996282009-05-12 21:31:51 +00001682 if (Init.isInvalid()) {
Douglas Gregor604c3022010-03-01 18:27:54 +00001683 SkipUntil(tok::comma, true, true);
1684 Actions.ActOnInitializerError(ThisDecl);
1685 } else
Richard Smith30482bc2011-02-20 03:19:35 +00001686 Actions.AddInitializerToDecl(ThisDecl, Init.take(),
1687 /*DirectInit=*/false, TypeContainsAuto);
Douglas Gregor23996282009-05-12 21:31:51 +00001688 }
1689 } else if (Tok.is(tok::l_paren)) {
1690 // Parse C++ direct initializer: '(' expression-list ')'
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001691 BalancedDelimiterTracker T(*this, tok::l_paren);
1692 T.consumeOpen();
1693
Benjamin Kramerf0623432012-08-23 22:51:59 +00001694 ExprVector Exprs;
Douglas Gregor23996282009-05-12 21:31:51 +00001695 CommaLocsTy CommaLocs;
1696
David Blaikiebbafb8a2012-03-11 07:00:24 +00001697 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
Douglas Gregor613bf102009-12-22 17:47:17 +00001698 EnterScope(0);
Douglas Gregor0be31a22010-07-02 17:43:08 +00001699 Actions.ActOnCXXEnterDeclInitializer(getCurScope(), ThisDecl);
Douglas Gregor613bf102009-12-22 17:47:17 +00001700 }
1701
Douglas Gregor23996282009-05-12 21:31:51 +00001702 if (ParseExpressionList(Exprs, CommaLocs)) {
David Blaikieeae04112012-10-10 23:15:05 +00001703 Actions.ActOnInitializerError(ThisDecl);
Douglas Gregor23996282009-05-12 21:31:51 +00001704 SkipUntil(tok::r_paren);
Douglas Gregor613bf102009-12-22 17:47:17 +00001705
David Blaikiebbafb8a2012-03-11 07:00:24 +00001706 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
Douglas Gregor0be31a22010-07-02 17:43:08 +00001707 Actions.ActOnCXXExitDeclInitializer(getCurScope(), ThisDecl);
Douglas Gregor613bf102009-12-22 17:47:17 +00001708 ExitScope();
1709 }
Douglas Gregor23996282009-05-12 21:31:51 +00001710 } else {
1711 // Match the ')'.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001712 T.consumeClose();
Douglas Gregor23996282009-05-12 21:31:51 +00001713
1714 assert(!Exprs.empty() && Exprs.size()-1 == CommaLocs.size() &&
1715 "Unexpected number of commas!");
Douglas Gregor613bf102009-12-22 17:47:17 +00001716
David Blaikiebbafb8a2012-03-11 07:00:24 +00001717 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
Douglas Gregor0be31a22010-07-02 17:43:08 +00001718 Actions.ActOnCXXExitDeclInitializer(getCurScope(), ThisDecl);
Douglas Gregor613bf102009-12-22 17:47:17 +00001719 ExitScope();
1720 }
1721
Sebastian Redla9351792012-02-11 23:51:47 +00001722 ExprResult Initializer = Actions.ActOnParenListExpr(T.getOpenLocation(),
1723 T.getCloseLocation(),
Benjamin Kramer62b95d82012-08-23 21:35:17 +00001724 Exprs);
Sebastian Redla9351792012-02-11 23:51:47 +00001725 Actions.AddInitializerToDecl(ThisDecl, Initializer.take(),
1726 /*DirectInit=*/true, TypeContainsAuto);
Douglas Gregor23996282009-05-12 21:31:51 +00001727 }
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001728 } else if (getLangOpts().CPlusPlus11 && Tok.is(tok::l_brace) &&
Fariborz Jahanian8be1ecd2012-07-03 23:22:13 +00001729 (!CurParsedObjCImpl || !D.isFunctionDeclarator())) {
Sebastian Redl3da34892011-06-05 12:23:16 +00001730 // Parse C++0x braced-init-list.
Richard Smith5d164bc2011-10-15 05:09:34 +00001731 Diag(Tok, diag::warn_cxx98_compat_generalized_initializer_lists);
1732
Sebastian Redl3da34892011-06-05 12:23:16 +00001733 if (D.getCXXScopeSpec().isSet()) {
1734 EnterScope(0);
1735 Actions.ActOnCXXEnterDeclInitializer(getCurScope(), ThisDecl);
1736 }
1737
1738 ExprResult Init(ParseBraceInitializer());
1739
1740 if (D.getCXXScopeSpec().isSet()) {
1741 Actions.ActOnCXXExitDeclInitializer(getCurScope(), ThisDecl);
1742 ExitScope();
1743 }
1744
1745 if (Init.isInvalid()) {
1746 Actions.ActOnInitializerError(ThisDecl);
1747 } else
1748 Actions.AddInitializerToDecl(ThisDecl, Init.take(),
1749 /*DirectInit=*/true, TypeContainsAuto);
1750
Douglas Gregor23996282009-05-12 21:31:51 +00001751 } else {
Richard Smith30482bc2011-02-20 03:19:35 +00001752 Actions.ActOnUninitializedDecl(ThisDecl, TypeContainsAuto);
Douglas Gregor23996282009-05-12 21:31:51 +00001753 }
1754
Richard Smithb2bc2e62011-02-21 20:05:19 +00001755 Actions.FinalizeDeclaration(ThisDecl);
1756
Douglas Gregor23996282009-05-12 21:31:51 +00001757 return ThisDecl;
1758}
1759
Chris Lattner1890ac82006-08-13 01:16:23 +00001760/// ParseSpecifierQualifierList
1761/// specifier-qualifier-list:
1762/// type-specifier specifier-qualifier-list[opt]
1763/// type-qualifier specifier-qualifier-list[opt]
Chris Lattnere37e2332006-08-15 04:50:22 +00001764/// [GNU] attributes specifier-qualifier-list[opt]
Chris Lattner1890ac82006-08-13 01:16:23 +00001765///
Richard Smithc5b05522012-03-12 07:56:15 +00001766void Parser::ParseSpecifierQualifierList(DeclSpec &DS, AccessSpecifier AS,
1767 DeclSpecContext DSC) {
Chris Lattner1890ac82006-08-13 01:16:23 +00001768 /// specifier-qualifier-list is a subset of declaration-specifiers. Just
1769 /// parse declaration-specifiers and complain about extra stuff.
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00001770 /// TODO: diagnose attribute-specifiers and alignment-specifiers.
Richard Smithc5b05522012-03-12 07:56:15 +00001771 ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS, DSC);
Mike Stump11289f42009-09-09 15:08:12 +00001772
Chris Lattner1890ac82006-08-13 01:16:23 +00001773 // Validate declspec for type-name.
1774 unsigned Specs = DS.getParsedSpecifiers();
Richard Smith2f07ad52012-05-09 20:55:26 +00001775 if ((DSC == DSC_type_specifier || DSC == DSC_trailing) &&
1776 !DS.hasTypeSpecifier()) {
Richard Smithc5b05522012-03-12 07:56:15 +00001777 Diag(Tok, diag::err_expected_type);
1778 DS.SetTypeSpecError();
1779 } else if (Specs == DeclSpec::PQ_None && !DS.getNumProtocolQualifiers() &&
1780 !DS.hasAttributes()) {
Chris Lattner1890ac82006-08-13 01:16:23 +00001781 Diag(Tok, diag::err_typename_requires_specqual);
Richard Smithc5b05522012-03-12 07:56:15 +00001782 if (!DS.hasTypeSpecifier())
1783 DS.SetTypeSpecError();
1784 }
Mike Stump11289f42009-09-09 15:08:12 +00001785
Chris Lattner1b22eed2006-11-28 05:12:07 +00001786 // Issue diagnostic and remove storage class if present.
Chris Lattner1890ac82006-08-13 01:16:23 +00001787 if (Specs & DeclSpec::PQ_StorageClassSpecifier) {
Chris Lattner1b22eed2006-11-28 05:12:07 +00001788 if (DS.getStorageClassSpecLoc().isValid())
1789 Diag(DS.getStorageClassSpecLoc(),diag::err_typename_invalid_storageclass);
1790 else
1791 Diag(DS.getThreadSpecLoc(), diag::err_typename_invalid_storageclass);
Chris Lattnera925dc62006-11-28 04:33:46 +00001792 DS.ClearStorageClassSpecs();
Chris Lattner1890ac82006-08-13 01:16:23 +00001793 }
Mike Stump11289f42009-09-09 15:08:12 +00001794
Chris Lattner1b22eed2006-11-28 05:12:07 +00001795 // Issue diagnostic and remove function specfier if present.
Chris Lattner1890ac82006-08-13 01:16:23 +00001796 if (Specs & DeclSpec::PQ_FunctionSpecifier) {
Douglas Gregor61956c42008-10-31 09:07:45 +00001797 if (DS.isInlineSpecified())
1798 Diag(DS.getInlineSpecLoc(), diag::err_typename_invalid_functionspec);
1799 if (DS.isVirtualSpecified())
1800 Diag(DS.getVirtualSpecLoc(), diag::err_typename_invalid_functionspec);
1801 if (DS.isExplicitSpecified())
1802 Diag(DS.getExplicitSpecLoc(), diag::err_typename_invalid_functionspec);
Chris Lattnera925dc62006-11-28 04:33:46 +00001803 DS.ClearFunctionSpecs();
Chris Lattner1890ac82006-08-13 01:16:23 +00001804 }
Richard Smithc5b05522012-03-12 07:56:15 +00001805
1806 // Issue diagnostic and remove constexpr specfier if present.
1807 if (DS.isConstexprSpecified()) {
1808 Diag(DS.getConstexprSpecLoc(), diag::err_typename_invalid_constexpr);
1809 DS.ClearConstexprSpec();
1810 }
Chris Lattner1890ac82006-08-13 01:16:23 +00001811}
Chris Lattner53361ac2006-08-10 05:19:57 +00001812
Chris Lattner6cc055a2009-04-12 20:42:31 +00001813/// isValidAfterIdentifierInDeclaratorAfterDeclSpec - Return true if the
1814/// specified token is valid after the identifier in a declarator which
1815/// immediately follows the declspec. For example, these things are valid:
1816///
1817/// int x [ 4]; // direct-declarator
1818/// int x ( int y); // direct-declarator
1819/// int(int x ) // direct-declarator
1820/// int x ; // simple-declaration
1821/// int x = 17; // init-declarator-list
1822/// int x , y; // init-declarator-list
1823/// int x __asm__ ("foo"); // init-declarator-list
Chris Lattnera723ba92009-04-14 21:16:09 +00001824/// int x : 4; // struct-declarator
Chris Lattner2b988c12009-04-12 22:29:43 +00001825/// int x { 5}; // C++'0x unified initializers
Chris Lattner6cc055a2009-04-12 20:42:31 +00001826///
1827/// This is not, because 'x' does not immediately follow the declspec (though
1828/// ')' happens to be valid anyway).
1829/// int (x)
1830///
1831static bool isValidAfterIdentifierInDeclarator(const Token &T) {
1832 return T.is(tok::l_square) || T.is(tok::l_paren) || T.is(tok::r_paren) ||
1833 T.is(tok::semi) || T.is(tok::comma) || T.is(tok::equal) ||
Chris Lattnera723ba92009-04-14 21:16:09 +00001834 T.is(tok::kw_asm) || T.is(tok::l_brace) || T.is(tok::colon);
Chris Lattner6cc055a2009-04-12 20:42:31 +00001835}
1836
Chris Lattner20a0c612009-04-14 21:34:55 +00001837
1838/// ParseImplicitInt - This method is called when we have an non-typename
1839/// identifier in a declspec (which normally terminates the decl spec) when
1840/// the declspec has no type specifier. In this case, the declspec is either
1841/// malformed or is "implicit int" (in K&R and C89).
1842///
1843/// This method handles diagnosing this prettily and returns false if the
1844/// declspec is done being processed. If it recovers and thinks there may be
1845/// other pieces of declspec after it, it returns true.
1846///
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00001847bool Parser::ParseImplicitInt(DeclSpec &DS, CXXScopeSpec *SS,
Douglas Gregor1b57ff32009-05-12 23:25:50 +00001848 const ParsedTemplateInfo &TemplateInfo,
Michael Han9407e502012-11-26 22:54:45 +00001849 AccessSpecifier AS, DeclSpecContext DSC,
1850 ParsedAttributesWithRange &Attrs) {
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00001851 assert(Tok.is(tok::identifier) && "should have identifier");
Mike Stump11289f42009-09-09 15:08:12 +00001852
Chris Lattner20a0c612009-04-14 21:34:55 +00001853 SourceLocation Loc = Tok.getLocation();
1854 // If we see an identifier that is not a type name, we normally would
1855 // parse it as the identifer being declared. However, when a typename
1856 // is typo'd or the definition is not included, this will incorrectly
1857 // parse the typename as the identifier name and fall over misparsing
1858 // later parts of the diagnostic.
1859 //
1860 // As such, we try to do some look-ahead in cases where this would
1861 // otherwise be an "implicit-int" case to see if this is invalid. For
1862 // example: "static foo_t x = 4;" In this case, if we parsed foo_t as
1863 // an identifier with implicit int, we'd get a parse error because the
1864 // next token is obviously invalid for a type. Parse these as a case
1865 // with an invalid type specifier.
1866 assert(!DS.hasTypeSpecifier() && "Type specifier checked above");
Mike Stump11289f42009-09-09 15:08:12 +00001867
Chris Lattner20a0c612009-04-14 21:34:55 +00001868 // Since we know that this either implicit int (which is rare) or an
Richard Smitha952ebb2012-05-15 21:01:51 +00001869 // error, do lookahead to try to do better recovery. This never applies
1870 // within a type specifier. Outside of C++, we allow this even if the
1871 // language doesn't "officially" support implicit int -- we support
1872 // implicit int as an extension in C99 and C11. Allegedly, MS also
1873 // supports implicit int in C++ mode.
Richard Smith2f07ad52012-05-09 20:55:26 +00001874 if (DSC != DSC_type_specifier && DSC != DSC_trailing &&
Richard Smitha952ebb2012-05-15 21:01:51 +00001875 (!getLangOpts().CPlusPlus || getLangOpts().MicrosoftExt) &&
Richard Smithc5b05522012-03-12 07:56:15 +00001876 isValidAfterIdentifierInDeclarator(NextToken())) {
Chris Lattner20a0c612009-04-14 21:34:55 +00001877 // If this token is valid for implicit int, e.g. "static x = 4", then
1878 // we just avoid eating the identifier, so it will be parsed as the
1879 // identifier in the declarator.
1880 return false;
1881 }
Mike Stump11289f42009-09-09 15:08:12 +00001882
Richard Smitha952ebb2012-05-15 21:01:51 +00001883 if (getLangOpts().CPlusPlus &&
1884 DS.getStorageClassSpec() == DeclSpec::SCS_auto) {
1885 // Don't require a type specifier if we have the 'auto' storage class
1886 // specifier in C++98 -- we'll promote it to a type specifier.
1887 return false;
1888 }
1889
Chris Lattner20a0c612009-04-14 21:34:55 +00001890 // Otherwise, if we don't consume this token, we are going to emit an
1891 // error anyway. Try to recover from various common problems. Check
1892 // to see if this was a reference to a tag name without a tag specified.
1893 // This is a common problem in C (saying 'foo' instead of 'struct foo').
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00001894 //
1895 // C++ doesn't need this, and isTagName doesn't take SS.
1896 if (SS == 0) {
Argyrios Kyrtzidis1f329402011-04-21 17:29:47 +00001897 const char *TagName = 0, *FixitTagName = 0;
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00001898 tok::TokenKind TagKind = tok::unknown;
Mike Stump11289f42009-09-09 15:08:12 +00001899
Douglas Gregor0be31a22010-07-02 17:43:08 +00001900 switch (Actions.isTagName(*Tok.getIdentifierInfo(), getCurScope())) {
Chris Lattner20a0c612009-04-14 21:34:55 +00001901 default: break;
Argyrios Kyrtzidis1f329402011-04-21 17:29:47 +00001902 case DeclSpec::TST_enum:
1903 TagName="enum" ; FixitTagName = "enum " ; TagKind=tok::kw_enum ;break;
1904 case DeclSpec::TST_union:
1905 TagName="union" ; FixitTagName = "union " ;TagKind=tok::kw_union ;break;
1906 case DeclSpec::TST_struct:
1907 TagName="struct"; FixitTagName = "struct ";TagKind=tok::kw_struct;break;
Joao Matosdc86f942012-08-31 18:45:21 +00001908 case DeclSpec::TST_interface:
1909 TagName="__interface"; FixitTagName = "__interface ";
1910 TagKind=tok::kw___interface;break;
Argyrios Kyrtzidis1f329402011-04-21 17:29:47 +00001911 case DeclSpec::TST_class:
1912 TagName="class" ; FixitTagName = "class " ;TagKind=tok::kw_class ;break;
Chris Lattner20a0c612009-04-14 21:34:55 +00001913 }
Mike Stump11289f42009-09-09 15:08:12 +00001914
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00001915 if (TagName) {
Kaelyn Uhrain031643e2012-04-26 23:36:17 +00001916 IdentifierInfo *TokenName = Tok.getIdentifierInfo();
1917 LookupResult R(Actions, TokenName, SourceLocation(),
1918 Sema::LookupOrdinaryName);
1919
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00001920 Diag(Loc, diag::err_use_of_tag_name_without_tag)
Kaelyn Uhrain031643e2012-04-26 23:36:17 +00001921 << TokenName << TagName << getLangOpts().CPlusPlus
1922 << FixItHint::CreateInsertion(Tok.getLocation(), FixitTagName);
1923
1924 if (Actions.LookupParsedName(R, getCurScope(), SS)) {
1925 for (LookupResult::iterator I = R.begin(), IEnd = R.end();
1926 I != IEnd; ++I)
Kaelyn Uhrain3fe3f852012-04-27 18:26:49 +00001927 Diag((*I)->getLocation(), diag::note_decl_hiding_tag_type)
Kaelyn Uhrain031643e2012-04-26 23:36:17 +00001928 << TokenName << TagName;
1929 }
Mike Stump11289f42009-09-09 15:08:12 +00001930
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00001931 // Parse this as a tag as if the missing tag were present.
1932 if (TagKind == tok::kw_enum)
Richard Smithc5b05522012-03-12 07:56:15 +00001933 ParseEnumSpecifier(Loc, DS, TemplateInfo, AS, DSC_normal);
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00001934 else
Richard Smithc5b05522012-03-12 07:56:15 +00001935 ParseClassSpecifier(TagKind, Loc, DS, TemplateInfo, AS,
Michael Han9407e502012-11-26 22:54:45 +00001936 /*EnteringContext*/ false, DSC_normal, Attrs);
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00001937 return true;
1938 }
Chris Lattner20a0c612009-04-14 21:34:55 +00001939 }
Mike Stump11289f42009-09-09 15:08:12 +00001940
Richard Smithfe904f02012-05-15 21:29:55 +00001941 // Determine whether this identifier could plausibly be the name of something
Richard Smithedd124e2012-05-15 21:42:17 +00001942 // being declared (with a missing type).
Richard Smithfe904f02012-05-15 21:29:55 +00001943 if (DSC != DSC_type_specifier && DSC != DSC_trailing &&
1944 (!SS || DSC == DSC_top_level || DSC == DSC_class)) {
Richard Smitha952ebb2012-05-15 21:01:51 +00001945 // Look ahead to the next token to try to figure out what this declaration
1946 // was supposed to be.
1947 switch (NextToken().getKind()) {
1948 case tok::comma:
1949 case tok::equal:
1950 case tok::kw_asm:
1951 case tok::l_brace:
1952 case tok::l_square:
1953 case tok::semi:
1954 // This looks like a variable declaration. The type is probably missing.
1955 // We're done parsing decl-specifiers.
1956 return false;
1957
1958 case tok::l_paren: {
1959 // static x(4); // 'x' is not a type
1960 // x(int n); // 'x' is not a type
1961 // x (*p)[]; // 'x' is a type
1962 //
1963 // Since we're in an error case (or the rare 'implicit int in C++' MS
1964 // extension), we can afford to perform a tentative parse to determine
1965 // which case we're in.
1966 TentativeParsingAction PA(*this);
1967 ConsumeToken();
1968 TPResult TPR = TryParseDeclarator(/*mayBeAbstract*/false);
1969 PA.Revert();
1970 if (TPR == TPResult::False())
1971 return false;
1972 // The identifier is followed by a parenthesized declarator.
1973 // It's supposed to be a type.
1974 break;
1975 }
1976
1977 default:
1978 // This is probably supposed to be a type. This includes cases like:
1979 // int f(itn);
1980 // struct S { unsinged : 4; };
1981 break;
1982 }
1983 }
1984
Chad Rosierc1183952012-06-26 22:30:43 +00001985 // This is almost certainly an invalid type name. Let the action emit a
Douglas Gregor15e56022009-10-13 23:27:22 +00001986 // diagnostic and attempt to recover.
John McCallba7bf592010-08-24 05:47:05 +00001987 ParsedType T;
Kaelyn Uhrainb5b17fe2012-06-15 23:45:58 +00001988 IdentifierInfo *II = Tok.getIdentifierInfo();
1989 if (Actions.DiagnoseUnknownTypeName(II, Loc, getCurScope(), SS, T)) {
Douglas Gregor15e56022009-10-13 23:27:22 +00001990 // The action emitted a diagnostic, so we don't have to.
1991 if (T) {
1992 // The action has suggested that the type T could be used. Set that as
1993 // the type in the declaration specifiers, consume the would-be type
1994 // name token, and we're done.
1995 const char *PrevSpec;
1996 unsigned DiagID;
John McCallba7bf592010-08-24 05:47:05 +00001997 DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec, DiagID, T);
Douglas Gregor15e56022009-10-13 23:27:22 +00001998 DS.SetRangeEnd(Tok.getLocation());
1999 ConsumeToken();
Kaelyn Uhrainb5b17fe2012-06-15 23:45:58 +00002000 // There may be other declaration specifiers after this.
2001 return true;
2002 } else if (II != Tok.getIdentifierInfo()) {
2003 // If no type was suggested, the correction is to a keyword
2004 Tok.setKind(II->getTokenID());
Douglas Gregor15e56022009-10-13 23:27:22 +00002005 // There may be other declaration specifiers after this.
2006 return true;
2007 }
Chad Rosierc1183952012-06-26 22:30:43 +00002008
Douglas Gregor15e56022009-10-13 23:27:22 +00002009 // Fall through; the action had no suggestion for us.
2010 } else {
2011 // The action did not emit a diagnostic, so emit one now.
2012 SourceRange R;
2013 if (SS) R = SS->getRange();
2014 Diag(Loc, diag::err_unknown_typename) << Tok.getIdentifierInfo() << R;
2015 }
Mike Stump11289f42009-09-09 15:08:12 +00002016
Douglas Gregor15e56022009-10-13 23:27:22 +00002017 // Mark this as an error.
Richard Smithc5b05522012-03-12 07:56:15 +00002018 DS.SetTypeSpecError();
Chris Lattner20a0c612009-04-14 21:34:55 +00002019 DS.SetRangeEnd(Tok.getLocation());
2020 ConsumeToken();
Mike Stump11289f42009-09-09 15:08:12 +00002021
Chris Lattner20a0c612009-04-14 21:34:55 +00002022 // TODO: Could inject an invalid typedef decl in an enclosing scope to
2023 // avoid rippling error messages on subsequent uses of the same type,
2024 // could be useful if #include was forgotten.
2025 return false;
2026}
2027
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002028/// \brief Determine the declaration specifier context from the declarator
2029/// context.
2030///
2031/// \param Context the declarator context, which is one of the
2032/// Declarator::TheContext enumerator values.
Chad Rosierc1183952012-06-26 22:30:43 +00002033Parser::DeclSpecContext
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002034Parser::getDeclSpecContextFromDeclaratorContext(unsigned Context) {
2035 if (Context == Declarator::MemberContext)
2036 return DSC_class;
2037 if (Context == Declarator::FileContext)
2038 return DSC_top_level;
Richard Smith62dad822012-03-15 01:02:11 +00002039 if (Context == Declarator::TrailingReturnContext)
2040 return DSC_trailing;
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002041 return DSC_normal;
2042}
2043
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002044/// ParseAlignArgument - Parse the argument to an alignment-specifier.
2045///
2046/// FIXME: Simply returns an alignof() expression if the argument is a
2047/// type. Ideally, the type should be propagated directly into Sema.
2048///
Benjamin Kramere56f3932011-12-23 17:00:35 +00002049/// [C11] type-id
2050/// [C11] constant-expression
Peter Collingbourne7d33cd32011-10-23 20:07:52 +00002051/// [C++0x] type-id ...[opt]
2052/// [C++0x] assignment-expression ...[opt]
2053ExprResult Parser::ParseAlignArgument(SourceLocation Start,
2054 SourceLocation &EllipsisLoc) {
2055 ExprResult ER;
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002056 if (isTypeIdInParens()) {
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002057 SourceLocation TypeLoc = Tok.getLocation();
2058 ParsedType Ty = ParseTypeName().get();
2059 SourceRange TypeRange(Start, Tok.getLocation());
Peter Collingbourne7d33cd32011-10-23 20:07:52 +00002060 ER = Actions.ActOnUnaryExprOrTypeTraitExpr(TypeLoc, UETT_AlignOf, true,
2061 Ty.getAsOpaquePtr(), TypeRange);
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002062 } else
Peter Collingbourne7d33cd32011-10-23 20:07:52 +00002063 ER = ParseConstantExpression();
2064
Richard Smith2bf7fdb2013-01-02 11:42:31 +00002065 if (getLangOpts().CPlusPlus11 && Tok.is(tok::ellipsis))
Peter Collingbourneccbcce02011-10-24 17:56:00 +00002066 EllipsisLoc = ConsumeToken();
Peter Collingbourne7d33cd32011-10-23 20:07:52 +00002067
2068 return ER;
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002069}
2070
2071/// ParseAlignmentSpecifier - Parse an alignment-specifier, and add the
2072/// attribute to Attrs.
2073///
2074/// alignment-specifier:
Benjamin Kramere56f3932011-12-23 17:00:35 +00002075/// [C11] '_Alignas' '(' type-id ')'
2076/// [C11] '_Alignas' '(' constant-expression ')'
Richard Smithd11c7a12013-01-29 01:48:07 +00002077/// [C++11] 'alignas' '(' type-id ...[opt] ')'
2078/// [C++11] 'alignas' '(' assignment-expression ...[opt] ')'
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002079void Parser::ParseAlignmentSpecifier(ParsedAttributes &Attrs,
2080 SourceLocation *endLoc) {
2081 assert((Tok.is(tok::kw_alignas) || Tok.is(tok::kw__Alignas)) &&
2082 "Not an alignment-specifier!");
2083
Richard Smithd11c7a12013-01-29 01:48:07 +00002084 IdentifierInfo *KWName = Tok.getIdentifierInfo();
2085 SourceLocation KWLoc = ConsumeToken();
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002086
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002087 BalancedDelimiterTracker T(*this, tok::l_paren);
2088 if (T.expectAndConsume(diag::err_expected_lparen))
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002089 return;
2090
Peter Collingbourne7d33cd32011-10-23 20:07:52 +00002091 SourceLocation EllipsisLoc;
2092 ExprResult ArgExpr = ParseAlignArgument(T.getOpenLocation(), EllipsisLoc);
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002093 if (ArgExpr.isInvalid()) {
2094 SkipUntil(tok::r_paren);
2095 return;
2096 }
2097
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002098 T.consumeClose();
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002099 if (endLoc)
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002100 *endLoc = T.getCloseLocation();
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002101
Peter Collingbourne7d33cd32011-10-23 20:07:52 +00002102 // FIXME: Handle pack-expansions here.
2103 if (EllipsisLoc.isValid()) {
2104 Diag(EllipsisLoc, diag::err_alignas_pack_exp_unsupported);
2105 return;
2106 }
2107
Benjamin Kramerf0623432012-08-23 22:51:59 +00002108 ExprVector ArgExprs;
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002109 ArgExprs.push_back(ArgExpr.release());
Richard Smithd11c7a12013-01-29 01:48:07 +00002110 Attrs.addNew(KWName, KWLoc, 0, KWLoc, 0, T.getOpenLocation(),
2111 ArgExprs.data(), 1, AttributeList::AS_Keyword);
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002112}
2113
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00002114/// ParseDeclarationSpecifiers
2115/// declaration-specifiers: [C99 6.7]
Chris Lattner3b561a32006-08-13 00:12:11 +00002116/// storage-class-specifier declaration-specifiers[opt]
2117/// type-specifier declaration-specifiers[opt]
Chris Lattner3b561a32006-08-13 00:12:11 +00002118/// [C99] function-specifier declaration-specifiers[opt]
Benjamin Kramere56f3932011-12-23 17:00:35 +00002119/// [C11] alignment-specifier declaration-specifiers[opt]
Chris Lattnere37e2332006-08-15 04:50:22 +00002120/// [GNU] attributes declaration-specifiers[opt]
Douglas Gregor26701a42011-09-09 02:06:17 +00002121/// [Clang] '__module_private__' declaration-specifiers[opt]
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00002122///
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002123/// storage-class-specifier: [C99 6.7.1]
Chris Lattnerda48a8e2006-08-04 05:25:55 +00002124/// 'typedef'
2125/// 'extern'
2126/// 'static'
2127/// 'auto'
2128/// 'register'
Sebastian Redlccdfaba2008-11-14 23:42:31 +00002129/// [C++] 'mutable'
Chris Lattnerda48a8e2006-08-04 05:25:55 +00002130/// [GNU] '__thread'
Chris Lattnerb9093cd2006-08-04 04:39:53 +00002131/// function-specifier: [C99 6.7.4]
Chris Lattner3b561a32006-08-13 00:12:11 +00002132/// [C99] 'inline'
Douglas Gregor61956c42008-10-31 09:07:45 +00002133/// [C++] 'virtual'
2134/// [C++] 'explicit'
Peter Collingbourne7ce13fc2011-02-14 01:42:53 +00002135/// [OpenCL] '__kernel'
Anders Carlssoncd8db412009-05-06 04:46:28 +00002136/// 'friend': [C++ dcl.friend]
Sebastian Redl39c2a8b2009-11-05 15:47:02 +00002137/// 'constexpr': [C++0x dcl.constexpr]
Anders Carlssoncd8db412009-05-06 04:46:28 +00002138
Chris Lattnerb9093cd2006-08-04 04:39:53 +00002139///
Douglas Gregorb9bd8a92008-12-24 02:52:09 +00002140void Parser::ParseDeclarationSpecifiers(DeclSpec &DS,
Douglas Gregor1b57ff32009-05-12 23:25:50 +00002141 const ParsedTemplateInfo &TemplateInfo,
John McCall07e91c02009-08-06 02:15:43 +00002142 AccessSpecifier AS,
DeLesley Hutchinsbd2ee132012-03-02 22:12:59 +00002143 DeclSpecContext DSContext,
2144 LateParsedAttrList *LateAttrs) {
Douglas Gregor0e7dde52011-04-24 05:37:28 +00002145 if (DS.getSourceRange().isInvalid()) {
2146 DS.SetRangeStart(Tok.getLocation());
2147 DS.SetRangeEnd(Tok.getLocation());
2148 }
Chad Rosierc1183952012-06-26 22:30:43 +00002149
Douglas Gregordf593fb2011-11-07 17:33:42 +00002150 bool EnteringContext = (DSContext == DSC_class || DSContext == DSC_top_level);
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00002151 bool AttrsLastTime = false;
2152 ParsedAttributesWithRange attrs(AttrFactory);
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00002153 while (1) {
John McCall49bfce42009-08-03 20:12:06 +00002154 bool isInvalid = false;
Chris Lattnerb9093cd2006-08-04 04:39:53 +00002155 const char *PrevSpec = 0;
John McCall49bfce42009-08-03 20:12:06 +00002156 unsigned DiagID = 0;
2157
Chris Lattner4d8f8732006-11-28 05:05:08 +00002158 SourceLocation Loc = Tok.getLocation();
Douglas Gregor450c75a2008-11-07 15:42:26 +00002159
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00002160 switch (Tok.getKind()) {
Mike Stump11289f42009-09-09 15:08:12 +00002161 default:
Chris Lattner0974b232008-07-26 00:20:22 +00002162 DoneWithDeclSpec:
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00002163 if (!AttrsLastTime)
2164 ProhibitAttributes(attrs);
Michael Han64536a62012-11-06 19:34:54 +00002165 else {
2166 // Reject C++11 attributes that appertain to decl specifiers as
2167 // we don't support any C++11 attributes that appertain to decl
2168 // specifiers. This also conforms to what g++ 4.8 is doing.
2169 ProhibitCXX11Attributes(attrs);
2170
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00002171 DS.takeAttributesFrom(attrs);
Michael Han64536a62012-11-06 19:34:54 +00002172 }
Peter Collingbourne70188b32011-09-29 18:03:57 +00002173
Chris Lattnerb9093cd2006-08-04 04:39:53 +00002174 // If this is not a declaration specifier token, we're done reading decl
2175 // specifiers. First verify that DeclSpec's are consistent.
Douglas Gregore3e01a22009-04-01 22:41:11 +00002176 DS.Finish(Diags, PP);
Chris Lattnerb9093cd2006-08-04 04:39:53 +00002177 return;
Mike Stump11289f42009-09-09 15:08:12 +00002178
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00002179 case tok::l_square:
2180 case tok::kw_alignas:
2181 if (!isCXX11AttributeSpecifier())
2182 goto DoneWithDeclSpec;
2183
2184 ProhibitAttributes(attrs);
2185 // FIXME: It would be good to recover by accepting the attributes,
2186 // but attempting to do that now would cause serious
2187 // madness in terms of diagnostics.
2188 attrs.clear();
2189 attrs.Range = SourceRange();
2190
2191 ParseCXX11Attributes(attrs);
2192 AttrsLastTime = true;
Chad Rosierc1183952012-06-26 22:30:43 +00002193 continue;
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00002194
Douglas Gregorc49f5b22010-08-23 18:23:48 +00002195 case tok::code_completion: {
John McCallfaf5fb42010-08-26 23:41:50 +00002196 Sema::ParserCompletionContext CCC = Sema::PCC_Namespace;
Douglas Gregorc49f5b22010-08-23 18:23:48 +00002197 if (DS.hasTypeSpecifier()) {
2198 bool AllowNonIdentifiers
2199 = (getCurScope()->getFlags() & (Scope::ControlScope |
2200 Scope::BlockScope |
2201 Scope::TemplateParamScope |
2202 Scope::FunctionPrototypeScope |
2203 Scope::AtCatchScope)) == 0;
2204 bool AllowNestedNameSpecifiers
Chad Rosierc1183952012-06-26 22:30:43 +00002205 = DSContext == DSC_top_level ||
Douglas Gregorc49f5b22010-08-23 18:23:48 +00002206 (DSContext == DSC_class && DS.isFriendSpecified());
2207
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00002208 Actions.CodeCompleteDeclSpec(getCurScope(), DS,
Chad Rosierc1183952012-06-26 22:30:43 +00002209 AllowNonIdentifiers,
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00002210 AllowNestedNameSpecifiers);
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +00002211 return cutOffParsing();
Chad Rosierc1183952012-06-26 22:30:43 +00002212 }
2213
Douglas Gregor80039242011-02-15 20:33:25 +00002214 if (getCurScope()->getFnParent() || getCurScope()->getBlockParent())
2215 CCC = Sema::PCC_LocalDeclarationSpecifiers;
2216 else if (TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate)
Chad Rosierc1183952012-06-26 22:30:43 +00002217 CCC = DSContext == DSC_class? Sema::PCC_MemberTemplate
John McCallfaf5fb42010-08-26 23:41:50 +00002218 : Sema::PCC_Template;
Douglas Gregorc49f5b22010-08-23 18:23:48 +00002219 else if (DSContext == DSC_class)
John McCallfaf5fb42010-08-26 23:41:50 +00002220 CCC = Sema::PCC_Class;
Argyrios Kyrtzidisb6c6a582012-02-07 16:50:53 +00002221 else if (CurParsedObjCImpl)
John McCallfaf5fb42010-08-26 23:41:50 +00002222 CCC = Sema::PCC_ObjCImplementation;
Chad Rosierc1183952012-06-26 22:30:43 +00002223
Douglas Gregorc49f5b22010-08-23 18:23:48 +00002224 Actions.CodeCompleteOrdinaryName(getCurScope(), CCC);
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +00002225 return cutOffParsing();
Douglas Gregorc49f5b22010-08-23 18:23:48 +00002226 }
2227
Chris Lattnerbd31aa32009-01-05 00:07:25 +00002228 case tok::coloncolon: // ::foo::bar
John McCall1f476a12010-02-26 08:45:28 +00002229 // C++ scope specifier. Annotate and loop, or bail out on error.
2230 if (TryAnnotateCXXScopeToken(true)) {
2231 if (!DS.hasTypeSpecifier())
2232 DS.SetTypeSpecError();
2233 goto DoneWithDeclSpec;
2234 }
John McCall8bc2a702010-03-01 18:20:46 +00002235 if (Tok.is(tok::coloncolon)) // ::new or ::delete
2236 goto DoneWithDeclSpec;
John McCall1f476a12010-02-26 08:45:28 +00002237 continue;
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00002238
2239 case tok::annot_cxxscope: {
Richard Smith3092a3b2012-05-09 18:56:43 +00002240 if (DS.hasTypeSpecifier() || DS.isTypeAltiVecVector())
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00002241 goto DoneWithDeclSpec;
2242
John McCall9dab4e62009-12-12 11:40:51 +00002243 CXXScopeSpec SS;
Douglas Gregor869ad452011-02-24 17:54:50 +00002244 Actions.RestoreNestedNameSpecifierAnnotation(Tok.getAnnotationValue(),
2245 Tok.getAnnotationRange(),
2246 SS);
John McCall9dab4e62009-12-12 11:40:51 +00002247
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00002248 // We are looking for a qualified typename.
Douglas Gregor167fa622009-03-25 15:40:00 +00002249 Token Next = NextToken();
Mike Stump11289f42009-09-09 15:08:12 +00002250 if (Next.is(tok::annot_template_id) &&
Douglas Gregor167fa622009-03-25 15:40:00 +00002251 static_cast<TemplateIdAnnotation *>(Next.getAnnotationValue())
Douglas Gregorb67535d2009-03-31 00:43:58 +00002252 ->Kind == TNK_Type_template) {
Douglas Gregor167fa622009-03-25 15:40:00 +00002253 // We have a qualified template-id, e.g., N::A<int>
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002254
2255 // C++ [class.qual]p2:
2256 // In a lookup in which the constructor is an acceptable lookup
2257 // result and the nested-name-specifier nominates a class C:
2258 //
2259 // - if the name specified after the
2260 // nested-name-specifier, when looked up in C, is the
2261 // injected-class-name of C (Clause 9), or
2262 //
2263 // - if the name specified after the nested-name-specifier
2264 // is the same as the identifier or the
2265 // simple-template-id's template-name in the last
2266 // component of the nested-name-specifier,
2267 //
2268 // the name is instead considered to name the constructor of
2269 // class C.
Chad Rosierc1183952012-06-26 22:30:43 +00002270 //
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002271 // Thus, if the template-name is actually the constructor
2272 // name, then the code is ill-formed; this interpretation is
Chad Rosierc1183952012-06-26 22:30:43 +00002273 // reinforced by the NAD status of core issue 635.
Argyrios Kyrtzidisc0c5dd22011-06-22 06:09:49 +00002274 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Next);
John McCall84821e72010-04-13 06:39:49 +00002275 if ((DSContext == DSC_top_level ||
2276 (DSContext == DSC_class && DS.isFriendSpecified())) &&
2277 TemplateId->Name &&
Douglas Gregor0be31a22010-07-02 17:43:08 +00002278 Actions.isCurrentClassName(*TemplateId->Name, getCurScope(), &SS)) {
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002279 if (isConstructorDeclarator()) {
2280 // The user meant this to be an out-of-line constructor
2281 // definition, but template arguments are not allowed
2282 // there. Just allow this as a constructor; we'll
2283 // complain about it later.
2284 goto DoneWithDeclSpec;
2285 }
2286
2287 // The user meant this to name a type, but it actually names
2288 // a constructor with some extraneous template
2289 // arguments. Complain, then parse it as a type as the user
2290 // intended.
2291 Diag(TemplateId->TemplateNameLoc,
2292 diag::err_out_of_line_template_id_names_constructor)
2293 << TemplateId->Name;
2294 }
2295
John McCall9dab4e62009-12-12 11:40:51 +00002296 DS.getTypeSpecScope() = SS;
2297 ConsumeToken(); // The C++ scope.
Mike Stump11289f42009-09-09 15:08:12 +00002298 assert(Tok.is(tok::annot_template_id) &&
Douglas Gregor167fa622009-03-25 15:40:00 +00002299 "ParseOptionalCXXScopeSpecifier not working");
Douglas Gregore7c20652011-03-02 00:47:37 +00002300 AnnotateTemplateIdTokenAsType();
Douglas Gregor167fa622009-03-25 15:40:00 +00002301 continue;
2302 }
2303
Douglas Gregorc5790df2009-09-28 07:26:33 +00002304 if (Next.is(tok::annot_typename)) {
John McCall9dab4e62009-12-12 11:40:51 +00002305 DS.getTypeSpecScope() = SS;
2306 ConsumeToken(); // The C++ scope.
John McCallba7bf592010-08-24 05:47:05 +00002307 if (Tok.getAnnotationValue()) {
2308 ParsedType T = getTypeAnnotation(Tok);
Nico Weber77430342010-11-22 10:30:56 +00002309 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename,
Chad Rosierc1183952012-06-26 22:30:43 +00002310 Tok.getAnnotationEndLoc(),
John McCallba7bf592010-08-24 05:47:05 +00002311 PrevSpec, DiagID, T);
Richard Smithda837032012-09-14 18:27:01 +00002312 if (isInvalid)
2313 break;
John McCallba7bf592010-08-24 05:47:05 +00002314 }
Douglas Gregorc5790df2009-09-28 07:26:33 +00002315 else
2316 DS.SetTypeSpecError();
2317 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
2318 ConsumeToken(); // The typename
2319 }
2320
Douglas Gregor167fa622009-03-25 15:40:00 +00002321 if (Next.isNot(tok::identifier))
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00002322 goto DoneWithDeclSpec;
2323
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002324 // If we're in a context where the identifier could be a class name,
2325 // check whether this is a constructor declaration.
John McCall84821e72010-04-13 06:39:49 +00002326 if ((DSContext == DSC_top_level ||
2327 (DSContext == DSC_class && DS.isFriendSpecified())) &&
Chad Rosierc1183952012-06-26 22:30:43 +00002328 Actions.isCurrentClassName(*Next.getIdentifierInfo(), getCurScope(),
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002329 &SS)) {
2330 if (isConstructorDeclarator())
2331 goto DoneWithDeclSpec;
2332
2333 // As noted in C++ [class.qual]p2 (cited above), when the name
2334 // of the class is qualified in a context where it could name
2335 // a constructor, its a constructor name. However, we've
2336 // looked at the declarator, and the user probably meant this
2337 // to be a type. Complain that it isn't supposed to be treated
2338 // as a type, then proceed to parse it as a type.
2339 Diag(Next.getLocation(), diag::err_out_of_line_type_names_constructor)
2340 << Next.getIdentifierInfo();
2341 }
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00002342
John McCallba7bf592010-08-24 05:47:05 +00002343 ParsedType TypeRep = Actions.getTypeName(*Next.getIdentifierInfo(),
2344 Next.getLocation(),
Douglas Gregor844cb502011-03-01 18:12:44 +00002345 getCurScope(), &SS,
2346 false, false, ParsedType(),
Abramo Bagnara4244b432012-01-27 08:46:19 +00002347 /*IsCtorOrDtorName=*/false,
Douglas Gregor844cb502011-03-01 18:12:44 +00002348 /*NonTrivialSourceInfo=*/true);
Douglas Gregor8bf42052009-02-09 18:46:07 +00002349
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00002350 // If the referenced identifier is not a type, then this declspec is
2351 // erroneous: We already checked about that it has no type specifier, and
2352 // C++ doesn't have implicit int. Diagnose it as a typo w.r.t. to the
Mike Stump11289f42009-09-09 15:08:12 +00002353 // typename.
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00002354 if (TypeRep == 0) {
2355 ConsumeToken(); // Eat the scope spec so the identifier is current.
Michael Han9407e502012-11-26 22:54:45 +00002356 ParsedAttributesWithRange Attrs(AttrFactory);
2357 if (ParseImplicitInt(DS, &SS, TemplateInfo, AS, DSContext, Attrs)) {
2358 if (!Attrs.empty()) {
2359 AttrsLastTime = true;
2360 attrs.takeAllFrom(Attrs);
2361 }
2362 continue;
2363 }
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00002364 goto DoneWithDeclSpec;
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00002365 }
Mike Stump11289f42009-09-09 15:08:12 +00002366
John McCall9dab4e62009-12-12 11:40:51 +00002367 DS.getTypeSpecScope() = SS;
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00002368 ConsumeToken(); // The C++ scope.
2369
Douglas Gregor9817f4a2009-02-09 15:09:02 +00002370 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
John McCall49bfce42009-08-03 20:12:06 +00002371 DiagID, TypeRep);
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00002372 if (isInvalid)
2373 break;
Mike Stump11289f42009-09-09 15:08:12 +00002374
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00002375 DS.SetRangeEnd(Tok.getLocation());
2376 ConsumeToken(); // The typename.
2377
2378 continue;
2379 }
Mike Stump11289f42009-09-09 15:08:12 +00002380
Chris Lattnere387d9e2009-01-21 19:48:37 +00002381 case tok::annot_typename: {
John McCallba7bf592010-08-24 05:47:05 +00002382 if (Tok.getAnnotationValue()) {
2383 ParsedType T = getTypeAnnotation(Tok);
Nico Weber7f8bb362010-11-22 12:50:03 +00002384 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
John McCallba7bf592010-08-24 05:47:05 +00002385 DiagID, T);
2386 } else
Douglas Gregorfe3d7d02009-04-01 21:51:26 +00002387 DS.SetTypeSpecError();
Chad Rosierc1183952012-06-26 22:30:43 +00002388
Chris Lattner005fc1b2010-04-05 18:18:31 +00002389 if (isInvalid)
2390 break;
2391
Chris Lattnere387d9e2009-01-21 19:48:37 +00002392 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
2393 ConsumeToken(); // The typename
Mike Stump11289f42009-09-09 15:08:12 +00002394
Chris Lattnere387d9e2009-01-21 19:48:37 +00002395 // Objective-C supports syntax of the form 'id<proto1,proto2>' where 'id'
2396 // is a specific typedef and 'itf<proto1,proto2>' where 'itf' is an
Chad Rosierc1183952012-06-26 22:30:43 +00002397 // Objective-C interface.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002398 if (Tok.is(tok::less) && getLangOpts().ObjC1)
Douglas Gregor06e41ae2010-10-21 23:17:00 +00002399 ParseObjCProtocolQualifiers(DS);
Chad Rosierc1183952012-06-26 22:30:43 +00002400
Chris Lattnere387d9e2009-01-21 19:48:37 +00002401 continue;
2402 }
Mike Stump11289f42009-09-09 15:08:12 +00002403
Douglas Gregor06873092011-04-28 15:48:45 +00002404 case tok::kw___is_signed:
2405 // GNU libstdc++ 4.4 uses __is_signed as an identifier, but Clang
2406 // typically treats it as a trait. If we see __is_signed as it appears
2407 // in libstdc++, e.g.,
2408 //
2409 // static const bool __is_signed;
2410 //
2411 // then treat __is_signed as an identifier rather than as a keyword.
2412 if (DS.getTypeSpecType() == TST_bool &&
2413 DS.getTypeQualifiers() == DeclSpec::TQ_const &&
2414 DS.getStorageClassSpec() == DeclSpec::SCS_static) {
2415 Tok.getIdentifierInfo()->RevertTokenIDToIdentifier();
2416 Tok.setKind(tok::identifier);
2417 }
2418
2419 // We're done with the declaration-specifiers.
2420 goto DoneWithDeclSpec;
Chad Rosierc1183952012-06-26 22:30:43 +00002421
Chris Lattner16fac4f2008-07-26 01:18:38 +00002422 // typedef-name
David Blaikie15a430a2011-12-04 05:04:18 +00002423 case tok::kw_decltype:
Chris Lattner16fac4f2008-07-26 01:18:38 +00002424 case tok::identifier: {
Chris Lattnerbd31aa32009-01-05 00:07:25 +00002425 // In C++, check to see if this is a scope specifier like foo::bar::, if
2426 // so handle it as such. This is important for ctor parsing.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002427 if (getLangOpts().CPlusPlus) {
John McCall1f476a12010-02-26 08:45:28 +00002428 if (TryAnnotateCXXScopeToken(true)) {
2429 if (!DS.hasTypeSpecifier())
2430 DS.SetTypeSpecError();
2431 goto DoneWithDeclSpec;
2432 }
2433 if (!Tok.is(tok::identifier))
2434 continue;
2435 }
Mike Stump11289f42009-09-09 15:08:12 +00002436
Chris Lattner16fac4f2008-07-26 01:18:38 +00002437 // This identifier can only be a typedef name if we haven't already seen
2438 // a type-specifier. Without this check we misparse:
2439 // typedef int X; struct Y { short X; }; as 'short int'.
2440 if (DS.hasTypeSpecifier())
2441 goto DoneWithDeclSpec;
Mike Stump11289f42009-09-09 15:08:12 +00002442
John Thompson22334602010-02-05 00:12:22 +00002443 // Check for need to substitute AltiVec keyword tokens.
2444 if (TryAltiVecToken(DS, Loc, PrevSpec, DiagID, isInvalid))
2445 break;
2446
Richard Smith3092a3b2012-05-09 18:56:43 +00002447 // [AltiVec] 2.2: [If the 'vector' specifier is used] The syntax does not
2448 // allow the use of a typedef name as a type specifier.
2449 if (DS.isTypeAltiVecVector())
2450 goto DoneWithDeclSpec;
2451
John McCallba7bf592010-08-24 05:47:05 +00002452 ParsedType TypeRep =
2453 Actions.getTypeName(*Tok.getIdentifierInfo(),
2454 Tok.getLocation(), getCurScope());
Douglas Gregor8bf42052009-02-09 18:46:07 +00002455
Chris Lattner6cc055a2009-04-12 20:42:31 +00002456 // If this is not a typedef name, don't parse it as part of the declspec,
2457 // it must be an implicit int or an error.
John McCallba7bf592010-08-24 05:47:05 +00002458 if (!TypeRep) {
Michael Han9407e502012-11-26 22:54:45 +00002459 ParsedAttributesWithRange Attrs(AttrFactory);
2460 if (ParseImplicitInt(DS, 0, TemplateInfo, AS, DSContext, Attrs)) {
2461 if (!Attrs.empty()) {
2462 AttrsLastTime = true;
2463 attrs.takeAllFrom(Attrs);
2464 }
2465 continue;
2466 }
Chris Lattner16fac4f2008-07-26 01:18:38 +00002467 goto DoneWithDeclSpec;
Chris Lattner6cc055a2009-04-12 20:42:31 +00002468 }
Douglas Gregor8bf42052009-02-09 18:46:07 +00002469
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002470 // If we're in a context where the identifier could be a class name,
2471 // check whether this is a constructor declaration.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002472 if (getLangOpts().CPlusPlus && DSContext == DSC_class &&
Douglas Gregor0be31a22010-07-02 17:43:08 +00002473 Actions.isCurrentClassName(*Tok.getIdentifierInfo(), getCurScope()) &&
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002474 isConstructorDeclarator())
Douglas Gregor61956c42008-10-31 09:07:45 +00002475 goto DoneWithDeclSpec;
2476
Douglas Gregor9817f4a2009-02-09 15:09:02 +00002477 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
John McCall49bfce42009-08-03 20:12:06 +00002478 DiagID, TypeRep);
Chris Lattner16fac4f2008-07-26 01:18:38 +00002479 if (isInvalid)
2480 break;
Mike Stump11289f42009-09-09 15:08:12 +00002481
Chris Lattner16fac4f2008-07-26 01:18:38 +00002482 DS.SetRangeEnd(Tok.getLocation());
2483 ConsumeToken(); // The identifier
2484
2485 // Objective-C supports syntax of the form 'id<proto1,proto2>' where 'id'
2486 // is a specific typedef and 'itf<proto1,proto2>' where 'itf' is an
Chad Rosierc1183952012-06-26 22:30:43 +00002487 // Objective-C interface.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002488 if (Tok.is(tok::less) && getLangOpts().ObjC1)
Douglas Gregor06e41ae2010-10-21 23:17:00 +00002489 ParseObjCProtocolQualifiers(DS);
Chad Rosierc1183952012-06-26 22:30:43 +00002490
Steve Naroffcd5e7822008-09-22 10:28:57 +00002491 // Need to support trailing type qualifiers (e.g. "id<p> const").
2492 // If a type specifier follows, it will be diagnosed elsewhere.
2493 continue;
Chris Lattner16fac4f2008-07-26 01:18:38 +00002494 }
Douglas Gregor7f741122009-02-25 19:37:18 +00002495
2496 // type-name
2497 case tok::annot_template_id: {
Argyrios Kyrtzidisc0c5dd22011-06-22 06:09:49 +00002498 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregorb67535d2009-03-31 00:43:58 +00002499 if (TemplateId->Kind != TNK_Type_template) {
Douglas Gregor7f741122009-02-25 19:37:18 +00002500 // This template-id does not refer to a type name, so we're
2501 // done with the type-specifiers.
2502 goto DoneWithDeclSpec;
2503 }
2504
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002505 // If we're in a context where the template-id could be a
2506 // constructor name or specialization, check whether this is a
2507 // constructor declaration.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002508 if (getLangOpts().CPlusPlus && DSContext == DSC_class &&
Douglas Gregor0be31a22010-07-02 17:43:08 +00002509 Actions.isCurrentClassName(*TemplateId->Name, getCurScope()) &&
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002510 isConstructorDeclarator())
2511 goto DoneWithDeclSpec;
2512
Douglas Gregor7f741122009-02-25 19:37:18 +00002513 // Turn the template-id annotation token into a type annotation
2514 // token, then try again to parse it as a type-specifier.
Douglas Gregorfe3d7d02009-04-01 21:51:26 +00002515 AnnotateTemplateIdTokenAsType();
Douglas Gregor7f741122009-02-25 19:37:18 +00002516 continue;
2517 }
2518
Chris Lattnere37e2332006-08-15 04:50:22 +00002519 // GNU attributes support.
2520 case tok::kw___attribute:
DeLesley Hutchinsbd2ee132012-03-02 22:12:59 +00002521 ParseGNUAttributes(DS.getAttributes(), 0, LateAttrs);
Chris Lattnerb95cca02006-10-17 03:01:08 +00002522 continue;
Steve Naroff3a9b7e02008-12-24 20:59:21 +00002523
2524 // Microsoft declspec support.
2525 case tok::kw___declspec:
John McCall53fa7142010-12-24 02:08:15 +00002526 ParseMicrosoftDeclSpec(DS.getAttributes());
Steve Naroff3a9b7e02008-12-24 20:59:21 +00002527 continue;
Mike Stump11289f42009-09-09 15:08:12 +00002528
Steve Naroff44ac7772008-12-25 14:16:32 +00002529 // Microsoft single token adornments.
Michael J. Spencerf97bd8c2012-06-18 07:00:48 +00002530 case tok::kw___forceinline: {
Chad Rosier92f0dcc2012-12-21 22:24:43 +00002531 isInvalid = DS.setFunctionSpecInline(Loc);
Michael J. Spencerf97bd8c2012-06-18 07:00:48 +00002532 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
Richard Smithda837032012-09-14 18:27:01 +00002533 SourceLocation AttrNameLoc = Tok.getLocation();
Alexis Hunta0e54d42012-06-18 16:13:52 +00002534 // FIXME: This does not work correctly if it is set to be a declspec
2535 // attribute, and a GNU attribute is simply incorrect.
Michael J. Spencerf97bd8c2012-06-18 07:00:48 +00002536 DS.getAttributes().addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0,
Alexis Hunta0e54d42012-06-18 16:13:52 +00002537 SourceLocation(), 0, 0, AttributeList::AS_GNU);
Richard Smithda837032012-09-14 18:27:01 +00002538 break;
Michael J. Spencerf97bd8c2012-06-18 07:00:48 +00002539 }
Eli Friedman53339e02009-06-08 23:27:34 +00002540
2541 case tok::kw___ptr64:
Francois Pichetf2fb4112011-08-25 00:36:46 +00002542 case tok::kw___ptr32:
Steve Narofff9c29d42008-12-25 14:41:26 +00002543 case tok::kw___w64:
Steve Naroff44ac7772008-12-25 14:16:32 +00002544 case tok::kw___cdecl:
2545 case tok::kw___stdcall:
2546 case tok::kw___fastcall:
Douglas Gregora941dca2010-05-18 16:57:00 +00002547 case tok::kw___thiscall:
Francois Pichet17ed0202011-08-18 09:59:55 +00002548 case tok::kw___unaligned:
John McCall53fa7142010-12-24 02:08:15 +00002549 ParseMicrosoftTypeAttributes(DS.getAttributes());
Eli Friedman53339e02009-06-08 23:27:34 +00002550 continue;
2551
Dawn Perchik335e16b2010-09-03 01:29:35 +00002552 // Borland single token adornments.
2553 case tok::kw___pascal:
John McCall53fa7142010-12-24 02:08:15 +00002554 ParseBorlandTypeAttributes(DS.getAttributes());
Dawn Perchik335e16b2010-09-03 01:29:35 +00002555 continue;
2556
Peter Collingbourne7ce13fc2011-02-14 01:42:53 +00002557 // OpenCL single token adornments.
2558 case tok::kw___kernel:
2559 ParseOpenCLAttributes(DS.getAttributes());
2560 continue;
2561
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002562 // storage-class-specifier
2563 case tok::kw_typedef:
Peter Collingbourne485b80f2011-10-06 03:01:00 +00002564 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_typedef, Loc,
2565 PrevSpec, DiagID);
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002566 break;
2567 case tok::kw_extern:
Chris Lattner353f5742006-11-28 04:50:12 +00002568 if (DS.isThreadSpecified())
Chris Lattner6d29c102008-11-18 07:48:38 +00002569 Diag(Tok, diag::ext_thread_before) << "extern";
Peter Collingbourne485b80f2011-10-06 03:01:00 +00002570 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_extern, Loc,
2571 PrevSpec, DiagID);
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002572 break;
Steve Naroff2050b0d2007-12-18 00:16:02 +00002573 case tok::kw___private_extern__:
Peter Collingbourne485b80f2011-10-06 03:01:00 +00002574 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_private_extern,
2575 Loc, PrevSpec, DiagID);
Steve Naroff2050b0d2007-12-18 00:16:02 +00002576 break;
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002577 case tok::kw_static:
Chris Lattner353f5742006-11-28 04:50:12 +00002578 if (DS.isThreadSpecified())
Chris Lattner6d29c102008-11-18 07:48:38 +00002579 Diag(Tok, diag::ext_thread_before) << "static";
Peter Collingbourne485b80f2011-10-06 03:01:00 +00002580 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_static, Loc,
2581 PrevSpec, DiagID);
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002582 break;
2583 case tok::kw_auto:
Richard Smith2bf7fdb2013-01-02 11:42:31 +00002584 if (getLangOpts().CPlusPlus11) {
Fariborz Jahanianbb6db562011-02-22 23:17:49 +00002585 if (isKnownToBeTypeSpecifier(GetLookAheadToken(1))) {
Peter Collingbourne485b80f2011-10-06 03:01:00 +00002586 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_auto, Loc,
2587 PrevSpec, DiagID);
Fariborz Jahanianbb6db562011-02-22 23:17:49 +00002588 if (!isInvalid)
Richard Smith58c74332011-09-04 19:54:14 +00002589 Diag(Tok, diag::ext_auto_storage_class)
Fariborz Jahanianbb6db562011-02-22 23:17:49 +00002590 << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc());
Richard Smith58c74332011-09-04 19:54:14 +00002591 } else
Fariborz Jahanianbb6db562011-02-22 23:17:49 +00002592 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_auto, Loc, PrevSpec,
2593 DiagID);
Richard Smith58c74332011-09-04 19:54:14 +00002594 } else
Peter Collingbourne485b80f2011-10-06 03:01:00 +00002595 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_auto, Loc,
2596 PrevSpec, DiagID);
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002597 break;
2598 case tok::kw_register:
Peter Collingbourne485b80f2011-10-06 03:01:00 +00002599 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_register, Loc,
2600 PrevSpec, DiagID);
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002601 break;
Sebastian Redlccdfaba2008-11-14 23:42:31 +00002602 case tok::kw_mutable:
Peter Collingbourne485b80f2011-10-06 03:01:00 +00002603 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_mutable, Loc,
2604 PrevSpec, DiagID);
Sebastian Redlccdfaba2008-11-14 23:42:31 +00002605 break;
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002606 case tok::kw___thread:
John McCall49bfce42009-08-03 20:12:06 +00002607 isInvalid = DS.SetStorageClassSpecThread(Loc, PrevSpec, DiagID);
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002608 break;
Mike Stump11289f42009-09-09 15:08:12 +00002609
Chris Lattnerb9093cd2006-08-04 04:39:53 +00002610 // function-specifier
2611 case tok::kw_inline:
Chad Rosier92f0dcc2012-12-21 22:24:43 +00002612 isInvalid = DS.setFunctionSpecInline(Loc);
Chris Lattnerb9093cd2006-08-04 04:39:53 +00002613 break;
Douglas Gregor61956c42008-10-31 09:07:45 +00002614 case tok::kw_virtual:
Chad Rosier92f0dcc2012-12-21 22:24:43 +00002615 isInvalid = DS.setFunctionSpecVirtual(Loc);
Douglas Gregor61956c42008-10-31 09:07:45 +00002616 break;
Douglas Gregor61956c42008-10-31 09:07:45 +00002617 case tok::kw_explicit:
Chad Rosier92f0dcc2012-12-21 22:24:43 +00002618 isInvalid = DS.setFunctionSpecExplicit(Loc);
Douglas Gregor61956c42008-10-31 09:07:45 +00002619 break;
Richard Smith0015f092013-01-17 22:16:11 +00002620 case tok::kw__Noreturn:
2621 if (!getLangOpts().C11)
2622 Diag(Loc, diag::ext_c11_noreturn);
2623 isInvalid = DS.setFunctionSpecNoreturn(Loc);
2624 break;
Chris Lattnere387d9e2009-01-21 19:48:37 +00002625
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002626 // alignment-specifier
2627 case tok::kw__Alignas:
David Blaikiebbafb8a2012-03-11 07:00:24 +00002628 if (!getLangOpts().C11)
Jordan Rose58d54722012-06-30 21:33:57 +00002629 Diag(Tok, diag::ext_c11_alignment) << Tok.getName();
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002630 ParseAlignmentSpecifier(DS.getAttributes());
2631 continue;
2632
Anders Carlssoncd8db412009-05-06 04:46:28 +00002633 // friend
2634 case tok::kw_friend:
John McCall07e91c02009-08-06 02:15:43 +00002635 if (DSContext == DSC_class)
2636 isInvalid = DS.SetFriendSpec(Loc, PrevSpec, DiagID);
2637 else {
2638 PrevSpec = ""; // not actually used by the diagnostic
2639 DiagID = diag::err_friend_invalid_in_context;
2640 isInvalid = true;
2641 }
Anders Carlssoncd8db412009-05-06 04:46:28 +00002642 break;
Mike Stump11289f42009-09-09 15:08:12 +00002643
Douglas Gregor26701a42011-09-09 02:06:17 +00002644 // Modules
2645 case tok::kw___module_private__:
2646 isInvalid = DS.setModulePrivateSpec(Loc, PrevSpec, DiagID);
2647 break;
Chad Rosierc1183952012-06-26 22:30:43 +00002648
Sebastian Redl39c2a8b2009-11-05 15:47:02 +00002649 // constexpr
2650 case tok::kw_constexpr:
2651 isInvalid = DS.SetConstexprSpec(Loc, PrevSpec, DiagID);
2652 break;
2653
Chris Lattnere387d9e2009-01-21 19:48:37 +00002654 // type-specifier
2655 case tok::kw_short:
John McCall49bfce42009-08-03 20:12:06 +00002656 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_short, Loc, PrevSpec,
2657 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002658 break;
2659 case tok::kw_long:
2660 if (DS.getTypeSpecWidth() != DeclSpec::TSW_long)
John McCall49bfce42009-08-03 20:12:06 +00002661 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_long, Loc, PrevSpec,
2662 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002663 else
John McCall49bfce42009-08-03 20:12:06 +00002664 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_longlong, Loc, PrevSpec,
2665 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002666 break;
Francois Pichet84133e42011-04-28 01:59:37 +00002667 case tok::kw___int64:
2668 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_longlong, Loc, PrevSpec,
2669 DiagID);
2670 break;
Chris Lattnere387d9e2009-01-21 19:48:37 +00002671 case tok::kw_signed:
John McCall49bfce42009-08-03 20:12:06 +00002672 isInvalid = DS.SetTypeSpecSign(DeclSpec::TSS_signed, Loc, PrevSpec,
2673 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002674 break;
2675 case tok::kw_unsigned:
John McCall49bfce42009-08-03 20:12:06 +00002676 isInvalid = DS.SetTypeSpecSign(DeclSpec::TSS_unsigned, Loc, PrevSpec,
2677 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002678 break;
2679 case tok::kw__Complex:
John McCall49bfce42009-08-03 20:12:06 +00002680 isInvalid = DS.SetTypeSpecComplex(DeclSpec::TSC_complex, Loc, PrevSpec,
2681 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002682 break;
2683 case tok::kw__Imaginary:
John McCall49bfce42009-08-03 20:12:06 +00002684 isInvalid = DS.SetTypeSpecComplex(DeclSpec::TSC_imaginary, Loc, PrevSpec,
2685 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002686 break;
2687 case tok::kw_void:
John McCall49bfce42009-08-03 20:12:06 +00002688 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_void, Loc, PrevSpec,
2689 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002690 break;
2691 case tok::kw_char:
John McCall49bfce42009-08-03 20:12:06 +00002692 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char, Loc, PrevSpec,
2693 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002694 break;
2695 case tok::kw_int:
John McCall49bfce42009-08-03 20:12:06 +00002696 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, PrevSpec,
2697 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002698 break;
Richard Smithf016bbc2012-04-04 06:24:32 +00002699 case tok::kw___int128:
2700 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_int128, Loc, PrevSpec,
2701 DiagID);
2702 break;
2703 case tok::kw_half:
2704 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_half, Loc, PrevSpec,
2705 DiagID);
2706 break;
Chris Lattnere387d9e2009-01-21 19:48:37 +00002707 case tok::kw_float:
John McCall49bfce42009-08-03 20:12:06 +00002708 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_float, Loc, PrevSpec,
2709 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002710 break;
2711 case tok::kw_double:
John McCall49bfce42009-08-03 20:12:06 +00002712 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_double, Loc, PrevSpec,
2713 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002714 break;
2715 case tok::kw_wchar_t:
John McCall49bfce42009-08-03 20:12:06 +00002716 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_wchar, Loc, PrevSpec,
2717 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002718 break;
Alisdair Mereditha9ad47d2009-07-14 06:30:34 +00002719 case tok::kw_char16_t:
John McCall49bfce42009-08-03 20:12:06 +00002720 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char16, Loc, PrevSpec,
2721 DiagID);
Alisdair Mereditha9ad47d2009-07-14 06:30:34 +00002722 break;
2723 case tok::kw_char32_t:
John McCall49bfce42009-08-03 20:12:06 +00002724 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char32, Loc, PrevSpec,
2725 DiagID);
Alisdair Mereditha9ad47d2009-07-14 06:30:34 +00002726 break;
Chris Lattnere387d9e2009-01-21 19:48:37 +00002727 case tok::kw_bool:
2728 case tok::kw__Bool:
Argyrios Kyrtzidis20ee5ae2010-11-16 18:18:13 +00002729 if (Tok.is(tok::kw_bool) &&
2730 DS.getTypeSpecType() != DeclSpec::TST_unspecified &&
2731 DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
2732 PrevSpec = ""; // Not used by the diagnostic.
2733 DiagID = diag::err_bool_redeclaration;
Fariborz Jahanian2b059992011-04-19 21:42:37 +00002734 // For better error recovery.
2735 Tok.setKind(tok::identifier);
Argyrios Kyrtzidis20ee5ae2010-11-16 18:18:13 +00002736 isInvalid = true;
2737 } else {
2738 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_bool, Loc, PrevSpec,
2739 DiagID);
2740 }
Chris Lattnere387d9e2009-01-21 19:48:37 +00002741 break;
2742 case tok::kw__Decimal32:
John McCall49bfce42009-08-03 20:12:06 +00002743 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal32, Loc, PrevSpec,
2744 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002745 break;
2746 case tok::kw__Decimal64:
John McCall49bfce42009-08-03 20:12:06 +00002747 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal64, Loc, PrevSpec,
2748 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002749 break;
2750 case tok::kw__Decimal128:
John McCall49bfce42009-08-03 20:12:06 +00002751 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal128, Loc, PrevSpec,
2752 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002753 break;
John Thompson22334602010-02-05 00:12:22 +00002754 case tok::kw___vector:
2755 isInvalid = DS.SetTypeAltiVecVector(true, Loc, PrevSpec, DiagID);
2756 break;
2757 case tok::kw___pixel:
2758 isInvalid = DS.SetTypeAltiVecPixel(true, Loc, PrevSpec, DiagID);
2759 break;
Guy Benyeid8a08ea2012-12-18 14:38:23 +00002760 case tok::kw_image1d_t:
2761 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_image1d_t, Loc,
2762 PrevSpec, DiagID);
2763 break;
2764 case tok::kw_image1d_array_t:
2765 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_image1d_array_t, Loc,
2766 PrevSpec, DiagID);
2767 break;
2768 case tok::kw_image1d_buffer_t:
2769 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_image1d_buffer_t, Loc,
2770 PrevSpec, DiagID);
2771 break;
2772 case tok::kw_image2d_t:
2773 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_image2d_t, Loc,
2774 PrevSpec, DiagID);
2775 break;
2776 case tok::kw_image2d_array_t:
2777 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_image2d_array_t, Loc,
2778 PrevSpec, DiagID);
2779 break;
2780 case tok::kw_image3d_t:
2781 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_image3d_t, Loc,
2782 PrevSpec, DiagID);
2783 break;
Guy Benyei1b4fb3e2013-01-20 12:31:11 +00002784 case tok::kw_event_t:
2785 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_event_t, Loc,
2786 PrevSpec, DiagID);
2787 break;
John McCall39439732011-04-09 22:50:59 +00002788 case tok::kw___unknown_anytype:
2789 isInvalid = DS.SetTypeSpecType(TST_unknown_anytype, Loc,
2790 PrevSpec, DiagID);
2791 break;
Chris Lattnere387d9e2009-01-21 19:48:37 +00002792
2793 // class-specifier:
2794 case tok::kw_class:
2795 case tok::kw_struct:
Joao Matosdc86f942012-08-31 18:45:21 +00002796 case tok::kw___interface:
Chris Lattnerffaa0e62009-04-12 21:49:30 +00002797 case tok::kw_union: {
2798 tok::TokenKind Kind = Tok.getKind();
2799 ConsumeToken();
Michael Han9407e502012-11-26 22:54:45 +00002800
2801 // These are attributes following class specifiers.
2802 // To produce better diagnostic, we parse them when
2803 // parsing class specifier.
Bill Wendling44426052012-12-20 19:22:21 +00002804 ParsedAttributesWithRange Attributes(AttrFactory);
Richard Smithc5b05522012-03-12 07:56:15 +00002805 ParseClassSpecifier(Kind, Loc, DS, TemplateInfo, AS,
Bill Wendling44426052012-12-20 19:22:21 +00002806 EnteringContext, DSContext, Attributes);
Michael Han9407e502012-11-26 22:54:45 +00002807
2808 // If there are attributes following class specifier,
2809 // take them over and handle them here.
Bill Wendling44426052012-12-20 19:22:21 +00002810 if (!Attributes.empty()) {
Michael Han9407e502012-11-26 22:54:45 +00002811 AttrsLastTime = true;
Bill Wendling44426052012-12-20 19:22:21 +00002812 attrs.takeAllFrom(Attributes);
Michael Han9407e502012-11-26 22:54:45 +00002813 }
Chris Lattnere387d9e2009-01-21 19:48:37 +00002814 continue;
Chris Lattnerffaa0e62009-04-12 21:49:30 +00002815 }
Chris Lattnere387d9e2009-01-21 19:48:37 +00002816
2817 // enum-specifier:
2818 case tok::kw_enum:
Chris Lattnerffaa0e62009-04-12 21:49:30 +00002819 ConsumeToken();
Richard Smithc5b05522012-03-12 07:56:15 +00002820 ParseEnumSpecifier(Loc, DS, TemplateInfo, AS, DSContext);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002821 continue;
2822
2823 // cv-qualifier:
2824 case tok::kw_const:
John McCall49bfce42009-08-03 20:12:06 +00002825 isInvalid = DS.SetTypeQual(DeclSpec::TQ_const, Loc, PrevSpec, DiagID,
Richard Smith87e79512012-10-17 23:31:46 +00002826 getLangOpts());
Chris Lattnere387d9e2009-01-21 19:48:37 +00002827 break;
2828 case tok::kw_volatile:
John McCall49bfce42009-08-03 20:12:06 +00002829 isInvalid = DS.SetTypeQual(DeclSpec::TQ_volatile, Loc, PrevSpec, DiagID,
Richard Smith87e79512012-10-17 23:31:46 +00002830 getLangOpts());
Chris Lattnere387d9e2009-01-21 19:48:37 +00002831 break;
2832 case tok::kw_restrict:
John McCall49bfce42009-08-03 20:12:06 +00002833 isInvalid = DS.SetTypeQual(DeclSpec::TQ_restrict, Loc, PrevSpec, DiagID,
Richard Smith87e79512012-10-17 23:31:46 +00002834 getLangOpts());
Chris Lattnere387d9e2009-01-21 19:48:37 +00002835 break;
2836
Douglas Gregor333489b2009-03-27 23:10:48 +00002837 // C++ typename-specifier:
2838 case tok::kw_typename:
John McCall1f476a12010-02-26 08:45:28 +00002839 if (TryAnnotateTypeOrScopeToken()) {
2840 DS.SetTypeSpecError();
2841 goto DoneWithDeclSpec;
2842 }
2843 if (!Tok.is(tok::kw_typename))
Douglas Gregor333489b2009-03-27 23:10:48 +00002844 continue;
2845 break;
2846
Chris Lattnere387d9e2009-01-21 19:48:37 +00002847 // GNU typeof support.
2848 case tok::kw_typeof:
2849 ParseTypeofSpecifier(DS);
2850 continue;
2851
David Blaikie15a430a2011-12-04 05:04:18 +00002852 case tok::annot_decltype:
Anders Carlsson74948d02009-06-24 17:47:40 +00002853 ParseDecltypeSpecifier(DS);
2854 continue;
2855
Alexis Hunt4a257072011-05-19 05:37:45 +00002856 case tok::kw___underlying_type:
2857 ParseUnderlyingTypeSpecifier(DS);
Eli Friedman0dfb8892011-10-06 23:00:33 +00002858 continue;
2859
2860 case tok::kw__Atomic:
2861 ParseAtomicSpecifier(DS);
2862 continue;
Alexis Hunt4a257072011-05-19 05:37:45 +00002863
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00002864 // OpenCL qualifiers:
Chad Rosierc1183952012-06-26 22:30:43 +00002865 case tok::kw_private:
David Blaikiebbafb8a2012-03-11 07:00:24 +00002866 if (!getLangOpts().OpenCL)
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00002867 goto DoneWithDeclSpec;
2868 case tok::kw___private:
2869 case tok::kw___global:
2870 case tok::kw___local:
2871 case tok::kw___constant:
2872 case tok::kw___read_only:
2873 case tok::kw___write_only:
2874 case tok::kw___read_write:
2875 ParseOpenCLQualifiers(DS);
2876 break;
Chad Rosierc1183952012-06-26 22:30:43 +00002877
Steve Naroffcfdf6162008-06-05 00:02:44 +00002878 case tok::less:
Chris Lattner16fac4f2008-07-26 01:18:38 +00002879 // GCC ObjC supports types like "<SomeProtocol>" as a synonym for
Chris Lattner0974b232008-07-26 00:20:22 +00002880 // "id<SomeProtocol>". This is hopelessly old fashioned and dangerous,
2881 // but we support it.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002882 if (DS.hasTypeSpecifier() || !getLangOpts().ObjC1)
Chris Lattner0974b232008-07-26 00:20:22 +00002883 goto DoneWithDeclSpec;
Mike Stump11289f42009-09-09 15:08:12 +00002884
Douglas Gregor3a001f42010-11-19 17:10:50 +00002885 if (!ParseObjCProtocolQualifiers(DS))
2886 Diag(Loc, diag::warn_objc_protocol_qualifier_missing_id)
2887 << FixItHint::CreateInsertion(Loc, "id")
2888 << SourceRange(Loc, DS.getSourceRange().getEnd());
Chad Rosierc1183952012-06-26 22:30:43 +00002889
Douglas Gregor06e41ae2010-10-21 23:17:00 +00002890 // Need to support trailing type qualifiers (e.g. "id<p> const").
2891 // If a type specifier follows, it will be diagnosed elsewhere.
2892 continue;
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00002893 }
John McCall49bfce42009-08-03 20:12:06 +00002894 // If the specifier wasn't legal, issue a diagnostic.
Chris Lattnerb9093cd2006-08-04 04:39:53 +00002895 if (isInvalid) {
2896 assert(PrevSpec && "Method did not return previous specifier!");
John McCall49bfce42009-08-03 20:12:06 +00002897 assert(DiagID);
Chad Rosierc1183952012-06-26 22:30:43 +00002898
Douglas Gregora05f5ab2010-08-23 14:34:43 +00002899 if (DiagID == diag::ext_duplicate_declspec)
2900 Diag(Tok, DiagID)
2901 << PrevSpec << FixItHint::CreateRemoval(Tok.getLocation());
2902 else
2903 Diag(Tok, DiagID) << PrevSpec;
Chris Lattnerb9093cd2006-08-04 04:39:53 +00002904 }
Fariborz Jahanianbb6db562011-02-22 23:17:49 +00002905
Chris Lattner2e232092008-03-13 06:29:04 +00002906 DS.SetRangeEnd(Tok.getLocation());
Fariborz Jahanian2b059992011-04-19 21:42:37 +00002907 if (DiagID != diag::err_bool_redeclaration)
2908 ConsumeToken();
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00002909
2910 AttrsLastTime = false;
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00002911 }
2912}
Douglas Gregoreb31f392008-12-01 23:54:00 +00002913
Chris Lattner70ae4912007-10-29 04:42:53 +00002914/// ParseStructDeclaration - Parse a struct declaration without the terminating
2915/// semicolon.
2916///
Chris Lattner90a26b02007-01-23 04:38:16 +00002917/// struct-declaration:
Chris Lattner70ae4912007-10-29 04:42:53 +00002918/// specifier-qualifier-list struct-declarator-list
Chris Lattner736ed5d2007-06-09 05:59:07 +00002919/// [GNU] __extension__ struct-declaration
Chris Lattner70ae4912007-10-29 04:42:53 +00002920/// [GNU] specifier-qualifier-list
Chris Lattner90a26b02007-01-23 04:38:16 +00002921/// struct-declarator-list:
2922/// struct-declarator
2923/// struct-declarator-list ',' struct-declarator
2924/// [GNU] struct-declarator-list ',' attributes[opt] struct-declarator
2925/// struct-declarator:
2926/// declarator
2927/// [GNU] declarator attributes[opt]
2928/// declarator[opt] ':' constant-expression
2929/// [GNU] declarator[opt] ':' constant-expression attributes[opt]
2930///
Chris Lattnera12405b2008-04-10 06:46:29 +00002931void Parser::
Eli Friedman89b1f2c2012-08-08 23:04:35 +00002932ParseStructDeclaration(ParsingDeclSpec &DS, FieldCallback &Fields) {
Chad Rosierc1183952012-06-26 22:30:43 +00002933
Chris Lattnerf02ef3e2008-10-20 06:45:43 +00002934 if (Tok.is(tok::kw___extension__)) {
2935 // __extension__ silences extension warnings in the subexpression.
2936 ExtensionRAIIObject O(Diags); // Use RAII to do this.
Steve Naroff97170802007-08-20 22:28:22 +00002937 ConsumeToken();
Chris Lattnerf02ef3e2008-10-20 06:45:43 +00002938 return ParseStructDeclaration(DS, Fields);
2939 }
Mike Stump11289f42009-09-09 15:08:12 +00002940
Steve Naroff97170802007-08-20 22:28:22 +00002941 // Parse the common specifier-qualifiers-list piece.
Steve Naroff97170802007-08-20 22:28:22 +00002942 ParseSpecifierQualifierList(DS);
Mike Stump11289f42009-09-09 15:08:12 +00002943
Douglas Gregorc6f58fe2009-01-12 22:49:06 +00002944 // If there are no declarators, this is a free-standing declaration
2945 // specifier. Let the actions module cope with it.
Chris Lattner76c72282007-10-09 17:33:22 +00002946 if (Tok.is(tok::semi)) {
Eli Friedman89b1f2c2012-08-08 23:04:35 +00002947 Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS_none,
2948 DS);
2949 DS.complete(TheDecl);
Steve Naroff97170802007-08-20 22:28:22 +00002950 return;
2951 }
2952
2953 // Read struct-declarators until we find the semicolon.
John McCallcfefb6d2009-11-03 02:38:08 +00002954 bool FirstDeclarator = true;
Richard Smith8d06f422012-01-12 23:53:29 +00002955 SourceLocation CommaLoc;
Steve Naroff97170802007-08-20 22:28:22 +00002956 while (1) {
Eli Friedman89b1f2c2012-08-08 23:04:35 +00002957 ParsingFieldDeclarator DeclaratorInfo(*this, DS);
Richard Smith8d06f422012-01-12 23:53:29 +00002958 DeclaratorInfo.D.setCommaLoc(CommaLoc);
John McCallcfefb6d2009-11-03 02:38:08 +00002959
Bill Wendling44426052012-12-20 19:22:21 +00002960 // Attributes are only allowed here on successive declarators.
John McCall53fa7142010-12-24 02:08:15 +00002961 if (!FirstDeclarator)
2962 MaybeParseGNUAttributes(DeclaratorInfo.D);
Mike Stump11289f42009-09-09 15:08:12 +00002963
Steve Naroff97170802007-08-20 22:28:22 +00002964 /// struct-declarator: declarator
2965 /// struct-declarator: declarator[opt] ':' constant-expression
Chris Lattner17c3b1f2009-12-10 01:59:24 +00002966 if (Tok.isNot(tok::colon)) {
2967 // Don't parse FOO:BAR as if it were a typo for FOO::BAR.
2968 ColonProtectionRAIIObject X(*this);
Chris Lattnera12405b2008-04-10 06:46:29 +00002969 ParseDeclarator(DeclaratorInfo.D);
Chris Lattner17c3b1f2009-12-10 01:59:24 +00002970 }
Mike Stump11289f42009-09-09 15:08:12 +00002971
Chris Lattner76c72282007-10-09 17:33:22 +00002972 if (Tok.is(tok::colon)) {
Steve Naroff97170802007-08-20 22:28:22 +00002973 ConsumeToken();
John McCalldadc5752010-08-24 06:29:42 +00002974 ExprResult Res(ParseConstantExpression());
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00002975 if (Res.isInvalid())
Steve Naroff97170802007-08-20 22:28:22 +00002976 SkipUntil(tok::semi, true, true);
Chris Lattner32295d32008-04-10 06:15:14 +00002977 else
Sebastian Redld9f7b1c2008-12-10 00:02:53 +00002978 DeclaratorInfo.BitfieldSize = Res.release();
Steve Naroff97170802007-08-20 22:28:22 +00002979 }
Sebastian Redlf6591ca2009-02-09 18:23:29 +00002980
Steve Naroff97170802007-08-20 22:28:22 +00002981 // If attributes exist after the declarator, parse them.
John McCall53fa7142010-12-24 02:08:15 +00002982 MaybeParseGNUAttributes(DeclaratorInfo.D);
Sebastian Redlf6591ca2009-02-09 18:23:29 +00002983
John McCallcfefb6d2009-11-03 02:38:08 +00002984 // We're done with this declarator; invoke the callback.
Eli Friedmanba01f2b2012-08-08 23:35:12 +00002985 Fields.invoke(DeclaratorInfo);
John McCallcfefb6d2009-11-03 02:38:08 +00002986
Steve Naroff97170802007-08-20 22:28:22 +00002987 // If we don't have a comma, it is either the end of the list (a ';')
2988 // or an error, bail out.
Chris Lattner76c72282007-10-09 17:33:22 +00002989 if (Tok.isNot(tok::comma))
Chris Lattner70ae4912007-10-29 04:42:53 +00002990 return;
Sebastian Redlf6591ca2009-02-09 18:23:29 +00002991
Steve Naroff97170802007-08-20 22:28:22 +00002992 // Consume the comma.
Richard Smith8d06f422012-01-12 23:53:29 +00002993 CommaLoc = ConsumeToken();
Sebastian Redlf6591ca2009-02-09 18:23:29 +00002994
John McCallcfefb6d2009-11-03 02:38:08 +00002995 FirstDeclarator = false;
Steve Naroff97170802007-08-20 22:28:22 +00002996 }
Steve Naroff97170802007-08-20 22:28:22 +00002997}
2998
2999/// ParseStructUnionBody
3000/// struct-contents:
3001/// struct-declaration-list
3002/// [EXT] empty
3003/// [GNU] "struct-declaration-list" without terminatoring ';'
3004/// struct-declaration-list:
3005/// struct-declaration
3006/// struct-declaration-list struct-declaration
Chris Lattner535b8302008-06-21 19:39:06 +00003007/// [OBC] '@' 'defs' '(' class-name ')'
Steve Naroff97170802007-08-20 22:28:22 +00003008///
Chris Lattner1300fb92007-01-23 23:42:53 +00003009void Parser::ParseStructUnionBody(SourceLocation RecordLoc,
John McCall48871652010-08-21 09:40:31 +00003010 unsigned TagType, Decl *TagDecl) {
John McCallfaf5fb42010-08-26 23:41:50 +00003011 PrettyDeclStackTraceEntry CrashInfo(Actions, TagDecl, RecordLoc,
3012 "parsing struct/union body");
Mike Stump11289f42009-09-09 15:08:12 +00003013
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003014 BalancedDelimiterTracker T(*this, tok::l_brace);
3015 if (T.consumeOpen())
3016 return;
Mike Stump11289f42009-09-09 15:08:12 +00003017
Douglas Gregor658b9552009-01-09 22:42:13 +00003018 ParseScope StructScope(this, Scope::ClassScope|Scope::DeclScope);
Douglas Gregor0be31a22010-07-02 17:43:08 +00003019 Actions.ActOnTagStartDefinition(getCurScope(), TagDecl);
Douglas Gregor82ac25e2009-01-08 20:45:30 +00003020
Chris Lattner7b9ace62007-01-23 20:11:08 +00003021 // Empty structs are an extension in C (C99 6.7.2.1p7), but are allowed in
3022 // C++.
David Blaikiebbafb8a2012-03-11 07:00:24 +00003023 if (Tok.is(tok::r_brace) && !getLangOpts().CPlusPlus) {
Richard Smithe4345902011-12-29 21:57:33 +00003024 Diag(Tok, diag::ext_empty_struct_union) << (TagType == TST_union);
3025 Diag(Tok, diag::warn_empty_struct_union_compat) << (TagType == TST_union);
3026 }
Chris Lattner7b9ace62007-01-23 20:11:08 +00003027
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003028 SmallVector<Decl *, 32> FieldDecls;
Chris Lattnera12405b2008-04-10 06:46:29 +00003029
Chris Lattner7b9ace62007-01-23 20:11:08 +00003030 // While we still have something to read, read the declarations in the struct.
Chris Lattner76c72282007-10-09 17:33:22 +00003031 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
Chris Lattner90a26b02007-01-23 04:38:16 +00003032 // Each iteration of this loop reads one struct-declaration.
Mike Stump11289f42009-09-09 15:08:12 +00003033
Chris Lattner736ed5d2007-06-09 05:59:07 +00003034 // Check for extraneous top-level semicolon.
Chris Lattner76c72282007-10-09 17:33:22 +00003035 if (Tok.is(tok::semi)) {
Richard Smith87f5dc52012-07-23 05:45:25 +00003036 ConsumeExtraSemi(InsideStruct, TagType);
Chris Lattner36e46a22007-06-09 05:49:55 +00003037 continue;
3038 }
Chris Lattnera12405b2008-04-10 06:46:29 +00003039
John McCallcfefb6d2009-11-03 02:38:08 +00003040 if (!Tok.is(tok::at)) {
3041 struct CFieldCallback : FieldCallback {
3042 Parser &P;
John McCall48871652010-08-21 09:40:31 +00003043 Decl *TagDecl;
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003044 SmallVectorImpl<Decl *> &FieldDecls;
John McCallcfefb6d2009-11-03 02:38:08 +00003045
John McCall48871652010-08-21 09:40:31 +00003046 CFieldCallback(Parser &P, Decl *TagDecl,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003047 SmallVectorImpl<Decl *> &FieldDecls) :
John McCallcfefb6d2009-11-03 02:38:08 +00003048 P(P), TagDecl(TagDecl), FieldDecls(FieldDecls) {}
3049
Eli Friedman934dbbf2012-08-08 23:53:27 +00003050 void invoke(ParsingFieldDeclarator &FD) {
John McCallcfefb6d2009-11-03 02:38:08 +00003051 // Install the declarator into the current TagDecl.
John McCall48871652010-08-21 09:40:31 +00003052 Decl *Field = P.Actions.ActOnField(P.getCurScope(), TagDecl,
John McCall5e6253b2009-11-03 21:13:47 +00003053 FD.D.getDeclSpec().getSourceRange().getBegin(),
3054 FD.D, FD.BitfieldSize);
John McCallcfefb6d2009-11-03 02:38:08 +00003055 FieldDecls.push_back(Field);
Eli Friedman89b1f2c2012-08-08 23:04:35 +00003056 FD.complete(Field);
Douglas Gregor66a985d2009-08-26 14:27:30 +00003057 }
John McCallcfefb6d2009-11-03 02:38:08 +00003058 } Callback(*this, TagDecl, FieldDecls);
3059
Eli Friedman89b1f2c2012-08-08 23:04:35 +00003060 // Parse all the comma separated declarators.
3061 ParsingDeclSpec DS(*this);
John McCallcfefb6d2009-11-03 02:38:08 +00003062 ParseStructDeclaration(DS, Callback);
Chris Lattner535b8302008-06-21 19:39:06 +00003063 } else { // Handle @defs
3064 ConsumeToken();
3065 if (!Tok.isObjCAtKeyword(tok::objc_defs)) {
3066 Diag(Tok, diag::err_unexpected_at);
Chris Lattner245c5332010-02-02 00:37:27 +00003067 SkipUntil(tok::semi, true);
Chris Lattner535b8302008-06-21 19:39:06 +00003068 continue;
3069 }
3070 ConsumeToken();
3071 ExpectAndConsume(tok::l_paren, diag::err_expected_lparen);
3072 if (!Tok.is(tok::identifier)) {
3073 Diag(Tok, diag::err_expected_ident);
Chris Lattner245c5332010-02-02 00:37:27 +00003074 SkipUntil(tok::semi, true);
Chris Lattner535b8302008-06-21 19:39:06 +00003075 continue;
3076 }
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003077 SmallVector<Decl *, 16> Fields;
Douglas Gregor0be31a22010-07-02 17:43:08 +00003078 Actions.ActOnDefs(getCurScope(), TagDecl, Tok.getLocation(),
Douglas Gregor91f84212008-12-11 16:49:14 +00003079 Tok.getIdentifierInfo(), Fields);
Chris Lattner535b8302008-06-21 19:39:06 +00003080 FieldDecls.insert(FieldDecls.end(), Fields.begin(), Fields.end());
3081 ConsumeToken();
3082 ExpectAndConsume(tok::r_paren, diag::err_expected_rparen);
Mike Stump11289f42009-09-09 15:08:12 +00003083 }
Chris Lattner736ed5d2007-06-09 05:59:07 +00003084
Chris Lattner76c72282007-10-09 17:33:22 +00003085 if (Tok.is(tok::semi)) {
Chris Lattner90a26b02007-01-23 04:38:16 +00003086 ConsumeToken();
Chris Lattner76c72282007-10-09 17:33:22 +00003087 } else if (Tok.is(tok::r_brace)) {
Chris Lattner245c5332010-02-02 00:37:27 +00003088 ExpectAndConsume(tok::semi, diag::ext_expected_semi_decl_list);
Chris Lattner0c7e82d2007-06-09 05:54:40 +00003089 break;
Chris Lattner90a26b02007-01-23 04:38:16 +00003090 } else {
Chris Lattner245c5332010-02-02 00:37:27 +00003091 ExpectAndConsume(tok::semi, diag::err_expected_semi_decl_list);
3092 // Skip to end of block or statement to avoid ext-warning on extra ';'.
Chris Lattner90a26b02007-01-23 04:38:16 +00003093 SkipUntil(tok::r_brace, true, true);
Chris Lattner245c5332010-02-02 00:37:27 +00003094 // If we stopped at a ';', eat it.
3095 if (Tok.is(tok::semi)) ConsumeToken();
Chris Lattner90a26b02007-01-23 04:38:16 +00003096 }
3097 }
Mike Stump11289f42009-09-09 15:08:12 +00003098
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003099 T.consumeClose();
Mike Stump11289f42009-09-09 15:08:12 +00003100
John McCall084e83d2011-03-24 11:26:52 +00003101 ParsedAttributes attrs(AttrFactory);
Chris Lattner90a26b02007-01-23 04:38:16 +00003102 // If attributes exist after struct contents, parse them.
John McCall53fa7142010-12-24 02:08:15 +00003103 MaybeParseGNUAttributes(attrs);
Daniel Dunbar15619c72008-10-03 02:03:53 +00003104
Douglas Gregor0be31a22010-07-02 17:43:08 +00003105 Actions.ActOnFields(getCurScope(),
David Blaikie751c5582011-09-22 02:58:26 +00003106 RecordLoc, TagDecl, FieldDecls,
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003107 T.getOpenLocation(), T.getCloseLocation(),
John McCall53fa7142010-12-24 02:08:15 +00003108 attrs.getList());
Douglas Gregor82ac25e2009-01-08 20:45:30 +00003109 StructScope.Exit();
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003110 Actions.ActOnTagFinishDefinition(getCurScope(), TagDecl,
3111 T.getCloseLocation());
Chris Lattner90a26b02007-01-23 04:38:16 +00003112}
3113
Chris Lattner3b561a32006-08-13 00:12:11 +00003114/// ParseEnumSpecifier
Chris Lattner1890ac82006-08-13 01:16:23 +00003115/// enum-specifier: [C99 6.7.2.2]
Chris Lattner3b561a32006-08-13 00:12:11 +00003116/// 'enum' identifier[opt] '{' enumerator-list '}'
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00003117///[C99/C++]'enum' identifier[opt] '{' enumerator-list ',' '}'
Chris Lattnere37e2332006-08-15 04:50:22 +00003118/// [GNU] 'enum' attributes[opt] identifier[opt] '{' enumerator-list ',' [opt]
3119/// '}' attributes[opt]
Aaron Ballman9ecff022012-03-01 04:09:28 +00003120/// [MS] 'enum' __declspec[opt] identifier[opt] '{' enumerator-list ',' [opt]
3121/// '}'
Chris Lattner3b561a32006-08-13 00:12:11 +00003122/// 'enum' identifier
Chris Lattnere37e2332006-08-15 04:50:22 +00003123/// [GNU] 'enum' attributes[opt] identifier
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00003124///
Richard Smith7d137e32012-03-23 03:33:32 +00003125/// [C++11] enum-head '{' enumerator-list[opt] '}'
3126/// [C++11] enum-head '{' enumerator-list ',' '}'
Douglas Gregor0bf31402010-10-08 23:50:27 +00003127///
Richard Smith7d137e32012-03-23 03:33:32 +00003128/// enum-head: [C++11]
3129/// enum-key attribute-specifier-seq[opt] identifier[opt] enum-base[opt]
3130/// enum-key attribute-specifier-seq[opt] nested-name-specifier
3131/// identifier enum-base[opt]
Douglas Gregor0bf31402010-10-08 23:50:27 +00003132///
Richard Smith7d137e32012-03-23 03:33:32 +00003133/// enum-key: [C++11]
Douglas Gregor0bf31402010-10-08 23:50:27 +00003134/// 'enum'
3135/// 'enum' 'class'
3136/// 'enum' 'struct'
3137///
Richard Smith7d137e32012-03-23 03:33:32 +00003138/// enum-base: [C++11]
Douglas Gregor0bf31402010-10-08 23:50:27 +00003139/// ':' type-specifier-seq
3140///
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00003141/// [C++] elaborated-type-specifier:
3142/// [C++] 'enum' '::'[opt] nested-name-specifier[opt] identifier
3143///
Chris Lattnerffaa0e62009-04-12 21:49:30 +00003144void Parser::ParseEnumSpecifier(SourceLocation StartLoc, DeclSpec &DS,
Douglas Gregordc70c3a2010-03-02 17:53:14 +00003145 const ParsedTemplateInfo &TemplateInfo,
Richard Smithc5b05522012-03-12 07:56:15 +00003146 AccessSpecifier AS, DeclSpecContext DSC) {
Chris Lattnerffbc2712007-01-25 06:05:38 +00003147 // Parse the tag portion of this.
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003148 if (Tok.is(tok::code_completion)) {
3149 // Code completion for an enum name.
Douglas Gregor0be31a22010-07-02 17:43:08 +00003150 Actions.CodeCompleteTag(getCurScope(), DeclSpec::TST_enum);
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +00003151 return cutOffParsing();
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003152 }
John McCallcb432fa2011-07-06 05:58:41 +00003153
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00003154 // If attributes exist after tag, parse them.
3155 ParsedAttributesWithRange attrs(AttrFactory);
3156 MaybeParseGNUAttributes(attrs);
Richard Smith89645bc2013-01-02 12:01:23 +00003157 MaybeParseCXX11Attributes(attrs);
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00003158
3159 // If declspecs exist after tag, parse them.
3160 while (Tok.is(tok::kw___declspec))
3161 ParseMicrosoftDeclSpec(attrs);
3162
Richard Smith0f8ee222012-01-10 01:33:14 +00003163 SourceLocation ScopedEnumKWLoc;
John McCallcb432fa2011-07-06 05:58:41 +00003164 bool IsScopedUsingClassTag = false;
3165
John McCallbeae29a2012-06-23 22:30:04 +00003166 // In C++11, recognize 'enum class' and 'enum struct'.
Richard Smith2bf7fdb2013-01-02 11:42:31 +00003167 if (getLangOpts().CPlusPlus11 &&
John McCallcb432fa2011-07-06 05:58:41 +00003168 (Tok.is(tok::kw_class) || Tok.is(tok::kw_struct))) {
Richard Smith5d164bc2011-10-15 05:09:34 +00003169 Diag(Tok, diag::warn_cxx98_compat_scoped_enum);
John McCallcb432fa2011-07-06 05:58:41 +00003170 IsScopedUsingClassTag = Tok.is(tok::kw_class);
Richard Smith0f8ee222012-01-10 01:33:14 +00003171 ScopedEnumKWLoc = ConsumeToken();
Chad Rosierc1183952012-06-26 22:30:43 +00003172
Bill Wendling44426052012-12-20 19:22:21 +00003173 // Attributes are not allowed between these keywords. Diagnose,
John McCallbeae29a2012-06-23 22:30:04 +00003174 // but then just treat them like they appeared in the right place.
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00003175 ProhibitAttributes(attrs);
John McCallbeae29a2012-06-23 22:30:04 +00003176
3177 // They are allowed afterwards, though.
3178 MaybeParseGNUAttributes(attrs);
Richard Smith89645bc2013-01-02 12:01:23 +00003179 MaybeParseCXX11Attributes(attrs);
John McCallbeae29a2012-06-23 22:30:04 +00003180 while (Tok.is(tok::kw___declspec))
3181 ParseMicrosoftDeclSpec(attrs);
John McCallcb432fa2011-07-06 05:58:41 +00003182 }
Richard Smith7d137e32012-03-23 03:33:32 +00003183
John McCall6347b682012-05-07 06:16:58 +00003184 // C++11 [temp.explicit]p12:
3185 // The usual access controls do not apply to names used to specify
3186 // explicit instantiations.
3187 // We extend this to also cover explicit specializations. Note that
3188 // we don't suppress if this turns out to be an elaborated type
3189 // specifier.
3190 bool shouldDelayDiagsInTag =
3191 (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation ||
3192 TemplateInfo.Kind == ParsedTemplateInfo::ExplicitSpecialization);
3193 SuppressAccessChecks diagsFromTag(*this, shouldDelayDiagsInTag);
Richard Smith7d137e32012-03-23 03:33:32 +00003194
Richard Smithbfdb1082012-03-12 08:56:40 +00003195 // Enum definitions should not be parsed in a trailing-return-type.
3196 bool AllowDeclaration = DSC != DSC_trailing;
3197
3198 bool AllowFixedUnderlyingType = AllowDeclaration &&
Richard Smith2bf7fdb2013-01-02 11:42:31 +00003199 (getLangOpts().CPlusPlus11 || getLangOpts().MicrosoftExt ||
Richard Smithbfdb1082012-03-12 08:56:40 +00003200 getLangOpts().ObjC2);
John McCallcb432fa2011-07-06 05:58:41 +00003201
Abramo Bagnarad7548482010-05-19 21:37:53 +00003202 CXXScopeSpec &SS = DS.getTypeSpecScope();
David Blaikiebbafb8a2012-03-11 07:00:24 +00003203 if (getLangOpts().CPlusPlus) {
John McCallcb432fa2011-07-06 05:58:41 +00003204 // "enum foo : bar;" is not a potential typo for "enum foo::bar;"
3205 // if a fixed underlying type is allowed.
3206 ColonProtectionRAIIObject X(*this, AllowFixedUnderlyingType);
Chad Rosierc1183952012-06-26 22:30:43 +00003207
3208 if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(),
Douglas Gregordf593fb2011-11-07 17:33:42 +00003209 /*EnteringContext=*/false))
John McCall1f476a12010-02-26 08:45:28 +00003210 return;
3211
3212 if (SS.isSet() && Tok.isNot(tok::identifier)) {
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00003213 Diag(Tok, diag::err_expected_ident);
3214 if (Tok.isNot(tok::l_brace)) {
3215 // Has no name and is not a definition.
3216 // Skip the rest of this declarator, up until the comma or semicolon.
3217 SkipUntil(tok::comma, true);
3218 return;
3219 }
3220 }
3221 }
Mike Stump11289f42009-09-09 15:08:12 +00003222
Argyrios Kyrtzidisf01fa822008-09-11 00:21:41 +00003223 // Must have either 'enum name' or 'enum {...}'.
Douglas Gregor6cd5ae42011-02-22 02:55:24 +00003224 if (Tok.isNot(tok::identifier) && Tok.isNot(tok::l_brace) &&
Richard Smithbfdb1082012-03-12 08:56:40 +00003225 !(AllowFixedUnderlyingType && Tok.is(tok::colon))) {
Argyrios Kyrtzidisf01fa822008-09-11 00:21:41 +00003226 Diag(Tok, diag::err_expected_ident_lbrace);
Mike Stump11289f42009-09-09 15:08:12 +00003227
Argyrios Kyrtzidisf01fa822008-09-11 00:21:41 +00003228 // Skip the rest of this declarator, up until the comma or semicolon.
3229 SkipUntil(tok::comma, true);
Chris Lattner3b561a32006-08-13 00:12:11 +00003230 return;
Argyrios Kyrtzidisf01fa822008-09-11 00:21:41 +00003231 }
Mike Stump11289f42009-09-09 15:08:12 +00003232
Argyrios Kyrtzidisf01fa822008-09-11 00:21:41 +00003233 // If an identifier is present, consume and remember it.
3234 IdentifierInfo *Name = 0;
3235 SourceLocation NameLoc;
3236 if (Tok.is(tok::identifier)) {
3237 Name = Tok.getIdentifierInfo();
3238 NameLoc = ConsumeToken();
3239 }
Mike Stump11289f42009-09-09 15:08:12 +00003240
Richard Smith0f8ee222012-01-10 01:33:14 +00003241 if (!Name && ScopedEnumKWLoc.isValid()) {
Douglas Gregor0bf31402010-10-08 23:50:27 +00003242 // C++0x 7.2p2: The optional identifier shall not be omitted in the
3243 // declaration of a scoped enumeration.
3244 Diag(Tok, diag::err_scoped_enum_missing_identifier);
Richard Smith0f8ee222012-01-10 01:33:14 +00003245 ScopedEnumKWLoc = SourceLocation();
Abramo Bagnara0e05e242010-12-03 18:54:17 +00003246 IsScopedUsingClassTag = false;
Douglas Gregor0bf31402010-10-08 23:50:27 +00003247 }
3248
John McCall6347b682012-05-07 06:16:58 +00003249 // Okay, end the suppression area. We'll decide whether to emit the
3250 // diagnostics in a second.
3251 if (shouldDelayDiagsInTag)
3252 diagsFromTag.done();
Richard Smith7d137e32012-03-23 03:33:32 +00003253
Douglas Gregor0bf31402010-10-08 23:50:27 +00003254 TypeResult BaseType;
3255
Douglas Gregord1f69f62010-12-01 17:42:47 +00003256 // Parse the fixed underlying type.
Richard Smith200f47c2012-07-02 19:14:01 +00003257 bool CanBeBitfield = getCurScope()->getFlags() & Scope::ClassScope;
Douglas Gregor6cd5ae42011-02-22 02:55:24 +00003258 if (AllowFixedUnderlyingType && Tok.is(tok::colon)) {
Douglas Gregord1f69f62010-12-01 17:42:47 +00003259 bool PossibleBitfield = false;
Richard Smith200f47c2012-07-02 19:14:01 +00003260 if (CanBeBitfield) {
Douglas Gregord1f69f62010-12-01 17:42:47 +00003261 // If we're in class scope, this can either be an enum declaration with
3262 // an underlying type, or a declaration of a bitfield member. We try to
3263 // use a simple disambiguation scheme first to catch the common cases
Chad Rosierc1183952012-06-26 22:30:43 +00003264 // (integer literal, sizeof); if it's still ambiguous, we then consider
3265 // anything that's a simple-type-specifier followed by '(' as an
3266 // expression. This suffices because function types are not valid
Douglas Gregord1f69f62010-12-01 17:42:47 +00003267 // underlying types anyway.
Richard Smith4f605af2012-08-18 00:55:03 +00003268 EnterExpressionEvaluationContext Unevaluated(Actions,
3269 Sema::ConstantEvaluated);
Douglas Gregord1f69f62010-12-01 17:42:47 +00003270 TPResult TPR = isExpressionOrTypeSpecifierSimple(NextToken().getKind());
Chad Rosierc1183952012-06-26 22:30:43 +00003271 // If the next token starts an expression, we know we're parsing a
Douglas Gregord1f69f62010-12-01 17:42:47 +00003272 // bit-field. This is the common case.
3273 if (TPR == TPResult::True())
3274 PossibleBitfield = true;
3275 // If the next token starts a type-specifier-seq, it may be either a
3276 // a fixed underlying type or the start of a function-style cast in C++;
Chad Rosierc1183952012-06-26 22:30:43 +00003277 // lookahead one more token to see if it's obvious that we have a
Douglas Gregord1f69f62010-12-01 17:42:47 +00003278 // fixed underlying type.
Chad Rosierc1183952012-06-26 22:30:43 +00003279 else if (TPR == TPResult::False() &&
Douglas Gregord1f69f62010-12-01 17:42:47 +00003280 GetLookAheadToken(2).getKind() == tok::semi) {
3281 // Consume the ':'.
3282 ConsumeToken();
3283 } else {
3284 // We have the start of a type-specifier-seq, so we have to perform
3285 // tentative parsing to determine whether we have an expression or a
3286 // type.
3287 TentativeParsingAction TPA(*this);
3288
3289 // Consume the ':'.
3290 ConsumeToken();
Richard Smith1e3b0f02012-02-23 01:36:12 +00003291
3292 // If we see a type specifier followed by an open-brace, we have an
3293 // ambiguity between an underlying type and a C++11 braced
3294 // function-style cast. Resolve this by always treating it as an
3295 // underlying type.
3296 // FIXME: The standard is not entirely clear on how to disambiguate in
3297 // this case.
David Blaikiebbafb8a2012-03-11 07:00:24 +00003298 if ((getLangOpts().CPlusPlus &&
Richard Smith1e3b0f02012-02-23 01:36:12 +00003299 isCXXDeclarationSpecifier(TPResult::True()) != TPResult::True()) ||
David Blaikiebbafb8a2012-03-11 07:00:24 +00003300 (!getLangOpts().CPlusPlus && !isDeclarationSpecifier(true))) {
Douglas Gregord1f69f62010-12-01 17:42:47 +00003301 // We'll parse this as a bitfield later.
3302 PossibleBitfield = true;
3303 TPA.Revert();
3304 } else {
3305 // We have a type-specifier-seq.
3306 TPA.Commit();
3307 }
3308 }
3309 } else {
3310 // Consume the ':'.
3311 ConsumeToken();
3312 }
3313
3314 if (!PossibleBitfield) {
3315 SourceRange Range;
3316 BaseType = ParseTypeName(&Range);
Chad Rosierc1183952012-06-26 22:30:43 +00003317
Richard Smith2bf7fdb2013-01-02 11:42:31 +00003318 if (getLangOpts().CPlusPlus11) {
Richard Smith5d164bc2011-10-15 05:09:34 +00003319 Diag(StartLoc, diag::warn_cxx98_compat_enum_fixed_underlying_type);
Eli Friedman0d0355ab2012-11-02 01:34:28 +00003320 } else if (!getLangOpts().ObjC2) {
3321 if (getLangOpts().CPlusPlus)
3322 Diag(StartLoc, diag::ext_cxx11_enum_fixed_underlying_type) << Range;
3323 else
3324 Diag(StartLoc, diag::ext_c_enum_fixed_underlying_type) << Range;
3325 }
Douglas Gregord1f69f62010-12-01 17:42:47 +00003326 }
Douglas Gregor0bf31402010-10-08 23:50:27 +00003327 }
3328
Richard Smith0f8ee222012-01-10 01:33:14 +00003329 // There are four options here. If we have 'friend enum foo;' then this is a
3330 // friend declaration, and cannot have an accompanying definition. If we have
3331 // 'enum foo;', then this is a forward declaration. If we have
3332 // 'enum foo {...' then this is a definition. Otherwise we have something
3333 // like 'enum foo xyz', a reference.
Argyrios Kyrtzidisf01fa822008-09-11 00:21:41 +00003334 //
3335 // This is needed to handle stuff like this right (C99 6.7.2.3p11):
3336 // enum foo {..}; void bar() { enum foo; } <- new foo in bar.
3337 // enum foo {..}; void bar() { enum foo x; } <- use of old foo.
3338 //
John McCallfaf5fb42010-08-26 23:41:50 +00003339 Sema::TagUseKind TUK;
John McCall6347b682012-05-07 06:16:58 +00003340 if (!AllowDeclaration) {
Richard Smithbfdb1082012-03-12 08:56:40 +00003341 TUK = Sema::TUK_Reference;
John McCall6347b682012-05-07 06:16:58 +00003342 } else if (Tok.is(tok::l_brace)) {
3343 if (DS.isFriendSpecified()) {
3344 Diag(Tok.getLocation(), diag::err_friend_decl_defines_type)
3345 << SourceRange(DS.getFriendSpecLoc());
3346 ConsumeBrace();
3347 SkipUntil(tok::r_brace);
3348 TUK = Sema::TUK_Friend;
3349 } else {
3350 TUK = Sema::TUK_Definition;
3351 }
Richard Smith369b9f92012-06-25 21:37:02 +00003352 } else if (DSC != DSC_type_specifier &&
3353 (Tok.is(tok::semi) ||
Richard Smith200f47c2012-07-02 19:14:01 +00003354 (Tok.isAtStartOfLine() &&
3355 !isValidAfterTypeSpecifier(CanBeBitfield)))) {
Richard Smith369b9f92012-06-25 21:37:02 +00003356 TUK = DS.isFriendSpecified() ? Sema::TUK_Friend : Sema::TUK_Declaration;
3357 if (Tok.isNot(tok::semi)) {
3358 // A semicolon was missing after this declaration. Diagnose and recover.
3359 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_tagdecl,
3360 "enum");
3361 PP.EnterToken(Tok);
3362 Tok.setKind(tok::semi);
3363 }
John McCall6347b682012-05-07 06:16:58 +00003364 } else {
John McCallfaf5fb42010-08-26 23:41:50 +00003365 TUK = Sema::TUK_Reference;
John McCall6347b682012-05-07 06:16:58 +00003366 }
3367
3368 // If this is an elaborated type specifier, and we delayed
3369 // diagnostics before, just merge them into the current pool.
3370 if (TUK == Sema::TUK_Reference && shouldDelayDiagsInTag) {
3371 diagsFromTag.redelay();
3372 }
Richard Smith7d137e32012-03-23 03:33:32 +00003373
3374 MultiTemplateParamsArg TParams;
Douglas Gregorcbbf3e32010-05-03 17:48:54 +00003375 if (TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate &&
John McCallfaf5fb42010-08-26 23:41:50 +00003376 TUK != Sema::TUK_Reference) {
Richard Smith2bf7fdb2013-01-02 11:42:31 +00003377 if (!getLangOpts().CPlusPlus11 || !SS.isSet()) {
Richard Smith7d137e32012-03-23 03:33:32 +00003378 // Skip the rest of this declarator, up until the comma or semicolon.
3379 Diag(Tok, diag::err_enum_template);
3380 SkipUntil(tok::comma, true);
3381 return;
3382 }
3383
3384 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation) {
3385 // Enumerations can't be explicitly instantiated.
3386 DS.SetTypeSpecError();
3387 Diag(StartLoc, diag::err_explicit_instantiation_enum);
3388 return;
3389 }
3390
3391 assert(TemplateInfo.TemplateParams && "no template parameters");
3392 TParams = MultiTemplateParamsArg(TemplateInfo.TemplateParams->data(),
3393 TemplateInfo.TemplateParams->size());
Douglas Gregorcbbf3e32010-05-03 17:48:54 +00003394 }
Chad Rosierc1183952012-06-26 22:30:43 +00003395
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00003396 if (TUK == Sema::TUK_Reference)
3397 ProhibitAttributes(attrs);
Richard Smith7d137e32012-03-23 03:33:32 +00003398
Douglas Gregor6cd5ae42011-02-22 02:55:24 +00003399 if (!Name && TUK != Sema::TUK_Definition) {
3400 Diag(Tok, diag::err_enumerator_unnamed_no_def);
Richard Smith7d137e32012-03-23 03:33:32 +00003401
Douglas Gregor6cd5ae42011-02-22 02:55:24 +00003402 // Skip the rest of this declarator, up until the comma or semicolon.
3403 SkipUntil(tok::comma, true);
3404 return;
3405 }
Richard Smith7d137e32012-03-23 03:33:32 +00003406
Douglas Gregord6ab8742009-05-28 23:31:59 +00003407 bool Owned = false;
John McCall7f41d982009-09-11 04:59:25 +00003408 bool IsDependent = false;
Douglas Gregorba41d012010-04-24 16:38:41 +00003409 const char *PrevSpec = 0;
3410 unsigned DiagID;
John McCall48871652010-08-21 09:40:31 +00003411 Decl *TagDecl = Actions.ActOnTag(getCurScope(), DeclSpec::TST_enum, TUK,
John McCall53fa7142010-12-24 02:08:15 +00003412 StartLoc, SS, Name, NameLoc, attrs.getList(),
Richard Smith7d137e32012-03-23 03:33:32 +00003413 AS, DS.getModulePrivateSpecLoc(), TParams,
Richard Smith0f8ee222012-01-10 01:33:14 +00003414 Owned, IsDependent, ScopedEnumKWLoc,
Abramo Bagnara0e05e242010-12-03 18:54:17 +00003415 IsScopedUsingClassTag, BaseType);
Douglas Gregor0bf31402010-10-08 23:50:27 +00003416
Douglas Gregorba41d012010-04-24 16:38:41 +00003417 if (IsDependent) {
Chad Rosierc1183952012-06-26 22:30:43 +00003418 // This enum has a dependent nested-name-specifier. Handle it as a
Douglas Gregorba41d012010-04-24 16:38:41 +00003419 // dependent tag.
3420 if (!Name) {
3421 DS.SetTypeSpecError();
3422 Diag(Tok, diag::err_expected_type_name_after_typename);
3423 return;
3424 }
Chad Rosierc1183952012-06-26 22:30:43 +00003425
Douglas Gregor0be31a22010-07-02 17:43:08 +00003426 TypeResult Type = Actions.ActOnDependentTag(getCurScope(), DeclSpec::TST_enum,
Chad Rosierc1183952012-06-26 22:30:43 +00003427 TUK, SS, Name, StartLoc,
Douglas Gregorba41d012010-04-24 16:38:41 +00003428 NameLoc);
3429 if (Type.isInvalid()) {
3430 DS.SetTypeSpecError();
3431 return;
3432 }
Chad Rosierc1183952012-06-26 22:30:43 +00003433
Abramo Bagnara9875a3c2011-03-16 20:16:18 +00003434 if (DS.SetTypeSpecType(DeclSpec::TST_typename, StartLoc,
3435 NameLoc.isValid() ? NameLoc : StartLoc,
3436 PrevSpec, DiagID, Type.get()))
Douglas Gregorba41d012010-04-24 16:38:41 +00003437 Diag(StartLoc, DiagID) << PrevSpec;
Chad Rosierc1183952012-06-26 22:30:43 +00003438
Douglas Gregorba41d012010-04-24 16:38:41 +00003439 return;
3440 }
Mike Stump11289f42009-09-09 15:08:12 +00003441
John McCall48871652010-08-21 09:40:31 +00003442 if (!TagDecl) {
Chad Rosierc1183952012-06-26 22:30:43 +00003443 // The action failed to produce an enumeration tag. If this is a
Douglas Gregorba41d012010-04-24 16:38:41 +00003444 // definition, consume the entire definition.
Richard Smithbfdb1082012-03-12 08:56:40 +00003445 if (Tok.is(tok::l_brace) && TUK != Sema::TUK_Reference) {
Douglas Gregorba41d012010-04-24 16:38:41 +00003446 ConsumeBrace();
3447 SkipUntil(tok::r_brace);
3448 }
Chad Rosierc1183952012-06-26 22:30:43 +00003449
Douglas Gregorba41d012010-04-24 16:38:41 +00003450 DS.SetTypeSpecError();
3451 return;
3452 }
Richard Smith0f8ee222012-01-10 01:33:14 +00003453
Richard Smith369b9f92012-06-25 21:37:02 +00003454 if (Tok.is(tok::l_brace) && TUK != Sema::TUK_Reference)
John McCall6347b682012-05-07 06:16:58 +00003455 ParseEnumBody(StartLoc, TagDecl);
Mike Stump11289f42009-09-09 15:08:12 +00003456
Abramo Bagnara9875a3c2011-03-16 20:16:18 +00003457 if (DS.SetTypeSpecType(DeclSpec::TST_enum, StartLoc,
3458 NameLoc.isValid() ? NameLoc : StartLoc,
3459 PrevSpec, DiagID, TagDecl, Owned))
John McCall49bfce42009-08-03 20:12:06 +00003460 Diag(StartLoc, DiagID) << PrevSpec;
Chris Lattner3b561a32006-08-13 00:12:11 +00003461}
3462
Chris Lattnerc1915e22007-01-25 07:29:02 +00003463/// ParseEnumBody - Parse a {} enclosed enumerator-list.
3464/// enumerator-list:
3465/// enumerator
3466/// enumerator-list ',' enumerator
3467/// enumerator:
3468/// enumeration-constant
3469/// enumeration-constant '=' constant-expression
3470/// enumeration-constant:
3471/// identifier
3472///
John McCall48871652010-08-21 09:40:31 +00003473void Parser::ParseEnumBody(SourceLocation StartLoc, Decl *EnumDecl) {
Douglas Gregor07665a62009-01-05 19:45:36 +00003474 // Enter the scope of the enum body and start the definition.
3475 ParseScope EnumScope(this, Scope::DeclScope);
Douglas Gregor0be31a22010-07-02 17:43:08 +00003476 Actions.ActOnTagStartDefinition(getCurScope(), EnumDecl);
Douglas Gregor07665a62009-01-05 19:45:36 +00003477
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003478 BalancedDelimiterTracker T(*this, tok::l_brace);
3479 T.consumeOpen();
Mike Stump11289f42009-09-09 15:08:12 +00003480
Chris Lattner37256fb2007-08-27 17:24:30 +00003481 // C does not allow an empty enumerator-list, C++ does [dcl.enum].
David Blaikiebbafb8a2012-03-11 07:00:24 +00003482 if (Tok.is(tok::r_brace) && !getLangOpts().CPlusPlus)
Fariborz Jahanian6e814922010-05-28 22:23:22 +00003483 Diag(Tok, diag::error_empty_enum);
Mike Stump11289f42009-09-09 15:08:12 +00003484
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003485 SmallVector<Decl *, 32> EnumConstantDecls;
Chris Lattnerc1915e22007-01-25 07:29:02 +00003486
John McCall48871652010-08-21 09:40:31 +00003487 Decl *LastEnumConstDecl = 0;
Mike Stump11289f42009-09-09 15:08:12 +00003488
Chris Lattnerc1915e22007-01-25 07:29:02 +00003489 // Parse the enumerator-list.
Chris Lattner76c72282007-10-09 17:33:22 +00003490 while (Tok.is(tok::identifier)) {
Chris Lattnerc1915e22007-01-25 07:29:02 +00003491 IdentifierInfo *Ident = Tok.getIdentifierInfo();
3492 SourceLocation IdentLoc = ConsumeToken();
Mike Stump11289f42009-09-09 15:08:12 +00003493
John McCall811a0f52010-10-22 23:36:17 +00003494 // If attributes exist after the enumerator, parse them.
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00003495 ParsedAttributesWithRange attrs(AttrFactory);
John McCall53fa7142010-12-24 02:08:15 +00003496 MaybeParseGNUAttributes(attrs);
Richard Smith89645bc2013-01-02 12:01:23 +00003497 MaybeParseCXX11Attributes(attrs);
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00003498 ProhibitAttributes(attrs);
John McCall811a0f52010-10-22 23:36:17 +00003499
Chris Lattnerc1915e22007-01-25 07:29:02 +00003500 SourceLocation EqualLoc;
John McCalldadc5752010-08-24 06:29:42 +00003501 ExprResult AssignedVal;
John McCall2ec85372012-05-07 06:16:41 +00003502 ParsingDeclRAIIObject PD(*this, ParsingDeclRAIIObject::NoParent);
Chad Rosierc1183952012-06-26 22:30:43 +00003503
Chris Lattner76c72282007-10-09 17:33:22 +00003504 if (Tok.is(tok::equal)) {
Chris Lattnerc1915e22007-01-25 07:29:02 +00003505 EqualLoc = ConsumeToken();
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00003506 AssignedVal = ParseConstantExpression();
3507 if (AssignedVal.isInvalid())
Chris Lattnerda6c2ce2007-04-27 19:13:15 +00003508 SkipUntil(tok::comma, tok::r_brace, true, true);
Chris Lattnerc1915e22007-01-25 07:29:02 +00003509 }
Mike Stump11289f42009-09-09 15:08:12 +00003510
Chris Lattnerc1915e22007-01-25 07:29:02 +00003511 // Install the enumerator constant into EnumDecl.
John McCall48871652010-08-21 09:40:31 +00003512 Decl *EnumConstDecl = Actions.ActOnEnumConstant(getCurScope(), EnumDecl,
3513 LastEnumConstDecl,
3514 IdentLoc, Ident,
John McCall53fa7142010-12-24 02:08:15 +00003515 attrs.getList(), EqualLoc,
John McCall48871652010-08-21 09:40:31 +00003516 AssignedVal.release());
Fariborz Jahanian329b3512011-12-09 01:15:54 +00003517 PD.complete(EnumConstDecl);
Chad Rosierc1183952012-06-26 22:30:43 +00003518
Chris Lattner4ef40012007-06-11 01:28:17 +00003519 EnumConstantDecls.push_back(EnumConstDecl);
3520 LastEnumConstDecl = EnumConstDecl;
Mike Stump11289f42009-09-09 15:08:12 +00003521
Douglas Gregorce66d022010-09-07 14:51:08 +00003522 if (Tok.is(tok::identifier)) {
3523 // We're missing a comma between enumerators.
3524 SourceLocation Loc = PP.getLocForEndOfToken(PrevTokLocation);
Chad Rosierc1183952012-06-26 22:30:43 +00003525 Diag(Loc, diag::err_enumerator_list_missing_comma)
Douglas Gregorce66d022010-09-07 14:51:08 +00003526 << FixItHint::CreateInsertion(Loc, ", ");
3527 continue;
3528 }
Chad Rosierc1183952012-06-26 22:30:43 +00003529
Chris Lattner76c72282007-10-09 17:33:22 +00003530 if (Tok.isNot(tok::comma))
Chris Lattnerc1915e22007-01-25 07:29:02 +00003531 break;
3532 SourceLocation CommaLoc = ConsumeToken();
Mike Stump11289f42009-09-09 15:08:12 +00003533
Richard Smith5d164bc2011-10-15 05:09:34 +00003534 if (Tok.isNot(tok::identifier)) {
Richard Smith2bf7fdb2013-01-02 11:42:31 +00003535 if (!getLangOpts().C99 && !getLangOpts().CPlusPlus11)
Richard Smith87f5dc52012-07-23 05:45:25 +00003536 Diag(CommaLoc, getLangOpts().CPlusPlus ?
3537 diag::ext_enumerator_list_comma_cxx :
3538 diag::ext_enumerator_list_comma_c)
Richard Smith5d164bc2011-10-15 05:09:34 +00003539 << FixItHint::CreateRemoval(CommaLoc);
Richard Smith2bf7fdb2013-01-02 11:42:31 +00003540 else if (getLangOpts().CPlusPlus11)
Richard Smith5d164bc2011-10-15 05:09:34 +00003541 Diag(CommaLoc, diag::warn_cxx98_compat_enumerator_list_comma)
3542 << FixItHint::CreateRemoval(CommaLoc);
3543 }
Chris Lattnerc1915e22007-01-25 07:29:02 +00003544 }
Mike Stump11289f42009-09-09 15:08:12 +00003545
Chris Lattnerc1915e22007-01-25 07:29:02 +00003546 // Eat the }.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003547 T.consumeClose();
Chris Lattnerc1915e22007-01-25 07:29:02 +00003548
Chris Lattnerc1915e22007-01-25 07:29:02 +00003549 // If attributes exist after the identifier list, parse them.
John McCall084e83d2011-03-24 11:26:52 +00003550 ParsedAttributes attrs(AttrFactory);
John McCall53fa7142010-12-24 02:08:15 +00003551 MaybeParseGNUAttributes(attrs);
Douglas Gregor82ac25e2009-01-08 20:45:30 +00003552
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003553 Actions.ActOnEnumBody(StartLoc, T.getOpenLocation(), T.getCloseLocation(),
3554 EnumDecl, EnumConstantDecls.data(),
3555 EnumConstantDecls.size(), getCurScope(),
3556 attrs.getList());
Mike Stump11289f42009-09-09 15:08:12 +00003557
Douglas Gregor82ac25e2009-01-08 20:45:30 +00003558 EnumScope.Exit();
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003559 Actions.ActOnTagFinishDefinition(getCurScope(), EnumDecl,
3560 T.getCloseLocation());
Richard Smith369b9f92012-06-25 21:37:02 +00003561
3562 // The next token must be valid after an enum definition. If not, a ';'
3563 // was probably forgotten.
Richard Smith200f47c2012-07-02 19:14:01 +00003564 bool CanBeBitfield = getCurScope()->getFlags() & Scope::ClassScope;
3565 if (!isValidAfterTypeSpecifier(CanBeBitfield)) {
Richard Smith369b9f92012-06-25 21:37:02 +00003566 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_tagdecl, "enum");
3567 // Push this token back into the preprocessor and change our current token
3568 // to ';' so that the rest of the code recovers as though there were an
3569 // ';' after the definition.
3570 PP.EnterToken(Tok);
3571 Tok.setKind(tok::semi);
3572 }
Chris Lattnerc1915e22007-01-25 07:29:02 +00003573}
Chris Lattner3b561a32006-08-13 00:12:11 +00003574
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003575/// isTypeSpecifierQualifier - Return true if the current token could be the
Steve Naroff69e8f9e2008-02-11 23:15:56 +00003576/// start of a type-qualifier-list.
3577bool Parser::isTypeQualifier() const {
3578 switch (Tok.getKind()) {
3579 default: return false;
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00003580
3581 // type-qualifier only in OpenCL
3582 case tok::kw_private:
David Blaikiebbafb8a2012-03-11 07:00:24 +00003583 return getLangOpts().OpenCL;
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00003584
Steve Naroff69e8f9e2008-02-11 23:15:56 +00003585 // type-qualifier
3586 case tok::kw_const:
3587 case tok::kw_volatile:
3588 case tok::kw_restrict:
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00003589 case tok::kw___private:
3590 case tok::kw___local:
3591 case tok::kw___global:
3592 case tok::kw___constant:
3593 case tok::kw___read_only:
3594 case tok::kw___read_write:
3595 case tok::kw___write_only:
Steve Naroff69e8f9e2008-02-11 23:15:56 +00003596 return true;
3597 }
3598}
3599
Chris Lattnerfd48afe2010-02-28 18:18:36 +00003600/// isKnownToBeTypeSpecifier - Return true if we know that the specified token
3601/// is definitely a type-specifier. Return false if it isn't part of a type
3602/// specifier or if we're not sure.
3603bool Parser::isKnownToBeTypeSpecifier(const Token &Tok) const {
3604 switch (Tok.getKind()) {
3605 default: return false;
3606 // type-specifiers
3607 case tok::kw_short:
3608 case tok::kw_long:
Francois Pichet84133e42011-04-28 01:59:37 +00003609 case tok::kw___int64:
Richard Smithf016bbc2012-04-04 06:24:32 +00003610 case tok::kw___int128:
Chris Lattnerfd48afe2010-02-28 18:18:36 +00003611 case tok::kw_signed:
3612 case tok::kw_unsigned:
3613 case tok::kw__Complex:
3614 case tok::kw__Imaginary:
3615 case tok::kw_void:
3616 case tok::kw_char:
3617 case tok::kw_wchar_t:
3618 case tok::kw_char16_t:
3619 case tok::kw_char32_t:
3620 case tok::kw_int:
Anton Korobeynikovf0c267e2011-10-14 23:23:15 +00003621 case tok::kw_half:
Chris Lattnerfd48afe2010-02-28 18:18:36 +00003622 case tok::kw_float:
3623 case tok::kw_double:
3624 case tok::kw_bool:
3625 case tok::kw__Bool:
3626 case tok::kw__Decimal32:
3627 case tok::kw__Decimal64:
3628 case tok::kw__Decimal128:
3629 case tok::kw___vector:
Chad Rosierc1183952012-06-26 22:30:43 +00003630
Guy Benyeid8a08ea2012-12-18 14:38:23 +00003631 // OpenCL specific types:
3632 case tok::kw_image1d_t:
3633 case tok::kw_image1d_array_t:
3634 case tok::kw_image1d_buffer_t:
3635 case tok::kw_image2d_t:
3636 case tok::kw_image2d_array_t:
3637 case tok::kw_image3d_t:
Guy Benyei1b4fb3e2013-01-20 12:31:11 +00003638 case tok::kw_event_t:
Guy Benyeid8a08ea2012-12-18 14:38:23 +00003639
Chris Lattnerfd48afe2010-02-28 18:18:36 +00003640 // struct-or-union-specifier (C99) or class-specifier (C++)
3641 case tok::kw_class:
3642 case tok::kw_struct:
Joao Matosdc86f942012-08-31 18:45:21 +00003643 case tok::kw___interface:
Chris Lattnerfd48afe2010-02-28 18:18:36 +00003644 case tok::kw_union:
3645 // enum-specifier
3646 case tok::kw_enum:
Chad Rosierc1183952012-06-26 22:30:43 +00003647
Chris Lattnerfd48afe2010-02-28 18:18:36 +00003648 // typedef-name
3649 case tok::annot_typename:
3650 return true;
3651 }
3652}
3653
Steve Naroff69e8f9e2008-02-11 23:15:56 +00003654/// isTypeSpecifierQualifier - Return true if the current token could be the
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003655/// start of a specifier-qualifier-list.
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00003656bool Parser::isTypeSpecifierQualifier() {
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003657 switch (Tok.getKind()) {
3658 default: return false;
Mike Stump11289f42009-09-09 15:08:12 +00003659
Chris Lattner020bab92009-01-04 23:41:41 +00003660 case tok::identifier: // foo::bar
John Thompson22334602010-02-05 00:12:22 +00003661 if (TryAltiVecVectorToken())
3662 return true;
3663 // Fall through.
Douglas Gregor333489b2009-03-27 23:10:48 +00003664 case tok::kw_typename: // typename T::type
Chris Lattner020bab92009-01-04 23:41:41 +00003665 // Annotate typenames and C++ scope specifiers. If we get one, just
3666 // recurse to handle whatever we get.
3667 if (TryAnnotateTypeOrScopeToken())
John McCall1f476a12010-02-26 08:45:28 +00003668 return true;
3669 if (Tok.is(tok::identifier))
3670 return false;
3671 return isTypeSpecifierQualifier();
Douglas Gregor333489b2009-03-27 23:10:48 +00003672
Chris Lattner020bab92009-01-04 23:41:41 +00003673 case tok::coloncolon: // ::foo::bar
3674 if (NextToken().is(tok::kw_new) || // ::new
3675 NextToken().is(tok::kw_delete)) // ::delete
3676 return false;
3677
Chris Lattner020bab92009-01-04 23:41:41 +00003678 if (TryAnnotateTypeOrScopeToken())
John McCall1f476a12010-02-26 08:45:28 +00003679 return true;
3680 return isTypeSpecifierQualifier();
Mike Stump11289f42009-09-09 15:08:12 +00003681
Chris Lattnere37e2332006-08-15 04:50:22 +00003682 // GNU attributes support.
3683 case tok::kw___attribute:
Steve Naroffad373bd2007-07-31 12:34:36 +00003684 // GNU typeof support.
3685 case tok::kw_typeof:
Mike Stump11289f42009-09-09 15:08:12 +00003686
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003687 // type-specifiers
3688 case tok::kw_short:
3689 case tok::kw_long:
Francois Pichet84133e42011-04-28 01:59:37 +00003690 case tok::kw___int64:
Richard Smithf016bbc2012-04-04 06:24:32 +00003691 case tok::kw___int128:
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003692 case tok::kw_signed:
3693 case tok::kw_unsigned:
3694 case tok::kw__Complex:
3695 case tok::kw__Imaginary:
3696 case tok::kw_void:
3697 case tok::kw_char:
Argyrios Kyrtzidis40e9e482008-08-09 16:51:54 +00003698 case tok::kw_wchar_t:
Alisdair Mereditha9ad47d2009-07-14 06:30:34 +00003699 case tok::kw_char16_t:
3700 case tok::kw_char32_t:
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003701 case tok::kw_int:
Anton Korobeynikovf0c267e2011-10-14 23:23:15 +00003702 case tok::kw_half:
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003703 case tok::kw_float:
3704 case tok::kw_double:
Chris Lattnerbb31a422007-11-15 05:25:19 +00003705 case tok::kw_bool:
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003706 case tok::kw__Bool:
3707 case tok::kw__Decimal32:
3708 case tok::kw__Decimal64:
3709 case tok::kw__Decimal128:
John Thompson22334602010-02-05 00:12:22 +00003710 case tok::kw___vector:
Mike Stump11289f42009-09-09 15:08:12 +00003711
Guy Benyeid8a08ea2012-12-18 14:38:23 +00003712 // OpenCL specific types:
3713 case tok::kw_image1d_t:
3714 case tok::kw_image1d_array_t:
3715 case tok::kw_image1d_buffer_t:
3716 case tok::kw_image2d_t:
3717 case tok::kw_image2d_array_t:
3718 case tok::kw_image3d_t:
Guy Benyei1b4fb3e2013-01-20 12:31:11 +00003719 case tok::kw_event_t:
Guy Benyeid8a08ea2012-12-18 14:38:23 +00003720
Chris Lattner861a2262008-04-13 18:59:07 +00003721 // struct-or-union-specifier (C99) or class-specifier (C++)
3722 case tok::kw_class:
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003723 case tok::kw_struct:
Joao Matosdc86f942012-08-31 18:45:21 +00003724 case tok::kw___interface:
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003725 case tok::kw_union:
3726 // enum-specifier
3727 case tok::kw_enum:
Mike Stump11289f42009-09-09 15:08:12 +00003728
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003729 // type-qualifier
3730 case tok::kw_const:
3731 case tok::kw_volatile:
3732 case tok::kw_restrict:
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00003733
John McCallea0a39e2012-11-14 00:49:39 +00003734 // Debugger support.
3735 case tok::kw___unknown_anytype:
3736
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00003737 // typedef-name
Chris Lattnera8a3f732009-01-06 05:06:21 +00003738 case tok::annot_typename:
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003739 return true;
Mike Stump11289f42009-09-09 15:08:12 +00003740
Chris Lattner409bf7d2008-10-20 00:25:30 +00003741 // GNU ObjC bizarre protocol extension: <proto1,proto2> with implicit 'id'.
3742 case tok::less:
David Blaikiebbafb8a2012-03-11 07:00:24 +00003743 return getLangOpts().ObjC1;
Mike Stump11289f42009-09-09 15:08:12 +00003744
Steve Naroff44ac7772008-12-25 14:16:32 +00003745 case tok::kw___cdecl:
3746 case tok::kw___stdcall:
3747 case tok::kw___fastcall:
Douglas Gregora941dca2010-05-18 16:57:00 +00003748 case tok::kw___thiscall:
Eli Friedman53339e02009-06-08 23:27:34 +00003749 case tok::kw___w64:
3750 case tok::kw___ptr64:
Francois Pichetf2fb4112011-08-25 00:36:46 +00003751 case tok::kw___ptr32:
Dawn Perchik335e16b2010-09-03 01:29:35 +00003752 case tok::kw___pascal:
Francois Pichet17ed0202011-08-18 09:59:55 +00003753 case tok::kw___unaligned:
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00003754
3755 case tok::kw___private:
3756 case tok::kw___local:
3757 case tok::kw___global:
3758 case tok::kw___constant:
3759 case tok::kw___read_only:
3760 case tok::kw___read_write:
3761 case tok::kw___write_only:
3762
Eli Friedman53339e02009-06-08 23:27:34 +00003763 return true;
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00003764
3765 case tok::kw_private:
David Blaikiebbafb8a2012-03-11 07:00:24 +00003766 return getLangOpts().OpenCL;
Eli Friedman0dfb8892011-10-06 23:00:33 +00003767
Benjamin Kramere56f3932011-12-23 17:00:35 +00003768 // C11 _Atomic()
Eli Friedman0dfb8892011-10-06 23:00:33 +00003769 case tok::kw__Atomic:
3770 return true;
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003771 }
3772}
3773
Chris Lattneracd58a32006-08-06 17:24:14 +00003774/// isDeclarationSpecifier() - Return true if the current token is part of a
3775/// declaration specifier.
Douglas Gregorabf4a3e2010-09-16 01:51:54 +00003776///
3777/// \param DisambiguatingWithExpression True to indicate that the purpose of
3778/// this check is to disambiguate between an expression and a declaration.
3779bool Parser::isDeclarationSpecifier(bool DisambiguatingWithExpression) {
Chris Lattneracd58a32006-08-06 17:24:14 +00003780 switch (Tok.getKind()) {
3781 default: return false;
Mike Stump11289f42009-09-09 15:08:12 +00003782
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00003783 case tok::kw_private:
David Blaikiebbafb8a2012-03-11 07:00:24 +00003784 return getLangOpts().OpenCL;
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00003785
Chris Lattner020bab92009-01-04 23:41:41 +00003786 case tok::identifier: // foo::bar
Steve Naroff9527bbf2009-03-09 21:12:44 +00003787 // Unfortunate hack to support "Class.factoryMethod" notation.
David Blaikiebbafb8a2012-03-11 07:00:24 +00003788 if (getLangOpts().ObjC1 && NextToken().is(tok::period))
Steve Naroff9527bbf2009-03-09 21:12:44 +00003789 return false;
John Thompson22334602010-02-05 00:12:22 +00003790 if (TryAltiVecVectorToken())
3791 return true;
3792 // Fall through.
David Blaikie15a430a2011-12-04 05:04:18 +00003793 case tok::kw_decltype: // decltype(T())::type
Douglas Gregor333489b2009-03-27 23:10:48 +00003794 case tok::kw_typename: // typename T::type
Chris Lattner020bab92009-01-04 23:41:41 +00003795 // Annotate typenames and C++ scope specifiers. If we get one, just
3796 // recurse to handle whatever we get.
3797 if (TryAnnotateTypeOrScopeToken())
John McCall1f476a12010-02-26 08:45:28 +00003798 return true;
3799 if (Tok.is(tok::identifier))
3800 return false;
Chad Rosierc1183952012-06-26 22:30:43 +00003801
Douglas Gregorabf4a3e2010-09-16 01:51:54 +00003802 // If we're in Objective-C and we have an Objective-C class type followed
Chad Rosierc1183952012-06-26 22:30:43 +00003803 // by an identifier and then either ':' or ']', in a place where an
Douglas Gregorabf4a3e2010-09-16 01:51:54 +00003804 // expression is permitted, then this is probably a class message send
3805 // missing the initial '['. In this case, we won't consider this to be
3806 // the start of a declaration.
Chad Rosierc1183952012-06-26 22:30:43 +00003807 if (DisambiguatingWithExpression &&
Douglas Gregorabf4a3e2010-09-16 01:51:54 +00003808 isStartOfObjCClassMessageMissingOpenBracket())
3809 return false;
Chad Rosierc1183952012-06-26 22:30:43 +00003810
John McCall1f476a12010-02-26 08:45:28 +00003811 return isDeclarationSpecifier();
3812
Chris Lattner020bab92009-01-04 23:41:41 +00003813 case tok::coloncolon: // ::foo::bar
3814 if (NextToken().is(tok::kw_new) || // ::new
3815 NextToken().is(tok::kw_delete)) // ::delete
3816 return false;
Mike Stump11289f42009-09-09 15:08:12 +00003817
Chris Lattner020bab92009-01-04 23:41:41 +00003818 // Annotate typenames and C++ scope specifiers. If we get one, just
3819 // recurse to handle whatever we get.
3820 if (TryAnnotateTypeOrScopeToken())
John McCall1f476a12010-02-26 08:45:28 +00003821 return true;
3822 return isDeclarationSpecifier();
Mike Stump11289f42009-09-09 15:08:12 +00003823
Chris Lattneracd58a32006-08-06 17:24:14 +00003824 // storage-class-specifier
3825 case tok::kw_typedef:
3826 case tok::kw_extern:
Steve Naroff2050b0d2007-12-18 00:16:02 +00003827 case tok::kw___private_extern__:
Chris Lattneracd58a32006-08-06 17:24:14 +00003828 case tok::kw_static:
3829 case tok::kw_auto:
3830 case tok::kw_register:
3831 case tok::kw___thread:
Mike Stump11289f42009-09-09 15:08:12 +00003832
Douglas Gregor26701a42011-09-09 02:06:17 +00003833 // Modules
3834 case tok::kw___module_private__:
Chad Rosierc1183952012-06-26 22:30:43 +00003835
John McCallea0a39e2012-11-14 00:49:39 +00003836 // Debugger support
3837 case tok::kw___unknown_anytype:
3838
Chris Lattneracd58a32006-08-06 17:24:14 +00003839 // type-specifiers
3840 case tok::kw_short:
3841 case tok::kw_long:
Francois Pichet84133e42011-04-28 01:59:37 +00003842 case tok::kw___int64:
Richard Smithf016bbc2012-04-04 06:24:32 +00003843 case tok::kw___int128:
Chris Lattneracd58a32006-08-06 17:24:14 +00003844 case tok::kw_signed:
3845 case tok::kw_unsigned:
3846 case tok::kw__Complex:
3847 case tok::kw__Imaginary:
3848 case tok::kw_void:
3849 case tok::kw_char:
Argyrios Kyrtzidis40e9e482008-08-09 16:51:54 +00003850 case tok::kw_wchar_t:
Alisdair Mereditha9ad47d2009-07-14 06:30:34 +00003851 case tok::kw_char16_t:
3852 case tok::kw_char32_t:
3853
Chris Lattneracd58a32006-08-06 17:24:14 +00003854 case tok::kw_int:
Anton Korobeynikovf0c267e2011-10-14 23:23:15 +00003855 case tok::kw_half:
Chris Lattneracd58a32006-08-06 17:24:14 +00003856 case tok::kw_float:
3857 case tok::kw_double:
Chris Lattnerbb31a422007-11-15 05:25:19 +00003858 case tok::kw_bool:
Chris Lattneracd58a32006-08-06 17:24:14 +00003859 case tok::kw__Bool:
3860 case tok::kw__Decimal32:
3861 case tok::kw__Decimal64:
3862 case tok::kw__Decimal128:
John Thompson22334602010-02-05 00:12:22 +00003863 case tok::kw___vector:
Mike Stump11289f42009-09-09 15:08:12 +00003864
Guy Benyeid8a08ea2012-12-18 14:38:23 +00003865 // OpenCL specific types:
3866 case tok::kw_image1d_t:
3867 case tok::kw_image1d_array_t:
3868 case tok::kw_image1d_buffer_t:
3869 case tok::kw_image2d_t:
3870 case tok::kw_image2d_array_t:
3871 case tok::kw_image3d_t:
Guy Benyei1b4fb3e2013-01-20 12:31:11 +00003872 case tok::kw_event_t:
Guy Benyeid8a08ea2012-12-18 14:38:23 +00003873
Chris Lattner861a2262008-04-13 18:59:07 +00003874 // struct-or-union-specifier (C99) or class-specifier (C++)
3875 case tok::kw_class:
Chris Lattneracd58a32006-08-06 17:24:14 +00003876 case tok::kw_struct:
3877 case tok::kw_union:
Joao Matosdc86f942012-08-31 18:45:21 +00003878 case tok::kw___interface:
Chris Lattneracd58a32006-08-06 17:24:14 +00003879 // enum-specifier
3880 case tok::kw_enum:
Mike Stump11289f42009-09-09 15:08:12 +00003881
Chris Lattneracd58a32006-08-06 17:24:14 +00003882 // type-qualifier
3883 case tok::kw_const:
3884 case tok::kw_volatile:
3885 case tok::kw_restrict:
Steve Naroffad373bd2007-07-31 12:34:36 +00003886
Chris Lattneracd58a32006-08-06 17:24:14 +00003887 // function-specifier
3888 case tok::kw_inline:
Douglas Gregor61956c42008-10-31 09:07:45 +00003889 case tok::kw_virtual:
3890 case tok::kw_explicit:
Richard Smith0015f092013-01-17 22:16:11 +00003891 case tok::kw__Noreturn:
Chris Lattner7b20dc72007-08-09 16:40:21 +00003892
Richard Smith1dba27c2013-01-29 09:02:09 +00003893 // alignment-specifier
3894 case tok::kw__Alignas:
3895
Richard Smithd16fe122012-10-25 00:00:53 +00003896 // friend keyword.
3897 case tok::kw_friend:
3898
Peter Collingbourne3d9cbdc2011-04-15 00:35:57 +00003899 // static_assert-declaration
3900 case tok::kw__Static_assert:
3901
Chris Lattner599e47e2007-08-09 17:01:07 +00003902 // GNU typeof support.
3903 case tok::kw_typeof:
Mike Stump11289f42009-09-09 15:08:12 +00003904
Chris Lattner599e47e2007-08-09 17:01:07 +00003905 // GNU attributes.
Chris Lattner7b20dc72007-08-09 16:40:21 +00003906 case tok::kw___attribute:
Mike Stump11289f42009-09-09 15:08:12 +00003907
Richard Smithd16fe122012-10-25 00:00:53 +00003908 // C++11 decltype and constexpr.
David Blaikie15a430a2011-12-04 05:04:18 +00003909 case tok::annot_decltype:
Richard Smithd16fe122012-10-25 00:00:53 +00003910 case tok::kw_constexpr:
Francois Pichete878cb62011-06-19 08:02:06 +00003911
Benjamin Kramere56f3932011-12-23 17:00:35 +00003912 // C11 _Atomic()
Eli Friedman0dfb8892011-10-06 23:00:33 +00003913 case tok::kw__Atomic:
3914 return true;
3915
Chris Lattner8b2ec162008-07-26 03:38:44 +00003916 // GNU ObjC bizarre protocol extension: <proto1,proto2> with implicit 'id'.
3917 case tok::less:
David Blaikiebbafb8a2012-03-11 07:00:24 +00003918 return getLangOpts().ObjC1;
Mike Stump11289f42009-09-09 15:08:12 +00003919
Douglas Gregor19b7acf2011-04-27 05:41:15 +00003920 // typedef-name
3921 case tok::annot_typename:
3922 return !DisambiguatingWithExpression ||
3923 !isStartOfObjCClassMessageMissingOpenBracket();
Chad Rosierc1183952012-06-26 22:30:43 +00003924
Steve Narofff192fab2009-01-06 19:34:12 +00003925 case tok::kw___declspec:
Steve Naroff44ac7772008-12-25 14:16:32 +00003926 case tok::kw___cdecl:
3927 case tok::kw___stdcall:
3928 case tok::kw___fastcall:
Douglas Gregora941dca2010-05-18 16:57:00 +00003929 case tok::kw___thiscall:
Eli Friedman53339e02009-06-08 23:27:34 +00003930 case tok::kw___w64:
3931 case tok::kw___ptr64:
Francois Pichetf2fb4112011-08-25 00:36:46 +00003932 case tok::kw___ptr32:
Eli Friedman53339e02009-06-08 23:27:34 +00003933 case tok::kw___forceinline:
Dawn Perchik335e16b2010-09-03 01:29:35 +00003934 case tok::kw___pascal:
Francois Pichet17ed0202011-08-18 09:59:55 +00003935 case tok::kw___unaligned:
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00003936
3937 case tok::kw___private:
3938 case tok::kw___local:
3939 case tok::kw___global:
3940 case tok::kw___constant:
3941 case tok::kw___read_only:
3942 case tok::kw___read_write:
3943 case tok::kw___write_only:
3944
Eli Friedman53339e02009-06-08 23:27:34 +00003945 return true;
Chris Lattneracd58a32006-08-06 17:24:14 +00003946 }
3947}
3948
Douglas Gregor9de54ea2010-01-13 17:31:36 +00003949bool Parser::isConstructorDeclarator() {
3950 TentativeParsingAction TPA(*this);
3951
3952 // Parse the C++ scope specifier.
3953 CXXScopeSpec SS;
Chad Rosierc1183952012-06-26 22:30:43 +00003954 if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(),
Douglas Gregordf593fb2011-11-07 17:33:42 +00003955 /*EnteringContext=*/true)) {
John McCall1f476a12010-02-26 08:45:28 +00003956 TPA.Revert();
3957 return false;
3958 }
Douglas Gregor9de54ea2010-01-13 17:31:36 +00003959
3960 // Parse the constructor name.
3961 if (Tok.is(tok::identifier) || Tok.is(tok::annot_template_id)) {
3962 // We already know that we have a constructor name; just consume
3963 // the token.
3964 ConsumeToken();
3965 } else {
3966 TPA.Revert();
3967 return false;
3968 }
3969
Richard Smith43f340f2012-03-27 23:05:05 +00003970 // Current class name must be followed by a left parenthesis.
Douglas Gregor9de54ea2010-01-13 17:31:36 +00003971 if (Tok.isNot(tok::l_paren)) {
3972 TPA.Revert();
3973 return false;
3974 }
3975 ConsumeParen();
3976
Richard Smith43f340f2012-03-27 23:05:05 +00003977 // A right parenthesis, or ellipsis followed by a right parenthesis signals
3978 // that we have a constructor.
3979 if (Tok.is(tok::r_paren) ||
3980 (Tok.is(tok::ellipsis) && NextToken().is(tok::r_paren))) {
Douglas Gregor9de54ea2010-01-13 17:31:36 +00003981 TPA.Revert();
3982 return true;
3983 }
3984
3985 // If we need to, enter the specified scope.
3986 DeclaratorScopeObj DeclScopeObj(*this, SS);
Douglas Gregor0be31a22010-07-02 17:43:08 +00003987 if (SS.isSet() && Actions.ShouldEnterDeclaratorScope(getCurScope(), SS))
Douglas Gregor9de54ea2010-01-13 17:31:36 +00003988 DeclScopeObj.EnterDeclaratorScope();
3989
Francois Pichet79f3a872011-01-31 04:54:32 +00003990 // Optionally skip Microsoft attributes.
John McCall084e83d2011-03-24 11:26:52 +00003991 ParsedAttributes Attrs(AttrFactory);
Francois Pichet79f3a872011-01-31 04:54:32 +00003992 MaybeParseMicrosoftAttributes(Attrs);
3993
Douglas Gregor9de54ea2010-01-13 17:31:36 +00003994 // Check whether the next token(s) are part of a declaration
3995 // specifier, in which case we have the start of a parameter and,
3996 // therefore, we know that this is a constructor.
Richard Smithefd009d2012-03-27 00:56:56 +00003997 bool IsConstructor = false;
3998 if (isDeclarationSpecifier())
3999 IsConstructor = true;
4000 else if (Tok.is(tok::identifier) ||
4001 (Tok.is(tok::annot_cxxscope) && NextToken().is(tok::identifier))) {
4002 // We've seen "C ( X" or "C ( X::Y", but "X" / "X::Y" is not a type.
4003 // This might be a parenthesized member name, but is more likely to
4004 // be a constructor declaration with an invalid argument type. Keep
4005 // looking.
4006 if (Tok.is(tok::annot_cxxscope))
4007 ConsumeToken();
4008 ConsumeToken();
4009
4010 // If this is not a constructor, we must be parsing a declarator,
Richard Smith1453e312012-03-27 01:42:32 +00004011 // which must have one of the following syntactic forms (see the
4012 // grammar extract at the start of ParseDirectDeclarator):
Richard Smithefd009d2012-03-27 00:56:56 +00004013 switch (Tok.getKind()) {
4014 case tok::l_paren:
4015 // C(X ( int));
4016 case tok::l_square:
4017 // C(X [ 5]);
4018 // C(X [ [attribute]]);
4019 case tok::coloncolon:
4020 // C(X :: Y);
4021 // C(X :: *p);
4022 case tok::r_paren:
4023 // C(X )
4024 // Assume this isn't a constructor, rather than assuming it's a
4025 // constructor with an unnamed parameter of an ill-formed type.
4026 break;
4027
4028 default:
4029 IsConstructor = true;
4030 break;
4031 }
4032 }
4033
Douglas Gregor9de54ea2010-01-13 17:31:36 +00004034 TPA.Revert();
4035 return IsConstructor;
4036}
Chris Lattnerb9093cd2006-08-04 04:39:53 +00004037
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004038/// ParseTypeQualifierListOpt
Dawn Perchik335e16b2010-09-03 01:29:35 +00004039/// type-qualifier-list: [C99 6.7.5]
4040/// type-qualifier
Chad Rosierc1183952012-06-26 22:30:43 +00004041/// [vendor] attributes
Dawn Perchik335e16b2010-09-03 01:29:35 +00004042/// [ only if VendorAttributesAllowed=true ]
4043/// type-qualifier-list type-qualifier
Chad Rosierc1183952012-06-26 22:30:43 +00004044/// [vendor] type-qualifier-list attributes
Dawn Perchik335e16b2010-09-03 01:29:35 +00004045/// [ only if VendorAttributesAllowed=true ]
4046/// [C++0x] attribute-specifier[opt] is allowed before cv-qualifier-seq
Richard Smith89645bc2013-01-02 12:01:23 +00004047/// [ only if CXX11AttributesAllowed=true ]
Dawn Perchik335e16b2010-09-03 01:29:35 +00004048/// Note: vendor can be GNU, MS, etc.
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004049///
Dawn Perchik335e16b2010-09-03 01:29:35 +00004050void Parser::ParseTypeQualifierListOpt(DeclSpec &DS,
4051 bool VendorAttributesAllowed,
Richard Smith3dff2512012-04-10 03:25:07 +00004052 bool CXX11AttributesAllowed) {
Richard Smith2bf7fdb2013-01-02 11:42:31 +00004053 if (getLangOpts().CPlusPlus11 && CXX11AttributesAllowed &&
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004054 isCXX11AttributeSpecifier()) {
John McCall084e83d2011-03-24 11:26:52 +00004055 ParsedAttributesWithRange attrs(AttrFactory);
Richard Smith3dff2512012-04-10 03:25:07 +00004056 ParseCXX11Attributes(attrs);
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004057 DS.takeAttributesFrom(attrs);
Alexis Hunt96d5c762009-11-21 08:43:09 +00004058 }
Abramo Bagnaraf2a79d92011-03-12 11:17:06 +00004059
4060 SourceLocation EndLoc;
4061
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004062 while (1) {
John McCall49bfce42009-08-03 20:12:06 +00004063 bool isInvalid = false;
Chris Lattnerd9c3c592006-08-05 06:26:47 +00004064 const char *PrevSpec = 0;
John McCall49bfce42009-08-03 20:12:06 +00004065 unsigned DiagID = 0;
Chris Lattner60809f52006-11-28 05:18:46 +00004066 SourceLocation Loc = Tok.getLocation();
Chris Lattnerd9c3c592006-08-05 06:26:47 +00004067
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004068 switch (Tok.getKind()) {
Douglas Gregor28c78432010-08-27 17:35:51 +00004069 case tok::code_completion:
4070 Actions.CodeCompleteTypeQualifiers(DS);
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +00004071 return cutOffParsing();
Chad Rosierc1183952012-06-26 22:30:43 +00004072
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004073 case tok::kw_const:
John McCall49bfce42009-08-03 20:12:06 +00004074 isInvalid = DS.SetTypeQual(DeclSpec::TQ_const , Loc, PrevSpec, DiagID,
Richard Smith87e79512012-10-17 23:31:46 +00004075 getLangOpts());
Chris Lattnerd9c3c592006-08-05 06:26:47 +00004076 break;
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004077 case tok::kw_volatile:
John McCall49bfce42009-08-03 20:12:06 +00004078 isInvalid = DS.SetTypeQual(DeclSpec::TQ_volatile, Loc, PrevSpec, DiagID,
Richard Smith87e79512012-10-17 23:31:46 +00004079 getLangOpts());
Chris Lattnerd9c3c592006-08-05 06:26:47 +00004080 break;
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004081 case tok::kw_restrict:
John McCall49bfce42009-08-03 20:12:06 +00004082 isInvalid = DS.SetTypeQual(DeclSpec::TQ_restrict, Loc, PrevSpec, DiagID,
Richard Smith87e79512012-10-17 23:31:46 +00004083 getLangOpts());
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004084 break;
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00004085
4086 // OpenCL qualifiers:
Chad Rosierc1183952012-06-26 22:30:43 +00004087 case tok::kw_private:
David Blaikiebbafb8a2012-03-11 07:00:24 +00004088 if (!getLangOpts().OpenCL)
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00004089 goto DoneWithTypeQuals;
4090 case tok::kw___private:
4091 case tok::kw___global:
4092 case tok::kw___local:
4093 case tok::kw___constant:
4094 case tok::kw___read_only:
4095 case tok::kw___write_only:
4096 case tok::kw___read_write:
4097 ParseOpenCLQualifiers(DS);
4098 break;
4099
Eli Friedman53339e02009-06-08 23:27:34 +00004100 case tok::kw___w64:
Steve Narofff9c29d42008-12-25 14:41:26 +00004101 case tok::kw___ptr64:
Francois Pichetf2fb4112011-08-25 00:36:46 +00004102 case tok::kw___ptr32:
Steve Naroff44ac7772008-12-25 14:16:32 +00004103 case tok::kw___cdecl:
4104 case tok::kw___stdcall:
4105 case tok::kw___fastcall:
Douglas Gregora941dca2010-05-18 16:57:00 +00004106 case tok::kw___thiscall:
Francois Pichet17ed0202011-08-18 09:59:55 +00004107 case tok::kw___unaligned:
Dawn Perchik335e16b2010-09-03 01:29:35 +00004108 if (VendorAttributesAllowed) {
John McCall53fa7142010-12-24 02:08:15 +00004109 ParseMicrosoftTypeAttributes(DS.getAttributes());
Eli Friedman53339e02009-06-08 23:27:34 +00004110 continue;
4111 }
4112 goto DoneWithTypeQuals;
Dawn Perchik335e16b2010-09-03 01:29:35 +00004113 case tok::kw___pascal:
4114 if (VendorAttributesAllowed) {
John McCall53fa7142010-12-24 02:08:15 +00004115 ParseBorlandTypeAttributes(DS.getAttributes());
Dawn Perchik335e16b2010-09-03 01:29:35 +00004116 continue;
4117 }
4118 goto DoneWithTypeQuals;
Chris Lattnere37e2332006-08-15 04:50:22 +00004119 case tok::kw___attribute:
Dawn Perchik335e16b2010-09-03 01:29:35 +00004120 if (VendorAttributesAllowed) {
John McCall53fa7142010-12-24 02:08:15 +00004121 ParseGNUAttributes(DS.getAttributes());
Chris Lattnercf0bab22008-12-18 07:02:59 +00004122 continue; // do *not* consume the next token!
4123 }
4124 // otherwise, FALL THROUGH!
4125 default:
Steve Naroff44ac7772008-12-25 14:16:32 +00004126 DoneWithTypeQuals:
Chris Lattnercf0bab22008-12-18 07:02:59 +00004127 // If this is not a type-qualifier token, we're done reading type
4128 // qualifiers. First verify that DeclSpec's are consistent.
Douglas Gregore3e01a22009-04-01 22:41:11 +00004129 DS.Finish(Diags, PP);
Abramo Bagnaraf2a79d92011-03-12 11:17:06 +00004130 if (EndLoc.isValid())
4131 DS.SetRangeEnd(EndLoc);
Chris Lattnercf0bab22008-12-18 07:02:59 +00004132 return;
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004133 }
Chris Lattnerb6ec4e72008-12-18 06:50:14 +00004134
Chris Lattnerd9c3c592006-08-05 06:26:47 +00004135 // If the specifier combination wasn't legal, issue a diagnostic.
4136 if (isInvalid) {
4137 assert(PrevSpec && "Method did not return previous specifier!");
Chris Lattner6d29c102008-11-18 07:48:38 +00004138 Diag(Tok, DiagID) << PrevSpec;
Chris Lattnerd9c3c592006-08-05 06:26:47 +00004139 }
Abramo Bagnaraf2a79d92011-03-12 11:17:06 +00004140 EndLoc = ConsumeToken();
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004141 }
4142}
4143
Chris Lattnerd5d0a6c2006-08-07 00:58:14 +00004144
4145/// ParseDeclarator - Parse and verify a newly-initialized declarator.
4146///
4147void Parser::ParseDeclarator(Declarator &D) {
4148 /// This implements the 'declarator' production in the C grammar, then checks
4149 /// for well-formedness and issues diagnostics.
Sebastian Redlbd150f42008-11-21 19:14:01 +00004150 ParseDeclaratorInternal(D, &Parser::ParseDirectDeclarator);
Chris Lattnerd5d0a6c2006-08-07 00:58:14 +00004151}
4152
Richard Smith0efa75c2012-03-29 01:16:42 +00004153static bool isPtrOperatorToken(tok::TokenKind Kind, const LangOptions &Lang) {
4154 if (Kind == tok::star || Kind == tok::caret)
4155 return true;
4156
4157 // We parse rvalue refs in C++03, because otherwise the errors are scary.
4158 if (!Lang.CPlusPlus)
4159 return false;
4160
4161 return Kind == tok::amp || Kind == tok::ampamp;
4162}
4163
Sebastian Redlbd150f42008-11-21 19:14:01 +00004164/// ParseDeclaratorInternal - Parse a C or C++ declarator. The direct-declarator
4165/// is parsed by the function passed to it. Pass null, and the direct-declarator
4166/// isn't parsed at all, making this function effectively parse the C++
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004167/// ptr-operator production.
4168///
Richard Smith09f76ee2011-10-19 21:33:05 +00004169/// If the grammar of this construct is extended, matching changes must also be
Richard Smith1453e312012-03-27 01:42:32 +00004170/// made to TryParseDeclarator and MightBeDeclarator, and possibly to
4171/// isConstructorDeclarator.
Richard Smith09f76ee2011-10-19 21:33:05 +00004172///
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004173/// declarator: [C99 6.7.5] [C++ 8p4, dcl.decl]
4174/// [C] pointer[opt] direct-declarator
4175/// [C++] direct-declarator
4176/// [C++] ptr-operator declarator
Chris Lattner6c7416c2006-08-07 00:19:33 +00004177///
4178/// pointer: [C99 6.7.5]
4179/// '*' type-qualifier-list[opt]
4180/// '*' type-qualifier-list[opt] pointer
4181///
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004182/// ptr-operator:
4183/// '*' cv-qualifier-seq[opt]
4184/// '&'
Sebastian Redled0f3b02009-03-15 22:02:01 +00004185/// [C++0x] '&&'
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004186/// [GNU] '&' restrict[opt] attributes[opt]
Sebastian Redled0f3b02009-03-15 22:02:01 +00004187/// [GNU?] '&&' restrict[opt] attributes[opt]
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004188/// '::'[opt] nested-name-specifier '*' cv-qualifier-seq[opt]
Sebastian Redlbd150f42008-11-21 19:14:01 +00004189void Parser::ParseDeclaratorInternal(Declarator &D,
4190 DirectDeclParseFunction DirectDeclParser) {
Douglas Gregor66a985d2009-08-26 14:27:30 +00004191 if (Diags.hasAllExtensionsSilenced())
4192 D.setExtension();
Chad Rosierc1183952012-06-26 22:30:43 +00004193
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004194 // C++ member pointers start with a '::' or a nested-name.
4195 // Member pointers get special handling, since there's no place for the
4196 // scope spec in the generic path below.
David Blaikiebbafb8a2012-03-11 07:00:24 +00004197 if (getLangOpts().CPlusPlus &&
Chris Lattner803802d2009-03-24 17:04:48 +00004198 (Tok.is(tok::coloncolon) || Tok.is(tok::identifier) ||
4199 Tok.is(tok::annot_cxxscope))) {
Douglas Gregordf593fb2011-11-07 17:33:42 +00004200 bool EnteringContext = D.getContext() == Declarator::FileContext ||
4201 D.getContext() == Declarator::MemberContext;
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004202 CXXScopeSpec SS;
Douglas Gregordf593fb2011-11-07 17:33:42 +00004203 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), EnteringContext);
John McCall1f476a12010-02-26 08:45:28 +00004204
Jeffrey Yasskin4e150f82010-04-07 23:29:58 +00004205 if (SS.isNotEmpty()) {
Mike Stump11289f42009-09-09 15:08:12 +00004206 if (Tok.isNot(tok::star)) {
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004207 // The scope spec really belongs to the direct-declarator.
Richard Smith5f044ad2013-01-08 22:43:49 +00004208 if (D.mayHaveIdentifier())
4209 D.getCXXScopeSpec() = SS;
4210 else
4211 AnnotateScopeToken(SS, true);
4212
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004213 if (DirectDeclParser)
4214 (this->*DirectDeclParser)(D);
4215 return;
4216 }
4217
4218 SourceLocation Loc = ConsumeToken();
Sebastian Redlf6591ca2009-02-09 18:23:29 +00004219 D.SetRangeEnd(Loc);
John McCall084e83d2011-03-24 11:26:52 +00004220 DeclSpec DS(AttrFactory);
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004221 ParseTypeQualifierListOpt(DS);
Sebastian Redlf6591ca2009-02-09 18:23:29 +00004222 D.ExtendWithDeclSpec(DS);
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004223
4224 // Recurse to parse whatever is left.
4225 ParseDeclaratorInternal(D, DirectDeclParser);
4226
4227 // Sema will have to catch (syntactically invalid) pointers into global
4228 // scope. It has to catch pointers into namespace scope anyway.
4229 D.AddTypeInfo(DeclaratorChunk::getMemberPointer(SS,DS.getTypeQualifiers(),
John McCall084e83d2011-03-24 11:26:52 +00004230 Loc),
4231 DS.getAttributes(),
Sebastian Redlf6591ca2009-02-09 18:23:29 +00004232 /* Don't replace range end. */SourceLocation());
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004233 return;
4234 }
4235 }
4236
4237 tok::TokenKind Kind = Tok.getKind();
Steve Naroffec33ed92008-08-27 16:04:49 +00004238 // Not a pointer, C++ reference, or block.
Richard Smith0efa75c2012-03-29 01:16:42 +00004239 if (!isPtrOperatorToken(Kind, getLangOpts())) {
Sebastian Redlbd150f42008-11-21 19:14:01 +00004240 if (DirectDeclParser)
4241 (this->*DirectDeclParser)(D);
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004242 return;
4243 }
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004244
Sebastian Redled0f3b02009-03-15 22:02:01 +00004245 // Otherwise, '*' -> pointer, '^' -> block, '&' -> lvalue reference,
4246 // '&&' -> rvalue reference
Sebastian Redl3b27be62009-03-23 00:00:23 +00004247 SourceLocation Loc = ConsumeToken(); // Eat the *, ^, & or &&.
Sebastian Redlf6591ca2009-02-09 18:23:29 +00004248 D.SetRangeEnd(Loc);
Bill Wendling3708c182007-05-27 10:15:43 +00004249
Chris Lattner9eac9312009-03-27 04:18:06 +00004250 if (Kind == tok::star || Kind == tok::caret) {
Chris Lattner788404f2008-02-21 01:32:26 +00004251 // Is a pointer.
John McCall084e83d2011-03-24 11:26:52 +00004252 DeclSpec DS(AttrFactory);
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004253
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004254 // FIXME: GNU attributes are not allowed here in a new-type-id.
Bill Wendling3708c182007-05-27 10:15:43 +00004255 ParseTypeQualifierListOpt(DS);
Sebastian Redlf6591ca2009-02-09 18:23:29 +00004256 D.ExtendWithDeclSpec(DS);
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004257
Bill Wendling3708c182007-05-27 10:15:43 +00004258 // Recursively parse the declarator.
Sebastian Redlbd150f42008-11-21 19:14:01 +00004259 ParseDeclaratorInternal(D, DirectDeclParser);
Steve Naroffec33ed92008-08-27 16:04:49 +00004260 if (Kind == tok::star)
4261 // Remember that we parsed a pointer type, and remember the type-quals.
4262 D.AddTypeInfo(DeclaratorChunk::getPointer(DS.getTypeQualifiers(), Loc,
Chandler Carruthe71b378d2011-02-23 18:51:59 +00004263 DS.getConstSpecLoc(),
4264 DS.getVolatileSpecLoc(),
John McCall084e83d2011-03-24 11:26:52 +00004265 DS.getRestrictSpecLoc()),
4266 DS.getAttributes(),
Sebastian Redlf6591ca2009-02-09 18:23:29 +00004267 SourceLocation());
Steve Naroffec33ed92008-08-27 16:04:49 +00004268 else
4269 // Remember that we parsed a Block type, and remember the type-quals.
Mike Stump11289f42009-09-09 15:08:12 +00004270 D.AddTypeInfo(DeclaratorChunk::getBlockPointer(DS.getTypeQualifiers(),
John McCall084e83d2011-03-24 11:26:52 +00004271 Loc),
4272 DS.getAttributes(),
Sebastian Redlf6591ca2009-02-09 18:23:29 +00004273 SourceLocation());
Bill Wendling3708c182007-05-27 10:15:43 +00004274 } else {
4275 // Is a reference
John McCall084e83d2011-03-24 11:26:52 +00004276 DeclSpec DS(AttrFactory);
Bill Wendling93efb222007-06-02 23:28:54 +00004277
Sebastian Redl3b27be62009-03-23 00:00:23 +00004278 // Complain about rvalue references in C++03, but then go on and build
4279 // the declarator.
Richard Smith5d164bc2011-10-15 05:09:34 +00004280 if (Kind == tok::ampamp)
Richard Smith2bf7fdb2013-01-02 11:42:31 +00004281 Diag(Loc, getLangOpts().CPlusPlus11 ?
Richard Smith5d164bc2011-10-15 05:09:34 +00004282 diag::warn_cxx98_compat_rvalue_reference :
4283 diag::ext_rvalue_reference);
Sebastian Redl3b27be62009-03-23 00:00:23 +00004284
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004285 // GNU-style and C++11 attributes are allowed here, as is restrict.
4286 ParseTypeQualifierListOpt(DS);
4287 D.ExtendWithDeclSpec(DS);
4288
Bill Wendling93efb222007-06-02 23:28:54 +00004289 // C++ 8.3.2p1: cv-qualified references are ill-formed except when the
4290 // cv-qualifiers are introduced through the use of a typedef or of a
4291 // template type argument, in which case the cv-qualifiers are ignored.
Bill Wendling93efb222007-06-02 23:28:54 +00004292 if (DS.getTypeQualifiers() != DeclSpec::TQ_unspecified) {
4293 if (DS.getTypeQualifiers() & DeclSpec::TQ_const)
4294 Diag(DS.getConstSpecLoc(),
Chris Lattner6d29c102008-11-18 07:48:38 +00004295 diag::err_invalid_reference_qualifier_application) << "const";
Bill Wendling93efb222007-06-02 23:28:54 +00004296 if (DS.getTypeQualifiers() & DeclSpec::TQ_volatile)
4297 Diag(DS.getVolatileSpecLoc(),
Chris Lattner6d29c102008-11-18 07:48:38 +00004298 diag::err_invalid_reference_qualifier_application) << "volatile";
Bill Wendling93efb222007-06-02 23:28:54 +00004299 }
Bill Wendling3708c182007-05-27 10:15:43 +00004300
4301 // Recursively parse the declarator.
Sebastian Redlbd150f42008-11-21 19:14:01 +00004302 ParseDeclaratorInternal(D, DirectDeclParser);
Bill Wendling3708c182007-05-27 10:15:43 +00004303
Douglas Gregor66583c52008-11-03 15:51:28 +00004304 if (D.getNumTypeObjects() > 0) {
4305 // C++ [dcl.ref]p4: There shall be no references to references.
4306 DeclaratorChunk& InnerChunk = D.getTypeObject(D.getNumTypeObjects() - 1);
4307 if (InnerChunk.Kind == DeclaratorChunk::Reference) {
Chris Lattnerebad6a22008-11-19 07:37:42 +00004308 if (const IdentifierInfo *II = D.getIdentifier())
4309 Diag(InnerChunk.Loc, diag::err_illegal_decl_reference_to_reference)
4310 << II;
4311 else
4312 Diag(InnerChunk.Loc, diag::err_illegal_decl_reference_to_reference)
4313 << "type name";
Douglas Gregor66583c52008-11-03 15:51:28 +00004314
Sebastian Redlbd150f42008-11-21 19:14:01 +00004315 // Once we've complained about the reference-to-reference, we
Douglas Gregor66583c52008-11-03 15:51:28 +00004316 // can go ahead and build the (technically ill-formed)
4317 // declarator: reference collapsing will take care of it.
4318 }
4319 }
4320
Bill Wendling3708c182007-05-27 10:15:43 +00004321 // Remember that we parsed a reference type. It doesn't have type-quals.
Chris Lattner788404f2008-02-21 01:32:26 +00004322 D.AddTypeInfo(DeclaratorChunk::getReference(DS.getTypeQualifiers(), Loc,
Sebastian Redled0f3b02009-03-15 22:02:01 +00004323 Kind == tok::amp),
John McCall084e83d2011-03-24 11:26:52 +00004324 DS.getAttributes(),
Sebastian Redlf6591ca2009-02-09 18:23:29 +00004325 SourceLocation());
Bill Wendling3708c182007-05-27 10:15:43 +00004326 }
Chris Lattner6c7416c2006-08-07 00:19:33 +00004327}
4328
Richard Smith0efa75c2012-03-29 01:16:42 +00004329static void diagnoseMisplacedEllipsis(Parser &P, Declarator &D,
4330 SourceLocation EllipsisLoc) {
4331 if (EllipsisLoc.isValid()) {
4332 FixItHint Insertion;
4333 if (!D.getEllipsisLoc().isValid()) {
4334 Insertion = FixItHint::CreateInsertion(D.getIdentifierLoc(), "...");
4335 D.setEllipsisLoc(EllipsisLoc);
4336 }
4337 P.Diag(EllipsisLoc, diag::err_misplaced_ellipsis_in_declaration)
4338 << FixItHint::CreateRemoval(EllipsisLoc) << Insertion << !D.hasName();
4339 }
4340}
4341
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004342/// ParseDirectDeclarator
4343/// direct-declarator: [C99 6.7.5]
Douglas Gregor831c93f2008-11-05 20:51:48 +00004344/// [C99] identifier
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004345/// '(' declarator ')'
4346/// [GNU] '(' attributes declarator ')'
Chris Lattnere8074e62006-08-06 18:30:15 +00004347/// [C90] direct-declarator '[' constant-expression[opt] ']'
4348/// [C99] direct-declarator '[' type-qual-list[opt] assignment-expr[opt] ']'
4349/// [C99] direct-declarator '[' 'static' type-qual-list[opt] assign-expr ']'
4350/// [C99] direct-declarator '[' type-qual-list 'static' assignment-expr ']'
4351/// [C99] direct-declarator '[' type-qual-list[opt] '*' ']'
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004352/// [C++11] direct-declarator '[' constant-expression[opt] ']'
4353/// attribute-specifier-seq[opt]
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004354/// direct-declarator '(' parameter-type-list ')'
4355/// direct-declarator '(' identifier-list[opt] ')'
4356/// [GNU] direct-declarator '(' parameter-forward-declarations
4357/// parameter-type-list[opt] ')'
Argyrios Kyrtzidis22c40fa2008-10-24 21:46:40 +00004358/// [C++] direct-declarator '(' parameter-declaration-clause ')'
4359/// cv-qualifier-seq[opt] exception-specification[opt]
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004360/// [C++11] direct-declarator '(' parameter-declaration-clause ')'
4361/// attribute-specifier-seq[opt] cv-qualifier-seq[opt]
4362/// ref-qualifier[opt] exception-specification[opt]
Douglas Gregor61956c42008-10-31 09:07:45 +00004363/// [C++] declarator-id
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004364/// [C++11] declarator-id attribute-specifier-seq[opt]
Douglas Gregor831c93f2008-11-05 20:51:48 +00004365///
4366/// declarator-id: [C++ 8]
Douglas Gregor27b4c162010-12-23 22:44:42 +00004367/// '...'[opt] id-expression
Douglas Gregor831c93f2008-11-05 20:51:48 +00004368/// '::'[opt] nested-name-specifier[opt] type-name
4369///
4370/// id-expression: [C++ 5.1]
4371/// unqualified-id
Douglas Gregord90fd522009-09-25 21:45:23 +00004372/// qualified-id
Douglas Gregor831c93f2008-11-05 20:51:48 +00004373///
4374/// unqualified-id: [C++ 5.1]
Mike Stump11289f42009-09-09 15:08:12 +00004375/// identifier
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00004376/// operator-function-id
Douglas Gregord90fd522009-09-25 21:45:23 +00004377/// conversion-function-id
Mike Stump11289f42009-09-09 15:08:12 +00004378/// '~' class-name
Douglas Gregor7f741122009-02-25 19:37:18 +00004379/// template-id
Argyrios Kyrtzidise4426352008-11-07 22:02:30 +00004380///
Richard Smith1453e312012-03-27 01:42:32 +00004381/// Note, any additional constructs added here may need corresponding changes
4382/// in isConstructorDeclarator.
Chris Lattneracd58a32006-08-06 17:24:14 +00004383void Parser::ParseDirectDeclarator(Declarator &D) {
Argyrios Kyrtzidis9323b042008-11-26 22:40:03 +00004384 DeclaratorScopeObj DeclScopeObj(*this, D.getCXXScopeSpec());
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00004385
David Blaikiebbafb8a2012-03-11 07:00:24 +00004386 if (getLangOpts().CPlusPlus && D.mayHaveIdentifier()) {
Douglas Gregor7861a802009-11-03 01:35:08 +00004387 // ParseDeclaratorInternal might already have parsed the scope.
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00004388 if (D.getCXXScopeSpec().isEmpty()) {
Douglas Gregordf593fb2011-11-07 17:33:42 +00004389 bool EnteringContext = D.getContext() == Declarator::FileContext ||
4390 D.getContext() == Declarator::MemberContext;
Chad Rosierc1183952012-06-26 22:30:43 +00004391 ParseOptionalCXXScopeSpecifier(D.getCXXScopeSpec(), ParsedType(),
Douglas Gregordf593fb2011-11-07 17:33:42 +00004392 EnteringContext);
John McCall1f476a12010-02-26 08:45:28 +00004393 }
4394
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00004395 if (D.getCXXScopeSpec().isValid()) {
Douglas Gregor0be31a22010-07-02 17:43:08 +00004396 if (Actions.ShouldEnterDeclaratorScope(getCurScope(), D.getCXXScopeSpec()))
John McCall2b058ef2009-12-11 20:04:54 +00004397 // Change the declaration context for name lookup, until this function
4398 // is exited (and the declarator has been parsed).
4399 DeclScopeObj.EnterDeclaratorScope();
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00004400 }
4401
Douglas Gregor27b4c162010-12-23 22:44:42 +00004402 // C++0x [dcl.fct]p14:
4403 // There is a syntactic ambiguity when an ellipsis occurs at the end
Chad Rosierc1183952012-06-26 22:30:43 +00004404 // of a parameter-declaration-clause without a preceding comma. In
4405 // this case, the ellipsis is parsed as part of the
4406 // abstract-declarator if the type of the parameter names a template
Douglas Gregor27b4c162010-12-23 22:44:42 +00004407 // parameter pack that has not been expanded; otherwise, it is parsed
4408 // as part of the parameter-declaration-clause.
Richard Smith0efa75c2012-03-29 01:16:42 +00004409 if (Tok.is(tok::ellipsis) && D.getCXXScopeSpec().isEmpty() &&
Douglas Gregor27b4c162010-12-23 22:44:42 +00004410 !((D.getContext() == Declarator::PrototypeContext ||
4411 D.getContext() == Declarator::BlockLiteralContext) &&
Douglas Gregor27b4c162010-12-23 22:44:42 +00004412 NextToken().is(tok::r_paren) &&
Richard Smith0efa75c2012-03-29 01:16:42 +00004413 !Actions.containsUnexpandedParameterPacks(D))) {
4414 SourceLocation EllipsisLoc = ConsumeToken();
4415 if (isPtrOperatorToken(Tok.getKind(), getLangOpts())) {
4416 // The ellipsis was put in the wrong place. Recover, and explain to
4417 // the user what they should have done.
4418 ParseDeclarator(D);
4419 diagnoseMisplacedEllipsis(*this, D, EllipsisLoc);
4420 return;
4421 } else
4422 D.setEllipsisLoc(EllipsisLoc);
4423
4424 // The ellipsis can't be followed by a parenthesized declarator. We
4425 // check for that in ParseParenDeclarator, after we have disambiguated
4426 // the l_paren token.
4427 }
4428
Douglas Gregor7861a802009-11-03 01:35:08 +00004429 if (Tok.is(tok::identifier) || Tok.is(tok::kw_operator) ||
4430 Tok.is(tok::annot_template_id) || Tok.is(tok::tilde)) {
4431 // We found something that indicates the start of an unqualified-id.
4432 // Parse that unqualified-id.
John McCall84821e72010-04-13 06:39:49 +00004433 bool AllowConstructorName;
4434 if (D.getDeclSpec().hasTypeSpecifier())
4435 AllowConstructorName = false;
4436 else if (D.getCXXScopeSpec().isSet())
4437 AllowConstructorName =
4438 (D.getContext() == Declarator::FileContext ||
4439 (D.getContext() == Declarator::MemberContext &&
4440 D.getDeclSpec().isFriendSpecified()));
4441 else
4442 AllowConstructorName = (D.getContext() == Declarator::MemberContext);
4443
Abramo Bagnara7945c982012-01-27 09:46:47 +00004444 SourceLocation TemplateKWLoc;
Chad Rosierc1183952012-06-26 22:30:43 +00004445 if (ParseUnqualifiedId(D.getCXXScopeSpec(),
4446 /*EnteringContext=*/true,
4447 /*AllowDestructorName=*/true,
Douglas Gregor9de54ea2010-01-13 17:31:36 +00004448 AllowConstructorName,
John McCallba7bf592010-08-24 05:47:05 +00004449 ParsedType(),
Abramo Bagnara7945c982012-01-27 09:46:47 +00004450 TemplateKWLoc,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00004451 D.getName()) ||
4452 // Once we're past the identifier, if the scope was bad, mark the
4453 // whole declarator bad.
4454 D.getCXXScopeSpec().isInvalid()) {
Argyrios Kyrtzidis9323b042008-11-26 22:40:03 +00004455 D.SetIdentifier(0, Tok.getLocation());
4456 D.setInvalidType(true);
Douglas Gregor7861a802009-11-03 01:35:08 +00004457 } else {
4458 // Parsed the unqualified-id; update range information and move along.
4459 if (D.getSourceRange().getBegin().isInvalid())
4460 D.SetRangeBegin(D.getName().getSourceRange().getBegin());
4461 D.SetRangeEnd(D.getName().getSourceRange().getEnd());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004462 }
Douglas Gregor7861a802009-11-03 01:35:08 +00004463 goto PastIdentifier;
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00004464 }
Douglas Gregor7861a802009-11-03 01:35:08 +00004465 } else if (Tok.is(tok::identifier) && D.mayHaveIdentifier()) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00004466 assert(!getLangOpts().CPlusPlus &&
Argyrios Kyrtzidis9323b042008-11-26 22:40:03 +00004467 "There's a C++-specific check for tok::identifier above");
4468 assert(Tok.getIdentifierInfo() && "Not an identifier?");
4469 D.SetIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
4470 ConsumeToken();
Douglas Gregor7861a802009-11-03 01:35:08 +00004471 goto PastIdentifier;
4472 }
Richard Smith0efa75c2012-03-29 01:16:42 +00004473
Douglas Gregor7861a802009-11-03 01:35:08 +00004474 if (Tok.is(tok::l_paren)) {
Chris Lattneracd58a32006-08-06 17:24:14 +00004475 // direct-declarator: '(' declarator ')'
Chris Lattnere37e2332006-08-15 04:50:22 +00004476 // direct-declarator: '(' attributes declarator ')'
Chris Lattneracd58a32006-08-06 17:24:14 +00004477 // Example: 'char (*X)' or 'int (*XX)(void)'
4478 ParseParenDeclarator(D);
Douglas Gregor9de54ea2010-01-13 17:31:36 +00004479
4480 // If the declarator was parenthesized, we entered the declarator
4481 // scope when parsing the parenthesized declarator, then exited
4482 // the scope already. Re-enter the scope, if we need to.
4483 if (D.getCXXScopeSpec().isSet()) {
Fariborz Jahanian358acd52010-08-17 23:50:37 +00004484 // If there was an error parsing parenthesized declarator, declarator
Richard Smith0efa75c2012-03-29 01:16:42 +00004485 // scope may have been entered before. Don't do it again.
Fariborz Jahanian358acd52010-08-17 23:50:37 +00004486 if (!D.isInvalidType() &&
4487 Actions.ShouldEnterDeclaratorScope(getCurScope(), D.getCXXScopeSpec()))
Douglas Gregor9de54ea2010-01-13 17:31:36 +00004488 // Change the declaration context for name lookup, until this function
4489 // is exited (and the declarator has been parsed).
Fariborz Jahanian358acd52010-08-17 23:50:37 +00004490 DeclScopeObj.EnterDeclaratorScope();
Douglas Gregor9de54ea2010-01-13 17:31:36 +00004491 }
Argyrios Kyrtzidis9323b042008-11-26 22:40:03 +00004492 } else if (D.mayOmitIdentifier()) {
Chris Lattneracd58a32006-08-06 17:24:14 +00004493 // This could be something simple like "int" (in which case the declarator
4494 // portion is empty), if an abstract-declarator is allowed.
4495 D.SetIdentifier(0, Tok.getLocation());
4496 } else {
David Blaikie5d577a22012-06-29 22:03:56 +00004497 if (Tok.getKind() == tok::annot_pragma_parser_crash)
David Blaikie5bd4c2a2012-08-21 18:56:49 +00004498 LLVM_BUILTIN_TRAP;
Douglas Gregord9f92e22009-03-06 23:28:18 +00004499 if (D.getContext() == Declarator::MemberContext)
4500 Diag(Tok, diag::err_expected_member_name_or_semi)
4501 << D.getDeclSpec().getSourceRange();
Richard Trieu9c672672013-01-26 02:31:38 +00004502 else if (getLangOpts().CPlusPlus) {
4503 if (Tok.is(tok::period) || Tok.is(tok::arrow))
4504 Diag(Tok, diag::err_invalid_operator_on_type) << Tok.is(tok::arrow);
4505 else
4506 Diag(Tok, diag::err_expected_unqualified_id) << getLangOpts().CPlusPlus;
4507 } else
Chris Lattner6d29c102008-11-18 07:48:38 +00004508 Diag(Tok, diag::err_expected_ident_lparen);
Chris Lattnereec40f92006-08-06 21:55:29 +00004509 D.SetIdentifier(0, Tok.getLocation());
Chris Lattner8c5dd732008-11-11 06:13:16 +00004510 D.setInvalidType(true);
Chris Lattneracd58a32006-08-06 17:24:14 +00004511 }
Mike Stump11289f42009-09-09 15:08:12 +00004512
Argyrios Kyrtzidis9323b042008-11-26 22:40:03 +00004513 PastIdentifier:
Chris Lattneracd58a32006-08-06 17:24:14 +00004514 assert(D.isPastIdentifier() &&
4515 "Haven't past the location of the identifier yet?");
Mike Stump11289f42009-09-09 15:08:12 +00004516
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004517 // Don't parse attributes unless we have parsed an unparenthesized name.
4518 if (D.hasName() && !D.getNumTypeObjects())
Richard Smith89645bc2013-01-02 12:01:23 +00004519 MaybeParseCXX11Attributes(D);
Alexis Hunt96d5c762009-11-21 08:43:09 +00004520
Chris Lattneracd58a32006-08-06 17:24:14 +00004521 while (1) {
Chris Lattner76c72282007-10-09 17:33:22 +00004522 if (Tok.is(tok::l_paren)) {
David Blaikie15a430a2011-12-04 05:04:18 +00004523 // Enter function-declaration scope, limiting any declarators to the
4524 // function prototype scope, including parameter declarators.
4525 ParseScope PrototypeScope(this,
Richard Smithe233fbf2013-01-28 22:42:45 +00004526 Scope::FunctionPrototypeScope|Scope::DeclScope|
4527 (D.isFunctionDeclaratorAFunctionDeclaration()
4528 ? Scope::FunctionDeclarationScope : 0));
4529
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00004530 // The paren may be part of a C++ direct initializer, eg. "int x(1);".
4531 // In such a case, check if we actually have a function declarator; if it
4532 // is not, the declarator has been fully parsed.
Richard Smith943c4402012-07-30 21:30:52 +00004533 bool IsAmbiguous = false;
Richard Smith4f605af2012-08-18 00:55:03 +00004534 if (getLangOpts().CPlusPlus && D.mayBeFollowedByCXXDirectInit()) {
4535 // The name of the declarator, if any, is tentatively declared within
4536 // a possible direct initializer.
4537 TentativelyDeclaredIdentifiers.push_back(D.getIdentifier());
4538 bool IsFunctionDecl = isCXXFunctionDeclarator(&IsAmbiguous);
4539 TentativelyDeclaredIdentifiers.pop_back();
4540 if (!IsFunctionDecl)
4541 break;
4542 }
John McCall084e83d2011-03-24 11:26:52 +00004543 ParsedAttributes attrs(AttrFactory);
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00004544 BalancedDelimiterTracker T(*this, tok::l_paren);
4545 T.consumeOpen();
Richard Smith943c4402012-07-30 21:30:52 +00004546 ParseFunctionDeclarator(D, attrs, T, IsAmbiguous);
David Blaikie15a430a2011-12-04 05:04:18 +00004547 PrototypeScope.Exit();
Chris Lattner76c72282007-10-09 17:33:22 +00004548 } else if (Tok.is(tok::l_square)) {
Chris Lattnere8074e62006-08-06 18:30:15 +00004549 ParseBracketDeclarator(D);
Chris Lattneracd58a32006-08-06 17:24:14 +00004550 } else {
4551 break;
4552 }
4553 }
Chad Rosierc1183952012-06-26 22:30:43 +00004554}
Chris Lattneracd58a32006-08-06 17:24:14 +00004555
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004556/// ParseParenDeclarator - We parsed the declarator D up to a paren. This is
4557/// only called before the identifier, so these are most likely just grouping
Mike Stump11289f42009-09-09 15:08:12 +00004558/// parens for precedence. If we find that these are actually function
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004559/// parameter parens in an abstract-declarator, we call ParseFunctionDeclarator.
4560///
4561/// direct-declarator:
4562/// '(' declarator ')'
4563/// [GNU] '(' attributes declarator ')'
Chris Lattner8ff2c6c2008-10-20 02:05:46 +00004564/// direct-declarator '(' parameter-type-list ')'
4565/// direct-declarator '(' identifier-list[opt] ')'
4566/// [GNU] direct-declarator '(' parameter-forward-declarations
4567/// parameter-type-list[opt] ')'
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004568///
4569void Parser::ParseParenDeclarator(Declarator &D) {
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00004570 BalancedDelimiterTracker T(*this, tok::l_paren);
4571 T.consumeOpen();
4572
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004573 assert(!D.isPastIdentifier() && "Should be called before passing identifier");
Mike Stump11289f42009-09-09 15:08:12 +00004574
Chris Lattner8ff2c6c2008-10-20 02:05:46 +00004575 // Eat any attributes before we look at whether this is a grouping or function
4576 // declarator paren. If this is a grouping paren, the attribute applies to
4577 // the type being built up, for example:
4578 // int (__attribute__(()) *x)(long y)
4579 // If this ends up not being a grouping paren, the attribute applies to the
4580 // first argument, for example:
4581 // int (__attribute__(()) int x)
4582 // In either case, we need to eat any attributes to be able to determine what
4583 // sort of paren this is.
4584 //
John McCall084e83d2011-03-24 11:26:52 +00004585 ParsedAttributes attrs(AttrFactory);
Chris Lattner8ff2c6c2008-10-20 02:05:46 +00004586 bool RequiresArg = false;
4587 if (Tok.is(tok::kw___attribute)) {
John McCall53fa7142010-12-24 02:08:15 +00004588 ParseGNUAttributes(attrs);
Mike Stump11289f42009-09-09 15:08:12 +00004589
Chris Lattner8ff2c6c2008-10-20 02:05:46 +00004590 // We require that the argument list (if this is a non-grouping paren) be
4591 // present even if the attribute list was empty.
4592 RequiresArg = true;
4593 }
Chad Rosiereea9ca72012-12-21 21:22:20 +00004594
Steve Naroff44ac7772008-12-25 14:16:32 +00004595 // Eat any Microsoft extensions.
Chad Rosiereea9ca72012-12-21 21:22:20 +00004596 ParseMicrosoftTypeAttributes(attrs);
4597
Dawn Perchik335e16b2010-09-03 01:29:35 +00004598 // Eat any Borland extensions.
Ted Kremenek5eec2b02010-11-10 05:59:39 +00004599 if (Tok.is(tok::kw___pascal))
John McCall53fa7142010-12-24 02:08:15 +00004600 ParseBorlandTypeAttributes(attrs);
Mike Stump11289f42009-09-09 15:08:12 +00004601
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004602 // If we haven't past the identifier yet (or where the identifier would be
4603 // stored, if this is an abstract declarator), then this is probably just
4604 // grouping parens. However, if this could be an abstract-declarator, then
4605 // this could also be the start of function arguments (consider 'void()').
4606 bool isGrouping;
Mike Stump11289f42009-09-09 15:08:12 +00004607
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004608 if (!D.mayOmitIdentifier()) {
4609 // If this can't be an abstract-declarator, this *must* be a grouping
4610 // paren, because we haven't seen the identifier yet.
4611 isGrouping = true;
4612 } else if (Tok.is(tok::r_paren) || // 'int()' is a function.
Richard Smith43f340f2012-03-27 23:05:05 +00004613 (getLangOpts().CPlusPlus && Tok.is(tok::ellipsis) &&
4614 NextToken().is(tok::r_paren)) || // C++ int(...)
Richard Smith2620cd92012-04-11 04:01:28 +00004615 isDeclarationSpecifier() || // 'int(int)' is a function.
4616 isCXX11AttributeSpecifier()) { // 'int([[]]int)' is a function.
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004617 // This handles C99 6.7.5.3p11: in "typedef int X; void foo(X)", X is
4618 // considered to be a type, not a K&R identifier-list.
4619 isGrouping = false;
4620 } else {
4621 // Otherwise, this is a grouping paren, e.g. 'int (*X)' or 'int(X)'.
4622 isGrouping = true;
4623 }
Mike Stump11289f42009-09-09 15:08:12 +00004624
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004625 // If this is a grouping paren, handle:
4626 // direct-declarator: '(' declarator ')'
4627 // direct-declarator: '(' attributes declarator ')'
4628 if (isGrouping) {
Richard Smith0efa75c2012-03-29 01:16:42 +00004629 SourceLocation EllipsisLoc = D.getEllipsisLoc();
4630 D.setEllipsisLoc(SourceLocation());
4631
Argyrios Kyrtzidis8ae36842008-10-07 10:21:57 +00004632 bool hadGroupingParens = D.hasGroupingParens();
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00004633 D.setGroupingParens(true);
Sebastian Redlbd150f42008-11-21 19:14:01 +00004634 ParseDeclaratorInternal(D, &Parser::ParseDirectDeclarator);
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004635 // Match the ')'.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00004636 T.consumeClose();
Chad Rosierc1183952012-06-26 22:30:43 +00004637 D.AddTypeInfo(DeclaratorChunk::getParen(T.getOpenLocation(),
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00004638 T.getCloseLocation()),
4639 attrs, T.getCloseLocation());
Argyrios Kyrtzidis8ae36842008-10-07 10:21:57 +00004640
4641 D.setGroupingParens(hadGroupingParens);
Richard Smith0efa75c2012-03-29 01:16:42 +00004642
4643 // An ellipsis cannot be placed outside parentheses.
4644 if (EllipsisLoc.isValid())
4645 diagnoseMisplacedEllipsis(*this, D, EllipsisLoc);
4646
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004647 return;
4648 }
Mike Stump11289f42009-09-09 15:08:12 +00004649
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004650 // Okay, if this wasn't a grouping paren, it must be the start of a function
4651 // argument list. Recognize that this declarator will never have an
Chris Lattner8ff2c6c2008-10-20 02:05:46 +00004652 // identifier (and remember where it would have been), then call into
4653 // ParseFunctionDeclarator to handle of argument list.
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004654 D.SetIdentifier(0, Tok.getLocation());
4655
David Blaikie15a430a2011-12-04 05:04:18 +00004656 // Enter function-declaration scope, limiting any declarators to the
4657 // function prototype scope, including parameter declarators.
4658 ParseScope PrototypeScope(this,
Richard Smithe233fbf2013-01-28 22:42:45 +00004659 Scope::FunctionPrototypeScope | Scope::DeclScope |
4660 (D.isFunctionDeclaratorAFunctionDeclaration()
4661 ? Scope::FunctionDeclarationScope : 0));
Richard Smith943c4402012-07-30 21:30:52 +00004662 ParseFunctionDeclarator(D, attrs, T, false, RequiresArg);
David Blaikie15a430a2011-12-04 05:04:18 +00004663 PrototypeScope.Exit();
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004664}
4665
4666/// ParseFunctionDeclarator - We are after the identifier and have parsed the
4667/// declarator D up to a paren, which indicates that we are parsing function
4668/// arguments.
Chris Lattneracd58a32006-08-06 17:24:14 +00004669///
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004670/// If FirstArgAttrs is non-null, then the caller parsed those arguments
4671/// immediately after the open paren - they should be considered to be the
4672/// first argument of a parameter.
Chris Lattner8ff2c6c2008-10-20 02:05:46 +00004673///
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004674/// If RequiresArg is true, then the first argument of the function is required
4675/// to be present and required to not be an identifier list.
Douglas Gregor9e66af42011-07-05 16:44:18 +00004676///
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004677/// For C++, after the parameter-list, it also parses the cv-qualifier-seq[opt],
4678/// (C++11) ref-qualifier[opt], exception-specification[opt],
4679/// (C++11) attribute-specifier-seq[opt], and (C++11) trailing-return-type[opt].
4680///
4681/// [C++11] exception-specification:
Douglas Gregor9e66af42011-07-05 16:44:18 +00004682/// dynamic-exception-specification
4683/// noexcept-specification
4684///
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00004685void Parser::ParseFunctionDeclarator(Declarator &D,
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004686 ParsedAttributes &FirstArgAttrs,
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00004687 BalancedDelimiterTracker &Tracker,
Richard Smith943c4402012-07-30 21:30:52 +00004688 bool IsAmbiguous,
Douglas Gregor9e66af42011-07-05 16:44:18 +00004689 bool RequiresArg) {
Chad Rosierc1183952012-06-26 22:30:43 +00004690 assert(getCurScope()->isFunctionPrototypeScope() &&
David Blaikie15a430a2011-12-04 05:04:18 +00004691 "Should call from a Function scope");
Douglas Gregor9e66af42011-07-05 16:44:18 +00004692 // lparen is already consumed!
4693 assert(D.isPastIdentifier() && "Should not call before identifier!");
4694
4695 // This should be true when the function has typed arguments.
4696 // Otherwise, it is treated as a K&R-style function.
4697 bool HasProto = false;
4698 // Build up an array of information about the parsed arguments.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00004699 SmallVector<DeclaratorChunk::ParamInfo, 16> ParamInfo;
Douglas Gregor9e66af42011-07-05 16:44:18 +00004700 // Remember where we see an ellipsis, if any.
4701 SourceLocation EllipsisLoc;
4702
4703 DeclSpec DS(AttrFactory);
4704 bool RefQualifierIsLValueRef = true;
4705 SourceLocation RefQualifierLoc;
Douglas Gregore248eea2011-10-19 06:04:55 +00004706 SourceLocation ConstQualifierLoc;
4707 SourceLocation VolatileQualifierLoc;
Douglas Gregor9e66af42011-07-05 16:44:18 +00004708 ExceptionSpecificationType ESpecType = EST_None;
4709 SourceRange ESpecRange;
Chris Lattner0e62c1c2011-07-23 10:55:15 +00004710 SmallVector<ParsedType, 2> DynamicExceptions;
4711 SmallVector<SourceRange, 2> DynamicExceptionRanges;
Douglas Gregor9e66af42011-07-05 16:44:18 +00004712 ExprResult NoexceptExpr;
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004713 ParsedAttributes FnAttrs(AttrFactory);
Richard Smith700537c2012-06-12 01:51:59 +00004714 TypeResult TrailingReturnType;
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004715
James Molloy6f8780b2012-02-29 10:24:19 +00004716 Actions.ActOnStartFunctionDeclarator();
4717
Abramo Bagnara2fc03ca2012-10-15 21:05:46 +00004718 /* LocalEndLoc is the end location for the local FunctionTypeLoc.
4719 EndLoc is the end location for the function declarator.
4720 They differ for trailing return types. */
4721 SourceLocation StartLoc, LocalEndLoc, EndLoc;
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00004722 SourceLocation LParenLoc, RParenLoc;
4723 LParenLoc = Tracker.getOpenLocation();
4724 StartLoc = LParenLoc;
4725
Douglas Gregor9e66af42011-07-05 16:44:18 +00004726 if (isFunctionDeclaratorIdentifierList()) {
4727 if (RequiresArg)
4728 Diag(Tok, diag::err_argument_required_after_attribute);
4729
4730 ParseFunctionDeclaratorIdentifierList(D, ParamInfo);
4731
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00004732 Tracker.consumeClose();
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00004733 RParenLoc = Tracker.getCloseLocation();
Abramo Bagnara2fc03ca2012-10-15 21:05:46 +00004734 LocalEndLoc = RParenLoc;
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00004735 EndLoc = RParenLoc;
Douglas Gregor9e66af42011-07-05 16:44:18 +00004736 } else {
Douglas Gregor9e66af42011-07-05 16:44:18 +00004737 if (Tok.isNot(tok::r_paren))
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004738 ParseParameterDeclarationClause(D, FirstArgAttrs, ParamInfo, EllipsisLoc);
Douglas Gregor9e66af42011-07-05 16:44:18 +00004739 else if (RequiresArg)
4740 Diag(Tok, diag::err_argument_required_after_attribute);
4741
David Blaikiebbafb8a2012-03-11 07:00:24 +00004742 HasProto = ParamInfo.size() || getLangOpts().CPlusPlus;
Douglas Gregor9e66af42011-07-05 16:44:18 +00004743
4744 // If we have the closing ')', eat it.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00004745 Tracker.consumeClose();
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00004746 RParenLoc = Tracker.getCloseLocation();
Abramo Bagnara2fc03ca2012-10-15 21:05:46 +00004747 LocalEndLoc = RParenLoc;
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00004748 EndLoc = RParenLoc;
Douglas Gregor9e66af42011-07-05 16:44:18 +00004749
David Blaikiebbafb8a2012-03-11 07:00:24 +00004750 if (getLangOpts().CPlusPlus) {
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004751 // FIXME: Accept these components in any order, and produce fixits to
4752 // correct the order if the user gets it wrong. Ideally we should deal
4753 // with the virt-specifier-seq and pure-specifier in the same way.
Douglas Gregor9e66af42011-07-05 16:44:18 +00004754
4755 // Parse cv-qualifier-seq[opt].
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004756 ParseTypeQualifierListOpt(DS, false /*no attributes*/, false);
4757 if (!DS.getSourceRange().getEnd().isInvalid()) {
4758 EndLoc = DS.getSourceRange().getEnd();
4759 ConstQualifierLoc = DS.getConstSpecLoc();
4760 VolatileQualifierLoc = DS.getVolatileSpecLoc();
4761 }
Douglas Gregor9e66af42011-07-05 16:44:18 +00004762
4763 // Parse ref-qualifier[opt].
4764 if (Tok.is(tok::amp) || Tok.is(tok::ampamp)) {
Richard Smith2bf7fdb2013-01-02 11:42:31 +00004765 Diag(Tok, getLangOpts().CPlusPlus11 ?
Richard Smith5d164bc2011-10-15 05:09:34 +00004766 diag::warn_cxx98_compat_ref_qualifier :
4767 diag::ext_ref_qualifier);
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004768
Douglas Gregor9e66af42011-07-05 16:44:18 +00004769 RefQualifierIsLValueRef = Tok.is(tok::amp);
4770 RefQualifierLoc = ConsumeToken();
4771 EndLoc = RefQualifierLoc;
4772 }
4773
Douglas Gregor3024f072012-04-16 07:05:22 +00004774 // C++11 [expr.prim.general]p3:
Chad Rosierc1183952012-06-26 22:30:43 +00004775 // If a declaration declares a member function or member function
4776 // template of a class X, the expression this is a prvalue of type
Douglas Gregor3024f072012-04-16 07:05:22 +00004777 // "pointer to cv-qualifier-seq X" between the optional cv-qualifer-seq
Chad Rosierc1183952012-06-26 22:30:43 +00004778 // and the end of the function-definition, member-declarator, or
Douglas Gregor3024f072012-04-16 07:05:22 +00004779 // declarator.
Chad Rosierc1183952012-06-26 22:30:43 +00004780 bool IsCXX11MemberFunction =
Richard Smith2bf7fdb2013-01-02 11:42:31 +00004781 getLangOpts().CPlusPlus11 &&
Douglas Gregor3024f072012-04-16 07:05:22 +00004782 (D.getContext() == Declarator::MemberContext ||
4783 (D.getContext() == Declarator::FileContext &&
Chad Rosierc1183952012-06-26 22:30:43 +00004784 D.getCXXScopeSpec().isValid() &&
Douglas Gregor3024f072012-04-16 07:05:22 +00004785 Actions.CurContext->isRecord()));
4786 Sema::CXXThisScopeRAII ThisScope(Actions,
4787 dyn_cast<CXXRecordDecl>(Actions.CurContext),
Richard Smith01141a92013-01-14 01:55:13 +00004788 DS.getTypeQualifiers() |
4789 (D.getDeclSpec().isConstexprSpecified()
4790 ? Qualifiers::Const : 0),
Douglas Gregor3024f072012-04-16 07:05:22 +00004791 IsCXX11MemberFunction);
Richard Smith2331bbf2012-05-02 22:22:32 +00004792
Douglas Gregor9e66af42011-07-05 16:44:18 +00004793 // Parse exception-specification[opt].
Richard Smith2331bbf2012-05-02 22:22:32 +00004794 ESpecType = tryParseExceptionSpecification(ESpecRange,
Douglas Gregor433e0532012-04-16 18:27:27 +00004795 DynamicExceptions,
4796 DynamicExceptionRanges,
Richard Smith2331bbf2012-05-02 22:22:32 +00004797 NoexceptExpr);
Douglas Gregor9e66af42011-07-05 16:44:18 +00004798 if (ESpecType != EST_None)
4799 EndLoc = ESpecRange.getEnd();
4800
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004801 // Parse attribute-specifier-seq[opt]. Per DR 979 and DR 1297, this goes
4802 // after the exception-specification.
Richard Smith89645bc2013-01-02 12:01:23 +00004803 MaybeParseCXX11Attributes(FnAttrs);
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004804
Douglas Gregor9e66af42011-07-05 16:44:18 +00004805 // Parse trailing-return-type[opt].
Abramo Bagnara2fc03ca2012-10-15 21:05:46 +00004806 LocalEndLoc = EndLoc;
Richard Smith2bf7fdb2013-01-02 11:42:31 +00004807 if (getLangOpts().CPlusPlus11 && Tok.is(tok::arrow)) {
Richard Smith5d164bc2011-10-15 05:09:34 +00004808 Diag(Tok, diag::warn_cxx98_compat_trailing_return_type);
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00004809 if (D.getDeclSpec().getTypeSpecType() == TST_auto)
4810 StartLoc = D.getDeclSpec().getTypeSpecTypeLoc();
Abramo Bagnara2fc03ca2012-10-15 21:05:46 +00004811 LocalEndLoc = Tok.getLocation();
Douglas Gregordb0b9f12011-08-04 15:30:47 +00004812 SourceRange Range;
Richard Smith700537c2012-06-12 01:51:59 +00004813 TrailingReturnType = ParseTrailingReturnType(Range);
Abramo Bagnara2fc03ca2012-10-15 21:05:46 +00004814 EndLoc = Range.getEnd();
Douglas Gregor9e66af42011-07-05 16:44:18 +00004815 }
4816 }
Douglas Gregor9e66af42011-07-05 16:44:18 +00004817 }
4818
4819 // Remember that we parsed a function type, and remember the attributes.
4820 D.AddTypeInfo(DeclaratorChunk::getFunction(HasProto,
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00004821 IsAmbiguous,
4822 LParenLoc,
Douglas Gregor9e66af42011-07-05 16:44:18 +00004823 ParamInfo.data(), ParamInfo.size(),
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00004824 EllipsisLoc, RParenLoc,
Douglas Gregor9e66af42011-07-05 16:44:18 +00004825 DS.getTypeQualifiers(),
4826 RefQualifierIsLValueRef,
Douglas Gregore248eea2011-10-19 06:04:55 +00004827 RefQualifierLoc, ConstQualifierLoc,
4828 VolatileQualifierLoc,
Douglas Gregorad69e652011-07-13 21:47:47 +00004829 /*MutableLoc=*/SourceLocation(),
Douglas Gregor9e66af42011-07-05 16:44:18 +00004830 ESpecType, ESpecRange.getBegin(),
4831 DynamicExceptions.data(),
4832 DynamicExceptionRanges.data(),
4833 DynamicExceptions.size(),
4834 NoexceptExpr.isUsable() ?
4835 NoexceptExpr.get() : 0,
Abramo Bagnara2fc03ca2012-10-15 21:05:46 +00004836 StartLoc, LocalEndLoc, D,
Douglas Gregor9e66af42011-07-05 16:44:18 +00004837 TrailingReturnType),
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004838 FnAttrs, EndLoc);
James Molloy6f8780b2012-02-29 10:24:19 +00004839
4840 Actions.ActOnEndFunctionDeclarator();
Douglas Gregor9e66af42011-07-05 16:44:18 +00004841}
4842
4843/// isFunctionDeclaratorIdentifierList - This parameter list may have an
4844/// identifier list form for a K&R-style function: void foo(a,b,c)
4845///
4846/// Note that identifier-lists are only allowed for normal declarators, not for
4847/// abstract-declarators.
4848bool Parser::isFunctionDeclaratorIdentifierList() {
David Blaikiebbafb8a2012-03-11 07:00:24 +00004849 return !getLangOpts().CPlusPlus
Douglas Gregor9e66af42011-07-05 16:44:18 +00004850 && Tok.is(tok::identifier)
4851 && !TryAltiVecVectorToken()
4852 // K&R identifier lists can't have typedefs as identifiers, per C99
4853 // 6.7.5.3p11.
4854 && (TryAnnotateTypeOrScopeToken() || !Tok.is(tok::annot_typename))
4855 // Identifier lists follow a really simple grammar: the identifiers can
4856 // be followed *only* by a ", identifier" or ")". However, K&R
4857 // identifier lists are really rare in the brave new modern world, and
4858 // it is very common for someone to typo a type in a non-K&R style
4859 // list. If we are presented with something like: "void foo(intptr x,
4860 // float y)", we don't want to start parsing the function declarator as
4861 // though it is a K&R style declarator just because intptr is an
4862 // invalid type.
4863 //
4864 // To handle this, we check to see if the token after the first
4865 // identifier is a "," or ")". Only then do we parse it as an
4866 // identifier list.
4867 && (NextToken().is(tok::comma) || NextToken().is(tok::r_paren));
4868}
4869
4870/// ParseFunctionDeclaratorIdentifierList - While parsing a function declarator
4871/// we found a K&R-style identifier list instead of a typed parameter list.
4872///
4873/// After returning, ParamInfo will hold the parsed parameters.
4874///
4875/// identifier-list: [C99 6.7.5]
4876/// identifier
4877/// identifier-list ',' identifier
4878///
4879void Parser::ParseFunctionDeclaratorIdentifierList(
4880 Declarator &D,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00004881 SmallVector<DeclaratorChunk::ParamInfo, 16> &ParamInfo) {
Douglas Gregor9e66af42011-07-05 16:44:18 +00004882 // If there was no identifier specified for the declarator, either we are in
4883 // an abstract-declarator, or we are in a parameter declarator which was found
4884 // to be abstract. In abstract-declarators, identifier lists are not valid:
4885 // diagnose this.
4886 if (!D.getIdentifier())
4887 Diag(Tok, diag::ext_ident_list_in_param);
4888
4889 // Maintain an efficient lookup of params we have seen so far.
4890 llvm::SmallSet<const IdentifierInfo*, 16> ParamsSoFar;
4891
4892 while (1) {
4893 // If this isn't an identifier, report the error and skip until ')'.
4894 if (Tok.isNot(tok::identifier)) {
4895 Diag(Tok, diag::err_expected_ident);
4896 SkipUntil(tok::r_paren, /*StopAtSemi=*/true, /*DontConsume=*/true);
4897 // Forget we parsed anything.
4898 ParamInfo.clear();
4899 return;
4900 }
4901
4902 IdentifierInfo *ParmII = Tok.getIdentifierInfo();
4903
4904 // Reject 'typedef int y; int test(x, y)', but continue parsing.
4905 if (Actions.getTypeName(*ParmII, Tok.getLocation(), getCurScope()))
4906 Diag(Tok, diag::err_unexpected_typedef_ident) << ParmII;
4907
4908 // Verify that the argument identifier has not already been mentioned.
4909 if (!ParamsSoFar.insert(ParmII)) {
4910 Diag(Tok, diag::err_param_redefinition) << ParmII;
4911 } else {
4912 // Remember this identifier in ParamInfo.
4913 ParamInfo.push_back(DeclaratorChunk::ParamInfo(ParmII,
4914 Tok.getLocation(),
4915 0));
4916 }
4917
4918 // Eat the identifier.
4919 ConsumeToken();
4920
4921 // The list continues if we see a comma.
4922 if (Tok.isNot(tok::comma))
4923 break;
4924 ConsumeToken();
4925 }
4926}
4927
4928/// ParseParameterDeclarationClause - Parse a (possibly empty) parameter-list
4929/// after the opening parenthesis. This function will not parse a K&R-style
4930/// identifier list.
4931///
Richard Smith2620cd92012-04-11 04:01:28 +00004932/// D is the declarator being parsed. If FirstArgAttrs is non-null, then the
4933/// caller parsed those arguments immediately after the open paren - they should
4934/// be considered to be part of the first parameter.
Douglas Gregor9e66af42011-07-05 16:44:18 +00004935///
4936/// After returning, ParamInfo will hold the parsed parameters. EllipsisLoc will
4937/// be the location of the ellipsis, if any was parsed.
4938///
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004939/// parameter-type-list: [C99 6.7.5]
4940/// parameter-list
4941/// parameter-list ',' '...'
Douglas Gregor9bfc2e52009-09-22 21:41:40 +00004942/// [C++] parameter-list '...'
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004943///
4944/// parameter-list: [C99 6.7.5]
4945/// parameter-declaration
4946/// parameter-list ',' parameter-declaration
4947///
4948/// parameter-declaration: [C99 6.7.5]
4949/// declaration-specifiers declarator
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00004950/// [C++] declaration-specifiers declarator '=' assignment-expression
Sebastian Redldb63af22012-03-14 15:54:00 +00004951/// [C++11] initializer-clause
Chris Lattnere37e2332006-08-15 04:50:22 +00004952/// [GNU] declaration-specifiers declarator attributes
Sebastian Redlf769df52009-03-24 22:27:57 +00004953/// declaration-specifiers abstract-declarator[opt]
4954/// [C++] declaration-specifiers abstract-declarator[opt]
Chris Lattner58258242008-04-10 02:22:51 +00004955/// '=' assignment-expression
Chris Lattnere37e2332006-08-15 04:50:22 +00004956/// [GNU] declaration-specifiers abstract-declarator[opt] attributes
Richard Smith2620cd92012-04-11 04:01:28 +00004957/// [C++11] attribute-specifier-seq parameter-declaration
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004958///
Douglas Gregor9e66af42011-07-05 16:44:18 +00004959void Parser::ParseParameterDeclarationClause(
4960 Declarator &D,
Richard Smith2620cd92012-04-11 04:01:28 +00004961 ParsedAttributes &FirstArgAttrs,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00004962 SmallVector<DeclaratorChunk::ParamInfo, 16> &ParamInfo,
Douglas Gregor9e66af42011-07-05 16:44:18 +00004963 SourceLocation &EllipsisLoc) {
Mike Stump11289f42009-09-09 15:08:12 +00004964
Chris Lattner371ed4e2008-04-06 06:57:35 +00004965 while (1) {
4966 if (Tok.is(tok::ellipsis)) {
Richard Smith2620cd92012-04-11 04:01:28 +00004967 // FIXME: Issue a diagnostic if we parsed an attribute-specifier-seq
4968 // before deciding this was a parameter-declaration-clause.
Douglas Gregor94349fd2009-02-18 07:07:28 +00004969 EllipsisLoc = ConsumeToken(); // Consume the ellipsis.
Chris Lattner371ed4e2008-04-06 06:57:35 +00004970 break;
Chris Lattneracd58a32006-08-06 17:24:14 +00004971 }
Mike Stump11289f42009-09-09 15:08:12 +00004972
Chris Lattner371ed4e2008-04-06 06:57:35 +00004973 // Parse the declaration-specifiers.
John McCall28a6aea2009-11-04 02:18:39 +00004974 // Just use the ParsingDeclaration "scope" of the declarator.
John McCall084e83d2011-03-24 11:26:52 +00004975 DeclSpec DS(AttrFactory);
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00004976
Richard Smith2620cd92012-04-11 04:01:28 +00004977 // Parse any C++11 attributes.
Richard Smith89645bc2013-01-02 12:01:23 +00004978 MaybeParseCXX11Attributes(DS.getAttributes());
Richard Smith2620cd92012-04-11 04:01:28 +00004979
John McCall53fa7142010-12-24 02:08:15 +00004980 // Skip any Microsoft attributes before a param.
Chad Rosierf8a2e702012-12-20 20:37:53 +00004981 MaybeParseMicrosoftAttributes(DS.getAttributes());
John McCall53fa7142010-12-24 02:08:15 +00004982
4983 SourceLocation DSStart = Tok.getLocation();
Chris Lattner8ff2c6c2008-10-20 02:05:46 +00004984
4985 // If the caller parsed attributes for the first argument, add them now.
John McCall53fa7142010-12-24 02:08:15 +00004986 // Take them so that we only apply the attributes to the first parameter.
Douglas Gregor9e66af42011-07-05 16:44:18 +00004987 // FIXME: If we can leave the attributes in the token stream somehow, we can
Richard Smith2620cd92012-04-11 04:01:28 +00004988 // get rid of a parameter (FirstArgAttrs) and this statement. It might be
4989 // too much hassle.
4990 DS.takeAttributesFrom(FirstArgAttrs);
John McCall53fa7142010-12-24 02:08:15 +00004991
Chris Lattnerde39c3e2009-02-27 18:38:20 +00004992 ParseDeclarationSpecifiers(DS);
Mike Stump11289f42009-09-09 15:08:12 +00004993
Chris Lattner371ed4e2008-04-06 06:57:35 +00004994 // Parse the declarator. This is "PrototypeContext", because we must
4995 // accept either 'declarator' or 'abstract-declarator' here.
4996 Declarator ParmDecl(DS, Declarator::PrototypeContext);
4997 ParseDeclarator(ParmDecl);
4998
4999 // Parse GNU attributes, if present.
John McCall53fa7142010-12-24 02:08:15 +00005000 MaybeParseGNUAttributes(ParmDecl);
Mike Stump11289f42009-09-09 15:08:12 +00005001
Chris Lattner371ed4e2008-04-06 06:57:35 +00005002 // Remember this parsed parameter in ParamInfo.
5003 IdentifierInfo *ParmII = ParmDecl.getIdentifier();
Mike Stump11289f42009-09-09 15:08:12 +00005004
Douglas Gregor4d87df52008-12-16 21:30:33 +00005005 // DefArgToks is used when the parsing of default arguments needs
5006 // to be delayed.
5007 CachedTokens *DefArgToks = 0;
5008
Chris Lattner371ed4e2008-04-06 06:57:35 +00005009 // If no parameter was specified, verify that *something* was specified,
5010 // otherwise we have a missing type and identifier.
Chris Lattnerde39c3e2009-02-27 18:38:20 +00005011 if (DS.isEmpty() && ParmDecl.getIdentifier() == 0 &&
5012 ParmDecl.getNumTypeObjects() == 0) {
Chris Lattner371ed4e2008-04-06 06:57:35 +00005013 // Completely missing, emit error.
5014 Diag(DSStart, diag::err_missing_param);
5015 } else {
5016 // Otherwise, we have something. Add it and let semantic analysis try
5017 // to grok it and add the result to the ParamInfo we are building.
Mike Stump11289f42009-09-09 15:08:12 +00005018
Chris Lattner371ed4e2008-04-06 06:57:35 +00005019 // Inform the actions module about the parameter declarator, so it gets
5020 // added to the current scope.
John McCall48871652010-08-21 09:40:31 +00005021 Decl *Param = Actions.ActOnParamDeclarator(getCurScope(), ParmDecl);
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00005022
5023 // Parse the default argument, if any. We parse the default
5024 // arguments in all dialects; the semantic analysis in
5025 // ActOnParamDefaultArgument will reject the default argument in
5026 // C.
5027 if (Tok.is(tok::equal)) {
Douglas Gregor58354032008-12-24 00:01:03 +00005028 SourceLocation EqualLoc = Tok.getLocation();
5029
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00005030 // Parse the default argument
Douglas Gregor4d87df52008-12-16 21:30:33 +00005031 if (D.getContext() == Declarator::MemberContext) {
5032 // If we're inside a class definition, cache the tokens
5033 // corresponding to the default argument. We'll actually parse
5034 // them when we see the end of the class definition.
Douglas Gregor4d87df52008-12-16 21:30:33 +00005035 // FIXME: Can we use a smart pointer for Toks?
5036 DefArgToks = new CachedTokens;
5037
Mike Stump11289f42009-09-09 15:08:12 +00005038 if (!ConsumeAndStoreUntil(tok::comma, tok::r_paren, *DefArgToks,
Argyrios Kyrtzidis8d7bdba2010-04-23 21:20:12 +00005039 /*StopAtSemi=*/true,
5040 /*ConsumeFinalToken=*/false)) {
Douglas Gregor4d87df52008-12-16 21:30:33 +00005041 delete DefArgToks;
5042 DefArgToks = 0;
Douglas Gregor58354032008-12-24 00:01:03 +00005043 Actions.ActOnParamDefaultArgumentError(Param);
Argyrios Kyrtzidis249179c2010-08-06 09:47:24 +00005044 } else {
5045 // Mark the end of the default argument so that we know when to
5046 // stop when we parse it later on.
5047 Token DefArgEnd;
5048 DefArgEnd.startToken();
5049 DefArgEnd.setKind(tok::cxx_defaultarg_end);
5050 DefArgEnd.setLocation(Tok.getLocation());
5051 DefArgToks->push_back(DefArgEnd);
Mike Stump11289f42009-09-09 15:08:12 +00005052 Actions.ActOnParamUnparsedDefaultArgument(Param, EqualLoc,
Anders Carlsson84613c42009-06-12 16:51:40 +00005053 (*DefArgToks)[1].getLocation());
Argyrios Kyrtzidis249179c2010-08-06 09:47:24 +00005054 }
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00005055 } else {
Douglas Gregor4d87df52008-12-16 21:30:33 +00005056 // Consume the '='.
Douglas Gregor58354032008-12-24 00:01:03 +00005057 ConsumeToken();
Mike Stump11289f42009-09-09 15:08:12 +00005058
Chad Rosierc1183952012-06-26 22:30:43 +00005059 // The argument isn't actually potentially evaluated unless it is
Douglas Gregor8a01b2a2010-09-11 20:24:53 +00005060 // used.
5061 EnterExpressionEvaluationContext Eval(Actions,
Douglas Gregor7fcbd902012-02-21 00:37:24 +00005062 Sema::PotentiallyEvaluatedIfUsed,
5063 Param);
Douglas Gregor8a01b2a2010-09-11 20:24:53 +00005064
Sebastian Redldb63af22012-03-14 15:54:00 +00005065 ExprResult DefArgResult;
Richard Smith2bf7fdb2013-01-02 11:42:31 +00005066 if (getLangOpts().CPlusPlus11 && Tok.is(tok::l_brace)) {
Sebastian Redl1678d5f2012-03-18 22:25:45 +00005067 Diag(Tok, diag::warn_cxx98_compat_generalized_initializer_lists);
Sebastian Redldb63af22012-03-14 15:54:00 +00005068 DefArgResult = ParseBraceInitializer();
Sebastian Redl1678d5f2012-03-18 22:25:45 +00005069 } else
Sebastian Redldb63af22012-03-14 15:54:00 +00005070 DefArgResult = ParseAssignmentExpression();
Douglas Gregor4d87df52008-12-16 21:30:33 +00005071 if (DefArgResult.isInvalid()) {
5072 Actions.ActOnParamDefaultArgumentError(Param);
5073 SkipUntil(tok::comma, tok::r_paren, true, true);
5074 } else {
5075 // Inform the actions module about the default argument
5076 Actions.ActOnParamDefaultArgument(Param, EqualLoc,
John McCallb268a282010-08-23 23:25:46 +00005077 DefArgResult.take());
Douglas Gregor4d87df52008-12-16 21:30:33 +00005078 }
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00005079 }
5080 }
Mike Stump11289f42009-09-09 15:08:12 +00005081
5082 ParamInfo.push_back(DeclaratorChunk::ParamInfo(ParmII,
5083 ParmDecl.getIdentifierLoc(), Param,
Douglas Gregor4d87df52008-12-16 21:30:33 +00005084 DefArgToks));
Chris Lattner371ed4e2008-04-06 06:57:35 +00005085 }
5086
5087 // If the next token is a comma, consume it and keep reading arguments.
Douglas Gregor9bfc2e52009-09-22 21:41:40 +00005088 if (Tok.isNot(tok::comma)) {
5089 if (Tok.is(tok::ellipsis)) {
Douglas Gregor9bfc2e52009-09-22 21:41:40 +00005090 EllipsisLoc = ConsumeToken(); // Consume the ellipsis.
Chad Rosierc1183952012-06-26 22:30:43 +00005091
David Blaikiebbafb8a2012-03-11 07:00:24 +00005092 if (!getLangOpts().CPlusPlus) {
Douglas Gregor9bfc2e52009-09-22 21:41:40 +00005093 // We have ellipsis without a preceding ',', which is ill-formed
5094 // in C. Complain and provide the fix.
5095 Diag(EllipsisLoc, diag::err_missing_comma_before_ellipsis)
Douglas Gregora771f462010-03-31 17:46:05 +00005096 << FixItHint::CreateInsertion(EllipsisLoc, ", ");
Douglas Gregor9bfc2e52009-09-22 21:41:40 +00005097 }
5098 }
Chad Rosierc1183952012-06-26 22:30:43 +00005099
Douglas Gregor9bfc2e52009-09-22 21:41:40 +00005100 break;
5101 }
Mike Stump11289f42009-09-09 15:08:12 +00005102
Chris Lattner371ed4e2008-04-06 06:57:35 +00005103 // Consume the comma.
5104 ConsumeToken();
Chris Lattneracd58a32006-08-06 17:24:14 +00005105 }
Mike Stump11289f42009-09-09 15:08:12 +00005106
Chris Lattner6c940e62008-04-06 06:34:08 +00005107}
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00005108
Chris Lattnere8074e62006-08-06 18:30:15 +00005109/// [C90] direct-declarator '[' constant-expression[opt] ']'
5110/// [C99] direct-declarator '[' type-qual-list[opt] assignment-expr[opt] ']'
5111/// [C99] direct-declarator '[' 'static' type-qual-list[opt] assign-expr ']'
5112/// [C99] direct-declarator '[' type-qual-list 'static' assignment-expr ']'
5113/// [C99] direct-declarator '[' type-qual-list[opt] '*' ']'
Richard Smith7bdcc4a2012-04-10 01:32:12 +00005114/// [C++11] direct-declarator '[' constant-expression[opt] ']'
5115/// attribute-specifier-seq[opt]
Chris Lattnere8074e62006-08-06 18:30:15 +00005116void Parser::ParseBracketDeclarator(Declarator &D) {
Richard Smith7bdcc4a2012-04-10 01:32:12 +00005117 if (CheckProhibitedCXX11Attribute())
5118 return;
5119
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00005120 BalancedDelimiterTracker T(*this, tok::l_square);
5121 T.consumeOpen();
Mike Stump11289f42009-09-09 15:08:12 +00005122
Chris Lattner84a11622008-12-18 07:27:21 +00005123 // C array syntax has many features, but by-far the most common is [] and [4].
5124 // This code does a fast path to handle some of the most obvious cases.
5125 if (Tok.getKind() == tok::r_square) {
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00005126 T.consumeClose();
John McCall084e83d2011-03-24 11:26:52 +00005127 ParsedAttributes attrs(AttrFactory);
Richard Smith89645bc2013-01-02 12:01:23 +00005128 MaybeParseCXX11Attributes(attrs);
Chad Rosierc1183952012-06-26 22:30:43 +00005129
Chris Lattner84a11622008-12-18 07:27:21 +00005130 // Remember that we parsed the empty array type.
John McCalldadc5752010-08-24 06:29:42 +00005131 ExprResult NumElements;
John McCall084e83d2011-03-24 11:26:52 +00005132 D.AddTypeInfo(DeclaratorChunk::getArray(0, false, false, 0,
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00005133 T.getOpenLocation(),
5134 T.getCloseLocation()),
5135 attrs, T.getCloseLocation());
Chris Lattner84a11622008-12-18 07:27:21 +00005136 return;
5137 } else if (Tok.getKind() == tok::numeric_constant &&
5138 GetLookAheadToken(1).is(tok::r_square)) {
5139 // [4] is very common. Parse the numeric constant expression.
Richard Smithbcc22fc2012-03-09 08:00:36 +00005140 ExprResult ExprRes(Actions.ActOnNumericConstant(Tok, getCurScope()));
Chris Lattner84a11622008-12-18 07:27:21 +00005141 ConsumeToken();
5142
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00005143 T.consumeClose();
John McCall084e83d2011-03-24 11:26:52 +00005144 ParsedAttributes attrs(AttrFactory);
Richard Smith89645bc2013-01-02 12:01:23 +00005145 MaybeParseCXX11Attributes(attrs);
Mike Stump11289f42009-09-09 15:08:12 +00005146
Chris Lattner84a11622008-12-18 07:27:21 +00005147 // Remember that we parsed a array type, and remember its features.
Nikola Smiljanicc531dcc2013-01-11 08:33:05 +00005148 D.AddTypeInfo(DeclaratorChunk::getArray(0, false, false,
John McCall53fa7142010-12-24 02:08:15 +00005149 ExprRes.release(),
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00005150 T.getOpenLocation(),
5151 T.getCloseLocation()),
5152 attrs, T.getCloseLocation());
Chris Lattner84a11622008-12-18 07:27:21 +00005153 return;
5154 }
Mike Stump11289f42009-09-09 15:08:12 +00005155
Chris Lattnere8074e62006-08-06 18:30:15 +00005156 // If valid, this location is the position where we read the 'static' keyword.
5157 SourceLocation StaticLoc;
Chris Lattner76c72282007-10-09 17:33:22 +00005158 if (Tok.is(tok::kw_static))
Chris Lattneraf635312006-10-16 06:06:51 +00005159 StaticLoc = ConsumeToken();
Mike Stump11289f42009-09-09 15:08:12 +00005160
Chris Lattnere8074e62006-08-06 18:30:15 +00005161 // If there is a type-qualifier-list, read it now.
Chris Lattnerb6ec4e72008-12-18 06:50:14 +00005162 // Type qualifiers in an array subscript are a C99 feature.
John McCall084e83d2011-03-24 11:26:52 +00005163 DeclSpec DS(AttrFactory);
Chris Lattnercf0bab22008-12-18 07:02:59 +00005164 ParseTypeQualifierListOpt(DS, false /*no attributes*/);
Mike Stump11289f42009-09-09 15:08:12 +00005165
Chris Lattnere8074e62006-08-06 18:30:15 +00005166 // If we haven't already read 'static', check to see if there is one after the
5167 // type-qualifier-list.
Chris Lattner76c72282007-10-09 17:33:22 +00005168 if (!StaticLoc.isValid() && Tok.is(tok::kw_static))
Chris Lattneraf635312006-10-16 06:06:51 +00005169 StaticLoc = ConsumeToken();
Mike Stump11289f42009-09-09 15:08:12 +00005170
Chris Lattnere8074e62006-08-06 18:30:15 +00005171 // Handle "direct-declarator [ type-qual-list[opt] * ]".
Chris Lattnere8074e62006-08-06 18:30:15 +00005172 bool isStar = false;
John McCalldadc5752010-08-24 06:29:42 +00005173 ExprResult NumElements;
Mike Stump11289f42009-09-09 15:08:12 +00005174
Chris Lattner521ff2b2008-04-06 05:26:30 +00005175 // Handle the case where we have '[*]' as the array size. However, a leading
5176 // star could be the start of an expression, for example 'X[*p + 4]'. Verify
Sylvestre Ledru830885c2012-07-23 08:59:39 +00005177 // the token after the star is a ']'. Since stars in arrays are
Chris Lattner521ff2b2008-04-06 05:26:30 +00005178 // infrequent, use of lookahead is not costly here.
5179 if (Tok.is(tok::star) && GetLookAheadToken(1).is(tok::r_square)) {
Chris Lattnerc439f0d2008-04-06 05:27:21 +00005180 ConsumeToken(); // Eat the '*'.
Chris Lattner1906f802006-08-06 19:14:46 +00005181
Chris Lattnerb6ec4e72008-12-18 06:50:14 +00005182 if (StaticLoc.isValid()) {
Chris Lattner521ff2b2008-04-06 05:26:30 +00005183 Diag(StaticLoc, diag::err_unspecified_vla_size_with_static);
Chris Lattnerb6ec4e72008-12-18 06:50:14 +00005184 StaticLoc = SourceLocation(); // Drop the static.
5185 }
Chris Lattner521ff2b2008-04-06 05:26:30 +00005186 isStar = true;
Chris Lattner76c72282007-10-09 17:33:22 +00005187 } else if (Tok.isNot(tok::r_square)) {
Chris Lattner84a11622008-12-18 07:27:21 +00005188 // Note, in C89, this production uses the constant-expr production instead
5189 // of assignment-expr. The only difference is that assignment-expr allows
5190 // things like '=' and '*='. Sema rejects these in C89 mode because they
5191 // are not i-c-e's, so we don't need to distinguish between the two here.
Mike Stump11289f42009-09-09 15:08:12 +00005192
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00005193 // Parse the constant-expression or assignment-expression now (depending
5194 // on dialect).
David Blaikiebbafb8a2012-03-11 07:00:24 +00005195 if (getLangOpts().CPlusPlus) {
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00005196 NumElements = ParseConstantExpression();
Eli Friedmane0afc982012-01-21 01:01:51 +00005197 } else {
5198 EnterExpressionEvaluationContext Unevaluated(Actions,
5199 Sema::ConstantEvaluated);
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00005200 NumElements = ParseAssignmentExpression();
Eli Friedmane0afc982012-01-21 01:01:51 +00005201 }
Chris Lattner62591722006-08-12 18:40:58 +00005202 }
Mike Stump11289f42009-09-09 15:08:12 +00005203
Chris Lattner62591722006-08-12 18:40:58 +00005204 // If there was an error parsing the assignment-expression, recover.
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00005205 if (NumElements.isInvalid()) {
Chris Lattnercd2a8c52009-04-24 22:30:50 +00005206 D.setInvalidType(true);
Chris Lattner62591722006-08-12 18:40:58 +00005207 // If the expression was invalid, skip it.
5208 SkipUntil(tok::r_square);
5209 return;
Chris Lattnere8074e62006-08-06 18:30:15 +00005210 }
Sebastian Redlf6591ca2009-02-09 18:23:29 +00005211
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00005212 T.consumeClose();
Sebastian Redlf6591ca2009-02-09 18:23:29 +00005213
John McCall084e83d2011-03-24 11:26:52 +00005214 ParsedAttributes attrs(AttrFactory);
Richard Smith89645bc2013-01-02 12:01:23 +00005215 MaybeParseCXX11Attributes(attrs);
Alexis Hunt96d5c762009-11-21 08:43:09 +00005216
Chris Lattner84a11622008-12-18 07:27:21 +00005217 // Remember that we parsed a array type, and remember its features.
John McCall084e83d2011-03-24 11:26:52 +00005218 D.AddTypeInfo(DeclaratorChunk::getArray(DS.getTypeQualifiers(),
Chris Lattnercbc426d2006-12-02 06:43:02 +00005219 StaticLoc.isValid(), isStar,
Douglas Gregor04318252009-07-06 15:59:29 +00005220 NumElements.release(),
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00005221 T.getOpenLocation(),
5222 T.getCloseLocation()),
5223 attrs, T.getCloseLocation());
Chris Lattnere8074e62006-08-06 18:30:15 +00005224}
5225
Argyrios Kyrtzidis2545aeb2008-09-05 11:26:19 +00005226/// [GNU] typeof-specifier:
5227/// typeof ( expressions )
5228/// typeof ( type-name )
5229/// [GNU/C++] typeof unary-expression
Steve Naroffad373bd2007-07-31 12:34:36 +00005230///
5231void Parser::ParseTypeofSpecifier(DeclSpec &DS) {
Chris Lattner76c72282007-10-09 17:33:22 +00005232 assert(Tok.is(tok::kw_typeof) && "Not a typeof specifier");
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00005233 Token OpTok = Tok;
Steve Naroffad373bd2007-07-31 12:34:36 +00005234 SourceLocation StartLoc = ConsumeToken();
5235
John McCalle8595032010-01-13 20:03:27 +00005236 const bool hasParens = Tok.is(tok::l_paren);
5237
Eli Friedman15681d62012-09-26 04:34:21 +00005238 EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated,
5239 Sema::ReuseLambdaContextDecl);
Eli Friedmane0afc982012-01-21 01:01:51 +00005240
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00005241 bool isCastExpr;
John McCallba7bf592010-08-24 05:47:05 +00005242 ParsedType CastTy;
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00005243 SourceRange CastRange;
Peter Collingbournee190dee2011-03-11 19:24:49 +00005244 ExprResult Operand = ParseExprAfterUnaryExprOrTypeTrait(OpTok, isCastExpr,
5245 CastTy, CastRange);
John McCalle8595032010-01-13 20:03:27 +00005246 if (hasParens)
5247 DS.setTypeofParensRange(CastRange);
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00005248
5249 if (CastRange.getEnd().isInvalid())
Argyrios Kyrtzidisf5cc7ac2009-05-22 10:22:18 +00005250 // FIXME: Not accurate, the range gets one token more than it should.
5251 DS.SetRangeEnd(Tok.getLocation());
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00005252 else
5253 DS.SetRangeEnd(CastRange.getEnd());
Mike Stump11289f42009-09-09 15:08:12 +00005254
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00005255 if (isCastExpr) {
5256 if (!CastTy) {
5257 DS.SetTypeSpecError();
Argyrios Kyrtzidis2545aeb2008-09-05 11:26:19 +00005258 return;
Douglas Gregor220cac52009-02-18 17:45:20 +00005259 }
Argyrios Kyrtzidis2545aeb2008-09-05 11:26:19 +00005260
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00005261 const char *PrevSpec = 0;
John McCall49bfce42009-08-03 20:12:06 +00005262 unsigned DiagID;
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00005263 // Check for duplicate type specifiers (e.g. "int typeof(int)").
5264 if (DS.SetTypeSpecType(DeclSpec::TST_typeofType, StartLoc, PrevSpec,
John McCall49bfce42009-08-03 20:12:06 +00005265 DiagID, CastTy))
5266 Diag(StartLoc, DiagID) << PrevSpec;
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00005267 return;
Argyrios Kyrtzidisf5cc7ac2009-05-22 10:22:18 +00005268 }
Argyrios Kyrtzidis2545aeb2008-09-05 11:26:19 +00005269
Argyrios Kyrtzidisf5cc7ac2009-05-22 10:22:18 +00005270 // If we get here, the operand to the typeof was an expresion.
5271 if (Operand.isInvalid()) {
5272 DS.SetTypeSpecError();
Steve Naroff4bd2f712007-08-02 02:53:48 +00005273 return;
Steve Naroffad373bd2007-07-31 12:34:36 +00005274 }
Argyrios Kyrtzidis2545aeb2008-09-05 11:26:19 +00005275
Eli Friedmane0afc982012-01-21 01:01:51 +00005276 // We might need to transform the operand if it is potentially evaluated.
5277 Operand = Actions.HandleExprEvaluationContextForTypeof(Operand.get());
5278 if (Operand.isInvalid()) {
5279 DS.SetTypeSpecError();
5280 return;
5281 }
5282
Argyrios Kyrtzidisf5cc7ac2009-05-22 10:22:18 +00005283 const char *PrevSpec = 0;
John McCall49bfce42009-08-03 20:12:06 +00005284 unsigned DiagID;
Argyrios Kyrtzidisf5cc7ac2009-05-22 10:22:18 +00005285 // Check for duplicate type specifiers (e.g. "int typeof(int)").
5286 if (DS.SetTypeSpecType(DeclSpec::TST_typeofExpr, StartLoc, PrevSpec,
John McCallba7bf592010-08-24 05:47:05 +00005287 DiagID, Operand.get()))
John McCall49bfce42009-08-03 20:12:06 +00005288 Diag(StartLoc, DiagID) << PrevSpec;
Steve Naroffad373bd2007-07-31 12:34:36 +00005289}
Chris Lattner73a9c7d2010-02-28 18:33:55 +00005290
Benjamin Kramere56f3932011-12-23 17:00:35 +00005291/// [C11] atomic-specifier:
Eli Friedman0dfb8892011-10-06 23:00:33 +00005292/// _Atomic ( type-name )
5293///
5294void Parser::ParseAtomicSpecifier(DeclSpec &DS) {
5295 assert(Tok.is(tok::kw__Atomic) && "Not an atomic specifier");
5296
5297 SourceLocation StartLoc = ConsumeToken();
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00005298 BalancedDelimiterTracker T(*this, tok::l_paren);
5299 if (T.expectAndConsume(diag::err_expected_lparen_after, "_Atomic")) {
Eli Friedman0dfb8892011-10-06 23:00:33 +00005300 SkipUntil(tok::r_paren);
5301 return;
5302 }
5303
5304 TypeResult Result = ParseTypeName();
5305 if (Result.isInvalid()) {
5306 SkipUntil(tok::r_paren);
5307 return;
5308 }
5309
5310 // Match the ')'
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00005311 T.consumeClose();
Eli Friedman0dfb8892011-10-06 23:00:33 +00005312
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00005313 if (T.getCloseLocation().isInvalid())
Eli Friedman0dfb8892011-10-06 23:00:33 +00005314 return;
5315
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00005316 DS.setTypeofParensRange(T.getRange());
5317 DS.SetRangeEnd(T.getCloseLocation());
Eli Friedman0dfb8892011-10-06 23:00:33 +00005318
5319 const char *PrevSpec = 0;
5320 unsigned DiagID;
5321 if (DS.SetTypeSpecType(DeclSpec::TST_atomic, StartLoc, PrevSpec,
5322 DiagID, Result.release()))
5323 Diag(StartLoc, DiagID) << PrevSpec;
5324}
5325
Chris Lattner73a9c7d2010-02-28 18:33:55 +00005326
5327/// TryAltiVecVectorTokenOutOfLine - Out of line body that should only be called
5328/// from TryAltiVecVectorToken.
5329bool Parser::TryAltiVecVectorTokenOutOfLine() {
5330 Token Next = NextToken();
5331 switch (Next.getKind()) {
5332 default: return false;
5333 case tok::kw_short:
5334 case tok::kw_long:
5335 case tok::kw_signed:
5336 case tok::kw_unsigned:
5337 case tok::kw_void:
5338 case tok::kw_char:
5339 case tok::kw_int:
5340 case tok::kw_float:
5341 case tok::kw_double:
5342 case tok::kw_bool:
5343 case tok::kw___pixel:
5344 Tok.setKind(tok::kw___vector);
5345 return true;
5346 case tok::identifier:
5347 if (Next.getIdentifierInfo() == Ident_pixel) {
5348 Tok.setKind(tok::kw___vector);
5349 return true;
5350 }
5351 return false;
5352 }
5353}
5354
5355bool Parser::TryAltiVecTokenOutOfLine(DeclSpec &DS, SourceLocation Loc,
5356 const char *&PrevSpec, unsigned &DiagID,
5357 bool &isInvalid) {
5358 if (Tok.getIdentifierInfo() == Ident_vector) {
5359 Token Next = NextToken();
5360 switch (Next.getKind()) {
5361 case tok::kw_short:
5362 case tok::kw_long:
5363 case tok::kw_signed:
5364 case tok::kw_unsigned:
5365 case tok::kw_void:
5366 case tok::kw_char:
5367 case tok::kw_int:
5368 case tok::kw_float:
5369 case tok::kw_double:
5370 case tok::kw_bool:
5371 case tok::kw___pixel:
5372 isInvalid = DS.SetTypeAltiVecVector(true, Loc, PrevSpec, DiagID);
5373 return true;
5374 case tok::identifier:
5375 if (Next.getIdentifierInfo() == Ident_pixel) {
5376 isInvalid = DS.SetTypeAltiVecVector(true, Loc, PrevSpec, DiagID);
5377 return true;
5378 }
5379 break;
5380 default:
5381 break;
5382 }
Douglas Gregor9938e3b2010-06-16 15:28:57 +00005383 } else if ((Tok.getIdentifierInfo() == Ident_pixel) &&
Chris Lattner73a9c7d2010-02-28 18:33:55 +00005384 DS.isTypeAltiVecVector()) {
5385 isInvalid = DS.SetTypeAltiVecPixel(true, Loc, PrevSpec, DiagID);
5386 return true;
5387 }
5388 return false;
5389}