blob: 438c6f8cf59799dd5bbd227d3b45d196096ed3d7 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- ParseDecl.cpp - Declaration Parsing ------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Declaration portions of the Parser interfaces.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/Parse/Parser.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000015#include "RAIIObjectsForParser.h"
Benjamin Kramer9852f582012-12-01 16:35:25 +000016#include "clang/Basic/AddressSpaces.h"
Peter Collingbourne207f4d82011-03-18 22:38:29 +000017#include "clang/Basic/OpenCL.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000018#include "clang/Parse/ParseDiagnostic.h"
Kaelyn Uhrainaec2ac62012-04-26 23:36:17 +000019#include "clang/Sema/Lookup.h"
John McCall19510852010-08-20 18:27:03 +000020#include "clang/Sema/ParsedTemplate.h"
John McCallf312b1e2010-08-26 23:41:50 +000021#include "clang/Sema/PrettyDeclStackTrace.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000022#include "clang/Sema/Scope.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000023#include "llvm/ADT/SmallSet.h"
Benjamin Kramer8fe83e12012-02-04 13:45:25 +000024#include "llvm/ADT/SmallString.h"
Caitlin Sadowskib51e0312011-08-09 17:59:31 +000025#include "llvm/ADT/StringSwitch.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000026using namespace clang;
27
28//===----------------------------------------------------------------------===//
29// C99 6.7: Declarations.
30//===----------------------------------------------------------------------===//
31
32/// ParseTypeName
33/// type-name: [C99 6.7.6]
34/// specifier-qualifier-list abstract-declarator[opt]
Sebastian Redl4c5d3202008-11-21 19:14:01 +000035///
36/// Called type-id in C++.
Douglas Gregor683a81f2011-01-31 16:09:46 +000037TypeResult Parser::ParseTypeName(SourceRange *Range,
John McCallf85e1932011-06-15 23:02:42 +000038 Declarator::TheContext Context,
Richard Smithc89edf52011-07-01 19:46:12 +000039 AccessSpecifier AS,
40 Decl **OwnedType) {
Richard Smith6d96d3a2012-03-15 01:02:11 +000041 DeclSpecContext DSC = getDeclSpecContextFromDeclaratorContext(Context);
Richard Smitha971d242012-05-09 20:55:26 +000042 if (DSC == DSC_normal)
43 DSC = DSC_type_specifier;
Richard Smith7796eb52012-03-12 08:56:40 +000044
Reid Spencer5f016e22007-07-11 17:01:13 +000045 // Parse the common declaration-specifiers piece.
John McCall0b7e6782011-03-24 11:26:52 +000046 DeclSpec DS(AttrFactory);
Richard Smith7796eb52012-03-12 08:56:40 +000047 ParseSpecifierQualifierList(DS, AS, DSC);
Richard Smithc89edf52011-07-01 19:46:12 +000048 if (OwnedType)
49 *OwnedType = DS.isTypeSpecOwned() ? DS.getRepAsDecl() : 0;
Sebastian Redlef65f062009-05-29 18:02:33 +000050
Reid Spencer5f016e22007-07-11 17:01:13 +000051 // Parse the abstract-declarator, if present.
Douglas Gregor683a81f2011-01-31 16:09:46 +000052 Declarator DeclaratorInfo(DS, Context);
Reid Spencer5f016e22007-07-11 17:01:13 +000053 ParseDeclarator(DeclaratorInfo);
Sebastian Redlef65f062009-05-29 18:02:33 +000054 if (Range)
55 *Range = DeclaratorInfo.getSourceRange();
56
Chris Lattnereaaebc72009-04-25 08:06:05 +000057 if (DeclaratorInfo.isInvalidType())
Douglas Gregor809070a2009-02-18 17:45:20 +000058 return true;
59
Douglas Gregor23c94db2010-07-02 17:43:08 +000060 return Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
Reid Spencer5f016e22007-07-11 17:01:13 +000061}
62
Caitlin Sadowskieff98fc2011-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
Sean Huntbbd37c62009-11-21 08:43:09 +000072/// ParseGNUAttributes - Parse a non-empty attributes list.
Reid Spencer5f016e22007-07-11 17:01:13 +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
87/// attrib-name
88/// attrib-name '(' identifier ')'
89/// attrib-name '(' identifier ',' nonempty-expr-list ')'
90/// attrib-name '(' argument-expression-list [C99 6.5.2] ')'
91///
92/// [GNU] attrib-name:
93/// identifier
94/// typespec
95/// typequal
96/// storageclass
Mike Stump1eb44332009-09-09 15:08:12 +000097///
Reid Spencer5f016e22007-07-11 17:01:13 +000098/// FIXME: The GCC grammar/code for this construct implies we need two
Mike Stump1eb44332009-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
Reid Spencer5f016e22007-07-11 17:01:13 +0000101/// start with that identifier; otherwise they are an expression list."
102///
Richard Smithfe0a0fb2011-10-17 21:20:17 +0000103/// GCC does not require the ',' between attribs in an attribute-list.
104///
Reid Spencer5f016e22007-07-11 17:01:13 +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.
109
John McCall7f040a92010-12-24 02:08:15 +0000110void Parser::ParseGNUAttributes(ParsedAttributes &attrs,
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000111 SourceLocation *endLoc,
112 LateParsedAttrList *LateAttrs) {
Sean Huntbbd37c62009-11-21 08:43:09 +0000113 assert(Tok.is(tok::kw___attribute) && "Not a GNU attribute list!");
Mike Stump1eb44332009-09-09 15:08:12 +0000114
Chris Lattner04d66662007-10-09 17:33:22 +0000115 while (Tok.is(tok::kw___attribute)) {
Reid Spencer5f016e22007-07-11 17:01:13 +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 McCall7f040a92010-12-24 02:08:15 +0000120 return;
Reid Spencer5f016e22007-07-11 17:01:13 +0000121 }
122 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after, "(")) {
123 SkipUntil(tok::r_paren, true); // skip until ) or ;
John McCall7f040a92010-12-24 02:08:15 +0000124 return;
Reid Spencer5f016e22007-07-11 17:01:13 +0000125 }
126 // Parse the attribute-list. e.g. __attribute__(( weak, alias("__f") ))
Chris Lattner04d66662007-10-09 17:33:22 +0000127 while (Tok.is(tok::identifier) || isDeclarationSpecifier() ||
128 Tok.is(tok::comma)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000129 if (Tok.is(tok::comma)) {
Reid Spencer5f016e22007-07-11 17:01:13 +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 Stump1eb44332009-09-09 15:08:12 +0000137
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000138 if (Tok.is(tok::l_paren)) {
139 // handle "parameterized" attributes
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +0000140 if (LateAttrs && isAttributeLateParsed(*AttrName)) {
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000141 LateParsedAttribute *LA =
142 new LateParsedAttribute(this, *AttrName, AttrNameLoc);
143 LateAttrs->push_back(LA);
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +0000144
Bill Wendlingad017fa2012-12-20 19:22:21 +0000145 // Attributes in a class are parsed at the end of the class, along
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +0000146 // with other late-parsed declarations.
DeLesley Hutchins161db022012-11-02 21:44:32 +0000147 if (!ClassStack.empty() && !LateAttrs->parseSoon())
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +0000148 getCurrentClass().LateParsedDeclarations.push_back(LA);
Mike Stump1eb44332009-09-09 15:08:12 +0000149
Caitlin Sadowskieff98fc2011-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 Stump1eb44332009-09-09 15:08:12 +0000152
Caitlin Sadowskieff98fc2011-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 Han6880f492012-10-03 01:56:22 +0000158 ParseGNUAttributeArgs(AttrName, AttrNameLoc, attrs, endLoc,
Michael Han45bed132012-10-04 16:42:52 +0000159 0, SourceLocation(), AttributeList::AS_GNU);
Reid Spencer5f016e22007-07-11 17:01:13 +0000160 }
161 } else {
John McCall0b7e6782011-03-24 11:26:52 +0000162 attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc,
Sean Hunt93f95f22012-06-18 16:13:52 +0000163 0, SourceLocation(), 0, 0, AttributeList::AS_GNU);
Reid Spencer5f016e22007-07-11 17:01:13 +0000164 }
165 }
166 if (ExpectAndConsume(tok::r_paren, diag::err_expected_rparen))
Reid Spencer5f016e22007-07-11 17:01:13 +0000167 SkipUntil(tok::r_paren, false);
Sean Huntbbd37c62009-11-21 08:43:09 +0000168 SourceLocation Loc = Tok.getLocation();
Sebastian Redlab197ba2009-02-09 18:23:29 +0000169 if (ExpectAndConsume(tok::r_paren, diag::err_expected_rparen)) {
170 SkipUntil(tok::r_paren, false);
171 }
John McCall7f040a92010-12-24 02:08:15 +0000172 if (endLoc)
173 *endLoc = Loc;
Reid Spencer5f016e22007-07-11 17:01:13 +0000174 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000175}
176
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000177
Michael Han6880f492012-10-03 01:56:22 +0000178/// Parse the arguments to a parameterized GNU attribute or
179/// a C++11 attribute in "gnu" namespace.
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000180void Parser::ParseGNUAttributeArgs(IdentifierInfo *AttrName,
181 SourceLocation AttrNameLoc,
182 ParsedAttributes &Attrs,
Michael Han6880f492012-10-03 01:56:22 +0000183 SourceLocation *EndLoc,
184 IdentifierInfo *ScopeName,
185 SourceLocation ScopeLoc,
186 AttributeList::Syntax Syntax) {
Caitlin Sadowskieff98fc2011-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 Gribenko0d5a0692012-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 Sadowskieff98fc2011-09-08 17:42:22 +0000206
207 ConsumeParen(); // ignore the left paren loc for now
208
Richard Smithfe0a0fb2011-10-17 21:20:17 +0000209 IdentifierInfo *ParmName = 0;
210 SourceLocation ParmLoc;
211 bool BuiltinType = false;
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000212
Richard Smithfe0a0fb2011-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 Smith5a5a9712012-04-04 06:24:32 +0000223 case tok::kw___int128:
Richard Smithfe0a0fb2011-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 Kramer4e28d9e2012-08-23 22:51:59 +0000245 ExprVector ArgExprs;
Richard Smithfe0a0fb2011-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 Sadowskieff98fc2011-09-08 17:42:22 +0000251 ConsumeToken();
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000252
Richard Smithfe0a0fb2011-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 Sadowskieff98fc2011-09-08 17:42:22 +0000259 }
Richard Smithfe0a0fb2011-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 Sadowskieff98fc2011-09-08 17:42:22 +0000264 }
Richard Smithfe0a0fb2011-10-17 21:20:17 +0000265 }
Fariborz Jahanian7a81e412011-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 Jahanianb2243432011-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 Jahanian7a81e412011-10-18 17:11:10 +0000280 SkipUntil(tok::r_paren, false, true); // skip until ')'
281 }
282 }
Richard Smithfe0a0fb2011-10-17 21:20:17 +0000283
284 SourceLocation RParen = Tok.getLocation();
285 if (!ExpectAndConsume(tok::r_paren, diag::err_expected_rparen)) {
Michael Han45bed132012-10-04 16:42:52 +0000286 SourceLocation AttrLoc = ScopeLoc.isValid() ? ScopeLoc : AttrNameLoc;
Richard Smithfe0a0fb2011-10-17 21:20:17 +0000287 AttributeList *attr =
Michael Han45bed132012-10-04 16:42:52 +0000288 Attrs.addNew(AttrName, SourceRange(AttrLoc, RParen),
Michael Han6880f492012-10-03 01:56:22 +0000289 ScopeName, ScopeLoc, ParmName, ParmLoc,
290 ArgExprs.data(), ArgExprs.size(), Syntax);
Sean Hunt8e083e72012-06-19 23:57:03 +0000291 if (BuiltinType && attr->getKind() == AttributeList::AT_IBOutletCollection)
Richard Smithfe0a0fb2011-10-17 21:20:17 +0000292 Diag(Tok, diag::err_iboutletcollection_builtintype);
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000293 }
294}
295
Chad Rosier8decdee2012-06-26 22:30:43 +0000296/// \brief Parses a single argument for a declspec, including the
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000297/// surrounding parens.
Chad Rosier8decdee2012-06-26 22:30:43 +0000298void Parser::ParseMicrosoftDeclSpecWithSingleArg(IdentifierInfo *AttrName,
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000299 SourceLocation AttrNameLoc,
300 ParsedAttributes &Attrs)
301{
302 BalancedDelimiterTracker T(*this, tok::l_paren);
Chad Rosier8decdee2012-06-26 22:30:43 +0000303 if (T.expectAndConsume(diag::err_expected_lparen_after,
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000304 AttrName->getNameStart(), tok::r_paren))
305 return;
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000306
Aaron Ballmanfc685ac2012-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 Rosier8decdee2012-06-26 22:30:43 +0000313 Attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0, SourceLocation(),
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000314 &ExprList, 1, AttributeList::AS_Declspec);
315
316 T.consumeClose();
317}
318
Chad Rosier8decdee2012-06-26 22:30:43 +0000319/// \brief Determines whether a declspec is a "simple" one requiring no
Aaron Ballmanfc685ac2012-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 Rosier8decdee2012-06-26 22:30:43 +0000340/// \brief Attempts to parse a declspec which is not simple (one that takes
Aaron Ballmanfc685ac2012-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 Rosier8decdee2012-06-26 22:30:43 +0000343void Parser::ParseComplexMicrosoftDeclSpec(IdentifierInfo *Ident,
Aaron Ballmanfc685ac2012-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 Rosier8decdee2012-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 Ballmanfc685ac2012-06-19 22:09:27 +0000357 // not.
358 if (Tok.getKind() == tok::l_paren)
359 ParseMicrosoftDeclSpecWithSingleArg(Ident, Loc, Attrs);
360 else
Chad Rosier8decdee2012-06-26 22:30:43 +0000361 Attrs.addNew(Ident, Loc, 0, Loc, 0, SourceLocation(), 0, 0,
Aaron Ballmanfc685ac2012-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 Rosier8decdee2012-06-26 22:30:43 +0000365 // assignment expressions as a parameter, but the lhs of the assignment
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000366 // must be named get or put.
367 //
Chad Rosier8decdee2012-06-26 22:30:43 +0000368 // For right now, we will just skip to the closing right paren of the
Aaron Ballmanfc685ac2012-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 Rosier8decdee2012-06-26 22:30:43 +0000375 if (T.expectAndConsume(diag::err_expected_lparen_after,
Aaron Ballmanfc685ac2012-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 Rosier8decdee2012-06-26 22:30:43 +0000384 // attribute, we'd have to split the valid declspec spelling logic into
Aaron Ballmanfc685ac2012-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 Friedmana23b4852009-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 Ballmanfc685ac2012-06-19 22:09:27 +0000402void Parser::ParseMicrosoftDeclSpec(ParsedAttributes &Attrs) {
Steve Narofff59e17e2008-12-24 20:59:21 +0000403 assert(Tok.is(tok::kw___declspec) && "Not a declspec!");
Eli Friedmana23b4852009-06-08 07:21:15 +0000404
Steve Narofff59e17e2008-12-24 20:59:21 +0000405 ConsumeToken();
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000406 BalancedDelimiterTracker T(*this, tok::l_paren);
Chad Rosier8decdee2012-06-26 22:30:43 +0000407 if (T.expectAndConsume(diag::err_expected_lparen_after, "__declspec",
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000408 tok::r_paren))
John McCall7f040a92010-12-24 02:08:15 +0000409 return;
Jakob Stoklund Olesen35329362012-06-19 21:48:43 +0000410
Chad Rosier8decdee2012-06-26 22:30:43 +0000411 // An empty declspec is perfectly legal and should not warn. Additionally,
Aaron Ballmanfc685ac2012-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 Rosier8decdee2012-06-26 22:30:43 +0000417 if (!IsString && Tok.getKind() != tok::identifier &&
Aaron Ballmanfc685ac2012-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 Olesen35329362012-06-19 21:48:43 +0000422 }
Aaron Ballmanfc685ac2012-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 Olesen35329362012-06-19 21:48:43 +0000433 }
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000434 AttrName = PP.getIdentifierInfo(Str);
435 AttrNameLoc = ConsumeStringToken();
Jakob Stoklund Olesen35329362012-06-19 21:48:43 +0000436 } else {
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000437 AttrName = Tok.getIdentifierInfo();
438 AttrNameLoc = ConsumeToken();
Jakob Stoklund Olesen35329362012-06-19 21:48:43 +0000439 }
Chad Rosier8decdee2012-06-26 22:30:43 +0000440
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000441 if (IsString || IsSimpleMicrosoftDeclSpec(AttrName))
Chad Rosier8decdee2012-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 Ballmanfc685ac2012-06-19 22:09:27 +0000444 // (for instance, SAL declspecs in older versions of MSVC).
445 //
Chad Rosier8decdee2012-06-26 22:30:43 +0000446 // Alternatively, if the identifier is a simple one, then it requires no
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000447 // arguments and can be turned into an attribute directly.
Chad Rosier8decdee2012-06-26 22:30:43 +0000448 Attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0, SourceLocation(),
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000449 0, 0, AttributeList::AS_Declspec);
450 else
451 ParseComplexMicrosoftDeclSpec(AttrName, AttrNameLoc, Attrs);
Jakob Stoklund Olesen35329362012-06-19 21:48:43 +0000452 }
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000453 T.consumeClose();
Eli Friedman290eeb02009-06-08 23:27:34 +0000454}
455
John McCall7f040a92010-12-24 02:08:15 +0000456void Parser::ParseMicrosoftTypeAttributes(ParsedAttributes &attrs) {
Eli Friedman290eeb02009-06-08 23:27:34 +0000457 // Treat these like attributes
Eli Friedman290eeb02009-06-08 23:27:34 +0000458 while (Tok.is(tok::kw___fastcall) || Tok.is(tok::kw___stdcall) ||
Douglas Gregorf813a2c2010-05-18 16:57:00 +0000459 Tok.is(tok::kw___thiscall) || Tok.is(tok::kw___cdecl) ||
Francois Pichet3bd9aa42011-08-18 09:59:55 +0000460 Tok.is(tok::kw___ptr64) || Tok.is(tok::kw___w64) ||
Chad Rosierccbb4022012-12-21 21:27:13 +0000461 Tok.is(tok::kw___ptr32) || Tok.is(tok::kw___unaligned)) {
Eli Friedman290eeb02009-06-08 23:27:34 +0000462 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
463 SourceLocation AttrNameLoc = ConsumeToken();
John McCall0b7e6782011-03-24 11:26:52 +0000464 attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0,
Richard Smith5cd532c2013-01-29 01:24:26 +0000465 SourceLocation(), 0, 0, AttributeList::AS_Keyword);
Eli Friedman290eeb02009-06-08 23:27:34 +0000466 }
Steve Narofff59e17e2008-12-24 20:59:21 +0000467}
468
John McCall7f040a92010-12-24 02:08:15 +0000469void Parser::ParseBorlandTypeAttributes(ParsedAttributes &attrs) {
Dawn Perchik52fc3142010-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 McCall0b7e6782011-03-24 11:26:52 +0000474 attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0,
Richard Smith5cd532c2013-01-29 01:24:26 +0000475 SourceLocation(), 0, 0, AttributeList::AS_Keyword);
Dawn Perchik52fc3142010-09-03 01:29:35 +0000476 }
John McCall7f040a92010-12-24 02:08:15 +0000477}
478
Peter Collingbournef315fa82011-02-14 01:42:53 +0000479void Parser::ParseOpenCLAttributes(ParsedAttributes &attrs) {
480 // Treat these like attributes
481 while (Tok.is(tok::kw___kernel)) {
Richard Smith5cd532c2013-01-29 01:24:26 +0000482 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
Peter Collingbournef315fa82011-02-14 01:42:53 +0000483 SourceLocation AttrNameLoc = ConsumeToken();
Richard Smith5cd532c2013-01-29 01:24:26 +0000484 attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0,
485 SourceLocation(), 0, 0, AttributeList::AS_Keyword);
Peter Collingbournef315fa82011-02-14 01:42:53 +0000486 }
487}
488
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000489void Parser::ParseOpenCLQualifiers(DeclSpec &DS) {
Richard Smith5cd532c2013-01-29 01:24:26 +0000490 // FIXME: The mapping from attribute spelling to semantics should be
491 // performed in Sema, not here.
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000492 SourceLocation Loc = Tok.getLocation();
493 switch(Tok.getKind()) {
494 // OpenCL qualifiers:
495 case tok::kw___private:
Chad Rosier8decdee2012-06-26 22:30:43 +0000496 case tok::kw_private:
John McCall0b7e6782011-03-24 11:26:52 +0000497 DS.getAttributes().addNewInteger(
Chad Rosier8decdee2012-06-26 22:30:43 +0000498 Actions.getASTContext(),
John McCall0b7e6782011-03-24 11:26:52 +0000499 PP.getIdentifierInfo("address_space"), Loc, 0);
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000500 break;
Chad Rosier8decdee2012-06-26 22:30:43 +0000501
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000502 case tok::kw___global:
John McCall0b7e6782011-03-24 11:26:52 +0000503 DS.getAttributes().addNewInteger(
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000504 Actions.getASTContext(),
John McCall0b7e6782011-03-24 11:26:52 +0000505 PP.getIdentifierInfo("address_space"), Loc, LangAS::opencl_global);
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000506 break;
Chad Rosier8decdee2012-06-26 22:30:43 +0000507
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000508 case tok::kw___local:
John McCall0b7e6782011-03-24 11:26:52 +0000509 DS.getAttributes().addNewInteger(
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000510 Actions.getASTContext(),
John McCall0b7e6782011-03-24 11:26:52 +0000511 PP.getIdentifierInfo("address_space"), Loc, LangAS::opencl_local);
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000512 break;
Chad Rosier8decdee2012-06-26 22:30:43 +0000513
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000514 case tok::kw___constant:
John McCall0b7e6782011-03-24 11:26:52 +0000515 DS.getAttributes().addNewInteger(
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000516 Actions.getASTContext(),
John McCall0b7e6782011-03-24 11:26:52 +0000517 PP.getIdentifierInfo("address_space"), Loc, LangAS::opencl_constant);
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000518 break;
Chad Rosier8decdee2012-06-26 22:30:43 +0000519
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000520 case tok::kw___read_only:
John McCall0b7e6782011-03-24 11:26:52 +0000521 DS.getAttributes().addNewInteger(
Chad Rosier8decdee2012-06-26 22:30:43 +0000522 Actions.getASTContext(),
John McCall0b7e6782011-03-24 11:26:52 +0000523 PP.getIdentifierInfo("opencl_image_access"), Loc, CLIA_read_only);
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000524 break;
Chad Rosier8decdee2012-06-26 22:30:43 +0000525
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000526 case tok::kw___write_only:
John McCall0b7e6782011-03-24 11:26:52 +0000527 DS.getAttributes().addNewInteger(
Chad Rosier8decdee2012-06-26 22:30:43 +0000528 Actions.getASTContext(),
John McCall0b7e6782011-03-24 11:26:52 +0000529 PP.getIdentifierInfo("opencl_image_access"), Loc, CLIA_write_only);
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000530 break;
Chad Rosier8decdee2012-06-26 22:30:43 +0000531
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000532 case tok::kw___read_write:
John McCall0b7e6782011-03-24 11:26:52 +0000533 DS.getAttributes().addNewInteger(
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000534 Actions.getASTContext(),
John McCall0b7e6782011-03-24 11:26:52 +0000535 PP.getIdentifierInfo("opencl_image_access"), Loc, CLIA_read_write);
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000536 break;
537 default: break;
538 }
539}
540
Douglas Gregor0a0d2b12011-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 Noblesmithf7ccbad2012-02-05 02:13:05 +0000560 SmallString<512> Buffer;
Douglas Gregor0a0d2b12011-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 Rosier8decdee2012-06-26 22:30:43 +0000612
Douglas Gregor0a0d2b12011-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 Rosier8decdee2012-06-26 22:30:43 +0000619 return VersionTuple(Major, Minor);
Douglas Gregor0a0d2b12011-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 Rosier8decdee2012-06-26 22:30:43 +0000626 return VersionTuple();
Douglas Gregor0a0d2b12011-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 Jahanian006e42f2011-12-10 00:28:41 +0000649/// 'availability' '(' platform ',' version-arg-list, opt-message')'
Douglas Gregor0a0d2b12011-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 Gregor93a70672012-03-11 04:53:21 +0000661/// 'obsoleted' = version
Douglas Gregorb53e4172011-03-26 03:35:55 +0000662/// 'unavailable'
Fariborz Jahanian006e42f2011-12-10 00:28:41 +0000663/// opt-message:
664/// 'message' '=' <string>
Douglas Gregor0a0d2b12011-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 Jahanian006e42f2011-12-10 00:28:41 +0000674 ExprResult MessageExpr;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000675
676 // Opening '('.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000677 BalancedDelimiterTracker T(*this, tok::l_paren);
678 if (T.consumeOpen()) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000679 Diag(Tok, diag::err_expected_lparen);
680 return;
681 }
Douglas Gregor0a0d2b12011-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 Gregorb53e4172011-03-26 03:35:55 +0000702 Ident_unavailable = PP.getIdentifierInfo("unavailable");
Fariborz Jahanian006e42f2011-12-10 00:28:41 +0000703 Ident_message = PP.getIdentifierInfo("message");
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000704 }
705
706 // Parse the set of introductions/deprecations/removals.
Douglas Gregorb53e4172011-03-26 03:35:55 +0000707 SourceLocation UnavailableLoc;
Douglas Gregor0a0d2b12011-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 Gregorb53e4172011-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 Rosier8decdee2012-06-26 22:30:43 +0000721 }
Douglas Gregorb53e4172011-03-26 03:35:55 +0000722 UnavailableLoc = KeywordLoc;
723
724 if (Tok.isNot(tok::comma))
725 break;
726
727 ConsumeToken();
728 continue;
Chad Rosier8decdee2012-06-26 22:30:43 +0000729 }
730
Douglas Gregor0a0d2b12011-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 Jahanian006e42f2011-12-10 00:28:41 +0000738 if (Keyword == Ident_message) {
739 if (!isTokenStringLiteral()) {
Andy Gibbs97f84612012-11-17 19:16:52 +0000740 Diag(Tok, diag::err_expected_string_literal)
741 << /*Source='availability attribute'*/2;
Fariborz Jahanian006e42f2011-12-10 00:28:41 +0000742 SkipUntil(tok::r_paren);
743 return;
744 }
745 MessageExpr = ParseStringLiteralExpression();
746 break;
747 }
Chad Rosier8decdee2012-06-26 22:30:43 +0000748
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000749 SourceRange VersionRange;
750 VersionTuple Version = ParseVersionTuple(VersionRange);
Chad Rosier8decdee2012-06-26 22:30:43 +0000751
Douglas Gregor0a0d2b12011-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 Rosier8decdee2012-06-26 22:30:43 +0000764 else
Douglas Gregor0a0d2b12011-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 Rosier8decdee2012-06-26 22:30:43 +0000770 << Keyword
Douglas Gregor0a0d2b12011-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 Gregor4a8dfb52011-10-12 16:37:45 +0000790 if (T.consumeClose())
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000791 return;
792
793 if (endLoc)
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000794 *endLoc = T.getCloseLocation();
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000795
Douglas Gregorb53e4172011-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 Gregor0a0d2b12011-03-23 00:50:03 +0000815 // Record this attribute
Chad Rosier8decdee2012-06-26 22:30:43 +0000816 attrs.addNew(&Availability,
817 SourceRange(AvailabilityLoc, T.getCloseLocation()),
Fariborz Jahanianf96708d2012-01-23 23:38:32 +0000818 0, AvailabilityLoc,
John McCall0b7e6782011-03-24 11:26:52 +0000819 Platform, PlatformLoc,
820 Changes[Introduced],
821 Changes[Deprecated],
Chad Rosier8decdee2012-06-26 22:30:43 +0000822 Changes[Obsoleted],
Fariborz Jahanian006e42f2011-12-10 00:28:41 +0000823 UnavailableLoc, MessageExpr.take(),
Sean Hunt93f95f22012-06-18 16:13:52 +0000824 AttributeList::AS_GNU);
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000825}
826
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000827
Bill Wendlingad017fa2012-12-20 19:22:21 +0000828// Late Parsed Attributes:
Caitlin Sadowskieff98fc2011-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 Hutchinsc24a2332012-02-16 16:50:43 +0000838 Self->ParseLexedAttribute(*this, true, false);
Caitlin Sadowskieff98fc2011-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 Gregorcefc3af2012-04-16 07:05:22 +0000852 // Set or update the scope flags.
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000853 bool AlreadyHasClassScope = Class.TopLevelClass;
Douglas Gregorcefc3af2012-04-16 07:05:22 +0000854 unsigned ScopeFlags = Scope::ClassScope|Scope::DeclScope;
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000855 ParseScope ClassScope(this, ScopeFlags, !AlreadyHasClassScope);
856 ParseScopeFlags ClassScopeFlags(this, ScopeFlags, AlreadyHasClassScope);
857
DeLesley Hutchinscf2fa2f2012-04-06 15:10:17 +0000858 // Enter the scope of nested classes
859 if (!AlreadyHasClassScope)
860 Actions.ActOnStartDelayedMemberDeclarations(getCurScope(),
861 Class.TagOrTemplate);
Benjamin Kramer268efba2012-05-17 12:01:52 +0000862 if (!Class.LateParsedDeclarations.empty()) {
Douglas Gregorcefc3af2012-04-16 07:05:22 +0000863 for (unsigned i = 0, ni = Class.LateParsedDeclarations.size(); i < ni; ++i){
864 Class.LateParsedDeclarations[i]->ParseLexedAttributes();
865 }
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000866 }
Chad Rosier8decdee2012-06-26 22:30:43 +0000867
DeLesley Hutchinscf2fa2f2012-04-06 15:10:17 +0000868 if (!AlreadyHasClassScope)
869 Actions.ActOnFinishDelayedMemberDeclarations(getCurScope(),
870 Class.TagOrTemplate);
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000871}
872
DeLesley Hutchinsc24a2332012-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 Hutchins161db022012-11-02 21:44:32 +0000877 assert(LAs.parseSoon() &&
878 "Attribute list should be marked for immediate parsing.");
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +0000879 for (unsigned i = 0, ni = LAs.size(); i < ni; ++i) {
DeLesley Hutchins95526a42012-08-15 22:41:04 +0000880 if (D)
881 LAs[i]->addDecl(D);
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +0000882 ParseLexedAttribute(*LAs[i], EnterScope, OnDefinition);
Benjamin Kramerd306cf72012-04-14 12:44:47 +0000883 delete LAs[i];
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +0000884 }
885 LAs.clear();
886}
887
888
Caitlin Sadowskieff98fc2011-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 Rosier8decdee2012-06-26 22:30:43 +0000892/// create an attribute with the arguments filled in. We add this
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000893/// to the Attribute list for the decl.
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +0000894void Parser::ParseLexedAttribute(LateParsedAttribute &LA,
895 bool EnterScope, bool OnDefinition) {
Caitlin Sadowskieff98fc2011-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 Hutchinsc24a2332012-02-16 16:50:43 +0000906 if (OnDefinition && !IsThreadSafetyAttribute(LA.AttrName.getName())) {
Richard Smithcd8ab512013-01-17 01:30:42 +0000907 // FIXME: Do not warn on C++11 attributes, once we start supporting
908 // them here.
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +0000909 Diag(Tok, diag::warn_attribute_on_function_definition)
910 << LA.AttrName.getName();
911 }
912
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000913 ParsedAttributes Attrs(AttrFactory);
914 SourceLocation endLoc;
915
DeLesley Hutchinsd30fb9e2012-08-20 21:32:18 +0000916 if (LA.Decls.size() > 0) {
DeLesley Hutchins2287c5e2012-03-02 22:12:59 +0000917 Decl *D = LA.Decls[0];
DeLesley Hutchinsd30fb9e2012-08-20 21:32:18 +0000918 NamedDecl *ND = dyn_cast<NamedDecl>(D);
919 RecordDecl *RD = dyn_cast_or_null<RecordDecl>(D->getDeclContext());
Caitlin Sadowskied9d84a2011-09-08 17:42:31 +0000920
DeLesley Hutchinsd30fb9e2012-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 Sadowskieff98fc2011-09-08 17:42:22 +0000925
DeLesley Hutchinsd30fb9e2012-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 Hutchins2287c5e2012-03-02 22:12:59 +0000932
DeLesley Hutchinsd30fb9e2012-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 Hutchins2287c5e2012-03-02 22:12:59 +0000938
Michael Han6880f492012-10-03 01:56:22 +0000939 ParseGNUAttributeArgs(&LA.AttrName, LA.AttrNameLoc, Attrs, &endLoc,
Michael Han45bed132012-10-04 16:42:52 +0000940 0, SourceLocation(), AttributeList::AS_GNU);
DeLesley Hutchinsd30fb9e2012-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 Han6880f492012-10-03 01:56:22 +0000952 ParseGNUAttributeArgs(&LA.AttrName, LA.AttrNameLoc, Attrs, &endLoc,
Michael Han45bed132012-10-04 16:42:52 +0000953 0, SourceLocation(), AttributeList::AS_GNU);
DeLesley Hutchins2287c5e2012-03-02 22:12:59 +0000954 }
DeLesley Hutchins7ec419a2012-03-02 22:29:50 +0000955 } else {
956 Diag(Tok, diag::warn_attribute_no_decl) << LA.AttrName.getName();
Caitlin Sadowskied9d84a2011-09-08 17:42:31 +0000957 }
958
DeLesley Hutchins2287c5e2012-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 Sadowskieff98fc2011-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 Gregord78ef5b2012-03-08 01:00:17 +0000971 ConsumeAnyToken();
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000972 }
973}
974
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000975/// \brief Wrapper around a case statement checking if AttrName is
976/// one of the thread safety attributes
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +0000977bool Parser::IsThreadSafetyAttribute(StringRef AttrName) {
Caitlin Sadowskib51e0312011-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 Sadowskieff98fc2011-09-08 17:42:22 +00001016 assert(Tok.is(tok::l_paren) && "Attribute arg list not starting with '('");
Caitlin Sadowskib51e0312011-08-09 17:59:31 +00001017
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001018 BalancedDelimiterTracker T(*this, tok::l_paren);
1019 T.consumeOpen();
Chad Rosier8decdee2012-06-26 22:30:43 +00001020
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00001021 ExprVector ArgExprs;
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001022 bool ArgExprsOk = true;
Chad Rosier8decdee2012-06-26 22:30:43 +00001023
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001024 // now parse the list of expressions
DeLesley Hutchins4805f152011-12-14 19:36:06 +00001025 while (Tok.isNot(tok::r_paren)) {
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001026 ExprResult ArgExpr(ParseAssignmentExpression());
1027 if (ArgExpr.isInvalid()) {
1028 ArgExprsOk = false;
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001029 T.consumeClose();
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001030 break;
1031 } else {
1032 ArgExprs.push_back(ArgExpr.release());
Caitlin Sadowskib51e0312011-08-09 17:59:31 +00001033 }
Caitlin Sadowskieff98fc2011-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 Hutchins23323e02012-01-20 22:50:54 +00001039 if (ArgExprsOk && !T.consumeClose()) {
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001040 Attrs.addNew(&AttrName, AttrNameLoc, 0, AttrNameLoc, 0, SourceLocation(),
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00001041 ArgExprs.data(), ArgExprs.size(), AttributeList::AS_GNU);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +00001042 }
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001043 if (EndLoc)
1044 *EndLoc = T.getCloseLocation();
Caitlin Sadowskib51e0312011-08-09 17:59:31 +00001045}
1046
Dmitri Gribenko0d5a0692012-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 Smith6ee326a2012-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 Carruth2c6dbd72012-04-10 16:03:08 +00001142 llvm_unreachable("All cases handled above.");
Richard Smith6ee326a2012-04-10 01:32:12 +00001143}
1144
John McCall7f040a92010-12-24 02:08:15 +00001145void Parser::DiagnoseProhibitedAttributes(ParsedAttributesWithRange &attrs) {
1146 Diag(attrs.Range.getBegin(), diag::err_attributes_not_allowed)
1147 << attrs.Range;
Dawn Perchik52fc3142010-09-03 01:29:35 +00001148}
1149
Michael Hanf64231e2012-11-06 19:34:54 +00001150void Parser::ProhibitCXX11Attributes(ParsedAttributesWithRange &attrs) {
1151 AttributeList *AttrList = attrs.getList();
1152 while (AttrList) {
Richard Smith4e24f0f2013-01-02 12:01:23 +00001153 if (AttrList->isCXX11Attribute()) {
Michael Hanf64231e2012-11-06 19:34:54 +00001154 Diag(AttrList->getLoc(), diag::warn_attribute_no_decl)
1155 << AttrList->getName();
1156 AttrList->setInvalid();
1157 }
1158 AttrList = AttrList->getNext();
1159 }
1160}
1161
Reid Spencer5f016e22007-07-11 17:01:13 +00001162/// ParseDeclaration - Parse a full 'declaration', which consists of
1163/// declaration-specifiers, some number of declarators, and a semicolon.
Chris Lattner97144fc2009-04-02 04:16:50 +00001164/// 'Context' should be a Declarator::TheContext value. This returns the
1165/// location of the semicolon in DeclEnd.
Chris Lattner8f08cb72007-08-25 06:57:03 +00001166///
1167/// declaration: [C99 6.7]
1168/// block-declaration ->
1169/// simple-declaration
1170/// others [FIXME]
Douglas Gregoradcac882008-12-01 23:54:00 +00001171/// [C++] template-declaration
Chris Lattner8f08cb72007-08-25 06:57:03 +00001172/// [C++] namespace-definition
Douglas Gregorf780abc2008-12-30 03:27:21 +00001173/// [C++] using-directive
Douglas Gregord7f37bf2009-06-22 23:06:13 +00001174/// [C++] using-declaration
Richard Smith534986f2012-04-14 00:33:13 +00001175/// [C++11/C11] static_assert-declaration
Chris Lattner8f08cb72007-08-25 06:57:03 +00001176/// others... [FIXME]
1177///
Fariborz Jahanianc5be7b02010-09-28 20:42:35 +00001178Parser::DeclGroupPtrTy Parser::ParseDeclaration(StmtVector &Stmts,
1179 unsigned Context,
Sean Huntbbd37c62009-11-21 08:43:09 +00001180 SourceLocation &DeclEnd,
John McCall7f040a92010-12-24 02:08:15 +00001181 ParsedAttributesWithRange &attrs) {
Argyrios Kyrtzidis36d36802010-06-17 10:52:18 +00001182 ParenBraceBracketBalancer BalancerRAIIObj(*this);
Fariborz Jahaniane8cff362011-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 Rosier8decdee2012-06-26 22:30:43 +00001186
John McCalld226f652010-08-21 09:40:31 +00001187 Decl *SingleDecl = 0;
Richard Smithc89edf52011-07-01 19:46:12 +00001188 Decl *OwnedType = 0;
Chris Lattner8f08cb72007-08-25 06:57:03 +00001189 switch (Tok.getKind()) {
Douglas Gregoradcac882008-12-01 23:54:00 +00001190 case tok::kw_template:
Douglas Gregor1426e532009-05-12 21:31:51 +00001191 case tok::kw_export:
John McCall7f040a92010-12-24 02:08:15 +00001192 ProhibitAttributes(attrs);
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001193 SingleDecl = ParseDeclarationStartingWithTemplate(Context, DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +00001194 break;
Sebastian Redld078e642010-08-27 23:12:46 +00001195 case tok::kw_inline:
Sebastian Redl88e64ca2010-08-31 00:36:45 +00001196 // Could be the start of an inline namespace. Allowed as an ext in C++03.
David Blaikie4e4d0842012-03-11 07:00:24 +00001197 if (getLangOpts().CPlusPlus && NextToken().is(tok::kw_namespace)) {
John McCall7f040a92010-12-24 02:08:15 +00001198 ProhibitAttributes(attrs);
Sebastian Redld078e642010-08-27 23:12:46 +00001199 SourceLocation InlineLoc = ConsumeToken();
1200 SingleDecl = ParseNamespace(Context, DeclEnd, InlineLoc);
1201 break;
1202 }
Chad Rosier8decdee2012-06-26 22:30:43 +00001203 return ParseSimpleDeclaration(Stmts, Context, DeclEnd, attrs,
Fariborz Jahanianc5be7b02010-09-28 20:42:35 +00001204 true);
Chris Lattner8f08cb72007-08-25 06:57:03 +00001205 case tok::kw_namespace:
John McCall7f040a92010-12-24 02:08:15 +00001206 ProhibitAttributes(attrs);
Chris Lattner97144fc2009-04-02 04:16:50 +00001207 SingleDecl = ParseNamespace(Context, DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +00001208 break;
Douglas Gregorf780abc2008-12-30 03:27:21 +00001209 case tok::kw_using:
John McCall78b81052010-11-10 02:40:36 +00001210 SingleDecl = ParseUsingDirectiveOrDeclaration(Context, ParsedTemplateInfo(),
Richard Smithc89edf52011-07-01 19:46:12 +00001211 DeclEnd, attrs, &OwnedType);
Chris Lattner682bf922009-03-29 16:50:03 +00001212 break;
Anders Carlsson511d7ab2009-03-11 16:27:10 +00001213 case tok::kw_static_assert:
Peter Collingbournec6eb44b2011-04-15 00:35:57 +00001214 case tok::kw__Static_assert:
John McCall7f040a92010-12-24 02:08:15 +00001215 ProhibitAttributes(attrs);
Chris Lattner97144fc2009-04-02 04:16:50 +00001216 SingleDecl = ParseStaticAssertDeclaration(DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +00001217 break;
Chris Lattner8f08cb72007-08-25 06:57:03 +00001218 default:
John McCall7f040a92010-12-24 02:08:15 +00001219 return ParseSimpleDeclaration(Stmts, Context, DeclEnd, attrs, true);
Chris Lattner8f08cb72007-08-25 06:57:03 +00001220 }
Chad Rosier8decdee2012-06-26 22:30:43 +00001221
Chris Lattner682bf922009-03-29 16:50:03 +00001222 // This routine returns a DeclGroup, if the thing we parsed only contains a
Richard Smithc89edf52011-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 Lattner8f08cb72007-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] ';'
Sean Hunt2edf0a22012-06-23 05:07:58 +00001230/// [C++11] attribute-specifier-seq decl-specifier-seq[opt]
1231/// init-declarator-list ';'
Chris Lattner8f08cb72007-08-25 06:57:03 +00001232///[C90/C++]init-declarator-list ';' [TODO]
1233/// [OMP] threadprivate-directive [TODO]
Chris Lattnercd147752009-03-29 17:27:48 +00001234///
Sean Hunt2edf0a22012-06-23 05:07:58 +00001235/// for-range-declaration: [C++11 6.5p1: stmt.ranged]
Richard Smithad762fc2011-04-14 22:09:26 +00001236/// attribute-specifier-seq[opt] type-specifier-seq declarator
1237///
Chris Lattnercd147752009-03-29 17:27:48 +00001238/// If RequireSemi is false, this does not check for a ';' at the end of the
Chris Lattner5c5db552010-04-05 18:18:31 +00001239/// declaration. If it is true, it checks for and eats it.
Richard Smithad762fc2011-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.
Sean Hunt2edf0a22012-06-23 05:07:58 +00001244Parser::DeclGroupPtrTy
1245Parser::ParseSimpleDeclaration(StmtVector &Stmts, unsigned Context,
1246 SourceLocation &DeclEnd,
1247 ParsedAttributesWithRange &attrs,
1248 bool RequireSemi, ForRangeInit *FRI) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001249 // Parse the common declaration-specifiers piece.
John McCall54abf7d2009-11-04 02:18:39 +00001250 ParsingDeclSpec DS(*this);
John McCall7f040a92010-12-24 02:08:15 +00001251 DS.takeAttributesFrom(attrs);
Douglas Gregor312eadb2011-04-24 05:37:28 +00001252
Douglas Gregor0efc2c12010-01-13 17:31:36 +00001253 ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS_none,
Richard Smith34b41d92011-02-20 03:19:35 +00001254 getDeclSpecContextFromDeclaratorContext(Context));
Abramo Bagnara06284c12012-01-07 10:52:36 +00001255
Reid Spencer5f016e22007-07-11 17:01:13 +00001256 // C99 6.7.2.3p6: Handle "struct-or-union identifier;", "enum { X };"
1257 // declaration-specifiers init-declarator-list[opt] ';'
Chris Lattner04d66662007-10-09 17:33:22 +00001258 if (Tok.is(tok::semi)) {
Argyrios Kyrtzidis5641b0d2012-05-16 23:49:15 +00001259 DeclEnd = Tok.getLocation();
Chris Lattner5c5db552010-04-05 18:18:31 +00001260 if (RequireSemi) ConsumeToken();
John McCalld226f652010-08-21 09:40:31 +00001261 Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS_none,
Douglas Gregor312eadb2011-04-24 05:37:28 +00001262 DS);
John McCall54abf7d2009-11-04 02:18:39 +00001263 DS.complete(TheDecl);
Chris Lattner682bf922009-03-29 16:50:03 +00001264 return Actions.ConvertDeclToDeclGroup(TheDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +00001265 }
Chad Rosier8decdee2012-06-26 22:30:43 +00001266
1267 return ParseDeclGroup(DS, Context, /*FunctionDefs=*/ false, &DeclEnd, FRI);
John McCalld8ac0572009-11-03 19:26:08 +00001268}
Mike Stump1eb44332009-09-09 15:08:12 +00001269
Richard Smith0706df42011-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 Blaikie4e4d0842012-03-11 07:00:24 +00001288 return getLangOpts().CPlusPlus;
Richard Smith0706df42011-10-19 21:33:05 +00001289
Richard Smith1c94c162012-01-09 22:31:44 +00001290 case tok::l_square: // Might be an attribute on an unnamed bit-field.
Richard Smith80ad52f2013-01-02 11:42:31 +00001291 return Context == Declarator::MemberContext && getLangOpts().CPlusPlus11 &&
Richard Smith1c94c162012-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 Blaikie4e4d0842012-03-11 07:00:24 +00001295 return Context == Declarator::MemberContext || getLangOpts().CPlusPlus;
Richard Smith1c94c162012-01-09 22:31:44 +00001296
Richard Smith0706df42011-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 Smith1c94c162012-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 Blaikie4e4d0842012-03-11 07:00:24 +00001322 (getLangOpts().CPlusPlus && Context == Declarator::FileContext);
Richard Smith1c94c162012-01-09 22:31:44 +00001323
1324 case tok::identifier: // Possible virt-specifier.
Richard Smith4e24f0f2013-01-02 12:01:23 +00001325 return getLangOpts().CPlusPlus11 && isCXX11VirtSpecifier(NextToken());
Richard Smith0706df42011-10-19 21:33:05 +00001326
1327 default:
1328 return false;
1329 }
1330
1331 default:
1332 return false;
1333 }
1334}
1335
Richard Smith994d73f2012-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 Rose94f29f42012-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 Smith994d73f2012-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 Rose94f29f42012-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 Smith994d73f2012-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 McCalld8ac0572009-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 McCall54abf7d2009-11-04 02:18:39 +00001418Parser::DeclGroupPtrTy Parser::ParseDeclGroup(ParsingDeclSpec &DS,
1419 unsigned Context,
John McCalld8ac0572009-11-03 19:26:08 +00001420 bool AllowFunctionDefinitions,
Richard Smithad762fc2011-04-14 22:09:26 +00001421 SourceLocation *DeclEnd,
1422 ForRangeInit *FRI) {
John McCalld8ac0572009-11-03 19:26:08 +00001423 // Parse the first declarator.
John McCall54abf7d2009-11-04 02:18:39 +00001424 ParsingDeclarator D(*this, DS, static_cast<Declarator::TheContext>(Context));
John McCalld8ac0572009-11-03 19:26:08 +00001425 ParseDeclarator(D);
Chris Lattnercd147752009-03-29 17:27:48 +00001426
John McCalld8ac0572009-11-03 19:26:08 +00001427 // Bail out if the first declarator didn't seem well-formed.
1428 if (!D.hasName() && !D.mayOmitIdentifier()) {
Richard Smith994d73f2012-04-11 20:59:20 +00001429 SkipMalformedDecl();
John McCalld8ac0572009-11-03 19:26:08 +00001430 return DeclGroupPtrTy();
Chris Lattner23c4b182009-03-29 17:18:04 +00001431 }
Mike Stump1eb44332009-09-09 15:08:12 +00001432
DeLesley Hutchinsc24a2332012-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 Hutchins161db022012-11-02 21:44:32 +00001435 // These will be parsed in ParseFunctionDefinition or ParseLexedAttrList.
1436 LateParsedAttrList LateParsedAttrs(true);
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001437 if (D.isFunctionDeclarator())
1438 MaybeParseGNUAttributes(D, &LateParsedAttrs);
1439
Chris Lattnerc82daef2010-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 Jahanianbe1d4ec2012-08-10 15:54:40 +00001445 !isDeclarationAfterDeclarator()) {
Chad Rosier8decdee2012-06-26 22:30:43 +00001446
Chris Lattner004659a2010-07-11 22:42:07 +00001447 if (isStartOfFunctionDefinition(D)) {
John McCalld8ac0572009-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 Hutchinsc24a2332012-02-16 16:50:43 +00001455 Decl *TheDecl =
1456 ParseFunctionDefinition(D, ParsedTemplateInfo(), &LateParsedAttrs);
John McCalld8ac0572009-11-03 19:26:08 +00001457 return Actions.ConvertDeclToDeclGroup(TheDecl);
Chris Lattner004659a2010-07-11 22:42:07 +00001458 }
Chad Rosier8decdee2012-06-26 22:30:43 +00001459
Chris Lattner004659a2010-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 McCalld8ac0572009-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 Hutchinsc24a2332012-02-16 16:50:43 +00001473 if (ParseAsmAttributesAfterDeclarator(D))
Richard Smithad762fc2011-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 Redldbef1bb2011-06-05 12:23:16 +00001481 if (Tok.is(tok::l_brace))
1482 FRI->RangeExpr = ParseBraceInitializer();
1483 else
1484 FRI->RangeExpr = ParseExpression();
Richard Smithad762fc2011-04-14 22:09:26 +00001485 Decl *ThisDecl = Actions.ActOnDeclarator(getCurScope(), D);
1486 Actions.ActOnCXXForRangeDecl(ThisDecl);
1487 Actions.FinalizeDeclaration(ThisDecl);
John McCall6895a642012-01-27 01:29:43 +00001488 D.complete(ThisDecl);
Richard Smithad762fc2011-04-14 22:09:26 +00001489 return Actions.FinalizeDeclaratorGroup(getCurScope(), DS, &ThisDecl, 1);
1490 }
1491
Chris Lattner5f9e2722011-07-23 10:55:15 +00001492 SmallVector<Decl *, 8> DeclsInGroup;
Richard Smithad762fc2011-04-14 22:09:26 +00001493 Decl *FirstDecl = ParseDeclarationAfterDeclaratorAndAttributes(D);
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001494 if (LateParsedAttrs.size() > 0)
1495 ParseLexedAttributeList(LateParsedAttrs, FirstDecl, true, false);
John McCall54abf7d2009-11-04 02:18:39 +00001496 D.complete(FirstDecl);
John McCalld226f652010-08-21 09:40:31 +00001497 if (FirstDecl)
John McCalld8ac0572009-11-03 19:26:08 +00001498 DeclsInGroup.push_back(FirstDecl);
1499
Richard Smith0706df42011-10-19 21:33:05 +00001500 bool ExpectSemi = Context != Declarator::ForContext;
Fariborz Jahanian6c89eaf2012-07-02 23:37:09 +00001501
John McCalld8ac0572009-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 Smith0706df42011-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 McCalld8ac0572009-11-03 19:26:08 +00001516
1517 // Parse the next declarator.
1518 D.clear();
Richard Smith7984de32012-01-12 23:53:29 +00001519 D.setCommaLoc(CommaLoc);
John McCalld8ac0572009-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 McCall7f040a92010-12-24 02:08:15 +00001528 MaybeParseGNUAttributes(D);
John McCalld8ac0572009-11-03 19:26:08 +00001529
1530 ParseDeclarator(D);
Fariborz Jahanian9baf39d2012-01-13 00:14:12 +00001531 if (!D.isInvalidType()) {
1532 Decl *ThisDecl = ParseDeclarationAfterDeclarator(D);
1533 D.complete(ThisDecl);
1534 if (ThisDecl)
Chad Rosier8decdee2012-06-26 22:30:43 +00001535 DeclsInGroup.push_back(ThisDecl);
Fariborz Jahanian9baf39d2012-01-13 00:14:12 +00001536 }
John McCalld8ac0572009-11-03 19:26:08 +00001537 }
1538
1539 if (DeclEnd)
1540 *DeclEnd = Tok.getLocation();
1541
Richard Smith0706df42011-10-19 21:33:05 +00001542 if (ExpectSemi &&
Chris Lattner8bb21d32012-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 Lattner004659a2010-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 McCalld8ac0572009-11-03 19:26:08 +00001554 }
1555
Douglas Gregor23c94db2010-07-02 17:43:08 +00001556 return Actions.FinalizeDeclaratorGroup(getCurScope(), DS,
John McCalld8ac0572009-11-03 19:26:08 +00001557 DeclsInGroup.data(),
1558 DeclsInGroup.size());
Reid Spencer5f016e22007-07-11 17:01:13 +00001559}
1560
Richard Smithad762fc2011-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 Hutchinsc24a2332012-02-16 16:50:43 +00001563bool Parser::ParseAsmAttributesAfterDeclarator(Declarator &D) {
Richard Smithad762fc2011-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 Gregor1426e532009-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.
Reid Spencer5f016e22007-07-11 17:01:13 +00001585///
Reid Spencer5f016e22007-07-11 17:01:13 +00001586/// init-declarator: [C99 6.7]
1587/// declarator
1588/// declarator '=' initializer
1589/// [GNU] declarator simple-asm-expr[opt] attributes[opt]
1590/// [GNU] declarator simple-asm-expr[opt] attributes[opt] '=' initializer
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00001591/// [C++] declarator initializer[opt]
1592///
1593/// [C++] initializer:
1594/// [C++] '=' initializer-clause
1595/// [C++] '(' expression-list ')'
Sebastian Redl50de12f2009-03-24 22:27:57 +00001596/// [C++0x] '=' 'default' [TODO]
1597/// [C++0x] '=' 'delete'
Sebastian Redldbef1bb2011-06-05 12:23:16 +00001598/// [C++0x] braced-init-list
Sebastian Redl50de12f2009-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.
Reid Spencer5f016e22007-07-11 17:01:13 +00001602///
John McCalld226f652010-08-21 09:40:31 +00001603Decl *Parser::ParseDeclarationAfterDeclarator(Declarator &D,
Douglas Gregore542c862009-06-23 23:11:28 +00001604 const ParsedTemplateInfo &TemplateInfo) {
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001605 if (ParseAsmAttributesAfterDeclarator(D))
Richard Smithad762fc2011-04-14 22:09:26 +00001606 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001607
Richard Smithad762fc2011-04-14 22:09:26 +00001608 return ParseDeclarationAfterDeclaratorAndAttributes(D, TemplateInfo);
1609}
Mike Stump1eb44332009-09-09 15:08:12 +00001610
Richard Smithad762fc2011-04-14 22:09:26 +00001611Decl *Parser::ParseDeclarationAfterDeclaratorAndAttributes(Declarator &D,
1612 const ParsedTemplateInfo &TemplateInfo) {
Douglas Gregor1426e532009-05-12 21:31:51 +00001613 // Inform the current actions module that we just parsed this declarator.
John McCalld226f652010-08-21 09:40:31 +00001614 Decl *ThisDecl = 0;
Douglas Gregord5a423b2009-09-25 18:43:00 +00001615 switch (TemplateInfo.Kind) {
1616 case ParsedTemplateInfo::NonTemplate:
Douglas Gregor23c94db2010-07-02 17:43:08 +00001617 ThisDecl = Actions.ActOnDeclarator(getCurScope(), D);
Douglas Gregord5a423b2009-09-25 18:43:00 +00001618 break;
Chad Rosier8decdee2012-06-26 22:30:43 +00001619
Douglas Gregord5a423b2009-09-25 18:43:00 +00001620 case ParsedTemplateInfo::Template:
1621 case ParsedTemplateInfo::ExplicitSpecialization:
Douglas Gregor23c94db2010-07-02 17:43:08 +00001622 ThisDecl = Actions.ActOnTemplateDeclarator(getCurScope(),
Benjamin Kramer5354e772012-08-23 23:38:35 +00001623 *TemplateInfo.TemplateParams,
Douglas Gregord5a423b2009-09-25 18:43:00 +00001624 D);
1625 break;
Chad Rosier8decdee2012-06-26 22:30:43 +00001626
Douglas Gregord5a423b2009-09-25 18:43:00 +00001627 case ParsedTemplateInfo::ExplicitInstantiation: {
Chad Rosier8decdee2012-06-26 22:30:43 +00001628 DeclResult ThisRes
Douglas Gregor23c94db2010-07-02 17:43:08 +00001629 = Actions.ActOnExplicitInstantiation(getCurScope(),
Douglas Gregord5a423b2009-09-25 18:43:00 +00001630 TemplateInfo.ExternLoc,
1631 TemplateInfo.TemplateLoc,
1632 D);
1633 if (ThisRes.isInvalid()) {
1634 SkipUntil(tok::semi, true, true);
John McCalld226f652010-08-21 09:40:31 +00001635 return 0;
Douglas Gregord5a423b2009-09-25 18:43:00 +00001636 }
Chad Rosier8decdee2012-06-26 22:30:43 +00001637
Douglas Gregord5a423b2009-09-25 18:43:00 +00001638 ThisDecl = ThisRes.get();
1639 break;
1640 }
1641 }
Mike Stump1eb44332009-09-09 15:08:12 +00001642
Richard Smith34b41d92011-02-20 03:19:35 +00001643 bool TypeContainsAuto =
1644 D.getDeclSpec().getTypeSpecType() == DeclSpec::TST_auto;
1645
Douglas Gregor1426e532009-05-12 21:31:51 +00001646 // Parse declarator '=' initializer.
Richard Trieud6c7c672012-01-18 22:54:52 +00001647 // If a '==' or '+=' is found, suggest a fixit to '='.
Richard Trieufcaf27e2012-01-19 22:01:51 +00001648 if (isTokenEqualOrEqualTypo()) {
Douglas Gregor1426e532009-05-12 21:31:51 +00001649 ConsumeToken();
Anders Carlsson37bf9d22010-09-24 21:25:25 +00001650 if (Tok.is(tok::kw_delete)) {
Sean Hunte4246a62011-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);
Sean Huntfe2695e2011-05-06 01:42:00 +00001656 } else if (Tok.is(tok::kw_default)) {
Sean Hunte4246a62011-05-12 06:15:49 +00001657 if (D.isFunctionDeclarator())
Sebastian Redlecfcd562012-02-11 23:51:21 +00001658 Diag(ConsumeToken(), diag::err_default_delete_in_multiple_declaration)
1659 << 0 /* default */;
Sean Hunte4246a62011-05-12 06:15:49 +00001660 else
1661 Diag(ConsumeToken(), diag::err_default_special_members);
Douglas Gregor1426e532009-05-12 21:31:51 +00001662 } else {
David Blaikie4e4d0842012-03-11 07:00:24 +00001663 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
John McCall731ad842009-12-19 09:28:58 +00001664 EnterScope(0);
Douglas Gregor23c94db2010-07-02 17:43:08 +00001665 Actions.ActOnCXXEnterDeclInitializer(getCurScope(), ThisDecl);
John McCall731ad842009-12-19 09:28:58 +00001666 }
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00001667
Douglas Gregor5ac3bdb2010-05-30 01:49:25 +00001668 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001669 Actions.CodeCompleteInitializer(getCurScope(), ThisDecl);
Peter Collingbourneec98f2f2012-07-27 12:56:09 +00001670 Actions.FinalizeDeclaration(ThisDecl);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001671 cutOffParsing();
1672 return 0;
Douglas Gregor5ac3bdb2010-05-30 01:49:25 +00001673 }
Chad Rosier8decdee2012-06-26 22:30:43 +00001674
John McCall60d7b3a2010-08-24 06:29:42 +00001675 ExprResult Init(ParseInitializer());
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00001676
David Blaikie4e4d0842012-03-11 07:00:24 +00001677 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001678 Actions.ActOnCXXExitDeclInitializer(getCurScope(), ThisDecl);
John McCall731ad842009-12-19 09:28:58 +00001679 ExitScope();
1680 }
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00001681
Douglas Gregor1426e532009-05-12 21:31:51 +00001682 if (Init.isInvalid()) {
Douglas Gregor00225542010-03-01 18:27:54 +00001683 SkipUntil(tok::comma, true, true);
1684 Actions.ActOnInitializerError(ThisDecl);
1685 } else
Richard Smith34b41d92011-02-20 03:19:35 +00001686 Actions.AddInitializerToDecl(ThisDecl, Init.take(),
1687 /*DirectInit=*/false, TypeContainsAuto);
Douglas Gregor1426e532009-05-12 21:31:51 +00001688 }
1689 } else if (Tok.is(tok::l_paren)) {
1690 // Parse C++ direct initializer: '(' expression-list ')'
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001691 BalancedDelimiterTracker T(*this, tok::l_paren);
1692 T.consumeOpen();
1693
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00001694 ExprVector Exprs;
Douglas Gregor1426e532009-05-12 21:31:51 +00001695 CommaLocsTy CommaLocs;
1696
David Blaikie4e4d0842012-03-11 07:00:24 +00001697 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
Douglas Gregorb4debae2009-12-22 17:47:17 +00001698 EnterScope(0);
Douglas Gregor23c94db2010-07-02 17:43:08 +00001699 Actions.ActOnCXXEnterDeclInitializer(getCurScope(), ThisDecl);
Douglas Gregorb4debae2009-12-22 17:47:17 +00001700 }
1701
Douglas Gregor1426e532009-05-12 21:31:51 +00001702 if (ParseExpressionList(Exprs, CommaLocs)) {
David Blaikie3ea19c82012-10-10 23:15:05 +00001703 Actions.ActOnInitializerError(ThisDecl);
Douglas Gregor1426e532009-05-12 21:31:51 +00001704 SkipUntil(tok::r_paren);
Douglas Gregorb4debae2009-12-22 17:47:17 +00001705
David Blaikie4e4d0842012-03-11 07:00:24 +00001706 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001707 Actions.ActOnCXXExitDeclInitializer(getCurScope(), ThisDecl);
Douglas Gregorb4debae2009-12-22 17:47:17 +00001708 ExitScope();
1709 }
Douglas Gregor1426e532009-05-12 21:31:51 +00001710 } else {
1711 // Match the ')'.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001712 T.consumeClose();
Douglas Gregor1426e532009-05-12 21:31:51 +00001713
1714 assert(!Exprs.empty() && Exprs.size()-1 == CommaLocs.size() &&
1715 "Unexpected number of commas!");
Douglas Gregorb4debae2009-12-22 17:47:17 +00001716
David Blaikie4e4d0842012-03-11 07:00:24 +00001717 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001718 Actions.ActOnCXXExitDeclInitializer(getCurScope(), ThisDecl);
Douglas Gregorb4debae2009-12-22 17:47:17 +00001719 ExitScope();
1720 }
1721
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001722 ExprResult Initializer = Actions.ActOnParenListExpr(T.getOpenLocation(),
1723 T.getCloseLocation(),
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00001724 Exprs);
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001725 Actions.AddInitializerToDecl(ThisDecl, Initializer.take(),
1726 /*DirectInit=*/true, TypeContainsAuto);
Douglas Gregor1426e532009-05-12 21:31:51 +00001727 }
Richard Smith80ad52f2013-01-02 11:42:31 +00001728 } else if (getLangOpts().CPlusPlus11 && Tok.is(tok::l_brace) &&
Fariborz Jahanianb0ed95c2012-07-03 23:22:13 +00001729 (!CurParsedObjCImpl || !D.isFunctionDeclarator())) {
Sebastian Redldbef1bb2011-06-05 12:23:16 +00001730 // Parse C++0x braced-init-list.
Richard Smith7fe62082011-10-15 05:09:34 +00001731 Diag(Tok, diag::warn_cxx98_compat_generalized_initializer_lists);
1732
Sebastian Redldbef1bb2011-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 Gregor1426e532009-05-12 21:31:51 +00001751 } else {
Richard Smith34b41d92011-02-20 03:19:35 +00001752 Actions.ActOnUninitializedDecl(ThisDecl, TypeContainsAuto);
Douglas Gregor1426e532009-05-12 21:31:51 +00001753 }
1754
Richard Smith483b9f32011-02-21 20:05:19 +00001755 Actions.FinalizeDeclaration(ThisDecl);
1756
Douglas Gregor1426e532009-05-12 21:31:51 +00001757 return ThisDecl;
1758}
1759
Reid Spencer5f016e22007-07-11 17:01:13 +00001760/// ParseSpecifierQualifierList
1761/// specifier-qualifier-list:
1762/// type-specifier specifier-qualifier-list[opt]
1763/// type-qualifier specifier-qualifier-list[opt]
1764/// [GNU] attributes specifier-qualifier-list[opt]
1765///
Richard Smith69730c12012-03-12 07:56:15 +00001766void Parser::ParseSpecifierQualifierList(DeclSpec &DS, AccessSpecifier AS,
1767 DeclSpecContext DSC) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001768 /// specifier-qualifier-list is a subset of declaration-specifiers. Just
1769 /// parse declaration-specifiers and complain about extra stuff.
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00001770 /// TODO: diagnose attribute-specifiers and alignment-specifiers.
Richard Smith69730c12012-03-12 07:56:15 +00001771 ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS, DSC);
Mike Stump1eb44332009-09-09 15:08:12 +00001772
Reid Spencer5f016e22007-07-11 17:01:13 +00001773 // Validate declspec for type-name.
1774 unsigned Specs = DS.getParsedSpecifiers();
Richard Smitha971d242012-05-09 20:55:26 +00001775 if ((DSC == DSC_type_specifier || DSC == DSC_trailing) &&
1776 !DS.hasTypeSpecifier()) {
Richard Smith69730c12012-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()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001781 Diag(Tok, diag::err_typename_requires_specqual);
Richard Smith69730c12012-03-12 07:56:15 +00001782 if (!DS.hasTypeSpecifier())
1783 DS.SetTypeSpecError();
1784 }
Mike Stump1eb44332009-09-09 15:08:12 +00001785
Reid Spencer5f016e22007-07-11 17:01:13 +00001786 // Issue diagnostic and remove storage class if present.
1787 if (Specs & DeclSpec::PQ_StorageClassSpecifier) {
1788 if (DS.getStorageClassSpecLoc().isValid())
1789 Diag(DS.getStorageClassSpecLoc(),diag::err_typename_invalid_storageclass);
1790 else
1791 Diag(DS.getThreadSpecLoc(), diag::err_typename_invalid_storageclass);
1792 DS.ClearStorageClassSpecs();
1793 }
Mike Stump1eb44332009-09-09 15:08:12 +00001794
Reid Spencer5f016e22007-07-11 17:01:13 +00001795 // Issue diagnostic and remove function specfier if present.
1796 if (Specs & DeclSpec::PQ_FunctionSpecifier) {
Douglas Gregorb48fe382008-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);
Reid Spencer5f016e22007-07-11 17:01:13 +00001803 DS.ClearFunctionSpecs();
1804 }
Richard Smith69730c12012-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 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001811}
1812
Chris Lattnerc199ab32009-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 Lattnerb6645dd2009-04-14 21:16:09 +00001824/// int x : 4; // struct-declarator
Chris Lattnerc83c27a2009-04-12 22:29:43 +00001825/// int x { 5}; // C++'0x unified initializers
Chris Lattnerc199ab32009-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 Lattnerb6645dd2009-04-14 21:16:09 +00001834 T.is(tok::kw_asm) || T.is(tok::l_brace) || T.is(tok::colon);
Chris Lattnerc199ab32009-04-12 20:42:31 +00001835}
1836
Chris Lattnere40c2952009-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 Lattnerf4382f52009-04-14 22:17:06 +00001847bool Parser::ParseImplicitInt(DeclSpec &DS, CXXScopeSpec *SS,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001848 const ParsedTemplateInfo &TemplateInfo,
Michael Han2e397132012-11-26 22:54:45 +00001849 AccessSpecifier AS, DeclSpecContext DSC,
1850 ParsedAttributesWithRange &Attrs) {
Chris Lattnerf4382f52009-04-14 22:17:06 +00001851 assert(Tok.is(tok::identifier) && "should have identifier");
Mike Stump1eb44332009-09-09 15:08:12 +00001852
Chris Lattnere40c2952009-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 Stump1eb44332009-09-09 15:08:12 +00001867
Chris Lattnere40c2952009-04-14 21:34:55 +00001868 // Since we know that this either implicit int (which is rare) or an
Richard Smith827adaf2012-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 Smitha971d242012-05-09 20:55:26 +00001874 if (DSC != DSC_type_specifier && DSC != DSC_trailing &&
Richard Smith827adaf2012-05-15 21:01:51 +00001875 (!getLangOpts().CPlusPlus || getLangOpts().MicrosoftExt) &&
Richard Smith69730c12012-03-12 07:56:15 +00001876 isValidAfterIdentifierInDeclarator(NextToken())) {
Chris Lattnere40c2952009-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 Stump1eb44332009-09-09 15:08:12 +00001882
Richard Smith827adaf2012-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 Lattnere40c2952009-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 Lattnerf4382f52009-04-14 22:17:06 +00001894 //
1895 // C++ doesn't need this, and isTagName doesn't take SS.
1896 if (SS == 0) {
Argyrios Kyrtzidisb8a9d3b2011-04-21 17:29:47 +00001897 const char *TagName = 0, *FixitTagName = 0;
Chris Lattnerf4382f52009-04-14 22:17:06 +00001898 tok::TokenKind TagKind = tok::unknown;
Mike Stump1eb44332009-09-09 15:08:12 +00001899
Douglas Gregor23c94db2010-07-02 17:43:08 +00001900 switch (Actions.isTagName(*Tok.getIdentifierInfo(), getCurScope())) {
Chris Lattnere40c2952009-04-14 21:34:55 +00001901 default: break;
Argyrios Kyrtzidisb8a9d3b2011-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 Matos6666ed42012-08-31 18:45:21 +00001908 case DeclSpec::TST_interface:
1909 TagName="__interface"; FixitTagName = "__interface ";
1910 TagKind=tok::kw___interface;break;
Argyrios Kyrtzidisb8a9d3b2011-04-21 17:29:47 +00001911 case DeclSpec::TST_class:
1912 TagName="class" ; FixitTagName = "class " ;TagKind=tok::kw_class ;break;
Chris Lattnere40c2952009-04-14 21:34:55 +00001913 }
Mike Stump1eb44332009-09-09 15:08:12 +00001914
Chris Lattnerf4382f52009-04-14 22:17:06 +00001915 if (TagName) {
Kaelyn Uhrainaec2ac62012-04-26 23:36:17 +00001916 IdentifierInfo *TokenName = Tok.getIdentifierInfo();
1917 LookupResult R(Actions, TokenName, SourceLocation(),
1918 Sema::LookupOrdinaryName);
1919
Chris Lattnerf4382f52009-04-14 22:17:06 +00001920 Diag(Loc, diag::err_use_of_tag_name_without_tag)
Kaelyn Uhrainaec2ac62012-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 Uhrain392b3f52012-04-27 18:26:49 +00001927 Diag((*I)->getLocation(), diag::note_decl_hiding_tag_type)
Kaelyn Uhrainaec2ac62012-04-26 23:36:17 +00001928 << TokenName << TagName;
1929 }
Mike Stump1eb44332009-09-09 15:08:12 +00001930
Chris Lattnerf4382f52009-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 Smith69730c12012-03-12 07:56:15 +00001933 ParseEnumSpecifier(Loc, DS, TemplateInfo, AS, DSC_normal);
Chris Lattnerf4382f52009-04-14 22:17:06 +00001934 else
Richard Smith69730c12012-03-12 07:56:15 +00001935 ParseClassSpecifier(TagKind, Loc, DS, TemplateInfo, AS,
Michael Han2e397132012-11-26 22:54:45 +00001936 /*EnteringContext*/ false, DSC_normal, Attrs);
Chris Lattnerf4382f52009-04-14 22:17:06 +00001937 return true;
1938 }
Chris Lattnere40c2952009-04-14 21:34:55 +00001939 }
Mike Stump1eb44332009-09-09 15:08:12 +00001940
Richard Smith8f0a7e72012-05-15 21:29:55 +00001941 // Determine whether this identifier could plausibly be the name of something
Richard Smith7514db22012-05-15 21:42:17 +00001942 // being declared (with a missing type).
Richard Smith8f0a7e72012-05-15 21:29:55 +00001943 if (DSC != DSC_type_specifier && DSC != DSC_trailing &&
1944 (!SS || DSC == DSC_top_level || DSC == DSC_class)) {
Richard Smith827adaf2012-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 Rosier8decdee2012-06-26 22:30:43 +00001985 // This is almost certainly an invalid type name. Let the action emit a
Douglas Gregora786fdb2009-10-13 23:27:22 +00001986 // diagnostic and attempt to recover.
John McCallb3d87482010-08-24 05:47:05 +00001987 ParsedType T;
Kaelyn Uhrain50dc12a2012-06-15 23:45:58 +00001988 IdentifierInfo *II = Tok.getIdentifierInfo();
1989 if (Actions.DiagnoseUnknownTypeName(II, Loc, getCurScope(), SS, T)) {
Douglas Gregora786fdb2009-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 McCallb3d87482010-08-24 05:47:05 +00001997 DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec, DiagID, T);
Douglas Gregora786fdb2009-10-13 23:27:22 +00001998 DS.SetRangeEnd(Tok.getLocation());
1999 ConsumeToken();
Kaelyn Uhrain50dc12a2012-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 Gregora786fdb2009-10-13 23:27:22 +00002005 // There may be other declaration specifiers after this.
2006 return true;
2007 }
Chad Rosier8decdee2012-06-26 22:30:43 +00002008
Douglas Gregora786fdb2009-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 Stump1eb44332009-09-09 15:08:12 +00002016
Douglas Gregora786fdb2009-10-13 23:27:22 +00002017 // Mark this as an error.
Richard Smith69730c12012-03-12 07:56:15 +00002018 DS.SetTypeSpecError();
Chris Lattnere40c2952009-04-14 21:34:55 +00002019 DS.SetRangeEnd(Tok.getLocation());
2020 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00002021
Chris Lattnere40c2952009-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 Gregor0efc2c12010-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 Rosier8decdee2012-06-26 22:30:43 +00002033Parser::DeclSpecContext
Douglas Gregor0efc2c12010-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 Smith6d96d3a2012-03-15 01:02:11 +00002039 if (Context == Declarator::TrailingReturnContext)
2040 return DSC_trailing;
Douglas Gregor0efc2c12010-01-13 17:31:36 +00002041 return DSC_normal;
2042}
2043
Peter Collingbourne82d0b0a2011-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 Kramerffbe9b92011-12-23 17:00:35 +00002049/// [C11] type-id
2050/// [C11] constant-expression
Peter Collingbourne0b64ba92011-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 Collingbourne82d0b0a2011-09-29 18:04:28 +00002056 if (isTypeIdInParens()) {
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002057 SourceLocation TypeLoc = Tok.getLocation();
2058 ParsedType Ty = ParseTypeName().get();
2059 SourceRange TypeRange(Start, Tok.getLocation());
Peter Collingbourne0b64ba92011-10-23 20:07:52 +00002060 ER = Actions.ActOnUnaryExprOrTypeTraitExpr(TypeLoc, UETT_AlignOf, true,
2061 Ty.getAsOpaquePtr(), TypeRange);
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002062 } else
Peter Collingbourne0b64ba92011-10-23 20:07:52 +00002063 ER = ParseConstantExpression();
2064
Richard Smith80ad52f2013-01-02 11:42:31 +00002065 if (getLangOpts().CPlusPlus11 && Tok.is(tok::ellipsis))
Peter Collingbournefe9b2a82011-10-24 17:56:00 +00002066 EllipsisLoc = ConsumeToken();
Peter Collingbourne0b64ba92011-10-23 20:07:52 +00002067
2068 return ER;
Peter Collingbourne82d0b0a2011-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 Kramerffbe9b92011-12-23 17:00:35 +00002075/// [C11] '_Alignas' '(' type-id ')'
2076/// [C11] '_Alignas' '(' constant-expression ')'
Richard Smith33f04a22013-01-29 01:48:07 +00002077/// [C++11] 'alignas' '(' type-id ...[opt] ')'
2078/// [C++11] 'alignas' '(' assignment-expression ...[opt] ')'
Peter Collingbourne82d0b0a2011-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 Smith33f04a22013-01-29 01:48:07 +00002084 IdentifierInfo *KWName = Tok.getIdentifierInfo();
2085 SourceLocation KWLoc = ConsumeToken();
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002086
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002087 BalancedDelimiterTracker T(*this, tok::l_paren);
2088 if (T.expectAndConsume(diag::err_expected_lparen))
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002089 return;
2090
Peter Collingbourne0b64ba92011-10-23 20:07:52 +00002091 SourceLocation EllipsisLoc;
2092 ExprResult ArgExpr = ParseAlignArgument(T.getOpenLocation(), EllipsisLoc);
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002093 if (ArgExpr.isInvalid()) {
2094 SkipUntil(tok::r_paren);
2095 return;
2096 }
2097
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002098 T.consumeClose();
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002099 if (endLoc)
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002100 *endLoc = T.getCloseLocation();
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002101
Peter Collingbourne0b64ba92011-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 Kramer4e28d9e2012-08-23 22:51:59 +00002108 ExprVector ArgExprs;
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002109 ArgExprs.push_back(ArgExpr.release());
Richard Smith33f04a22013-01-29 01:48:07 +00002110 Attrs.addNew(KWName, KWLoc, 0, KWLoc, 0, T.getOpenLocation(),
2111 ArgExprs.data(), 1, AttributeList::AS_Keyword);
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002112}
2113
Reid Spencer5f016e22007-07-11 17:01:13 +00002114/// ParseDeclarationSpecifiers
2115/// declaration-specifiers: [C99 6.7]
2116/// storage-class-specifier declaration-specifiers[opt]
2117/// type-specifier declaration-specifiers[opt]
Reid Spencer5f016e22007-07-11 17:01:13 +00002118/// [C99] function-specifier declaration-specifiers[opt]
Benjamin Kramerffbe9b92011-12-23 17:00:35 +00002119/// [C11] alignment-specifier declaration-specifiers[opt]
Reid Spencer5f016e22007-07-11 17:01:13 +00002120/// [GNU] attributes declaration-specifiers[opt]
Douglas Gregor8d267c52011-09-09 02:06:17 +00002121/// [Clang] '__module_private__' declaration-specifiers[opt]
Reid Spencer5f016e22007-07-11 17:01:13 +00002122///
2123/// storage-class-specifier: [C99 6.7.1]
2124/// 'typedef'
2125/// 'extern'
2126/// 'static'
2127/// 'auto'
2128/// 'register'
Sebastian Redl669d5d72008-11-14 23:42:31 +00002129/// [C++] 'mutable'
Reid Spencer5f016e22007-07-11 17:01:13 +00002130/// [GNU] '__thread'
Reid Spencer5f016e22007-07-11 17:01:13 +00002131/// function-specifier: [C99 6.7.4]
2132/// [C99] 'inline'
Douglas Gregorb48fe382008-10-31 09:07:45 +00002133/// [C++] 'virtual'
2134/// [C++] 'explicit'
Peter Collingbournef315fa82011-02-14 01:42:53 +00002135/// [OpenCL] '__kernel'
Anders Carlssonf47f7a12009-05-06 04:46:28 +00002136/// 'friend': [C++ dcl.friend]
Sebastian Redl2ac67232009-11-05 15:47:02 +00002137/// 'constexpr': [C++0x dcl.constexpr]
Anders Carlssonf47f7a12009-05-06 04:46:28 +00002138
Reid Spencer5f016e22007-07-11 17:01:13 +00002139///
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +00002140void Parser::ParseDeclarationSpecifiers(DeclSpec &DS,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00002141 const ParsedTemplateInfo &TemplateInfo,
John McCall67d1a672009-08-06 02:15:43 +00002142 AccessSpecifier AS,
DeLesley Hutchins2287c5e2012-03-02 22:12:59 +00002143 DeclSpecContext DSContext,
2144 LateParsedAttrList *LateAttrs) {
Douglas Gregor312eadb2011-04-24 05:37:28 +00002145 if (DS.getSourceRange().isInvalid()) {
2146 DS.SetRangeStart(Tok.getLocation());
2147 DS.SetRangeEnd(Tok.getLocation());
2148 }
Chad Rosier8decdee2012-06-26 22:30:43 +00002149
Douglas Gregorefaa93a2011-11-07 17:33:42 +00002150 bool EnteringContext = (DSContext == DSC_class || DSContext == DSC_top_level);
Sean Hunt2edf0a22012-06-23 05:07:58 +00002151 bool AttrsLastTime = false;
2152 ParsedAttributesWithRange attrs(AttrFactory);
Reid Spencer5f016e22007-07-11 17:01:13 +00002153 while (1) {
John McCallfec54012009-08-03 20:12:06 +00002154 bool isInvalid = false;
Reid Spencer5f016e22007-07-11 17:01:13 +00002155 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +00002156 unsigned DiagID = 0;
2157
Reid Spencer5f016e22007-07-11 17:01:13 +00002158 SourceLocation Loc = Tok.getLocation();
Douglas Gregor12e083c2008-11-07 15:42:26 +00002159
Reid Spencer5f016e22007-07-11 17:01:13 +00002160 switch (Tok.getKind()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002161 default:
Chris Lattnerbce61352008-07-26 00:20:22 +00002162 DoneWithDeclSpec:
Sean Hunt2edf0a22012-06-23 05:07:58 +00002163 if (!AttrsLastTime)
2164 ProhibitAttributes(attrs);
Michael Hanf64231e2012-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
Sean Hunt2edf0a22012-06-23 05:07:58 +00002171 DS.takeAttributesFrom(attrs);
Michael Hanf64231e2012-11-06 19:34:54 +00002172 }
Peter Collingbournef1907682011-09-29 18:03:57 +00002173
Reid Spencer5f016e22007-07-11 17:01:13 +00002174 // If this is not a declaration specifier token, we're done reading decl
2175 // specifiers. First verify that DeclSpec's are consistent.
Douglas Gregor9b3064b2009-04-01 22:41:11 +00002176 DS.Finish(Diags, PP);
Reid Spencer5f016e22007-07-11 17:01:13 +00002177 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002178
Sean Hunt2edf0a22012-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 Rosier8decdee2012-06-26 22:30:43 +00002193 continue;
Sean Hunt2edf0a22012-06-23 05:07:58 +00002194
Douglas Gregor2ccccb32010-08-23 18:23:48 +00002195 case tok::code_completion: {
John McCallf312b1e2010-08-26 23:41:50 +00002196 Sema::ParserCompletionContext CCC = Sema::PCC_Namespace;
Douglas Gregor2ccccb32010-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 Rosier8decdee2012-06-26 22:30:43 +00002205 = DSContext == DSC_top_level ||
Douglas Gregor2ccccb32010-08-23 18:23:48 +00002206 (DSContext == DSC_class && DS.isFriendSpecified());
2207
Douglas Gregorc7b6d882010-09-16 15:14:18 +00002208 Actions.CodeCompleteDeclSpec(getCurScope(), DS,
Chad Rosier8decdee2012-06-26 22:30:43 +00002209 AllowNonIdentifiers,
Douglas Gregorc7b6d882010-09-16 15:14:18 +00002210 AllowNestedNameSpecifiers);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002211 return cutOffParsing();
Chad Rosier8decdee2012-06-26 22:30:43 +00002212 }
2213
Douglas Gregor68e3c2e2011-02-15 20:33:25 +00002214 if (getCurScope()->getFnParent() || getCurScope()->getBlockParent())
2215 CCC = Sema::PCC_LocalDeclarationSpecifiers;
2216 else if (TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate)
Chad Rosier8decdee2012-06-26 22:30:43 +00002217 CCC = DSContext == DSC_class? Sema::PCC_MemberTemplate
John McCallf312b1e2010-08-26 23:41:50 +00002218 : Sema::PCC_Template;
Douglas Gregor2ccccb32010-08-23 18:23:48 +00002219 else if (DSContext == DSC_class)
John McCallf312b1e2010-08-26 23:41:50 +00002220 CCC = Sema::PCC_Class;
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00002221 else if (CurParsedObjCImpl)
John McCallf312b1e2010-08-26 23:41:50 +00002222 CCC = Sema::PCC_ObjCImplementation;
Chad Rosier8decdee2012-06-26 22:30:43 +00002223
Douglas Gregor2ccccb32010-08-23 18:23:48 +00002224 Actions.CodeCompleteOrdinaryName(getCurScope(), CCC);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002225 return cutOffParsing();
Douglas Gregor2ccccb32010-08-23 18:23:48 +00002226 }
2227
Chris Lattner5e02c472009-01-05 00:07:25 +00002228 case tok::coloncolon: // ::foo::bar
John McCall9ba61662010-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 McCall2e0a7152010-03-01 18:20:46 +00002235 if (Tok.is(tok::coloncolon)) // ::new or ::delete
2236 goto DoneWithDeclSpec;
John McCall9ba61662010-02-26 08:45:28 +00002237 continue;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002238
2239 case tok::annot_cxxscope: {
Richard Smithf63eee72012-05-09 18:56:43 +00002240 if (DS.hasTypeSpecifier() || DS.isTypeAltiVecVector())
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002241 goto DoneWithDeclSpec;
2242
John McCallaa87d332009-12-12 11:40:51 +00002243 CXXScopeSpec SS;
Douglas Gregorc34348a2011-02-24 17:54:50 +00002244 Actions.RestoreNestedNameSpecifierAnnotation(Tok.getAnnotationValue(),
2245 Tok.getAnnotationRange(),
2246 SS);
John McCallaa87d332009-12-12 11:40:51 +00002247
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002248 // We are looking for a qualified typename.
Douglas Gregor9135c722009-03-25 15:40:00 +00002249 Token Next = NextToken();
Mike Stump1eb44332009-09-09 15:08:12 +00002250 if (Next.is(tok::annot_template_id) &&
Douglas Gregor9135c722009-03-25 15:40:00 +00002251 static_cast<TemplateIdAnnotation *>(Next.getAnnotationValue())
Douglas Gregorc45c2322009-03-31 00:43:58 +00002252 ->Kind == TNK_Type_template) {
Douglas Gregor9135c722009-03-25 15:40:00 +00002253 // We have a qualified template-id, e.g., N::A<int>
Douglas Gregor0efc2c12010-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 Rosier8decdee2012-06-26 22:30:43 +00002270 //
Douglas Gregor0efc2c12010-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 Rosier8decdee2012-06-26 22:30:43 +00002273 // reinforced by the NAD status of core issue 635.
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +00002274 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Next);
John McCallba9d8532010-04-13 06:39:49 +00002275 if ((DSContext == DSC_top_level ||
2276 (DSContext == DSC_class && DS.isFriendSpecified())) &&
2277 TemplateId->Name &&
Douglas Gregor23c94db2010-07-02 17:43:08 +00002278 Actions.isCurrentClassName(*TemplateId->Name, getCurScope(), &SS)) {
Douglas Gregor0efc2c12010-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 McCallaa87d332009-12-12 11:40:51 +00002296 DS.getTypeSpecScope() = SS;
2297 ConsumeToken(); // The C++ scope.
Mike Stump1eb44332009-09-09 15:08:12 +00002298 assert(Tok.is(tok::annot_template_id) &&
Douglas Gregor9135c722009-03-25 15:40:00 +00002299 "ParseOptionalCXXScopeSpecifier not working");
Douglas Gregor059101f2011-03-02 00:47:37 +00002300 AnnotateTemplateIdTokenAsType();
Douglas Gregor9135c722009-03-25 15:40:00 +00002301 continue;
2302 }
2303
Douglas Gregor9d7b3532009-09-28 07:26:33 +00002304 if (Next.is(tok::annot_typename)) {
John McCallaa87d332009-12-12 11:40:51 +00002305 DS.getTypeSpecScope() = SS;
2306 ConsumeToken(); // The C++ scope.
John McCallb3d87482010-08-24 05:47:05 +00002307 if (Tok.getAnnotationValue()) {
2308 ParsedType T = getTypeAnnotation(Tok);
Nico Weber253e80b2010-11-22 10:30:56 +00002309 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename,
Chad Rosier8decdee2012-06-26 22:30:43 +00002310 Tok.getAnnotationEndLoc(),
John McCallb3d87482010-08-24 05:47:05 +00002311 PrevSpec, DiagID, T);
Richard Smithb3cd3c02012-09-14 18:27:01 +00002312 if (isInvalid)
2313 break;
John McCallb3d87482010-08-24 05:47:05 +00002314 }
Douglas Gregor9d7b3532009-09-28 07:26:33 +00002315 else
2316 DS.SetTypeSpecError();
2317 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
2318 ConsumeToken(); // The typename
2319 }
2320
Douglas Gregor9135c722009-03-25 15:40:00 +00002321 if (Next.isNot(tok::identifier))
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002322 goto DoneWithDeclSpec;
2323
Douglas Gregor0efc2c12010-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 McCallba9d8532010-04-13 06:39:49 +00002326 if ((DSContext == DSC_top_level ||
2327 (DSContext == DSC_class && DS.isFriendSpecified())) &&
Chad Rosier8decdee2012-06-26 22:30:43 +00002328 Actions.isCurrentClassName(*Next.getIdentifierInfo(), getCurScope(),
Douglas Gregor0efc2c12010-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 Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002342
John McCallb3d87482010-08-24 05:47:05 +00002343 ParsedType TypeRep = Actions.getTypeName(*Next.getIdentifierInfo(),
2344 Next.getLocation(),
Douglas Gregor9e876872011-03-01 18:12:44 +00002345 getCurScope(), &SS,
2346 false, false, ParsedType(),
Abramo Bagnarafad03b72012-01-27 08:46:19 +00002347 /*IsCtorOrDtorName=*/false,
Douglas Gregor9e876872011-03-01 18:12:44 +00002348 /*NonTrivialSourceInfo=*/true);
Douglas Gregor55f6b142009-02-09 18:46:07 +00002349
Chris Lattnerf4382f52009-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 Stump1eb44332009-09-09 15:08:12 +00002353 // typename.
Chris Lattnerf4382f52009-04-14 22:17:06 +00002354 if (TypeRep == 0) {
2355 ConsumeToken(); // Eat the scope spec so the identifier is current.
Michael Han2e397132012-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 Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002364 goto DoneWithDeclSpec;
Chris Lattnerf4382f52009-04-14 22:17:06 +00002365 }
Mike Stump1eb44332009-09-09 15:08:12 +00002366
John McCallaa87d332009-12-12 11:40:51 +00002367 DS.getTypeSpecScope() = SS;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002368 ConsumeToken(); // The C++ scope.
2369
Douglas Gregor1a51b4a2009-02-09 15:09:02 +00002370 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
John McCallfec54012009-08-03 20:12:06 +00002371 DiagID, TypeRep);
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002372 if (isInvalid)
2373 break;
Mike Stump1eb44332009-09-09 15:08:12 +00002374
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002375 DS.SetRangeEnd(Tok.getLocation());
2376 ConsumeToken(); // The typename.
2377
2378 continue;
2379 }
Mike Stump1eb44332009-09-09 15:08:12 +00002380
Chris Lattner80d0c892009-01-21 19:48:37 +00002381 case tok::annot_typename: {
John McCallb3d87482010-08-24 05:47:05 +00002382 if (Tok.getAnnotationValue()) {
2383 ParsedType T = getTypeAnnotation(Tok);
Nico Weberc43271e2010-11-22 12:50:03 +00002384 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
John McCallb3d87482010-08-24 05:47:05 +00002385 DiagID, T);
2386 } else
Douglas Gregor31a19b62009-04-01 21:51:26 +00002387 DS.SetTypeSpecError();
Chad Rosier8decdee2012-06-26 22:30:43 +00002388
Chris Lattner5c5db552010-04-05 18:18:31 +00002389 if (isInvalid)
2390 break;
2391
Chris Lattner80d0c892009-01-21 19:48:37 +00002392 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
2393 ConsumeToken(); // The typename
Mike Stump1eb44332009-09-09 15:08:12 +00002394
Chris Lattner80d0c892009-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 Rosier8decdee2012-06-26 22:30:43 +00002397 // Objective-C interface.
David Blaikie4e4d0842012-03-11 07:00:24 +00002398 if (Tok.is(tok::less) && getLangOpts().ObjC1)
Douglas Gregor9bd1d8d2010-10-21 23:17:00 +00002399 ParseObjCProtocolQualifiers(DS);
Chad Rosier8decdee2012-06-26 22:30:43 +00002400
Chris Lattner80d0c892009-01-21 19:48:37 +00002401 continue;
2402 }
Mike Stump1eb44332009-09-09 15:08:12 +00002403
Douglas Gregorbfad9152011-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 Rosier8decdee2012-06-26 22:30:43 +00002421
Chris Lattner3bd934a2008-07-26 01:18:38 +00002422 // typedef-name
David Blaikie42d6d0c2011-12-04 05:04:18 +00002423 case tok::kw_decltype:
Chris Lattner3bd934a2008-07-26 01:18:38 +00002424 case tok::identifier: {
Chris Lattner5e02c472009-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 Blaikie4e4d0842012-03-11 07:00:24 +00002427 if (getLangOpts().CPlusPlus) {
John McCall9ba61662010-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 Stump1eb44332009-09-09 15:08:12 +00002436
Chris Lattner3bd934a2008-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 Stump1eb44332009-09-09 15:08:12 +00002442
John Thompson82287d12010-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 Smithf63eee72012-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 McCallb3d87482010-08-24 05:47:05 +00002452 ParsedType TypeRep =
2453 Actions.getTypeName(*Tok.getIdentifierInfo(),
2454 Tok.getLocation(), getCurScope());
Douglas Gregor55f6b142009-02-09 18:46:07 +00002455
Chris Lattnerc199ab32009-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 McCallb3d87482010-08-24 05:47:05 +00002458 if (!TypeRep) {
Michael Han2e397132012-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 Lattner3bd934a2008-07-26 01:18:38 +00002467 goto DoneWithDeclSpec;
Chris Lattnerc199ab32009-04-12 20:42:31 +00002468 }
Douglas Gregor55f6b142009-02-09 18:46:07 +00002469
Douglas Gregor0efc2c12010-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 Blaikie4e4d0842012-03-11 07:00:24 +00002472 if (getLangOpts().CPlusPlus && DSContext == DSC_class &&
Douglas Gregor23c94db2010-07-02 17:43:08 +00002473 Actions.isCurrentClassName(*Tok.getIdentifierInfo(), getCurScope()) &&
Douglas Gregor0efc2c12010-01-13 17:31:36 +00002474 isConstructorDeclarator())
Douglas Gregorb48fe382008-10-31 09:07:45 +00002475 goto DoneWithDeclSpec;
2476
Douglas Gregor1a51b4a2009-02-09 15:09:02 +00002477 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
John McCallfec54012009-08-03 20:12:06 +00002478 DiagID, TypeRep);
Chris Lattner3bd934a2008-07-26 01:18:38 +00002479 if (isInvalid)
2480 break;
Mike Stump1eb44332009-09-09 15:08:12 +00002481
Chris Lattner3bd934a2008-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 Rosier8decdee2012-06-26 22:30:43 +00002487 // Objective-C interface.
David Blaikie4e4d0842012-03-11 07:00:24 +00002488 if (Tok.is(tok::less) && getLangOpts().ObjC1)
Douglas Gregor9bd1d8d2010-10-21 23:17:00 +00002489 ParseObjCProtocolQualifiers(DS);
Chad Rosier8decdee2012-06-26 22:30:43 +00002490
Steve Naroff4f9b9f12008-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 Lattner3bd934a2008-07-26 01:18:38 +00002494 }
Douglas Gregor39a8de12009-02-25 19:37:18 +00002495
2496 // type-name
2497 case tok::annot_template_id: {
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +00002498 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregorc45c2322009-03-31 00:43:58 +00002499 if (TemplateId->Kind != TNK_Type_template) {
Douglas Gregor39a8de12009-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 Gregor0efc2c12010-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 Blaikie4e4d0842012-03-11 07:00:24 +00002508 if (getLangOpts().CPlusPlus && DSContext == DSC_class &&
Douglas Gregor23c94db2010-07-02 17:43:08 +00002509 Actions.isCurrentClassName(*TemplateId->Name, getCurScope()) &&
Douglas Gregor0efc2c12010-01-13 17:31:36 +00002510 isConstructorDeclarator())
2511 goto DoneWithDeclSpec;
2512
Douglas Gregor39a8de12009-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 Gregor31a19b62009-04-01 21:51:26 +00002515 AnnotateTemplateIdTokenAsType();
Douglas Gregor39a8de12009-02-25 19:37:18 +00002516 continue;
2517 }
2518
Reid Spencer5f016e22007-07-11 17:01:13 +00002519 // GNU attributes support.
2520 case tok::kw___attribute:
DeLesley Hutchins2287c5e2012-03-02 22:12:59 +00002521 ParseGNUAttributes(DS.getAttributes(), 0, LateAttrs);
Reid Spencer5f016e22007-07-11 17:01:13 +00002522 continue;
Steve Narofff59e17e2008-12-24 20:59:21 +00002523
2524 // Microsoft declspec support.
2525 case tok::kw___declspec:
John McCall7f040a92010-12-24 02:08:15 +00002526 ParseMicrosoftDeclSpec(DS.getAttributes());
Steve Narofff59e17e2008-12-24 20:59:21 +00002527 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00002528
Steve Naroff239f0732008-12-25 14:16:32 +00002529 // Microsoft single token adornments.
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00002530 case tok::kw___forceinline: {
Chad Rosier22aa6902012-12-21 22:24:43 +00002531 isInvalid = DS.setFunctionSpecInline(Loc);
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00002532 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
Richard Smithb3cd3c02012-09-14 18:27:01 +00002533 SourceLocation AttrNameLoc = Tok.getLocation();
Sean Hunt93f95f22012-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. Spenceradc6cbf2012-06-18 07:00:48 +00002536 DS.getAttributes().addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0,
Sean Hunt93f95f22012-06-18 16:13:52 +00002537 SourceLocation(), 0, 0, AttributeList::AS_GNU);
Richard Smithb3cd3c02012-09-14 18:27:01 +00002538 break;
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00002539 }
Eli Friedman290eeb02009-06-08 23:27:34 +00002540
2541 case tok::kw___ptr64:
Francois Pichet58fd97a2011-08-25 00:36:46 +00002542 case tok::kw___ptr32:
Steve Naroff86bc6cf2008-12-25 14:41:26 +00002543 case tok::kw___w64:
Steve Naroff239f0732008-12-25 14:16:32 +00002544 case tok::kw___cdecl:
2545 case tok::kw___stdcall:
2546 case tok::kw___fastcall:
Douglas Gregorf813a2c2010-05-18 16:57:00 +00002547 case tok::kw___thiscall:
Francois Pichet3bd9aa42011-08-18 09:59:55 +00002548 case tok::kw___unaligned:
John McCall7f040a92010-12-24 02:08:15 +00002549 ParseMicrosoftTypeAttributes(DS.getAttributes());
Eli Friedman290eeb02009-06-08 23:27:34 +00002550 continue;
2551
Dawn Perchik52fc3142010-09-03 01:29:35 +00002552 // Borland single token adornments.
2553 case tok::kw___pascal:
John McCall7f040a92010-12-24 02:08:15 +00002554 ParseBorlandTypeAttributes(DS.getAttributes());
Dawn Perchik52fc3142010-09-03 01:29:35 +00002555 continue;
2556
Peter Collingbournef315fa82011-02-14 01:42:53 +00002557 // OpenCL single token adornments.
2558 case tok::kw___kernel:
2559 ParseOpenCLAttributes(DS.getAttributes());
2560 continue;
2561
Reid Spencer5f016e22007-07-11 17:01:13 +00002562 // storage-class-specifier
2563 case tok::kw_typedef:
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00002564 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_typedef, Loc,
2565 PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +00002566 break;
2567 case tok::kw_extern:
2568 if (DS.isThreadSpecified())
Chris Lattner1ab3b962008-11-18 07:48:38 +00002569 Diag(Tok, diag::ext_thread_before) << "extern";
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00002570 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_extern, Loc,
2571 PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +00002572 break;
Steve Naroff8d54bf22007-12-18 00:16:02 +00002573 case tok::kw___private_extern__:
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00002574 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_private_extern,
2575 Loc, PrevSpec, DiagID);
Steve Naroff8d54bf22007-12-18 00:16:02 +00002576 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00002577 case tok::kw_static:
2578 if (DS.isThreadSpecified())
Chris Lattner1ab3b962008-11-18 07:48:38 +00002579 Diag(Tok, diag::ext_thread_before) << "static";
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00002580 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_static, Loc,
2581 PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +00002582 break;
2583 case tok::kw_auto:
Richard Smith80ad52f2013-01-02 11:42:31 +00002584 if (getLangOpts().CPlusPlus11) {
Fariborz Jahanian12e3ece2011-02-22 23:17:49 +00002585 if (isKnownToBeTypeSpecifier(GetLookAheadToken(1))) {
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00002586 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_auto, Loc,
2587 PrevSpec, DiagID);
Fariborz Jahanian12e3ece2011-02-22 23:17:49 +00002588 if (!isInvalid)
Richard Smith8f4fb192011-09-04 19:54:14 +00002589 Diag(Tok, diag::ext_auto_storage_class)
Fariborz Jahanian12e3ece2011-02-22 23:17:49 +00002590 << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc());
Richard Smith8f4fb192011-09-04 19:54:14 +00002591 } else
Fariborz Jahanian12e3ece2011-02-22 23:17:49 +00002592 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_auto, Loc, PrevSpec,
2593 DiagID);
Richard Smith8f4fb192011-09-04 19:54:14 +00002594 } else
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00002595 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_auto, Loc,
2596 PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +00002597 break;
2598 case tok::kw_register:
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00002599 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_register, Loc,
2600 PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +00002601 break;
Sebastian Redl669d5d72008-11-14 23:42:31 +00002602 case tok::kw_mutable:
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00002603 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_mutable, Loc,
2604 PrevSpec, DiagID);
Sebastian Redl669d5d72008-11-14 23:42:31 +00002605 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00002606 case tok::kw___thread:
John McCallfec54012009-08-03 20:12:06 +00002607 isInvalid = DS.SetStorageClassSpecThread(Loc, PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +00002608 break;
Mike Stump1eb44332009-09-09 15:08:12 +00002609
Reid Spencer5f016e22007-07-11 17:01:13 +00002610 // function-specifier
2611 case tok::kw_inline:
Chad Rosier22aa6902012-12-21 22:24:43 +00002612 isInvalid = DS.setFunctionSpecInline(Loc);
Reid Spencer5f016e22007-07-11 17:01:13 +00002613 break;
Douglas Gregorb48fe382008-10-31 09:07:45 +00002614 case tok::kw_virtual:
Chad Rosier22aa6902012-12-21 22:24:43 +00002615 isInvalid = DS.setFunctionSpecVirtual(Loc);
Douglas Gregorb48fe382008-10-31 09:07:45 +00002616 break;
Douglas Gregorb48fe382008-10-31 09:07:45 +00002617 case tok::kw_explicit:
Chad Rosier22aa6902012-12-21 22:24:43 +00002618 isInvalid = DS.setFunctionSpecExplicit(Loc);
Douglas Gregorb48fe382008-10-31 09:07:45 +00002619 break;
Richard Smithde03c152013-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 Lattner80d0c892009-01-21 19:48:37 +00002625
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002626 // alignment-specifier
2627 case tok::kw__Alignas:
David Blaikie4e4d0842012-03-11 07:00:24 +00002628 if (!getLangOpts().C11)
Jordan Rosef70a8862012-06-30 21:33:57 +00002629 Diag(Tok, diag::ext_c11_alignment) << Tok.getName();
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002630 ParseAlignmentSpecifier(DS.getAttributes());
2631 continue;
2632
Anders Carlssonf47f7a12009-05-06 04:46:28 +00002633 // friend
2634 case tok::kw_friend:
John McCall67d1a672009-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 Carlssonf47f7a12009-05-06 04:46:28 +00002642 break;
Mike Stump1eb44332009-09-09 15:08:12 +00002643
Douglas Gregor8d267c52011-09-09 02:06:17 +00002644 // Modules
2645 case tok::kw___module_private__:
2646 isInvalid = DS.setModulePrivateSpec(Loc, PrevSpec, DiagID);
2647 break;
Chad Rosier8decdee2012-06-26 22:30:43 +00002648
Sebastian Redl2ac67232009-11-05 15:47:02 +00002649 // constexpr
2650 case tok::kw_constexpr:
2651 isInvalid = DS.SetConstexprSpec(Loc, PrevSpec, DiagID);
2652 break;
2653
Chris Lattner80d0c892009-01-21 19:48:37 +00002654 // type-specifier
2655 case tok::kw_short:
John McCallfec54012009-08-03 20:12:06 +00002656 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_short, Loc, PrevSpec,
2657 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002658 break;
2659 case tok::kw_long:
2660 if (DS.getTypeSpecWidth() != DeclSpec::TSW_long)
John McCallfec54012009-08-03 20:12:06 +00002661 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_long, Loc, PrevSpec,
2662 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002663 else
John McCallfec54012009-08-03 20:12:06 +00002664 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_longlong, Loc, PrevSpec,
2665 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002666 break;
Francois Pichet338d7f72011-04-28 01:59:37 +00002667 case tok::kw___int64:
2668 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_longlong, Loc, PrevSpec,
2669 DiagID);
2670 break;
Chris Lattner80d0c892009-01-21 19:48:37 +00002671 case tok::kw_signed:
John McCallfec54012009-08-03 20:12:06 +00002672 isInvalid = DS.SetTypeSpecSign(DeclSpec::TSS_signed, Loc, PrevSpec,
2673 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002674 break;
2675 case tok::kw_unsigned:
John McCallfec54012009-08-03 20:12:06 +00002676 isInvalid = DS.SetTypeSpecSign(DeclSpec::TSS_unsigned, Loc, PrevSpec,
2677 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002678 break;
2679 case tok::kw__Complex:
John McCallfec54012009-08-03 20:12:06 +00002680 isInvalid = DS.SetTypeSpecComplex(DeclSpec::TSC_complex, Loc, PrevSpec,
2681 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002682 break;
2683 case tok::kw__Imaginary:
John McCallfec54012009-08-03 20:12:06 +00002684 isInvalid = DS.SetTypeSpecComplex(DeclSpec::TSC_imaginary, Loc, PrevSpec,
2685 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002686 break;
2687 case tok::kw_void:
John McCallfec54012009-08-03 20:12:06 +00002688 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_void, Loc, PrevSpec,
2689 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002690 break;
2691 case tok::kw_char:
John McCallfec54012009-08-03 20:12:06 +00002692 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char, Loc, PrevSpec,
2693 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002694 break;
2695 case tok::kw_int:
John McCallfec54012009-08-03 20:12:06 +00002696 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, PrevSpec,
2697 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002698 break;
Richard Smith5a5a9712012-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 Lattner80d0c892009-01-21 19:48:37 +00002707 case tok::kw_float:
John McCallfec54012009-08-03 20:12:06 +00002708 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_float, Loc, PrevSpec,
2709 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002710 break;
2711 case tok::kw_double:
John McCallfec54012009-08-03 20:12:06 +00002712 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_double, Loc, PrevSpec,
2713 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002714 break;
2715 case tok::kw_wchar_t:
John McCallfec54012009-08-03 20:12:06 +00002716 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_wchar, Loc, PrevSpec,
2717 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002718 break;
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00002719 case tok::kw_char16_t:
John McCallfec54012009-08-03 20:12:06 +00002720 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char16, Loc, PrevSpec,
2721 DiagID);
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00002722 break;
2723 case tok::kw_char32_t:
John McCallfec54012009-08-03 20:12:06 +00002724 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char32, Loc, PrevSpec,
2725 DiagID);
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00002726 break;
Chris Lattner80d0c892009-01-21 19:48:37 +00002727 case tok::kw_bool:
2728 case tok::kw__Bool:
Argyrios Kyrtzidis4383e182010-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 Jahaniane106a0b2011-04-19 21:42:37 +00002734 // For better error recovery.
2735 Tok.setKind(tok::identifier);
Argyrios Kyrtzidis4383e182010-11-16 18:18:13 +00002736 isInvalid = true;
2737 } else {
2738 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_bool, Loc, PrevSpec,
2739 DiagID);
2740 }
Chris Lattner80d0c892009-01-21 19:48:37 +00002741 break;
2742 case tok::kw__Decimal32:
John McCallfec54012009-08-03 20:12:06 +00002743 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal32, Loc, PrevSpec,
2744 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002745 break;
2746 case tok::kw__Decimal64:
John McCallfec54012009-08-03 20:12:06 +00002747 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal64, Loc, PrevSpec,
2748 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002749 break;
2750 case tok::kw__Decimal128:
John McCallfec54012009-08-03 20:12:06 +00002751 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal128, Loc, PrevSpec,
2752 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002753 break;
John Thompson82287d12010-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 Benyeib13621d2012-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 Benyeie6b9d802013-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 McCalla5fc4722011-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 Lattner80d0c892009-01-21 19:48:37 +00002792
2793 // class-specifier:
2794 case tok::kw_class:
2795 case tok::kw_struct:
Joao Matos6666ed42012-08-31 18:45:21 +00002796 case tok::kw___interface:
Chris Lattner4c97d762009-04-12 21:49:30 +00002797 case tok::kw_union: {
2798 tok::TokenKind Kind = Tok.getKind();
2799 ConsumeToken();
Michael Han2e397132012-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 Wendlingad017fa2012-12-20 19:22:21 +00002804 ParsedAttributesWithRange Attributes(AttrFactory);
Richard Smith69730c12012-03-12 07:56:15 +00002805 ParseClassSpecifier(Kind, Loc, DS, TemplateInfo, AS,
Bill Wendlingad017fa2012-12-20 19:22:21 +00002806 EnteringContext, DSContext, Attributes);
Michael Han2e397132012-11-26 22:54:45 +00002807
2808 // If there are attributes following class specifier,
2809 // take them over and handle them here.
Bill Wendlingad017fa2012-12-20 19:22:21 +00002810 if (!Attributes.empty()) {
Michael Han2e397132012-11-26 22:54:45 +00002811 AttrsLastTime = true;
Bill Wendlingad017fa2012-12-20 19:22:21 +00002812 attrs.takeAllFrom(Attributes);
Michael Han2e397132012-11-26 22:54:45 +00002813 }
Chris Lattner80d0c892009-01-21 19:48:37 +00002814 continue;
Chris Lattner4c97d762009-04-12 21:49:30 +00002815 }
Chris Lattner80d0c892009-01-21 19:48:37 +00002816
2817 // enum-specifier:
2818 case tok::kw_enum:
Chris Lattner4c97d762009-04-12 21:49:30 +00002819 ConsumeToken();
Richard Smith69730c12012-03-12 07:56:15 +00002820 ParseEnumSpecifier(Loc, DS, TemplateInfo, AS, DSContext);
Chris Lattner80d0c892009-01-21 19:48:37 +00002821 continue;
2822
2823 // cv-qualifier:
2824 case tok::kw_const:
John McCallfec54012009-08-03 20:12:06 +00002825 isInvalid = DS.SetTypeQual(DeclSpec::TQ_const, Loc, PrevSpec, DiagID,
Richard Smithd654f2d2012-10-17 23:31:46 +00002826 getLangOpts());
Chris Lattner80d0c892009-01-21 19:48:37 +00002827 break;
2828 case tok::kw_volatile:
John McCallfec54012009-08-03 20:12:06 +00002829 isInvalid = DS.SetTypeQual(DeclSpec::TQ_volatile, Loc, PrevSpec, DiagID,
Richard Smithd654f2d2012-10-17 23:31:46 +00002830 getLangOpts());
Chris Lattner80d0c892009-01-21 19:48:37 +00002831 break;
2832 case tok::kw_restrict:
John McCallfec54012009-08-03 20:12:06 +00002833 isInvalid = DS.SetTypeQual(DeclSpec::TQ_restrict, Loc, PrevSpec, DiagID,
Richard Smithd654f2d2012-10-17 23:31:46 +00002834 getLangOpts());
Chris Lattner80d0c892009-01-21 19:48:37 +00002835 break;
2836
Douglas Gregord57959a2009-03-27 23:10:48 +00002837 // C++ typename-specifier:
2838 case tok::kw_typename:
John McCall9ba61662010-02-26 08:45:28 +00002839 if (TryAnnotateTypeOrScopeToken()) {
2840 DS.SetTypeSpecError();
2841 goto DoneWithDeclSpec;
2842 }
2843 if (!Tok.is(tok::kw_typename))
Douglas Gregord57959a2009-03-27 23:10:48 +00002844 continue;
2845 break;
2846
Chris Lattner80d0c892009-01-21 19:48:37 +00002847 // GNU typeof support.
2848 case tok::kw_typeof:
2849 ParseTypeofSpecifier(DS);
2850 continue;
2851
David Blaikie42d6d0c2011-12-04 05:04:18 +00002852 case tok::annot_decltype:
Anders Carlsson6fd634f2009-06-24 17:47:40 +00002853 ParseDecltypeSpecifier(DS);
2854 continue;
2855
Sean Huntdb5d44b2011-05-19 05:37:45 +00002856 case tok::kw___underlying_type:
2857 ParseUnderlyingTypeSpecifier(DS);
Eli Friedmanb001de72011-10-06 23:00:33 +00002858 continue;
2859
2860 case tok::kw__Atomic:
2861 ParseAtomicSpecifier(DS);
2862 continue;
Sean Huntdb5d44b2011-05-19 05:37:45 +00002863
Peter Collingbourne207f4d82011-03-18 22:38:29 +00002864 // OpenCL qualifiers:
Chad Rosier8decdee2012-06-26 22:30:43 +00002865 case tok::kw_private:
David Blaikie4e4d0842012-03-11 07:00:24 +00002866 if (!getLangOpts().OpenCL)
Peter Collingbourne207f4d82011-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 Rosier8decdee2012-06-26 22:30:43 +00002877
Steve Naroffd3ded1f2008-06-05 00:02:44 +00002878 case tok::less:
Chris Lattner3bd934a2008-07-26 01:18:38 +00002879 // GCC ObjC supports types like "<SomeProtocol>" as a synonym for
Chris Lattnerbce61352008-07-26 00:20:22 +00002880 // "id<SomeProtocol>". This is hopelessly old fashioned and dangerous,
2881 // but we support it.
David Blaikie4e4d0842012-03-11 07:00:24 +00002882 if (DS.hasTypeSpecifier() || !getLangOpts().ObjC1)
Chris Lattnerbce61352008-07-26 00:20:22 +00002883 goto DoneWithDeclSpec;
Mike Stump1eb44332009-09-09 15:08:12 +00002884
Douglas Gregor46f936e2010-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 Rosier8decdee2012-06-26 22:30:43 +00002889
Douglas Gregor9bd1d8d2010-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;
Reid Spencer5f016e22007-07-11 17:01:13 +00002893 }
John McCallfec54012009-08-03 20:12:06 +00002894 // If the specifier wasn't legal, issue a diagnostic.
Reid Spencer5f016e22007-07-11 17:01:13 +00002895 if (isInvalid) {
2896 assert(PrevSpec && "Method did not return previous specifier!");
John McCallfec54012009-08-03 20:12:06 +00002897 assert(DiagID);
Chad Rosier8decdee2012-06-26 22:30:43 +00002898
Douglas Gregorae2fb142010-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;
Reid Spencer5f016e22007-07-11 17:01:13 +00002904 }
Fariborz Jahanian12e3ece2011-02-22 23:17:49 +00002905
Chris Lattner81c018d2008-03-13 06:29:04 +00002906 DS.SetRangeEnd(Tok.getLocation());
Fariborz Jahaniane106a0b2011-04-19 21:42:37 +00002907 if (DiagID != diag::err_bool_redeclaration)
2908 ConsumeToken();
Sean Hunt2edf0a22012-06-23 05:07:58 +00002909
2910 AttrsLastTime = false;
Reid Spencer5f016e22007-07-11 17:01:13 +00002911 }
2912}
Douglas Gregoradcac882008-12-01 23:54:00 +00002913
Chris Lattnercd4b83c2007-10-29 04:42:53 +00002914/// ParseStructDeclaration - Parse a struct declaration without the terminating
2915/// semicolon.
2916///
Reid Spencer5f016e22007-07-11 17:01:13 +00002917/// struct-declaration:
Chris Lattnercd4b83c2007-10-29 04:42:53 +00002918/// specifier-qualifier-list struct-declarator-list
Reid Spencer5f016e22007-07-11 17:01:13 +00002919/// [GNU] __extension__ struct-declaration
Chris Lattnercd4b83c2007-10-29 04:42:53 +00002920/// [GNU] specifier-qualifier-list
Reid Spencer5f016e22007-07-11 17:01:13 +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 Lattnere1359422008-04-10 06:46:29 +00002931void Parser::
Eli Friedmanf66a0dd2012-08-08 23:04:35 +00002932ParseStructDeclaration(ParsingDeclSpec &DS, FieldCallback &Fields) {
Chad Rosier8decdee2012-06-26 22:30:43 +00002933
Chris Lattnerc46d1a12008-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 Naroff28a7ca82007-08-20 22:28:22 +00002937 ConsumeToken();
Chris Lattnerc46d1a12008-10-20 06:45:43 +00002938 return ParseStructDeclaration(DS, Fields);
2939 }
Mike Stump1eb44332009-09-09 15:08:12 +00002940
Steve Naroff28a7ca82007-08-20 22:28:22 +00002941 // Parse the common specifier-qualifiers-list piece.
Steve Naroff28a7ca82007-08-20 22:28:22 +00002942 ParseSpecifierQualifierList(DS);
Mike Stump1eb44332009-09-09 15:08:12 +00002943
Douglas Gregor4920f1f2009-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 Lattner04d66662007-10-09 17:33:22 +00002946 if (Tok.is(tok::semi)) {
Eli Friedmanf66a0dd2012-08-08 23:04:35 +00002947 Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS_none,
2948 DS);
2949 DS.complete(TheDecl);
Steve Naroff28a7ca82007-08-20 22:28:22 +00002950 return;
2951 }
2952
2953 // Read struct-declarators until we find the semicolon.
John McCallbdd563e2009-11-03 02:38:08 +00002954 bool FirstDeclarator = true;
Richard Smith7984de32012-01-12 23:53:29 +00002955 SourceLocation CommaLoc;
Steve Naroff28a7ca82007-08-20 22:28:22 +00002956 while (1) {
Eli Friedmanf66a0dd2012-08-08 23:04:35 +00002957 ParsingFieldDeclarator DeclaratorInfo(*this, DS);
Richard Smith7984de32012-01-12 23:53:29 +00002958 DeclaratorInfo.D.setCommaLoc(CommaLoc);
John McCallbdd563e2009-11-03 02:38:08 +00002959
Bill Wendlingad017fa2012-12-20 19:22:21 +00002960 // Attributes are only allowed here on successive declarators.
John McCall7f040a92010-12-24 02:08:15 +00002961 if (!FirstDeclarator)
2962 MaybeParseGNUAttributes(DeclaratorInfo.D);
Mike Stump1eb44332009-09-09 15:08:12 +00002963
Steve Naroff28a7ca82007-08-20 22:28:22 +00002964 /// struct-declarator: declarator
2965 /// struct-declarator: declarator[opt] ':' constant-expression
Chris Lattnera1efc8c2009-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 Lattnere1359422008-04-10 06:46:29 +00002969 ParseDeclarator(DeclaratorInfo.D);
Chris Lattnera1efc8c2009-12-10 01:59:24 +00002970 }
Mike Stump1eb44332009-09-09 15:08:12 +00002971
Chris Lattner04d66662007-10-09 17:33:22 +00002972 if (Tok.is(tok::colon)) {
Steve Naroff28a7ca82007-08-20 22:28:22 +00002973 ConsumeToken();
John McCall60d7b3a2010-08-24 06:29:42 +00002974 ExprResult Res(ParseConstantExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002975 if (Res.isInvalid())
Steve Naroff28a7ca82007-08-20 22:28:22 +00002976 SkipUntil(tok::semi, true, true);
Chris Lattner60b1e3e2008-04-10 06:15:14 +00002977 else
Sebastian Redleffa8d12008-12-10 00:02:53 +00002978 DeclaratorInfo.BitfieldSize = Res.release();
Steve Naroff28a7ca82007-08-20 22:28:22 +00002979 }
Sebastian Redlab197ba2009-02-09 18:23:29 +00002980
Steve Naroff28a7ca82007-08-20 22:28:22 +00002981 // If attributes exist after the declarator, parse them.
John McCall7f040a92010-12-24 02:08:15 +00002982 MaybeParseGNUAttributes(DeclaratorInfo.D);
Sebastian Redlab197ba2009-02-09 18:23:29 +00002983
John McCallbdd563e2009-11-03 02:38:08 +00002984 // We're done with this declarator; invoke the callback.
Eli Friedman817a8862012-08-08 23:35:12 +00002985 Fields.invoke(DeclaratorInfo);
John McCallbdd563e2009-11-03 02:38:08 +00002986
Steve Naroff28a7ca82007-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 Lattner04d66662007-10-09 17:33:22 +00002989 if (Tok.isNot(tok::comma))
Chris Lattnercd4b83c2007-10-29 04:42:53 +00002990 return;
Sebastian Redlab197ba2009-02-09 18:23:29 +00002991
Steve Naroff28a7ca82007-08-20 22:28:22 +00002992 // Consume the comma.
Richard Smith7984de32012-01-12 23:53:29 +00002993 CommaLoc = ConsumeToken();
Sebastian Redlab197ba2009-02-09 18:23:29 +00002994
John McCallbdd563e2009-11-03 02:38:08 +00002995 FirstDeclarator = false;
Steve Naroff28a7ca82007-08-20 22:28:22 +00002996 }
Steve Naroff28a7ca82007-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 Lattner5a6ddbf2008-06-21 19:39:06 +00003007/// [OBC] '@' 'defs' '(' class-name ')'
Steve Naroff28a7ca82007-08-20 22:28:22 +00003008///
Reid Spencer5f016e22007-07-11 17:01:13 +00003009void Parser::ParseStructUnionBody(SourceLocation RecordLoc,
John McCalld226f652010-08-21 09:40:31 +00003010 unsigned TagType, Decl *TagDecl) {
John McCallf312b1e2010-08-26 23:41:50 +00003011 PrettyDeclStackTraceEntry CrashInfo(Actions, TagDecl, RecordLoc,
3012 "parsing struct/union body");
Mike Stump1eb44332009-09-09 15:08:12 +00003013
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00003014 BalancedDelimiterTracker T(*this, tok::l_brace);
3015 if (T.consumeOpen())
3016 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003017
Douglas Gregor3218c4b2009-01-09 22:42:13 +00003018 ParseScope StructScope(this, Scope::ClassScope|Scope::DeclScope);
Douglas Gregor23c94db2010-07-02 17:43:08 +00003019 Actions.ActOnTagStartDefinition(getCurScope(), TagDecl);
Douglas Gregor72de6672009-01-08 20:45:30 +00003020
Reid Spencer5f016e22007-07-11 17:01:13 +00003021 // Empty structs are an extension in C (C99 6.7.2.1p7), but are allowed in
3022 // C++.
David Blaikie4e4d0842012-03-11 07:00:24 +00003023 if (Tok.is(tok::r_brace) && !getLangOpts().CPlusPlus) {
Richard Smithd7c56e12011-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 }
Reid Spencer5f016e22007-07-11 17:01:13 +00003027
Chris Lattner5f9e2722011-07-23 10:55:15 +00003028 SmallVector<Decl *, 32> FieldDecls;
Chris Lattnere1359422008-04-10 06:46:29 +00003029
Reid Spencer5f016e22007-07-11 17:01:13 +00003030 // While we still have something to read, read the declarations in the struct.
Chris Lattner04d66662007-10-09 17:33:22 +00003031 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003032 // Each iteration of this loop reads one struct-declaration.
Mike Stump1eb44332009-09-09 15:08:12 +00003033
Reid Spencer5f016e22007-07-11 17:01:13 +00003034 // Check for extraneous top-level semicolon.
Chris Lattner04d66662007-10-09 17:33:22 +00003035 if (Tok.is(tok::semi)) {
Richard Smitheab9d6f2012-07-23 05:45:25 +00003036 ConsumeExtraSemi(InsideStruct, TagType);
Reid Spencer5f016e22007-07-11 17:01:13 +00003037 continue;
3038 }
Chris Lattnere1359422008-04-10 06:46:29 +00003039
John McCallbdd563e2009-11-03 02:38:08 +00003040 if (!Tok.is(tok::at)) {
3041 struct CFieldCallback : FieldCallback {
3042 Parser &P;
John McCalld226f652010-08-21 09:40:31 +00003043 Decl *TagDecl;
Chris Lattner5f9e2722011-07-23 10:55:15 +00003044 SmallVectorImpl<Decl *> &FieldDecls;
John McCallbdd563e2009-11-03 02:38:08 +00003045
John McCalld226f652010-08-21 09:40:31 +00003046 CFieldCallback(Parser &P, Decl *TagDecl,
Chris Lattner5f9e2722011-07-23 10:55:15 +00003047 SmallVectorImpl<Decl *> &FieldDecls) :
John McCallbdd563e2009-11-03 02:38:08 +00003048 P(P), TagDecl(TagDecl), FieldDecls(FieldDecls) {}
3049
Eli Friedmandcdff462012-08-08 23:53:27 +00003050 void invoke(ParsingFieldDeclarator &FD) {
John McCallbdd563e2009-11-03 02:38:08 +00003051 // Install the declarator into the current TagDecl.
John McCalld226f652010-08-21 09:40:31 +00003052 Decl *Field = P.Actions.ActOnField(P.getCurScope(), TagDecl,
John McCall4ba39712009-11-03 21:13:47 +00003053 FD.D.getDeclSpec().getSourceRange().getBegin(),
3054 FD.D, FD.BitfieldSize);
John McCallbdd563e2009-11-03 02:38:08 +00003055 FieldDecls.push_back(Field);
Eli Friedmanf66a0dd2012-08-08 23:04:35 +00003056 FD.complete(Field);
Douglas Gregor91a28862009-08-26 14:27:30 +00003057 }
John McCallbdd563e2009-11-03 02:38:08 +00003058 } Callback(*this, TagDecl, FieldDecls);
3059
Eli Friedmanf66a0dd2012-08-08 23:04:35 +00003060 // Parse all the comma separated declarators.
3061 ParsingDeclSpec DS(*this);
John McCallbdd563e2009-11-03 02:38:08 +00003062 ParseStructDeclaration(DS, Callback);
Chris Lattner5a6ddbf2008-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 Lattner3e156ad2010-02-02 00:37:27 +00003067 SkipUntil(tok::semi, true);
Chris Lattner5a6ddbf2008-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 Lattner3e156ad2010-02-02 00:37:27 +00003074 SkipUntil(tok::semi, true);
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00003075 continue;
3076 }
Chris Lattner5f9e2722011-07-23 10:55:15 +00003077 SmallVector<Decl *, 16> Fields;
Douglas Gregor23c94db2010-07-02 17:43:08 +00003078 Actions.ActOnDefs(getCurScope(), TagDecl, Tok.getLocation(),
Douglas Gregor44b43212008-12-11 16:49:14 +00003079 Tok.getIdentifierInfo(), Fields);
Chris Lattner5a6ddbf2008-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 Stump1eb44332009-09-09 15:08:12 +00003083 }
Reid Spencer5f016e22007-07-11 17:01:13 +00003084
Chris Lattner04d66662007-10-09 17:33:22 +00003085 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003086 ConsumeToken();
Chris Lattner04d66662007-10-09 17:33:22 +00003087 } else if (Tok.is(tok::r_brace)) {
Chris Lattner3e156ad2010-02-02 00:37:27 +00003088 ExpectAndConsume(tok::semi, diag::ext_expected_semi_decl_list);
Reid Spencer5f016e22007-07-11 17:01:13 +00003089 break;
3090 } else {
Chris Lattner3e156ad2010-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 ';'.
Reid Spencer5f016e22007-07-11 17:01:13 +00003093 SkipUntil(tok::r_brace, true, true);
Chris Lattner3e156ad2010-02-02 00:37:27 +00003094 // If we stopped at a ';', eat it.
3095 if (Tok.is(tok::semi)) ConsumeToken();
Reid Spencer5f016e22007-07-11 17:01:13 +00003096 }
3097 }
Mike Stump1eb44332009-09-09 15:08:12 +00003098
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00003099 T.consumeClose();
Mike Stump1eb44332009-09-09 15:08:12 +00003100
John McCall0b7e6782011-03-24 11:26:52 +00003101 ParsedAttributes attrs(AttrFactory);
Reid Spencer5f016e22007-07-11 17:01:13 +00003102 // If attributes exist after struct contents, parse them.
John McCall7f040a92010-12-24 02:08:15 +00003103 MaybeParseGNUAttributes(attrs);
Daniel Dunbar1bfe1c22008-10-03 02:03:53 +00003104
Douglas Gregor23c94db2010-07-02 17:43:08 +00003105 Actions.ActOnFields(getCurScope(),
David Blaikie77b6de02011-09-22 02:58:26 +00003106 RecordLoc, TagDecl, FieldDecls,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00003107 T.getOpenLocation(), T.getCloseLocation(),
John McCall7f040a92010-12-24 02:08:15 +00003108 attrs.getList());
Douglas Gregor72de6672009-01-08 20:45:30 +00003109 StructScope.Exit();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00003110 Actions.ActOnTagFinishDefinition(getCurScope(), TagDecl,
3111 T.getCloseLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00003112}
3113
Reid Spencer5f016e22007-07-11 17:01:13 +00003114/// ParseEnumSpecifier
3115/// enum-specifier: [C99 6.7.2.2]
3116/// 'enum' identifier[opt] '{' enumerator-list '}'
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00003117///[C99/C++]'enum' identifier[opt] '{' enumerator-list ',' '}'
Reid Spencer5f016e22007-07-11 17:01:13 +00003118/// [GNU] 'enum' attributes[opt] identifier[opt] '{' enumerator-list ',' [opt]
3119/// '}' attributes[opt]
Aaron Ballman6454a022012-03-01 04:09:28 +00003120/// [MS] 'enum' __declspec[opt] identifier[opt] '{' enumerator-list ',' [opt]
3121/// '}'
Reid Spencer5f016e22007-07-11 17:01:13 +00003122/// 'enum' identifier
3123/// [GNU] 'enum' attributes[opt] identifier
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00003124///
Richard Smith1af83c42012-03-23 03:33:32 +00003125/// [C++11] enum-head '{' enumerator-list[opt] '}'
3126/// [C++11] enum-head '{' enumerator-list ',' '}'
Douglas Gregor1274ccd2010-10-08 23:50:27 +00003127///
Richard Smith1af83c42012-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 Gregor1274ccd2010-10-08 23:50:27 +00003132///
Richard Smith1af83c42012-03-23 03:33:32 +00003133/// enum-key: [C++11]
Douglas Gregor1274ccd2010-10-08 23:50:27 +00003134/// 'enum'
3135/// 'enum' 'class'
3136/// 'enum' 'struct'
3137///
Richard Smith1af83c42012-03-23 03:33:32 +00003138/// enum-base: [C++11]
Douglas Gregor1274ccd2010-10-08 23:50:27 +00003139/// ':' type-specifier-seq
3140///
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00003141/// [C++] elaborated-type-specifier:
3142/// [C++] 'enum' '::'[opt] nested-name-specifier[opt] identifier
3143///
Chris Lattner4c97d762009-04-12 21:49:30 +00003144void Parser::ParseEnumSpecifier(SourceLocation StartLoc, DeclSpec &DS,
Douglas Gregor9b9edd62010-03-02 17:53:14 +00003145 const ParsedTemplateInfo &TemplateInfo,
Richard Smith69730c12012-03-12 07:56:15 +00003146 AccessSpecifier AS, DeclSpecContext DSC) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003147 // Parse the tag portion of this.
Douglas Gregor374929f2009-09-18 15:37:17 +00003148 if (Tok.is(tok::code_completion)) {
3149 // Code completion for an enum name.
Douglas Gregor23c94db2010-07-02 17:43:08 +00003150 Actions.CodeCompleteTag(getCurScope(), DeclSpec::TST_enum);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00003151 return cutOffParsing();
Douglas Gregor374929f2009-09-18 15:37:17 +00003152 }
John McCall57c13002011-07-06 05:58:41 +00003153
Sean Hunt2edf0a22012-06-23 05:07:58 +00003154 // If attributes exist after tag, parse them.
3155 ParsedAttributesWithRange attrs(AttrFactory);
3156 MaybeParseGNUAttributes(attrs);
Richard Smith4e24f0f2013-01-02 12:01:23 +00003157 MaybeParseCXX11Attributes(attrs);
Sean Hunt2edf0a22012-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 Smithbdad7a22012-01-10 01:33:14 +00003163 SourceLocation ScopedEnumKWLoc;
John McCall57c13002011-07-06 05:58:41 +00003164 bool IsScopedUsingClassTag = false;
3165
John McCall1e12b3d2012-06-23 22:30:04 +00003166 // In C++11, recognize 'enum class' and 'enum struct'.
Richard Smith80ad52f2013-01-02 11:42:31 +00003167 if (getLangOpts().CPlusPlus11 &&
John McCall57c13002011-07-06 05:58:41 +00003168 (Tok.is(tok::kw_class) || Tok.is(tok::kw_struct))) {
Richard Smith7fe62082011-10-15 05:09:34 +00003169 Diag(Tok, diag::warn_cxx98_compat_scoped_enum);
John McCall57c13002011-07-06 05:58:41 +00003170 IsScopedUsingClassTag = Tok.is(tok::kw_class);
Richard Smithbdad7a22012-01-10 01:33:14 +00003171 ScopedEnumKWLoc = ConsumeToken();
Chad Rosier8decdee2012-06-26 22:30:43 +00003172
Bill Wendlingad017fa2012-12-20 19:22:21 +00003173 // Attributes are not allowed between these keywords. Diagnose,
John McCall1e12b3d2012-06-23 22:30:04 +00003174 // but then just treat them like they appeared in the right place.
Sean Hunt2edf0a22012-06-23 05:07:58 +00003175 ProhibitAttributes(attrs);
John McCall1e12b3d2012-06-23 22:30:04 +00003176
3177 // They are allowed afterwards, though.
3178 MaybeParseGNUAttributes(attrs);
Richard Smith4e24f0f2013-01-02 12:01:23 +00003179 MaybeParseCXX11Attributes(attrs);
John McCall1e12b3d2012-06-23 22:30:04 +00003180 while (Tok.is(tok::kw___declspec))
3181 ParseMicrosoftDeclSpec(attrs);
John McCall57c13002011-07-06 05:58:41 +00003182 }
Richard Smith1af83c42012-03-23 03:33:32 +00003183
John McCall13489672012-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 Smith1af83c42012-03-23 03:33:32 +00003194
Richard Smith7796eb52012-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 Smith80ad52f2013-01-02 11:42:31 +00003199 (getLangOpts().CPlusPlus11 || getLangOpts().MicrosoftExt ||
Richard Smith7796eb52012-03-12 08:56:40 +00003200 getLangOpts().ObjC2);
John McCall57c13002011-07-06 05:58:41 +00003201
Abramo Bagnarae4da7a02010-05-19 21:37:53 +00003202 CXXScopeSpec &SS = DS.getTypeSpecScope();
David Blaikie4e4d0842012-03-11 07:00:24 +00003203 if (getLangOpts().CPlusPlus) {
John McCall57c13002011-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 Rosier8decdee2012-06-26 22:30:43 +00003207
3208 if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(),
Douglas Gregorefaa93a2011-11-07 17:33:42 +00003209 /*EnteringContext=*/false))
John McCall9ba61662010-02-26 08:45:28 +00003210 return;
3211
3212 if (SS.isSet() && Tok.isNot(tok::identifier)) {
Argyrios Kyrtzidiseb83ecd2008-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 Stump1eb44332009-09-09 15:08:12 +00003222
Argyrios Kyrtzidise281b4c2008-09-11 00:21:41 +00003223 // Must have either 'enum name' or 'enum {...}'.
Douglas Gregorb9075602011-02-22 02:55:24 +00003224 if (Tok.isNot(tok::identifier) && Tok.isNot(tok::l_brace) &&
Richard Smith7796eb52012-03-12 08:56:40 +00003225 !(AllowFixedUnderlyingType && Tok.is(tok::colon))) {
Argyrios Kyrtzidise281b4c2008-09-11 00:21:41 +00003226 Diag(Tok, diag::err_expected_ident_lbrace);
Mike Stump1eb44332009-09-09 15:08:12 +00003227
Argyrios Kyrtzidise281b4c2008-09-11 00:21:41 +00003228 // Skip the rest of this declarator, up until the comma or semicolon.
3229 SkipUntil(tok::comma, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00003230 return;
Argyrios Kyrtzidise281b4c2008-09-11 00:21:41 +00003231 }
Mike Stump1eb44332009-09-09 15:08:12 +00003232
Argyrios Kyrtzidise281b4c2008-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 Stump1eb44332009-09-09 15:08:12 +00003240
Richard Smithbdad7a22012-01-10 01:33:14 +00003241 if (!Name && ScopedEnumKWLoc.isValid()) {
Douglas Gregor1274ccd2010-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 Smithbdad7a22012-01-10 01:33:14 +00003245 ScopedEnumKWLoc = SourceLocation();
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +00003246 IsScopedUsingClassTag = false;
Douglas Gregor1274ccd2010-10-08 23:50:27 +00003247 }
3248
John McCall13489672012-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 Smith1af83c42012-03-23 03:33:32 +00003253
Douglas Gregor1274ccd2010-10-08 23:50:27 +00003254 TypeResult BaseType;
3255
Douglas Gregora61b3e72010-12-01 17:42:47 +00003256 // Parse the fixed underlying type.
Richard Smith139be702012-07-02 19:14:01 +00003257 bool CanBeBitfield = getCurScope()->getFlags() & Scope::ClassScope;
Douglas Gregorb9075602011-02-22 02:55:24 +00003258 if (AllowFixedUnderlyingType && Tok.is(tok::colon)) {
Douglas Gregora61b3e72010-12-01 17:42:47 +00003259 bool PossibleBitfield = false;
Richard Smith139be702012-07-02 19:14:01 +00003260 if (CanBeBitfield) {
Douglas Gregora61b3e72010-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 Rosier8decdee2012-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 Gregora61b3e72010-12-01 17:42:47 +00003267 // underlying types anyway.
Richard Smith05766812012-08-18 00:55:03 +00003268 EnterExpressionEvaluationContext Unevaluated(Actions,
3269 Sema::ConstantEvaluated);
Douglas Gregora61b3e72010-12-01 17:42:47 +00003270 TPResult TPR = isExpressionOrTypeSpecifierSimple(NextToken().getKind());
Chad Rosier8decdee2012-06-26 22:30:43 +00003271 // If the next token starts an expression, we know we're parsing a
Douglas Gregora61b3e72010-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 Rosier8decdee2012-06-26 22:30:43 +00003277 // lookahead one more token to see if it's obvious that we have a
Douglas Gregora61b3e72010-12-01 17:42:47 +00003278 // fixed underlying type.
Chad Rosier8decdee2012-06-26 22:30:43 +00003279 else if (TPR == TPResult::False() &&
Douglas Gregora61b3e72010-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 Smithd81e9612012-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 Blaikie4e4d0842012-03-11 07:00:24 +00003298 if ((getLangOpts().CPlusPlus &&
Richard Smithd81e9612012-02-23 01:36:12 +00003299 isCXXDeclarationSpecifier(TPResult::True()) != TPResult::True()) ||
David Blaikie4e4d0842012-03-11 07:00:24 +00003300 (!getLangOpts().CPlusPlus && !isDeclarationSpecifier(true))) {
Douglas Gregora61b3e72010-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 Rosier8decdee2012-06-26 22:30:43 +00003317
Richard Smith80ad52f2013-01-02 11:42:31 +00003318 if (getLangOpts().CPlusPlus11) {
Richard Smith7fe62082011-10-15 05:09:34 +00003319 Diag(StartLoc, diag::warn_cxx98_compat_enum_fixed_underlying_type);
Eli Friedmancef3a7b2012-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 Gregora61b3e72010-12-01 17:42:47 +00003326 }
Douglas Gregor1274ccd2010-10-08 23:50:27 +00003327 }
3328
Richard Smithbdad7a22012-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 Kyrtzidise281b4c2008-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 McCallf312b1e2010-08-26 23:41:50 +00003339 Sema::TagUseKind TUK;
John McCall13489672012-05-07 06:16:58 +00003340 if (!AllowDeclaration) {
Richard Smith7796eb52012-03-12 08:56:40 +00003341 TUK = Sema::TUK_Reference;
John McCall13489672012-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 Smithc9f35172012-06-25 21:37:02 +00003352 } else if (DSC != DSC_type_specifier &&
3353 (Tok.is(tok::semi) ||
Richard Smith139be702012-07-02 19:14:01 +00003354 (Tok.isAtStartOfLine() &&
3355 !isValidAfterTypeSpecifier(CanBeBitfield)))) {
Richard Smithc9f35172012-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 McCall13489672012-05-07 06:16:58 +00003364 } else {
John McCallf312b1e2010-08-26 23:41:50 +00003365 TUK = Sema::TUK_Reference;
John McCall13489672012-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 Smith1af83c42012-03-23 03:33:32 +00003373
3374 MultiTemplateParamsArg TParams;
Douglas Gregor8fc6d232010-05-03 17:48:54 +00003375 if (TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate &&
John McCallf312b1e2010-08-26 23:41:50 +00003376 TUK != Sema::TUK_Reference) {
Richard Smith80ad52f2013-01-02 11:42:31 +00003377 if (!getLangOpts().CPlusPlus11 || !SS.isSet()) {
Richard Smith1af83c42012-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 Gregor8fc6d232010-05-03 17:48:54 +00003394 }
Chad Rosier8decdee2012-06-26 22:30:43 +00003395
Sean Hunt2edf0a22012-06-23 05:07:58 +00003396 if (TUK == Sema::TUK_Reference)
3397 ProhibitAttributes(attrs);
Richard Smith1af83c42012-03-23 03:33:32 +00003398
Douglas Gregorb9075602011-02-22 02:55:24 +00003399 if (!Name && TUK != Sema::TUK_Definition) {
3400 Diag(Tok, diag::err_enumerator_unnamed_no_def);
Richard Smith1af83c42012-03-23 03:33:32 +00003401
Douglas Gregorb9075602011-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 Smith1af83c42012-03-23 03:33:32 +00003406
Douglas Gregor402abb52009-05-28 23:31:59 +00003407 bool Owned = false;
John McCallc4e70192009-09-11 04:59:25 +00003408 bool IsDependent = false;
Douglas Gregor48c89f42010-04-24 16:38:41 +00003409 const char *PrevSpec = 0;
3410 unsigned DiagID;
John McCalld226f652010-08-21 09:40:31 +00003411 Decl *TagDecl = Actions.ActOnTag(getCurScope(), DeclSpec::TST_enum, TUK,
John McCall7f040a92010-12-24 02:08:15 +00003412 StartLoc, SS, Name, NameLoc, attrs.getList(),
Richard Smith1af83c42012-03-23 03:33:32 +00003413 AS, DS.getModulePrivateSpecLoc(), TParams,
Richard Smithbdad7a22012-01-10 01:33:14 +00003414 Owned, IsDependent, ScopedEnumKWLoc,
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +00003415 IsScopedUsingClassTag, BaseType);
Douglas Gregor1274ccd2010-10-08 23:50:27 +00003416
Douglas Gregor48c89f42010-04-24 16:38:41 +00003417 if (IsDependent) {
Chad Rosier8decdee2012-06-26 22:30:43 +00003418 // This enum has a dependent nested-name-specifier. Handle it as a
Douglas Gregor48c89f42010-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 Rosier8decdee2012-06-26 22:30:43 +00003425
Douglas Gregor23c94db2010-07-02 17:43:08 +00003426 TypeResult Type = Actions.ActOnDependentTag(getCurScope(), DeclSpec::TST_enum,
Chad Rosier8decdee2012-06-26 22:30:43 +00003427 TUK, SS, Name, StartLoc,
Douglas Gregor48c89f42010-04-24 16:38:41 +00003428 NameLoc);
3429 if (Type.isInvalid()) {
3430 DS.SetTypeSpecError();
3431 return;
3432 }
Chad Rosier8decdee2012-06-26 22:30:43 +00003433
Abramo Bagnara0daaf322011-03-16 20:16:18 +00003434 if (DS.SetTypeSpecType(DeclSpec::TST_typename, StartLoc,
3435 NameLoc.isValid() ? NameLoc : StartLoc,
3436 PrevSpec, DiagID, Type.get()))
Douglas Gregor48c89f42010-04-24 16:38:41 +00003437 Diag(StartLoc, DiagID) << PrevSpec;
Chad Rosier8decdee2012-06-26 22:30:43 +00003438
Douglas Gregor48c89f42010-04-24 16:38:41 +00003439 return;
3440 }
Mike Stump1eb44332009-09-09 15:08:12 +00003441
John McCalld226f652010-08-21 09:40:31 +00003442 if (!TagDecl) {
Chad Rosier8decdee2012-06-26 22:30:43 +00003443 // The action failed to produce an enumeration tag. If this is a
Douglas Gregor48c89f42010-04-24 16:38:41 +00003444 // definition, consume the entire definition.
Richard Smith7796eb52012-03-12 08:56:40 +00003445 if (Tok.is(tok::l_brace) && TUK != Sema::TUK_Reference) {
Douglas Gregor48c89f42010-04-24 16:38:41 +00003446 ConsumeBrace();
3447 SkipUntil(tok::r_brace);
3448 }
Chad Rosier8decdee2012-06-26 22:30:43 +00003449
Douglas Gregor48c89f42010-04-24 16:38:41 +00003450 DS.SetTypeSpecError();
3451 return;
3452 }
Richard Smithbdad7a22012-01-10 01:33:14 +00003453
Richard Smithc9f35172012-06-25 21:37:02 +00003454 if (Tok.is(tok::l_brace) && TUK != Sema::TUK_Reference)
John McCall13489672012-05-07 06:16:58 +00003455 ParseEnumBody(StartLoc, TagDecl);
Mike Stump1eb44332009-09-09 15:08:12 +00003456
Abramo Bagnara0daaf322011-03-16 20:16:18 +00003457 if (DS.SetTypeSpecType(DeclSpec::TST_enum, StartLoc,
3458 NameLoc.isValid() ? NameLoc : StartLoc,
3459 PrevSpec, DiagID, TagDecl, Owned))
John McCallfec54012009-08-03 20:12:06 +00003460 Diag(StartLoc, DiagID) << PrevSpec;
Reid Spencer5f016e22007-07-11 17:01:13 +00003461}
3462
3463/// 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 McCalld226f652010-08-21 09:40:31 +00003473void Parser::ParseEnumBody(SourceLocation StartLoc, Decl *EnumDecl) {
Douglas Gregor074149e2009-01-05 19:45:36 +00003474 // Enter the scope of the enum body and start the definition.
3475 ParseScope EnumScope(this, Scope::DeclScope);
Douglas Gregor23c94db2010-07-02 17:43:08 +00003476 Actions.ActOnTagStartDefinition(getCurScope(), EnumDecl);
Douglas Gregor074149e2009-01-05 19:45:36 +00003477
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00003478 BalancedDelimiterTracker T(*this, tok::l_brace);
3479 T.consumeOpen();
Mike Stump1eb44332009-09-09 15:08:12 +00003480
Chris Lattner7946dd32007-08-27 17:24:30 +00003481 // C does not allow an empty enumerator-list, C++ does [dcl.enum].
David Blaikie4e4d0842012-03-11 07:00:24 +00003482 if (Tok.is(tok::r_brace) && !getLangOpts().CPlusPlus)
Fariborz Jahanian05115522010-05-28 22:23:22 +00003483 Diag(Tok, diag::error_empty_enum);
Mike Stump1eb44332009-09-09 15:08:12 +00003484
Chris Lattner5f9e2722011-07-23 10:55:15 +00003485 SmallVector<Decl *, 32> EnumConstantDecls;
Reid Spencer5f016e22007-07-11 17:01:13 +00003486
John McCalld226f652010-08-21 09:40:31 +00003487 Decl *LastEnumConstDecl = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00003488
Reid Spencer5f016e22007-07-11 17:01:13 +00003489 // Parse the enumerator-list.
Chris Lattner04d66662007-10-09 17:33:22 +00003490 while (Tok.is(tok::identifier)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003491 IdentifierInfo *Ident = Tok.getIdentifierInfo();
3492 SourceLocation IdentLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00003493
John McCall5b629aa2010-10-22 23:36:17 +00003494 // If attributes exist after the enumerator, parse them.
Sean Hunt2edf0a22012-06-23 05:07:58 +00003495 ParsedAttributesWithRange attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +00003496 MaybeParseGNUAttributes(attrs);
Richard Smith4e24f0f2013-01-02 12:01:23 +00003497 MaybeParseCXX11Attributes(attrs);
Sean Hunt2edf0a22012-06-23 05:07:58 +00003498 ProhibitAttributes(attrs);
John McCall5b629aa2010-10-22 23:36:17 +00003499
Reid Spencer5f016e22007-07-11 17:01:13 +00003500 SourceLocation EqualLoc;
John McCall60d7b3a2010-08-24 06:29:42 +00003501 ExprResult AssignedVal;
John McCall92576642012-05-07 06:16:41 +00003502 ParsingDeclRAIIObject PD(*this, ParsingDeclRAIIObject::NoParent);
Chad Rosier8decdee2012-06-26 22:30:43 +00003503
Chris Lattner04d66662007-10-09 17:33:22 +00003504 if (Tok.is(tok::equal)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003505 EqualLoc = ConsumeToken();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00003506 AssignedVal = ParseConstantExpression();
3507 if (AssignedVal.isInvalid())
Reid Spencer5f016e22007-07-11 17:01:13 +00003508 SkipUntil(tok::comma, tok::r_brace, true, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00003509 }
Mike Stump1eb44332009-09-09 15:08:12 +00003510
Reid Spencer5f016e22007-07-11 17:01:13 +00003511 // Install the enumerator constant into EnumDecl.
John McCalld226f652010-08-21 09:40:31 +00003512 Decl *EnumConstDecl = Actions.ActOnEnumConstant(getCurScope(), EnumDecl,
3513 LastEnumConstDecl,
3514 IdentLoc, Ident,
John McCall7f040a92010-12-24 02:08:15 +00003515 attrs.getList(), EqualLoc,
John McCalld226f652010-08-21 09:40:31 +00003516 AssignedVal.release());
Fariborz Jahanian5a477db2011-12-09 01:15:54 +00003517 PD.complete(EnumConstDecl);
Chad Rosier8decdee2012-06-26 22:30:43 +00003518
Reid Spencer5f016e22007-07-11 17:01:13 +00003519 EnumConstantDecls.push_back(EnumConstDecl);
3520 LastEnumConstDecl = EnumConstDecl;
Mike Stump1eb44332009-09-09 15:08:12 +00003521
Douglas Gregor751f6922010-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 Rosier8decdee2012-06-26 22:30:43 +00003525 Diag(Loc, diag::err_enumerator_list_missing_comma)
Douglas Gregor751f6922010-09-07 14:51:08 +00003526 << FixItHint::CreateInsertion(Loc, ", ");
3527 continue;
3528 }
Chad Rosier8decdee2012-06-26 22:30:43 +00003529
Chris Lattner04d66662007-10-09 17:33:22 +00003530 if (Tok.isNot(tok::comma))
Reid Spencer5f016e22007-07-11 17:01:13 +00003531 break;
3532 SourceLocation CommaLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00003533
Richard Smith7fe62082011-10-15 05:09:34 +00003534 if (Tok.isNot(tok::identifier)) {
Richard Smith80ad52f2013-01-02 11:42:31 +00003535 if (!getLangOpts().C99 && !getLangOpts().CPlusPlus11)
Richard Smitheab9d6f2012-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 Smith7fe62082011-10-15 05:09:34 +00003539 << FixItHint::CreateRemoval(CommaLoc);
Richard Smith80ad52f2013-01-02 11:42:31 +00003540 else if (getLangOpts().CPlusPlus11)
Richard Smith7fe62082011-10-15 05:09:34 +00003541 Diag(CommaLoc, diag::warn_cxx98_compat_enumerator_list_comma)
3542 << FixItHint::CreateRemoval(CommaLoc);
3543 }
Reid Spencer5f016e22007-07-11 17:01:13 +00003544 }
Mike Stump1eb44332009-09-09 15:08:12 +00003545
Reid Spencer5f016e22007-07-11 17:01:13 +00003546 // Eat the }.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00003547 T.consumeClose();
Reid Spencer5f016e22007-07-11 17:01:13 +00003548
Reid Spencer5f016e22007-07-11 17:01:13 +00003549 // If attributes exist after the identifier list, parse them.
John McCall0b7e6782011-03-24 11:26:52 +00003550 ParsedAttributes attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +00003551 MaybeParseGNUAttributes(attrs);
Douglas Gregor72de6672009-01-08 20:45:30 +00003552
Douglas Gregor4a8dfb52011-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 Stump1eb44332009-09-09 15:08:12 +00003557
Douglas Gregor72de6672009-01-08 20:45:30 +00003558 EnumScope.Exit();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00003559 Actions.ActOnTagFinishDefinition(getCurScope(), EnumDecl,
3560 T.getCloseLocation());
Richard Smithc9f35172012-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 Smith139be702012-07-02 19:14:01 +00003564 bool CanBeBitfield = getCurScope()->getFlags() & Scope::ClassScope;
3565 if (!isValidAfterTypeSpecifier(CanBeBitfield)) {
Richard Smithc9f35172012-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 }
Reid Spencer5f016e22007-07-11 17:01:13 +00003573}
3574
3575/// isTypeSpecifierQualifier - Return true if the current token could be the
Steve Naroff5f8aa692008-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 Collingbourne207f4d82011-03-18 22:38:29 +00003580
3581 // type-qualifier only in OpenCL
3582 case tok::kw_private:
David Blaikie4e4d0842012-03-11 07:00:24 +00003583 return getLangOpts().OpenCL;
Peter Collingbourne207f4d82011-03-18 22:38:29 +00003584
Steve Naroff5f8aa692008-02-11 23:15:56 +00003585 // type-qualifier
3586 case tok::kw_const:
3587 case tok::kw_volatile:
3588 case tok::kw_restrict:
Peter Collingbourne207f4d82011-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 Naroff5f8aa692008-02-11 23:15:56 +00003596 return true;
3597 }
3598}
3599
Chris Lattnerb3a4e432010-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 Pichet338d7f72011-04-28 01:59:37 +00003609 case tok::kw___int64:
Richard Smith5a5a9712012-04-04 06:24:32 +00003610 case tok::kw___int128:
Chris Lattnerb3a4e432010-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 Korobeynikovaa4a99b2011-10-14 23:23:15 +00003621 case tok::kw_half:
Chris Lattnerb3a4e432010-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 Rosier8decdee2012-06-26 22:30:43 +00003630
Guy Benyeib13621d2012-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 Benyeie6b9d802013-01-20 12:31:11 +00003638 case tok::kw_event_t:
Guy Benyeib13621d2012-12-18 14:38:23 +00003639
Chris Lattnerb3a4e432010-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 Matos6666ed42012-08-31 18:45:21 +00003643 case tok::kw___interface:
Chris Lattnerb3a4e432010-02-28 18:18:36 +00003644 case tok::kw_union:
3645 // enum-specifier
3646 case tok::kw_enum:
Chad Rosier8decdee2012-06-26 22:30:43 +00003647
Chris Lattnerb3a4e432010-02-28 18:18:36 +00003648 // typedef-name
3649 case tok::annot_typename:
3650 return true;
3651 }
3652}
3653
Steve Naroff5f8aa692008-02-11 23:15:56 +00003654/// isTypeSpecifierQualifier - Return true if the current token could be the
Reid Spencer5f016e22007-07-11 17:01:13 +00003655/// start of a specifier-qualifier-list.
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00003656bool Parser::isTypeSpecifierQualifier() {
Reid Spencer5f016e22007-07-11 17:01:13 +00003657 switch (Tok.getKind()) {
3658 default: return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003659
Chris Lattner166a8fc2009-01-04 23:41:41 +00003660 case tok::identifier: // foo::bar
John Thompson82287d12010-02-05 00:12:22 +00003661 if (TryAltiVecVectorToken())
3662 return true;
3663 // Fall through.
Douglas Gregord57959a2009-03-27 23:10:48 +00003664 case tok::kw_typename: // typename T::type
Chris Lattner166a8fc2009-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 McCall9ba61662010-02-26 08:45:28 +00003668 return true;
3669 if (Tok.is(tok::identifier))
3670 return false;
3671 return isTypeSpecifierQualifier();
Douglas Gregord57959a2009-03-27 23:10:48 +00003672
Chris Lattner166a8fc2009-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 Lattner166a8fc2009-01-04 23:41:41 +00003678 if (TryAnnotateTypeOrScopeToken())
John McCall9ba61662010-02-26 08:45:28 +00003679 return true;
3680 return isTypeSpecifierQualifier();
Mike Stump1eb44332009-09-09 15:08:12 +00003681
Reid Spencer5f016e22007-07-11 17:01:13 +00003682 // GNU attributes support.
3683 case tok::kw___attribute:
Steve Naroffd1861fd2007-07-31 12:34:36 +00003684 // GNU typeof support.
3685 case tok::kw_typeof:
Mike Stump1eb44332009-09-09 15:08:12 +00003686
Reid Spencer5f016e22007-07-11 17:01:13 +00003687 // type-specifiers
3688 case tok::kw_short:
3689 case tok::kw_long:
Francois Pichet338d7f72011-04-28 01:59:37 +00003690 case tok::kw___int64:
Richard Smith5a5a9712012-04-04 06:24:32 +00003691 case tok::kw___int128:
Reid Spencer5f016e22007-07-11 17:01:13 +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 Kyrtzidis64c438a2008-08-09 16:51:54 +00003698 case tok::kw_wchar_t:
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00003699 case tok::kw_char16_t:
3700 case tok::kw_char32_t:
Reid Spencer5f016e22007-07-11 17:01:13 +00003701 case tok::kw_int:
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +00003702 case tok::kw_half:
Reid Spencer5f016e22007-07-11 17:01:13 +00003703 case tok::kw_float:
3704 case tok::kw_double:
Chris Lattner9298d962007-11-15 05:25:19 +00003705 case tok::kw_bool:
Reid Spencer5f016e22007-07-11 17:01:13 +00003706 case tok::kw__Bool:
3707 case tok::kw__Decimal32:
3708 case tok::kw__Decimal64:
3709 case tok::kw__Decimal128:
John Thompson82287d12010-02-05 00:12:22 +00003710 case tok::kw___vector:
Mike Stump1eb44332009-09-09 15:08:12 +00003711
Guy Benyeib13621d2012-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 Benyeie6b9d802013-01-20 12:31:11 +00003719 case tok::kw_event_t:
Guy Benyeib13621d2012-12-18 14:38:23 +00003720
Chris Lattner99dc9142008-04-13 18:59:07 +00003721 // struct-or-union-specifier (C99) or class-specifier (C++)
3722 case tok::kw_class:
Reid Spencer5f016e22007-07-11 17:01:13 +00003723 case tok::kw_struct:
Joao Matos6666ed42012-08-31 18:45:21 +00003724 case tok::kw___interface:
Reid Spencer5f016e22007-07-11 17:01:13 +00003725 case tok::kw_union:
3726 // enum-specifier
3727 case tok::kw_enum:
Mike Stump1eb44332009-09-09 15:08:12 +00003728
Reid Spencer5f016e22007-07-11 17:01:13 +00003729 // type-qualifier
3730 case tok::kw_const:
3731 case tok::kw_volatile:
3732 case tok::kw_restrict:
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00003733
John McCallb8a8de32012-11-14 00:49:39 +00003734 // Debugger support.
3735 case tok::kw___unknown_anytype:
3736
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00003737 // typedef-name
Chris Lattnerb31757b2009-01-06 05:06:21 +00003738 case tok::annot_typename:
Reid Spencer5f016e22007-07-11 17:01:13 +00003739 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00003740
Chris Lattner7c186be2008-10-20 00:25:30 +00003741 // GNU ObjC bizarre protocol extension: <proto1,proto2> with implicit 'id'.
3742 case tok::less:
David Blaikie4e4d0842012-03-11 07:00:24 +00003743 return getLangOpts().ObjC1;
Mike Stump1eb44332009-09-09 15:08:12 +00003744
Steve Naroff239f0732008-12-25 14:16:32 +00003745 case tok::kw___cdecl:
3746 case tok::kw___stdcall:
3747 case tok::kw___fastcall:
Douglas Gregorf813a2c2010-05-18 16:57:00 +00003748 case tok::kw___thiscall:
Eli Friedman290eeb02009-06-08 23:27:34 +00003749 case tok::kw___w64:
3750 case tok::kw___ptr64:
Francois Pichet58fd97a2011-08-25 00:36:46 +00003751 case tok::kw___ptr32:
Dawn Perchik52fc3142010-09-03 01:29:35 +00003752 case tok::kw___pascal:
Francois Pichet3bd9aa42011-08-18 09:59:55 +00003753 case tok::kw___unaligned:
Peter Collingbourne207f4d82011-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 Friedman290eeb02009-06-08 23:27:34 +00003763 return true;
Peter Collingbourne207f4d82011-03-18 22:38:29 +00003764
3765 case tok::kw_private:
David Blaikie4e4d0842012-03-11 07:00:24 +00003766 return getLangOpts().OpenCL;
Eli Friedmanb001de72011-10-06 23:00:33 +00003767
Benjamin Kramerffbe9b92011-12-23 17:00:35 +00003768 // C11 _Atomic()
Eli Friedmanb001de72011-10-06 23:00:33 +00003769 case tok::kw__Atomic:
3770 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00003771 }
3772}
3773
3774/// isDeclarationSpecifier() - Return true if the current token is part of a
3775/// declaration specifier.
Douglas Gregor9497a732010-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) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003780 switch (Tok.getKind()) {
3781 default: return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003782
Peter Collingbourne207f4d82011-03-18 22:38:29 +00003783 case tok::kw_private:
David Blaikie4e4d0842012-03-11 07:00:24 +00003784 return getLangOpts().OpenCL;
Peter Collingbourne207f4d82011-03-18 22:38:29 +00003785
Chris Lattner166a8fc2009-01-04 23:41:41 +00003786 case tok::identifier: // foo::bar
Steve Naroff61f72cb2009-03-09 21:12:44 +00003787 // Unfortunate hack to support "Class.factoryMethod" notation.
David Blaikie4e4d0842012-03-11 07:00:24 +00003788 if (getLangOpts().ObjC1 && NextToken().is(tok::period))
Steve Naroff61f72cb2009-03-09 21:12:44 +00003789 return false;
John Thompson82287d12010-02-05 00:12:22 +00003790 if (TryAltiVecVectorToken())
3791 return true;
3792 // Fall through.
David Blaikie42d6d0c2011-12-04 05:04:18 +00003793 case tok::kw_decltype: // decltype(T())::type
Douglas Gregord57959a2009-03-27 23:10:48 +00003794 case tok::kw_typename: // typename T::type
Chris Lattner166a8fc2009-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 McCall9ba61662010-02-26 08:45:28 +00003798 return true;
3799 if (Tok.is(tok::identifier))
3800 return false;
Chad Rosier8decdee2012-06-26 22:30:43 +00003801
Douglas Gregor9497a732010-09-16 01:51:54 +00003802 // If we're in Objective-C and we have an Objective-C class type followed
Chad Rosier8decdee2012-06-26 22:30:43 +00003803 // by an identifier and then either ':' or ']', in a place where an
Douglas Gregor9497a732010-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 Rosier8decdee2012-06-26 22:30:43 +00003807 if (DisambiguatingWithExpression &&
Douglas Gregor9497a732010-09-16 01:51:54 +00003808 isStartOfObjCClassMessageMissingOpenBracket())
3809 return false;
Chad Rosier8decdee2012-06-26 22:30:43 +00003810
John McCall9ba61662010-02-26 08:45:28 +00003811 return isDeclarationSpecifier();
3812
Chris Lattner166a8fc2009-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 Stump1eb44332009-09-09 15:08:12 +00003817
Chris Lattner166a8fc2009-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 McCall9ba61662010-02-26 08:45:28 +00003821 return true;
3822 return isDeclarationSpecifier();
Mike Stump1eb44332009-09-09 15:08:12 +00003823
Reid Spencer5f016e22007-07-11 17:01:13 +00003824 // storage-class-specifier
3825 case tok::kw_typedef:
3826 case tok::kw_extern:
Steve Naroff8d54bf22007-12-18 00:16:02 +00003827 case tok::kw___private_extern__:
Reid Spencer5f016e22007-07-11 17:01:13 +00003828 case tok::kw_static:
3829 case tok::kw_auto:
3830 case tok::kw_register:
3831 case tok::kw___thread:
Mike Stump1eb44332009-09-09 15:08:12 +00003832
Douglas Gregor8d267c52011-09-09 02:06:17 +00003833 // Modules
3834 case tok::kw___module_private__:
Chad Rosier8decdee2012-06-26 22:30:43 +00003835
John McCallb8a8de32012-11-14 00:49:39 +00003836 // Debugger support
3837 case tok::kw___unknown_anytype:
3838
Reid Spencer5f016e22007-07-11 17:01:13 +00003839 // type-specifiers
3840 case tok::kw_short:
3841 case tok::kw_long:
Francois Pichet338d7f72011-04-28 01:59:37 +00003842 case tok::kw___int64:
Richard Smith5a5a9712012-04-04 06:24:32 +00003843 case tok::kw___int128:
Reid Spencer5f016e22007-07-11 17:01:13 +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 Kyrtzidis64c438a2008-08-09 16:51:54 +00003850 case tok::kw_wchar_t:
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00003851 case tok::kw_char16_t:
3852 case tok::kw_char32_t:
3853
Reid Spencer5f016e22007-07-11 17:01:13 +00003854 case tok::kw_int:
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +00003855 case tok::kw_half:
Reid Spencer5f016e22007-07-11 17:01:13 +00003856 case tok::kw_float:
3857 case tok::kw_double:
Chris Lattner9298d962007-11-15 05:25:19 +00003858 case tok::kw_bool:
Reid Spencer5f016e22007-07-11 17:01:13 +00003859 case tok::kw__Bool:
3860 case tok::kw__Decimal32:
3861 case tok::kw__Decimal64:
3862 case tok::kw__Decimal128:
John Thompson82287d12010-02-05 00:12:22 +00003863 case tok::kw___vector:
Mike Stump1eb44332009-09-09 15:08:12 +00003864
Guy Benyeib13621d2012-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 Benyeie6b9d802013-01-20 12:31:11 +00003872 case tok::kw_event_t:
Guy Benyeib13621d2012-12-18 14:38:23 +00003873
Chris Lattner99dc9142008-04-13 18:59:07 +00003874 // struct-or-union-specifier (C99) or class-specifier (C++)
3875 case tok::kw_class:
Reid Spencer5f016e22007-07-11 17:01:13 +00003876 case tok::kw_struct:
3877 case tok::kw_union:
Joao Matos6666ed42012-08-31 18:45:21 +00003878 case tok::kw___interface:
Reid Spencer5f016e22007-07-11 17:01:13 +00003879 // enum-specifier
3880 case tok::kw_enum:
Mike Stump1eb44332009-09-09 15:08:12 +00003881
Reid Spencer5f016e22007-07-11 17:01:13 +00003882 // type-qualifier
3883 case tok::kw_const:
3884 case tok::kw_volatile:
3885 case tok::kw_restrict:
Steve Naroffd1861fd2007-07-31 12:34:36 +00003886
Reid Spencer5f016e22007-07-11 17:01:13 +00003887 // function-specifier
3888 case tok::kw_inline:
Douglas Gregorb48fe382008-10-31 09:07:45 +00003889 case tok::kw_virtual:
3890 case tok::kw_explicit:
Richard Smithde03c152013-01-17 22:16:11 +00003891 case tok::kw__Noreturn:
Chris Lattnerd6c7c182007-08-09 16:40:21 +00003892
Richard Smith53aec2a2012-10-25 00:00:53 +00003893 // friend keyword.
3894 case tok::kw_friend:
3895
Peter Collingbournec6eb44b2011-04-15 00:35:57 +00003896 // static_assert-declaration
3897 case tok::kw__Static_assert:
3898
Chris Lattner1ef08762007-08-09 17:01:07 +00003899 // GNU typeof support.
3900 case tok::kw_typeof:
Mike Stump1eb44332009-09-09 15:08:12 +00003901
Chris Lattner1ef08762007-08-09 17:01:07 +00003902 // GNU attributes.
Chris Lattnerd6c7c182007-08-09 16:40:21 +00003903 case tok::kw___attribute:
Mike Stump1eb44332009-09-09 15:08:12 +00003904
Richard Smith53aec2a2012-10-25 00:00:53 +00003905 // C++11 decltype and constexpr.
David Blaikie42d6d0c2011-12-04 05:04:18 +00003906 case tok::annot_decltype:
Richard Smith53aec2a2012-10-25 00:00:53 +00003907 case tok::kw_constexpr:
Francois Pichete3d49b42011-06-19 08:02:06 +00003908
Benjamin Kramerffbe9b92011-12-23 17:00:35 +00003909 // C11 _Atomic()
Eli Friedmanb001de72011-10-06 23:00:33 +00003910 case tok::kw__Atomic:
3911 return true;
3912
Chris Lattnerf3948c42008-07-26 03:38:44 +00003913 // GNU ObjC bizarre protocol extension: <proto1,proto2> with implicit 'id'.
3914 case tok::less:
David Blaikie4e4d0842012-03-11 07:00:24 +00003915 return getLangOpts().ObjC1;
Mike Stump1eb44332009-09-09 15:08:12 +00003916
Douglas Gregord9d75e52011-04-27 05:41:15 +00003917 // typedef-name
3918 case tok::annot_typename:
3919 return !DisambiguatingWithExpression ||
3920 !isStartOfObjCClassMessageMissingOpenBracket();
Chad Rosier8decdee2012-06-26 22:30:43 +00003921
Steve Naroff47f52092009-01-06 19:34:12 +00003922 case tok::kw___declspec:
Steve Naroff239f0732008-12-25 14:16:32 +00003923 case tok::kw___cdecl:
3924 case tok::kw___stdcall:
3925 case tok::kw___fastcall:
Douglas Gregorf813a2c2010-05-18 16:57:00 +00003926 case tok::kw___thiscall:
Eli Friedman290eeb02009-06-08 23:27:34 +00003927 case tok::kw___w64:
3928 case tok::kw___ptr64:
Francois Pichet58fd97a2011-08-25 00:36:46 +00003929 case tok::kw___ptr32:
Eli Friedman290eeb02009-06-08 23:27:34 +00003930 case tok::kw___forceinline:
Dawn Perchik52fc3142010-09-03 01:29:35 +00003931 case tok::kw___pascal:
Francois Pichet3bd9aa42011-08-18 09:59:55 +00003932 case tok::kw___unaligned:
Peter Collingbourne207f4d82011-03-18 22:38:29 +00003933
3934 case tok::kw___private:
3935 case tok::kw___local:
3936 case tok::kw___global:
3937 case tok::kw___constant:
3938 case tok::kw___read_only:
3939 case tok::kw___read_write:
3940 case tok::kw___write_only:
3941
Eli Friedman290eeb02009-06-08 23:27:34 +00003942 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00003943 }
3944}
3945
Douglas Gregor0efc2c12010-01-13 17:31:36 +00003946bool Parser::isConstructorDeclarator() {
3947 TentativeParsingAction TPA(*this);
3948
3949 // Parse the C++ scope specifier.
3950 CXXScopeSpec SS;
Chad Rosier8decdee2012-06-26 22:30:43 +00003951 if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(),
Douglas Gregorefaa93a2011-11-07 17:33:42 +00003952 /*EnteringContext=*/true)) {
John McCall9ba61662010-02-26 08:45:28 +00003953 TPA.Revert();
3954 return false;
3955 }
Douglas Gregor0efc2c12010-01-13 17:31:36 +00003956
3957 // Parse the constructor name.
3958 if (Tok.is(tok::identifier) || Tok.is(tok::annot_template_id)) {
3959 // We already know that we have a constructor name; just consume
3960 // the token.
3961 ConsumeToken();
3962 } else {
3963 TPA.Revert();
3964 return false;
3965 }
3966
Richard Smith22592862012-03-27 23:05:05 +00003967 // Current class name must be followed by a left parenthesis.
Douglas Gregor0efc2c12010-01-13 17:31:36 +00003968 if (Tok.isNot(tok::l_paren)) {
3969 TPA.Revert();
3970 return false;
3971 }
3972 ConsumeParen();
3973
Richard Smith22592862012-03-27 23:05:05 +00003974 // A right parenthesis, or ellipsis followed by a right parenthesis signals
3975 // that we have a constructor.
3976 if (Tok.is(tok::r_paren) ||
3977 (Tok.is(tok::ellipsis) && NextToken().is(tok::r_paren))) {
Douglas Gregor0efc2c12010-01-13 17:31:36 +00003978 TPA.Revert();
3979 return true;
3980 }
3981
3982 // If we need to, enter the specified scope.
3983 DeclaratorScopeObj DeclScopeObj(*this, SS);
Douglas Gregor23c94db2010-07-02 17:43:08 +00003984 if (SS.isSet() && Actions.ShouldEnterDeclaratorScope(getCurScope(), SS))
Douglas Gregor0efc2c12010-01-13 17:31:36 +00003985 DeclScopeObj.EnterDeclaratorScope();
3986
Francois Pichetdfaa5fb2011-01-31 04:54:32 +00003987 // Optionally skip Microsoft attributes.
John McCall0b7e6782011-03-24 11:26:52 +00003988 ParsedAttributes Attrs(AttrFactory);
Francois Pichetdfaa5fb2011-01-31 04:54:32 +00003989 MaybeParseMicrosoftAttributes(Attrs);
3990
Douglas Gregor0efc2c12010-01-13 17:31:36 +00003991 // Check whether the next token(s) are part of a declaration
3992 // specifier, in which case we have the start of a parameter and,
3993 // therefore, we know that this is a constructor.
Richard Smith412e0cc2012-03-27 00:56:56 +00003994 bool IsConstructor = false;
3995 if (isDeclarationSpecifier())
3996 IsConstructor = true;
3997 else if (Tok.is(tok::identifier) ||
3998 (Tok.is(tok::annot_cxxscope) && NextToken().is(tok::identifier))) {
3999 // We've seen "C ( X" or "C ( X::Y", but "X" / "X::Y" is not a type.
4000 // This might be a parenthesized member name, but is more likely to
4001 // be a constructor declaration with an invalid argument type. Keep
4002 // looking.
4003 if (Tok.is(tok::annot_cxxscope))
4004 ConsumeToken();
4005 ConsumeToken();
4006
4007 // If this is not a constructor, we must be parsing a declarator,
Richard Smith5d8388c2012-03-27 01:42:32 +00004008 // which must have one of the following syntactic forms (see the
4009 // grammar extract at the start of ParseDirectDeclarator):
Richard Smith412e0cc2012-03-27 00:56:56 +00004010 switch (Tok.getKind()) {
4011 case tok::l_paren:
4012 // C(X ( int));
4013 case tok::l_square:
4014 // C(X [ 5]);
4015 // C(X [ [attribute]]);
4016 case tok::coloncolon:
4017 // C(X :: Y);
4018 // C(X :: *p);
4019 case tok::r_paren:
4020 // C(X )
4021 // Assume this isn't a constructor, rather than assuming it's a
4022 // constructor with an unnamed parameter of an ill-formed type.
4023 break;
4024
4025 default:
4026 IsConstructor = true;
4027 break;
4028 }
4029 }
4030
Douglas Gregor0efc2c12010-01-13 17:31:36 +00004031 TPA.Revert();
4032 return IsConstructor;
4033}
Reid Spencer5f016e22007-07-11 17:01:13 +00004034
4035/// ParseTypeQualifierListOpt
Dawn Perchik52fc3142010-09-03 01:29:35 +00004036/// type-qualifier-list: [C99 6.7.5]
4037/// type-qualifier
Chad Rosier8decdee2012-06-26 22:30:43 +00004038/// [vendor] attributes
Dawn Perchik52fc3142010-09-03 01:29:35 +00004039/// [ only if VendorAttributesAllowed=true ]
4040/// type-qualifier-list type-qualifier
Chad Rosier8decdee2012-06-26 22:30:43 +00004041/// [vendor] type-qualifier-list attributes
Dawn Perchik52fc3142010-09-03 01:29:35 +00004042/// [ only if VendorAttributesAllowed=true ]
4043/// [C++0x] attribute-specifier[opt] is allowed before cv-qualifier-seq
Richard Smith4e24f0f2013-01-02 12:01:23 +00004044/// [ only if CXX11AttributesAllowed=true ]
Dawn Perchik52fc3142010-09-03 01:29:35 +00004045/// Note: vendor can be GNU, MS, etc.
Reid Spencer5f016e22007-07-11 17:01:13 +00004046///
Dawn Perchik52fc3142010-09-03 01:29:35 +00004047void Parser::ParseTypeQualifierListOpt(DeclSpec &DS,
4048 bool VendorAttributesAllowed,
Richard Smithc56298d2012-04-10 03:25:07 +00004049 bool CXX11AttributesAllowed) {
Richard Smith80ad52f2013-01-02 11:42:31 +00004050 if (getLangOpts().CPlusPlus11 && CXX11AttributesAllowed &&
Richard Smith6ee326a2012-04-10 01:32:12 +00004051 isCXX11AttributeSpecifier()) {
John McCall0b7e6782011-03-24 11:26:52 +00004052 ParsedAttributesWithRange attrs(AttrFactory);
Richard Smithc56298d2012-04-10 03:25:07 +00004053 ParseCXX11Attributes(attrs);
Richard Smith6ee326a2012-04-10 01:32:12 +00004054 DS.takeAttributesFrom(attrs);
Sean Huntbbd37c62009-11-21 08:43:09 +00004055 }
Abramo Bagnara796aa442011-03-12 11:17:06 +00004056
4057 SourceLocation EndLoc;
4058
Reid Spencer5f016e22007-07-11 17:01:13 +00004059 while (1) {
John McCallfec54012009-08-03 20:12:06 +00004060 bool isInvalid = false;
Reid Spencer5f016e22007-07-11 17:01:13 +00004061 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +00004062 unsigned DiagID = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00004063 SourceLocation Loc = Tok.getLocation();
4064
4065 switch (Tok.getKind()) {
Douglas Gregor1a480c42010-08-27 17:35:51 +00004066 case tok::code_completion:
4067 Actions.CodeCompleteTypeQualifiers(DS);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00004068 return cutOffParsing();
Chad Rosier8decdee2012-06-26 22:30:43 +00004069
Reid Spencer5f016e22007-07-11 17:01:13 +00004070 case tok::kw_const:
John McCallfec54012009-08-03 20:12:06 +00004071 isInvalid = DS.SetTypeQual(DeclSpec::TQ_const , Loc, PrevSpec, DiagID,
Richard Smithd654f2d2012-10-17 23:31:46 +00004072 getLangOpts());
Reid Spencer5f016e22007-07-11 17:01:13 +00004073 break;
4074 case tok::kw_volatile:
John McCallfec54012009-08-03 20:12:06 +00004075 isInvalid = DS.SetTypeQual(DeclSpec::TQ_volatile, Loc, PrevSpec, DiagID,
Richard Smithd654f2d2012-10-17 23:31:46 +00004076 getLangOpts());
Reid Spencer5f016e22007-07-11 17:01:13 +00004077 break;
4078 case tok::kw_restrict:
John McCallfec54012009-08-03 20:12:06 +00004079 isInvalid = DS.SetTypeQual(DeclSpec::TQ_restrict, Loc, PrevSpec, DiagID,
Richard Smithd654f2d2012-10-17 23:31:46 +00004080 getLangOpts());
Reid Spencer5f016e22007-07-11 17:01:13 +00004081 break;
Peter Collingbourne207f4d82011-03-18 22:38:29 +00004082
4083 // OpenCL qualifiers:
Chad Rosier8decdee2012-06-26 22:30:43 +00004084 case tok::kw_private:
David Blaikie4e4d0842012-03-11 07:00:24 +00004085 if (!getLangOpts().OpenCL)
Peter Collingbourne207f4d82011-03-18 22:38:29 +00004086 goto DoneWithTypeQuals;
4087 case tok::kw___private:
4088 case tok::kw___global:
4089 case tok::kw___local:
4090 case tok::kw___constant:
4091 case tok::kw___read_only:
4092 case tok::kw___write_only:
4093 case tok::kw___read_write:
4094 ParseOpenCLQualifiers(DS);
4095 break;
4096
Eli Friedman290eeb02009-06-08 23:27:34 +00004097 case tok::kw___w64:
Steve Naroff86bc6cf2008-12-25 14:41:26 +00004098 case tok::kw___ptr64:
Francois Pichet58fd97a2011-08-25 00:36:46 +00004099 case tok::kw___ptr32:
Steve Naroff239f0732008-12-25 14:16:32 +00004100 case tok::kw___cdecl:
4101 case tok::kw___stdcall:
4102 case tok::kw___fastcall:
Douglas Gregorf813a2c2010-05-18 16:57:00 +00004103 case tok::kw___thiscall:
Francois Pichet3bd9aa42011-08-18 09:59:55 +00004104 case tok::kw___unaligned:
Dawn Perchik52fc3142010-09-03 01:29:35 +00004105 if (VendorAttributesAllowed) {
John McCall7f040a92010-12-24 02:08:15 +00004106 ParseMicrosoftTypeAttributes(DS.getAttributes());
Eli Friedman290eeb02009-06-08 23:27:34 +00004107 continue;
4108 }
4109 goto DoneWithTypeQuals;
Dawn Perchik52fc3142010-09-03 01:29:35 +00004110 case tok::kw___pascal:
4111 if (VendorAttributesAllowed) {
John McCall7f040a92010-12-24 02:08:15 +00004112 ParseBorlandTypeAttributes(DS.getAttributes());
Dawn Perchik52fc3142010-09-03 01:29:35 +00004113 continue;
4114 }
4115 goto DoneWithTypeQuals;
Reid Spencer5f016e22007-07-11 17:01:13 +00004116 case tok::kw___attribute:
Dawn Perchik52fc3142010-09-03 01:29:35 +00004117 if (VendorAttributesAllowed) {
John McCall7f040a92010-12-24 02:08:15 +00004118 ParseGNUAttributes(DS.getAttributes());
Chris Lattner5a69d1c2008-12-18 07:02:59 +00004119 continue; // do *not* consume the next token!
4120 }
4121 // otherwise, FALL THROUGH!
4122 default:
Steve Naroff239f0732008-12-25 14:16:32 +00004123 DoneWithTypeQuals:
Chris Lattner5a69d1c2008-12-18 07:02:59 +00004124 // If this is not a type-qualifier token, we're done reading type
4125 // qualifiers. First verify that DeclSpec's are consistent.
Douglas Gregor9b3064b2009-04-01 22:41:11 +00004126 DS.Finish(Diags, PP);
Abramo Bagnara796aa442011-03-12 11:17:06 +00004127 if (EndLoc.isValid())
4128 DS.SetRangeEnd(EndLoc);
Chris Lattner5a69d1c2008-12-18 07:02:59 +00004129 return;
Reid Spencer5f016e22007-07-11 17:01:13 +00004130 }
Chris Lattnera1fcbad2008-12-18 06:50:14 +00004131
Reid Spencer5f016e22007-07-11 17:01:13 +00004132 // If the specifier combination wasn't legal, issue a diagnostic.
4133 if (isInvalid) {
4134 assert(PrevSpec && "Method did not return previous specifier!");
Chris Lattner1ab3b962008-11-18 07:48:38 +00004135 Diag(Tok, DiagID) << PrevSpec;
Reid Spencer5f016e22007-07-11 17:01:13 +00004136 }
Abramo Bagnara796aa442011-03-12 11:17:06 +00004137 EndLoc = ConsumeToken();
Reid Spencer5f016e22007-07-11 17:01:13 +00004138 }
4139}
4140
4141
4142/// ParseDeclarator - Parse and verify a newly-initialized declarator.
4143///
4144void Parser::ParseDeclarator(Declarator &D) {
4145 /// This implements the 'declarator' production in the C grammar, then checks
4146 /// for well-formedness and issues diagnostics.
Sebastian Redl4c5d3202008-11-21 19:14:01 +00004147 ParseDeclaratorInternal(D, &Parser::ParseDirectDeclarator);
Reid Spencer5f016e22007-07-11 17:01:13 +00004148}
4149
Richard Smith9988f282012-03-29 01:16:42 +00004150static bool isPtrOperatorToken(tok::TokenKind Kind, const LangOptions &Lang) {
4151 if (Kind == tok::star || Kind == tok::caret)
4152 return true;
4153
4154 // We parse rvalue refs in C++03, because otherwise the errors are scary.
4155 if (!Lang.CPlusPlus)
4156 return false;
4157
4158 return Kind == tok::amp || Kind == tok::ampamp;
4159}
4160
Sebastian Redl4c5d3202008-11-21 19:14:01 +00004161/// ParseDeclaratorInternal - Parse a C or C++ declarator. The direct-declarator
4162/// is parsed by the function passed to it. Pass null, and the direct-declarator
4163/// isn't parsed at all, making this function effectively parse the C++
Douglas Gregor2f1bc522008-11-07 20:08:42 +00004164/// ptr-operator production.
4165///
Richard Smith0706df42011-10-19 21:33:05 +00004166/// If the grammar of this construct is extended, matching changes must also be
Richard Smith5d8388c2012-03-27 01:42:32 +00004167/// made to TryParseDeclarator and MightBeDeclarator, and possibly to
4168/// isConstructorDeclarator.
Richard Smith0706df42011-10-19 21:33:05 +00004169///
Sebastian Redlf30208a2009-01-24 21:16:55 +00004170/// declarator: [C99 6.7.5] [C++ 8p4, dcl.decl]
4171/// [C] pointer[opt] direct-declarator
4172/// [C++] direct-declarator
4173/// [C++] ptr-operator declarator
Reid Spencer5f016e22007-07-11 17:01:13 +00004174///
4175/// pointer: [C99 6.7.5]
4176/// '*' type-qualifier-list[opt]
4177/// '*' type-qualifier-list[opt] pointer
4178///
Douglas Gregor2f1bc522008-11-07 20:08:42 +00004179/// ptr-operator:
4180/// '*' cv-qualifier-seq[opt]
4181/// '&'
Sebastian Redl05532f22009-03-15 22:02:01 +00004182/// [C++0x] '&&'
Douglas Gregor2f1bc522008-11-07 20:08:42 +00004183/// [GNU] '&' restrict[opt] attributes[opt]
Sebastian Redl05532f22009-03-15 22:02:01 +00004184/// [GNU?] '&&' restrict[opt] attributes[opt]
Sebastian Redlf30208a2009-01-24 21:16:55 +00004185/// '::'[opt] nested-name-specifier '*' cv-qualifier-seq[opt]
Sebastian Redl4c5d3202008-11-21 19:14:01 +00004186void Parser::ParseDeclaratorInternal(Declarator &D,
4187 DirectDeclParseFunction DirectDeclParser) {
Douglas Gregor91a28862009-08-26 14:27:30 +00004188 if (Diags.hasAllExtensionsSilenced())
4189 D.setExtension();
Chad Rosier8decdee2012-06-26 22:30:43 +00004190
Sebastian Redlf30208a2009-01-24 21:16:55 +00004191 // C++ member pointers start with a '::' or a nested-name.
4192 // Member pointers get special handling, since there's no place for the
4193 // scope spec in the generic path below.
David Blaikie4e4d0842012-03-11 07:00:24 +00004194 if (getLangOpts().CPlusPlus &&
Chris Lattnerf919bfe2009-03-24 17:04:48 +00004195 (Tok.is(tok::coloncolon) || Tok.is(tok::identifier) ||
4196 Tok.is(tok::annot_cxxscope))) {
Douglas Gregorefaa93a2011-11-07 17:33:42 +00004197 bool EnteringContext = D.getContext() == Declarator::FileContext ||
4198 D.getContext() == Declarator::MemberContext;
Sebastian Redlf30208a2009-01-24 21:16:55 +00004199 CXXScopeSpec SS;
Douglas Gregorefaa93a2011-11-07 17:33:42 +00004200 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), EnteringContext);
John McCall9ba61662010-02-26 08:45:28 +00004201
Jeffrey Yasskinedc28772010-04-07 23:29:58 +00004202 if (SS.isNotEmpty()) {
Mike Stump1eb44332009-09-09 15:08:12 +00004203 if (Tok.isNot(tok::star)) {
Sebastian Redlf30208a2009-01-24 21:16:55 +00004204 // The scope spec really belongs to the direct-declarator.
Richard Smith6a502c42013-01-08 22:43:49 +00004205 if (D.mayHaveIdentifier())
4206 D.getCXXScopeSpec() = SS;
4207 else
4208 AnnotateScopeToken(SS, true);
4209
Sebastian Redlf30208a2009-01-24 21:16:55 +00004210 if (DirectDeclParser)
4211 (this->*DirectDeclParser)(D);
4212 return;
4213 }
4214
4215 SourceLocation Loc = ConsumeToken();
Sebastian Redlab197ba2009-02-09 18:23:29 +00004216 D.SetRangeEnd(Loc);
John McCall0b7e6782011-03-24 11:26:52 +00004217 DeclSpec DS(AttrFactory);
Sebastian Redlf30208a2009-01-24 21:16:55 +00004218 ParseTypeQualifierListOpt(DS);
Sebastian Redlab197ba2009-02-09 18:23:29 +00004219 D.ExtendWithDeclSpec(DS);
Sebastian Redlf30208a2009-01-24 21:16:55 +00004220
4221 // Recurse to parse whatever is left.
4222 ParseDeclaratorInternal(D, DirectDeclParser);
4223
4224 // Sema will have to catch (syntactically invalid) pointers into global
4225 // scope. It has to catch pointers into namespace scope anyway.
4226 D.AddTypeInfo(DeclaratorChunk::getMemberPointer(SS,DS.getTypeQualifiers(),
John McCall0b7e6782011-03-24 11:26:52 +00004227 Loc),
4228 DS.getAttributes(),
Sebastian Redlab197ba2009-02-09 18:23:29 +00004229 /* Don't replace range end. */SourceLocation());
Sebastian Redlf30208a2009-01-24 21:16:55 +00004230 return;
4231 }
4232 }
4233
4234 tok::TokenKind Kind = Tok.getKind();
Steve Naroff5618bd42008-08-27 16:04:49 +00004235 // Not a pointer, C++ reference, or block.
Richard Smith9988f282012-03-29 01:16:42 +00004236 if (!isPtrOperatorToken(Kind, getLangOpts())) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +00004237 if (DirectDeclParser)
4238 (this->*DirectDeclParser)(D);
Douglas Gregor2f1bc522008-11-07 20:08:42 +00004239 return;
4240 }
Sebastian Redlf30208a2009-01-24 21:16:55 +00004241
Sebastian Redl05532f22009-03-15 22:02:01 +00004242 // Otherwise, '*' -> pointer, '^' -> block, '&' -> lvalue reference,
4243 // '&&' -> rvalue reference
Sebastian Redl743de1f2009-03-23 00:00:23 +00004244 SourceLocation Loc = ConsumeToken(); // Eat the *, ^, & or &&.
Sebastian Redlab197ba2009-02-09 18:23:29 +00004245 D.SetRangeEnd(Loc);
Reid Spencer5f016e22007-07-11 17:01:13 +00004246
Chris Lattner9af55002009-03-27 04:18:06 +00004247 if (Kind == tok::star || Kind == tok::caret) {
Chris Lattner76549142008-02-21 01:32:26 +00004248 // Is a pointer.
John McCall0b7e6782011-03-24 11:26:52 +00004249 DeclSpec DS(AttrFactory);
Sebastian Redlf30208a2009-01-24 21:16:55 +00004250
Richard Smith6ee326a2012-04-10 01:32:12 +00004251 // FIXME: GNU attributes are not allowed here in a new-type-id.
Reid Spencer5f016e22007-07-11 17:01:13 +00004252 ParseTypeQualifierListOpt(DS);
Sebastian Redlab197ba2009-02-09 18:23:29 +00004253 D.ExtendWithDeclSpec(DS);
Sebastian Redlf30208a2009-01-24 21:16:55 +00004254
Reid Spencer5f016e22007-07-11 17:01:13 +00004255 // Recursively parse the declarator.
Sebastian Redl4c5d3202008-11-21 19:14:01 +00004256 ParseDeclaratorInternal(D, DirectDeclParser);
Steve Naroff5618bd42008-08-27 16:04:49 +00004257 if (Kind == tok::star)
4258 // Remember that we parsed a pointer type, and remember the type-quals.
4259 D.AddTypeInfo(DeclaratorChunk::getPointer(DS.getTypeQualifiers(), Loc,
Chandler Carruthd067c072011-02-23 18:51:59 +00004260 DS.getConstSpecLoc(),
4261 DS.getVolatileSpecLoc(),
John McCall0b7e6782011-03-24 11:26:52 +00004262 DS.getRestrictSpecLoc()),
4263 DS.getAttributes(),
Sebastian Redlab197ba2009-02-09 18:23:29 +00004264 SourceLocation());
Steve Naroff5618bd42008-08-27 16:04:49 +00004265 else
4266 // Remember that we parsed a Block type, and remember the type-quals.
Mike Stump1eb44332009-09-09 15:08:12 +00004267 D.AddTypeInfo(DeclaratorChunk::getBlockPointer(DS.getTypeQualifiers(),
John McCall0b7e6782011-03-24 11:26:52 +00004268 Loc),
4269 DS.getAttributes(),
Sebastian Redlab197ba2009-02-09 18:23:29 +00004270 SourceLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00004271 } else {
4272 // Is a reference
John McCall0b7e6782011-03-24 11:26:52 +00004273 DeclSpec DS(AttrFactory);
Reid Spencer5f016e22007-07-11 17:01:13 +00004274
Sebastian Redl743de1f2009-03-23 00:00:23 +00004275 // Complain about rvalue references in C++03, but then go on and build
4276 // the declarator.
Richard Smith7fe62082011-10-15 05:09:34 +00004277 if (Kind == tok::ampamp)
Richard Smith80ad52f2013-01-02 11:42:31 +00004278 Diag(Loc, getLangOpts().CPlusPlus11 ?
Richard Smith7fe62082011-10-15 05:09:34 +00004279 diag::warn_cxx98_compat_rvalue_reference :
4280 diag::ext_rvalue_reference);
Sebastian Redl743de1f2009-03-23 00:00:23 +00004281
Richard Smith6ee326a2012-04-10 01:32:12 +00004282 // GNU-style and C++11 attributes are allowed here, as is restrict.
4283 ParseTypeQualifierListOpt(DS);
4284 D.ExtendWithDeclSpec(DS);
4285
Reid Spencer5f016e22007-07-11 17:01:13 +00004286 // C++ 8.3.2p1: cv-qualified references are ill-formed except when the
4287 // cv-qualifiers are introduced through the use of a typedef or of a
4288 // template type argument, in which case the cv-qualifiers are ignored.
Reid Spencer5f016e22007-07-11 17:01:13 +00004289 if (DS.getTypeQualifiers() != DeclSpec::TQ_unspecified) {
4290 if (DS.getTypeQualifiers() & DeclSpec::TQ_const)
4291 Diag(DS.getConstSpecLoc(),
Chris Lattner1ab3b962008-11-18 07:48:38 +00004292 diag::err_invalid_reference_qualifier_application) << "const";
Reid Spencer5f016e22007-07-11 17:01:13 +00004293 if (DS.getTypeQualifiers() & DeclSpec::TQ_volatile)
4294 Diag(DS.getVolatileSpecLoc(),
Chris Lattner1ab3b962008-11-18 07:48:38 +00004295 diag::err_invalid_reference_qualifier_application) << "volatile";
Reid Spencer5f016e22007-07-11 17:01:13 +00004296 }
4297
4298 // Recursively parse the declarator.
Sebastian Redl4c5d3202008-11-21 19:14:01 +00004299 ParseDeclaratorInternal(D, DirectDeclParser);
Reid Spencer5f016e22007-07-11 17:01:13 +00004300
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +00004301 if (D.getNumTypeObjects() > 0) {
4302 // C++ [dcl.ref]p4: There shall be no references to references.
4303 DeclaratorChunk& InnerChunk = D.getTypeObject(D.getNumTypeObjects() - 1);
4304 if (InnerChunk.Kind == DeclaratorChunk::Reference) {
Chris Lattnerda83bac2008-11-19 07:37:42 +00004305 if (const IdentifierInfo *II = D.getIdentifier())
4306 Diag(InnerChunk.Loc, diag::err_illegal_decl_reference_to_reference)
4307 << II;
4308 else
4309 Diag(InnerChunk.Loc, diag::err_illegal_decl_reference_to_reference)
4310 << "type name";
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +00004311
Sebastian Redl4c5d3202008-11-21 19:14:01 +00004312 // Once we've complained about the reference-to-reference, we
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +00004313 // can go ahead and build the (technically ill-formed)
4314 // declarator: reference collapsing will take care of it.
4315 }
4316 }
4317
Reid Spencer5f016e22007-07-11 17:01:13 +00004318 // Remember that we parsed a reference type. It doesn't have type-quals.
Chris Lattner76549142008-02-21 01:32:26 +00004319 D.AddTypeInfo(DeclaratorChunk::getReference(DS.getTypeQualifiers(), Loc,
Sebastian Redl05532f22009-03-15 22:02:01 +00004320 Kind == tok::amp),
John McCall0b7e6782011-03-24 11:26:52 +00004321 DS.getAttributes(),
Sebastian Redlab197ba2009-02-09 18:23:29 +00004322 SourceLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00004323 }
4324}
4325
Richard Smith9988f282012-03-29 01:16:42 +00004326static void diagnoseMisplacedEllipsis(Parser &P, Declarator &D,
4327 SourceLocation EllipsisLoc) {
4328 if (EllipsisLoc.isValid()) {
4329 FixItHint Insertion;
4330 if (!D.getEllipsisLoc().isValid()) {
4331 Insertion = FixItHint::CreateInsertion(D.getIdentifierLoc(), "...");
4332 D.setEllipsisLoc(EllipsisLoc);
4333 }
4334 P.Diag(EllipsisLoc, diag::err_misplaced_ellipsis_in_declaration)
4335 << FixItHint::CreateRemoval(EllipsisLoc) << Insertion << !D.hasName();
4336 }
4337}
4338
Reid Spencer5f016e22007-07-11 17:01:13 +00004339/// ParseDirectDeclarator
4340/// direct-declarator: [C99 6.7.5]
Douglas Gregor42a552f2008-11-05 20:51:48 +00004341/// [C99] identifier
Reid Spencer5f016e22007-07-11 17:01:13 +00004342/// '(' declarator ')'
4343/// [GNU] '(' attributes declarator ')'
4344/// [C90] direct-declarator '[' constant-expression[opt] ']'
4345/// [C99] direct-declarator '[' type-qual-list[opt] assignment-expr[opt] ']'
4346/// [C99] direct-declarator '[' 'static' type-qual-list[opt] assign-expr ']'
4347/// [C99] direct-declarator '[' type-qual-list 'static' assignment-expr ']'
4348/// [C99] direct-declarator '[' type-qual-list[opt] '*' ']'
Richard Smith6ee326a2012-04-10 01:32:12 +00004349/// [C++11] direct-declarator '[' constant-expression[opt] ']'
4350/// attribute-specifier-seq[opt]
Reid Spencer5f016e22007-07-11 17:01:13 +00004351/// direct-declarator '(' parameter-type-list ')'
4352/// direct-declarator '(' identifier-list[opt] ')'
4353/// [GNU] direct-declarator '(' parameter-forward-declarations
4354/// parameter-type-list[opt] ')'
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00004355/// [C++] direct-declarator '(' parameter-declaration-clause ')'
4356/// cv-qualifier-seq[opt] exception-specification[opt]
Richard Smith6ee326a2012-04-10 01:32:12 +00004357/// [C++11] direct-declarator '(' parameter-declaration-clause ')'
4358/// attribute-specifier-seq[opt] cv-qualifier-seq[opt]
4359/// ref-qualifier[opt] exception-specification[opt]
Douglas Gregorb48fe382008-10-31 09:07:45 +00004360/// [C++] declarator-id
Richard Smith6ee326a2012-04-10 01:32:12 +00004361/// [C++11] declarator-id attribute-specifier-seq[opt]
Douglas Gregor42a552f2008-11-05 20:51:48 +00004362///
4363/// declarator-id: [C++ 8]
Douglas Gregora8bc8c92010-12-23 22:44:42 +00004364/// '...'[opt] id-expression
Douglas Gregor42a552f2008-11-05 20:51:48 +00004365/// '::'[opt] nested-name-specifier[opt] type-name
4366///
4367/// id-expression: [C++ 5.1]
4368/// unqualified-id
Douglas Gregordb422df2009-09-25 21:45:23 +00004369/// qualified-id
Douglas Gregor42a552f2008-11-05 20:51:48 +00004370///
4371/// unqualified-id: [C++ 5.1]
Mike Stump1eb44332009-09-09 15:08:12 +00004372/// identifier
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00004373/// operator-function-id
Douglas Gregordb422df2009-09-25 21:45:23 +00004374/// conversion-function-id
Mike Stump1eb44332009-09-09 15:08:12 +00004375/// '~' class-name
Douglas Gregor39a8de12009-02-25 19:37:18 +00004376/// template-id
Argyrios Kyrtzidisc7ed9c62008-11-07 22:02:30 +00004377///
Richard Smith5d8388c2012-03-27 01:42:32 +00004378/// Note, any additional constructs added here may need corresponding changes
4379/// in isConstructorDeclarator.
Reid Spencer5f016e22007-07-11 17:01:13 +00004380void Parser::ParseDirectDeclarator(Declarator &D) {
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00004381 DeclaratorScopeObj DeclScopeObj(*this, D.getCXXScopeSpec());
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00004382
David Blaikie4e4d0842012-03-11 07:00:24 +00004383 if (getLangOpts().CPlusPlus && D.mayHaveIdentifier()) {
Douglas Gregor3f9a0562009-11-03 01:35:08 +00004384 // ParseDeclaratorInternal might already have parsed the scope.
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00004385 if (D.getCXXScopeSpec().isEmpty()) {
Douglas Gregorefaa93a2011-11-07 17:33:42 +00004386 bool EnteringContext = D.getContext() == Declarator::FileContext ||
4387 D.getContext() == Declarator::MemberContext;
Chad Rosier8decdee2012-06-26 22:30:43 +00004388 ParseOptionalCXXScopeSpecifier(D.getCXXScopeSpec(), ParsedType(),
Douglas Gregorefaa93a2011-11-07 17:33:42 +00004389 EnteringContext);
John McCall9ba61662010-02-26 08:45:28 +00004390 }
4391
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00004392 if (D.getCXXScopeSpec().isValid()) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00004393 if (Actions.ShouldEnterDeclaratorScope(getCurScope(), D.getCXXScopeSpec()))
John McCalle7e278b2009-12-11 20:04:54 +00004394 // Change the declaration context for name lookup, until this function
4395 // is exited (and the declarator has been parsed).
4396 DeclScopeObj.EnterDeclaratorScope();
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00004397 }
4398
Douglas Gregora8bc8c92010-12-23 22:44:42 +00004399 // C++0x [dcl.fct]p14:
4400 // There is a syntactic ambiguity when an ellipsis occurs at the end
Chad Rosier8decdee2012-06-26 22:30:43 +00004401 // of a parameter-declaration-clause without a preceding comma. In
4402 // this case, the ellipsis is parsed as part of the
4403 // abstract-declarator if the type of the parameter names a template
Douglas Gregora8bc8c92010-12-23 22:44:42 +00004404 // parameter pack that has not been expanded; otherwise, it is parsed
4405 // as part of the parameter-declaration-clause.
Richard Smith9988f282012-03-29 01:16:42 +00004406 if (Tok.is(tok::ellipsis) && D.getCXXScopeSpec().isEmpty() &&
Douglas Gregora8bc8c92010-12-23 22:44:42 +00004407 !((D.getContext() == Declarator::PrototypeContext ||
4408 D.getContext() == Declarator::BlockLiteralContext) &&
Douglas Gregora8bc8c92010-12-23 22:44:42 +00004409 NextToken().is(tok::r_paren) &&
Richard Smith9988f282012-03-29 01:16:42 +00004410 !Actions.containsUnexpandedParameterPacks(D))) {
4411 SourceLocation EllipsisLoc = ConsumeToken();
4412 if (isPtrOperatorToken(Tok.getKind(), getLangOpts())) {
4413 // The ellipsis was put in the wrong place. Recover, and explain to
4414 // the user what they should have done.
4415 ParseDeclarator(D);
4416 diagnoseMisplacedEllipsis(*this, D, EllipsisLoc);
4417 return;
4418 } else
4419 D.setEllipsisLoc(EllipsisLoc);
4420
4421 // The ellipsis can't be followed by a parenthesized declarator. We
4422 // check for that in ParseParenDeclarator, after we have disambiguated
4423 // the l_paren token.
4424 }
4425
Douglas Gregor3f9a0562009-11-03 01:35:08 +00004426 if (Tok.is(tok::identifier) || Tok.is(tok::kw_operator) ||
4427 Tok.is(tok::annot_template_id) || Tok.is(tok::tilde)) {
4428 // We found something that indicates the start of an unqualified-id.
4429 // Parse that unqualified-id.
John McCallba9d8532010-04-13 06:39:49 +00004430 bool AllowConstructorName;
4431 if (D.getDeclSpec().hasTypeSpecifier())
4432 AllowConstructorName = false;
4433 else if (D.getCXXScopeSpec().isSet())
4434 AllowConstructorName =
4435 (D.getContext() == Declarator::FileContext ||
4436 (D.getContext() == Declarator::MemberContext &&
4437 D.getDeclSpec().isFriendSpecified()));
4438 else
4439 AllowConstructorName = (D.getContext() == Declarator::MemberContext);
4440
Abramo Bagnarae4b92762012-01-27 09:46:47 +00004441 SourceLocation TemplateKWLoc;
Chad Rosier8decdee2012-06-26 22:30:43 +00004442 if (ParseUnqualifiedId(D.getCXXScopeSpec(),
4443 /*EnteringContext=*/true,
4444 /*AllowDestructorName=*/true,
Douglas Gregor0efc2c12010-01-13 17:31:36 +00004445 AllowConstructorName,
John McCallb3d87482010-08-24 05:47:05 +00004446 ParsedType(),
Abramo Bagnarae4b92762012-01-27 09:46:47 +00004447 TemplateKWLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00004448 D.getName()) ||
4449 // Once we're past the identifier, if the scope was bad, mark the
4450 // whole declarator bad.
4451 D.getCXXScopeSpec().isInvalid()) {
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00004452 D.SetIdentifier(0, Tok.getLocation());
4453 D.setInvalidType(true);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00004454 } else {
4455 // Parsed the unqualified-id; update range information and move along.
4456 if (D.getSourceRange().getBegin().isInvalid())
4457 D.SetRangeBegin(D.getName().getSourceRange().getBegin());
4458 D.SetRangeEnd(D.getName().getSourceRange().getEnd());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00004459 }
Douglas Gregor3f9a0562009-11-03 01:35:08 +00004460 goto PastIdentifier;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00004461 }
Douglas Gregor3f9a0562009-11-03 01:35:08 +00004462 } else if (Tok.is(tok::identifier) && D.mayHaveIdentifier()) {
David Blaikie4e4d0842012-03-11 07:00:24 +00004463 assert(!getLangOpts().CPlusPlus &&
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00004464 "There's a C++-specific check for tok::identifier above");
4465 assert(Tok.getIdentifierInfo() && "Not an identifier?");
4466 D.SetIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
4467 ConsumeToken();
Douglas Gregor3f9a0562009-11-03 01:35:08 +00004468 goto PastIdentifier;
4469 }
Richard Smith9988f282012-03-29 01:16:42 +00004470
Douglas Gregor3f9a0562009-11-03 01:35:08 +00004471 if (Tok.is(tok::l_paren)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00004472 // direct-declarator: '(' declarator ')'
4473 // direct-declarator: '(' attributes declarator ')'
4474 // Example: 'char (*X)' or 'int (*XX)(void)'
4475 ParseParenDeclarator(D);
Douglas Gregor0efc2c12010-01-13 17:31:36 +00004476
4477 // If the declarator was parenthesized, we entered the declarator
4478 // scope when parsing the parenthesized declarator, then exited
4479 // the scope already. Re-enter the scope, if we need to.
4480 if (D.getCXXScopeSpec().isSet()) {
Fariborz Jahanian46877cd2010-08-17 23:50:37 +00004481 // If there was an error parsing parenthesized declarator, declarator
Richard Smith9988f282012-03-29 01:16:42 +00004482 // scope may have been entered before. Don't do it again.
Fariborz Jahanian46877cd2010-08-17 23:50:37 +00004483 if (!D.isInvalidType() &&
4484 Actions.ShouldEnterDeclaratorScope(getCurScope(), D.getCXXScopeSpec()))
Douglas Gregor0efc2c12010-01-13 17:31:36 +00004485 // Change the declaration context for name lookup, until this function
4486 // is exited (and the declarator has been parsed).
Fariborz Jahanian46877cd2010-08-17 23:50:37 +00004487 DeclScopeObj.EnterDeclaratorScope();
Douglas Gregor0efc2c12010-01-13 17:31:36 +00004488 }
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00004489 } else if (D.mayOmitIdentifier()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00004490 // This could be something simple like "int" (in which case the declarator
4491 // portion is empty), if an abstract-declarator is allowed.
4492 D.SetIdentifier(0, Tok.getLocation());
4493 } else {
David Blaikiee75d9cf2012-06-29 22:03:56 +00004494 if (Tok.getKind() == tok::annot_pragma_parser_crash)
David Blaikie377da4c2012-08-21 18:56:49 +00004495 LLVM_BUILTIN_TRAP;
Douglas Gregore950d4b2009-03-06 23:28:18 +00004496 if (D.getContext() == Declarator::MemberContext)
4497 Diag(Tok, diag::err_expected_member_name_or_semi)
4498 << D.getDeclSpec().getSourceRange();
Richard Trieudb55c04c2013-01-26 02:31:38 +00004499 else if (getLangOpts().CPlusPlus) {
4500 if (Tok.is(tok::period) || Tok.is(tok::arrow))
4501 Diag(Tok, diag::err_invalid_operator_on_type) << Tok.is(tok::arrow);
4502 else
4503 Diag(Tok, diag::err_expected_unqualified_id) << getLangOpts().CPlusPlus;
4504 } else
Chris Lattner1ab3b962008-11-18 07:48:38 +00004505 Diag(Tok, diag::err_expected_ident_lparen);
Reid Spencer5f016e22007-07-11 17:01:13 +00004506 D.SetIdentifier(0, Tok.getLocation());
Chris Lattner1f6f54b2008-11-11 06:13:16 +00004507 D.setInvalidType(true);
Reid Spencer5f016e22007-07-11 17:01:13 +00004508 }
Mike Stump1eb44332009-09-09 15:08:12 +00004509
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00004510 PastIdentifier:
Reid Spencer5f016e22007-07-11 17:01:13 +00004511 assert(D.isPastIdentifier() &&
4512 "Haven't past the location of the identifier yet?");
Mike Stump1eb44332009-09-09 15:08:12 +00004513
Richard Smith6ee326a2012-04-10 01:32:12 +00004514 // Don't parse attributes unless we have parsed an unparenthesized name.
4515 if (D.hasName() && !D.getNumTypeObjects())
Richard Smith4e24f0f2013-01-02 12:01:23 +00004516 MaybeParseCXX11Attributes(D);
Sean Huntbbd37c62009-11-21 08:43:09 +00004517
Reid Spencer5f016e22007-07-11 17:01:13 +00004518 while (1) {
Chris Lattner04d66662007-10-09 17:33:22 +00004519 if (Tok.is(tok::l_paren)) {
David Blaikie42d6d0c2011-12-04 05:04:18 +00004520 // Enter function-declaration scope, limiting any declarators to the
4521 // function prototype scope, including parameter declarators.
4522 ParseScope PrototypeScope(this,
Richard Smith3a2b7a12013-01-28 22:42:45 +00004523 Scope::FunctionPrototypeScope|Scope::DeclScope|
4524 (D.isFunctionDeclaratorAFunctionDeclaration()
4525 ? Scope::FunctionDeclarationScope : 0));
4526
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00004527 // The paren may be part of a C++ direct initializer, eg. "int x(1);".
4528 // In such a case, check if we actually have a function declarator; if it
4529 // is not, the declarator has been fully parsed.
Richard Smithb9c62612012-07-30 21:30:52 +00004530 bool IsAmbiguous = false;
Richard Smith05766812012-08-18 00:55:03 +00004531 if (getLangOpts().CPlusPlus && D.mayBeFollowedByCXXDirectInit()) {
4532 // The name of the declarator, if any, is tentatively declared within
4533 // a possible direct initializer.
4534 TentativelyDeclaredIdentifiers.push_back(D.getIdentifier());
4535 bool IsFunctionDecl = isCXXFunctionDeclarator(&IsAmbiguous);
4536 TentativelyDeclaredIdentifiers.pop_back();
4537 if (!IsFunctionDecl)
4538 break;
4539 }
John McCall0b7e6782011-03-24 11:26:52 +00004540 ParsedAttributes attrs(AttrFactory);
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004541 BalancedDelimiterTracker T(*this, tok::l_paren);
4542 T.consumeOpen();
Richard Smithb9c62612012-07-30 21:30:52 +00004543 ParseFunctionDeclarator(D, attrs, T, IsAmbiguous);
David Blaikie42d6d0c2011-12-04 05:04:18 +00004544 PrototypeScope.Exit();
Chris Lattner04d66662007-10-09 17:33:22 +00004545 } else if (Tok.is(tok::l_square)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00004546 ParseBracketDeclarator(D);
4547 } else {
4548 break;
4549 }
4550 }
Chad Rosier8decdee2012-06-26 22:30:43 +00004551}
Reid Spencer5f016e22007-07-11 17:01:13 +00004552
Chris Lattneref4715c2008-04-06 05:45:57 +00004553/// ParseParenDeclarator - We parsed the declarator D up to a paren. This is
4554/// only called before the identifier, so these are most likely just grouping
Mike Stump1eb44332009-09-09 15:08:12 +00004555/// parens for precedence. If we find that these are actually function
Chris Lattneref4715c2008-04-06 05:45:57 +00004556/// parameter parens in an abstract-declarator, we call ParseFunctionDeclarator.
4557///
4558/// direct-declarator:
4559/// '(' declarator ')'
4560/// [GNU] '(' attributes declarator ')'
Chris Lattner7399ee02008-10-20 02:05:46 +00004561/// direct-declarator '(' parameter-type-list ')'
4562/// direct-declarator '(' identifier-list[opt] ')'
4563/// [GNU] direct-declarator '(' parameter-forward-declarations
4564/// parameter-type-list[opt] ')'
Chris Lattneref4715c2008-04-06 05:45:57 +00004565///
4566void Parser::ParseParenDeclarator(Declarator &D) {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004567 BalancedDelimiterTracker T(*this, tok::l_paren);
4568 T.consumeOpen();
4569
Chris Lattneref4715c2008-04-06 05:45:57 +00004570 assert(!D.isPastIdentifier() && "Should be called before passing identifier");
Mike Stump1eb44332009-09-09 15:08:12 +00004571
Chris Lattner7399ee02008-10-20 02:05:46 +00004572 // Eat any attributes before we look at whether this is a grouping or function
4573 // declarator paren. If this is a grouping paren, the attribute applies to
4574 // the type being built up, for example:
4575 // int (__attribute__(()) *x)(long y)
4576 // If this ends up not being a grouping paren, the attribute applies to the
4577 // first argument, for example:
4578 // int (__attribute__(()) int x)
4579 // In either case, we need to eat any attributes to be able to determine what
4580 // sort of paren this is.
4581 //
John McCall0b7e6782011-03-24 11:26:52 +00004582 ParsedAttributes attrs(AttrFactory);
Chris Lattner7399ee02008-10-20 02:05:46 +00004583 bool RequiresArg = false;
4584 if (Tok.is(tok::kw___attribute)) {
John McCall7f040a92010-12-24 02:08:15 +00004585 ParseGNUAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +00004586
Chris Lattner7399ee02008-10-20 02:05:46 +00004587 // We require that the argument list (if this is a non-grouping paren) be
4588 // present even if the attribute list was empty.
4589 RequiresArg = true;
4590 }
Chad Rosier9cab1c92012-12-21 21:22:20 +00004591
Steve Naroff239f0732008-12-25 14:16:32 +00004592 // Eat any Microsoft extensions.
Chad Rosier9cab1c92012-12-21 21:22:20 +00004593 ParseMicrosoftTypeAttributes(attrs);
4594
Dawn Perchik52fc3142010-09-03 01:29:35 +00004595 // Eat any Borland extensions.
Ted Kremenek8113ecf2010-11-10 05:59:39 +00004596 if (Tok.is(tok::kw___pascal))
John McCall7f040a92010-12-24 02:08:15 +00004597 ParseBorlandTypeAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +00004598
Chris Lattneref4715c2008-04-06 05:45:57 +00004599 // If we haven't past the identifier yet (or where the identifier would be
4600 // stored, if this is an abstract declarator), then this is probably just
4601 // grouping parens. However, if this could be an abstract-declarator, then
4602 // this could also be the start of function arguments (consider 'void()').
4603 bool isGrouping;
Mike Stump1eb44332009-09-09 15:08:12 +00004604
Chris Lattneref4715c2008-04-06 05:45:57 +00004605 if (!D.mayOmitIdentifier()) {
4606 // If this can't be an abstract-declarator, this *must* be a grouping
4607 // paren, because we haven't seen the identifier yet.
4608 isGrouping = true;
4609 } else if (Tok.is(tok::r_paren) || // 'int()' is a function.
Richard Smith22592862012-03-27 23:05:05 +00004610 (getLangOpts().CPlusPlus && Tok.is(tok::ellipsis) &&
4611 NextToken().is(tok::r_paren)) || // C++ int(...)
Richard Smith6ce48a72012-04-11 04:01:28 +00004612 isDeclarationSpecifier() || // 'int(int)' is a function.
4613 isCXX11AttributeSpecifier()) { // 'int([[]]int)' is a function.
Chris Lattneref4715c2008-04-06 05:45:57 +00004614 // This handles C99 6.7.5.3p11: in "typedef int X; void foo(X)", X is
4615 // considered to be a type, not a K&R identifier-list.
4616 isGrouping = false;
4617 } else {
4618 // Otherwise, this is a grouping paren, e.g. 'int (*X)' or 'int(X)'.
4619 isGrouping = true;
4620 }
Mike Stump1eb44332009-09-09 15:08:12 +00004621
Chris Lattneref4715c2008-04-06 05:45:57 +00004622 // If this is a grouping paren, handle:
4623 // direct-declarator: '(' declarator ')'
4624 // direct-declarator: '(' attributes declarator ')'
4625 if (isGrouping) {
Richard Smith9988f282012-03-29 01:16:42 +00004626 SourceLocation EllipsisLoc = D.getEllipsisLoc();
4627 D.setEllipsisLoc(SourceLocation());
4628
Argyrios Kyrtzidis3f2a8a02008-10-07 10:21:57 +00004629 bool hadGroupingParens = D.hasGroupingParens();
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00004630 D.setGroupingParens(true);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00004631 ParseDeclaratorInternal(D, &Parser::ParseDirectDeclarator);
Chris Lattneref4715c2008-04-06 05:45:57 +00004632 // Match the ')'.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004633 T.consumeClose();
Chad Rosier8decdee2012-06-26 22:30:43 +00004634 D.AddTypeInfo(DeclaratorChunk::getParen(T.getOpenLocation(),
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004635 T.getCloseLocation()),
4636 attrs, T.getCloseLocation());
Argyrios Kyrtzidis3f2a8a02008-10-07 10:21:57 +00004637
4638 D.setGroupingParens(hadGroupingParens);
Richard Smith9988f282012-03-29 01:16:42 +00004639
4640 // An ellipsis cannot be placed outside parentheses.
4641 if (EllipsisLoc.isValid())
4642 diagnoseMisplacedEllipsis(*this, D, EllipsisLoc);
4643
Chris Lattneref4715c2008-04-06 05:45:57 +00004644 return;
4645 }
Mike Stump1eb44332009-09-09 15:08:12 +00004646
Chris Lattneref4715c2008-04-06 05:45:57 +00004647 // Okay, if this wasn't a grouping paren, it must be the start of a function
4648 // argument list. Recognize that this declarator will never have an
Chris Lattner7399ee02008-10-20 02:05:46 +00004649 // identifier (and remember where it would have been), then call into
4650 // ParseFunctionDeclarator to handle of argument list.
Chris Lattneref4715c2008-04-06 05:45:57 +00004651 D.SetIdentifier(0, Tok.getLocation());
4652
David Blaikie42d6d0c2011-12-04 05:04:18 +00004653 // Enter function-declaration scope, limiting any declarators to the
4654 // function prototype scope, including parameter declarators.
4655 ParseScope PrototypeScope(this,
Richard Smith3a2b7a12013-01-28 22:42:45 +00004656 Scope::FunctionPrototypeScope | Scope::DeclScope |
4657 (D.isFunctionDeclaratorAFunctionDeclaration()
4658 ? Scope::FunctionDeclarationScope : 0));
Richard Smithb9c62612012-07-30 21:30:52 +00004659 ParseFunctionDeclarator(D, attrs, T, false, RequiresArg);
David Blaikie42d6d0c2011-12-04 05:04:18 +00004660 PrototypeScope.Exit();
Chris Lattneref4715c2008-04-06 05:45:57 +00004661}
4662
4663/// ParseFunctionDeclarator - We are after the identifier and have parsed the
4664/// declarator D up to a paren, which indicates that we are parsing function
4665/// arguments.
Reid Spencer5f016e22007-07-11 17:01:13 +00004666///
Richard Smith6ee326a2012-04-10 01:32:12 +00004667/// If FirstArgAttrs is non-null, then the caller parsed those arguments
4668/// immediately after the open paren - they should be considered to be the
4669/// first argument of a parameter.
Chris Lattner7399ee02008-10-20 02:05:46 +00004670///
Richard Smith6ee326a2012-04-10 01:32:12 +00004671/// If RequiresArg is true, then the first argument of the function is required
4672/// to be present and required to not be an identifier list.
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004673///
Richard Smith6ee326a2012-04-10 01:32:12 +00004674/// For C++, after the parameter-list, it also parses the cv-qualifier-seq[opt],
4675/// (C++11) ref-qualifier[opt], exception-specification[opt],
4676/// (C++11) attribute-specifier-seq[opt], and (C++11) trailing-return-type[opt].
4677///
4678/// [C++11] exception-specification:
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004679/// dynamic-exception-specification
4680/// noexcept-specification
4681///
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004682void Parser::ParseFunctionDeclarator(Declarator &D,
Richard Smith6ee326a2012-04-10 01:32:12 +00004683 ParsedAttributes &FirstArgAttrs,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004684 BalancedDelimiterTracker &Tracker,
Richard Smithb9c62612012-07-30 21:30:52 +00004685 bool IsAmbiguous,
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004686 bool RequiresArg) {
Chad Rosier8decdee2012-06-26 22:30:43 +00004687 assert(getCurScope()->isFunctionPrototypeScope() &&
David Blaikie42d6d0c2011-12-04 05:04:18 +00004688 "Should call from a Function scope");
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004689 // lparen is already consumed!
4690 assert(D.isPastIdentifier() && "Should not call before identifier!");
4691
4692 // This should be true when the function has typed arguments.
4693 // Otherwise, it is treated as a K&R-style function.
4694 bool HasProto = false;
4695 // Build up an array of information about the parsed arguments.
Chris Lattner5f9e2722011-07-23 10:55:15 +00004696 SmallVector<DeclaratorChunk::ParamInfo, 16> ParamInfo;
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004697 // Remember where we see an ellipsis, if any.
4698 SourceLocation EllipsisLoc;
4699
4700 DeclSpec DS(AttrFactory);
4701 bool RefQualifierIsLValueRef = true;
4702 SourceLocation RefQualifierLoc;
Douglas Gregor43f51032011-10-19 06:04:55 +00004703 SourceLocation ConstQualifierLoc;
4704 SourceLocation VolatileQualifierLoc;
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004705 ExceptionSpecificationType ESpecType = EST_None;
4706 SourceRange ESpecRange;
Chris Lattner5f9e2722011-07-23 10:55:15 +00004707 SmallVector<ParsedType, 2> DynamicExceptions;
4708 SmallVector<SourceRange, 2> DynamicExceptionRanges;
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004709 ExprResult NoexceptExpr;
Richard Smith6ee326a2012-04-10 01:32:12 +00004710 ParsedAttributes FnAttrs(AttrFactory);
Richard Smith54655be2012-06-12 01:51:59 +00004711 TypeResult TrailingReturnType;
Richard Smith6ee326a2012-04-10 01:32:12 +00004712
James Molloy16f1f712012-02-29 10:24:19 +00004713 Actions.ActOnStartFunctionDeclarator();
4714
Abramo Bagnaraac8ea052012-10-15 21:05:46 +00004715 /* LocalEndLoc is the end location for the local FunctionTypeLoc.
4716 EndLoc is the end location for the function declarator.
4717 They differ for trailing return types. */
4718 SourceLocation StartLoc, LocalEndLoc, EndLoc;
Abramo Bagnara59c0a812012-10-04 21:42:10 +00004719 SourceLocation LParenLoc, RParenLoc;
4720 LParenLoc = Tracker.getOpenLocation();
4721 StartLoc = LParenLoc;
4722
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004723 if (isFunctionDeclaratorIdentifierList()) {
4724 if (RequiresArg)
4725 Diag(Tok, diag::err_argument_required_after_attribute);
4726
4727 ParseFunctionDeclaratorIdentifierList(D, ParamInfo);
4728
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004729 Tracker.consumeClose();
Abramo Bagnara59c0a812012-10-04 21:42:10 +00004730 RParenLoc = Tracker.getCloseLocation();
Abramo Bagnaraac8ea052012-10-15 21:05:46 +00004731 LocalEndLoc = RParenLoc;
Abramo Bagnara59c0a812012-10-04 21:42:10 +00004732 EndLoc = RParenLoc;
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004733 } else {
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004734 if (Tok.isNot(tok::r_paren))
Richard Smith6ee326a2012-04-10 01:32:12 +00004735 ParseParameterDeclarationClause(D, FirstArgAttrs, ParamInfo, EllipsisLoc);
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004736 else if (RequiresArg)
4737 Diag(Tok, diag::err_argument_required_after_attribute);
4738
David Blaikie4e4d0842012-03-11 07:00:24 +00004739 HasProto = ParamInfo.size() || getLangOpts().CPlusPlus;
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004740
4741 // If we have the closing ')', eat it.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004742 Tracker.consumeClose();
Abramo Bagnara59c0a812012-10-04 21:42:10 +00004743 RParenLoc = Tracker.getCloseLocation();
Abramo Bagnaraac8ea052012-10-15 21:05:46 +00004744 LocalEndLoc = RParenLoc;
Abramo Bagnara59c0a812012-10-04 21:42:10 +00004745 EndLoc = RParenLoc;
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004746
David Blaikie4e4d0842012-03-11 07:00:24 +00004747 if (getLangOpts().CPlusPlus) {
Richard Smith6ee326a2012-04-10 01:32:12 +00004748 // FIXME: Accept these components in any order, and produce fixits to
4749 // correct the order if the user gets it wrong. Ideally we should deal
4750 // with the virt-specifier-seq and pure-specifier in the same way.
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004751
4752 // Parse cv-qualifier-seq[opt].
Richard Smith6ee326a2012-04-10 01:32:12 +00004753 ParseTypeQualifierListOpt(DS, false /*no attributes*/, false);
4754 if (!DS.getSourceRange().getEnd().isInvalid()) {
4755 EndLoc = DS.getSourceRange().getEnd();
4756 ConstQualifierLoc = DS.getConstSpecLoc();
4757 VolatileQualifierLoc = DS.getVolatileSpecLoc();
4758 }
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004759
4760 // Parse ref-qualifier[opt].
4761 if (Tok.is(tok::amp) || Tok.is(tok::ampamp)) {
Richard Smith80ad52f2013-01-02 11:42:31 +00004762 Diag(Tok, getLangOpts().CPlusPlus11 ?
Richard Smith7fe62082011-10-15 05:09:34 +00004763 diag::warn_cxx98_compat_ref_qualifier :
4764 diag::ext_ref_qualifier);
Richard Smith6ee326a2012-04-10 01:32:12 +00004765
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004766 RefQualifierIsLValueRef = Tok.is(tok::amp);
4767 RefQualifierLoc = ConsumeToken();
4768 EndLoc = RefQualifierLoc;
4769 }
4770
Douglas Gregorcefc3af2012-04-16 07:05:22 +00004771 // C++11 [expr.prim.general]p3:
Chad Rosier8decdee2012-06-26 22:30:43 +00004772 // If a declaration declares a member function or member function
4773 // template of a class X, the expression this is a prvalue of type
Douglas Gregorcefc3af2012-04-16 07:05:22 +00004774 // "pointer to cv-qualifier-seq X" between the optional cv-qualifer-seq
Chad Rosier8decdee2012-06-26 22:30:43 +00004775 // and the end of the function-definition, member-declarator, or
Douglas Gregorcefc3af2012-04-16 07:05:22 +00004776 // declarator.
Chad Rosier8decdee2012-06-26 22:30:43 +00004777 bool IsCXX11MemberFunction =
Richard Smith80ad52f2013-01-02 11:42:31 +00004778 getLangOpts().CPlusPlus11 &&
Douglas Gregorcefc3af2012-04-16 07:05:22 +00004779 (D.getContext() == Declarator::MemberContext ||
4780 (D.getContext() == Declarator::FileContext &&
Chad Rosier8decdee2012-06-26 22:30:43 +00004781 D.getCXXScopeSpec().isValid() &&
Douglas Gregorcefc3af2012-04-16 07:05:22 +00004782 Actions.CurContext->isRecord()));
4783 Sema::CXXThisScopeRAII ThisScope(Actions,
4784 dyn_cast<CXXRecordDecl>(Actions.CurContext),
Richard Smith7b19cb12013-01-14 01:55:13 +00004785 DS.getTypeQualifiers() |
4786 (D.getDeclSpec().isConstexprSpecified()
4787 ? Qualifiers::Const : 0),
Douglas Gregorcefc3af2012-04-16 07:05:22 +00004788 IsCXX11MemberFunction);
Richard Smitha058fd42012-05-02 22:22:32 +00004789
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004790 // Parse exception-specification[opt].
Richard Smitha058fd42012-05-02 22:22:32 +00004791 ESpecType = tryParseExceptionSpecification(ESpecRange,
Douglas Gregor74e2fc32012-04-16 18:27:27 +00004792 DynamicExceptions,
4793 DynamicExceptionRanges,
Richard Smitha058fd42012-05-02 22:22:32 +00004794 NoexceptExpr);
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004795 if (ESpecType != EST_None)
4796 EndLoc = ESpecRange.getEnd();
4797
Richard Smith6ee326a2012-04-10 01:32:12 +00004798 // Parse attribute-specifier-seq[opt]. Per DR 979 and DR 1297, this goes
4799 // after the exception-specification.
Richard Smith4e24f0f2013-01-02 12:01:23 +00004800 MaybeParseCXX11Attributes(FnAttrs);
Richard Smith6ee326a2012-04-10 01:32:12 +00004801
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004802 // Parse trailing-return-type[opt].
Abramo Bagnaraac8ea052012-10-15 21:05:46 +00004803 LocalEndLoc = EndLoc;
Richard Smith80ad52f2013-01-02 11:42:31 +00004804 if (getLangOpts().CPlusPlus11 && Tok.is(tok::arrow)) {
Richard Smith7fe62082011-10-15 05:09:34 +00004805 Diag(Tok, diag::warn_cxx98_compat_trailing_return_type);
Abramo Bagnara59c0a812012-10-04 21:42:10 +00004806 if (D.getDeclSpec().getTypeSpecType() == TST_auto)
4807 StartLoc = D.getDeclSpec().getTypeSpecTypeLoc();
Abramo Bagnaraac8ea052012-10-15 21:05:46 +00004808 LocalEndLoc = Tok.getLocation();
Douglas Gregorae7902c2011-08-04 15:30:47 +00004809 SourceRange Range;
Richard Smith54655be2012-06-12 01:51:59 +00004810 TrailingReturnType = ParseTrailingReturnType(Range);
Abramo Bagnaraac8ea052012-10-15 21:05:46 +00004811 EndLoc = Range.getEnd();
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004812 }
4813 }
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004814 }
4815
4816 // Remember that we parsed a function type, and remember the attributes.
4817 D.AddTypeInfo(DeclaratorChunk::getFunction(HasProto,
Abramo Bagnara59c0a812012-10-04 21:42:10 +00004818 IsAmbiguous,
4819 LParenLoc,
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004820 ParamInfo.data(), ParamInfo.size(),
Abramo Bagnara59c0a812012-10-04 21:42:10 +00004821 EllipsisLoc, RParenLoc,
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004822 DS.getTypeQualifiers(),
4823 RefQualifierIsLValueRef,
Douglas Gregor43f51032011-10-19 06:04:55 +00004824 RefQualifierLoc, ConstQualifierLoc,
4825 VolatileQualifierLoc,
Douglas Gregor90ebed02011-07-13 21:47:47 +00004826 /*MutableLoc=*/SourceLocation(),
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004827 ESpecType, ESpecRange.getBegin(),
4828 DynamicExceptions.data(),
4829 DynamicExceptionRanges.data(),
4830 DynamicExceptions.size(),
4831 NoexceptExpr.isUsable() ?
4832 NoexceptExpr.get() : 0,
Abramo Bagnaraac8ea052012-10-15 21:05:46 +00004833 StartLoc, LocalEndLoc, D,
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004834 TrailingReturnType),
Richard Smith6ee326a2012-04-10 01:32:12 +00004835 FnAttrs, EndLoc);
James Molloy16f1f712012-02-29 10:24:19 +00004836
4837 Actions.ActOnEndFunctionDeclarator();
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004838}
4839
4840/// isFunctionDeclaratorIdentifierList - This parameter list may have an
4841/// identifier list form for a K&R-style function: void foo(a,b,c)
4842///
4843/// Note that identifier-lists are only allowed for normal declarators, not for
4844/// abstract-declarators.
4845bool Parser::isFunctionDeclaratorIdentifierList() {
David Blaikie4e4d0842012-03-11 07:00:24 +00004846 return !getLangOpts().CPlusPlus
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004847 && Tok.is(tok::identifier)
4848 && !TryAltiVecVectorToken()
4849 // K&R identifier lists can't have typedefs as identifiers, per C99
4850 // 6.7.5.3p11.
4851 && (TryAnnotateTypeOrScopeToken() || !Tok.is(tok::annot_typename))
4852 // Identifier lists follow a really simple grammar: the identifiers can
4853 // be followed *only* by a ", identifier" or ")". However, K&R
4854 // identifier lists are really rare in the brave new modern world, and
4855 // it is very common for someone to typo a type in a non-K&R style
4856 // list. If we are presented with something like: "void foo(intptr x,
4857 // float y)", we don't want to start parsing the function declarator as
4858 // though it is a K&R style declarator just because intptr is an
4859 // invalid type.
4860 //
4861 // To handle this, we check to see if the token after the first
4862 // identifier is a "," or ")". Only then do we parse it as an
4863 // identifier list.
4864 && (NextToken().is(tok::comma) || NextToken().is(tok::r_paren));
4865}
4866
4867/// ParseFunctionDeclaratorIdentifierList - While parsing a function declarator
4868/// we found a K&R-style identifier list instead of a typed parameter list.
4869///
4870/// After returning, ParamInfo will hold the parsed parameters.
4871///
4872/// identifier-list: [C99 6.7.5]
4873/// identifier
4874/// identifier-list ',' identifier
4875///
4876void Parser::ParseFunctionDeclaratorIdentifierList(
4877 Declarator &D,
Chris Lattner5f9e2722011-07-23 10:55:15 +00004878 SmallVector<DeclaratorChunk::ParamInfo, 16> &ParamInfo) {
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004879 // If there was no identifier specified for the declarator, either we are in
4880 // an abstract-declarator, or we are in a parameter declarator which was found
4881 // to be abstract. In abstract-declarators, identifier lists are not valid:
4882 // diagnose this.
4883 if (!D.getIdentifier())
4884 Diag(Tok, diag::ext_ident_list_in_param);
4885
4886 // Maintain an efficient lookup of params we have seen so far.
4887 llvm::SmallSet<const IdentifierInfo*, 16> ParamsSoFar;
4888
4889 while (1) {
4890 // If this isn't an identifier, report the error and skip until ')'.
4891 if (Tok.isNot(tok::identifier)) {
4892 Diag(Tok, diag::err_expected_ident);
4893 SkipUntil(tok::r_paren, /*StopAtSemi=*/true, /*DontConsume=*/true);
4894 // Forget we parsed anything.
4895 ParamInfo.clear();
4896 return;
4897 }
4898
4899 IdentifierInfo *ParmII = Tok.getIdentifierInfo();
4900
4901 // Reject 'typedef int y; int test(x, y)', but continue parsing.
4902 if (Actions.getTypeName(*ParmII, Tok.getLocation(), getCurScope()))
4903 Diag(Tok, diag::err_unexpected_typedef_ident) << ParmII;
4904
4905 // Verify that the argument identifier has not already been mentioned.
4906 if (!ParamsSoFar.insert(ParmII)) {
4907 Diag(Tok, diag::err_param_redefinition) << ParmII;
4908 } else {
4909 // Remember this identifier in ParamInfo.
4910 ParamInfo.push_back(DeclaratorChunk::ParamInfo(ParmII,
4911 Tok.getLocation(),
4912 0));
4913 }
4914
4915 // Eat the identifier.
4916 ConsumeToken();
4917
4918 // The list continues if we see a comma.
4919 if (Tok.isNot(tok::comma))
4920 break;
4921 ConsumeToken();
4922 }
4923}
4924
4925/// ParseParameterDeclarationClause - Parse a (possibly empty) parameter-list
4926/// after the opening parenthesis. This function will not parse a K&R-style
4927/// identifier list.
4928///
Richard Smith6ce48a72012-04-11 04:01:28 +00004929/// D is the declarator being parsed. If FirstArgAttrs is non-null, then the
4930/// caller parsed those arguments immediately after the open paren - they should
4931/// be considered to be part of the first parameter.
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004932///
4933/// After returning, ParamInfo will hold the parsed parameters. EllipsisLoc will
4934/// be the location of the ellipsis, if any was parsed.
4935///
Reid Spencer5f016e22007-07-11 17:01:13 +00004936/// parameter-type-list: [C99 6.7.5]
4937/// parameter-list
4938/// parameter-list ',' '...'
Douglas Gregored5d6512009-09-22 21:41:40 +00004939/// [C++] parameter-list '...'
Reid Spencer5f016e22007-07-11 17:01:13 +00004940///
4941/// parameter-list: [C99 6.7.5]
4942/// parameter-declaration
4943/// parameter-list ',' parameter-declaration
4944///
4945/// parameter-declaration: [C99 6.7.5]
4946/// declaration-specifiers declarator
Chris Lattner04421082008-04-08 04:40:51 +00004947/// [C++] declaration-specifiers declarator '=' assignment-expression
Sebastian Redl84407ba2012-03-14 15:54:00 +00004948/// [C++11] initializer-clause
Reid Spencer5f016e22007-07-11 17:01:13 +00004949/// [GNU] declaration-specifiers declarator attributes
Sebastian Redl50de12f2009-03-24 22:27:57 +00004950/// declaration-specifiers abstract-declarator[opt]
4951/// [C++] declaration-specifiers abstract-declarator[opt]
Chris Lattner8123a952008-04-10 02:22:51 +00004952/// '=' assignment-expression
Reid Spencer5f016e22007-07-11 17:01:13 +00004953/// [GNU] declaration-specifiers abstract-declarator[opt] attributes
Richard Smith6ce48a72012-04-11 04:01:28 +00004954/// [C++11] attribute-specifier-seq parameter-declaration
Reid Spencer5f016e22007-07-11 17:01:13 +00004955///
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004956void Parser::ParseParameterDeclarationClause(
4957 Declarator &D,
Richard Smith6ce48a72012-04-11 04:01:28 +00004958 ParsedAttributes &FirstArgAttrs,
Chris Lattner5f9e2722011-07-23 10:55:15 +00004959 SmallVector<DeclaratorChunk::ParamInfo, 16> &ParamInfo,
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004960 SourceLocation &EllipsisLoc) {
Mike Stump1eb44332009-09-09 15:08:12 +00004961
Chris Lattnerf97409f2008-04-06 06:57:35 +00004962 while (1) {
4963 if (Tok.is(tok::ellipsis)) {
Richard Smith6ce48a72012-04-11 04:01:28 +00004964 // FIXME: Issue a diagnostic if we parsed an attribute-specifier-seq
4965 // before deciding this was a parameter-declaration-clause.
Douglas Gregor965acbb2009-02-18 07:07:28 +00004966 EllipsisLoc = ConsumeToken(); // Consume the ellipsis.
Chris Lattnerf97409f2008-04-06 06:57:35 +00004967 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00004968 }
Mike Stump1eb44332009-09-09 15:08:12 +00004969
Chris Lattnerf97409f2008-04-06 06:57:35 +00004970 // Parse the declaration-specifiers.
John McCall54abf7d2009-11-04 02:18:39 +00004971 // Just use the ParsingDeclaration "scope" of the declarator.
John McCall0b7e6782011-03-24 11:26:52 +00004972 DeclSpec DS(AttrFactory);
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004973
Richard Smith6ce48a72012-04-11 04:01:28 +00004974 // Parse any C++11 attributes.
Richard Smith4e24f0f2013-01-02 12:01:23 +00004975 MaybeParseCXX11Attributes(DS.getAttributes());
Richard Smith6ce48a72012-04-11 04:01:28 +00004976
John McCall7f040a92010-12-24 02:08:15 +00004977 // Skip any Microsoft attributes before a param.
Chad Rosier16f90bf2012-12-20 20:37:53 +00004978 MaybeParseMicrosoftAttributes(DS.getAttributes());
John McCall7f040a92010-12-24 02:08:15 +00004979
4980 SourceLocation DSStart = Tok.getLocation();
Chris Lattner7399ee02008-10-20 02:05:46 +00004981
4982 // If the caller parsed attributes for the first argument, add them now.
John McCall7f040a92010-12-24 02:08:15 +00004983 // Take them so that we only apply the attributes to the first parameter.
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004984 // FIXME: If we can leave the attributes in the token stream somehow, we can
Richard Smith6ce48a72012-04-11 04:01:28 +00004985 // get rid of a parameter (FirstArgAttrs) and this statement. It might be
4986 // too much hassle.
4987 DS.takeAttributesFrom(FirstArgAttrs);
John McCall7f040a92010-12-24 02:08:15 +00004988
Chris Lattnere64c5492009-02-27 18:38:20 +00004989 ParseDeclarationSpecifiers(DS);
Mike Stump1eb44332009-09-09 15:08:12 +00004990
Chris Lattnerf97409f2008-04-06 06:57:35 +00004991 // Parse the declarator. This is "PrototypeContext", because we must
4992 // accept either 'declarator' or 'abstract-declarator' here.
4993 Declarator ParmDecl(DS, Declarator::PrototypeContext);
4994 ParseDeclarator(ParmDecl);
4995
4996 // Parse GNU attributes, if present.
John McCall7f040a92010-12-24 02:08:15 +00004997 MaybeParseGNUAttributes(ParmDecl);
Mike Stump1eb44332009-09-09 15:08:12 +00004998
Chris Lattnerf97409f2008-04-06 06:57:35 +00004999 // Remember this parsed parameter in ParamInfo.
5000 IdentifierInfo *ParmII = ParmDecl.getIdentifier();
Mike Stump1eb44332009-09-09 15:08:12 +00005001
Douglas Gregor72b505b2008-12-16 21:30:33 +00005002 // DefArgToks is used when the parsing of default arguments needs
5003 // to be delayed.
5004 CachedTokens *DefArgToks = 0;
5005
Chris Lattnerf97409f2008-04-06 06:57:35 +00005006 // If no parameter was specified, verify that *something* was specified,
5007 // otherwise we have a missing type and identifier.
Chris Lattnere64c5492009-02-27 18:38:20 +00005008 if (DS.isEmpty() && ParmDecl.getIdentifier() == 0 &&
5009 ParmDecl.getNumTypeObjects() == 0) {
Chris Lattnerf97409f2008-04-06 06:57:35 +00005010 // Completely missing, emit error.
5011 Diag(DSStart, diag::err_missing_param);
5012 } else {
5013 // Otherwise, we have something. Add it and let semantic analysis try
5014 // to grok it and add the result to the ParamInfo we are building.
Mike Stump1eb44332009-09-09 15:08:12 +00005015
Chris Lattnerf97409f2008-04-06 06:57:35 +00005016 // Inform the actions module about the parameter declarator, so it gets
5017 // added to the current scope.
John McCalld226f652010-08-21 09:40:31 +00005018 Decl *Param = Actions.ActOnParamDeclarator(getCurScope(), ParmDecl);
Chris Lattner04421082008-04-08 04:40:51 +00005019
5020 // Parse the default argument, if any. We parse the default
5021 // arguments in all dialects; the semantic analysis in
5022 // ActOnParamDefaultArgument will reject the default argument in
5023 // C.
5024 if (Tok.is(tok::equal)) {
Douglas Gregor61366e92008-12-24 00:01:03 +00005025 SourceLocation EqualLoc = Tok.getLocation();
5026
Chris Lattner04421082008-04-08 04:40:51 +00005027 // Parse the default argument
Douglas Gregor72b505b2008-12-16 21:30:33 +00005028 if (D.getContext() == Declarator::MemberContext) {
5029 // If we're inside a class definition, cache the tokens
5030 // corresponding to the default argument. We'll actually parse
5031 // them when we see the end of the class definition.
Douglas Gregor72b505b2008-12-16 21:30:33 +00005032 // FIXME: Can we use a smart pointer for Toks?
5033 DefArgToks = new CachedTokens;
5034
Mike Stump1eb44332009-09-09 15:08:12 +00005035 if (!ConsumeAndStoreUntil(tok::comma, tok::r_paren, *DefArgToks,
Argyrios Kyrtzidis14b91622010-04-23 21:20:12 +00005036 /*StopAtSemi=*/true,
5037 /*ConsumeFinalToken=*/false)) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00005038 delete DefArgToks;
5039 DefArgToks = 0;
Douglas Gregor61366e92008-12-24 00:01:03 +00005040 Actions.ActOnParamDefaultArgumentError(Param);
Argyrios Kyrtzidis2b602ad2010-08-06 09:47:24 +00005041 } else {
5042 // Mark the end of the default argument so that we know when to
5043 // stop when we parse it later on.
5044 Token DefArgEnd;
5045 DefArgEnd.startToken();
5046 DefArgEnd.setKind(tok::cxx_defaultarg_end);
5047 DefArgEnd.setLocation(Tok.getLocation());
5048 DefArgToks->push_back(DefArgEnd);
Mike Stump1eb44332009-09-09 15:08:12 +00005049 Actions.ActOnParamUnparsedDefaultArgument(Param, EqualLoc,
Anders Carlsson5e300d12009-06-12 16:51:40 +00005050 (*DefArgToks)[1].getLocation());
Argyrios Kyrtzidis2b602ad2010-08-06 09:47:24 +00005051 }
Chris Lattner04421082008-04-08 04:40:51 +00005052 } else {
Douglas Gregor72b505b2008-12-16 21:30:33 +00005053 // Consume the '='.
Douglas Gregor61366e92008-12-24 00:01:03 +00005054 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00005055
Chad Rosier8decdee2012-06-26 22:30:43 +00005056 // The argument isn't actually potentially evaluated unless it is
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00005057 // used.
5058 EnterExpressionEvaluationContext Eval(Actions,
Douglas Gregorccc1b5e2012-02-21 00:37:24 +00005059 Sema::PotentiallyEvaluatedIfUsed,
5060 Param);
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00005061
Sebastian Redl84407ba2012-03-14 15:54:00 +00005062 ExprResult DefArgResult;
Richard Smith80ad52f2013-01-02 11:42:31 +00005063 if (getLangOpts().CPlusPlus11 && Tok.is(tok::l_brace)) {
Sebastian Redl3e280b52012-03-18 22:25:45 +00005064 Diag(Tok, diag::warn_cxx98_compat_generalized_initializer_lists);
Sebastian Redl84407ba2012-03-14 15:54:00 +00005065 DefArgResult = ParseBraceInitializer();
Sebastian Redl3e280b52012-03-18 22:25:45 +00005066 } else
Sebastian Redl84407ba2012-03-14 15:54:00 +00005067 DefArgResult = ParseAssignmentExpression();
Douglas Gregor72b505b2008-12-16 21:30:33 +00005068 if (DefArgResult.isInvalid()) {
5069 Actions.ActOnParamDefaultArgumentError(Param);
5070 SkipUntil(tok::comma, tok::r_paren, true, true);
5071 } else {
5072 // Inform the actions module about the default argument
5073 Actions.ActOnParamDefaultArgument(Param, EqualLoc,
John McCall9ae2f072010-08-23 23:25:46 +00005074 DefArgResult.take());
Douglas Gregor72b505b2008-12-16 21:30:33 +00005075 }
Chris Lattner04421082008-04-08 04:40:51 +00005076 }
5077 }
Mike Stump1eb44332009-09-09 15:08:12 +00005078
5079 ParamInfo.push_back(DeclaratorChunk::ParamInfo(ParmII,
5080 ParmDecl.getIdentifierLoc(), Param,
Douglas Gregor72b505b2008-12-16 21:30:33 +00005081 DefArgToks));
Chris Lattnerf97409f2008-04-06 06:57:35 +00005082 }
5083
5084 // If the next token is a comma, consume it and keep reading arguments.
Douglas Gregored5d6512009-09-22 21:41:40 +00005085 if (Tok.isNot(tok::comma)) {
5086 if (Tok.is(tok::ellipsis)) {
Douglas Gregored5d6512009-09-22 21:41:40 +00005087 EllipsisLoc = ConsumeToken(); // Consume the ellipsis.
Chad Rosier8decdee2012-06-26 22:30:43 +00005088
David Blaikie4e4d0842012-03-11 07:00:24 +00005089 if (!getLangOpts().CPlusPlus) {
Douglas Gregored5d6512009-09-22 21:41:40 +00005090 // We have ellipsis without a preceding ',', which is ill-formed
5091 // in C. Complain and provide the fix.
5092 Diag(EllipsisLoc, diag::err_missing_comma_before_ellipsis)
Douglas Gregor849b2432010-03-31 17:46:05 +00005093 << FixItHint::CreateInsertion(EllipsisLoc, ", ");
Douglas Gregored5d6512009-09-22 21:41:40 +00005094 }
5095 }
Chad Rosier8decdee2012-06-26 22:30:43 +00005096
Douglas Gregored5d6512009-09-22 21:41:40 +00005097 break;
5098 }
Mike Stump1eb44332009-09-09 15:08:12 +00005099
Chris Lattnerf97409f2008-04-06 06:57:35 +00005100 // Consume the comma.
5101 ConsumeToken();
Reid Spencer5f016e22007-07-11 17:01:13 +00005102 }
Mike Stump1eb44332009-09-09 15:08:12 +00005103
Chris Lattner66d28652008-04-06 06:34:08 +00005104}
Chris Lattneref4715c2008-04-06 05:45:57 +00005105
Reid Spencer5f016e22007-07-11 17:01:13 +00005106/// [C90] direct-declarator '[' constant-expression[opt] ']'
5107/// [C99] direct-declarator '[' type-qual-list[opt] assignment-expr[opt] ']'
5108/// [C99] direct-declarator '[' 'static' type-qual-list[opt] assign-expr ']'
5109/// [C99] direct-declarator '[' type-qual-list 'static' assignment-expr ']'
5110/// [C99] direct-declarator '[' type-qual-list[opt] '*' ']'
Richard Smith6ee326a2012-04-10 01:32:12 +00005111/// [C++11] direct-declarator '[' constant-expression[opt] ']'
5112/// attribute-specifier-seq[opt]
Reid Spencer5f016e22007-07-11 17:01:13 +00005113void Parser::ParseBracketDeclarator(Declarator &D) {
Richard Smith6ee326a2012-04-10 01:32:12 +00005114 if (CheckProhibitedCXX11Attribute())
5115 return;
5116
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005117 BalancedDelimiterTracker T(*this, tok::l_square);
5118 T.consumeOpen();
Mike Stump1eb44332009-09-09 15:08:12 +00005119
Chris Lattner378c7e42008-12-18 07:27:21 +00005120 // C array syntax has many features, but by-far the most common is [] and [4].
5121 // This code does a fast path to handle some of the most obvious cases.
5122 if (Tok.getKind() == tok::r_square) {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005123 T.consumeClose();
John McCall0b7e6782011-03-24 11:26:52 +00005124 ParsedAttributes attrs(AttrFactory);
Richard Smith4e24f0f2013-01-02 12:01:23 +00005125 MaybeParseCXX11Attributes(attrs);
Chad Rosier8decdee2012-06-26 22:30:43 +00005126
Chris Lattner378c7e42008-12-18 07:27:21 +00005127 // Remember that we parsed the empty array type.
John McCall60d7b3a2010-08-24 06:29:42 +00005128 ExprResult NumElements;
John McCall0b7e6782011-03-24 11:26:52 +00005129 D.AddTypeInfo(DeclaratorChunk::getArray(0, false, false, 0,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005130 T.getOpenLocation(),
5131 T.getCloseLocation()),
5132 attrs, T.getCloseLocation());
Chris Lattner378c7e42008-12-18 07:27:21 +00005133 return;
5134 } else if (Tok.getKind() == tok::numeric_constant &&
5135 GetLookAheadToken(1).is(tok::r_square)) {
5136 // [4] is very common. Parse the numeric constant expression.
Richard Smith36f5cfe2012-03-09 08:00:36 +00005137 ExprResult ExprRes(Actions.ActOnNumericConstant(Tok, getCurScope()));
Chris Lattner378c7e42008-12-18 07:27:21 +00005138 ConsumeToken();
5139
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005140 T.consumeClose();
John McCall0b7e6782011-03-24 11:26:52 +00005141 ParsedAttributes attrs(AttrFactory);
Richard Smith4e24f0f2013-01-02 12:01:23 +00005142 MaybeParseCXX11Attributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +00005143
Chris Lattner378c7e42008-12-18 07:27:21 +00005144 // Remember that we parsed a array type, and remember its features.
Nikola Smiljanicebf0fa82013-01-11 08:33:05 +00005145 D.AddTypeInfo(DeclaratorChunk::getArray(0, false, false,
John McCall7f040a92010-12-24 02:08:15 +00005146 ExprRes.release(),
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005147 T.getOpenLocation(),
5148 T.getCloseLocation()),
5149 attrs, T.getCloseLocation());
Chris Lattner378c7e42008-12-18 07:27:21 +00005150 return;
5151 }
Mike Stump1eb44332009-09-09 15:08:12 +00005152
Reid Spencer5f016e22007-07-11 17:01:13 +00005153 // If valid, this location is the position where we read the 'static' keyword.
5154 SourceLocation StaticLoc;
Chris Lattner04d66662007-10-09 17:33:22 +00005155 if (Tok.is(tok::kw_static))
Reid Spencer5f016e22007-07-11 17:01:13 +00005156 StaticLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00005157
Reid Spencer5f016e22007-07-11 17:01:13 +00005158 // If there is a type-qualifier-list, read it now.
Chris Lattnera1fcbad2008-12-18 06:50:14 +00005159 // Type qualifiers in an array subscript are a C99 feature.
John McCall0b7e6782011-03-24 11:26:52 +00005160 DeclSpec DS(AttrFactory);
Chris Lattner5a69d1c2008-12-18 07:02:59 +00005161 ParseTypeQualifierListOpt(DS, false /*no attributes*/);
Mike Stump1eb44332009-09-09 15:08:12 +00005162
Reid Spencer5f016e22007-07-11 17:01:13 +00005163 // If we haven't already read 'static', check to see if there is one after the
5164 // type-qualifier-list.
Chris Lattner04d66662007-10-09 17:33:22 +00005165 if (!StaticLoc.isValid() && Tok.is(tok::kw_static))
Reid Spencer5f016e22007-07-11 17:01:13 +00005166 StaticLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00005167
Reid Spencer5f016e22007-07-11 17:01:13 +00005168 // Handle "direct-declarator [ type-qual-list[opt] * ]".
5169 bool isStar = false;
John McCall60d7b3a2010-08-24 06:29:42 +00005170 ExprResult NumElements;
Mike Stump1eb44332009-09-09 15:08:12 +00005171
Chris Lattner5dcc6ce2008-04-06 05:26:30 +00005172 // Handle the case where we have '[*]' as the array size. However, a leading
5173 // star could be the start of an expression, for example 'X[*p + 4]'. Verify
Sylvestre Ledrubed28ac2012-07-23 08:59:39 +00005174 // the token after the star is a ']'. Since stars in arrays are
Chris Lattner5dcc6ce2008-04-06 05:26:30 +00005175 // infrequent, use of lookahead is not costly here.
5176 if (Tok.is(tok::star) && GetLookAheadToken(1).is(tok::r_square)) {
Chris Lattnera711dd02008-04-06 05:27:21 +00005177 ConsumeToken(); // Eat the '*'.
Reid Spencer5f016e22007-07-11 17:01:13 +00005178
Chris Lattnera1fcbad2008-12-18 06:50:14 +00005179 if (StaticLoc.isValid()) {
Chris Lattner5dcc6ce2008-04-06 05:26:30 +00005180 Diag(StaticLoc, diag::err_unspecified_vla_size_with_static);
Chris Lattnera1fcbad2008-12-18 06:50:14 +00005181 StaticLoc = SourceLocation(); // Drop the static.
5182 }
Chris Lattner5dcc6ce2008-04-06 05:26:30 +00005183 isStar = true;
Chris Lattner04d66662007-10-09 17:33:22 +00005184 } else if (Tok.isNot(tok::r_square)) {
Chris Lattner378c7e42008-12-18 07:27:21 +00005185 // Note, in C89, this production uses the constant-expr production instead
5186 // of assignment-expr. The only difference is that assignment-expr allows
5187 // things like '=' and '*='. Sema rejects these in C89 mode because they
5188 // are not i-c-e's, so we don't need to distinguish between the two here.
Mike Stump1eb44332009-09-09 15:08:12 +00005189
Douglas Gregore0762c92009-06-19 23:52:42 +00005190 // Parse the constant-expression or assignment-expression now (depending
5191 // on dialect).
David Blaikie4e4d0842012-03-11 07:00:24 +00005192 if (getLangOpts().CPlusPlus) {
Douglas Gregore0762c92009-06-19 23:52:42 +00005193 NumElements = ParseConstantExpression();
Eli Friedman71b8fb52012-01-21 01:01:51 +00005194 } else {
5195 EnterExpressionEvaluationContext Unevaluated(Actions,
5196 Sema::ConstantEvaluated);
Douglas Gregore0762c92009-06-19 23:52:42 +00005197 NumElements = ParseAssignmentExpression();
Eli Friedman71b8fb52012-01-21 01:01:51 +00005198 }
Reid Spencer5f016e22007-07-11 17:01:13 +00005199 }
Mike Stump1eb44332009-09-09 15:08:12 +00005200
Reid Spencer5f016e22007-07-11 17:01:13 +00005201 // If there was an error parsing the assignment-expression, recover.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00005202 if (NumElements.isInvalid()) {
Chris Lattner5cb10d32009-04-24 22:30:50 +00005203 D.setInvalidType(true);
Reid Spencer5f016e22007-07-11 17:01:13 +00005204 // If the expression was invalid, skip it.
5205 SkipUntil(tok::r_square);
5206 return;
5207 }
Sebastian Redlab197ba2009-02-09 18:23:29 +00005208
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005209 T.consumeClose();
Sebastian Redlab197ba2009-02-09 18:23:29 +00005210
John McCall0b7e6782011-03-24 11:26:52 +00005211 ParsedAttributes attrs(AttrFactory);
Richard Smith4e24f0f2013-01-02 12:01:23 +00005212 MaybeParseCXX11Attributes(attrs);
Sean Huntbbd37c62009-11-21 08:43:09 +00005213
Chris Lattner378c7e42008-12-18 07:27:21 +00005214 // Remember that we parsed a array type, and remember its features.
John McCall0b7e6782011-03-24 11:26:52 +00005215 D.AddTypeInfo(DeclaratorChunk::getArray(DS.getTypeQualifiers(),
Reid Spencer5f016e22007-07-11 17:01:13 +00005216 StaticLoc.isValid(), isStar,
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00005217 NumElements.release(),
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005218 T.getOpenLocation(),
5219 T.getCloseLocation()),
5220 attrs, T.getCloseLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00005221}
5222
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00005223/// [GNU] typeof-specifier:
5224/// typeof ( expressions )
5225/// typeof ( type-name )
5226/// [GNU/C++] typeof unary-expression
Steve Naroffd1861fd2007-07-31 12:34:36 +00005227///
5228void Parser::ParseTypeofSpecifier(DeclSpec &DS) {
Chris Lattner04d66662007-10-09 17:33:22 +00005229 assert(Tok.is(tok::kw_typeof) && "Not a typeof specifier");
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00005230 Token OpTok = Tok;
Steve Naroffd1861fd2007-07-31 12:34:36 +00005231 SourceLocation StartLoc = ConsumeToken();
5232
John McCallcfb708c2010-01-13 20:03:27 +00005233 const bool hasParens = Tok.is(tok::l_paren);
5234
Eli Friedman80bfa3d2012-09-26 04:34:21 +00005235 EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated,
5236 Sema::ReuseLambdaContextDecl);
Eli Friedman71b8fb52012-01-21 01:01:51 +00005237
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00005238 bool isCastExpr;
John McCallb3d87482010-08-24 05:47:05 +00005239 ParsedType CastTy;
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00005240 SourceRange CastRange;
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00005241 ExprResult Operand = ParseExprAfterUnaryExprOrTypeTrait(OpTok, isCastExpr,
5242 CastTy, CastRange);
John McCallcfb708c2010-01-13 20:03:27 +00005243 if (hasParens)
5244 DS.setTypeofParensRange(CastRange);
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00005245
5246 if (CastRange.getEnd().isInvalid())
Argyrios Kyrtzidis64096252009-05-22 10:22:18 +00005247 // FIXME: Not accurate, the range gets one token more than it should.
5248 DS.SetRangeEnd(Tok.getLocation());
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00005249 else
5250 DS.SetRangeEnd(CastRange.getEnd());
Mike Stump1eb44332009-09-09 15:08:12 +00005251
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00005252 if (isCastExpr) {
5253 if (!CastTy) {
5254 DS.SetTypeSpecError();
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00005255 return;
Douglas Gregor809070a2009-02-18 17:45:20 +00005256 }
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00005257
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00005258 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +00005259 unsigned DiagID;
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00005260 // Check for duplicate type specifiers (e.g. "int typeof(int)").
5261 if (DS.SetTypeSpecType(DeclSpec::TST_typeofType, StartLoc, PrevSpec,
John McCallfec54012009-08-03 20:12:06 +00005262 DiagID, CastTy))
5263 Diag(StartLoc, DiagID) << PrevSpec;
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00005264 return;
Argyrios Kyrtzidis64096252009-05-22 10:22:18 +00005265 }
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00005266
Argyrios Kyrtzidis64096252009-05-22 10:22:18 +00005267 // If we get here, the operand to the typeof was an expresion.
5268 if (Operand.isInvalid()) {
5269 DS.SetTypeSpecError();
Steve Naroff9dfa7b42007-08-02 02:53:48 +00005270 return;
Steve Naroffd1861fd2007-07-31 12:34:36 +00005271 }
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00005272
Eli Friedman71b8fb52012-01-21 01:01:51 +00005273 // We might need to transform the operand if it is potentially evaluated.
5274 Operand = Actions.HandleExprEvaluationContextForTypeof(Operand.get());
5275 if (Operand.isInvalid()) {
5276 DS.SetTypeSpecError();
5277 return;
5278 }
5279
Argyrios Kyrtzidis64096252009-05-22 10:22:18 +00005280 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +00005281 unsigned DiagID;
Argyrios Kyrtzidis64096252009-05-22 10:22:18 +00005282 // Check for duplicate type specifiers (e.g. "int typeof(int)").
5283 if (DS.SetTypeSpecType(DeclSpec::TST_typeofExpr, StartLoc, PrevSpec,
John McCallb3d87482010-08-24 05:47:05 +00005284 DiagID, Operand.get()))
John McCallfec54012009-08-03 20:12:06 +00005285 Diag(StartLoc, DiagID) << PrevSpec;
Steve Naroffd1861fd2007-07-31 12:34:36 +00005286}
Chris Lattner1b492422010-02-28 18:33:55 +00005287
Benjamin Kramerffbe9b92011-12-23 17:00:35 +00005288/// [C11] atomic-specifier:
Eli Friedmanb001de72011-10-06 23:00:33 +00005289/// _Atomic ( type-name )
5290///
5291void Parser::ParseAtomicSpecifier(DeclSpec &DS) {
5292 assert(Tok.is(tok::kw__Atomic) && "Not an atomic specifier");
5293
5294 SourceLocation StartLoc = ConsumeToken();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005295 BalancedDelimiterTracker T(*this, tok::l_paren);
5296 if (T.expectAndConsume(diag::err_expected_lparen_after, "_Atomic")) {
Eli Friedmanb001de72011-10-06 23:00:33 +00005297 SkipUntil(tok::r_paren);
5298 return;
5299 }
5300
5301 TypeResult Result = ParseTypeName();
5302 if (Result.isInvalid()) {
5303 SkipUntil(tok::r_paren);
5304 return;
5305 }
5306
5307 // Match the ')'
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005308 T.consumeClose();
Eli Friedmanb001de72011-10-06 23:00:33 +00005309
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005310 if (T.getCloseLocation().isInvalid())
Eli Friedmanb001de72011-10-06 23:00:33 +00005311 return;
5312
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005313 DS.setTypeofParensRange(T.getRange());
5314 DS.SetRangeEnd(T.getCloseLocation());
Eli Friedmanb001de72011-10-06 23:00:33 +00005315
5316 const char *PrevSpec = 0;
5317 unsigned DiagID;
5318 if (DS.SetTypeSpecType(DeclSpec::TST_atomic, StartLoc, PrevSpec,
5319 DiagID, Result.release()))
5320 Diag(StartLoc, DiagID) << PrevSpec;
5321}
5322
Chris Lattner1b492422010-02-28 18:33:55 +00005323
5324/// TryAltiVecVectorTokenOutOfLine - Out of line body that should only be called
5325/// from TryAltiVecVectorToken.
5326bool Parser::TryAltiVecVectorTokenOutOfLine() {
5327 Token Next = NextToken();
5328 switch (Next.getKind()) {
5329 default: return false;
5330 case tok::kw_short:
5331 case tok::kw_long:
5332 case tok::kw_signed:
5333 case tok::kw_unsigned:
5334 case tok::kw_void:
5335 case tok::kw_char:
5336 case tok::kw_int:
5337 case tok::kw_float:
5338 case tok::kw_double:
5339 case tok::kw_bool:
5340 case tok::kw___pixel:
5341 Tok.setKind(tok::kw___vector);
5342 return true;
5343 case tok::identifier:
5344 if (Next.getIdentifierInfo() == Ident_pixel) {
5345 Tok.setKind(tok::kw___vector);
5346 return true;
5347 }
5348 return false;
5349 }
5350}
5351
5352bool Parser::TryAltiVecTokenOutOfLine(DeclSpec &DS, SourceLocation Loc,
5353 const char *&PrevSpec, unsigned &DiagID,
5354 bool &isInvalid) {
5355 if (Tok.getIdentifierInfo() == Ident_vector) {
5356 Token Next = NextToken();
5357 switch (Next.getKind()) {
5358 case tok::kw_short:
5359 case tok::kw_long:
5360 case tok::kw_signed:
5361 case tok::kw_unsigned:
5362 case tok::kw_void:
5363 case tok::kw_char:
5364 case tok::kw_int:
5365 case tok::kw_float:
5366 case tok::kw_double:
5367 case tok::kw_bool:
5368 case tok::kw___pixel:
5369 isInvalid = DS.SetTypeAltiVecVector(true, Loc, PrevSpec, DiagID);
5370 return true;
5371 case tok::identifier:
5372 if (Next.getIdentifierInfo() == Ident_pixel) {
5373 isInvalid = DS.SetTypeAltiVecVector(true, Loc, PrevSpec, DiagID);
5374 return true;
5375 }
5376 break;
5377 default:
5378 break;
5379 }
Douglas Gregora8f031f2010-06-16 15:28:57 +00005380 } else if ((Tok.getIdentifierInfo() == Ident_pixel) &&
Chris Lattner1b492422010-02-28 18:33:55 +00005381 DS.isTypeAltiVecVector()) {
5382 isInvalid = DS.SetTypeAltiVecPixel(true, Loc, PrevSpec, DiagID);
5383 return true;
5384 }
5385 return false;
5386}