blob: c5904933133349cb35ee96b493cacf7fe80f0e60 [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"
Larisse Voufo7c64ef02013-06-21 00:08:46 +000016#include "clang/AST/DeclTemplate.h"
Benjamin Kramer9852f582012-12-01 16:35:25 +000017#include "clang/Basic/AddressSpaces.h"
Jordan Rose3f6f51e2013-02-08 22:30:41 +000018#include "clang/Basic/CharInfo.h"
Peter Collingbourne207f4d82011-03-18 22:38:29 +000019#include "clang/Basic/OpenCL.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000020#include "clang/Parse/ParseDiagnostic.h"
Kaelyn Uhrainaec2ac62012-04-26 23:36:17 +000021#include "clang/Sema/Lookup.h"
John McCall19510852010-08-20 18:27:03 +000022#include "clang/Sema/ParsedTemplate.h"
John McCallf312b1e2010-08-26 23:41:50 +000023#include "clang/Sema/PrettyDeclStackTrace.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000024#include "clang/Sema/Scope.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000025#include "llvm/ADT/SmallSet.h"
Benjamin Kramer8fe83e12012-02-04 13:45:25 +000026#include "llvm/ADT/SmallString.h"
Caitlin Sadowskib51e0312011-08-09 17:59:31 +000027#include "llvm/ADT/StringSwitch.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000028using namespace clang;
29
30//===----------------------------------------------------------------------===//
31// C99 6.7: Declarations.
32//===----------------------------------------------------------------------===//
33
34/// ParseTypeName
35/// type-name: [C99 6.7.6]
36/// specifier-qualifier-list abstract-declarator[opt]
Sebastian Redl4c5d3202008-11-21 19:14:01 +000037///
38/// Called type-id in C++.
Douglas Gregor683a81f2011-01-31 16:09:46 +000039TypeResult Parser::ParseTypeName(SourceRange *Range,
John McCallf85e1932011-06-15 23:02:42 +000040 Declarator::TheContext Context,
Richard Smithc89edf52011-07-01 19:46:12 +000041 AccessSpecifier AS,
Richard Smith6b3d3e52013-02-20 19:22:51 +000042 Decl **OwnedType,
43 ParsedAttributes *Attrs) {
Richard Smith6d96d3a2012-03-15 01:02:11 +000044 DeclSpecContext DSC = getDeclSpecContextFromDeclaratorContext(Context);
Richard Smitha971d242012-05-09 20:55:26 +000045 if (DSC == DSC_normal)
46 DSC = DSC_type_specifier;
Richard Smith7796eb52012-03-12 08:56:40 +000047
Reid Spencer5f016e22007-07-11 17:01:13 +000048 // Parse the common declaration-specifiers piece.
John McCall0b7e6782011-03-24 11:26:52 +000049 DeclSpec DS(AttrFactory);
Richard Smith6b3d3e52013-02-20 19:22:51 +000050 if (Attrs)
51 DS.addAttributes(Attrs->getList());
Richard Smith7796eb52012-03-12 08:56:40 +000052 ParseSpecifierQualifierList(DS, AS, DSC);
Richard Smithc89edf52011-07-01 19:46:12 +000053 if (OwnedType)
54 *OwnedType = DS.isTypeSpecOwned() ? DS.getRepAsDecl() : 0;
Sebastian Redlef65f062009-05-29 18:02:33 +000055
Reid Spencer5f016e22007-07-11 17:01:13 +000056 // Parse the abstract-declarator, if present.
Douglas Gregor683a81f2011-01-31 16:09:46 +000057 Declarator DeclaratorInfo(DS, Context);
Reid Spencer5f016e22007-07-11 17:01:13 +000058 ParseDeclarator(DeclaratorInfo);
Sebastian Redlef65f062009-05-29 18:02:33 +000059 if (Range)
60 *Range = DeclaratorInfo.getSourceRange();
61
Chris Lattnereaaebc72009-04-25 08:06:05 +000062 if (DeclaratorInfo.isInvalidType())
Douglas Gregor809070a2009-02-18 17:45:20 +000063 return true;
64
Douglas Gregor23c94db2010-07-02 17:43:08 +000065 return Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
Reid Spencer5f016e22007-07-11 17:01:13 +000066}
67
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +000068
69/// isAttributeLateParsed - Return true if the attribute has arguments that
70/// require late parsing.
71static bool isAttributeLateParsed(const IdentifierInfo &II) {
72 return llvm::StringSwitch<bool>(II.getName())
73#include "clang/Parse/AttrLateParsed.inc"
74 .Default(false);
75}
76
Sean Huntbbd37c62009-11-21 08:43:09 +000077/// ParseGNUAttributes - Parse a non-empty attributes list.
Reid Spencer5f016e22007-07-11 17:01:13 +000078///
79/// [GNU] attributes:
80/// attribute
81/// attributes attribute
82///
83/// [GNU] attribute:
84/// '__attribute__' '(' '(' attribute-list ')' ')'
85///
86/// [GNU] attribute-list:
87/// attrib
88/// attribute_list ',' attrib
89///
90/// [GNU] attrib:
91/// empty
92/// attrib-name
93/// attrib-name '(' identifier ')'
94/// attrib-name '(' identifier ',' nonempty-expr-list ')'
95/// attrib-name '(' argument-expression-list [C99 6.5.2] ')'
96///
97/// [GNU] attrib-name:
98/// identifier
99/// typespec
100/// typequal
101/// storageclass
Mike Stump1eb44332009-09-09 15:08:12 +0000102///
Richard Smith4c6c4112013-09-03 18:57:36 +0000103/// Whether an attribute takes an 'identifier' is determined by the
104/// attrib-name. GCC's behavior here is not worth imitating:
Reid Spencer5f016e22007-07-11 17:01:13 +0000105///
Richard Smith4c6c4112013-09-03 18:57:36 +0000106/// * In C mode, if the attribute argument list starts with an identifier
107/// followed by a ',' or an ')', and the identifier doesn't resolve to
108/// a type, it is parsed as an identifier. If the attribute actually
109/// wanted an expression, it's out of luck (but it turns out that no
110/// attributes work that way, because C constant expressions are very
111/// limited).
112/// * In C++ mode, if the attribute argument list starts with an identifier,
113/// and the attribute *wants* an identifier, it is parsed as an identifier.
114/// At block scope, any additional tokens between the identifier and the
115/// ',' or ')' are ignored, otherwise they produce a parse error.
Richard Smithfe0a0fb2011-10-17 21:20:17 +0000116///
Richard Smith4c6c4112013-09-03 18:57:36 +0000117/// We follow the C++ model, but don't allow junk after the identifier.
John McCall7f040a92010-12-24 02:08:15 +0000118void Parser::ParseGNUAttributes(ParsedAttributes &attrs,
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000119 SourceLocation *endLoc,
120 LateParsedAttrList *LateAttrs) {
Sean Huntbbd37c62009-11-21 08:43:09 +0000121 assert(Tok.is(tok::kw___attribute) && "Not a GNU attribute list!");
Mike Stump1eb44332009-09-09 15:08:12 +0000122
Chris Lattner04d66662007-10-09 17:33:22 +0000123 while (Tok.is(tok::kw___attribute)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000124 ConsumeToken();
125 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after,
126 "attribute")) {
127 SkipUntil(tok::r_paren, true); // skip until ) or ;
John McCall7f040a92010-12-24 02:08:15 +0000128 return;
Reid Spencer5f016e22007-07-11 17:01:13 +0000129 }
130 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after, "(")) {
131 SkipUntil(tok::r_paren, true); // skip until ) or ;
John McCall7f040a92010-12-24 02:08:15 +0000132 return;
Reid Spencer5f016e22007-07-11 17:01:13 +0000133 }
134 // Parse the attribute-list. e.g. __attribute__(( weak, alias("__f") ))
Chris Lattner04d66662007-10-09 17:33:22 +0000135 while (Tok.is(tok::identifier) || isDeclarationSpecifier() ||
136 Tok.is(tok::comma)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000137 if (Tok.is(tok::comma)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000138 // allows for empty/non-empty attributes. ((__vector_size__(16),,,,))
139 ConsumeToken();
140 continue;
141 }
142 // we have an identifier or declaration specifier (const, int, etc.)
143 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
144 SourceLocation AttrNameLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000145
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000146 if (Tok.is(tok::l_paren)) {
147 // handle "parameterized" attributes
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +0000148 if (LateAttrs && isAttributeLateParsed(*AttrName)) {
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000149 LateParsedAttribute *LA =
150 new LateParsedAttribute(this, *AttrName, AttrNameLoc);
151 LateAttrs->push_back(LA);
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +0000152
Bill Wendlingad017fa2012-12-20 19:22:21 +0000153 // Attributes in a class are parsed at the end of the class, along
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +0000154 // with other late-parsed declarations.
DeLesley Hutchins161db022012-11-02 21:44:32 +0000155 if (!ClassStack.empty() && !LateAttrs->parseSoon())
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +0000156 getCurrentClass().LateParsedDeclarations.push_back(LA);
Mike Stump1eb44332009-09-09 15:08:12 +0000157
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000158 // consume everything up to and including the matching right parens
159 ConsumeAndStoreUntil(tok::r_paren, LA->Toks, true, false);
Mike Stump1eb44332009-09-09 15:08:12 +0000160
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000161 Token Eof;
162 Eof.startToken();
163 Eof.setLocation(Tok.getLocation());
164 LA->Toks.push_back(Eof);
165 } else {
Michael Han6880f492012-10-03 01:56:22 +0000166 ParseGNUAttributeArgs(AttrName, AttrNameLoc, attrs, endLoc,
Michael Han45bed132012-10-04 16:42:52 +0000167 0, SourceLocation(), AttributeList::AS_GNU);
Reid Spencer5f016e22007-07-11 17:01:13 +0000168 }
169 } else {
Aaron Ballman624421f2013-08-31 01:11:41 +0000170 attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0, 0,
171 AttributeList::AS_GNU);
Reid Spencer5f016e22007-07-11 17:01:13 +0000172 }
173 }
174 if (ExpectAndConsume(tok::r_paren, diag::err_expected_rparen))
Richard Smithd92aa2d2013-10-24 01:07:54 +0000175 SkipUntil(tok::r_paren);
Sean Huntbbd37c62009-11-21 08:43:09 +0000176 SourceLocation Loc = Tok.getLocation();
Richard Smithd92aa2d2013-10-24 01:07:54 +0000177 if (ExpectAndConsume(tok::r_paren, diag::err_expected_rparen))
178 SkipUntil(tok::r_paren);
John McCall7f040a92010-12-24 02:08:15 +0000179 if (endLoc)
180 *endLoc = Loc;
Reid Spencer5f016e22007-07-11 17:01:13 +0000181 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000182}
183
Aaron Ballman9feedb82013-11-04 12:55:56 +0000184/// \brief Normalizes an attribute name by dropping prefixed and suffixed __.
185static StringRef normalizeAttrName(StringRef Name) {
Richard Smithd92aa2d2013-10-24 01:07:54 +0000186 if (Name.size() >= 4 && Name.startswith("__") && Name.endswith("__"))
187 Name = Name.drop_front(2).drop_back(2);
Aaron Ballman9feedb82013-11-04 12:55:56 +0000188 return Name;
189}
190
191/// \brief Determine whether the given attribute has an identifier argument.
192static bool attributeHasIdentifierArg(const IdentifierInfo &II) {
193 return llvm::StringSwitch<bool>(normalizeAttrName(II.getName()))
Richard Smithd92aa2d2013-10-24 01:07:54 +0000194#include "clang/Parse/AttrIdentifierArg.inc"
Douglas Gregor92eb7d82013-05-02 23:25:32 +0000195 .Default(false);
196}
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000197
Aaron Ballman9feedb82013-11-04 12:55:56 +0000198/// \brief Determine whether the given attribute parses a type argument.
199static bool attributeIsTypeArgAttr(const IdentifierInfo &II) {
200 return llvm::StringSwitch<bool>(normalizeAttrName(II.getName()))
201#include "clang/Parse/AttrTypeArg.inc"
202 .Default(false);
203}
204
Richard Smith8edabd92013-09-03 18:01:40 +0000205IdentifierLoc *Parser::ParseIdentifierLoc() {
206 assert(Tok.is(tok::identifier) && "expected an identifier");
207 IdentifierLoc *IL = IdentifierLoc::create(Actions.Context,
208 Tok.getLocation(),
209 Tok.getIdentifierInfo());
210 ConsumeToken();
211 return IL;
212}
213
Richard Smithd386fef2013-10-31 01:56:18 +0000214void Parser::ParseAttributeWithTypeArg(IdentifierInfo &AttrName,
215 SourceLocation AttrNameLoc,
216 ParsedAttributes &Attrs,
217 SourceLocation *EndLoc) {
218 BalancedDelimiterTracker Parens(*this, tok::l_paren);
219 Parens.consumeOpen();
220
221 TypeResult T;
222 if (Tok.isNot(tok::r_paren))
223 T = ParseTypeName();
224
225 if (Parens.consumeClose())
226 return;
227
228 if (T.isInvalid())
229 return;
230
231 if (T.isUsable())
232 Attrs.addNewTypeAttr(&AttrName,
233 SourceRange(AttrNameLoc, Parens.getCloseLocation()), 0,
234 AttrNameLoc, T.get(), AttributeList::AS_GNU);
235 else
236 Attrs.addNew(&AttrName, SourceRange(AttrNameLoc, Parens.getCloseLocation()),
237 0, AttrNameLoc, 0, 0, AttributeList::AS_GNU);
238}
239
Michael Han6880f492012-10-03 01:56:22 +0000240/// Parse the arguments to a parameterized GNU attribute or
241/// a C++11 attribute in "gnu" namespace.
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000242void Parser::ParseGNUAttributeArgs(IdentifierInfo *AttrName,
243 SourceLocation AttrNameLoc,
244 ParsedAttributes &Attrs,
Michael Han6880f492012-10-03 01:56:22 +0000245 SourceLocation *EndLoc,
246 IdentifierInfo *ScopeName,
247 SourceLocation ScopeLoc,
248 AttributeList::Syntax Syntax) {
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000249
250 assert(Tok.is(tok::l_paren) && "Attribute arg list not starting with '('");
251
Richard Smithd92aa2d2013-10-24 01:07:54 +0000252 AttributeList::Kind AttrKind =
Richard Smithd386fef2013-10-31 01:56:18 +0000253 AttributeList::getKind(AttrName, ScopeName, Syntax);
Richard Smithd92aa2d2013-10-24 01:07:54 +0000254
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000255 // Availability attributes have their own grammar.
Richard Smithd386fef2013-10-31 01:56:18 +0000256 // FIXME: All these cases fail to pass in the syntax and scope, and might be
257 // written as C++11 gnu:: attributes.
Richard Smithd92aa2d2013-10-24 01:07:54 +0000258 if (AttrKind == AttributeList::AT_Availability) {
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000259 ParseAvailabilityAttribute(*AttrName, AttrNameLoc, Attrs, EndLoc);
260 return;
261 }
Richard Smithd386fef2013-10-31 01:56:18 +0000262 // Thread safety attributes are parsed in an unevaluated context.
263 // FIXME: Share the bulk of the parsing code here and just pull out
264 // the unevaluated context.
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000265 if (IsThreadSafetyAttribute(AttrName->getName())) {
266 ParseThreadSafetyAttribute(*AttrName, AttrNameLoc, Attrs, EndLoc);
267 return;
268 }
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +0000269 // Type safety attributes have their own grammar.
Richard Smithd92aa2d2013-10-24 01:07:54 +0000270 if (AttrKind == AttributeList::AT_TypeTagForDatatype) {
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +0000271 ParseTypeTagForDatatypeAttribute(*AttrName, AttrNameLoc, Attrs, EndLoc);
272 return;
273 }
Aaron Ballman9feedb82013-11-04 12:55:56 +0000274 // Some attributes expect solely a type parameter.
275 if (attributeIsTypeArgAttr(*AttrName)) {
Richard Smithd386fef2013-10-31 01:56:18 +0000276 ParseAttributeWithTypeArg(*AttrName, AttrNameLoc, Attrs, EndLoc);
277 return;
278 }
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000279
Richard Smithd92aa2d2013-10-24 01:07:54 +0000280 // Ignore the left paren location for now.
281 ConsumeParen();
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000282
Aaron Ballman624421f2013-08-31 01:11:41 +0000283 ArgsVector ArgExprs;
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000284
Richard Smithd386fef2013-10-31 01:56:18 +0000285 if (Tok.is(tok::identifier)) {
Richard Smithd92aa2d2013-10-24 01:07:54 +0000286 // If this attribute wants an 'identifier' argument, make it so.
Richard Smithd386fef2013-10-31 01:56:18 +0000287 bool IsIdentifierArg = attributeHasIdentifierArg(*AttrName);
Richard Smithd92aa2d2013-10-24 01:07:54 +0000288
289 // If we don't know how to parse this attribute, but this is the only
290 // token in this argument, assume it's meant to be an identifier.
291 if (AttrKind == AttributeList::UnknownAttribute) {
292 const Token &Next = NextToken();
Richard Smithd386fef2013-10-31 01:56:18 +0000293 IsIdentifierArg = Next.is(tok::r_paren) || Next.is(tok::comma);
Richard Smithd92aa2d2013-10-24 01:07:54 +0000294 }
Richard Smithfe0a0fb2011-10-17 21:20:17 +0000295
Richard Smithd386fef2013-10-31 01:56:18 +0000296 if (IsIdentifierArg)
297 ArgExprs.push_back(ParseIdentifierLoc());
Richard Smithfe0a0fb2011-10-17 21:20:17 +0000298 }
299
Richard Smithd386fef2013-10-31 01:56:18 +0000300 if (!ArgExprs.empty() ? Tok.is(tok::comma) : Tok.isNot(tok::r_paren)) {
Richard Smithfe0a0fb2011-10-17 21:20:17 +0000301 // Eat the comma.
Aaron Ballman624421f2013-08-31 01:11:41 +0000302 if (!ArgExprs.empty())
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000303 ConsumeToken();
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000304
Richard Smithfe0a0fb2011-10-17 21:20:17 +0000305 // Parse the non-empty comma-separated list of expressions.
306 while (1) {
307 ExprResult ArgExpr(ParseAssignmentExpression());
308 if (ArgExpr.isInvalid()) {
309 SkipUntil(tok::r_paren);
310 return;
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000311 }
Richard Smithfe0a0fb2011-10-17 21:20:17 +0000312 ArgExprs.push_back(ArgExpr.release());
313 if (Tok.isNot(tok::comma))
314 break;
315 ConsumeToken(); // Eat the comma, move to the next argument
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000316 }
Fariborz Jahanian7a81e412011-10-18 17:11:10 +0000317 }
Richard Smithfe0a0fb2011-10-17 21:20:17 +0000318
319 SourceLocation RParen = Tok.getLocation();
Richard Smithd386fef2013-10-31 01:56:18 +0000320 if (!ExpectAndConsume(tok::r_paren, diag::err_expected_rparen)) {
Michael Han45bed132012-10-04 16:42:52 +0000321 SourceLocation AttrLoc = ScopeLoc.isValid() ? ScopeLoc : AttrNameLoc;
Richard Smithd386fef2013-10-31 01:56:18 +0000322 Attrs.addNew(AttrName, SourceRange(AttrLoc, RParen), ScopeName, ScopeLoc,
323 ArgExprs.data(), ArgExprs.size(), Syntax);
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000324 }
325}
326
Chad Rosier8decdee2012-06-26 22:30:43 +0000327/// \brief Parses a single argument for a declspec, including the
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000328/// surrounding parens.
Chad Rosier8decdee2012-06-26 22:30:43 +0000329void Parser::ParseMicrosoftDeclSpecWithSingleArg(IdentifierInfo *AttrName,
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000330 SourceLocation AttrNameLoc,
331 ParsedAttributes &Attrs)
332{
333 BalancedDelimiterTracker T(*this, tok::l_paren);
Chad Rosier8decdee2012-06-26 22:30:43 +0000334 if (T.expectAndConsume(diag::err_expected_lparen_after,
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000335 AttrName->getNameStart(), tok::r_paren))
336 return;
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000337
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000338 ExprResult ArgExpr(ParseConstantExpression());
339 if (ArgExpr.isInvalid()) {
340 T.skipToEnd();
341 return;
342 }
Aaron Ballman624421f2013-08-31 01:11:41 +0000343 ArgsUnion ExprList = ArgExpr.take();
344 Attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, &ExprList, 1,
345 AttributeList::AS_Declspec);
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000346
347 T.consumeClose();
348}
349
Chad Rosier8decdee2012-06-26 22:30:43 +0000350/// \brief Determines whether a declspec is a "simple" one requiring no
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000351/// arguments.
352bool Parser::IsSimpleMicrosoftDeclSpec(IdentifierInfo *Ident) {
353 return llvm::StringSwitch<bool>(Ident->getName())
354 .Case("dllimport", true)
355 .Case("dllexport", true)
356 .Case("noreturn", true)
357 .Case("nothrow", true)
358 .Case("noinline", true)
359 .Case("naked", true)
360 .Case("appdomain", true)
361 .Case("process", true)
362 .Case("jitintrinsic", true)
363 .Case("noalias", true)
364 .Case("restrict", true)
365 .Case("novtable", true)
366 .Case("selectany", true)
367 .Case("thread", true)
Aaron Ballman3ce0de62013-05-04 16:58:37 +0000368 .Case("safebuffers", true )
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000369 .Default(false);
370}
371
Chad Rosier8decdee2012-06-26 22:30:43 +0000372/// \brief Attempts to parse a declspec which is not simple (one that takes
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000373/// parameters). Will return false if we properly handled the declspec, or
374/// true if it is an unknown declspec.
Chad Rosier8decdee2012-06-26 22:30:43 +0000375void Parser::ParseComplexMicrosoftDeclSpec(IdentifierInfo *Ident,
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000376 SourceLocation Loc,
377 ParsedAttributes &Attrs) {
378 // Try to handle the easy case first -- these declspecs all take a single
379 // parameter as their argument.
380 if (llvm::StringSwitch<bool>(Ident->getName())
381 .Case("uuid", true)
382 .Case("align", true)
383 .Case("allocate", true)
384 .Default(false)) {
385 ParseMicrosoftDeclSpecWithSingleArg(Ident, Loc, Attrs);
386 } else if (Ident->getName() == "deprecated") {
Chad Rosier8decdee2012-06-26 22:30:43 +0000387 // The deprecated declspec has an optional single argument, so we will
388 // check for a l-paren to decide whether we should parse an argument or
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000389 // not.
390 if (Tok.getKind() == tok::l_paren)
391 ParseMicrosoftDeclSpecWithSingleArg(Ident, Loc, Attrs);
392 else
Aaron Ballman624421f2013-08-31 01:11:41 +0000393 Attrs.addNew(Ident, Loc, 0, Loc, 0, 0, AttributeList::AS_Declspec);
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000394 } else if (Ident->getName() == "property") {
395 // The property declspec is more complex in that it can take one or two
Chad Rosier8decdee2012-06-26 22:30:43 +0000396 // assignment expressions as a parameter, but the lhs of the assignment
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000397 // must be named get or put.
John McCall76da55d2013-04-16 07:28:30 +0000398 if (Tok.isNot(tok::l_paren)) {
399 Diag(Tok.getLocation(), diag::err_expected_lparen_after)
400 << Ident->getNameStart();
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000401 return;
John McCall76da55d2013-04-16 07:28:30 +0000402 }
403 BalancedDelimiterTracker T(*this, tok::l_paren);
404 T.expectAndConsume(diag::err_expected_lparen_after,
405 Ident->getNameStart(), tok::r_paren);
406
407 enum AccessorKind {
408 AK_Invalid = -1,
409 AK_Put = 0, AK_Get = 1 // indices into AccessorNames
410 };
411 IdentifierInfo *AccessorNames[] = { 0, 0 };
412 bool HasInvalidAccessor = false;
413
414 // Parse the accessor specifications.
415 while (true) {
416 // Stop if this doesn't look like an accessor spec.
417 if (!Tok.is(tok::identifier)) {
418 // If the user wrote a completely empty list, use a special diagnostic.
419 if (Tok.is(tok::r_paren) && !HasInvalidAccessor &&
420 AccessorNames[AK_Put] == 0 && AccessorNames[AK_Get] == 0) {
421 Diag(Loc, diag::err_ms_property_no_getter_or_putter);
422 break;
423 }
424
425 Diag(Tok.getLocation(), diag::err_ms_property_unknown_accessor);
426 break;
427 }
428
429 AccessorKind Kind;
430 SourceLocation KindLoc = Tok.getLocation();
431 StringRef KindStr = Tok.getIdentifierInfo()->getName();
432 if (KindStr == "get") {
433 Kind = AK_Get;
434 } else if (KindStr == "put") {
435 Kind = AK_Put;
436
437 // Recover from the common mistake of using 'set' instead of 'put'.
438 } else if (KindStr == "set") {
439 Diag(KindLoc, diag::err_ms_property_has_set_accessor)
440 << FixItHint::CreateReplacement(KindLoc, "put");
441 Kind = AK_Put;
442
443 // Handle the mistake of forgetting the accessor kind by skipping
444 // this accessor.
445 } else if (NextToken().is(tok::comma) || NextToken().is(tok::r_paren)) {
446 Diag(KindLoc, diag::err_ms_property_missing_accessor_kind);
447 ConsumeToken();
448 HasInvalidAccessor = true;
449 goto next_property_accessor;
450
451 // Otherwise, complain about the unknown accessor kind.
452 } else {
453 Diag(KindLoc, diag::err_ms_property_unknown_accessor);
454 HasInvalidAccessor = true;
455 Kind = AK_Invalid;
456
457 // Try to keep parsing unless it doesn't look like an accessor spec.
458 if (!NextToken().is(tok::equal)) break;
459 }
460
461 // Consume the identifier.
462 ConsumeToken();
463
464 // Consume the '='.
465 if (Tok.is(tok::equal)) {
466 ConsumeToken();
467 } else {
468 Diag(Tok.getLocation(), diag::err_ms_property_expected_equal)
469 << KindStr;
470 break;
471 }
472
473 // Expect the method name.
474 if (!Tok.is(tok::identifier)) {
475 Diag(Tok.getLocation(), diag::err_ms_property_expected_accessor_name);
476 break;
477 }
478
479 if (Kind == AK_Invalid) {
480 // Just drop invalid accessors.
481 } else if (AccessorNames[Kind] != NULL) {
482 // Complain about the repeated accessor, ignore it, and keep parsing.
483 Diag(KindLoc, diag::err_ms_property_duplicate_accessor) << KindStr;
484 } else {
485 AccessorNames[Kind] = Tok.getIdentifierInfo();
486 }
487 ConsumeToken();
488
489 next_property_accessor:
490 // Keep processing accessors until we run out.
491 if (Tok.is(tok::comma)) {
492 ConsumeAnyToken();
493 continue;
494
495 // If we run into the ')', stop without consuming it.
496 } else if (Tok.is(tok::r_paren)) {
497 break;
498 } else {
499 Diag(Tok.getLocation(), diag::err_ms_property_expected_comma_or_rparen);
500 break;
501 }
502 }
503
504 // Only add the property attribute if it was well-formed.
505 if (!HasInvalidAccessor) {
Aaron Ballman624421f2013-08-31 01:11:41 +0000506 Attrs.addNewPropertyAttr(Ident, Loc, 0, SourceLocation(),
John McCall76da55d2013-04-16 07:28:30 +0000507 AccessorNames[AK_Get], AccessorNames[AK_Put],
508 AttributeList::AS_Declspec);
509 }
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000510 T.skipToEnd();
511 } else {
512 // We don't recognize this as a valid declspec, but instead of creating the
513 // attribute and allowing sema to warn about it, we will warn here instead.
514 // This is because some attributes have multiple spellings, but we need to
515 // disallow that for declspecs (such as align vs aligned). If we made the
Chad Rosier8decdee2012-06-26 22:30:43 +0000516 // attribute, we'd have to split the valid declspec spelling logic into
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000517 // both locations.
518 Diag(Loc, diag::warn_ms_declspec_unknown) << Ident;
519
520 // If there's an open paren, we should eat the open and close parens under
521 // the assumption that this unknown declspec has parameters.
522 BalancedDelimiterTracker T(*this, tok::l_paren);
523 if (!T.consumeOpen())
524 T.skipToEnd();
525 }
526}
527
Eli Friedmana23b4852009-06-08 07:21:15 +0000528/// [MS] decl-specifier:
529/// __declspec ( extended-decl-modifier-seq )
530///
531/// [MS] extended-decl-modifier-seq:
532/// extended-decl-modifier[opt]
533/// extended-decl-modifier extended-decl-modifier-seq
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000534void Parser::ParseMicrosoftDeclSpec(ParsedAttributes &Attrs) {
Steve Narofff59e17e2008-12-24 20:59:21 +0000535 assert(Tok.is(tok::kw___declspec) && "Not a declspec!");
Eli Friedmana23b4852009-06-08 07:21:15 +0000536
Steve Narofff59e17e2008-12-24 20:59:21 +0000537 ConsumeToken();
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000538 BalancedDelimiterTracker T(*this, tok::l_paren);
Chad Rosier8decdee2012-06-26 22:30:43 +0000539 if (T.expectAndConsume(diag::err_expected_lparen_after, "__declspec",
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000540 tok::r_paren))
John McCall7f040a92010-12-24 02:08:15 +0000541 return;
Jakob Stoklund Olesen35329362012-06-19 21:48:43 +0000542
Chad Rosier8decdee2012-06-26 22:30:43 +0000543 // An empty declspec is perfectly legal and should not warn. Additionally,
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000544 // you can specify multiple attributes per declspec.
545 while (Tok.getKind() != tok::r_paren) {
546 // We expect either a well-known identifier or a generic string. Anything
547 // else is a malformed declspec.
548 bool IsString = Tok.getKind() == tok::string_literal ? true : false;
Chad Rosier8decdee2012-06-26 22:30:43 +0000549 if (!IsString && Tok.getKind() != tok::identifier &&
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000550 Tok.getKind() != tok::kw_restrict) {
551 Diag(Tok, diag::err_ms_declspec_type);
552 T.skipToEnd();
553 return;
Jakob Stoklund Olesen35329362012-06-19 21:48:43 +0000554 }
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000555
556 IdentifierInfo *AttrName;
557 SourceLocation AttrNameLoc;
558 if (IsString) {
559 SmallString<8> StrBuffer;
560 bool Invalid = false;
561 StringRef Str = PP.getSpelling(Tok, StrBuffer, &Invalid);
562 if (Invalid) {
563 T.skipToEnd();
564 return;
Jakob Stoklund Olesen35329362012-06-19 21:48:43 +0000565 }
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000566 AttrName = PP.getIdentifierInfo(Str);
567 AttrNameLoc = ConsumeStringToken();
Jakob Stoklund Olesen35329362012-06-19 21:48:43 +0000568 } else {
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000569 AttrName = Tok.getIdentifierInfo();
570 AttrNameLoc = ConsumeToken();
Jakob Stoklund Olesen35329362012-06-19 21:48:43 +0000571 }
Chad Rosier8decdee2012-06-26 22:30:43 +0000572
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000573 if (IsString || IsSimpleMicrosoftDeclSpec(AttrName))
Chad Rosier8decdee2012-06-26 22:30:43 +0000574 // If we have a generic string, we will allow it because there is no
575 // documented list of allowable string declspecs, but we know they exist
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000576 // (for instance, SAL declspecs in older versions of MSVC).
577 //
Chad Rosier8decdee2012-06-26 22:30:43 +0000578 // Alternatively, if the identifier is a simple one, then it requires no
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000579 // arguments and can be turned into an attribute directly.
Aaron Ballman624421f2013-08-31 01:11:41 +0000580 Attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0, 0,
581 AttributeList::AS_Declspec);
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000582 else
583 ParseComplexMicrosoftDeclSpec(AttrName, AttrNameLoc, Attrs);
Jakob Stoklund Olesen35329362012-06-19 21:48:43 +0000584 }
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000585 T.consumeClose();
Eli Friedman290eeb02009-06-08 23:27:34 +0000586}
587
John McCall7f040a92010-12-24 02:08:15 +0000588void Parser::ParseMicrosoftTypeAttributes(ParsedAttributes &attrs) {
Eli Friedman290eeb02009-06-08 23:27:34 +0000589 // Treat these like attributes
Eli Friedman290eeb02009-06-08 23:27:34 +0000590 while (Tok.is(tok::kw___fastcall) || Tok.is(tok::kw___stdcall) ||
Douglas Gregorf813a2c2010-05-18 16:57:00 +0000591 Tok.is(tok::kw___thiscall) || Tok.is(tok::kw___cdecl) ||
Francois Pichet3bd9aa42011-08-18 09:59:55 +0000592 Tok.is(tok::kw___ptr64) || Tok.is(tok::kw___w64) ||
Aaron Ballmanaa9df092013-05-22 23:25:32 +0000593 Tok.is(tok::kw___ptr32) || Tok.is(tok::kw___unaligned) ||
594 Tok.is(tok::kw___sptr) || Tok.is(tok::kw___uptr)) {
Eli Friedman290eeb02009-06-08 23:27:34 +0000595 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
596 SourceLocation AttrNameLoc = ConsumeToken();
Aaron Ballman624421f2013-08-31 01:11:41 +0000597 attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0, 0,
598 AttributeList::AS_Keyword);
Eli Friedman290eeb02009-06-08 23:27:34 +0000599 }
Steve Narofff59e17e2008-12-24 20:59:21 +0000600}
601
John McCall7f040a92010-12-24 02:08:15 +0000602void Parser::ParseBorlandTypeAttributes(ParsedAttributes &attrs) {
Dawn Perchik52fc3142010-09-03 01:29:35 +0000603 // Treat these like attributes
604 while (Tok.is(tok::kw___pascal)) {
605 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
606 SourceLocation AttrNameLoc = ConsumeToken();
Aaron Ballman624421f2013-08-31 01:11:41 +0000607 attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0, 0,
608 AttributeList::AS_Keyword);
Dawn Perchik52fc3142010-09-03 01:29:35 +0000609 }
John McCall7f040a92010-12-24 02:08:15 +0000610}
611
Peter Collingbournef315fa82011-02-14 01:42:53 +0000612void Parser::ParseOpenCLAttributes(ParsedAttributes &attrs) {
613 // Treat these like attributes
614 while (Tok.is(tok::kw___kernel)) {
Richard Smith5cd532c2013-01-29 01:24:26 +0000615 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
Peter Collingbournef315fa82011-02-14 01:42:53 +0000616 SourceLocation AttrNameLoc = ConsumeToken();
Aaron Ballman624421f2013-08-31 01:11:41 +0000617 attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0, 0,
618 AttributeList::AS_Keyword);
Peter Collingbournef315fa82011-02-14 01:42:53 +0000619 }
620}
621
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000622void Parser::ParseOpenCLQualifiers(DeclSpec &DS) {
Richard Smith5cd532c2013-01-29 01:24:26 +0000623 // FIXME: The mapping from attribute spelling to semantics should be
624 // performed in Sema, not here.
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000625 SourceLocation Loc = Tok.getLocation();
626 switch(Tok.getKind()) {
627 // OpenCL qualifiers:
628 case tok::kw___private:
Chad Rosier8decdee2012-06-26 22:30:43 +0000629 case tok::kw_private:
John McCall0b7e6782011-03-24 11:26:52 +0000630 DS.getAttributes().addNewInteger(
Chad Rosier8decdee2012-06-26 22:30:43 +0000631 Actions.getASTContext(),
John McCall0b7e6782011-03-24 11:26:52 +0000632 PP.getIdentifierInfo("address_space"), Loc, 0);
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000633 break;
Chad Rosier8decdee2012-06-26 22:30:43 +0000634
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000635 case tok::kw___global:
John McCall0b7e6782011-03-24 11:26:52 +0000636 DS.getAttributes().addNewInteger(
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000637 Actions.getASTContext(),
John McCall0b7e6782011-03-24 11:26:52 +0000638 PP.getIdentifierInfo("address_space"), Loc, LangAS::opencl_global);
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000639 break;
Chad Rosier8decdee2012-06-26 22:30:43 +0000640
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000641 case tok::kw___local:
John McCall0b7e6782011-03-24 11:26:52 +0000642 DS.getAttributes().addNewInteger(
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000643 Actions.getASTContext(),
John McCall0b7e6782011-03-24 11:26:52 +0000644 PP.getIdentifierInfo("address_space"), Loc, LangAS::opencl_local);
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000645 break;
Chad Rosier8decdee2012-06-26 22:30:43 +0000646
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000647 case tok::kw___constant:
John McCall0b7e6782011-03-24 11:26:52 +0000648 DS.getAttributes().addNewInteger(
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000649 Actions.getASTContext(),
John McCall0b7e6782011-03-24 11:26:52 +0000650 PP.getIdentifierInfo("address_space"), Loc, LangAS::opencl_constant);
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000651 break;
Chad Rosier8decdee2012-06-26 22:30:43 +0000652
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000653 case tok::kw___read_only:
John McCall0b7e6782011-03-24 11:26:52 +0000654 DS.getAttributes().addNewInteger(
Chad Rosier8decdee2012-06-26 22:30:43 +0000655 Actions.getASTContext(),
John McCall0b7e6782011-03-24 11:26:52 +0000656 PP.getIdentifierInfo("opencl_image_access"), Loc, CLIA_read_only);
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000657 break;
Chad Rosier8decdee2012-06-26 22:30:43 +0000658
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000659 case tok::kw___write_only:
John McCall0b7e6782011-03-24 11:26:52 +0000660 DS.getAttributes().addNewInteger(
Chad Rosier8decdee2012-06-26 22:30:43 +0000661 Actions.getASTContext(),
John McCall0b7e6782011-03-24 11:26:52 +0000662 PP.getIdentifierInfo("opencl_image_access"), Loc, CLIA_write_only);
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000663 break;
Chad Rosier8decdee2012-06-26 22:30:43 +0000664
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000665 case tok::kw___read_write:
John McCall0b7e6782011-03-24 11:26:52 +0000666 DS.getAttributes().addNewInteger(
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000667 Actions.getASTContext(),
John McCall0b7e6782011-03-24 11:26:52 +0000668 PP.getIdentifierInfo("opencl_image_access"), Loc, CLIA_read_write);
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000669 break;
670 default: break;
671 }
672}
673
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000674/// \brief Parse a version number.
675///
676/// version:
677/// simple-integer
678/// simple-integer ',' simple-integer
679/// simple-integer ',' simple-integer ',' simple-integer
680VersionTuple Parser::ParseVersionTuple(SourceRange &Range) {
681 Range = Tok.getLocation();
682
683 if (!Tok.is(tok::numeric_constant)) {
684 Diag(Tok, diag::err_expected_version);
685 SkipUntil(tok::comma, tok::r_paren, true, true, true);
686 return VersionTuple();
687 }
688
689 // Parse the major (and possibly minor and subminor) versions, which
690 // are stored in the numeric constant. We utilize a quirk of the
691 // lexer, which is that it handles something like 1.2.3 as a single
692 // numeric constant, rather than two separate tokens.
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000693 SmallString<512> Buffer;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000694 Buffer.resize(Tok.getLength()+1);
695 const char *ThisTokBegin = &Buffer[0];
696
697 // Get the spelling of the token, which eliminates trigraphs, etc.
698 bool Invalid = false;
699 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin, &Invalid);
700 if (Invalid)
701 return VersionTuple();
702
703 // Parse the major version.
704 unsigned AfterMajor = 0;
705 unsigned Major = 0;
Jordan Rose3f6f51e2013-02-08 22:30:41 +0000706 while (AfterMajor < ActualLength && isDigit(ThisTokBegin[AfterMajor])) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000707 Major = Major * 10 + ThisTokBegin[AfterMajor] - '0';
708 ++AfterMajor;
709 }
710
711 if (AfterMajor == 0) {
712 Diag(Tok, diag::err_expected_version);
713 SkipUntil(tok::comma, tok::r_paren, true, true, true);
714 return VersionTuple();
715 }
716
717 if (AfterMajor == ActualLength) {
718 ConsumeToken();
719
720 // We only had a single version component.
721 if (Major == 0) {
722 Diag(Tok, diag::err_zero_version);
723 return VersionTuple();
724 }
725
726 return VersionTuple(Major);
727 }
728
729 if (ThisTokBegin[AfterMajor] != '.' || (AfterMajor + 1 == ActualLength)) {
730 Diag(Tok, diag::err_expected_version);
731 SkipUntil(tok::comma, tok::r_paren, true, true, true);
732 return VersionTuple();
733 }
734
735 // Parse the minor version.
736 unsigned AfterMinor = AfterMajor + 1;
737 unsigned Minor = 0;
Jordan Rose3f6f51e2013-02-08 22:30:41 +0000738 while (AfterMinor < ActualLength && isDigit(ThisTokBegin[AfterMinor])) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000739 Minor = Minor * 10 + ThisTokBegin[AfterMinor] - '0';
740 ++AfterMinor;
741 }
742
743 if (AfterMinor == ActualLength) {
744 ConsumeToken();
Chad Rosier8decdee2012-06-26 22:30:43 +0000745
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000746 // We had major.minor.
747 if (Major == 0 && Minor == 0) {
748 Diag(Tok, diag::err_zero_version);
749 return VersionTuple();
750 }
751
Chad Rosier8decdee2012-06-26 22:30:43 +0000752 return VersionTuple(Major, Minor);
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000753 }
754
755 // If what follows is not a '.', we have a problem.
756 if (ThisTokBegin[AfterMinor] != '.') {
757 Diag(Tok, diag::err_expected_version);
758 SkipUntil(tok::comma, tok::r_paren, true, true, true);
Chad Rosier8decdee2012-06-26 22:30:43 +0000759 return VersionTuple();
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000760 }
761
762 // Parse the subminor version.
763 unsigned AfterSubminor = AfterMinor + 1;
764 unsigned Subminor = 0;
Jordan Rose3f6f51e2013-02-08 22:30:41 +0000765 while (AfterSubminor < ActualLength && isDigit(ThisTokBegin[AfterSubminor])) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000766 Subminor = Subminor * 10 + ThisTokBegin[AfterSubminor] - '0';
767 ++AfterSubminor;
768 }
769
770 if (AfterSubminor != ActualLength) {
771 Diag(Tok, diag::err_expected_version);
772 SkipUntil(tok::comma, tok::r_paren, true, true, true);
773 return VersionTuple();
774 }
775 ConsumeToken();
776 return VersionTuple(Major, Minor, Subminor);
777}
778
779/// \brief Parse the contents of the "availability" attribute.
780///
781/// availability-attribute:
Fariborz Jahanian006e42f2011-12-10 00:28:41 +0000782/// 'availability' '(' platform ',' version-arg-list, opt-message')'
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000783///
784/// platform:
785/// identifier
786///
787/// version-arg-list:
788/// version-arg
789/// version-arg ',' version-arg-list
790///
791/// version-arg:
792/// 'introduced' '=' version
793/// 'deprecated' '=' version
Douglas Gregor93a70672012-03-11 04:53:21 +0000794/// 'obsoleted' = version
Douglas Gregorb53e4172011-03-26 03:35:55 +0000795/// 'unavailable'
Fariborz Jahanian006e42f2011-12-10 00:28:41 +0000796/// opt-message:
797/// 'message' '=' <string>
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000798void Parser::ParseAvailabilityAttribute(IdentifierInfo &Availability,
799 SourceLocation AvailabilityLoc,
800 ParsedAttributes &attrs,
801 SourceLocation *endLoc) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000802 enum { Introduced, Deprecated, Obsoleted, Unknown };
803 AvailabilityChange Changes[Unknown];
Fariborz Jahanian006e42f2011-12-10 00:28:41 +0000804 ExprResult MessageExpr;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000805
806 // Opening '('.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000807 BalancedDelimiterTracker T(*this, tok::l_paren);
808 if (T.consumeOpen()) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000809 Diag(Tok, diag::err_expected_lparen);
810 return;
811 }
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000812
813 // Parse the platform name,
814 if (Tok.isNot(tok::identifier)) {
815 Diag(Tok, diag::err_availability_expected_platform);
816 SkipUntil(tok::r_paren);
817 return;
818 }
Richard Smith8edabd92013-09-03 18:01:40 +0000819 IdentifierLoc *Platform = ParseIdentifierLoc();
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000820
821 // Parse the ',' following the platform name.
822 if (ExpectAndConsume(tok::comma, diag::err_expected_comma, "", tok::r_paren))
823 return;
824
825 // If we haven't grabbed the pointers for the identifiers
826 // "introduced", "deprecated", and "obsoleted", do so now.
827 if (!Ident_introduced) {
828 Ident_introduced = PP.getIdentifierInfo("introduced");
829 Ident_deprecated = PP.getIdentifierInfo("deprecated");
830 Ident_obsoleted = PP.getIdentifierInfo("obsoleted");
Douglas Gregorb53e4172011-03-26 03:35:55 +0000831 Ident_unavailable = PP.getIdentifierInfo("unavailable");
Fariborz Jahanian006e42f2011-12-10 00:28:41 +0000832 Ident_message = PP.getIdentifierInfo("message");
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000833 }
834
835 // Parse the set of introductions/deprecations/removals.
Douglas Gregorb53e4172011-03-26 03:35:55 +0000836 SourceLocation UnavailableLoc;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000837 do {
838 if (Tok.isNot(tok::identifier)) {
839 Diag(Tok, diag::err_availability_expected_change);
840 SkipUntil(tok::r_paren);
841 return;
842 }
843 IdentifierInfo *Keyword = Tok.getIdentifierInfo();
844 SourceLocation KeywordLoc = ConsumeToken();
845
Douglas Gregorb53e4172011-03-26 03:35:55 +0000846 if (Keyword == Ident_unavailable) {
847 if (UnavailableLoc.isValid()) {
848 Diag(KeywordLoc, diag::err_availability_redundant)
849 << Keyword << SourceRange(UnavailableLoc);
Chad Rosier8decdee2012-06-26 22:30:43 +0000850 }
Douglas Gregorb53e4172011-03-26 03:35:55 +0000851 UnavailableLoc = KeywordLoc;
852
853 if (Tok.isNot(tok::comma))
854 break;
855
856 ConsumeToken();
857 continue;
Chad Rosier8decdee2012-06-26 22:30:43 +0000858 }
859
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000860 if (Tok.isNot(tok::equal)) {
861 Diag(Tok, diag::err_expected_equal_after)
862 << Keyword;
863 SkipUntil(tok::r_paren);
864 return;
865 }
866 ConsumeToken();
Fariborz Jahanian006e42f2011-12-10 00:28:41 +0000867 if (Keyword == Ident_message) {
Benjamin Kramerc5617142013-09-13 17:31:48 +0000868 if (Tok.isNot(tok::string_literal)) { // Also reject wide string literals.
Andy Gibbs97f84612012-11-17 19:16:52 +0000869 Diag(Tok, diag::err_expected_string_literal)
870 << /*Source='availability attribute'*/2;
Fariborz Jahanian006e42f2011-12-10 00:28:41 +0000871 SkipUntil(tok::r_paren);
872 return;
873 }
874 MessageExpr = ParseStringLiteralExpression();
875 break;
876 }
Chad Rosier8decdee2012-06-26 22:30:43 +0000877
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000878 SourceRange VersionRange;
879 VersionTuple Version = ParseVersionTuple(VersionRange);
Chad Rosier8decdee2012-06-26 22:30:43 +0000880
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000881 if (Version.empty()) {
882 SkipUntil(tok::r_paren);
883 return;
884 }
885
886 unsigned Index;
887 if (Keyword == Ident_introduced)
888 Index = Introduced;
889 else if (Keyword == Ident_deprecated)
890 Index = Deprecated;
891 else if (Keyword == Ident_obsoleted)
892 Index = Obsoleted;
Chad Rosier8decdee2012-06-26 22:30:43 +0000893 else
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000894 Index = Unknown;
895
896 if (Index < Unknown) {
897 if (!Changes[Index].KeywordLoc.isInvalid()) {
898 Diag(KeywordLoc, diag::err_availability_redundant)
Chad Rosier8decdee2012-06-26 22:30:43 +0000899 << Keyword
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000900 << SourceRange(Changes[Index].KeywordLoc,
901 Changes[Index].VersionRange.getEnd());
902 }
903
904 Changes[Index].KeywordLoc = KeywordLoc;
905 Changes[Index].Version = Version;
906 Changes[Index].VersionRange = VersionRange;
907 } else {
908 Diag(KeywordLoc, diag::err_availability_unknown_change)
909 << Keyword << VersionRange;
910 }
911
912 if (Tok.isNot(tok::comma))
913 break;
914
915 ConsumeToken();
916 } while (true);
917
918 // Closing ')'.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000919 if (T.consumeClose())
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000920 return;
921
922 if (endLoc)
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000923 *endLoc = T.getCloseLocation();
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000924
Douglas Gregorb53e4172011-03-26 03:35:55 +0000925 // The 'unavailable' availability cannot be combined with any other
926 // availability changes. Make sure that hasn't happened.
927 if (UnavailableLoc.isValid()) {
928 bool Complained = false;
929 for (unsigned Index = Introduced; Index != Unknown; ++Index) {
930 if (Changes[Index].KeywordLoc.isValid()) {
931 if (!Complained) {
932 Diag(UnavailableLoc, diag::warn_availability_and_unavailable)
933 << SourceRange(Changes[Index].KeywordLoc,
934 Changes[Index].VersionRange.getEnd());
935 Complained = true;
936 }
937
938 // Clear out the availability.
939 Changes[Index] = AvailabilityChange();
940 }
941 }
942 }
943
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000944 // Record this attribute
Chad Rosier8decdee2012-06-26 22:30:43 +0000945 attrs.addNew(&Availability,
946 SourceRange(AvailabilityLoc, T.getCloseLocation()),
Fariborz Jahanianf96708d2012-01-23 23:38:32 +0000947 0, AvailabilityLoc,
Aaron Ballman624421f2013-08-31 01:11:41 +0000948 Platform,
John McCall0b7e6782011-03-24 11:26:52 +0000949 Changes[Introduced],
950 Changes[Deprecated],
Chad Rosier8decdee2012-06-26 22:30:43 +0000951 Changes[Obsoleted],
Fariborz Jahanian006e42f2011-12-10 00:28:41 +0000952 UnavailableLoc, MessageExpr.take(),
Sean Hunt93f95f22012-06-18 16:13:52 +0000953 AttributeList::AS_GNU);
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000954}
955
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000956
Bill Wendlingad017fa2012-12-20 19:22:21 +0000957// Late Parsed Attributes:
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000958// See other examples of late parsing in lib/Parse/ParseCXXInlineMethods
959
960void Parser::LateParsedDeclaration::ParseLexedAttributes() {}
961
962void Parser::LateParsedClass::ParseLexedAttributes() {
963 Self->ParseLexedAttributes(*Class);
964}
965
966void Parser::LateParsedAttribute::ParseLexedAttributes() {
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +0000967 Self->ParseLexedAttribute(*this, true, false);
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000968}
969
970/// Wrapper class which calls ParseLexedAttribute, after setting up the
971/// scope appropriately.
972void Parser::ParseLexedAttributes(ParsingClass &Class) {
973 // Deal with templates
974 // FIXME: Test cases to make sure this does the right thing for templates.
975 bool HasTemplateScope = !Class.TopLevelClass && Class.TemplateScope;
976 ParseScope ClassTemplateScope(this, Scope::TemplateParamScope,
977 HasTemplateScope);
978 if (HasTemplateScope)
979 Actions.ActOnReenterTemplateScope(getCurScope(), Class.TagOrTemplate);
980
Douglas Gregorcefc3af2012-04-16 07:05:22 +0000981 // Set or update the scope flags.
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000982 bool AlreadyHasClassScope = Class.TopLevelClass;
Douglas Gregorcefc3af2012-04-16 07:05:22 +0000983 unsigned ScopeFlags = Scope::ClassScope|Scope::DeclScope;
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000984 ParseScope ClassScope(this, ScopeFlags, !AlreadyHasClassScope);
985 ParseScopeFlags ClassScopeFlags(this, ScopeFlags, AlreadyHasClassScope);
986
DeLesley Hutchinscf2fa2f2012-04-06 15:10:17 +0000987 // Enter the scope of nested classes
988 if (!AlreadyHasClassScope)
989 Actions.ActOnStartDelayedMemberDeclarations(getCurScope(),
990 Class.TagOrTemplate);
Benjamin Kramer268efba2012-05-17 12:01:52 +0000991 if (!Class.LateParsedDeclarations.empty()) {
Douglas Gregorcefc3af2012-04-16 07:05:22 +0000992 for (unsigned i = 0, ni = Class.LateParsedDeclarations.size(); i < ni; ++i){
993 Class.LateParsedDeclarations[i]->ParseLexedAttributes();
994 }
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000995 }
Chad Rosier8decdee2012-06-26 22:30:43 +0000996
DeLesley Hutchinscf2fa2f2012-04-06 15:10:17 +0000997 if (!AlreadyHasClassScope)
998 Actions.ActOnFinishDelayedMemberDeclarations(getCurScope(),
999 Class.TagOrTemplate);
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001000}
1001
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001002
1003/// \brief Parse all attributes in LAs, and attach them to Decl D.
1004void Parser::ParseLexedAttributeList(LateParsedAttrList &LAs, Decl *D,
1005 bool EnterScope, bool OnDefinition) {
DeLesley Hutchins161db022012-11-02 21:44:32 +00001006 assert(LAs.parseSoon() &&
1007 "Attribute list should be marked for immediate parsing.");
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001008 for (unsigned i = 0, ni = LAs.size(); i < ni; ++i) {
DeLesley Hutchins95526a42012-08-15 22:41:04 +00001009 if (D)
1010 LAs[i]->addDecl(D);
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001011 ParseLexedAttribute(*LAs[i], EnterScope, OnDefinition);
Benjamin Kramerd306cf72012-04-14 12:44:47 +00001012 delete LAs[i];
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001013 }
1014 LAs.clear();
1015}
1016
1017
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001018/// \brief Finish parsing an attribute for which parsing was delayed.
1019/// This will be called at the end of parsing a class declaration
1020/// for each LateParsedAttribute. We consume the saved tokens and
Chad Rosier8decdee2012-06-26 22:30:43 +00001021/// create an attribute with the arguments filled in. We add this
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001022/// to the Attribute list for the decl.
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001023void Parser::ParseLexedAttribute(LateParsedAttribute &LA,
1024 bool EnterScope, bool OnDefinition) {
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001025 // Save the current token position.
1026 SourceLocation OrigLoc = Tok.getLocation();
1027
1028 // Append the current token at the end of the new token stream so that it
1029 // doesn't get lost.
1030 LA.Toks.push_back(Tok);
1031 PP.EnterTokenStream(LA.Toks.data(), LA.Toks.size(), true, false);
1032 // Consume the previously pushed token.
Argyrios Kyrtzidisab2d09b2013-03-27 23:58:17 +00001033 ConsumeAnyToken(/*ConsumeCodeCompletionTok=*/true);
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001034
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001035 if (OnDefinition && !IsThreadSafetyAttribute(LA.AttrName.getName())) {
Richard Smithcd8ab512013-01-17 01:30:42 +00001036 // FIXME: Do not warn on C++11 attributes, once we start supporting
1037 // them here.
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001038 Diag(Tok, diag::warn_attribute_on_function_definition)
1039 << LA.AttrName.getName();
1040 }
1041
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001042 ParsedAttributes Attrs(AttrFactory);
1043 SourceLocation endLoc;
1044
DeLesley Hutchinsd30fb9e2012-08-20 21:32:18 +00001045 if (LA.Decls.size() > 0) {
DeLesley Hutchins2287c5e2012-03-02 22:12:59 +00001046 Decl *D = LA.Decls[0];
DeLesley Hutchinsd30fb9e2012-08-20 21:32:18 +00001047 NamedDecl *ND = dyn_cast<NamedDecl>(D);
1048 RecordDecl *RD = dyn_cast_or_null<RecordDecl>(D->getDeclContext());
Caitlin Sadowskied9d84a2011-09-08 17:42:31 +00001049
DeLesley Hutchinsd30fb9e2012-08-20 21:32:18 +00001050 // Allow 'this' within late-parsed attributes.
Richard Smithcafeb942013-06-07 02:33:37 +00001051 Sema::CXXThisScopeRAII ThisScope(Actions, RD, /*TypeQuals=*/0,
1052 ND && ND->isCXXInstanceMember());
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001053
DeLesley Hutchinsd30fb9e2012-08-20 21:32:18 +00001054 if (LA.Decls.size() == 1) {
1055 // If the Decl is templatized, add template parameters to scope.
1056 bool HasTemplateScope = EnterScope && D->isTemplateDecl();
1057 ParseScope TempScope(this, Scope::TemplateParamScope, HasTemplateScope);
1058 if (HasTemplateScope)
1059 Actions.ActOnReenterTemplateScope(Actions.CurScope, D);
DeLesley Hutchins2287c5e2012-03-02 22:12:59 +00001060
DeLesley Hutchinsd30fb9e2012-08-20 21:32:18 +00001061 // If the Decl is on a function, add function parameters to the scope.
1062 bool HasFunScope = EnterScope && D->isFunctionOrFunctionTemplate();
1063 ParseScope FnScope(this, Scope::FnScope|Scope::DeclScope, HasFunScope);
1064 if (HasFunScope)
1065 Actions.ActOnReenterFunctionContext(Actions.CurScope, D);
DeLesley Hutchins2287c5e2012-03-02 22:12:59 +00001066
Michael Han6880f492012-10-03 01:56:22 +00001067 ParseGNUAttributeArgs(&LA.AttrName, LA.AttrNameLoc, Attrs, &endLoc,
Michael Han45bed132012-10-04 16:42:52 +00001068 0, SourceLocation(), AttributeList::AS_GNU);
DeLesley Hutchinsd30fb9e2012-08-20 21:32:18 +00001069
1070 if (HasFunScope) {
1071 Actions.ActOnExitFunctionContext();
1072 FnScope.Exit(); // Pop scope, and remove Decls from IdResolver
1073 }
1074 if (HasTemplateScope) {
1075 TempScope.Exit();
1076 }
1077 } else {
1078 // If there are multiple decls, then the decl cannot be within the
1079 // function scope.
Michael Han6880f492012-10-03 01:56:22 +00001080 ParseGNUAttributeArgs(&LA.AttrName, LA.AttrNameLoc, Attrs, &endLoc,
Michael Han45bed132012-10-04 16:42:52 +00001081 0, SourceLocation(), AttributeList::AS_GNU);
DeLesley Hutchins2287c5e2012-03-02 22:12:59 +00001082 }
DeLesley Hutchins7ec419a2012-03-02 22:29:50 +00001083 } else {
1084 Diag(Tok, diag::warn_attribute_no_decl) << LA.AttrName.getName();
Caitlin Sadowskied9d84a2011-09-08 17:42:31 +00001085 }
1086
DeLesley Hutchins2287c5e2012-03-02 22:12:59 +00001087 for (unsigned i = 0, ni = LA.Decls.size(); i < ni; ++i) {
1088 Actions.ActOnFinishDelayedAttribute(getCurScope(), LA.Decls[i], Attrs);
1089 }
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001090
1091 if (Tok.getLocation() != OrigLoc) {
1092 // Due to a parsing error, we either went over the cached tokens or
1093 // there are still cached tokens left, so we skip the leftover tokens.
1094 // Since this is an uncommon situation that should be avoided, use the
1095 // expensive isBeforeInTranslationUnit call.
1096 if (PP.getSourceManager().isBeforeInTranslationUnit(Tok.getLocation(),
1097 OrigLoc))
1098 while (Tok.getLocation() != OrigLoc && Tok.isNot(tok::eof))
Douglas Gregord78ef5b2012-03-08 01:00:17 +00001099 ConsumeAnyToken();
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001100 }
1101}
1102
Caitlin Sadowskib51e0312011-08-09 17:59:31 +00001103/// \brief Wrapper around a case statement checking if AttrName is
1104/// one of the thread safety attributes
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +00001105bool Parser::IsThreadSafetyAttribute(StringRef AttrName) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +00001106 return llvm::StringSwitch<bool>(AttrName)
1107 .Case("guarded_by", true)
1108 .Case("guarded_var", true)
1109 .Case("pt_guarded_by", true)
1110 .Case("pt_guarded_var", true)
1111 .Case("lockable", true)
1112 .Case("scoped_lockable", true)
1113 .Case("no_thread_safety_analysis", true)
1114 .Case("acquired_after", true)
1115 .Case("acquired_before", true)
1116 .Case("exclusive_lock_function", true)
1117 .Case("shared_lock_function", true)
1118 .Case("exclusive_trylock_function", true)
1119 .Case("shared_trylock_function", true)
1120 .Case("unlock_function", true)
1121 .Case("lock_returned", true)
1122 .Case("locks_excluded", true)
1123 .Case("exclusive_locks_required", true)
1124 .Case("shared_locks_required", true)
1125 .Default(false);
1126}
1127
1128/// \brief Parse the contents of thread safety attributes. These
1129/// should always be parsed as an expression list.
1130///
1131/// We need to special case the parsing due to the fact that if the first token
1132/// of the first argument is an identifier, the main parse loop will store
1133/// that token as a "parameter" and the rest of
1134/// the arguments will be added to a list of "arguments". However,
1135/// subsequent tokens in the first argument are lost. We instead parse each
1136/// argument as an expression and add all arguments to the list of "arguments".
1137/// In future, we will take advantage of this special case to also
1138/// deal with some argument scoping issues here (for example, referring to a
1139/// function parameter in the attribute on that function).
1140void Parser::ParseThreadSafetyAttribute(IdentifierInfo &AttrName,
1141 SourceLocation AttrNameLoc,
1142 ParsedAttributes &Attrs,
1143 SourceLocation *EndLoc) {
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001144 assert(Tok.is(tok::l_paren) && "Attribute arg list not starting with '('");
Caitlin Sadowskib51e0312011-08-09 17:59:31 +00001145
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001146 BalancedDelimiterTracker T(*this, tok::l_paren);
1147 T.consumeOpen();
Chad Rosier8decdee2012-06-26 22:30:43 +00001148
Aaron Ballman624421f2013-08-31 01:11:41 +00001149 ArgsVector ArgExprs;
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001150 bool ArgExprsOk = true;
Chad Rosier8decdee2012-06-26 22:30:43 +00001151
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001152 // now parse the list of expressions
DeLesley Hutchins4805f152011-12-14 19:36:06 +00001153 while (Tok.isNot(tok::r_paren)) {
DeLesley Hutchinsed4330b2013-02-07 19:01:07 +00001154 EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated);
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001155 ExprResult ArgExpr(ParseAssignmentExpression());
1156 if (ArgExpr.isInvalid()) {
1157 ArgExprsOk = false;
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001158 T.consumeClose();
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001159 break;
1160 } else {
1161 ArgExprs.push_back(ArgExpr.release());
Caitlin Sadowskib51e0312011-08-09 17:59:31 +00001162 }
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001163 if (Tok.isNot(tok::comma))
1164 break;
1165 ConsumeToken(); // Eat the comma, move to the next argument
1166 }
1167 // Match the ')'.
DeLesley Hutchins23323e02012-01-20 22:50:54 +00001168 if (ArgExprsOk && !T.consumeClose()) {
Aaron Ballman624421f2013-08-31 01:11:41 +00001169 Attrs.addNew(&AttrName, AttrNameLoc, 0, AttrNameLoc, ArgExprs.data(),
1170 ArgExprs.size(), AttributeList::AS_GNU);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +00001171 }
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001172 if (EndLoc)
1173 *EndLoc = T.getCloseLocation();
Caitlin Sadowskib51e0312011-08-09 17:59:31 +00001174}
1175
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00001176void Parser::ParseTypeTagForDatatypeAttribute(IdentifierInfo &AttrName,
1177 SourceLocation AttrNameLoc,
1178 ParsedAttributes &Attrs,
1179 SourceLocation *EndLoc) {
1180 assert(Tok.is(tok::l_paren) && "Attribute arg list not starting with '('");
1181
1182 BalancedDelimiterTracker T(*this, tok::l_paren);
1183 T.consumeOpen();
1184
1185 if (Tok.isNot(tok::identifier)) {
1186 Diag(Tok, diag::err_expected_ident);
1187 T.skipToEnd();
1188 return;
1189 }
Richard Smith8edabd92013-09-03 18:01:40 +00001190 IdentifierLoc *ArgumentKind = ParseIdentifierLoc();
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00001191
1192 if (Tok.isNot(tok::comma)) {
1193 Diag(Tok, diag::err_expected_comma);
1194 T.skipToEnd();
1195 return;
1196 }
1197 ConsumeToken();
1198
1199 SourceRange MatchingCTypeRange;
1200 TypeResult MatchingCType = ParseTypeName(&MatchingCTypeRange);
1201 if (MatchingCType.isInvalid()) {
1202 T.skipToEnd();
1203 return;
1204 }
1205
1206 bool LayoutCompatible = false;
1207 bool MustBeNull = false;
1208 while (Tok.is(tok::comma)) {
1209 ConsumeToken();
1210 if (Tok.isNot(tok::identifier)) {
1211 Diag(Tok, diag::err_expected_ident);
1212 T.skipToEnd();
1213 return;
1214 }
1215 IdentifierInfo *Flag = Tok.getIdentifierInfo();
1216 if (Flag->isStr("layout_compatible"))
1217 LayoutCompatible = true;
1218 else if (Flag->isStr("must_be_null"))
1219 MustBeNull = true;
1220 else {
1221 Diag(Tok, diag::err_type_safety_unknown_flag) << Flag;
1222 T.skipToEnd();
1223 return;
1224 }
1225 ConsumeToken(); // consume flag
1226 }
1227
1228 if (!T.consumeClose()) {
1229 Attrs.addNewTypeTagForDatatype(&AttrName, AttrNameLoc, 0, AttrNameLoc,
Aaron Ballman624421f2013-08-31 01:11:41 +00001230 ArgumentKind, MatchingCType.release(),
1231 LayoutCompatible, MustBeNull,
1232 AttributeList::AS_GNU);
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00001233 }
1234
1235 if (EndLoc)
1236 *EndLoc = T.getCloseLocation();
1237}
1238
Richard Smith6ee326a2012-04-10 01:32:12 +00001239/// DiagnoseProhibitedCXX11Attribute - We have found the opening square brackets
1240/// of a C++11 attribute-specifier in a location where an attribute is not
1241/// permitted. By C++11 [dcl.attr.grammar]p6, this is ill-formed. Diagnose this
1242/// situation.
1243///
1244/// \return \c true if we skipped an attribute-like chunk of tokens, \c false if
1245/// this doesn't appear to actually be an attribute-specifier, and the caller
1246/// should try to parse it.
1247bool Parser::DiagnoseProhibitedCXX11Attribute() {
1248 assert(Tok.is(tok::l_square) && NextToken().is(tok::l_square));
1249
1250 switch (isCXX11AttributeSpecifier(/*Disambiguate*/true)) {
1251 case CAK_NotAttributeSpecifier:
1252 // No diagnostic: we're in Obj-C++11 and this is not actually an attribute.
1253 return false;
1254
1255 case CAK_InvalidAttributeSpecifier:
1256 Diag(Tok.getLocation(), diag::err_l_square_l_square_not_attribute);
1257 return false;
1258
1259 case CAK_AttributeSpecifier:
1260 // Parse and discard the attributes.
1261 SourceLocation BeginLoc = ConsumeBracket();
1262 ConsumeBracket();
1263 SkipUntil(tok::r_square, /*StopAtSemi*/ false);
1264 assert(Tok.is(tok::r_square) && "isCXX11AttributeSpecifier lied");
1265 SourceLocation EndLoc = ConsumeBracket();
1266 Diag(BeginLoc, diag::err_attributes_not_allowed)
1267 << SourceRange(BeginLoc, EndLoc);
1268 return true;
1269 }
Chandler Carruth2c6dbd72012-04-10 16:03:08 +00001270 llvm_unreachable("All cases handled above.");
Richard Smith6ee326a2012-04-10 01:32:12 +00001271}
1272
Richard Smith975d52c2013-02-20 01:17:14 +00001273/// \brief We have found the opening square brackets of a C++11
1274/// attribute-specifier in a location where an attribute is not permitted, but
1275/// we know where the attributes ought to be written. Parse them anyway, and
1276/// provide a fixit moving them to the right place.
Richard Smith05321402013-02-19 23:47:15 +00001277void Parser::DiagnoseMisplacedCXX11Attribute(ParsedAttributesWithRange &Attrs,
1278 SourceLocation CorrectLocation) {
1279 assert((Tok.is(tok::l_square) && NextToken().is(tok::l_square)) ||
1280 Tok.is(tok::kw_alignas));
1281
1282 // Consume the attributes.
1283 SourceLocation Loc = Tok.getLocation();
1284 ParseCXX11Attributes(Attrs);
1285 CharSourceRange AttrRange(SourceRange(Loc, Attrs.Range.getEnd()), true);
1286
1287 Diag(Loc, diag::err_attributes_not_allowed)
1288 << FixItHint::CreateInsertionFromRange(CorrectLocation, AttrRange)
1289 << FixItHint::CreateRemoval(AttrRange);
1290}
1291
John McCall7f040a92010-12-24 02:08:15 +00001292void Parser::DiagnoseProhibitedAttributes(ParsedAttributesWithRange &attrs) {
1293 Diag(attrs.Range.getBegin(), diag::err_attributes_not_allowed)
1294 << attrs.Range;
Dawn Perchik52fc3142010-09-03 01:29:35 +00001295}
1296
Michael Hanf64231e2012-11-06 19:34:54 +00001297void Parser::ProhibitCXX11Attributes(ParsedAttributesWithRange &attrs) {
1298 AttributeList *AttrList = attrs.getList();
1299 while (AttrList) {
Richard Smith4e24f0f2013-01-02 12:01:23 +00001300 if (AttrList->isCXX11Attribute()) {
Richard Smithd03de6a2013-01-29 10:02:16 +00001301 Diag(AttrList->getLoc(), diag::err_attribute_not_type_attr)
Michael Hanf64231e2012-11-06 19:34:54 +00001302 << AttrList->getName();
1303 AttrList->setInvalid();
1304 }
1305 AttrList = AttrList->getNext();
1306 }
1307}
1308
Reid Spencer5f016e22007-07-11 17:01:13 +00001309/// ParseDeclaration - Parse a full 'declaration', which consists of
1310/// declaration-specifiers, some number of declarators, and a semicolon.
Chris Lattner97144fc2009-04-02 04:16:50 +00001311/// 'Context' should be a Declarator::TheContext value. This returns the
1312/// location of the semicolon in DeclEnd.
Chris Lattner8f08cb72007-08-25 06:57:03 +00001313///
1314/// declaration: [C99 6.7]
1315/// block-declaration ->
1316/// simple-declaration
1317/// others [FIXME]
Douglas Gregoradcac882008-12-01 23:54:00 +00001318/// [C++] template-declaration
Chris Lattner8f08cb72007-08-25 06:57:03 +00001319/// [C++] namespace-definition
Douglas Gregorf780abc2008-12-30 03:27:21 +00001320/// [C++] using-directive
Douglas Gregord7f37bf2009-06-22 23:06:13 +00001321/// [C++] using-declaration
Richard Smith534986f2012-04-14 00:33:13 +00001322/// [C++11/C11] static_assert-declaration
Chris Lattner8f08cb72007-08-25 06:57:03 +00001323/// others... [FIXME]
1324///
Fariborz Jahanianc5be7b02010-09-28 20:42:35 +00001325Parser::DeclGroupPtrTy Parser::ParseDeclaration(StmtVector &Stmts,
1326 unsigned Context,
Sean Huntbbd37c62009-11-21 08:43:09 +00001327 SourceLocation &DeclEnd,
John McCall7f040a92010-12-24 02:08:15 +00001328 ParsedAttributesWithRange &attrs) {
Argyrios Kyrtzidis36d36802010-06-17 10:52:18 +00001329 ParenBraceBracketBalancer BalancerRAIIObj(*this);
Fariborz Jahaniane8cff362011-08-30 17:10:52 +00001330 // Must temporarily exit the objective-c container scope for
1331 // parsing c none objective-c decls.
1332 ObjCDeclContextSwitch ObjCDC(*this);
Chad Rosier8decdee2012-06-26 22:30:43 +00001333
John McCalld226f652010-08-21 09:40:31 +00001334 Decl *SingleDecl = 0;
Richard Smithc89edf52011-07-01 19:46:12 +00001335 Decl *OwnedType = 0;
Chris Lattner8f08cb72007-08-25 06:57:03 +00001336 switch (Tok.getKind()) {
Douglas Gregoradcac882008-12-01 23:54:00 +00001337 case tok::kw_template:
Douglas Gregor1426e532009-05-12 21:31:51 +00001338 case tok::kw_export:
John McCall7f040a92010-12-24 02:08:15 +00001339 ProhibitAttributes(attrs);
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001340 SingleDecl = ParseDeclarationStartingWithTemplate(Context, DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +00001341 break;
Sebastian Redld078e642010-08-27 23:12:46 +00001342 case tok::kw_inline:
Sebastian Redl88e64ca2010-08-31 00:36:45 +00001343 // Could be the start of an inline namespace. Allowed as an ext in C++03.
David Blaikie4e4d0842012-03-11 07:00:24 +00001344 if (getLangOpts().CPlusPlus && NextToken().is(tok::kw_namespace)) {
John McCall7f040a92010-12-24 02:08:15 +00001345 ProhibitAttributes(attrs);
Sebastian Redld078e642010-08-27 23:12:46 +00001346 SourceLocation InlineLoc = ConsumeToken();
1347 SingleDecl = ParseNamespace(Context, DeclEnd, InlineLoc);
1348 break;
1349 }
Chad Rosier8decdee2012-06-26 22:30:43 +00001350 return ParseSimpleDeclaration(Stmts, Context, DeclEnd, attrs,
Fariborz Jahanianc5be7b02010-09-28 20:42:35 +00001351 true);
Chris Lattner8f08cb72007-08-25 06:57:03 +00001352 case tok::kw_namespace:
John McCall7f040a92010-12-24 02:08:15 +00001353 ProhibitAttributes(attrs);
Chris Lattner97144fc2009-04-02 04:16:50 +00001354 SingleDecl = ParseNamespace(Context, DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +00001355 break;
Douglas Gregorf780abc2008-12-30 03:27:21 +00001356 case tok::kw_using:
John McCall78b81052010-11-10 02:40:36 +00001357 SingleDecl = ParseUsingDirectiveOrDeclaration(Context, ParsedTemplateInfo(),
Richard Smithc89edf52011-07-01 19:46:12 +00001358 DeclEnd, attrs, &OwnedType);
Chris Lattner682bf922009-03-29 16:50:03 +00001359 break;
Anders Carlsson511d7ab2009-03-11 16:27:10 +00001360 case tok::kw_static_assert:
Peter Collingbournec6eb44b2011-04-15 00:35:57 +00001361 case tok::kw__Static_assert:
John McCall7f040a92010-12-24 02:08:15 +00001362 ProhibitAttributes(attrs);
Chris Lattner97144fc2009-04-02 04:16:50 +00001363 SingleDecl = ParseStaticAssertDeclaration(DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +00001364 break;
Chris Lattner8f08cb72007-08-25 06:57:03 +00001365 default:
John McCall7f040a92010-12-24 02:08:15 +00001366 return ParseSimpleDeclaration(Stmts, Context, DeclEnd, attrs, true);
Chris Lattner8f08cb72007-08-25 06:57:03 +00001367 }
Chad Rosier8decdee2012-06-26 22:30:43 +00001368
Chris Lattner682bf922009-03-29 16:50:03 +00001369 // This routine returns a DeclGroup, if the thing we parsed only contains a
Richard Smithc89edf52011-07-01 19:46:12 +00001370 // single decl, convert it now. Alias declarations can also declare a type;
1371 // include that too if it is present.
1372 return Actions.ConvertDeclToDeclGroup(SingleDecl, OwnedType);
Chris Lattner8f08cb72007-08-25 06:57:03 +00001373}
1374
1375/// simple-declaration: [C99 6.7: declaration] [C++ 7p1: dcl.dcl]
1376/// declaration-specifiers init-declarator-list[opt] ';'
Sean Hunt2edf0a22012-06-23 05:07:58 +00001377/// [C++11] attribute-specifier-seq decl-specifier-seq[opt]
1378/// init-declarator-list ';'
Chris Lattner8f08cb72007-08-25 06:57:03 +00001379///[C90/C++]init-declarator-list ';' [TODO]
1380/// [OMP] threadprivate-directive [TODO]
Chris Lattnercd147752009-03-29 17:27:48 +00001381///
Sean Hunt2edf0a22012-06-23 05:07:58 +00001382/// for-range-declaration: [C++11 6.5p1: stmt.ranged]
Richard Smithad762fc2011-04-14 22:09:26 +00001383/// attribute-specifier-seq[opt] type-specifier-seq declarator
1384///
Chris Lattnercd147752009-03-29 17:27:48 +00001385/// If RequireSemi is false, this does not check for a ';' at the end of the
Chris Lattner5c5db552010-04-05 18:18:31 +00001386/// declaration. If it is true, it checks for and eats it.
Richard Smithad762fc2011-04-14 22:09:26 +00001387///
1388/// If FRI is non-null, we might be parsing a for-range-declaration instead
1389/// of a simple-declaration. If we find that we are, we also parse the
1390/// for-range-initializer, and place it here.
Sean Hunt2edf0a22012-06-23 05:07:58 +00001391Parser::DeclGroupPtrTy
1392Parser::ParseSimpleDeclaration(StmtVector &Stmts, unsigned Context,
1393 SourceLocation &DeclEnd,
Richard Smith68ea3ae2013-02-22 09:06:26 +00001394 ParsedAttributesWithRange &Attrs,
Sean Hunt2edf0a22012-06-23 05:07:58 +00001395 bool RequireSemi, ForRangeInit *FRI) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001396 // Parse the common declaration-specifiers piece.
John McCall54abf7d2009-11-04 02:18:39 +00001397 ParsingDeclSpec DS(*this);
Douglas Gregor312eadb2011-04-24 05:37:28 +00001398
Douglas Gregor0efc2c12010-01-13 17:31:36 +00001399 ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS_none,
Richard Smith34b41d92011-02-20 03:19:35 +00001400 getDeclSpecContextFromDeclaratorContext(Context));
Abramo Bagnara06284c12012-01-07 10:52:36 +00001401
Reid Spencer5f016e22007-07-11 17:01:13 +00001402 // C99 6.7.2.3p6: Handle "struct-or-union identifier;", "enum { X };"
1403 // declaration-specifiers init-declarator-list[opt] ';'
Chris Lattner04d66662007-10-09 17:33:22 +00001404 if (Tok.is(tok::semi)) {
Richard Smith68ea3ae2013-02-22 09:06:26 +00001405 ProhibitAttributes(Attrs);
Argyrios Kyrtzidis5641b0d2012-05-16 23:49:15 +00001406 DeclEnd = Tok.getLocation();
Chris Lattner5c5db552010-04-05 18:18:31 +00001407 if (RequireSemi) ConsumeToken();
John McCalld226f652010-08-21 09:40:31 +00001408 Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS_none,
Douglas Gregor312eadb2011-04-24 05:37:28 +00001409 DS);
John McCall54abf7d2009-11-04 02:18:39 +00001410 DS.complete(TheDecl);
Chris Lattner682bf922009-03-29 16:50:03 +00001411 return Actions.ConvertDeclToDeclGroup(TheDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +00001412 }
Chad Rosier8decdee2012-06-26 22:30:43 +00001413
Richard Smith68ea3ae2013-02-22 09:06:26 +00001414 DS.takeAttributesFrom(Attrs);
Chad Rosier8decdee2012-06-26 22:30:43 +00001415 return ParseDeclGroup(DS, Context, /*FunctionDefs=*/ false, &DeclEnd, FRI);
John McCalld8ac0572009-11-03 19:26:08 +00001416}
Mike Stump1eb44332009-09-09 15:08:12 +00001417
Richard Smith0706df42011-10-19 21:33:05 +00001418/// Returns true if this might be the start of a declarator, or a common typo
1419/// for a declarator.
1420bool Parser::MightBeDeclarator(unsigned Context) {
1421 switch (Tok.getKind()) {
1422 case tok::annot_cxxscope:
1423 case tok::annot_template_id:
1424 case tok::caret:
1425 case tok::code_completion:
1426 case tok::coloncolon:
1427 case tok::ellipsis:
1428 case tok::kw___attribute:
1429 case tok::kw_operator:
1430 case tok::l_paren:
1431 case tok::star:
1432 return true;
1433
1434 case tok::amp:
1435 case tok::ampamp:
David Blaikie4e4d0842012-03-11 07:00:24 +00001436 return getLangOpts().CPlusPlus;
Richard Smith0706df42011-10-19 21:33:05 +00001437
Richard Smith1c94c162012-01-09 22:31:44 +00001438 case tok::l_square: // Might be an attribute on an unnamed bit-field.
Richard Smith80ad52f2013-01-02 11:42:31 +00001439 return Context == Declarator::MemberContext && getLangOpts().CPlusPlus11 &&
Richard Smith1c94c162012-01-09 22:31:44 +00001440 NextToken().is(tok::l_square);
1441
1442 case tok::colon: // Might be a typo for '::' or an unnamed bit-field.
David Blaikie4e4d0842012-03-11 07:00:24 +00001443 return Context == Declarator::MemberContext || getLangOpts().CPlusPlus;
Richard Smith1c94c162012-01-09 22:31:44 +00001444
Richard Smith0706df42011-10-19 21:33:05 +00001445 case tok::identifier:
1446 switch (NextToken().getKind()) {
1447 case tok::code_completion:
1448 case tok::coloncolon:
1449 case tok::comma:
1450 case tok::equal:
1451 case tok::equalequal: // Might be a typo for '='.
1452 case tok::kw_alignas:
1453 case tok::kw_asm:
1454 case tok::kw___attribute:
1455 case tok::l_brace:
1456 case tok::l_paren:
1457 case tok::l_square:
1458 case tok::less:
1459 case tok::r_brace:
1460 case tok::r_paren:
1461 case tok::r_square:
1462 case tok::semi:
1463 return true;
1464
1465 case tok::colon:
1466 // At namespace scope, 'identifier:' is probably a typo for 'identifier::'
Richard Smith1c94c162012-01-09 22:31:44 +00001467 // and in block scope it's probably a label. Inside a class definition,
1468 // this is a bit-field.
1469 return Context == Declarator::MemberContext ||
David Blaikie4e4d0842012-03-11 07:00:24 +00001470 (getLangOpts().CPlusPlus && Context == Declarator::FileContext);
Richard Smith1c94c162012-01-09 22:31:44 +00001471
1472 case tok::identifier: // Possible virt-specifier.
Richard Smith4e24f0f2013-01-02 12:01:23 +00001473 return getLangOpts().CPlusPlus11 && isCXX11VirtSpecifier(NextToken());
Richard Smith0706df42011-10-19 21:33:05 +00001474
1475 default:
1476 return false;
1477 }
1478
1479 default:
1480 return false;
1481 }
1482}
1483
Richard Smith994d73f2012-04-11 20:59:20 +00001484/// Skip until we reach something which seems like a sensible place to pick
1485/// up parsing after a malformed declaration. This will sometimes stop sooner
1486/// than SkipUntil(tok::r_brace) would, but will never stop later.
1487void Parser::SkipMalformedDecl() {
1488 while (true) {
1489 switch (Tok.getKind()) {
1490 case tok::l_brace:
1491 // Skip until matching }, then stop. We've probably skipped over
1492 // a malformed class or function definition or similar.
1493 ConsumeBrace();
1494 SkipUntil(tok::r_brace, /*StopAtSemi*/false);
1495 if (Tok.is(tok::comma) || Tok.is(tok::l_brace) || Tok.is(tok::kw_try)) {
1496 // This declaration isn't over yet. Keep skipping.
1497 continue;
1498 }
1499 if (Tok.is(tok::semi))
1500 ConsumeToken();
1501 return;
1502
1503 case tok::l_square:
1504 ConsumeBracket();
1505 SkipUntil(tok::r_square, /*StopAtSemi*/false);
1506 continue;
1507
1508 case tok::l_paren:
1509 ConsumeParen();
1510 SkipUntil(tok::r_paren, /*StopAtSemi*/false);
1511 continue;
1512
1513 case tok::r_brace:
1514 return;
1515
1516 case tok::semi:
1517 ConsumeToken();
1518 return;
1519
1520 case tok::kw_inline:
1521 // 'inline namespace' at the start of a line is almost certainly
Jordan Rose94f29f42012-07-09 16:54:53 +00001522 // a good place to pick back up parsing, except in an Objective-C
1523 // @interface context.
1524 if (Tok.isAtStartOfLine() && NextToken().is(tok::kw_namespace) &&
1525 (!ParsingInObjCContainer || CurParsedObjCImpl))
Richard Smith994d73f2012-04-11 20:59:20 +00001526 return;
1527 break;
1528
1529 case tok::kw_namespace:
1530 // 'namespace' at the start of a line is almost certainly a good
Jordan Rose94f29f42012-07-09 16:54:53 +00001531 // place to pick back up parsing, except in an Objective-C
1532 // @interface context.
1533 if (Tok.isAtStartOfLine() &&
1534 (!ParsingInObjCContainer || CurParsedObjCImpl))
1535 return;
1536 break;
1537
1538 case tok::at:
1539 // @end is very much like } in Objective-C contexts.
1540 if (NextToken().isObjCAtKeyword(tok::objc_end) &&
1541 ParsingInObjCContainer)
1542 return;
1543 break;
1544
1545 case tok::minus:
1546 case tok::plus:
1547 // - and + probably start new method declarations in Objective-C contexts.
1548 if (Tok.isAtStartOfLine() && ParsingInObjCContainer)
Richard Smith994d73f2012-04-11 20:59:20 +00001549 return;
1550 break;
1551
1552 case tok::eof:
1553 return;
1554
1555 default:
1556 break;
1557 }
1558
1559 ConsumeAnyToken();
1560 }
1561}
1562
John McCalld8ac0572009-11-03 19:26:08 +00001563/// ParseDeclGroup - Having concluded that this is either a function
1564/// definition or a group of object declarations, actually parse the
1565/// result.
John McCall54abf7d2009-11-04 02:18:39 +00001566Parser::DeclGroupPtrTy Parser::ParseDeclGroup(ParsingDeclSpec &DS,
1567 unsigned Context,
John McCalld8ac0572009-11-03 19:26:08 +00001568 bool AllowFunctionDefinitions,
Richard Smithad762fc2011-04-14 22:09:26 +00001569 SourceLocation *DeclEnd,
1570 ForRangeInit *FRI) {
John McCalld8ac0572009-11-03 19:26:08 +00001571 // Parse the first declarator.
John McCall54abf7d2009-11-04 02:18:39 +00001572 ParsingDeclarator D(*this, DS, static_cast<Declarator::TheContext>(Context));
John McCalld8ac0572009-11-03 19:26:08 +00001573 ParseDeclarator(D);
Chris Lattnercd147752009-03-29 17:27:48 +00001574
John McCalld8ac0572009-11-03 19:26:08 +00001575 // Bail out if the first declarator didn't seem well-formed.
1576 if (!D.hasName() && !D.mayOmitIdentifier()) {
Richard Smith994d73f2012-04-11 20:59:20 +00001577 SkipMalformedDecl();
John McCalld8ac0572009-11-03 19:26:08 +00001578 return DeclGroupPtrTy();
Chris Lattner23c4b182009-03-29 17:18:04 +00001579 }
Mike Stump1eb44332009-09-09 15:08:12 +00001580
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001581 // Save late-parsed attributes for now; they need to be parsed in the
1582 // appropriate function scope after the function Decl has been constructed.
DeLesley Hutchins161db022012-11-02 21:44:32 +00001583 // These will be parsed in ParseFunctionDefinition or ParseLexedAttrList.
1584 LateParsedAttrList LateParsedAttrs(true);
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001585 if (D.isFunctionDeclarator())
1586 MaybeParseGNUAttributes(D, &LateParsedAttrs);
1587
Chris Lattnerc82daef2010-07-11 22:24:20 +00001588 // Check to see if we have a function *definition* which must have a body.
Douglas Gregorb004a8e2013-04-16 16:01:32 +00001589 if (D.isFunctionDeclarator() &&
Chris Lattnerc82daef2010-07-11 22:24:20 +00001590 // Look at the next token to make sure that this isn't a function
1591 // declaration. We have to check this because __attribute__ might be the
1592 // start of a function definition in GCC-extended K&R C.
Fariborz Jahanianbe1d4ec2012-08-10 15:54:40 +00001593 !isDeclarationAfterDeclarator()) {
Chad Rosier8decdee2012-06-26 22:30:43 +00001594
Douglas Gregorb004a8e2013-04-16 16:01:32 +00001595 if (AllowFunctionDefinitions) {
1596 if (isStartOfFunctionDefinition(D)) {
1597 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
1598 Diag(Tok, diag::err_function_declared_typedef);
John McCalld8ac0572009-11-03 19:26:08 +00001599
Douglas Gregorb004a8e2013-04-16 16:01:32 +00001600 // Recover by treating the 'typedef' as spurious.
1601 DS.ClearStorageClassSpecs();
1602 }
1603
1604 Decl *TheDecl =
1605 ParseFunctionDefinition(D, ParsedTemplateInfo(), &LateParsedAttrs);
1606 return Actions.ConvertDeclToDeclGroup(TheDecl);
John McCalld8ac0572009-11-03 19:26:08 +00001607 }
1608
Douglas Gregorb004a8e2013-04-16 16:01:32 +00001609 if (isDeclarationSpecifier()) {
1610 // If there is an invalid declaration specifier right after the function
1611 // prototype, then we must be in a missing semicolon case where this isn't
1612 // actually a body. Just fall through into the code that handles it as a
1613 // prototype, and let the top-level code handle the erroneous declspec
1614 // where it would otherwise expect a comma or semicolon.
1615 } else {
1616 Diag(Tok, diag::err_expected_fn_body);
1617 SkipUntil(tok::semi);
1618 return DeclGroupPtrTy();
1619 }
John McCalld8ac0572009-11-03 19:26:08 +00001620 } else {
Douglas Gregorb004a8e2013-04-16 16:01:32 +00001621 if (Tok.is(tok::l_brace)) {
1622 Diag(Tok, diag::err_function_definition_not_allowed);
1623 SkipUntil(tok::r_brace, true, true);
1624 }
John McCalld8ac0572009-11-03 19:26:08 +00001625 }
1626 }
1627
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001628 if (ParseAsmAttributesAfterDeclarator(D))
Richard Smithad762fc2011-04-14 22:09:26 +00001629 return DeclGroupPtrTy();
1630
1631 // C++0x [stmt.iter]p1: Check if we have a for-range-declarator. If so, we
1632 // must parse and analyze the for-range-initializer before the declaration is
1633 // analyzed.
Douglas Gregor12849d02013-04-08 20:52:24 +00001634 //
1635 // Handle the Objective-C for-in loop variable similarly, although we
1636 // don't need to parse the container in advance.
1637 if (FRI && (Tok.is(tok::colon) || isTokIdentifier_in())) {
1638 bool IsForRangeLoop = false;
1639 if (Tok.is(tok::colon)) {
1640 IsForRangeLoop = true;
1641 FRI->ColonLoc = ConsumeToken();
1642 if (Tok.is(tok::l_brace))
1643 FRI->RangeExpr = ParseBraceInitializer();
1644 else
1645 FRI->RangeExpr = ParseExpression();
1646 }
1647
Richard Smithad762fc2011-04-14 22:09:26 +00001648 Decl *ThisDecl = Actions.ActOnDeclarator(getCurScope(), D);
Douglas Gregor12849d02013-04-08 20:52:24 +00001649 if (IsForRangeLoop)
1650 Actions.ActOnCXXForRangeDecl(ThisDecl);
Richard Smithad762fc2011-04-14 22:09:26 +00001651 Actions.FinalizeDeclaration(ThisDecl);
John McCall6895a642012-01-27 01:29:43 +00001652 D.complete(ThisDecl);
Rafael Espindola4549d7f2013-07-09 12:05:01 +00001653 return Actions.FinalizeDeclaratorGroup(getCurScope(), DS, ThisDecl);
Richard Smithad762fc2011-04-14 22:09:26 +00001654 }
1655
Chris Lattner5f9e2722011-07-23 10:55:15 +00001656 SmallVector<Decl *, 8> DeclsInGroup;
Richard Smithad762fc2011-04-14 22:09:26 +00001657 Decl *FirstDecl = ParseDeclarationAfterDeclaratorAndAttributes(D);
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001658 if (LateParsedAttrs.size() > 0)
1659 ParseLexedAttributeList(LateParsedAttrs, FirstDecl, true, false);
John McCall54abf7d2009-11-04 02:18:39 +00001660 D.complete(FirstDecl);
John McCalld226f652010-08-21 09:40:31 +00001661 if (FirstDecl)
John McCalld8ac0572009-11-03 19:26:08 +00001662 DeclsInGroup.push_back(FirstDecl);
1663
Richard Smith0706df42011-10-19 21:33:05 +00001664 bool ExpectSemi = Context != Declarator::ForContext;
Fariborz Jahanian6c89eaf2012-07-02 23:37:09 +00001665
John McCalld8ac0572009-11-03 19:26:08 +00001666 // If we don't have a comma, it is either the end of the list (a ';') or an
1667 // error, bail out.
1668 while (Tok.is(tok::comma)) {
Richard Smith0706df42011-10-19 21:33:05 +00001669 SourceLocation CommaLoc = ConsumeToken();
1670
1671 if (Tok.isAtStartOfLine() && ExpectSemi && !MightBeDeclarator(Context)) {
1672 // This comma was followed by a line-break and something which can't be
1673 // the start of a declarator. The comma was probably a typo for a
1674 // semicolon.
1675 Diag(CommaLoc, diag::err_expected_semi_declaration)
1676 << FixItHint::CreateReplacement(CommaLoc, ";");
1677 ExpectSemi = false;
1678 break;
1679 }
John McCalld8ac0572009-11-03 19:26:08 +00001680
1681 // Parse the next declarator.
1682 D.clear();
Richard Smith7984de32012-01-12 23:53:29 +00001683 D.setCommaLoc(CommaLoc);
John McCalld8ac0572009-11-03 19:26:08 +00001684
1685 // Accept attributes in an init-declarator. In the first declarator in a
1686 // declaration, these would be part of the declspec. In subsequent
1687 // declarators, they become part of the declarator itself, so that they
1688 // don't apply to declarators after *this* one. Examples:
1689 // short __attribute__((common)) var; -> declspec
1690 // short var __attribute__((common)); -> declarator
1691 // short x, __attribute__((common)) var; -> declarator
John McCall7f040a92010-12-24 02:08:15 +00001692 MaybeParseGNUAttributes(D);
John McCalld8ac0572009-11-03 19:26:08 +00001693
1694 ParseDeclarator(D);
Fariborz Jahanian9baf39d2012-01-13 00:14:12 +00001695 if (!D.isInvalidType()) {
1696 Decl *ThisDecl = ParseDeclarationAfterDeclarator(D);
1697 D.complete(ThisDecl);
1698 if (ThisDecl)
Chad Rosier8decdee2012-06-26 22:30:43 +00001699 DeclsInGroup.push_back(ThisDecl);
Fariborz Jahanian9baf39d2012-01-13 00:14:12 +00001700 }
John McCalld8ac0572009-11-03 19:26:08 +00001701 }
1702
1703 if (DeclEnd)
1704 *DeclEnd = Tok.getLocation();
1705
Richard Smith0706df42011-10-19 21:33:05 +00001706 if (ExpectSemi &&
Chris Lattner8bb21d32012-04-28 16:12:17 +00001707 ExpectAndConsumeSemi(Context == Declarator::FileContext
1708 ? diag::err_invalid_token_after_toplevel_declarator
1709 : diag::err_expected_semi_declaration)) {
Chris Lattner004659a2010-07-11 22:42:07 +00001710 // Okay, there was no semicolon and one was expected. If we see a
1711 // declaration specifier, just assume it was missing and continue parsing.
1712 // Otherwise things are very confused and we skip to recover.
1713 if (!isDeclarationSpecifier()) {
1714 SkipUntil(tok::r_brace, true, true);
1715 if (Tok.is(tok::semi))
1716 ConsumeToken();
1717 }
John McCalld8ac0572009-11-03 19:26:08 +00001718 }
1719
Rafael Espindola4549d7f2013-07-09 12:05:01 +00001720 return Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup);
Reid Spencer5f016e22007-07-11 17:01:13 +00001721}
1722
Richard Smithad762fc2011-04-14 22:09:26 +00001723/// Parse an optional simple-asm-expr and attributes, and attach them to a
1724/// declarator. Returns true on an error.
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001725bool Parser::ParseAsmAttributesAfterDeclarator(Declarator &D) {
Richard Smithad762fc2011-04-14 22:09:26 +00001726 // If a simple-asm-expr is present, parse it.
1727 if (Tok.is(tok::kw_asm)) {
1728 SourceLocation Loc;
1729 ExprResult AsmLabel(ParseSimpleAsm(&Loc));
1730 if (AsmLabel.isInvalid()) {
1731 SkipUntil(tok::semi, true, true);
1732 return true;
1733 }
1734
1735 D.setAsmLabel(AsmLabel.release());
1736 D.SetRangeEnd(Loc);
1737 }
1738
1739 MaybeParseGNUAttributes(D);
1740 return false;
1741}
1742
Douglas Gregor1426e532009-05-12 21:31:51 +00001743/// \brief Parse 'declaration' after parsing 'declaration-specifiers
1744/// declarator'. This method parses the remainder of the declaration
1745/// (including any attributes or initializer, among other things) and
1746/// finalizes the declaration.
Reid Spencer5f016e22007-07-11 17:01:13 +00001747///
Reid Spencer5f016e22007-07-11 17:01:13 +00001748/// init-declarator: [C99 6.7]
1749/// declarator
1750/// declarator '=' initializer
1751/// [GNU] declarator simple-asm-expr[opt] attributes[opt]
1752/// [GNU] declarator simple-asm-expr[opt] attributes[opt] '=' initializer
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00001753/// [C++] declarator initializer[opt]
1754///
1755/// [C++] initializer:
1756/// [C++] '=' initializer-clause
1757/// [C++] '(' expression-list ')'
Sebastian Redl50de12f2009-03-24 22:27:57 +00001758/// [C++0x] '=' 'default' [TODO]
1759/// [C++0x] '=' 'delete'
Sebastian Redldbef1bb2011-06-05 12:23:16 +00001760/// [C++0x] braced-init-list
Sebastian Redl50de12f2009-03-24 22:27:57 +00001761///
1762/// According to the standard grammar, =default and =delete are function
1763/// definitions, but that definitely doesn't fit with the parser here.
Reid Spencer5f016e22007-07-11 17:01:13 +00001764///
John McCalld226f652010-08-21 09:40:31 +00001765Decl *Parser::ParseDeclarationAfterDeclarator(Declarator &D,
Douglas Gregore542c862009-06-23 23:11:28 +00001766 const ParsedTemplateInfo &TemplateInfo) {
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001767 if (ParseAsmAttributesAfterDeclarator(D))
Richard Smithad762fc2011-04-14 22:09:26 +00001768 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001769
Richard Smithad762fc2011-04-14 22:09:26 +00001770 return ParseDeclarationAfterDeclaratorAndAttributes(D, TemplateInfo);
1771}
Mike Stump1eb44332009-09-09 15:08:12 +00001772
Richard Smithad762fc2011-04-14 22:09:26 +00001773Decl *Parser::ParseDeclarationAfterDeclaratorAndAttributes(Declarator &D,
1774 const ParsedTemplateInfo &TemplateInfo) {
Douglas Gregor1426e532009-05-12 21:31:51 +00001775 // Inform the current actions module that we just parsed this declarator.
John McCalld226f652010-08-21 09:40:31 +00001776 Decl *ThisDecl = 0;
Douglas Gregord5a423b2009-09-25 18:43:00 +00001777 switch (TemplateInfo.Kind) {
1778 case ParsedTemplateInfo::NonTemplate:
Douglas Gregor23c94db2010-07-02 17:43:08 +00001779 ThisDecl = Actions.ActOnDeclarator(getCurScope(), D);
Douglas Gregord5a423b2009-09-25 18:43:00 +00001780 break;
Chad Rosier8decdee2012-06-26 22:30:43 +00001781
Douglas Gregord5a423b2009-09-25 18:43:00 +00001782 case ParsedTemplateInfo::Template:
Larisse Voufoef4579c2013-08-06 01:03:05 +00001783 case ParsedTemplateInfo::ExplicitSpecialization: {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001784 ThisDecl = Actions.ActOnTemplateDeclarator(getCurScope(),
Benjamin Kramer5354e772012-08-23 23:38:35 +00001785 *TemplateInfo.TemplateParams,
Douglas Gregord5a423b2009-09-25 18:43:00 +00001786 D);
Larisse Voufo25218132013-08-06 07:33:00 +00001787 if (VarTemplateDecl *VT = dyn_cast_or_null<VarTemplateDecl>(ThisDecl))
Larisse Voufoef4579c2013-08-06 01:03:05 +00001788 // Re-direct this decl to refer to the templated decl so that we can
1789 // initialize it.
1790 ThisDecl = VT->getTemplatedDecl();
1791 break;
1792 }
1793 case ParsedTemplateInfo::ExplicitInstantiation: {
1794 if (Tok.is(tok::semi)) {
1795 DeclResult ThisRes = Actions.ActOnExplicitInstantiation(
1796 getCurScope(), TemplateInfo.ExternLoc, TemplateInfo.TemplateLoc, D);
1797 if (ThisRes.isInvalid()) {
1798 SkipUntil(tok::semi, true, true);
1799 return 0;
1800 }
1801 ThisDecl = ThisRes.get();
1802 } else {
1803 // FIXME: This check should be for a variable template instantiation only.
1804
1805 // Check that this is a valid instantiation
1806 if (D.getName().getKind() != UnqualifiedId::IK_TemplateId) {
1807 // If the declarator-id is not a template-id, issue a diagnostic and
1808 // recover by ignoring the 'template' keyword.
1809 Diag(Tok, diag::err_template_defn_explicit_instantiation)
1810 << 2 << FixItHint::CreateRemoval(TemplateInfo.TemplateLoc);
1811 ThisDecl = Actions.ActOnDeclarator(getCurScope(), D);
1812 } else {
1813 SourceLocation LAngleLoc =
1814 PP.getLocForEndOfToken(TemplateInfo.TemplateLoc);
1815 Diag(D.getIdentifierLoc(),
1816 diag::err_explicit_instantiation_with_definition)
1817 << SourceRange(TemplateInfo.TemplateLoc)
1818 << FixItHint::CreateInsertion(LAngleLoc, "<>");
1819
1820 // Recover as if it were an explicit specialization.
1821 TemplateParameterLists FakedParamLists;
1822 FakedParamLists.push_back(Actions.ActOnTemplateParameterList(
1823 0, SourceLocation(), TemplateInfo.TemplateLoc, LAngleLoc, 0, 0,
1824 LAngleLoc));
1825
1826 ThisDecl =
1827 Actions.ActOnTemplateDeclarator(getCurScope(), FakedParamLists, D);
1828 }
1829 }
Douglas Gregord5a423b2009-09-25 18:43:00 +00001830 break;
1831 }
1832 }
Mike Stump1eb44332009-09-09 15:08:12 +00001833
Richard Smitha2c36462013-04-26 16:15:35 +00001834 bool TypeContainsAuto = D.getDeclSpec().containsPlaceholderType();
Richard Smith34b41d92011-02-20 03:19:35 +00001835
Douglas Gregor1426e532009-05-12 21:31:51 +00001836 // Parse declarator '=' initializer.
Richard Trieud6c7c672012-01-18 22:54:52 +00001837 // If a '==' or '+=' is found, suggest a fixit to '='.
Richard Trieufcaf27e2012-01-19 22:01:51 +00001838 if (isTokenEqualOrEqualTypo()) {
Douglas Gregor1426e532009-05-12 21:31:51 +00001839 ConsumeToken();
Larisse Voufoef4579c2013-08-06 01:03:05 +00001840
Anders Carlsson37bf9d22010-09-24 21:25:25 +00001841 if (Tok.is(tok::kw_delete)) {
Sean Hunte4246a62011-05-12 06:15:49 +00001842 if (D.isFunctionDeclarator())
1843 Diag(ConsumeToken(), diag::err_default_delete_in_multiple_declaration)
1844 << 1 /* delete */;
1845 else
1846 Diag(ConsumeToken(), diag::err_deleted_non_function);
Sean Huntfe2695e2011-05-06 01:42:00 +00001847 } else if (Tok.is(tok::kw_default)) {
Sean Hunte4246a62011-05-12 06:15:49 +00001848 if (D.isFunctionDeclarator())
Sebastian Redlecfcd562012-02-11 23:51:21 +00001849 Diag(ConsumeToken(), diag::err_default_delete_in_multiple_declaration)
1850 << 0 /* default */;
Sean Hunte4246a62011-05-12 06:15:49 +00001851 else
1852 Diag(ConsumeToken(), diag::err_default_special_members);
Douglas Gregor1426e532009-05-12 21:31:51 +00001853 } else {
David Blaikie4e4d0842012-03-11 07:00:24 +00001854 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
John McCall731ad842009-12-19 09:28:58 +00001855 EnterScope(0);
Douglas Gregor23c94db2010-07-02 17:43:08 +00001856 Actions.ActOnCXXEnterDeclInitializer(getCurScope(), ThisDecl);
John McCall731ad842009-12-19 09:28:58 +00001857 }
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00001858
Douglas Gregor5ac3bdb2010-05-30 01:49:25 +00001859 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001860 Actions.CodeCompleteInitializer(getCurScope(), ThisDecl);
Peter Collingbourneec98f2f2012-07-27 12:56:09 +00001861 Actions.FinalizeDeclaration(ThisDecl);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001862 cutOffParsing();
1863 return 0;
Douglas Gregor5ac3bdb2010-05-30 01:49:25 +00001864 }
Chad Rosier8decdee2012-06-26 22:30:43 +00001865
John McCall60d7b3a2010-08-24 06:29:42 +00001866 ExprResult Init(ParseInitializer());
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00001867
David Blaikie4e4d0842012-03-11 07:00:24 +00001868 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001869 Actions.ActOnCXXExitDeclInitializer(getCurScope(), ThisDecl);
John McCall731ad842009-12-19 09:28:58 +00001870 ExitScope();
1871 }
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00001872
Douglas Gregor1426e532009-05-12 21:31:51 +00001873 if (Init.isInvalid()) {
Douglas Gregor00225542010-03-01 18:27:54 +00001874 SkipUntil(tok::comma, true, true);
1875 Actions.ActOnInitializerError(ThisDecl);
1876 } else
Richard Smith34b41d92011-02-20 03:19:35 +00001877 Actions.AddInitializerToDecl(ThisDecl, Init.take(),
1878 /*DirectInit=*/false, TypeContainsAuto);
Douglas Gregor1426e532009-05-12 21:31:51 +00001879 }
1880 } else if (Tok.is(tok::l_paren)) {
1881 // Parse C++ direct initializer: '(' expression-list ')'
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001882 BalancedDelimiterTracker T(*this, tok::l_paren);
1883 T.consumeOpen();
1884
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00001885 ExprVector Exprs;
Douglas Gregor1426e532009-05-12 21:31:51 +00001886 CommaLocsTy CommaLocs;
1887
David Blaikie4e4d0842012-03-11 07:00:24 +00001888 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
Douglas Gregorb4debae2009-12-22 17:47:17 +00001889 EnterScope(0);
Douglas Gregor23c94db2010-07-02 17:43:08 +00001890 Actions.ActOnCXXEnterDeclInitializer(getCurScope(), ThisDecl);
Douglas Gregorb4debae2009-12-22 17:47:17 +00001891 }
1892
Douglas Gregor1426e532009-05-12 21:31:51 +00001893 if (ParseExpressionList(Exprs, CommaLocs)) {
David Blaikie3ea19c82012-10-10 23:15:05 +00001894 Actions.ActOnInitializerError(ThisDecl);
Douglas Gregor1426e532009-05-12 21:31:51 +00001895 SkipUntil(tok::r_paren);
Douglas Gregorb4debae2009-12-22 17:47:17 +00001896
David Blaikie4e4d0842012-03-11 07:00:24 +00001897 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001898 Actions.ActOnCXXExitDeclInitializer(getCurScope(), ThisDecl);
Douglas Gregorb4debae2009-12-22 17:47:17 +00001899 ExitScope();
1900 }
Douglas Gregor1426e532009-05-12 21:31:51 +00001901 } else {
1902 // Match the ')'.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001903 T.consumeClose();
Douglas Gregor1426e532009-05-12 21:31:51 +00001904
1905 assert(!Exprs.empty() && Exprs.size()-1 == CommaLocs.size() &&
1906 "Unexpected number of commas!");
Douglas Gregorb4debae2009-12-22 17:47:17 +00001907
David Blaikie4e4d0842012-03-11 07:00:24 +00001908 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001909 Actions.ActOnCXXExitDeclInitializer(getCurScope(), ThisDecl);
Douglas Gregorb4debae2009-12-22 17:47:17 +00001910 ExitScope();
1911 }
1912
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001913 ExprResult Initializer = Actions.ActOnParenListExpr(T.getOpenLocation(),
1914 T.getCloseLocation(),
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00001915 Exprs);
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001916 Actions.AddInitializerToDecl(ThisDecl, Initializer.take(),
1917 /*DirectInit=*/true, TypeContainsAuto);
Douglas Gregor1426e532009-05-12 21:31:51 +00001918 }
Richard Smith80ad52f2013-01-02 11:42:31 +00001919 } else if (getLangOpts().CPlusPlus11 && Tok.is(tok::l_brace) &&
Fariborz Jahanianb0ed95c2012-07-03 23:22:13 +00001920 (!CurParsedObjCImpl || !D.isFunctionDeclarator())) {
Sebastian Redldbef1bb2011-06-05 12:23:16 +00001921 // Parse C++0x braced-init-list.
Richard Smith7fe62082011-10-15 05:09:34 +00001922 Diag(Tok, diag::warn_cxx98_compat_generalized_initializer_lists);
1923
Sebastian Redldbef1bb2011-06-05 12:23:16 +00001924 if (D.getCXXScopeSpec().isSet()) {
1925 EnterScope(0);
1926 Actions.ActOnCXXEnterDeclInitializer(getCurScope(), ThisDecl);
1927 }
1928
1929 ExprResult Init(ParseBraceInitializer());
1930
1931 if (D.getCXXScopeSpec().isSet()) {
1932 Actions.ActOnCXXExitDeclInitializer(getCurScope(), ThisDecl);
1933 ExitScope();
1934 }
1935
1936 if (Init.isInvalid()) {
1937 Actions.ActOnInitializerError(ThisDecl);
1938 } else
1939 Actions.AddInitializerToDecl(ThisDecl, Init.take(),
1940 /*DirectInit=*/true, TypeContainsAuto);
1941
Douglas Gregor1426e532009-05-12 21:31:51 +00001942 } else {
Richard Smith34b41d92011-02-20 03:19:35 +00001943 Actions.ActOnUninitializedDecl(ThisDecl, TypeContainsAuto);
Douglas Gregor1426e532009-05-12 21:31:51 +00001944 }
1945
Richard Smith483b9f32011-02-21 20:05:19 +00001946 Actions.FinalizeDeclaration(ThisDecl);
1947
Douglas Gregor1426e532009-05-12 21:31:51 +00001948 return ThisDecl;
1949}
1950
Reid Spencer5f016e22007-07-11 17:01:13 +00001951/// ParseSpecifierQualifierList
1952/// specifier-qualifier-list:
1953/// type-specifier specifier-qualifier-list[opt]
1954/// type-qualifier specifier-qualifier-list[opt]
1955/// [GNU] attributes specifier-qualifier-list[opt]
1956///
Richard Smith69730c12012-03-12 07:56:15 +00001957void Parser::ParseSpecifierQualifierList(DeclSpec &DS, AccessSpecifier AS,
1958 DeclSpecContext DSC) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001959 /// specifier-qualifier-list is a subset of declaration-specifiers. Just
1960 /// parse declaration-specifiers and complain about extra stuff.
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00001961 /// TODO: diagnose attribute-specifiers and alignment-specifiers.
Richard Smith69730c12012-03-12 07:56:15 +00001962 ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS, DSC);
Mike Stump1eb44332009-09-09 15:08:12 +00001963
Reid Spencer5f016e22007-07-11 17:01:13 +00001964 // Validate declspec for type-name.
1965 unsigned Specs = DS.getParsedSpecifiers();
Richard Smitha971d242012-05-09 20:55:26 +00001966 if ((DSC == DSC_type_specifier || DSC == DSC_trailing) &&
1967 !DS.hasTypeSpecifier()) {
Richard Smith69730c12012-03-12 07:56:15 +00001968 Diag(Tok, diag::err_expected_type);
1969 DS.SetTypeSpecError();
1970 } else if (Specs == DeclSpec::PQ_None && !DS.getNumProtocolQualifiers() &&
1971 !DS.hasAttributes()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001972 Diag(Tok, diag::err_typename_requires_specqual);
Richard Smith69730c12012-03-12 07:56:15 +00001973 if (!DS.hasTypeSpecifier())
1974 DS.SetTypeSpecError();
1975 }
Mike Stump1eb44332009-09-09 15:08:12 +00001976
Reid Spencer5f016e22007-07-11 17:01:13 +00001977 // Issue diagnostic and remove storage class if present.
1978 if (Specs & DeclSpec::PQ_StorageClassSpecifier) {
1979 if (DS.getStorageClassSpecLoc().isValid())
1980 Diag(DS.getStorageClassSpecLoc(),diag::err_typename_invalid_storageclass);
1981 else
Richard Smithec642442013-04-12 22:46:28 +00001982 Diag(DS.getThreadStorageClassSpecLoc(),
1983 diag::err_typename_invalid_storageclass);
Reid Spencer5f016e22007-07-11 17:01:13 +00001984 DS.ClearStorageClassSpecs();
1985 }
Mike Stump1eb44332009-09-09 15:08:12 +00001986
Reid Spencer5f016e22007-07-11 17:01:13 +00001987 // Issue diagnostic and remove function specfier if present.
1988 if (Specs & DeclSpec::PQ_FunctionSpecifier) {
Douglas Gregorb48fe382008-10-31 09:07:45 +00001989 if (DS.isInlineSpecified())
1990 Diag(DS.getInlineSpecLoc(), diag::err_typename_invalid_functionspec);
1991 if (DS.isVirtualSpecified())
1992 Diag(DS.getVirtualSpecLoc(), diag::err_typename_invalid_functionspec);
1993 if (DS.isExplicitSpecified())
1994 Diag(DS.getExplicitSpecLoc(), diag::err_typename_invalid_functionspec);
Reid Spencer5f016e22007-07-11 17:01:13 +00001995 DS.ClearFunctionSpecs();
1996 }
Richard Smith69730c12012-03-12 07:56:15 +00001997
1998 // Issue diagnostic and remove constexpr specfier if present.
1999 if (DS.isConstexprSpecified()) {
2000 Diag(DS.getConstexprSpecLoc(), diag::err_typename_invalid_constexpr);
2001 DS.ClearConstexprSpec();
2002 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002003}
2004
Chris Lattnerc199ab32009-04-12 20:42:31 +00002005/// isValidAfterIdentifierInDeclaratorAfterDeclSpec - Return true if the
2006/// specified token is valid after the identifier in a declarator which
2007/// immediately follows the declspec. For example, these things are valid:
2008///
2009/// int x [ 4]; // direct-declarator
2010/// int x ( int y); // direct-declarator
2011/// int(int x ) // direct-declarator
2012/// int x ; // simple-declaration
2013/// int x = 17; // init-declarator-list
2014/// int x , y; // init-declarator-list
2015/// int x __asm__ ("foo"); // init-declarator-list
Chris Lattnerb6645dd2009-04-14 21:16:09 +00002016/// int x : 4; // struct-declarator
Chris Lattnerc83c27a2009-04-12 22:29:43 +00002017/// int x { 5}; // C++'0x unified initializers
Chris Lattnerc199ab32009-04-12 20:42:31 +00002018///
2019/// This is not, because 'x' does not immediately follow the declspec (though
2020/// ')' happens to be valid anyway).
2021/// int (x)
2022///
2023static bool isValidAfterIdentifierInDeclarator(const Token &T) {
2024 return T.is(tok::l_square) || T.is(tok::l_paren) || T.is(tok::r_paren) ||
2025 T.is(tok::semi) || T.is(tok::comma) || T.is(tok::equal) ||
Chris Lattnerb6645dd2009-04-14 21:16:09 +00002026 T.is(tok::kw_asm) || T.is(tok::l_brace) || T.is(tok::colon);
Chris Lattnerc199ab32009-04-12 20:42:31 +00002027}
2028
Chris Lattnere40c2952009-04-14 21:34:55 +00002029
2030/// ParseImplicitInt - This method is called when we have an non-typename
2031/// identifier in a declspec (which normally terminates the decl spec) when
2032/// the declspec has no type specifier. In this case, the declspec is either
2033/// malformed or is "implicit int" (in K&R and C89).
2034///
2035/// This method handles diagnosing this prettily and returns false if the
2036/// declspec is done being processed. If it recovers and thinks there may be
2037/// other pieces of declspec after it, it returns true.
2038///
Chris Lattnerf4382f52009-04-14 22:17:06 +00002039bool Parser::ParseImplicitInt(DeclSpec &DS, CXXScopeSpec *SS,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00002040 const ParsedTemplateInfo &TemplateInfo,
Michael Han2e397132012-11-26 22:54:45 +00002041 AccessSpecifier AS, DeclSpecContext DSC,
2042 ParsedAttributesWithRange &Attrs) {
Chris Lattnerf4382f52009-04-14 22:17:06 +00002043 assert(Tok.is(tok::identifier) && "should have identifier");
Mike Stump1eb44332009-09-09 15:08:12 +00002044
Chris Lattnere40c2952009-04-14 21:34:55 +00002045 SourceLocation Loc = Tok.getLocation();
2046 // If we see an identifier that is not a type name, we normally would
2047 // parse it as the identifer being declared. However, when a typename
2048 // is typo'd or the definition is not included, this will incorrectly
2049 // parse the typename as the identifier name and fall over misparsing
2050 // later parts of the diagnostic.
2051 //
2052 // As such, we try to do some look-ahead in cases where this would
2053 // otherwise be an "implicit-int" case to see if this is invalid. For
2054 // example: "static foo_t x = 4;" In this case, if we parsed foo_t as
2055 // an identifier with implicit int, we'd get a parse error because the
2056 // next token is obviously invalid for a type. Parse these as a case
2057 // with an invalid type specifier.
2058 assert(!DS.hasTypeSpecifier() && "Type specifier checked above");
Mike Stump1eb44332009-09-09 15:08:12 +00002059
Chris Lattnere40c2952009-04-14 21:34:55 +00002060 // Since we know that this either implicit int (which is rare) or an
Richard Smith827adaf2012-05-15 21:01:51 +00002061 // error, do lookahead to try to do better recovery. This never applies
2062 // within a type specifier. Outside of C++, we allow this even if the
2063 // language doesn't "officially" support implicit int -- we support
Richard Smith58eb3702013-04-30 22:43:51 +00002064 // implicit int as an extension in C99 and C11.
Richard Smitha971d242012-05-09 20:55:26 +00002065 if (DSC != DSC_type_specifier && DSC != DSC_trailing &&
Richard Smith58eb3702013-04-30 22:43:51 +00002066 !getLangOpts().CPlusPlus &&
Richard Smith69730c12012-03-12 07:56:15 +00002067 isValidAfterIdentifierInDeclarator(NextToken())) {
Chris Lattnere40c2952009-04-14 21:34:55 +00002068 // If this token is valid for implicit int, e.g. "static x = 4", then
2069 // we just avoid eating the identifier, so it will be parsed as the
2070 // identifier in the declarator.
2071 return false;
2072 }
Mike Stump1eb44332009-09-09 15:08:12 +00002073
Richard Smith827adaf2012-05-15 21:01:51 +00002074 if (getLangOpts().CPlusPlus &&
2075 DS.getStorageClassSpec() == DeclSpec::SCS_auto) {
2076 // Don't require a type specifier if we have the 'auto' storage class
2077 // specifier in C++98 -- we'll promote it to a type specifier.
Richard Smithb79b17b2013-10-15 00:00:26 +00002078 if (SS)
2079 AnnotateScopeToken(*SS, /*IsNewAnnotation*/false);
Richard Smith827adaf2012-05-15 21:01:51 +00002080 return false;
2081 }
2082
Chris Lattnere40c2952009-04-14 21:34:55 +00002083 // Otherwise, if we don't consume this token, we are going to emit an
2084 // error anyway. Try to recover from various common problems. Check
2085 // to see if this was a reference to a tag name without a tag specified.
2086 // This is a common problem in C (saying 'foo' instead of 'struct foo').
Chris Lattnerf4382f52009-04-14 22:17:06 +00002087 //
2088 // C++ doesn't need this, and isTagName doesn't take SS.
2089 if (SS == 0) {
Argyrios Kyrtzidisb8a9d3b2011-04-21 17:29:47 +00002090 const char *TagName = 0, *FixitTagName = 0;
Chris Lattnerf4382f52009-04-14 22:17:06 +00002091 tok::TokenKind TagKind = tok::unknown;
Mike Stump1eb44332009-09-09 15:08:12 +00002092
Douglas Gregor23c94db2010-07-02 17:43:08 +00002093 switch (Actions.isTagName(*Tok.getIdentifierInfo(), getCurScope())) {
Chris Lattnere40c2952009-04-14 21:34:55 +00002094 default: break;
Argyrios Kyrtzidisb8a9d3b2011-04-21 17:29:47 +00002095 case DeclSpec::TST_enum:
2096 TagName="enum" ; FixitTagName = "enum " ; TagKind=tok::kw_enum ;break;
2097 case DeclSpec::TST_union:
2098 TagName="union" ; FixitTagName = "union " ;TagKind=tok::kw_union ;break;
2099 case DeclSpec::TST_struct:
2100 TagName="struct"; FixitTagName = "struct ";TagKind=tok::kw_struct;break;
Joao Matos6666ed42012-08-31 18:45:21 +00002101 case DeclSpec::TST_interface:
2102 TagName="__interface"; FixitTagName = "__interface ";
2103 TagKind=tok::kw___interface;break;
Argyrios Kyrtzidisb8a9d3b2011-04-21 17:29:47 +00002104 case DeclSpec::TST_class:
2105 TagName="class" ; FixitTagName = "class " ;TagKind=tok::kw_class ;break;
Chris Lattnere40c2952009-04-14 21:34:55 +00002106 }
Mike Stump1eb44332009-09-09 15:08:12 +00002107
Chris Lattnerf4382f52009-04-14 22:17:06 +00002108 if (TagName) {
Kaelyn Uhrainaec2ac62012-04-26 23:36:17 +00002109 IdentifierInfo *TokenName = Tok.getIdentifierInfo();
2110 LookupResult R(Actions, TokenName, SourceLocation(),
2111 Sema::LookupOrdinaryName);
2112
Chris Lattnerf4382f52009-04-14 22:17:06 +00002113 Diag(Loc, diag::err_use_of_tag_name_without_tag)
Kaelyn Uhrainaec2ac62012-04-26 23:36:17 +00002114 << TokenName << TagName << getLangOpts().CPlusPlus
2115 << FixItHint::CreateInsertion(Tok.getLocation(), FixitTagName);
2116
2117 if (Actions.LookupParsedName(R, getCurScope(), SS)) {
2118 for (LookupResult::iterator I = R.begin(), IEnd = R.end();
2119 I != IEnd; ++I)
Kaelyn Uhrain392b3f52012-04-27 18:26:49 +00002120 Diag((*I)->getLocation(), diag::note_decl_hiding_tag_type)
Kaelyn Uhrainaec2ac62012-04-26 23:36:17 +00002121 << TokenName << TagName;
2122 }
Mike Stump1eb44332009-09-09 15:08:12 +00002123
Chris Lattnerf4382f52009-04-14 22:17:06 +00002124 // Parse this as a tag as if the missing tag were present.
2125 if (TagKind == tok::kw_enum)
Richard Smith69730c12012-03-12 07:56:15 +00002126 ParseEnumSpecifier(Loc, DS, TemplateInfo, AS, DSC_normal);
Chris Lattnerf4382f52009-04-14 22:17:06 +00002127 else
Richard Smith69730c12012-03-12 07:56:15 +00002128 ParseClassSpecifier(TagKind, Loc, DS, TemplateInfo, AS,
Michael Han2e397132012-11-26 22:54:45 +00002129 /*EnteringContext*/ false, DSC_normal, Attrs);
Chris Lattnerf4382f52009-04-14 22:17:06 +00002130 return true;
2131 }
Chris Lattnere40c2952009-04-14 21:34:55 +00002132 }
Mike Stump1eb44332009-09-09 15:08:12 +00002133
Richard Smith8f0a7e72012-05-15 21:29:55 +00002134 // Determine whether this identifier could plausibly be the name of something
Richard Smith7514db22012-05-15 21:42:17 +00002135 // being declared (with a missing type).
Richard Smith8f0a7e72012-05-15 21:29:55 +00002136 if (DSC != DSC_type_specifier && DSC != DSC_trailing &&
2137 (!SS || DSC == DSC_top_level || DSC == DSC_class)) {
Richard Smith827adaf2012-05-15 21:01:51 +00002138 // Look ahead to the next token to try to figure out what this declaration
2139 // was supposed to be.
2140 switch (NextToken().getKind()) {
Richard Smith827adaf2012-05-15 21:01:51 +00002141 case tok::l_paren: {
2142 // static x(4); // 'x' is not a type
2143 // x(int n); // 'x' is not a type
2144 // x (*p)[]; // 'x' is a type
2145 //
2146 // Since we're in an error case (or the rare 'implicit int in C++' MS
2147 // extension), we can afford to perform a tentative parse to determine
2148 // which case we're in.
2149 TentativeParsingAction PA(*this);
2150 ConsumeToken();
2151 TPResult TPR = TryParseDeclarator(/*mayBeAbstract*/false);
2152 PA.Revert();
Richard Smithb79b17b2013-10-15 00:00:26 +00002153
2154 if (TPR != TPResult::False()) {
2155 // The identifier is followed by a parenthesized declarator.
2156 // It's supposed to be a type.
2157 break;
2158 }
2159
2160 // If we're in a context where we could be declaring a constructor,
2161 // check whether this is a constructor declaration with a bogus name.
2162 if (DSC == DSC_class || (DSC == DSC_top_level && SS)) {
2163 IdentifierInfo *II = Tok.getIdentifierInfo();
2164 if (Actions.isCurrentClassNameTypo(II, SS)) {
2165 Diag(Loc, diag::err_constructor_bad_name)
2166 << Tok.getIdentifierInfo() << II
2167 << FixItHint::CreateReplacement(Tok.getLocation(), II->getName());
2168 Tok.setIdentifierInfo(II);
2169 }
2170 }
2171 // Fall through.
Richard Smith827adaf2012-05-15 21:01:51 +00002172 }
Richard Smithb79b17b2013-10-15 00:00:26 +00002173 case tok::comma:
2174 case tok::equal:
2175 case tok::kw_asm:
2176 case tok::l_brace:
2177 case tok::l_square:
2178 case tok::semi:
2179 // This looks like a variable or function declaration. The type is
2180 // probably missing. We're done parsing decl-specifiers.
2181 if (SS)
2182 AnnotateScopeToken(*SS, /*IsNewAnnotation*/false);
2183 return false;
Richard Smith827adaf2012-05-15 21:01:51 +00002184
2185 default:
2186 // This is probably supposed to be a type. This includes cases like:
2187 // int f(itn);
2188 // struct S { unsinged : 4; };
2189 break;
2190 }
2191 }
2192
Chad Rosier8decdee2012-06-26 22:30:43 +00002193 // This is almost certainly an invalid type name. Let the action emit a
Douglas Gregora786fdb2009-10-13 23:27:22 +00002194 // diagnostic and attempt to recover.
John McCallb3d87482010-08-24 05:47:05 +00002195 ParsedType T;
Kaelyn Uhrain50dc12a2012-06-15 23:45:58 +00002196 IdentifierInfo *II = Tok.getIdentifierInfo();
2197 if (Actions.DiagnoseUnknownTypeName(II, Loc, getCurScope(), SS, T)) {
Douglas Gregora786fdb2009-10-13 23:27:22 +00002198 // The action emitted a diagnostic, so we don't have to.
2199 if (T) {
2200 // The action has suggested that the type T could be used. Set that as
2201 // the type in the declaration specifiers, consume the would-be type
2202 // name token, and we're done.
2203 const char *PrevSpec;
2204 unsigned DiagID;
John McCallb3d87482010-08-24 05:47:05 +00002205 DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec, DiagID, T);
Douglas Gregora786fdb2009-10-13 23:27:22 +00002206 DS.SetRangeEnd(Tok.getLocation());
2207 ConsumeToken();
Kaelyn Uhrain50dc12a2012-06-15 23:45:58 +00002208 // There may be other declaration specifiers after this.
2209 return true;
2210 } else if (II != Tok.getIdentifierInfo()) {
2211 // If no type was suggested, the correction is to a keyword
2212 Tok.setKind(II->getTokenID());
Douglas Gregora786fdb2009-10-13 23:27:22 +00002213 // There may be other declaration specifiers after this.
2214 return true;
2215 }
Chad Rosier8decdee2012-06-26 22:30:43 +00002216
Douglas Gregora786fdb2009-10-13 23:27:22 +00002217 // Fall through; the action had no suggestion for us.
2218 } else {
2219 // The action did not emit a diagnostic, so emit one now.
2220 SourceRange R;
2221 if (SS) R = SS->getRange();
2222 Diag(Loc, diag::err_unknown_typename) << Tok.getIdentifierInfo() << R;
2223 }
Mike Stump1eb44332009-09-09 15:08:12 +00002224
Douglas Gregora786fdb2009-10-13 23:27:22 +00002225 // Mark this as an error.
Richard Smith69730c12012-03-12 07:56:15 +00002226 DS.SetTypeSpecError();
Chris Lattnere40c2952009-04-14 21:34:55 +00002227 DS.SetRangeEnd(Tok.getLocation());
2228 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00002229
Chris Lattnere40c2952009-04-14 21:34:55 +00002230 // TODO: Could inject an invalid typedef decl in an enclosing scope to
2231 // avoid rippling error messages on subsequent uses of the same type,
2232 // could be useful if #include was forgotten.
2233 return false;
2234}
2235
Douglas Gregor0efc2c12010-01-13 17:31:36 +00002236/// \brief Determine the declaration specifier context from the declarator
2237/// context.
2238///
2239/// \param Context the declarator context, which is one of the
2240/// Declarator::TheContext enumerator values.
Chad Rosier8decdee2012-06-26 22:30:43 +00002241Parser::DeclSpecContext
Douglas Gregor0efc2c12010-01-13 17:31:36 +00002242Parser::getDeclSpecContextFromDeclaratorContext(unsigned Context) {
2243 if (Context == Declarator::MemberContext)
2244 return DSC_class;
2245 if (Context == Declarator::FileContext)
2246 return DSC_top_level;
Richard Smith6d96d3a2012-03-15 01:02:11 +00002247 if (Context == Declarator::TrailingReturnContext)
2248 return DSC_trailing;
Douglas Gregor0efc2c12010-01-13 17:31:36 +00002249 return DSC_normal;
2250}
2251
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002252/// ParseAlignArgument - Parse the argument to an alignment-specifier.
2253///
2254/// FIXME: Simply returns an alignof() expression if the argument is a
2255/// type. Ideally, the type should be propagated directly into Sema.
2256///
Benjamin Kramerffbe9b92011-12-23 17:00:35 +00002257/// [C11] type-id
2258/// [C11] constant-expression
Peter Collingbourne0b64ba92011-10-23 20:07:52 +00002259/// [C++0x] type-id ...[opt]
2260/// [C++0x] assignment-expression ...[opt]
2261ExprResult Parser::ParseAlignArgument(SourceLocation Start,
2262 SourceLocation &EllipsisLoc) {
2263 ExprResult ER;
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002264 if (isTypeIdInParens()) {
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002265 SourceLocation TypeLoc = Tok.getLocation();
2266 ParsedType Ty = ParseTypeName().get();
2267 SourceRange TypeRange(Start, Tok.getLocation());
Peter Collingbourne0b64ba92011-10-23 20:07:52 +00002268 ER = Actions.ActOnUnaryExprOrTypeTraitExpr(TypeLoc, UETT_AlignOf, true,
2269 Ty.getAsOpaquePtr(), TypeRange);
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002270 } else
Peter Collingbourne0b64ba92011-10-23 20:07:52 +00002271 ER = ParseConstantExpression();
2272
Richard Smith80ad52f2013-01-02 11:42:31 +00002273 if (getLangOpts().CPlusPlus11 && Tok.is(tok::ellipsis))
Peter Collingbournefe9b2a82011-10-24 17:56:00 +00002274 EllipsisLoc = ConsumeToken();
Peter Collingbourne0b64ba92011-10-23 20:07:52 +00002275
2276 return ER;
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002277}
2278
2279/// ParseAlignmentSpecifier - Parse an alignment-specifier, and add the
2280/// attribute to Attrs.
2281///
2282/// alignment-specifier:
Benjamin Kramerffbe9b92011-12-23 17:00:35 +00002283/// [C11] '_Alignas' '(' type-id ')'
2284/// [C11] '_Alignas' '(' constant-expression ')'
Richard Smith33f04a22013-01-29 01:48:07 +00002285/// [C++11] 'alignas' '(' type-id ...[opt] ')'
2286/// [C++11] 'alignas' '(' assignment-expression ...[opt] ')'
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002287void Parser::ParseAlignmentSpecifier(ParsedAttributes &Attrs,
Richard Smithf6565a92013-02-22 08:32:16 +00002288 SourceLocation *EndLoc) {
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002289 assert((Tok.is(tok::kw_alignas) || Tok.is(tok::kw__Alignas)) &&
2290 "Not an alignment-specifier!");
2291
Richard Smith33f04a22013-01-29 01:48:07 +00002292 IdentifierInfo *KWName = Tok.getIdentifierInfo();
2293 SourceLocation KWLoc = ConsumeToken();
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002294
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002295 BalancedDelimiterTracker T(*this, tok::l_paren);
2296 if (T.expectAndConsume(diag::err_expected_lparen))
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002297 return;
2298
Peter Collingbourne0b64ba92011-10-23 20:07:52 +00002299 SourceLocation EllipsisLoc;
2300 ExprResult ArgExpr = ParseAlignArgument(T.getOpenLocation(), EllipsisLoc);
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002301 if (ArgExpr.isInvalid()) {
2302 SkipUntil(tok::r_paren);
2303 return;
2304 }
2305
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002306 T.consumeClose();
Richard Smithf6565a92013-02-22 08:32:16 +00002307 if (EndLoc)
2308 *EndLoc = T.getCloseLocation();
Peter Collingbourne0b64ba92011-10-23 20:07:52 +00002309
Aaron Ballman624421f2013-08-31 01:11:41 +00002310 ArgsVector ArgExprs;
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002311 ArgExprs.push_back(ArgExpr.release());
Aaron Ballman624421f2013-08-31 01:11:41 +00002312 Attrs.addNew(KWName, KWLoc, 0, KWLoc, ArgExprs.data(), 1,
2313 AttributeList::AS_Keyword, EllipsisLoc);
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002314}
2315
Reid Spencer5f016e22007-07-11 17:01:13 +00002316/// ParseDeclarationSpecifiers
2317/// declaration-specifiers: [C99 6.7]
2318/// storage-class-specifier declaration-specifiers[opt]
2319/// type-specifier declaration-specifiers[opt]
Reid Spencer5f016e22007-07-11 17:01:13 +00002320/// [C99] function-specifier declaration-specifiers[opt]
Benjamin Kramerffbe9b92011-12-23 17:00:35 +00002321/// [C11] alignment-specifier declaration-specifiers[opt]
Reid Spencer5f016e22007-07-11 17:01:13 +00002322/// [GNU] attributes declaration-specifiers[opt]
Douglas Gregor8d267c52011-09-09 02:06:17 +00002323/// [Clang] '__module_private__' declaration-specifiers[opt]
Reid Spencer5f016e22007-07-11 17:01:13 +00002324///
2325/// storage-class-specifier: [C99 6.7.1]
2326/// 'typedef'
2327/// 'extern'
2328/// 'static'
2329/// 'auto'
2330/// 'register'
Sebastian Redl669d5d72008-11-14 23:42:31 +00002331/// [C++] 'mutable'
Richard Smithec642442013-04-12 22:46:28 +00002332/// [C++11] 'thread_local'
2333/// [C11] '_Thread_local'
Reid Spencer5f016e22007-07-11 17:01:13 +00002334/// [GNU] '__thread'
Reid Spencer5f016e22007-07-11 17:01:13 +00002335/// function-specifier: [C99 6.7.4]
2336/// [C99] 'inline'
Douglas Gregorb48fe382008-10-31 09:07:45 +00002337/// [C++] 'virtual'
2338/// [C++] 'explicit'
Peter Collingbournef315fa82011-02-14 01:42:53 +00002339/// [OpenCL] '__kernel'
Anders Carlssonf47f7a12009-05-06 04:46:28 +00002340/// 'friend': [C++ dcl.friend]
Sebastian Redl2ac67232009-11-05 15:47:02 +00002341/// 'constexpr': [C++0x dcl.constexpr]
Anders Carlssonf47f7a12009-05-06 04:46:28 +00002342
Reid Spencer5f016e22007-07-11 17:01:13 +00002343///
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +00002344void Parser::ParseDeclarationSpecifiers(DeclSpec &DS,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00002345 const ParsedTemplateInfo &TemplateInfo,
John McCall67d1a672009-08-06 02:15:43 +00002346 AccessSpecifier AS,
DeLesley Hutchins2287c5e2012-03-02 22:12:59 +00002347 DeclSpecContext DSContext,
2348 LateParsedAttrList *LateAttrs) {
Douglas Gregor312eadb2011-04-24 05:37:28 +00002349 if (DS.getSourceRange().isInvalid()) {
2350 DS.SetRangeStart(Tok.getLocation());
2351 DS.SetRangeEnd(Tok.getLocation());
2352 }
Chad Rosier8decdee2012-06-26 22:30:43 +00002353
Douglas Gregorefaa93a2011-11-07 17:33:42 +00002354 bool EnteringContext = (DSContext == DSC_class || DSContext == DSC_top_level);
Sean Hunt2edf0a22012-06-23 05:07:58 +00002355 bool AttrsLastTime = false;
2356 ParsedAttributesWithRange attrs(AttrFactory);
Reid Spencer5f016e22007-07-11 17:01:13 +00002357 while (1) {
John McCallfec54012009-08-03 20:12:06 +00002358 bool isInvalid = false;
Reid Spencer5f016e22007-07-11 17:01:13 +00002359 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +00002360 unsigned DiagID = 0;
2361
Reid Spencer5f016e22007-07-11 17:01:13 +00002362 SourceLocation Loc = Tok.getLocation();
Douglas Gregor12e083c2008-11-07 15:42:26 +00002363
Reid Spencer5f016e22007-07-11 17:01:13 +00002364 switch (Tok.getKind()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002365 default:
Chris Lattnerbce61352008-07-26 00:20:22 +00002366 DoneWithDeclSpec:
Sean Hunt2edf0a22012-06-23 05:07:58 +00002367 if (!AttrsLastTime)
2368 ProhibitAttributes(attrs);
Michael Hanf64231e2012-11-06 19:34:54 +00002369 else {
2370 // Reject C++11 attributes that appertain to decl specifiers as
2371 // we don't support any C++11 attributes that appertain to decl
2372 // specifiers. This also conforms to what g++ 4.8 is doing.
2373 ProhibitCXX11Attributes(attrs);
2374
Sean Hunt2edf0a22012-06-23 05:07:58 +00002375 DS.takeAttributesFrom(attrs);
Michael Hanf64231e2012-11-06 19:34:54 +00002376 }
Peter Collingbournef1907682011-09-29 18:03:57 +00002377
Reid Spencer5f016e22007-07-11 17:01:13 +00002378 // If this is not a declaration specifier token, we're done reading decl
2379 // specifiers. First verify that DeclSpec's are consistent.
Douglas Gregor9b3064b2009-04-01 22:41:11 +00002380 DS.Finish(Diags, PP);
Reid Spencer5f016e22007-07-11 17:01:13 +00002381 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002382
Sean Hunt2edf0a22012-06-23 05:07:58 +00002383 case tok::l_square:
2384 case tok::kw_alignas:
Richard Smith672edb02013-02-22 09:15:49 +00002385 if (!getLangOpts().CPlusPlus11 || !isCXX11AttributeSpecifier())
Sean Hunt2edf0a22012-06-23 05:07:58 +00002386 goto DoneWithDeclSpec;
2387
2388 ProhibitAttributes(attrs);
2389 // FIXME: It would be good to recover by accepting the attributes,
2390 // but attempting to do that now would cause serious
2391 // madness in terms of diagnostics.
2392 attrs.clear();
2393 attrs.Range = SourceRange();
2394
2395 ParseCXX11Attributes(attrs);
2396 AttrsLastTime = true;
Chad Rosier8decdee2012-06-26 22:30:43 +00002397 continue;
Sean Hunt2edf0a22012-06-23 05:07:58 +00002398
Douglas Gregor2ccccb32010-08-23 18:23:48 +00002399 case tok::code_completion: {
John McCallf312b1e2010-08-26 23:41:50 +00002400 Sema::ParserCompletionContext CCC = Sema::PCC_Namespace;
Douglas Gregor2ccccb32010-08-23 18:23:48 +00002401 if (DS.hasTypeSpecifier()) {
2402 bool AllowNonIdentifiers
2403 = (getCurScope()->getFlags() & (Scope::ControlScope |
2404 Scope::BlockScope |
2405 Scope::TemplateParamScope |
2406 Scope::FunctionPrototypeScope |
2407 Scope::AtCatchScope)) == 0;
2408 bool AllowNestedNameSpecifiers
Chad Rosier8decdee2012-06-26 22:30:43 +00002409 = DSContext == DSC_top_level ||
Douglas Gregor2ccccb32010-08-23 18:23:48 +00002410 (DSContext == DSC_class && DS.isFriendSpecified());
2411
Douglas Gregorc7b6d882010-09-16 15:14:18 +00002412 Actions.CodeCompleteDeclSpec(getCurScope(), DS,
Chad Rosier8decdee2012-06-26 22:30:43 +00002413 AllowNonIdentifiers,
Douglas Gregorc7b6d882010-09-16 15:14:18 +00002414 AllowNestedNameSpecifiers);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002415 return cutOffParsing();
Chad Rosier8decdee2012-06-26 22:30:43 +00002416 }
2417
Douglas Gregor68e3c2e2011-02-15 20:33:25 +00002418 if (getCurScope()->getFnParent() || getCurScope()->getBlockParent())
2419 CCC = Sema::PCC_LocalDeclarationSpecifiers;
2420 else if (TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate)
Chad Rosier8decdee2012-06-26 22:30:43 +00002421 CCC = DSContext == DSC_class? Sema::PCC_MemberTemplate
John McCallf312b1e2010-08-26 23:41:50 +00002422 : Sema::PCC_Template;
Douglas Gregor2ccccb32010-08-23 18:23:48 +00002423 else if (DSContext == DSC_class)
John McCallf312b1e2010-08-26 23:41:50 +00002424 CCC = Sema::PCC_Class;
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00002425 else if (CurParsedObjCImpl)
John McCallf312b1e2010-08-26 23:41:50 +00002426 CCC = Sema::PCC_ObjCImplementation;
Chad Rosier8decdee2012-06-26 22:30:43 +00002427
Douglas Gregor2ccccb32010-08-23 18:23:48 +00002428 Actions.CodeCompleteOrdinaryName(getCurScope(), CCC);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002429 return cutOffParsing();
Douglas Gregor2ccccb32010-08-23 18:23:48 +00002430 }
2431
Chris Lattner5e02c472009-01-05 00:07:25 +00002432 case tok::coloncolon: // ::foo::bar
John McCall9ba61662010-02-26 08:45:28 +00002433 // C++ scope specifier. Annotate and loop, or bail out on error.
Eli Friedman5a428202013-08-15 23:59:20 +00002434 if (TryAnnotateCXXScopeToken(EnteringContext)) {
John McCall9ba61662010-02-26 08:45:28 +00002435 if (!DS.hasTypeSpecifier())
2436 DS.SetTypeSpecError();
2437 goto DoneWithDeclSpec;
2438 }
John McCall2e0a7152010-03-01 18:20:46 +00002439 if (Tok.is(tok::coloncolon)) // ::new or ::delete
2440 goto DoneWithDeclSpec;
John McCall9ba61662010-02-26 08:45:28 +00002441 continue;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002442
2443 case tok::annot_cxxscope: {
Richard Smithf63eee72012-05-09 18:56:43 +00002444 if (DS.hasTypeSpecifier() || DS.isTypeAltiVecVector())
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002445 goto DoneWithDeclSpec;
2446
John McCallaa87d332009-12-12 11:40:51 +00002447 CXXScopeSpec SS;
Douglas Gregorc34348a2011-02-24 17:54:50 +00002448 Actions.RestoreNestedNameSpecifierAnnotation(Tok.getAnnotationValue(),
2449 Tok.getAnnotationRange(),
2450 SS);
John McCallaa87d332009-12-12 11:40:51 +00002451
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002452 // We are looking for a qualified typename.
Douglas Gregor9135c722009-03-25 15:40:00 +00002453 Token Next = NextToken();
Mike Stump1eb44332009-09-09 15:08:12 +00002454 if (Next.is(tok::annot_template_id) &&
Douglas Gregor9135c722009-03-25 15:40:00 +00002455 static_cast<TemplateIdAnnotation *>(Next.getAnnotationValue())
Douglas Gregorc45c2322009-03-31 00:43:58 +00002456 ->Kind == TNK_Type_template) {
Douglas Gregor9135c722009-03-25 15:40:00 +00002457 // We have a qualified template-id, e.g., N::A<int>
Douglas Gregor0efc2c12010-01-13 17:31:36 +00002458
2459 // C++ [class.qual]p2:
2460 // In a lookup in which the constructor is an acceptable lookup
2461 // result and the nested-name-specifier nominates a class C:
2462 //
2463 // - if the name specified after the
2464 // nested-name-specifier, when looked up in C, is the
2465 // injected-class-name of C (Clause 9), or
2466 //
2467 // - if the name specified after the nested-name-specifier
2468 // is the same as the identifier or the
2469 // simple-template-id's template-name in the last
2470 // component of the nested-name-specifier,
2471 //
2472 // the name is instead considered to name the constructor of
2473 // class C.
Chad Rosier8decdee2012-06-26 22:30:43 +00002474 //
Douglas Gregor0efc2c12010-01-13 17:31:36 +00002475 // Thus, if the template-name is actually the constructor
2476 // name, then the code is ill-formed; this interpretation is
Chad Rosier8decdee2012-06-26 22:30:43 +00002477 // reinforced by the NAD status of core issue 635.
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +00002478 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Next);
Dmitri Gribenko1b9e8f72013-02-12 17:27:41 +00002479 if ((DSContext == DSC_top_level || DSContext == DSC_class) &&
John McCallba9d8532010-04-13 06:39:49 +00002480 TemplateId->Name &&
Douglas Gregor23c94db2010-07-02 17:43:08 +00002481 Actions.isCurrentClassName(*TemplateId->Name, getCurScope(), &SS)) {
Douglas Gregor0efc2c12010-01-13 17:31:36 +00002482 if (isConstructorDeclarator()) {
2483 // The user meant this to be an out-of-line constructor
2484 // definition, but template arguments are not allowed
2485 // there. Just allow this as a constructor; we'll
2486 // complain about it later.
2487 goto DoneWithDeclSpec;
2488 }
2489
2490 // The user meant this to name a type, but it actually names
2491 // a constructor with some extraneous template
2492 // arguments. Complain, then parse it as a type as the user
2493 // intended.
2494 Diag(TemplateId->TemplateNameLoc,
2495 diag::err_out_of_line_template_id_names_constructor)
2496 << TemplateId->Name;
2497 }
2498
John McCallaa87d332009-12-12 11:40:51 +00002499 DS.getTypeSpecScope() = SS;
2500 ConsumeToken(); // The C++ scope.
Mike Stump1eb44332009-09-09 15:08:12 +00002501 assert(Tok.is(tok::annot_template_id) &&
Douglas Gregor9135c722009-03-25 15:40:00 +00002502 "ParseOptionalCXXScopeSpecifier not working");
Douglas Gregor059101f2011-03-02 00:47:37 +00002503 AnnotateTemplateIdTokenAsType();
Douglas Gregor9135c722009-03-25 15:40:00 +00002504 continue;
2505 }
2506
Douglas Gregor9d7b3532009-09-28 07:26:33 +00002507 if (Next.is(tok::annot_typename)) {
John McCallaa87d332009-12-12 11:40:51 +00002508 DS.getTypeSpecScope() = SS;
2509 ConsumeToken(); // The C++ scope.
John McCallb3d87482010-08-24 05:47:05 +00002510 if (Tok.getAnnotationValue()) {
2511 ParsedType T = getTypeAnnotation(Tok);
Nico Weber253e80b2010-11-22 10:30:56 +00002512 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename,
Chad Rosier8decdee2012-06-26 22:30:43 +00002513 Tok.getAnnotationEndLoc(),
John McCallb3d87482010-08-24 05:47:05 +00002514 PrevSpec, DiagID, T);
Richard Smithb3cd3c02012-09-14 18:27:01 +00002515 if (isInvalid)
2516 break;
John McCallb3d87482010-08-24 05:47:05 +00002517 }
Douglas Gregor9d7b3532009-09-28 07:26:33 +00002518 else
2519 DS.SetTypeSpecError();
2520 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
2521 ConsumeToken(); // The typename
2522 }
2523
Douglas Gregor9135c722009-03-25 15:40:00 +00002524 if (Next.isNot(tok::identifier))
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002525 goto DoneWithDeclSpec;
2526
Douglas Gregor0efc2c12010-01-13 17:31:36 +00002527 // If we're in a context where the identifier could be a class name,
2528 // check whether this is a constructor declaration.
Dmitri Gribenko1b9e8f72013-02-12 17:27:41 +00002529 if ((DSContext == DSC_top_level || DSContext == DSC_class) &&
Chad Rosier8decdee2012-06-26 22:30:43 +00002530 Actions.isCurrentClassName(*Next.getIdentifierInfo(), getCurScope(),
Douglas Gregor0efc2c12010-01-13 17:31:36 +00002531 &SS)) {
2532 if (isConstructorDeclarator())
2533 goto DoneWithDeclSpec;
2534
2535 // As noted in C++ [class.qual]p2 (cited above), when the name
2536 // of the class is qualified in a context where it could name
2537 // a constructor, its a constructor name. However, we've
2538 // looked at the declarator, and the user probably meant this
2539 // to be a type. Complain that it isn't supposed to be treated
2540 // as a type, then proceed to parse it as a type.
2541 Diag(Next.getLocation(), diag::err_out_of_line_type_names_constructor)
2542 << Next.getIdentifierInfo();
2543 }
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002544
John McCallb3d87482010-08-24 05:47:05 +00002545 ParsedType TypeRep = Actions.getTypeName(*Next.getIdentifierInfo(),
2546 Next.getLocation(),
Douglas Gregor9e876872011-03-01 18:12:44 +00002547 getCurScope(), &SS,
2548 false, false, ParsedType(),
Abramo Bagnarafad03b72012-01-27 08:46:19 +00002549 /*IsCtorOrDtorName=*/false,
Douglas Gregor9e876872011-03-01 18:12:44 +00002550 /*NonTrivialSourceInfo=*/true);
Douglas Gregor55f6b142009-02-09 18:46:07 +00002551
Chris Lattnerf4382f52009-04-14 22:17:06 +00002552 // If the referenced identifier is not a type, then this declspec is
2553 // erroneous: We already checked about that it has no type specifier, and
2554 // C++ doesn't have implicit int. Diagnose it as a typo w.r.t. to the
Mike Stump1eb44332009-09-09 15:08:12 +00002555 // typename.
David Blaikie7247c882013-05-15 07:37:26 +00002556 if (!TypeRep) {
Chris Lattnerf4382f52009-04-14 22:17:06 +00002557 ConsumeToken(); // Eat the scope spec so the identifier is current.
Michael Han2e397132012-11-26 22:54:45 +00002558 ParsedAttributesWithRange Attrs(AttrFactory);
2559 if (ParseImplicitInt(DS, &SS, TemplateInfo, AS, DSContext, Attrs)) {
2560 if (!Attrs.empty()) {
2561 AttrsLastTime = true;
2562 attrs.takeAllFrom(Attrs);
2563 }
2564 continue;
2565 }
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002566 goto DoneWithDeclSpec;
Chris Lattnerf4382f52009-04-14 22:17:06 +00002567 }
Mike Stump1eb44332009-09-09 15:08:12 +00002568
John McCallaa87d332009-12-12 11:40:51 +00002569 DS.getTypeSpecScope() = SS;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002570 ConsumeToken(); // The C++ scope.
2571
Douglas Gregor1a51b4a2009-02-09 15:09:02 +00002572 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
John McCallfec54012009-08-03 20:12:06 +00002573 DiagID, TypeRep);
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002574 if (isInvalid)
2575 break;
Mike Stump1eb44332009-09-09 15:08:12 +00002576
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002577 DS.SetRangeEnd(Tok.getLocation());
2578 ConsumeToken(); // The typename.
2579
2580 continue;
2581 }
Mike Stump1eb44332009-09-09 15:08:12 +00002582
Chris Lattner80d0c892009-01-21 19:48:37 +00002583 case tok::annot_typename: {
John McCallb3d87482010-08-24 05:47:05 +00002584 if (Tok.getAnnotationValue()) {
2585 ParsedType T = getTypeAnnotation(Tok);
Nico Weberc43271e2010-11-22 12:50:03 +00002586 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
John McCallb3d87482010-08-24 05:47:05 +00002587 DiagID, T);
2588 } else
Douglas Gregor31a19b62009-04-01 21:51:26 +00002589 DS.SetTypeSpecError();
Chad Rosier8decdee2012-06-26 22:30:43 +00002590
Chris Lattner5c5db552010-04-05 18:18:31 +00002591 if (isInvalid)
2592 break;
2593
Chris Lattner80d0c892009-01-21 19:48:37 +00002594 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
2595 ConsumeToken(); // The typename
Mike Stump1eb44332009-09-09 15:08:12 +00002596
Chris Lattner80d0c892009-01-21 19:48:37 +00002597 // Objective-C supports syntax of the form 'id<proto1,proto2>' where 'id'
2598 // is a specific typedef and 'itf<proto1,proto2>' where 'itf' is an
Chad Rosier8decdee2012-06-26 22:30:43 +00002599 // Objective-C interface.
David Blaikie4e4d0842012-03-11 07:00:24 +00002600 if (Tok.is(tok::less) && getLangOpts().ObjC1)
Douglas Gregor9bd1d8d2010-10-21 23:17:00 +00002601 ParseObjCProtocolQualifiers(DS);
Chad Rosier8decdee2012-06-26 22:30:43 +00002602
Chris Lattner80d0c892009-01-21 19:48:37 +00002603 continue;
2604 }
Mike Stump1eb44332009-09-09 15:08:12 +00002605
Douglas Gregorbfad9152011-04-28 15:48:45 +00002606 case tok::kw___is_signed:
2607 // GNU libstdc++ 4.4 uses __is_signed as an identifier, but Clang
2608 // typically treats it as a trait. If we see __is_signed as it appears
2609 // in libstdc++, e.g.,
2610 //
2611 // static const bool __is_signed;
2612 //
2613 // then treat __is_signed as an identifier rather than as a keyword.
2614 if (DS.getTypeSpecType() == TST_bool &&
2615 DS.getTypeQualifiers() == DeclSpec::TQ_const &&
2616 DS.getStorageClassSpec() == DeclSpec::SCS_static) {
2617 Tok.getIdentifierInfo()->RevertTokenIDToIdentifier();
2618 Tok.setKind(tok::identifier);
2619 }
2620
2621 // We're done with the declaration-specifiers.
2622 goto DoneWithDeclSpec;
Chad Rosier8decdee2012-06-26 22:30:43 +00002623
Chris Lattner3bd934a2008-07-26 01:18:38 +00002624 // typedef-name
David Blaikie42d6d0c2011-12-04 05:04:18 +00002625 case tok::kw_decltype:
Chris Lattner3bd934a2008-07-26 01:18:38 +00002626 case tok::identifier: {
Chris Lattner5e02c472009-01-05 00:07:25 +00002627 // In C++, check to see if this is a scope specifier like foo::bar::, if
2628 // so handle it as such. This is important for ctor parsing.
David Blaikie4e4d0842012-03-11 07:00:24 +00002629 if (getLangOpts().CPlusPlus) {
Eli Friedman5a428202013-08-15 23:59:20 +00002630 if (TryAnnotateCXXScopeToken(EnteringContext)) {
John McCall9ba61662010-02-26 08:45:28 +00002631 if (!DS.hasTypeSpecifier())
2632 DS.SetTypeSpecError();
2633 goto DoneWithDeclSpec;
2634 }
2635 if (!Tok.is(tok::identifier))
2636 continue;
2637 }
Mike Stump1eb44332009-09-09 15:08:12 +00002638
Chris Lattner3bd934a2008-07-26 01:18:38 +00002639 // This identifier can only be a typedef name if we haven't already seen
2640 // a type-specifier. Without this check we misparse:
2641 // typedef int X; struct Y { short X; }; as 'short int'.
2642 if (DS.hasTypeSpecifier())
2643 goto DoneWithDeclSpec;
Mike Stump1eb44332009-09-09 15:08:12 +00002644
John Thompson82287d12010-02-05 00:12:22 +00002645 // Check for need to substitute AltiVec keyword tokens.
2646 if (TryAltiVecToken(DS, Loc, PrevSpec, DiagID, isInvalid))
2647 break;
2648
Richard Smithf63eee72012-05-09 18:56:43 +00002649 // [AltiVec] 2.2: [If the 'vector' specifier is used] The syntax does not
2650 // allow the use of a typedef name as a type specifier.
2651 if (DS.isTypeAltiVecVector())
2652 goto DoneWithDeclSpec;
2653
John McCallb3d87482010-08-24 05:47:05 +00002654 ParsedType TypeRep =
2655 Actions.getTypeName(*Tok.getIdentifierInfo(),
2656 Tok.getLocation(), getCurScope());
Douglas Gregor55f6b142009-02-09 18:46:07 +00002657
Chris Lattnerc199ab32009-04-12 20:42:31 +00002658 // If this is not a typedef name, don't parse it as part of the declspec,
2659 // it must be an implicit int or an error.
John McCallb3d87482010-08-24 05:47:05 +00002660 if (!TypeRep) {
Michael Han2e397132012-11-26 22:54:45 +00002661 ParsedAttributesWithRange Attrs(AttrFactory);
2662 if (ParseImplicitInt(DS, 0, TemplateInfo, AS, DSContext, Attrs)) {
2663 if (!Attrs.empty()) {
2664 AttrsLastTime = true;
2665 attrs.takeAllFrom(Attrs);
2666 }
2667 continue;
2668 }
Chris Lattner3bd934a2008-07-26 01:18:38 +00002669 goto DoneWithDeclSpec;
Chris Lattnerc199ab32009-04-12 20:42:31 +00002670 }
Douglas Gregor55f6b142009-02-09 18:46:07 +00002671
Douglas Gregor0efc2c12010-01-13 17:31:36 +00002672 // If we're in a context where the identifier could be a class name,
2673 // check whether this is a constructor declaration.
David Blaikie4e4d0842012-03-11 07:00:24 +00002674 if (getLangOpts().CPlusPlus && DSContext == DSC_class &&
Douglas Gregor23c94db2010-07-02 17:43:08 +00002675 Actions.isCurrentClassName(*Tok.getIdentifierInfo(), getCurScope()) &&
Douglas Gregor0efc2c12010-01-13 17:31:36 +00002676 isConstructorDeclarator())
Douglas Gregorb48fe382008-10-31 09:07:45 +00002677 goto DoneWithDeclSpec;
2678
Douglas Gregor1a51b4a2009-02-09 15:09:02 +00002679 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
John McCallfec54012009-08-03 20:12:06 +00002680 DiagID, TypeRep);
Chris Lattner3bd934a2008-07-26 01:18:38 +00002681 if (isInvalid)
2682 break;
Mike Stump1eb44332009-09-09 15:08:12 +00002683
Chris Lattner3bd934a2008-07-26 01:18:38 +00002684 DS.SetRangeEnd(Tok.getLocation());
2685 ConsumeToken(); // The identifier
2686
2687 // Objective-C supports syntax of the form 'id<proto1,proto2>' where 'id'
2688 // is a specific typedef and 'itf<proto1,proto2>' where 'itf' is an
Chad Rosier8decdee2012-06-26 22:30:43 +00002689 // Objective-C interface.
David Blaikie4e4d0842012-03-11 07:00:24 +00002690 if (Tok.is(tok::less) && getLangOpts().ObjC1)
Douglas Gregor9bd1d8d2010-10-21 23:17:00 +00002691 ParseObjCProtocolQualifiers(DS);
Chad Rosier8decdee2012-06-26 22:30:43 +00002692
Steve Naroff4f9b9f12008-09-22 10:28:57 +00002693 // Need to support trailing type qualifiers (e.g. "id<p> const").
2694 // If a type specifier follows, it will be diagnosed elsewhere.
2695 continue;
Chris Lattner3bd934a2008-07-26 01:18:38 +00002696 }
Douglas Gregor39a8de12009-02-25 19:37:18 +00002697
2698 // type-name
2699 case tok::annot_template_id: {
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +00002700 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregorc45c2322009-03-31 00:43:58 +00002701 if (TemplateId->Kind != TNK_Type_template) {
Douglas Gregor39a8de12009-02-25 19:37:18 +00002702 // This template-id does not refer to a type name, so we're
2703 // done with the type-specifiers.
2704 goto DoneWithDeclSpec;
2705 }
2706
Douglas Gregor0efc2c12010-01-13 17:31:36 +00002707 // If we're in a context where the template-id could be a
2708 // constructor name or specialization, check whether this is a
2709 // constructor declaration.
David Blaikie4e4d0842012-03-11 07:00:24 +00002710 if (getLangOpts().CPlusPlus && DSContext == DSC_class &&
Douglas Gregor23c94db2010-07-02 17:43:08 +00002711 Actions.isCurrentClassName(*TemplateId->Name, getCurScope()) &&
Douglas Gregor0efc2c12010-01-13 17:31:36 +00002712 isConstructorDeclarator())
2713 goto DoneWithDeclSpec;
2714
Douglas Gregor39a8de12009-02-25 19:37:18 +00002715 // Turn the template-id annotation token into a type annotation
2716 // token, then try again to parse it as a type-specifier.
Douglas Gregor31a19b62009-04-01 21:51:26 +00002717 AnnotateTemplateIdTokenAsType();
Douglas Gregor39a8de12009-02-25 19:37:18 +00002718 continue;
2719 }
2720
Reid Spencer5f016e22007-07-11 17:01:13 +00002721 // GNU attributes support.
2722 case tok::kw___attribute:
DeLesley Hutchins2287c5e2012-03-02 22:12:59 +00002723 ParseGNUAttributes(DS.getAttributes(), 0, LateAttrs);
Reid Spencer5f016e22007-07-11 17:01:13 +00002724 continue;
Steve Narofff59e17e2008-12-24 20:59:21 +00002725
2726 // Microsoft declspec support.
2727 case tok::kw___declspec:
John McCall7f040a92010-12-24 02:08:15 +00002728 ParseMicrosoftDeclSpec(DS.getAttributes());
Steve Narofff59e17e2008-12-24 20:59:21 +00002729 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00002730
Steve Naroff239f0732008-12-25 14:16:32 +00002731 // Microsoft single token adornments.
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00002732 case tok::kw___forceinline: {
Chad Rosier22aa6902012-12-21 22:24:43 +00002733 isInvalid = DS.setFunctionSpecInline(Loc);
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00002734 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
Richard Smithb3cd3c02012-09-14 18:27:01 +00002735 SourceLocation AttrNameLoc = Tok.getLocation();
Sean Hunt93f95f22012-06-18 16:13:52 +00002736 // FIXME: This does not work correctly if it is set to be a declspec
2737 // attribute, and a GNU attribute is simply incorrect.
Aaron Ballman624421f2013-08-31 01:11:41 +00002738 DS.getAttributes().addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0, 0,
2739 AttributeList::AS_GNU);
Richard Smithb3cd3c02012-09-14 18:27:01 +00002740 break;
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00002741 }
Eli Friedman290eeb02009-06-08 23:27:34 +00002742
Aaron Ballmanaa9df092013-05-22 23:25:32 +00002743 case tok::kw___sptr:
2744 case tok::kw___uptr:
Eli Friedman290eeb02009-06-08 23:27:34 +00002745 case tok::kw___ptr64:
Francois Pichet58fd97a2011-08-25 00:36:46 +00002746 case tok::kw___ptr32:
Steve Naroff86bc6cf2008-12-25 14:41:26 +00002747 case tok::kw___w64:
Steve Naroff239f0732008-12-25 14:16:32 +00002748 case tok::kw___cdecl:
2749 case tok::kw___stdcall:
2750 case tok::kw___fastcall:
Douglas Gregorf813a2c2010-05-18 16:57:00 +00002751 case tok::kw___thiscall:
Francois Pichet3bd9aa42011-08-18 09:59:55 +00002752 case tok::kw___unaligned:
John McCall7f040a92010-12-24 02:08:15 +00002753 ParseMicrosoftTypeAttributes(DS.getAttributes());
Eli Friedman290eeb02009-06-08 23:27:34 +00002754 continue;
2755
Dawn Perchik52fc3142010-09-03 01:29:35 +00002756 // Borland single token adornments.
2757 case tok::kw___pascal:
John McCall7f040a92010-12-24 02:08:15 +00002758 ParseBorlandTypeAttributes(DS.getAttributes());
Dawn Perchik52fc3142010-09-03 01:29:35 +00002759 continue;
2760
Peter Collingbournef315fa82011-02-14 01:42:53 +00002761 // OpenCL single token adornments.
2762 case tok::kw___kernel:
2763 ParseOpenCLAttributes(DS.getAttributes());
2764 continue;
2765
Reid Spencer5f016e22007-07-11 17:01:13 +00002766 // storage-class-specifier
2767 case tok::kw_typedef:
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00002768 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_typedef, Loc,
2769 PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +00002770 break;
2771 case tok::kw_extern:
Richard Smithec642442013-04-12 22:46:28 +00002772 if (DS.getThreadStorageClassSpec() == DeclSpec::TSCS___thread)
Chris Lattner1ab3b962008-11-18 07:48:38 +00002773 Diag(Tok, diag::ext_thread_before) << "extern";
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00002774 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_extern, Loc,
2775 PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +00002776 break;
Steve Naroff8d54bf22007-12-18 00:16:02 +00002777 case tok::kw___private_extern__:
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00002778 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_private_extern,
2779 Loc, PrevSpec, DiagID);
Steve Naroff8d54bf22007-12-18 00:16:02 +00002780 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00002781 case tok::kw_static:
Richard Smithec642442013-04-12 22:46:28 +00002782 if (DS.getThreadStorageClassSpec() == DeclSpec::TSCS___thread)
Chris Lattner1ab3b962008-11-18 07:48:38 +00002783 Diag(Tok, diag::ext_thread_before) << "static";
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00002784 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_static, Loc,
2785 PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +00002786 break;
2787 case tok::kw_auto:
Richard Smith80ad52f2013-01-02 11:42:31 +00002788 if (getLangOpts().CPlusPlus11) {
Fariborz Jahanian12e3ece2011-02-22 23:17:49 +00002789 if (isKnownToBeTypeSpecifier(GetLookAheadToken(1))) {
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00002790 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_auto, Loc,
2791 PrevSpec, DiagID);
Fariborz Jahanian12e3ece2011-02-22 23:17:49 +00002792 if (!isInvalid)
Richard Smith8f4fb192011-09-04 19:54:14 +00002793 Diag(Tok, diag::ext_auto_storage_class)
Fariborz Jahanian12e3ece2011-02-22 23:17:49 +00002794 << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc());
Richard Smith8f4fb192011-09-04 19:54:14 +00002795 } else
Fariborz Jahanian12e3ece2011-02-22 23:17:49 +00002796 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_auto, Loc, PrevSpec,
2797 DiagID);
Richard Smith8f4fb192011-09-04 19:54:14 +00002798 } else
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00002799 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_auto, Loc,
2800 PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +00002801 break;
2802 case tok::kw_register:
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00002803 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_register, Loc,
2804 PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +00002805 break;
Sebastian Redl669d5d72008-11-14 23:42:31 +00002806 case tok::kw_mutable:
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00002807 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_mutable, Loc,
2808 PrevSpec, DiagID);
Sebastian Redl669d5d72008-11-14 23:42:31 +00002809 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00002810 case tok::kw___thread:
Richard Smithec642442013-04-12 22:46:28 +00002811 isInvalid = DS.SetStorageClassSpecThread(DeclSpec::TSCS___thread, Loc,
2812 PrevSpec, DiagID);
2813 break;
2814 case tok::kw_thread_local:
2815 isInvalid = DS.SetStorageClassSpecThread(DeclSpec::TSCS_thread_local, Loc,
2816 PrevSpec, DiagID);
2817 break;
2818 case tok::kw__Thread_local:
2819 isInvalid = DS.SetStorageClassSpecThread(DeclSpec::TSCS__Thread_local,
2820 Loc, PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +00002821 break;
Mike Stump1eb44332009-09-09 15:08:12 +00002822
Reid Spencer5f016e22007-07-11 17:01:13 +00002823 // function-specifier
2824 case tok::kw_inline:
Chad Rosier22aa6902012-12-21 22:24:43 +00002825 isInvalid = DS.setFunctionSpecInline(Loc);
Reid Spencer5f016e22007-07-11 17:01:13 +00002826 break;
Douglas Gregorb48fe382008-10-31 09:07:45 +00002827 case tok::kw_virtual:
Chad Rosier22aa6902012-12-21 22:24:43 +00002828 isInvalid = DS.setFunctionSpecVirtual(Loc);
Douglas Gregorb48fe382008-10-31 09:07:45 +00002829 break;
Douglas Gregorb48fe382008-10-31 09:07:45 +00002830 case tok::kw_explicit:
Chad Rosier22aa6902012-12-21 22:24:43 +00002831 isInvalid = DS.setFunctionSpecExplicit(Loc);
Douglas Gregorb48fe382008-10-31 09:07:45 +00002832 break;
Richard Smithde03c152013-01-17 22:16:11 +00002833 case tok::kw__Noreturn:
2834 if (!getLangOpts().C11)
2835 Diag(Loc, diag::ext_c11_noreturn);
2836 isInvalid = DS.setFunctionSpecNoreturn(Loc);
2837 break;
Chris Lattner80d0c892009-01-21 19:48:37 +00002838
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002839 // alignment-specifier
2840 case tok::kw__Alignas:
David Blaikie4e4d0842012-03-11 07:00:24 +00002841 if (!getLangOpts().C11)
Jordan Rosef70a8862012-06-30 21:33:57 +00002842 Diag(Tok, diag::ext_c11_alignment) << Tok.getName();
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002843 ParseAlignmentSpecifier(DS.getAttributes());
2844 continue;
2845
Anders Carlssonf47f7a12009-05-06 04:46:28 +00002846 // friend
2847 case tok::kw_friend:
John McCall67d1a672009-08-06 02:15:43 +00002848 if (DSContext == DSC_class)
2849 isInvalid = DS.SetFriendSpec(Loc, PrevSpec, DiagID);
2850 else {
2851 PrevSpec = ""; // not actually used by the diagnostic
2852 DiagID = diag::err_friend_invalid_in_context;
2853 isInvalid = true;
2854 }
Anders Carlssonf47f7a12009-05-06 04:46:28 +00002855 break;
Mike Stump1eb44332009-09-09 15:08:12 +00002856
Douglas Gregor8d267c52011-09-09 02:06:17 +00002857 // Modules
2858 case tok::kw___module_private__:
2859 isInvalid = DS.setModulePrivateSpec(Loc, PrevSpec, DiagID);
2860 break;
Chad Rosier8decdee2012-06-26 22:30:43 +00002861
Sebastian Redl2ac67232009-11-05 15:47:02 +00002862 // constexpr
2863 case tok::kw_constexpr:
2864 isInvalid = DS.SetConstexprSpec(Loc, PrevSpec, DiagID);
2865 break;
2866
Chris Lattner80d0c892009-01-21 19:48:37 +00002867 // type-specifier
2868 case tok::kw_short:
John McCallfec54012009-08-03 20:12:06 +00002869 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_short, Loc, PrevSpec,
2870 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002871 break;
2872 case tok::kw_long:
2873 if (DS.getTypeSpecWidth() != DeclSpec::TSW_long)
John McCallfec54012009-08-03 20:12:06 +00002874 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_long, Loc, PrevSpec,
2875 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002876 else
John McCallfec54012009-08-03 20:12:06 +00002877 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_longlong, Loc, PrevSpec,
2878 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002879 break;
Francois Pichet338d7f72011-04-28 01:59:37 +00002880 case tok::kw___int64:
2881 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_longlong, Loc, PrevSpec,
2882 DiagID);
2883 break;
Chris Lattner80d0c892009-01-21 19:48:37 +00002884 case tok::kw_signed:
John McCallfec54012009-08-03 20:12:06 +00002885 isInvalid = DS.SetTypeSpecSign(DeclSpec::TSS_signed, Loc, PrevSpec,
2886 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002887 break;
2888 case tok::kw_unsigned:
John McCallfec54012009-08-03 20:12:06 +00002889 isInvalid = DS.SetTypeSpecSign(DeclSpec::TSS_unsigned, Loc, PrevSpec,
2890 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002891 break;
2892 case tok::kw__Complex:
John McCallfec54012009-08-03 20:12:06 +00002893 isInvalid = DS.SetTypeSpecComplex(DeclSpec::TSC_complex, Loc, PrevSpec,
2894 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002895 break;
2896 case tok::kw__Imaginary:
John McCallfec54012009-08-03 20:12:06 +00002897 isInvalid = DS.SetTypeSpecComplex(DeclSpec::TSC_imaginary, Loc, PrevSpec,
2898 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002899 break;
2900 case tok::kw_void:
John McCallfec54012009-08-03 20:12:06 +00002901 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_void, Loc, PrevSpec,
2902 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002903 break;
2904 case tok::kw_char:
John McCallfec54012009-08-03 20:12:06 +00002905 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char, Loc, PrevSpec,
2906 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002907 break;
2908 case tok::kw_int:
John McCallfec54012009-08-03 20:12:06 +00002909 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, PrevSpec,
2910 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002911 break;
Richard Smith5a5a9712012-04-04 06:24:32 +00002912 case tok::kw___int128:
2913 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_int128, Loc, PrevSpec,
2914 DiagID);
2915 break;
2916 case tok::kw_half:
2917 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_half, Loc, PrevSpec,
2918 DiagID);
2919 break;
Chris Lattner80d0c892009-01-21 19:48:37 +00002920 case tok::kw_float:
John McCallfec54012009-08-03 20:12:06 +00002921 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_float, Loc, PrevSpec,
2922 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002923 break;
2924 case tok::kw_double:
John McCallfec54012009-08-03 20:12:06 +00002925 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_double, Loc, PrevSpec,
2926 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002927 break;
2928 case tok::kw_wchar_t:
John McCallfec54012009-08-03 20:12:06 +00002929 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_wchar, Loc, PrevSpec,
2930 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002931 break;
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00002932 case tok::kw_char16_t:
John McCallfec54012009-08-03 20:12:06 +00002933 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char16, Loc, PrevSpec,
2934 DiagID);
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00002935 break;
2936 case tok::kw_char32_t:
John McCallfec54012009-08-03 20:12:06 +00002937 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char32, Loc, PrevSpec,
2938 DiagID);
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00002939 break;
Chris Lattner80d0c892009-01-21 19:48:37 +00002940 case tok::kw_bool:
2941 case tok::kw__Bool:
Argyrios Kyrtzidis4383e182010-11-16 18:18:13 +00002942 if (Tok.is(tok::kw_bool) &&
2943 DS.getTypeSpecType() != DeclSpec::TST_unspecified &&
2944 DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
2945 PrevSpec = ""; // Not used by the diagnostic.
2946 DiagID = diag::err_bool_redeclaration;
Fariborz Jahaniane106a0b2011-04-19 21:42:37 +00002947 // For better error recovery.
2948 Tok.setKind(tok::identifier);
Argyrios Kyrtzidis4383e182010-11-16 18:18:13 +00002949 isInvalid = true;
2950 } else {
2951 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_bool, Loc, PrevSpec,
2952 DiagID);
2953 }
Chris Lattner80d0c892009-01-21 19:48:37 +00002954 break;
2955 case tok::kw__Decimal32:
John McCallfec54012009-08-03 20:12:06 +00002956 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal32, Loc, PrevSpec,
2957 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002958 break;
2959 case tok::kw__Decimal64:
John McCallfec54012009-08-03 20:12:06 +00002960 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal64, Loc, PrevSpec,
2961 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002962 break;
2963 case tok::kw__Decimal128:
John McCallfec54012009-08-03 20:12:06 +00002964 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal128, Loc, PrevSpec,
2965 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002966 break;
John Thompson82287d12010-02-05 00:12:22 +00002967 case tok::kw___vector:
2968 isInvalid = DS.SetTypeAltiVecVector(true, Loc, PrevSpec, DiagID);
2969 break;
2970 case tok::kw___pixel:
2971 isInvalid = DS.SetTypeAltiVecPixel(true, Loc, PrevSpec, DiagID);
2972 break;
Guy Benyeib13621d2012-12-18 14:38:23 +00002973 case tok::kw_image1d_t:
2974 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_image1d_t, Loc,
2975 PrevSpec, DiagID);
2976 break;
2977 case tok::kw_image1d_array_t:
2978 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_image1d_array_t, Loc,
2979 PrevSpec, DiagID);
2980 break;
2981 case tok::kw_image1d_buffer_t:
2982 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_image1d_buffer_t, Loc,
2983 PrevSpec, DiagID);
2984 break;
2985 case tok::kw_image2d_t:
2986 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_image2d_t, Loc,
2987 PrevSpec, DiagID);
2988 break;
2989 case tok::kw_image2d_array_t:
2990 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_image2d_array_t, Loc,
2991 PrevSpec, DiagID);
2992 break;
2993 case tok::kw_image3d_t:
2994 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_image3d_t, Loc,
2995 PrevSpec, DiagID);
2996 break;
Guy Benyei21f18c42013-02-07 10:55:47 +00002997 case tok::kw_sampler_t:
2998 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_sampler_t, Loc,
2999 PrevSpec, DiagID);
3000 break;
Guy Benyeie6b9d802013-01-20 12:31:11 +00003001 case tok::kw_event_t:
3002 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_event_t, Loc,
3003 PrevSpec, DiagID);
3004 break;
John McCalla5fc4722011-04-09 22:50:59 +00003005 case tok::kw___unknown_anytype:
3006 isInvalid = DS.SetTypeSpecType(TST_unknown_anytype, Loc,
3007 PrevSpec, DiagID);
3008 break;
Chris Lattner80d0c892009-01-21 19:48:37 +00003009
3010 // class-specifier:
3011 case tok::kw_class:
3012 case tok::kw_struct:
Joao Matos6666ed42012-08-31 18:45:21 +00003013 case tok::kw___interface:
Chris Lattner4c97d762009-04-12 21:49:30 +00003014 case tok::kw_union: {
3015 tok::TokenKind Kind = Tok.getKind();
3016 ConsumeToken();
Michael Han2e397132012-11-26 22:54:45 +00003017
3018 // These are attributes following class specifiers.
3019 // To produce better diagnostic, we parse them when
3020 // parsing class specifier.
Bill Wendlingad017fa2012-12-20 19:22:21 +00003021 ParsedAttributesWithRange Attributes(AttrFactory);
Richard Smith69730c12012-03-12 07:56:15 +00003022 ParseClassSpecifier(Kind, Loc, DS, TemplateInfo, AS,
Bill Wendlingad017fa2012-12-20 19:22:21 +00003023 EnteringContext, DSContext, Attributes);
Michael Han2e397132012-11-26 22:54:45 +00003024
3025 // If there are attributes following class specifier,
3026 // take them over and handle them here.
Bill Wendlingad017fa2012-12-20 19:22:21 +00003027 if (!Attributes.empty()) {
Michael Han2e397132012-11-26 22:54:45 +00003028 AttrsLastTime = true;
Bill Wendlingad017fa2012-12-20 19:22:21 +00003029 attrs.takeAllFrom(Attributes);
Michael Han2e397132012-11-26 22:54:45 +00003030 }
Chris Lattner80d0c892009-01-21 19:48:37 +00003031 continue;
Chris Lattner4c97d762009-04-12 21:49:30 +00003032 }
Chris Lattner80d0c892009-01-21 19:48:37 +00003033
3034 // enum-specifier:
3035 case tok::kw_enum:
Chris Lattner4c97d762009-04-12 21:49:30 +00003036 ConsumeToken();
Richard Smith69730c12012-03-12 07:56:15 +00003037 ParseEnumSpecifier(Loc, DS, TemplateInfo, AS, DSContext);
Chris Lattner80d0c892009-01-21 19:48:37 +00003038 continue;
3039
3040 // cv-qualifier:
3041 case tok::kw_const:
John McCallfec54012009-08-03 20:12:06 +00003042 isInvalid = DS.SetTypeQual(DeclSpec::TQ_const, Loc, PrevSpec, DiagID,
Richard Smithd654f2d2012-10-17 23:31:46 +00003043 getLangOpts());
Chris Lattner80d0c892009-01-21 19:48:37 +00003044 break;
3045 case tok::kw_volatile:
John McCallfec54012009-08-03 20:12:06 +00003046 isInvalid = DS.SetTypeQual(DeclSpec::TQ_volatile, Loc, PrevSpec, DiagID,
Richard Smithd654f2d2012-10-17 23:31:46 +00003047 getLangOpts());
Chris Lattner80d0c892009-01-21 19:48:37 +00003048 break;
3049 case tok::kw_restrict:
John McCallfec54012009-08-03 20:12:06 +00003050 isInvalid = DS.SetTypeQual(DeclSpec::TQ_restrict, Loc, PrevSpec, DiagID,
Richard Smithd654f2d2012-10-17 23:31:46 +00003051 getLangOpts());
Chris Lattner80d0c892009-01-21 19:48:37 +00003052 break;
3053
Douglas Gregord57959a2009-03-27 23:10:48 +00003054 // C++ typename-specifier:
3055 case tok::kw_typename:
John McCall9ba61662010-02-26 08:45:28 +00003056 if (TryAnnotateTypeOrScopeToken()) {
3057 DS.SetTypeSpecError();
3058 goto DoneWithDeclSpec;
3059 }
3060 if (!Tok.is(tok::kw_typename))
Douglas Gregord57959a2009-03-27 23:10:48 +00003061 continue;
3062 break;
3063
Chris Lattner80d0c892009-01-21 19:48:37 +00003064 // GNU typeof support.
3065 case tok::kw_typeof:
3066 ParseTypeofSpecifier(DS);
3067 continue;
3068
David Blaikie42d6d0c2011-12-04 05:04:18 +00003069 case tok::annot_decltype:
Anders Carlsson6fd634f2009-06-24 17:47:40 +00003070 ParseDecltypeSpecifier(DS);
3071 continue;
3072
Sean Huntdb5d44b2011-05-19 05:37:45 +00003073 case tok::kw___underlying_type:
3074 ParseUnderlyingTypeSpecifier(DS);
Eli Friedmanb001de72011-10-06 23:00:33 +00003075 continue;
3076
3077 case tok::kw__Atomic:
Richard Smith4cf4a5e2013-03-28 01:55:44 +00003078 // C11 6.7.2.4/4:
3079 // If the _Atomic keyword is immediately followed by a left parenthesis,
3080 // it is interpreted as a type specifier (with a type name), not as a
3081 // type qualifier.
3082 if (NextToken().is(tok::l_paren)) {
3083 ParseAtomicSpecifier(DS);
3084 continue;
3085 }
3086 isInvalid = DS.SetTypeQual(DeclSpec::TQ_atomic, Loc, PrevSpec, DiagID,
3087 getLangOpts());
3088 break;
Sean Huntdb5d44b2011-05-19 05:37:45 +00003089
Peter Collingbourne207f4d82011-03-18 22:38:29 +00003090 // OpenCL qualifiers:
Chad Rosier8decdee2012-06-26 22:30:43 +00003091 case tok::kw_private:
David Blaikie4e4d0842012-03-11 07:00:24 +00003092 if (!getLangOpts().OpenCL)
Peter Collingbourne207f4d82011-03-18 22:38:29 +00003093 goto DoneWithDeclSpec;
3094 case tok::kw___private:
3095 case tok::kw___global:
3096 case tok::kw___local:
3097 case tok::kw___constant:
3098 case tok::kw___read_only:
3099 case tok::kw___write_only:
3100 case tok::kw___read_write:
3101 ParseOpenCLQualifiers(DS);
3102 break;
Chad Rosier8decdee2012-06-26 22:30:43 +00003103
Steve Naroffd3ded1f2008-06-05 00:02:44 +00003104 case tok::less:
Chris Lattner3bd934a2008-07-26 01:18:38 +00003105 // GCC ObjC supports types like "<SomeProtocol>" as a synonym for
Chris Lattnerbce61352008-07-26 00:20:22 +00003106 // "id<SomeProtocol>". This is hopelessly old fashioned and dangerous,
3107 // but we support it.
David Blaikie4e4d0842012-03-11 07:00:24 +00003108 if (DS.hasTypeSpecifier() || !getLangOpts().ObjC1)
Chris Lattnerbce61352008-07-26 00:20:22 +00003109 goto DoneWithDeclSpec;
Mike Stump1eb44332009-09-09 15:08:12 +00003110
Douglas Gregor46f936e2010-11-19 17:10:50 +00003111 if (!ParseObjCProtocolQualifiers(DS))
3112 Diag(Loc, diag::warn_objc_protocol_qualifier_missing_id)
3113 << FixItHint::CreateInsertion(Loc, "id")
3114 << SourceRange(Loc, DS.getSourceRange().getEnd());
Chad Rosier8decdee2012-06-26 22:30:43 +00003115
Douglas Gregor9bd1d8d2010-10-21 23:17:00 +00003116 // Need to support trailing type qualifiers (e.g. "id<p> const").
3117 // If a type specifier follows, it will be diagnosed elsewhere.
3118 continue;
Reid Spencer5f016e22007-07-11 17:01:13 +00003119 }
John McCallfec54012009-08-03 20:12:06 +00003120 // If the specifier wasn't legal, issue a diagnostic.
Reid Spencer5f016e22007-07-11 17:01:13 +00003121 if (isInvalid) {
3122 assert(PrevSpec && "Method did not return previous specifier!");
John McCallfec54012009-08-03 20:12:06 +00003123 assert(DiagID);
Chad Rosier8decdee2012-06-26 22:30:43 +00003124
Douglas Gregorae2fb142010-08-23 14:34:43 +00003125 if (DiagID == diag::ext_duplicate_declspec)
3126 Diag(Tok, DiagID)
3127 << PrevSpec << FixItHint::CreateRemoval(Tok.getLocation());
3128 else
3129 Diag(Tok, DiagID) << PrevSpec;
Reid Spencer5f016e22007-07-11 17:01:13 +00003130 }
Fariborz Jahanian12e3ece2011-02-22 23:17:49 +00003131
Chris Lattner81c018d2008-03-13 06:29:04 +00003132 DS.SetRangeEnd(Tok.getLocation());
Fariborz Jahaniane106a0b2011-04-19 21:42:37 +00003133 if (DiagID != diag::err_bool_redeclaration)
3134 ConsumeToken();
Sean Hunt2edf0a22012-06-23 05:07:58 +00003135
3136 AttrsLastTime = false;
Reid Spencer5f016e22007-07-11 17:01:13 +00003137 }
3138}
Douglas Gregoradcac882008-12-01 23:54:00 +00003139
Chris Lattnercd4b83c2007-10-29 04:42:53 +00003140/// ParseStructDeclaration - Parse a struct declaration without the terminating
3141/// semicolon.
3142///
Reid Spencer5f016e22007-07-11 17:01:13 +00003143/// struct-declaration:
Chris Lattnercd4b83c2007-10-29 04:42:53 +00003144/// specifier-qualifier-list struct-declarator-list
Reid Spencer5f016e22007-07-11 17:01:13 +00003145/// [GNU] __extension__ struct-declaration
Chris Lattnercd4b83c2007-10-29 04:42:53 +00003146/// [GNU] specifier-qualifier-list
Reid Spencer5f016e22007-07-11 17:01:13 +00003147/// struct-declarator-list:
3148/// struct-declarator
3149/// struct-declarator-list ',' struct-declarator
3150/// [GNU] struct-declarator-list ',' attributes[opt] struct-declarator
3151/// struct-declarator:
3152/// declarator
3153/// [GNU] declarator attributes[opt]
3154/// declarator[opt] ':' constant-expression
3155/// [GNU] declarator[opt] ':' constant-expression attributes[opt]
3156///
Chris Lattnere1359422008-04-10 06:46:29 +00003157void Parser::
Eli Friedmanf66a0dd2012-08-08 23:04:35 +00003158ParseStructDeclaration(ParsingDeclSpec &DS, FieldCallback &Fields) {
Chad Rosier8decdee2012-06-26 22:30:43 +00003159
Chris Lattnerc46d1a12008-10-20 06:45:43 +00003160 if (Tok.is(tok::kw___extension__)) {
3161 // __extension__ silences extension warnings in the subexpression.
3162 ExtensionRAIIObject O(Diags); // Use RAII to do this.
Steve Naroff28a7ca82007-08-20 22:28:22 +00003163 ConsumeToken();
Chris Lattnerc46d1a12008-10-20 06:45:43 +00003164 return ParseStructDeclaration(DS, Fields);
3165 }
Mike Stump1eb44332009-09-09 15:08:12 +00003166
Steve Naroff28a7ca82007-08-20 22:28:22 +00003167 // Parse the common specifier-qualifiers-list piece.
Steve Naroff28a7ca82007-08-20 22:28:22 +00003168 ParseSpecifierQualifierList(DS);
Mike Stump1eb44332009-09-09 15:08:12 +00003169
Douglas Gregor4920f1f2009-01-12 22:49:06 +00003170 // If there are no declarators, this is a free-standing declaration
3171 // specifier. Let the actions module cope with it.
Chris Lattner04d66662007-10-09 17:33:22 +00003172 if (Tok.is(tok::semi)) {
Eli Friedmanf66a0dd2012-08-08 23:04:35 +00003173 Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS_none,
3174 DS);
3175 DS.complete(TheDecl);
Steve Naroff28a7ca82007-08-20 22:28:22 +00003176 return;
3177 }
3178
3179 // Read struct-declarators until we find the semicolon.
John McCallbdd563e2009-11-03 02:38:08 +00003180 bool FirstDeclarator = true;
Richard Smith7984de32012-01-12 23:53:29 +00003181 SourceLocation CommaLoc;
Steve Naroff28a7ca82007-08-20 22:28:22 +00003182 while (1) {
Eli Friedmanf66a0dd2012-08-08 23:04:35 +00003183 ParsingFieldDeclarator DeclaratorInfo(*this, DS);
Richard Smith7984de32012-01-12 23:53:29 +00003184 DeclaratorInfo.D.setCommaLoc(CommaLoc);
John McCallbdd563e2009-11-03 02:38:08 +00003185
Bill Wendlingad017fa2012-12-20 19:22:21 +00003186 // Attributes are only allowed here on successive declarators.
John McCall7f040a92010-12-24 02:08:15 +00003187 if (!FirstDeclarator)
3188 MaybeParseGNUAttributes(DeclaratorInfo.D);
Mike Stump1eb44332009-09-09 15:08:12 +00003189
Steve Naroff28a7ca82007-08-20 22:28:22 +00003190 /// struct-declarator: declarator
3191 /// struct-declarator: declarator[opt] ':' constant-expression
Chris Lattnera1efc8c2009-12-10 01:59:24 +00003192 if (Tok.isNot(tok::colon)) {
3193 // Don't parse FOO:BAR as if it were a typo for FOO::BAR.
3194 ColonProtectionRAIIObject X(*this);
Chris Lattnere1359422008-04-10 06:46:29 +00003195 ParseDeclarator(DeclaratorInfo.D);
Chris Lattnera1efc8c2009-12-10 01:59:24 +00003196 }
Mike Stump1eb44332009-09-09 15:08:12 +00003197
Chris Lattner04d66662007-10-09 17:33:22 +00003198 if (Tok.is(tok::colon)) {
Steve Naroff28a7ca82007-08-20 22:28:22 +00003199 ConsumeToken();
John McCall60d7b3a2010-08-24 06:29:42 +00003200 ExprResult Res(ParseConstantExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00003201 if (Res.isInvalid())
Steve Naroff28a7ca82007-08-20 22:28:22 +00003202 SkipUntil(tok::semi, true, true);
Chris Lattner60b1e3e2008-04-10 06:15:14 +00003203 else
Sebastian Redleffa8d12008-12-10 00:02:53 +00003204 DeclaratorInfo.BitfieldSize = Res.release();
Steve Naroff28a7ca82007-08-20 22:28:22 +00003205 }
Sebastian Redlab197ba2009-02-09 18:23:29 +00003206
Steve Naroff28a7ca82007-08-20 22:28:22 +00003207 // If attributes exist after the declarator, parse them.
John McCall7f040a92010-12-24 02:08:15 +00003208 MaybeParseGNUAttributes(DeclaratorInfo.D);
Sebastian Redlab197ba2009-02-09 18:23:29 +00003209
John McCallbdd563e2009-11-03 02:38:08 +00003210 // We're done with this declarator; invoke the callback.
Eli Friedman817a8862012-08-08 23:35:12 +00003211 Fields.invoke(DeclaratorInfo);
John McCallbdd563e2009-11-03 02:38:08 +00003212
Steve Naroff28a7ca82007-08-20 22:28:22 +00003213 // If we don't have a comma, it is either the end of the list (a ';')
3214 // or an error, bail out.
Chris Lattner04d66662007-10-09 17:33:22 +00003215 if (Tok.isNot(tok::comma))
Chris Lattnercd4b83c2007-10-29 04:42:53 +00003216 return;
Sebastian Redlab197ba2009-02-09 18:23:29 +00003217
Steve Naroff28a7ca82007-08-20 22:28:22 +00003218 // Consume the comma.
Richard Smith7984de32012-01-12 23:53:29 +00003219 CommaLoc = ConsumeToken();
Sebastian Redlab197ba2009-02-09 18:23:29 +00003220
John McCallbdd563e2009-11-03 02:38:08 +00003221 FirstDeclarator = false;
Steve Naroff28a7ca82007-08-20 22:28:22 +00003222 }
Steve Naroff28a7ca82007-08-20 22:28:22 +00003223}
3224
3225/// ParseStructUnionBody
3226/// struct-contents:
3227/// struct-declaration-list
3228/// [EXT] empty
3229/// [GNU] "struct-declaration-list" without terminatoring ';'
3230/// struct-declaration-list:
3231/// struct-declaration
3232/// struct-declaration-list struct-declaration
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00003233/// [OBC] '@' 'defs' '(' class-name ')'
Steve Naroff28a7ca82007-08-20 22:28:22 +00003234///
Reid Spencer5f016e22007-07-11 17:01:13 +00003235void Parser::ParseStructUnionBody(SourceLocation RecordLoc,
John McCalld226f652010-08-21 09:40:31 +00003236 unsigned TagType, Decl *TagDecl) {
John McCallf312b1e2010-08-26 23:41:50 +00003237 PrettyDeclStackTraceEntry CrashInfo(Actions, TagDecl, RecordLoc,
3238 "parsing struct/union body");
Andy Gibbsf50f3f72013-04-03 09:31:19 +00003239 assert(!getLangOpts().CPlusPlus && "C++ declarations not supported");
Mike Stump1eb44332009-09-09 15:08:12 +00003240
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00003241 BalancedDelimiterTracker T(*this, tok::l_brace);
3242 if (T.consumeOpen())
3243 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003244
Douglas Gregor3218c4b2009-01-09 22:42:13 +00003245 ParseScope StructScope(this, Scope::ClassScope|Scope::DeclScope);
Douglas Gregor23c94db2010-07-02 17:43:08 +00003246 Actions.ActOnTagStartDefinition(getCurScope(), TagDecl);
Douglas Gregor72de6672009-01-08 20:45:30 +00003247
Chris Lattner5f9e2722011-07-23 10:55:15 +00003248 SmallVector<Decl *, 32> FieldDecls;
Chris Lattnere1359422008-04-10 06:46:29 +00003249
Reid Spencer5f016e22007-07-11 17:01:13 +00003250 // While we still have something to read, read the declarations in the struct.
Chris Lattner04d66662007-10-09 17:33:22 +00003251 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003252 // Each iteration of this loop reads one struct-declaration.
Mike Stump1eb44332009-09-09 15:08:12 +00003253
Reid Spencer5f016e22007-07-11 17:01:13 +00003254 // Check for extraneous top-level semicolon.
Chris Lattner04d66662007-10-09 17:33:22 +00003255 if (Tok.is(tok::semi)) {
Richard Smitheab9d6f2012-07-23 05:45:25 +00003256 ConsumeExtraSemi(InsideStruct, TagType);
Reid Spencer5f016e22007-07-11 17:01:13 +00003257 continue;
3258 }
Chris Lattnere1359422008-04-10 06:46:29 +00003259
Andy Gibbs74b9fa12013-04-03 09:46:04 +00003260 // Parse _Static_assert declaration.
3261 if (Tok.is(tok::kw__Static_assert)) {
3262 SourceLocation DeclEnd;
3263 ParseStaticAssertDeclaration(DeclEnd);
3264 continue;
3265 }
3266
Argyrios Kyrtzidisbd957452013-04-18 01:42:35 +00003267 if (Tok.is(tok::annot_pragma_pack)) {
3268 HandlePragmaPack();
3269 continue;
3270 }
3271
3272 if (Tok.is(tok::annot_pragma_align)) {
3273 HandlePragmaAlign();
3274 continue;
3275 }
3276
John McCallbdd563e2009-11-03 02:38:08 +00003277 if (!Tok.is(tok::at)) {
3278 struct CFieldCallback : FieldCallback {
3279 Parser &P;
John McCalld226f652010-08-21 09:40:31 +00003280 Decl *TagDecl;
Chris Lattner5f9e2722011-07-23 10:55:15 +00003281 SmallVectorImpl<Decl *> &FieldDecls;
John McCallbdd563e2009-11-03 02:38:08 +00003282
John McCalld226f652010-08-21 09:40:31 +00003283 CFieldCallback(Parser &P, Decl *TagDecl,
Chris Lattner5f9e2722011-07-23 10:55:15 +00003284 SmallVectorImpl<Decl *> &FieldDecls) :
John McCallbdd563e2009-11-03 02:38:08 +00003285 P(P), TagDecl(TagDecl), FieldDecls(FieldDecls) {}
3286
Eli Friedmandcdff462012-08-08 23:53:27 +00003287 void invoke(ParsingFieldDeclarator &FD) {
John McCallbdd563e2009-11-03 02:38:08 +00003288 // Install the declarator into the current TagDecl.
John McCalld226f652010-08-21 09:40:31 +00003289 Decl *Field = P.Actions.ActOnField(P.getCurScope(), TagDecl,
John McCall4ba39712009-11-03 21:13:47 +00003290 FD.D.getDeclSpec().getSourceRange().getBegin(),
3291 FD.D, FD.BitfieldSize);
John McCallbdd563e2009-11-03 02:38:08 +00003292 FieldDecls.push_back(Field);
Eli Friedmanf66a0dd2012-08-08 23:04:35 +00003293 FD.complete(Field);
Douglas Gregor91a28862009-08-26 14:27:30 +00003294 }
John McCallbdd563e2009-11-03 02:38:08 +00003295 } Callback(*this, TagDecl, FieldDecls);
3296
Eli Friedmanf66a0dd2012-08-08 23:04:35 +00003297 // Parse all the comma separated declarators.
3298 ParsingDeclSpec DS(*this);
John McCallbdd563e2009-11-03 02:38:08 +00003299 ParseStructDeclaration(DS, Callback);
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00003300 } else { // Handle @defs
3301 ConsumeToken();
3302 if (!Tok.isObjCAtKeyword(tok::objc_defs)) {
3303 Diag(Tok, diag::err_unexpected_at);
Chris Lattner3e156ad2010-02-02 00:37:27 +00003304 SkipUntil(tok::semi, true);
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00003305 continue;
3306 }
3307 ConsumeToken();
3308 ExpectAndConsume(tok::l_paren, diag::err_expected_lparen);
3309 if (!Tok.is(tok::identifier)) {
3310 Diag(Tok, diag::err_expected_ident);
Chris Lattner3e156ad2010-02-02 00:37:27 +00003311 SkipUntil(tok::semi, true);
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00003312 continue;
3313 }
Chris Lattner5f9e2722011-07-23 10:55:15 +00003314 SmallVector<Decl *, 16> Fields;
Douglas Gregor23c94db2010-07-02 17:43:08 +00003315 Actions.ActOnDefs(getCurScope(), TagDecl, Tok.getLocation(),
Douglas Gregor44b43212008-12-11 16:49:14 +00003316 Tok.getIdentifierInfo(), Fields);
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00003317 FieldDecls.insert(FieldDecls.end(), Fields.begin(), Fields.end());
3318 ConsumeToken();
3319 ExpectAndConsume(tok::r_paren, diag::err_expected_rparen);
Mike Stump1eb44332009-09-09 15:08:12 +00003320 }
Reid Spencer5f016e22007-07-11 17:01:13 +00003321
Chris Lattner04d66662007-10-09 17:33:22 +00003322 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003323 ConsumeToken();
Chris Lattner04d66662007-10-09 17:33:22 +00003324 } else if (Tok.is(tok::r_brace)) {
Chris Lattner3e156ad2010-02-02 00:37:27 +00003325 ExpectAndConsume(tok::semi, diag::ext_expected_semi_decl_list);
Reid Spencer5f016e22007-07-11 17:01:13 +00003326 break;
3327 } else {
Chris Lattner3e156ad2010-02-02 00:37:27 +00003328 ExpectAndConsume(tok::semi, diag::err_expected_semi_decl_list);
3329 // Skip to end of block or statement to avoid ext-warning on extra ';'.
Reid Spencer5f016e22007-07-11 17:01:13 +00003330 SkipUntil(tok::r_brace, true, true);
Chris Lattner3e156ad2010-02-02 00:37:27 +00003331 // If we stopped at a ';', eat it.
3332 if (Tok.is(tok::semi)) ConsumeToken();
Reid Spencer5f016e22007-07-11 17:01:13 +00003333 }
3334 }
Mike Stump1eb44332009-09-09 15:08:12 +00003335
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00003336 T.consumeClose();
Mike Stump1eb44332009-09-09 15:08:12 +00003337
John McCall0b7e6782011-03-24 11:26:52 +00003338 ParsedAttributes attrs(AttrFactory);
Reid Spencer5f016e22007-07-11 17:01:13 +00003339 // If attributes exist after struct contents, parse them.
John McCall7f040a92010-12-24 02:08:15 +00003340 MaybeParseGNUAttributes(attrs);
Daniel Dunbar1bfe1c22008-10-03 02:03:53 +00003341
Douglas Gregor23c94db2010-07-02 17:43:08 +00003342 Actions.ActOnFields(getCurScope(),
David Blaikie77b6de02011-09-22 02:58:26 +00003343 RecordLoc, TagDecl, FieldDecls,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00003344 T.getOpenLocation(), T.getCloseLocation(),
John McCall7f040a92010-12-24 02:08:15 +00003345 attrs.getList());
Douglas Gregor72de6672009-01-08 20:45:30 +00003346 StructScope.Exit();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00003347 Actions.ActOnTagFinishDefinition(getCurScope(), TagDecl,
3348 T.getCloseLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00003349}
3350
Reid Spencer5f016e22007-07-11 17:01:13 +00003351/// ParseEnumSpecifier
3352/// enum-specifier: [C99 6.7.2.2]
3353/// 'enum' identifier[opt] '{' enumerator-list '}'
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00003354///[C99/C++]'enum' identifier[opt] '{' enumerator-list ',' '}'
Reid Spencer5f016e22007-07-11 17:01:13 +00003355/// [GNU] 'enum' attributes[opt] identifier[opt] '{' enumerator-list ',' [opt]
3356/// '}' attributes[opt]
Aaron Ballman6454a022012-03-01 04:09:28 +00003357/// [MS] 'enum' __declspec[opt] identifier[opt] '{' enumerator-list ',' [opt]
3358/// '}'
Reid Spencer5f016e22007-07-11 17:01:13 +00003359/// 'enum' identifier
3360/// [GNU] 'enum' attributes[opt] identifier
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00003361///
Richard Smith1af83c42012-03-23 03:33:32 +00003362/// [C++11] enum-head '{' enumerator-list[opt] '}'
3363/// [C++11] enum-head '{' enumerator-list ',' '}'
Douglas Gregor1274ccd2010-10-08 23:50:27 +00003364///
Richard Smith1af83c42012-03-23 03:33:32 +00003365/// enum-head: [C++11]
3366/// enum-key attribute-specifier-seq[opt] identifier[opt] enum-base[opt]
3367/// enum-key attribute-specifier-seq[opt] nested-name-specifier
3368/// identifier enum-base[opt]
Douglas Gregor1274ccd2010-10-08 23:50:27 +00003369///
Richard Smith1af83c42012-03-23 03:33:32 +00003370/// enum-key: [C++11]
Douglas Gregor1274ccd2010-10-08 23:50:27 +00003371/// 'enum'
3372/// 'enum' 'class'
3373/// 'enum' 'struct'
3374///
Richard Smith1af83c42012-03-23 03:33:32 +00003375/// enum-base: [C++11]
Douglas Gregor1274ccd2010-10-08 23:50:27 +00003376/// ':' type-specifier-seq
3377///
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00003378/// [C++] elaborated-type-specifier:
3379/// [C++] 'enum' '::'[opt] nested-name-specifier[opt] identifier
3380///
Chris Lattner4c97d762009-04-12 21:49:30 +00003381void Parser::ParseEnumSpecifier(SourceLocation StartLoc, DeclSpec &DS,
Douglas Gregor9b9edd62010-03-02 17:53:14 +00003382 const ParsedTemplateInfo &TemplateInfo,
Richard Smith69730c12012-03-12 07:56:15 +00003383 AccessSpecifier AS, DeclSpecContext DSC) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003384 // Parse the tag portion of this.
Douglas Gregor374929f2009-09-18 15:37:17 +00003385 if (Tok.is(tok::code_completion)) {
3386 // Code completion for an enum name.
Douglas Gregor23c94db2010-07-02 17:43:08 +00003387 Actions.CodeCompleteTag(getCurScope(), DeclSpec::TST_enum);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00003388 return cutOffParsing();
Douglas Gregor374929f2009-09-18 15:37:17 +00003389 }
John McCall57c13002011-07-06 05:58:41 +00003390
Sean Hunt2edf0a22012-06-23 05:07:58 +00003391 // If attributes exist after tag, parse them.
3392 ParsedAttributesWithRange attrs(AttrFactory);
3393 MaybeParseGNUAttributes(attrs);
Richard Smith4e24f0f2013-01-02 12:01:23 +00003394 MaybeParseCXX11Attributes(attrs);
Sean Hunt2edf0a22012-06-23 05:07:58 +00003395
3396 // If declspecs exist after tag, parse them.
3397 while (Tok.is(tok::kw___declspec))
3398 ParseMicrosoftDeclSpec(attrs);
3399
Richard Smithbdad7a22012-01-10 01:33:14 +00003400 SourceLocation ScopedEnumKWLoc;
John McCall57c13002011-07-06 05:58:41 +00003401 bool IsScopedUsingClassTag = false;
3402
John McCall1e12b3d2012-06-23 22:30:04 +00003403 // In C++11, recognize 'enum class' and 'enum struct'.
Richard Trieued5a2922013-04-23 02:47:36 +00003404 if (Tok.is(tok::kw_class) || Tok.is(tok::kw_struct)) {
3405 Diag(Tok, getLangOpts().CPlusPlus11 ? diag::warn_cxx98_compat_scoped_enum
3406 : diag::ext_scoped_enum);
John McCall57c13002011-07-06 05:58:41 +00003407 IsScopedUsingClassTag = Tok.is(tok::kw_class);
Richard Smithbdad7a22012-01-10 01:33:14 +00003408 ScopedEnumKWLoc = ConsumeToken();
Chad Rosier8decdee2012-06-26 22:30:43 +00003409
Bill Wendlingad017fa2012-12-20 19:22:21 +00003410 // Attributes are not allowed between these keywords. Diagnose,
John McCall1e12b3d2012-06-23 22:30:04 +00003411 // but then just treat them like they appeared in the right place.
Sean Hunt2edf0a22012-06-23 05:07:58 +00003412 ProhibitAttributes(attrs);
John McCall1e12b3d2012-06-23 22:30:04 +00003413
3414 // They are allowed afterwards, though.
3415 MaybeParseGNUAttributes(attrs);
Richard Smith4e24f0f2013-01-02 12:01:23 +00003416 MaybeParseCXX11Attributes(attrs);
John McCall1e12b3d2012-06-23 22:30:04 +00003417 while (Tok.is(tok::kw___declspec))
3418 ParseMicrosoftDeclSpec(attrs);
John McCall57c13002011-07-06 05:58:41 +00003419 }
Richard Smith1af83c42012-03-23 03:33:32 +00003420
John McCall13489672012-05-07 06:16:58 +00003421 // C++11 [temp.explicit]p12:
3422 // The usual access controls do not apply to names used to specify
3423 // explicit instantiations.
3424 // We extend this to also cover explicit specializations. Note that
3425 // we don't suppress if this turns out to be an elaborated type
3426 // specifier.
3427 bool shouldDelayDiagsInTag =
3428 (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation ||
3429 TemplateInfo.Kind == ParsedTemplateInfo::ExplicitSpecialization);
3430 SuppressAccessChecks diagsFromTag(*this, shouldDelayDiagsInTag);
Richard Smith1af83c42012-03-23 03:33:32 +00003431
Richard Smith7796eb52012-03-12 08:56:40 +00003432 // Enum definitions should not be parsed in a trailing-return-type.
3433 bool AllowDeclaration = DSC != DSC_trailing;
3434
3435 bool AllowFixedUnderlyingType = AllowDeclaration &&
Richard Smith80ad52f2013-01-02 11:42:31 +00003436 (getLangOpts().CPlusPlus11 || getLangOpts().MicrosoftExt ||
Richard Smith7796eb52012-03-12 08:56:40 +00003437 getLangOpts().ObjC2);
John McCall57c13002011-07-06 05:58:41 +00003438
Abramo Bagnarae4da7a02010-05-19 21:37:53 +00003439 CXXScopeSpec &SS = DS.getTypeSpecScope();
David Blaikie4e4d0842012-03-11 07:00:24 +00003440 if (getLangOpts().CPlusPlus) {
John McCall57c13002011-07-06 05:58:41 +00003441 // "enum foo : bar;" is not a potential typo for "enum foo::bar;"
3442 // if a fixed underlying type is allowed.
3443 ColonProtectionRAIIObject X(*this, AllowFixedUnderlyingType);
Chad Rosier8decdee2012-06-26 22:30:43 +00003444
3445 if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(),
Richard Smith725fe0e2013-04-01 21:43:41 +00003446 /*EnteringContext=*/true))
John McCall9ba61662010-02-26 08:45:28 +00003447 return;
3448
3449 if (SS.isSet() && Tok.isNot(tok::identifier)) {
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00003450 Diag(Tok, diag::err_expected_ident);
3451 if (Tok.isNot(tok::l_brace)) {
3452 // Has no name and is not a definition.
3453 // Skip the rest of this declarator, up until the comma or semicolon.
3454 SkipUntil(tok::comma, true);
3455 return;
3456 }
3457 }
3458 }
Mike Stump1eb44332009-09-09 15:08:12 +00003459
Argyrios Kyrtzidise281b4c2008-09-11 00:21:41 +00003460 // Must have either 'enum name' or 'enum {...}'.
Douglas Gregorb9075602011-02-22 02:55:24 +00003461 if (Tok.isNot(tok::identifier) && Tok.isNot(tok::l_brace) &&
Richard Smith7796eb52012-03-12 08:56:40 +00003462 !(AllowFixedUnderlyingType && Tok.is(tok::colon))) {
Argyrios Kyrtzidise281b4c2008-09-11 00:21:41 +00003463 Diag(Tok, diag::err_expected_ident_lbrace);
Mike Stump1eb44332009-09-09 15:08:12 +00003464
Argyrios Kyrtzidise281b4c2008-09-11 00:21:41 +00003465 // Skip the rest of this declarator, up until the comma or semicolon.
3466 SkipUntil(tok::comma, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00003467 return;
Argyrios Kyrtzidise281b4c2008-09-11 00:21:41 +00003468 }
Mike Stump1eb44332009-09-09 15:08:12 +00003469
Argyrios Kyrtzidise281b4c2008-09-11 00:21:41 +00003470 // If an identifier is present, consume and remember it.
3471 IdentifierInfo *Name = 0;
3472 SourceLocation NameLoc;
3473 if (Tok.is(tok::identifier)) {
3474 Name = Tok.getIdentifierInfo();
3475 NameLoc = ConsumeToken();
3476 }
Mike Stump1eb44332009-09-09 15:08:12 +00003477
Richard Smithbdad7a22012-01-10 01:33:14 +00003478 if (!Name && ScopedEnumKWLoc.isValid()) {
Douglas Gregor1274ccd2010-10-08 23:50:27 +00003479 // C++0x 7.2p2: The optional identifier shall not be omitted in the
3480 // declaration of a scoped enumeration.
3481 Diag(Tok, diag::err_scoped_enum_missing_identifier);
Richard Smithbdad7a22012-01-10 01:33:14 +00003482 ScopedEnumKWLoc = SourceLocation();
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +00003483 IsScopedUsingClassTag = false;
Douglas Gregor1274ccd2010-10-08 23:50:27 +00003484 }
3485
John McCall13489672012-05-07 06:16:58 +00003486 // Okay, end the suppression area. We'll decide whether to emit the
3487 // diagnostics in a second.
3488 if (shouldDelayDiagsInTag)
3489 diagsFromTag.done();
Richard Smith1af83c42012-03-23 03:33:32 +00003490
Douglas Gregor1274ccd2010-10-08 23:50:27 +00003491 TypeResult BaseType;
3492
Douglas Gregora61b3e72010-12-01 17:42:47 +00003493 // Parse the fixed underlying type.
Richard Smith139be702012-07-02 19:14:01 +00003494 bool CanBeBitfield = getCurScope()->getFlags() & Scope::ClassScope;
Douglas Gregorb9075602011-02-22 02:55:24 +00003495 if (AllowFixedUnderlyingType && Tok.is(tok::colon)) {
Douglas Gregora61b3e72010-12-01 17:42:47 +00003496 bool PossibleBitfield = false;
Richard Smith139be702012-07-02 19:14:01 +00003497 if (CanBeBitfield) {
Douglas Gregora61b3e72010-12-01 17:42:47 +00003498 // If we're in class scope, this can either be an enum declaration with
3499 // an underlying type, or a declaration of a bitfield member. We try to
3500 // use a simple disambiguation scheme first to catch the common cases
Chad Rosier8decdee2012-06-26 22:30:43 +00003501 // (integer literal, sizeof); if it's still ambiguous, we then consider
3502 // anything that's a simple-type-specifier followed by '(' as an
3503 // expression. This suffices because function types are not valid
Douglas Gregora61b3e72010-12-01 17:42:47 +00003504 // underlying types anyway.
Richard Smith05766812012-08-18 00:55:03 +00003505 EnterExpressionEvaluationContext Unevaluated(Actions,
3506 Sema::ConstantEvaluated);
Douglas Gregora61b3e72010-12-01 17:42:47 +00003507 TPResult TPR = isExpressionOrTypeSpecifierSimple(NextToken().getKind());
Chad Rosier8decdee2012-06-26 22:30:43 +00003508 // If the next token starts an expression, we know we're parsing a
Douglas Gregora61b3e72010-12-01 17:42:47 +00003509 // bit-field. This is the common case.
3510 if (TPR == TPResult::True())
3511 PossibleBitfield = true;
3512 // If the next token starts a type-specifier-seq, it may be either a
3513 // a fixed underlying type or the start of a function-style cast in C++;
Chad Rosier8decdee2012-06-26 22:30:43 +00003514 // lookahead one more token to see if it's obvious that we have a
Douglas Gregora61b3e72010-12-01 17:42:47 +00003515 // fixed underlying type.
Chad Rosier8decdee2012-06-26 22:30:43 +00003516 else if (TPR == TPResult::False() &&
Douglas Gregora61b3e72010-12-01 17:42:47 +00003517 GetLookAheadToken(2).getKind() == tok::semi) {
3518 // Consume the ':'.
3519 ConsumeToken();
3520 } else {
3521 // We have the start of a type-specifier-seq, so we have to perform
3522 // tentative parsing to determine whether we have an expression or a
3523 // type.
3524 TentativeParsingAction TPA(*this);
3525
3526 // Consume the ':'.
3527 ConsumeToken();
Richard Smithd81e9612012-02-23 01:36:12 +00003528
3529 // If we see a type specifier followed by an open-brace, we have an
3530 // ambiguity between an underlying type and a C++11 braced
3531 // function-style cast. Resolve this by always treating it as an
3532 // underlying type.
3533 // FIXME: The standard is not entirely clear on how to disambiguate in
3534 // this case.
David Blaikie4e4d0842012-03-11 07:00:24 +00003535 if ((getLangOpts().CPlusPlus &&
Richard Smithd81e9612012-02-23 01:36:12 +00003536 isCXXDeclarationSpecifier(TPResult::True()) != TPResult::True()) ||
David Blaikie4e4d0842012-03-11 07:00:24 +00003537 (!getLangOpts().CPlusPlus && !isDeclarationSpecifier(true))) {
Douglas Gregora61b3e72010-12-01 17:42:47 +00003538 // We'll parse this as a bitfield later.
3539 PossibleBitfield = true;
3540 TPA.Revert();
3541 } else {
3542 // We have a type-specifier-seq.
3543 TPA.Commit();
3544 }
3545 }
3546 } else {
3547 // Consume the ':'.
3548 ConsumeToken();
3549 }
3550
3551 if (!PossibleBitfield) {
3552 SourceRange Range;
3553 BaseType = ParseTypeName(&Range);
Chad Rosier8decdee2012-06-26 22:30:43 +00003554
Richard Smith80ad52f2013-01-02 11:42:31 +00003555 if (getLangOpts().CPlusPlus11) {
Richard Smith7fe62082011-10-15 05:09:34 +00003556 Diag(StartLoc, diag::warn_cxx98_compat_enum_fixed_underlying_type);
Eli Friedmancef3a7b2012-11-02 01:34:28 +00003557 } else if (!getLangOpts().ObjC2) {
3558 if (getLangOpts().CPlusPlus)
3559 Diag(StartLoc, diag::ext_cxx11_enum_fixed_underlying_type) << Range;
3560 else
3561 Diag(StartLoc, diag::ext_c_enum_fixed_underlying_type) << Range;
3562 }
Douglas Gregora61b3e72010-12-01 17:42:47 +00003563 }
Douglas Gregor1274ccd2010-10-08 23:50:27 +00003564 }
3565
Richard Smithbdad7a22012-01-10 01:33:14 +00003566 // There are four options here. If we have 'friend enum foo;' then this is a
3567 // friend declaration, and cannot have an accompanying definition. If we have
3568 // 'enum foo;', then this is a forward declaration. If we have
3569 // 'enum foo {...' then this is a definition. Otherwise we have something
3570 // like 'enum foo xyz', a reference.
Argyrios Kyrtzidise281b4c2008-09-11 00:21:41 +00003571 //
3572 // This is needed to handle stuff like this right (C99 6.7.2.3p11):
3573 // enum foo {..}; void bar() { enum foo; } <- new foo in bar.
3574 // enum foo {..}; void bar() { enum foo x; } <- use of old foo.
3575 //
John McCallf312b1e2010-08-26 23:41:50 +00003576 Sema::TagUseKind TUK;
John McCall13489672012-05-07 06:16:58 +00003577 if (!AllowDeclaration) {
Richard Smith7796eb52012-03-12 08:56:40 +00003578 TUK = Sema::TUK_Reference;
John McCall13489672012-05-07 06:16:58 +00003579 } else if (Tok.is(tok::l_brace)) {
3580 if (DS.isFriendSpecified()) {
3581 Diag(Tok.getLocation(), diag::err_friend_decl_defines_type)
3582 << SourceRange(DS.getFriendSpecLoc());
3583 ConsumeBrace();
3584 SkipUntil(tok::r_brace);
3585 TUK = Sema::TUK_Friend;
3586 } else {
3587 TUK = Sema::TUK_Definition;
3588 }
Richard Smithc9f35172012-06-25 21:37:02 +00003589 } else if (DSC != DSC_type_specifier &&
3590 (Tok.is(tok::semi) ||
Richard Smith139be702012-07-02 19:14:01 +00003591 (Tok.isAtStartOfLine() &&
3592 !isValidAfterTypeSpecifier(CanBeBitfield)))) {
Richard Smithc9f35172012-06-25 21:37:02 +00003593 TUK = DS.isFriendSpecified() ? Sema::TUK_Friend : Sema::TUK_Declaration;
3594 if (Tok.isNot(tok::semi)) {
3595 // A semicolon was missing after this declaration. Diagnose and recover.
3596 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_tagdecl,
3597 "enum");
3598 PP.EnterToken(Tok);
3599 Tok.setKind(tok::semi);
3600 }
John McCall13489672012-05-07 06:16:58 +00003601 } else {
John McCallf312b1e2010-08-26 23:41:50 +00003602 TUK = Sema::TUK_Reference;
John McCall13489672012-05-07 06:16:58 +00003603 }
3604
3605 // If this is an elaborated type specifier, and we delayed
3606 // diagnostics before, just merge them into the current pool.
3607 if (TUK == Sema::TUK_Reference && shouldDelayDiagsInTag) {
3608 diagsFromTag.redelay();
3609 }
Richard Smith1af83c42012-03-23 03:33:32 +00003610
3611 MultiTemplateParamsArg TParams;
Douglas Gregor8fc6d232010-05-03 17:48:54 +00003612 if (TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate &&
John McCallf312b1e2010-08-26 23:41:50 +00003613 TUK != Sema::TUK_Reference) {
Richard Smith80ad52f2013-01-02 11:42:31 +00003614 if (!getLangOpts().CPlusPlus11 || !SS.isSet()) {
Richard Smith1af83c42012-03-23 03:33:32 +00003615 // Skip the rest of this declarator, up until the comma or semicolon.
3616 Diag(Tok, diag::err_enum_template);
3617 SkipUntil(tok::comma, true);
3618 return;
3619 }
3620
3621 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation) {
3622 // Enumerations can't be explicitly instantiated.
3623 DS.SetTypeSpecError();
3624 Diag(StartLoc, diag::err_explicit_instantiation_enum);
3625 return;
3626 }
3627
3628 assert(TemplateInfo.TemplateParams && "no template parameters");
3629 TParams = MultiTemplateParamsArg(TemplateInfo.TemplateParams->data(),
3630 TemplateInfo.TemplateParams->size());
Douglas Gregor8fc6d232010-05-03 17:48:54 +00003631 }
Chad Rosier8decdee2012-06-26 22:30:43 +00003632
Sean Hunt2edf0a22012-06-23 05:07:58 +00003633 if (TUK == Sema::TUK_Reference)
3634 ProhibitAttributes(attrs);
Richard Smith1af83c42012-03-23 03:33:32 +00003635
Douglas Gregorb9075602011-02-22 02:55:24 +00003636 if (!Name && TUK != Sema::TUK_Definition) {
3637 Diag(Tok, diag::err_enumerator_unnamed_no_def);
Richard Smith1af83c42012-03-23 03:33:32 +00003638
Douglas Gregorb9075602011-02-22 02:55:24 +00003639 // Skip the rest of this declarator, up until the comma or semicolon.
3640 SkipUntil(tok::comma, true);
3641 return;
3642 }
Richard Smith1af83c42012-03-23 03:33:32 +00003643
Douglas Gregor402abb52009-05-28 23:31:59 +00003644 bool Owned = false;
John McCallc4e70192009-09-11 04:59:25 +00003645 bool IsDependent = false;
Douglas Gregor48c89f42010-04-24 16:38:41 +00003646 const char *PrevSpec = 0;
3647 unsigned DiagID;
John McCalld226f652010-08-21 09:40:31 +00003648 Decl *TagDecl = Actions.ActOnTag(getCurScope(), DeclSpec::TST_enum, TUK,
John McCall7f040a92010-12-24 02:08:15 +00003649 StartLoc, SS, Name, NameLoc, attrs.getList(),
Richard Smith1af83c42012-03-23 03:33:32 +00003650 AS, DS.getModulePrivateSpecLoc(), TParams,
Richard Smithbdad7a22012-01-10 01:33:14 +00003651 Owned, IsDependent, ScopedEnumKWLoc,
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +00003652 IsScopedUsingClassTag, BaseType);
Douglas Gregor1274ccd2010-10-08 23:50:27 +00003653
Douglas Gregor48c89f42010-04-24 16:38:41 +00003654 if (IsDependent) {
Chad Rosier8decdee2012-06-26 22:30:43 +00003655 // This enum has a dependent nested-name-specifier. Handle it as a
Douglas Gregor48c89f42010-04-24 16:38:41 +00003656 // dependent tag.
3657 if (!Name) {
3658 DS.SetTypeSpecError();
3659 Diag(Tok, diag::err_expected_type_name_after_typename);
3660 return;
3661 }
Chad Rosier8decdee2012-06-26 22:30:43 +00003662
Douglas Gregor23c94db2010-07-02 17:43:08 +00003663 TypeResult Type = Actions.ActOnDependentTag(getCurScope(), DeclSpec::TST_enum,
Chad Rosier8decdee2012-06-26 22:30:43 +00003664 TUK, SS, Name, StartLoc,
Douglas Gregor48c89f42010-04-24 16:38:41 +00003665 NameLoc);
3666 if (Type.isInvalid()) {
3667 DS.SetTypeSpecError();
3668 return;
3669 }
Chad Rosier8decdee2012-06-26 22:30:43 +00003670
Abramo Bagnara0daaf322011-03-16 20:16:18 +00003671 if (DS.SetTypeSpecType(DeclSpec::TST_typename, StartLoc,
3672 NameLoc.isValid() ? NameLoc : StartLoc,
3673 PrevSpec, DiagID, Type.get()))
Douglas Gregor48c89f42010-04-24 16:38:41 +00003674 Diag(StartLoc, DiagID) << PrevSpec;
Chad Rosier8decdee2012-06-26 22:30:43 +00003675
Douglas Gregor48c89f42010-04-24 16:38:41 +00003676 return;
3677 }
Mike Stump1eb44332009-09-09 15:08:12 +00003678
John McCalld226f652010-08-21 09:40:31 +00003679 if (!TagDecl) {
Chad Rosier8decdee2012-06-26 22:30:43 +00003680 // The action failed to produce an enumeration tag. If this is a
Douglas Gregor48c89f42010-04-24 16:38:41 +00003681 // definition, consume the entire definition.
Richard Smith7796eb52012-03-12 08:56:40 +00003682 if (Tok.is(tok::l_brace) && TUK != Sema::TUK_Reference) {
Douglas Gregor48c89f42010-04-24 16:38:41 +00003683 ConsumeBrace();
3684 SkipUntil(tok::r_brace);
3685 }
Chad Rosier8decdee2012-06-26 22:30:43 +00003686
Douglas Gregor48c89f42010-04-24 16:38:41 +00003687 DS.SetTypeSpecError();
3688 return;
3689 }
Richard Smithbdad7a22012-01-10 01:33:14 +00003690
Richard Smithc9f35172012-06-25 21:37:02 +00003691 if (Tok.is(tok::l_brace) && TUK != Sema::TUK_Reference)
John McCall13489672012-05-07 06:16:58 +00003692 ParseEnumBody(StartLoc, TagDecl);
Mike Stump1eb44332009-09-09 15:08:12 +00003693
Abramo Bagnara0daaf322011-03-16 20:16:18 +00003694 if (DS.SetTypeSpecType(DeclSpec::TST_enum, StartLoc,
3695 NameLoc.isValid() ? NameLoc : StartLoc,
3696 PrevSpec, DiagID, TagDecl, Owned))
John McCallfec54012009-08-03 20:12:06 +00003697 Diag(StartLoc, DiagID) << PrevSpec;
Reid Spencer5f016e22007-07-11 17:01:13 +00003698}
3699
3700/// ParseEnumBody - Parse a {} enclosed enumerator-list.
3701/// enumerator-list:
3702/// enumerator
3703/// enumerator-list ',' enumerator
3704/// enumerator:
3705/// enumeration-constant
3706/// enumeration-constant '=' constant-expression
3707/// enumeration-constant:
3708/// identifier
3709///
John McCalld226f652010-08-21 09:40:31 +00003710void Parser::ParseEnumBody(SourceLocation StartLoc, Decl *EnumDecl) {
Douglas Gregor074149e2009-01-05 19:45:36 +00003711 // Enter the scope of the enum body and start the definition.
3712 ParseScope EnumScope(this, Scope::DeclScope);
Douglas Gregor23c94db2010-07-02 17:43:08 +00003713 Actions.ActOnTagStartDefinition(getCurScope(), EnumDecl);
Douglas Gregor074149e2009-01-05 19:45:36 +00003714
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00003715 BalancedDelimiterTracker T(*this, tok::l_brace);
3716 T.consumeOpen();
Mike Stump1eb44332009-09-09 15:08:12 +00003717
Chris Lattner7946dd32007-08-27 17:24:30 +00003718 // C does not allow an empty enumerator-list, C++ does [dcl.enum].
David Blaikie4e4d0842012-03-11 07:00:24 +00003719 if (Tok.is(tok::r_brace) && !getLangOpts().CPlusPlus)
Fariborz Jahanian05115522010-05-28 22:23:22 +00003720 Diag(Tok, diag::error_empty_enum);
Mike Stump1eb44332009-09-09 15:08:12 +00003721
Chris Lattner5f9e2722011-07-23 10:55:15 +00003722 SmallVector<Decl *, 32> EnumConstantDecls;
Reid Spencer5f016e22007-07-11 17:01:13 +00003723
John McCalld226f652010-08-21 09:40:31 +00003724 Decl *LastEnumConstDecl = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00003725
Reid Spencer5f016e22007-07-11 17:01:13 +00003726 // Parse the enumerator-list.
Chris Lattner04d66662007-10-09 17:33:22 +00003727 while (Tok.is(tok::identifier)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003728 IdentifierInfo *Ident = Tok.getIdentifierInfo();
3729 SourceLocation IdentLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00003730
John McCall5b629aa2010-10-22 23:36:17 +00003731 // If attributes exist after the enumerator, parse them.
Sean Hunt2edf0a22012-06-23 05:07:58 +00003732 ParsedAttributesWithRange attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +00003733 MaybeParseGNUAttributes(attrs);
Richard Smith4e24f0f2013-01-02 12:01:23 +00003734 MaybeParseCXX11Attributes(attrs);
Sean Hunt2edf0a22012-06-23 05:07:58 +00003735 ProhibitAttributes(attrs);
John McCall5b629aa2010-10-22 23:36:17 +00003736
Reid Spencer5f016e22007-07-11 17:01:13 +00003737 SourceLocation EqualLoc;
John McCall60d7b3a2010-08-24 06:29:42 +00003738 ExprResult AssignedVal;
John McCall92576642012-05-07 06:16:41 +00003739 ParsingDeclRAIIObject PD(*this, ParsingDeclRAIIObject::NoParent);
Chad Rosier8decdee2012-06-26 22:30:43 +00003740
Chris Lattner04d66662007-10-09 17:33:22 +00003741 if (Tok.is(tok::equal)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003742 EqualLoc = ConsumeToken();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00003743 AssignedVal = ParseConstantExpression();
3744 if (AssignedVal.isInvalid())
Reid Spencer5f016e22007-07-11 17:01:13 +00003745 SkipUntil(tok::comma, tok::r_brace, true, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00003746 }
Mike Stump1eb44332009-09-09 15:08:12 +00003747
Reid Spencer5f016e22007-07-11 17:01:13 +00003748 // Install the enumerator constant into EnumDecl.
John McCalld226f652010-08-21 09:40:31 +00003749 Decl *EnumConstDecl = Actions.ActOnEnumConstant(getCurScope(), EnumDecl,
3750 LastEnumConstDecl,
3751 IdentLoc, Ident,
John McCall7f040a92010-12-24 02:08:15 +00003752 attrs.getList(), EqualLoc,
John McCalld226f652010-08-21 09:40:31 +00003753 AssignedVal.release());
Fariborz Jahanian5a477db2011-12-09 01:15:54 +00003754 PD.complete(EnumConstDecl);
Chad Rosier8decdee2012-06-26 22:30:43 +00003755
Reid Spencer5f016e22007-07-11 17:01:13 +00003756 EnumConstantDecls.push_back(EnumConstDecl);
3757 LastEnumConstDecl = EnumConstDecl;
Mike Stump1eb44332009-09-09 15:08:12 +00003758
Douglas Gregor751f6922010-09-07 14:51:08 +00003759 if (Tok.is(tok::identifier)) {
3760 // We're missing a comma between enumerators.
3761 SourceLocation Loc = PP.getLocForEndOfToken(PrevTokLocation);
Chad Rosier8decdee2012-06-26 22:30:43 +00003762 Diag(Loc, diag::err_enumerator_list_missing_comma)
Douglas Gregor751f6922010-09-07 14:51:08 +00003763 << FixItHint::CreateInsertion(Loc, ", ");
3764 continue;
3765 }
Chad Rosier8decdee2012-06-26 22:30:43 +00003766
Chris Lattner04d66662007-10-09 17:33:22 +00003767 if (Tok.isNot(tok::comma))
Reid Spencer5f016e22007-07-11 17:01:13 +00003768 break;
3769 SourceLocation CommaLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00003770
Richard Smith7fe62082011-10-15 05:09:34 +00003771 if (Tok.isNot(tok::identifier)) {
Richard Smith80ad52f2013-01-02 11:42:31 +00003772 if (!getLangOpts().C99 && !getLangOpts().CPlusPlus11)
Richard Smitheab9d6f2012-07-23 05:45:25 +00003773 Diag(CommaLoc, getLangOpts().CPlusPlus ?
3774 diag::ext_enumerator_list_comma_cxx :
3775 diag::ext_enumerator_list_comma_c)
Richard Smith7fe62082011-10-15 05:09:34 +00003776 << FixItHint::CreateRemoval(CommaLoc);
Richard Smith80ad52f2013-01-02 11:42:31 +00003777 else if (getLangOpts().CPlusPlus11)
Richard Smith7fe62082011-10-15 05:09:34 +00003778 Diag(CommaLoc, diag::warn_cxx98_compat_enumerator_list_comma)
3779 << FixItHint::CreateRemoval(CommaLoc);
3780 }
Reid Spencer5f016e22007-07-11 17:01:13 +00003781 }
Mike Stump1eb44332009-09-09 15:08:12 +00003782
Reid Spencer5f016e22007-07-11 17:01:13 +00003783 // Eat the }.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00003784 T.consumeClose();
Reid Spencer5f016e22007-07-11 17:01:13 +00003785
Reid Spencer5f016e22007-07-11 17:01:13 +00003786 // If attributes exist after the identifier list, parse them.
John McCall0b7e6782011-03-24 11:26:52 +00003787 ParsedAttributes attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +00003788 MaybeParseGNUAttributes(attrs);
Douglas Gregor72de6672009-01-08 20:45:30 +00003789
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00003790 Actions.ActOnEnumBody(StartLoc, T.getOpenLocation(), T.getCloseLocation(),
Dmitri Gribenko9ff2b422013-04-27 20:23:52 +00003791 EnumDecl, EnumConstantDecls,
3792 getCurScope(),
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00003793 attrs.getList());
Mike Stump1eb44332009-09-09 15:08:12 +00003794
Douglas Gregor72de6672009-01-08 20:45:30 +00003795 EnumScope.Exit();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00003796 Actions.ActOnTagFinishDefinition(getCurScope(), EnumDecl,
3797 T.getCloseLocation());
Richard Smithc9f35172012-06-25 21:37:02 +00003798
3799 // The next token must be valid after an enum definition. If not, a ';'
3800 // was probably forgotten.
Richard Smith139be702012-07-02 19:14:01 +00003801 bool CanBeBitfield = getCurScope()->getFlags() & Scope::ClassScope;
3802 if (!isValidAfterTypeSpecifier(CanBeBitfield)) {
Richard Smithc9f35172012-06-25 21:37:02 +00003803 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_tagdecl, "enum");
3804 // Push this token back into the preprocessor and change our current token
3805 // to ';' so that the rest of the code recovers as though there were an
3806 // ';' after the definition.
3807 PP.EnterToken(Tok);
3808 Tok.setKind(tok::semi);
3809 }
Reid Spencer5f016e22007-07-11 17:01:13 +00003810}
3811
3812/// isTypeSpecifierQualifier - Return true if the current token could be the
Steve Naroff5f8aa692008-02-11 23:15:56 +00003813/// start of a type-qualifier-list.
3814bool Parser::isTypeQualifier() const {
3815 switch (Tok.getKind()) {
3816 default: return false;
Peter Collingbourne207f4d82011-03-18 22:38:29 +00003817
3818 // type-qualifier only in OpenCL
3819 case tok::kw_private:
David Blaikie4e4d0842012-03-11 07:00:24 +00003820 return getLangOpts().OpenCL;
Peter Collingbourne207f4d82011-03-18 22:38:29 +00003821
Steve Naroff5f8aa692008-02-11 23:15:56 +00003822 // type-qualifier
3823 case tok::kw_const:
3824 case tok::kw_volatile:
3825 case tok::kw_restrict:
Peter Collingbourne207f4d82011-03-18 22:38:29 +00003826 case tok::kw___private:
3827 case tok::kw___local:
3828 case tok::kw___global:
3829 case tok::kw___constant:
3830 case tok::kw___read_only:
3831 case tok::kw___read_write:
3832 case tok::kw___write_only:
Steve Naroff5f8aa692008-02-11 23:15:56 +00003833 return true;
3834 }
3835}
3836
Chris Lattnerb3a4e432010-02-28 18:18:36 +00003837/// isKnownToBeTypeSpecifier - Return true if we know that the specified token
3838/// is definitely a type-specifier. Return false if it isn't part of a type
3839/// specifier or if we're not sure.
3840bool Parser::isKnownToBeTypeSpecifier(const Token &Tok) const {
3841 switch (Tok.getKind()) {
3842 default: return false;
3843 // type-specifiers
3844 case tok::kw_short:
3845 case tok::kw_long:
Francois Pichet338d7f72011-04-28 01:59:37 +00003846 case tok::kw___int64:
Richard Smith5a5a9712012-04-04 06:24:32 +00003847 case tok::kw___int128:
Chris Lattnerb3a4e432010-02-28 18:18:36 +00003848 case tok::kw_signed:
3849 case tok::kw_unsigned:
3850 case tok::kw__Complex:
3851 case tok::kw__Imaginary:
3852 case tok::kw_void:
3853 case tok::kw_char:
3854 case tok::kw_wchar_t:
3855 case tok::kw_char16_t:
3856 case tok::kw_char32_t:
3857 case tok::kw_int:
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +00003858 case tok::kw_half:
Chris Lattnerb3a4e432010-02-28 18:18:36 +00003859 case tok::kw_float:
3860 case tok::kw_double:
3861 case tok::kw_bool:
3862 case tok::kw__Bool:
3863 case tok::kw__Decimal32:
3864 case tok::kw__Decimal64:
3865 case tok::kw__Decimal128:
3866 case tok::kw___vector:
Chad Rosier8decdee2012-06-26 22:30:43 +00003867
Guy Benyeib13621d2012-12-18 14:38:23 +00003868 // OpenCL specific types:
3869 case tok::kw_image1d_t:
3870 case tok::kw_image1d_array_t:
3871 case tok::kw_image1d_buffer_t:
3872 case tok::kw_image2d_t:
3873 case tok::kw_image2d_array_t:
3874 case tok::kw_image3d_t:
Guy Benyei21f18c42013-02-07 10:55:47 +00003875 case tok::kw_sampler_t:
Guy Benyeie6b9d802013-01-20 12:31:11 +00003876 case tok::kw_event_t:
Guy Benyeib13621d2012-12-18 14:38:23 +00003877
Chris Lattnerb3a4e432010-02-28 18:18:36 +00003878 // struct-or-union-specifier (C99) or class-specifier (C++)
3879 case tok::kw_class:
3880 case tok::kw_struct:
Joao Matos6666ed42012-08-31 18:45:21 +00003881 case tok::kw___interface:
Chris Lattnerb3a4e432010-02-28 18:18:36 +00003882 case tok::kw_union:
3883 // enum-specifier
3884 case tok::kw_enum:
Chad Rosier8decdee2012-06-26 22:30:43 +00003885
Chris Lattnerb3a4e432010-02-28 18:18:36 +00003886 // typedef-name
3887 case tok::annot_typename:
3888 return true;
3889 }
3890}
3891
Steve Naroff5f8aa692008-02-11 23:15:56 +00003892/// isTypeSpecifierQualifier - Return true if the current token could be the
Reid Spencer5f016e22007-07-11 17:01:13 +00003893/// start of a specifier-qualifier-list.
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00003894bool Parser::isTypeSpecifierQualifier() {
Reid Spencer5f016e22007-07-11 17:01:13 +00003895 switch (Tok.getKind()) {
3896 default: return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003897
Chris Lattner166a8fc2009-01-04 23:41:41 +00003898 case tok::identifier: // foo::bar
John Thompson82287d12010-02-05 00:12:22 +00003899 if (TryAltiVecVectorToken())
3900 return true;
3901 // Fall through.
Douglas Gregord57959a2009-03-27 23:10:48 +00003902 case tok::kw_typename: // typename T::type
Chris Lattner166a8fc2009-01-04 23:41:41 +00003903 // Annotate typenames and C++ scope specifiers. If we get one, just
3904 // recurse to handle whatever we get.
3905 if (TryAnnotateTypeOrScopeToken())
John McCall9ba61662010-02-26 08:45:28 +00003906 return true;
3907 if (Tok.is(tok::identifier))
3908 return false;
3909 return isTypeSpecifierQualifier();
Douglas Gregord57959a2009-03-27 23:10:48 +00003910
Chris Lattner166a8fc2009-01-04 23:41:41 +00003911 case tok::coloncolon: // ::foo::bar
3912 if (NextToken().is(tok::kw_new) || // ::new
3913 NextToken().is(tok::kw_delete)) // ::delete
3914 return false;
3915
Chris Lattner166a8fc2009-01-04 23:41:41 +00003916 if (TryAnnotateTypeOrScopeToken())
John McCall9ba61662010-02-26 08:45:28 +00003917 return true;
3918 return isTypeSpecifierQualifier();
Mike Stump1eb44332009-09-09 15:08:12 +00003919
Reid Spencer5f016e22007-07-11 17:01:13 +00003920 // GNU attributes support.
3921 case tok::kw___attribute:
Steve Naroffd1861fd2007-07-31 12:34:36 +00003922 // GNU typeof support.
3923 case tok::kw_typeof:
Mike Stump1eb44332009-09-09 15:08:12 +00003924
Reid Spencer5f016e22007-07-11 17:01:13 +00003925 // type-specifiers
3926 case tok::kw_short:
3927 case tok::kw_long:
Francois Pichet338d7f72011-04-28 01:59:37 +00003928 case tok::kw___int64:
Richard Smith5a5a9712012-04-04 06:24:32 +00003929 case tok::kw___int128:
Reid Spencer5f016e22007-07-11 17:01:13 +00003930 case tok::kw_signed:
3931 case tok::kw_unsigned:
3932 case tok::kw__Complex:
3933 case tok::kw__Imaginary:
3934 case tok::kw_void:
3935 case tok::kw_char:
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +00003936 case tok::kw_wchar_t:
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00003937 case tok::kw_char16_t:
3938 case tok::kw_char32_t:
Reid Spencer5f016e22007-07-11 17:01:13 +00003939 case tok::kw_int:
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +00003940 case tok::kw_half:
Reid Spencer5f016e22007-07-11 17:01:13 +00003941 case tok::kw_float:
3942 case tok::kw_double:
Chris Lattner9298d962007-11-15 05:25:19 +00003943 case tok::kw_bool:
Reid Spencer5f016e22007-07-11 17:01:13 +00003944 case tok::kw__Bool:
3945 case tok::kw__Decimal32:
3946 case tok::kw__Decimal64:
3947 case tok::kw__Decimal128:
John Thompson82287d12010-02-05 00:12:22 +00003948 case tok::kw___vector:
Mike Stump1eb44332009-09-09 15:08:12 +00003949
Guy Benyeib13621d2012-12-18 14:38:23 +00003950 // OpenCL specific types:
3951 case tok::kw_image1d_t:
3952 case tok::kw_image1d_array_t:
3953 case tok::kw_image1d_buffer_t:
3954 case tok::kw_image2d_t:
3955 case tok::kw_image2d_array_t:
3956 case tok::kw_image3d_t:
Guy Benyei21f18c42013-02-07 10:55:47 +00003957 case tok::kw_sampler_t:
Guy Benyeie6b9d802013-01-20 12:31:11 +00003958 case tok::kw_event_t:
Guy Benyeib13621d2012-12-18 14:38:23 +00003959
Chris Lattner99dc9142008-04-13 18:59:07 +00003960 // struct-or-union-specifier (C99) or class-specifier (C++)
3961 case tok::kw_class:
Reid Spencer5f016e22007-07-11 17:01:13 +00003962 case tok::kw_struct:
Joao Matos6666ed42012-08-31 18:45:21 +00003963 case tok::kw___interface:
Reid Spencer5f016e22007-07-11 17:01:13 +00003964 case tok::kw_union:
3965 // enum-specifier
3966 case tok::kw_enum:
Mike Stump1eb44332009-09-09 15:08:12 +00003967
Reid Spencer5f016e22007-07-11 17:01:13 +00003968 // type-qualifier
3969 case tok::kw_const:
3970 case tok::kw_volatile:
3971 case tok::kw_restrict:
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00003972
John McCallb8a8de32012-11-14 00:49:39 +00003973 // Debugger support.
3974 case tok::kw___unknown_anytype:
3975
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00003976 // typedef-name
Chris Lattnerb31757b2009-01-06 05:06:21 +00003977 case tok::annot_typename:
Reid Spencer5f016e22007-07-11 17:01:13 +00003978 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00003979
Chris Lattner7c186be2008-10-20 00:25:30 +00003980 // GNU ObjC bizarre protocol extension: <proto1,proto2> with implicit 'id'.
3981 case tok::less:
David Blaikie4e4d0842012-03-11 07:00:24 +00003982 return getLangOpts().ObjC1;
Mike Stump1eb44332009-09-09 15:08:12 +00003983
Steve Naroff239f0732008-12-25 14:16:32 +00003984 case tok::kw___cdecl:
3985 case tok::kw___stdcall:
3986 case tok::kw___fastcall:
Douglas Gregorf813a2c2010-05-18 16:57:00 +00003987 case tok::kw___thiscall:
Eli Friedman290eeb02009-06-08 23:27:34 +00003988 case tok::kw___w64:
3989 case tok::kw___ptr64:
Francois Pichet58fd97a2011-08-25 00:36:46 +00003990 case tok::kw___ptr32:
Dawn Perchik52fc3142010-09-03 01:29:35 +00003991 case tok::kw___pascal:
Francois Pichet3bd9aa42011-08-18 09:59:55 +00003992 case tok::kw___unaligned:
Peter Collingbourne207f4d82011-03-18 22:38:29 +00003993
3994 case tok::kw___private:
3995 case tok::kw___local:
3996 case tok::kw___global:
3997 case tok::kw___constant:
3998 case tok::kw___read_only:
3999 case tok::kw___read_write:
4000 case tok::kw___write_only:
4001
Eli Friedman290eeb02009-06-08 23:27:34 +00004002 return true;
Peter Collingbourne207f4d82011-03-18 22:38:29 +00004003
4004 case tok::kw_private:
David Blaikie4e4d0842012-03-11 07:00:24 +00004005 return getLangOpts().OpenCL;
Eli Friedmanb001de72011-10-06 23:00:33 +00004006
Richard Smith4cf4a5e2013-03-28 01:55:44 +00004007 // C11 _Atomic
Eli Friedmanb001de72011-10-06 23:00:33 +00004008 case tok::kw__Atomic:
4009 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00004010 }
4011}
4012
4013/// isDeclarationSpecifier() - Return true if the current token is part of a
4014/// declaration specifier.
Douglas Gregor9497a732010-09-16 01:51:54 +00004015///
4016/// \param DisambiguatingWithExpression True to indicate that the purpose of
4017/// this check is to disambiguate between an expression and a declaration.
4018bool Parser::isDeclarationSpecifier(bool DisambiguatingWithExpression) {
Reid Spencer5f016e22007-07-11 17:01:13 +00004019 switch (Tok.getKind()) {
4020 default: return false;
Mike Stump1eb44332009-09-09 15:08:12 +00004021
Peter Collingbourne207f4d82011-03-18 22:38:29 +00004022 case tok::kw_private:
David Blaikie4e4d0842012-03-11 07:00:24 +00004023 return getLangOpts().OpenCL;
Peter Collingbourne207f4d82011-03-18 22:38:29 +00004024
Chris Lattner166a8fc2009-01-04 23:41:41 +00004025 case tok::identifier: // foo::bar
Steve Naroff61f72cb2009-03-09 21:12:44 +00004026 // Unfortunate hack to support "Class.factoryMethod" notation.
David Blaikie4e4d0842012-03-11 07:00:24 +00004027 if (getLangOpts().ObjC1 && NextToken().is(tok::period))
Steve Naroff61f72cb2009-03-09 21:12:44 +00004028 return false;
John Thompson82287d12010-02-05 00:12:22 +00004029 if (TryAltiVecVectorToken())
4030 return true;
4031 // Fall through.
David Blaikie42d6d0c2011-12-04 05:04:18 +00004032 case tok::kw_decltype: // decltype(T())::type
Douglas Gregord57959a2009-03-27 23:10:48 +00004033 case tok::kw_typename: // typename T::type
Chris Lattner166a8fc2009-01-04 23:41:41 +00004034 // Annotate typenames and C++ scope specifiers. If we get one, just
4035 // recurse to handle whatever we get.
4036 if (TryAnnotateTypeOrScopeToken())
John McCall9ba61662010-02-26 08:45:28 +00004037 return true;
4038 if (Tok.is(tok::identifier))
4039 return false;
Chad Rosier8decdee2012-06-26 22:30:43 +00004040
Douglas Gregor9497a732010-09-16 01:51:54 +00004041 // If we're in Objective-C and we have an Objective-C class type followed
Chad Rosier8decdee2012-06-26 22:30:43 +00004042 // by an identifier and then either ':' or ']', in a place where an
Douglas Gregor9497a732010-09-16 01:51:54 +00004043 // expression is permitted, then this is probably a class message send
4044 // missing the initial '['. In this case, we won't consider this to be
4045 // the start of a declaration.
Chad Rosier8decdee2012-06-26 22:30:43 +00004046 if (DisambiguatingWithExpression &&
Douglas Gregor9497a732010-09-16 01:51:54 +00004047 isStartOfObjCClassMessageMissingOpenBracket())
4048 return false;
Chad Rosier8decdee2012-06-26 22:30:43 +00004049
John McCall9ba61662010-02-26 08:45:28 +00004050 return isDeclarationSpecifier();
4051
Chris Lattner166a8fc2009-01-04 23:41:41 +00004052 case tok::coloncolon: // ::foo::bar
4053 if (NextToken().is(tok::kw_new) || // ::new
4054 NextToken().is(tok::kw_delete)) // ::delete
4055 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00004056
Chris Lattner166a8fc2009-01-04 23:41:41 +00004057 // Annotate typenames and C++ scope specifiers. If we get one, just
4058 // recurse to handle whatever we get.
4059 if (TryAnnotateTypeOrScopeToken())
John McCall9ba61662010-02-26 08:45:28 +00004060 return true;
4061 return isDeclarationSpecifier();
Mike Stump1eb44332009-09-09 15:08:12 +00004062
Reid Spencer5f016e22007-07-11 17:01:13 +00004063 // storage-class-specifier
4064 case tok::kw_typedef:
4065 case tok::kw_extern:
Steve Naroff8d54bf22007-12-18 00:16:02 +00004066 case tok::kw___private_extern__:
Reid Spencer5f016e22007-07-11 17:01:13 +00004067 case tok::kw_static:
4068 case tok::kw_auto:
4069 case tok::kw_register:
4070 case tok::kw___thread:
Richard Smithec642442013-04-12 22:46:28 +00004071 case tok::kw_thread_local:
4072 case tok::kw__Thread_local:
Mike Stump1eb44332009-09-09 15:08:12 +00004073
Douglas Gregor8d267c52011-09-09 02:06:17 +00004074 // Modules
4075 case tok::kw___module_private__:
Chad Rosier8decdee2012-06-26 22:30:43 +00004076
John McCallb8a8de32012-11-14 00:49:39 +00004077 // Debugger support
4078 case tok::kw___unknown_anytype:
4079
Reid Spencer5f016e22007-07-11 17:01:13 +00004080 // type-specifiers
4081 case tok::kw_short:
4082 case tok::kw_long:
Francois Pichet338d7f72011-04-28 01:59:37 +00004083 case tok::kw___int64:
Richard Smith5a5a9712012-04-04 06:24:32 +00004084 case tok::kw___int128:
Reid Spencer5f016e22007-07-11 17:01:13 +00004085 case tok::kw_signed:
4086 case tok::kw_unsigned:
4087 case tok::kw__Complex:
4088 case tok::kw__Imaginary:
4089 case tok::kw_void:
4090 case tok::kw_char:
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +00004091 case tok::kw_wchar_t:
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00004092 case tok::kw_char16_t:
4093 case tok::kw_char32_t:
4094
Reid Spencer5f016e22007-07-11 17:01:13 +00004095 case tok::kw_int:
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +00004096 case tok::kw_half:
Reid Spencer5f016e22007-07-11 17:01:13 +00004097 case tok::kw_float:
4098 case tok::kw_double:
Chris Lattner9298d962007-11-15 05:25:19 +00004099 case tok::kw_bool:
Reid Spencer5f016e22007-07-11 17:01:13 +00004100 case tok::kw__Bool:
4101 case tok::kw__Decimal32:
4102 case tok::kw__Decimal64:
4103 case tok::kw__Decimal128:
John Thompson82287d12010-02-05 00:12:22 +00004104 case tok::kw___vector:
Mike Stump1eb44332009-09-09 15:08:12 +00004105
Guy Benyeib13621d2012-12-18 14:38:23 +00004106 // OpenCL specific types:
4107 case tok::kw_image1d_t:
4108 case tok::kw_image1d_array_t:
4109 case tok::kw_image1d_buffer_t:
4110 case tok::kw_image2d_t:
4111 case tok::kw_image2d_array_t:
4112 case tok::kw_image3d_t:
Guy Benyei21f18c42013-02-07 10:55:47 +00004113 case tok::kw_sampler_t:
Guy Benyeie6b9d802013-01-20 12:31:11 +00004114 case tok::kw_event_t:
Guy Benyeib13621d2012-12-18 14:38:23 +00004115
Chris Lattner99dc9142008-04-13 18:59:07 +00004116 // struct-or-union-specifier (C99) or class-specifier (C++)
4117 case tok::kw_class:
Reid Spencer5f016e22007-07-11 17:01:13 +00004118 case tok::kw_struct:
4119 case tok::kw_union:
Joao Matos6666ed42012-08-31 18:45:21 +00004120 case tok::kw___interface:
Reid Spencer5f016e22007-07-11 17:01:13 +00004121 // enum-specifier
4122 case tok::kw_enum:
Mike Stump1eb44332009-09-09 15:08:12 +00004123
Reid Spencer5f016e22007-07-11 17:01:13 +00004124 // type-qualifier
4125 case tok::kw_const:
4126 case tok::kw_volatile:
4127 case tok::kw_restrict:
Steve Naroffd1861fd2007-07-31 12:34:36 +00004128
Reid Spencer5f016e22007-07-11 17:01:13 +00004129 // function-specifier
4130 case tok::kw_inline:
Douglas Gregorb48fe382008-10-31 09:07:45 +00004131 case tok::kw_virtual:
4132 case tok::kw_explicit:
Richard Smithde03c152013-01-17 22:16:11 +00004133 case tok::kw__Noreturn:
Chris Lattnerd6c7c182007-08-09 16:40:21 +00004134
Richard Smith4cd81c52013-01-29 09:02:09 +00004135 // alignment-specifier
4136 case tok::kw__Alignas:
4137
Richard Smith53aec2a2012-10-25 00:00:53 +00004138 // friend keyword.
4139 case tok::kw_friend:
4140
Peter Collingbournec6eb44b2011-04-15 00:35:57 +00004141 // static_assert-declaration
4142 case tok::kw__Static_assert:
4143
Chris Lattner1ef08762007-08-09 17:01:07 +00004144 // GNU typeof support.
4145 case tok::kw_typeof:
Mike Stump1eb44332009-09-09 15:08:12 +00004146
Chris Lattner1ef08762007-08-09 17:01:07 +00004147 // GNU attributes.
Chris Lattnerd6c7c182007-08-09 16:40:21 +00004148 case tok::kw___attribute:
Mike Stump1eb44332009-09-09 15:08:12 +00004149
Richard Smith53aec2a2012-10-25 00:00:53 +00004150 // C++11 decltype and constexpr.
David Blaikie42d6d0c2011-12-04 05:04:18 +00004151 case tok::annot_decltype:
Richard Smith53aec2a2012-10-25 00:00:53 +00004152 case tok::kw_constexpr:
Francois Pichete3d49b42011-06-19 08:02:06 +00004153
Richard Smith4cf4a5e2013-03-28 01:55:44 +00004154 // C11 _Atomic
Eli Friedmanb001de72011-10-06 23:00:33 +00004155 case tok::kw__Atomic:
4156 return true;
4157
Chris Lattnerf3948c42008-07-26 03:38:44 +00004158 // GNU ObjC bizarre protocol extension: <proto1,proto2> with implicit 'id'.
4159 case tok::less:
David Blaikie4e4d0842012-03-11 07:00:24 +00004160 return getLangOpts().ObjC1;
Mike Stump1eb44332009-09-09 15:08:12 +00004161
Douglas Gregord9d75e52011-04-27 05:41:15 +00004162 // typedef-name
4163 case tok::annot_typename:
4164 return !DisambiguatingWithExpression ||
4165 !isStartOfObjCClassMessageMissingOpenBracket();
Chad Rosier8decdee2012-06-26 22:30:43 +00004166
Steve Naroff47f52092009-01-06 19:34:12 +00004167 case tok::kw___declspec:
Steve Naroff239f0732008-12-25 14:16:32 +00004168 case tok::kw___cdecl:
4169 case tok::kw___stdcall:
4170 case tok::kw___fastcall:
Douglas Gregorf813a2c2010-05-18 16:57:00 +00004171 case tok::kw___thiscall:
Eli Friedman290eeb02009-06-08 23:27:34 +00004172 case tok::kw___w64:
Aaron Ballmanaa9df092013-05-22 23:25:32 +00004173 case tok::kw___sptr:
4174 case tok::kw___uptr:
Eli Friedman290eeb02009-06-08 23:27:34 +00004175 case tok::kw___ptr64:
Francois Pichet58fd97a2011-08-25 00:36:46 +00004176 case tok::kw___ptr32:
Eli Friedman290eeb02009-06-08 23:27:34 +00004177 case tok::kw___forceinline:
Dawn Perchik52fc3142010-09-03 01:29:35 +00004178 case tok::kw___pascal:
Francois Pichet3bd9aa42011-08-18 09:59:55 +00004179 case tok::kw___unaligned:
Peter Collingbourne207f4d82011-03-18 22:38:29 +00004180
4181 case tok::kw___private:
4182 case tok::kw___local:
4183 case tok::kw___global:
4184 case tok::kw___constant:
4185 case tok::kw___read_only:
4186 case tok::kw___read_write:
4187 case tok::kw___write_only:
4188
Eli Friedman290eeb02009-06-08 23:27:34 +00004189 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00004190 }
4191}
4192
Douglas Gregor0efc2c12010-01-13 17:31:36 +00004193bool Parser::isConstructorDeclarator() {
4194 TentativeParsingAction TPA(*this);
4195
4196 // Parse the C++ scope specifier.
4197 CXXScopeSpec SS;
Chad Rosier8decdee2012-06-26 22:30:43 +00004198 if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(),
Douglas Gregorefaa93a2011-11-07 17:33:42 +00004199 /*EnteringContext=*/true)) {
John McCall9ba61662010-02-26 08:45:28 +00004200 TPA.Revert();
4201 return false;
4202 }
Douglas Gregor0efc2c12010-01-13 17:31:36 +00004203
4204 // Parse the constructor name.
4205 if (Tok.is(tok::identifier) || Tok.is(tok::annot_template_id)) {
4206 // We already know that we have a constructor name; just consume
4207 // the token.
4208 ConsumeToken();
4209 } else {
4210 TPA.Revert();
4211 return false;
4212 }
4213
Richard Smith22592862012-03-27 23:05:05 +00004214 // Current class name must be followed by a left parenthesis.
Douglas Gregor0efc2c12010-01-13 17:31:36 +00004215 if (Tok.isNot(tok::l_paren)) {
4216 TPA.Revert();
4217 return false;
4218 }
4219 ConsumeParen();
4220
Richard Smith22592862012-03-27 23:05:05 +00004221 // A right parenthesis, or ellipsis followed by a right parenthesis signals
4222 // that we have a constructor.
4223 if (Tok.is(tok::r_paren) ||
4224 (Tok.is(tok::ellipsis) && NextToken().is(tok::r_paren))) {
Douglas Gregor0efc2c12010-01-13 17:31:36 +00004225 TPA.Revert();
4226 return true;
4227 }
4228
Richard Smith9ec28912013-09-06 00:12:20 +00004229 // A C++11 attribute here signals that we have a constructor, and is an
4230 // attribute on the first constructor parameter.
4231 if (getLangOpts().CPlusPlus11 &&
4232 isCXX11AttributeSpecifier(/*Disambiguate*/ false,
4233 /*OuterMightBeMessageSend*/ true)) {
4234 TPA.Revert();
4235 return true;
4236 }
4237
Douglas Gregor0efc2c12010-01-13 17:31:36 +00004238 // If we need to, enter the specified scope.
4239 DeclaratorScopeObj DeclScopeObj(*this, SS);
Douglas Gregor23c94db2010-07-02 17:43:08 +00004240 if (SS.isSet() && Actions.ShouldEnterDeclaratorScope(getCurScope(), SS))
Douglas Gregor0efc2c12010-01-13 17:31:36 +00004241 DeclScopeObj.EnterDeclaratorScope();
4242
Francois Pichetdfaa5fb2011-01-31 04:54:32 +00004243 // Optionally skip Microsoft attributes.
John McCall0b7e6782011-03-24 11:26:52 +00004244 ParsedAttributes Attrs(AttrFactory);
Francois Pichetdfaa5fb2011-01-31 04:54:32 +00004245 MaybeParseMicrosoftAttributes(Attrs);
4246
Douglas Gregor0efc2c12010-01-13 17:31:36 +00004247 // Check whether the next token(s) are part of a declaration
4248 // specifier, in which case we have the start of a parameter and,
4249 // therefore, we know that this is a constructor.
Richard Smith412e0cc2012-03-27 00:56:56 +00004250 bool IsConstructor = false;
4251 if (isDeclarationSpecifier())
4252 IsConstructor = true;
4253 else if (Tok.is(tok::identifier) ||
4254 (Tok.is(tok::annot_cxxscope) && NextToken().is(tok::identifier))) {
4255 // We've seen "C ( X" or "C ( X::Y", but "X" / "X::Y" is not a type.
4256 // This might be a parenthesized member name, but is more likely to
4257 // be a constructor declaration with an invalid argument type. Keep
4258 // looking.
4259 if (Tok.is(tok::annot_cxxscope))
4260 ConsumeToken();
4261 ConsumeToken();
4262
4263 // If this is not a constructor, we must be parsing a declarator,
Richard Smith5d8388c2012-03-27 01:42:32 +00004264 // which must have one of the following syntactic forms (see the
4265 // grammar extract at the start of ParseDirectDeclarator):
Richard Smith412e0cc2012-03-27 00:56:56 +00004266 switch (Tok.getKind()) {
4267 case tok::l_paren:
4268 // C(X ( int));
4269 case tok::l_square:
4270 // C(X [ 5]);
4271 // C(X [ [attribute]]);
4272 case tok::coloncolon:
4273 // C(X :: Y);
4274 // C(X :: *p);
4275 case tok::r_paren:
4276 // C(X )
4277 // Assume this isn't a constructor, rather than assuming it's a
4278 // constructor with an unnamed parameter of an ill-formed type.
4279 break;
4280
4281 default:
4282 IsConstructor = true;
4283 break;
4284 }
4285 }
4286
Douglas Gregor0efc2c12010-01-13 17:31:36 +00004287 TPA.Revert();
4288 return IsConstructor;
4289}
Reid Spencer5f016e22007-07-11 17:01:13 +00004290
4291/// ParseTypeQualifierListOpt
Dawn Perchik52fc3142010-09-03 01:29:35 +00004292/// type-qualifier-list: [C99 6.7.5]
4293/// type-qualifier
Chad Rosier8decdee2012-06-26 22:30:43 +00004294/// [vendor] attributes
Dawn Perchik52fc3142010-09-03 01:29:35 +00004295/// [ only if VendorAttributesAllowed=true ]
4296/// type-qualifier-list type-qualifier
Chad Rosier8decdee2012-06-26 22:30:43 +00004297/// [vendor] type-qualifier-list attributes
Dawn Perchik52fc3142010-09-03 01:29:35 +00004298/// [ only if VendorAttributesAllowed=true ]
4299/// [C++0x] attribute-specifier[opt] is allowed before cv-qualifier-seq
Richard Smith4e24f0f2013-01-02 12:01:23 +00004300/// [ only if CXX11AttributesAllowed=true ]
Dawn Perchik52fc3142010-09-03 01:29:35 +00004301/// Note: vendor can be GNU, MS, etc.
Reid Spencer5f016e22007-07-11 17:01:13 +00004302///
Dawn Perchik52fc3142010-09-03 01:29:35 +00004303void Parser::ParseTypeQualifierListOpt(DeclSpec &DS,
4304 bool VendorAttributesAllowed,
Richard Smith4cf4a5e2013-03-28 01:55:44 +00004305 bool CXX11AttributesAllowed,
4306 bool AtomicAllowed) {
Richard Smith80ad52f2013-01-02 11:42:31 +00004307 if (getLangOpts().CPlusPlus11 && CXX11AttributesAllowed &&
Richard Smith6ee326a2012-04-10 01:32:12 +00004308 isCXX11AttributeSpecifier()) {
John McCall0b7e6782011-03-24 11:26:52 +00004309 ParsedAttributesWithRange attrs(AttrFactory);
Richard Smithc56298d2012-04-10 03:25:07 +00004310 ParseCXX11Attributes(attrs);
Richard Smith6ee326a2012-04-10 01:32:12 +00004311 DS.takeAttributesFrom(attrs);
Sean Huntbbd37c62009-11-21 08:43:09 +00004312 }
Abramo Bagnara796aa442011-03-12 11:17:06 +00004313
4314 SourceLocation EndLoc;
4315
Reid Spencer5f016e22007-07-11 17:01:13 +00004316 while (1) {
John McCallfec54012009-08-03 20:12:06 +00004317 bool isInvalid = false;
Reid Spencer5f016e22007-07-11 17:01:13 +00004318 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +00004319 unsigned DiagID = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00004320 SourceLocation Loc = Tok.getLocation();
4321
4322 switch (Tok.getKind()) {
Douglas Gregor1a480c42010-08-27 17:35:51 +00004323 case tok::code_completion:
4324 Actions.CodeCompleteTypeQualifiers(DS);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00004325 return cutOffParsing();
Chad Rosier8decdee2012-06-26 22:30:43 +00004326
Reid Spencer5f016e22007-07-11 17:01:13 +00004327 case tok::kw_const:
John McCallfec54012009-08-03 20:12:06 +00004328 isInvalid = DS.SetTypeQual(DeclSpec::TQ_const , Loc, PrevSpec, DiagID,
Richard Smithd654f2d2012-10-17 23:31:46 +00004329 getLangOpts());
Reid Spencer5f016e22007-07-11 17:01:13 +00004330 break;
4331 case tok::kw_volatile:
John McCallfec54012009-08-03 20:12:06 +00004332 isInvalid = DS.SetTypeQual(DeclSpec::TQ_volatile, Loc, PrevSpec, DiagID,
Richard Smithd654f2d2012-10-17 23:31:46 +00004333 getLangOpts());
Reid Spencer5f016e22007-07-11 17:01:13 +00004334 break;
4335 case tok::kw_restrict:
John McCallfec54012009-08-03 20:12:06 +00004336 isInvalid = DS.SetTypeQual(DeclSpec::TQ_restrict, Loc, PrevSpec, DiagID,
Richard Smithd654f2d2012-10-17 23:31:46 +00004337 getLangOpts());
Reid Spencer5f016e22007-07-11 17:01:13 +00004338 break;
Richard Smith4cf4a5e2013-03-28 01:55:44 +00004339 case tok::kw__Atomic:
4340 if (!AtomicAllowed)
4341 goto DoneWithTypeQuals;
4342 isInvalid = DS.SetTypeQual(DeclSpec::TQ_atomic, Loc, PrevSpec, DiagID,
4343 getLangOpts());
4344 break;
Peter Collingbourne207f4d82011-03-18 22:38:29 +00004345
4346 // OpenCL qualifiers:
Chad Rosier8decdee2012-06-26 22:30:43 +00004347 case tok::kw_private:
David Blaikie4e4d0842012-03-11 07:00:24 +00004348 if (!getLangOpts().OpenCL)
Peter Collingbourne207f4d82011-03-18 22:38:29 +00004349 goto DoneWithTypeQuals;
4350 case tok::kw___private:
4351 case tok::kw___global:
4352 case tok::kw___local:
4353 case tok::kw___constant:
4354 case tok::kw___read_only:
4355 case tok::kw___write_only:
4356 case tok::kw___read_write:
4357 ParseOpenCLQualifiers(DS);
4358 break;
4359
Aaron Ballmanaa9df092013-05-22 23:25:32 +00004360 case tok::kw___sptr:
4361 case tok::kw___uptr:
Eli Friedman290eeb02009-06-08 23:27:34 +00004362 case tok::kw___w64:
Steve Naroff86bc6cf2008-12-25 14:41:26 +00004363 case tok::kw___ptr64:
Francois Pichet58fd97a2011-08-25 00:36:46 +00004364 case tok::kw___ptr32:
Steve Naroff239f0732008-12-25 14:16:32 +00004365 case tok::kw___cdecl:
4366 case tok::kw___stdcall:
4367 case tok::kw___fastcall:
Douglas Gregorf813a2c2010-05-18 16:57:00 +00004368 case tok::kw___thiscall:
Francois Pichet3bd9aa42011-08-18 09:59:55 +00004369 case tok::kw___unaligned:
Dawn Perchik52fc3142010-09-03 01:29:35 +00004370 if (VendorAttributesAllowed) {
John McCall7f040a92010-12-24 02:08:15 +00004371 ParseMicrosoftTypeAttributes(DS.getAttributes());
Eli Friedman290eeb02009-06-08 23:27:34 +00004372 continue;
4373 }
4374 goto DoneWithTypeQuals;
Dawn Perchik52fc3142010-09-03 01:29:35 +00004375 case tok::kw___pascal:
4376 if (VendorAttributesAllowed) {
John McCall7f040a92010-12-24 02:08:15 +00004377 ParseBorlandTypeAttributes(DS.getAttributes());
Dawn Perchik52fc3142010-09-03 01:29:35 +00004378 continue;
4379 }
4380 goto DoneWithTypeQuals;
Reid Spencer5f016e22007-07-11 17:01:13 +00004381 case tok::kw___attribute:
Dawn Perchik52fc3142010-09-03 01:29:35 +00004382 if (VendorAttributesAllowed) {
John McCall7f040a92010-12-24 02:08:15 +00004383 ParseGNUAttributes(DS.getAttributes());
Chris Lattner5a69d1c2008-12-18 07:02:59 +00004384 continue; // do *not* consume the next token!
4385 }
4386 // otherwise, FALL THROUGH!
4387 default:
Steve Naroff239f0732008-12-25 14:16:32 +00004388 DoneWithTypeQuals:
Chris Lattner5a69d1c2008-12-18 07:02:59 +00004389 // If this is not a type-qualifier token, we're done reading type
4390 // qualifiers. First verify that DeclSpec's are consistent.
Douglas Gregor9b3064b2009-04-01 22:41:11 +00004391 DS.Finish(Diags, PP);
Abramo Bagnara796aa442011-03-12 11:17:06 +00004392 if (EndLoc.isValid())
4393 DS.SetRangeEnd(EndLoc);
Chris Lattner5a69d1c2008-12-18 07:02:59 +00004394 return;
Reid Spencer5f016e22007-07-11 17:01:13 +00004395 }
Chris Lattnera1fcbad2008-12-18 06:50:14 +00004396
Reid Spencer5f016e22007-07-11 17:01:13 +00004397 // If the specifier combination wasn't legal, issue a diagnostic.
4398 if (isInvalid) {
4399 assert(PrevSpec && "Method did not return previous specifier!");
Chris Lattner1ab3b962008-11-18 07:48:38 +00004400 Diag(Tok, DiagID) << PrevSpec;
Reid Spencer5f016e22007-07-11 17:01:13 +00004401 }
Abramo Bagnara796aa442011-03-12 11:17:06 +00004402 EndLoc = ConsumeToken();
Reid Spencer5f016e22007-07-11 17:01:13 +00004403 }
4404}
4405
4406
4407/// ParseDeclarator - Parse and verify a newly-initialized declarator.
4408///
4409void Parser::ParseDeclarator(Declarator &D) {
4410 /// This implements the 'declarator' production in the C grammar, then checks
4411 /// for well-formedness and issues diagnostics.
Sebastian Redl4c5d3202008-11-21 19:14:01 +00004412 ParseDeclaratorInternal(D, &Parser::ParseDirectDeclarator);
Reid Spencer5f016e22007-07-11 17:01:13 +00004413}
4414
Richard Smith9988f282012-03-29 01:16:42 +00004415static bool isPtrOperatorToken(tok::TokenKind Kind, const LangOptions &Lang) {
4416 if (Kind == tok::star || Kind == tok::caret)
4417 return true;
4418
4419 // We parse rvalue refs in C++03, because otherwise the errors are scary.
4420 if (!Lang.CPlusPlus)
4421 return false;
4422
4423 return Kind == tok::amp || Kind == tok::ampamp;
4424}
4425
Sebastian Redl4c5d3202008-11-21 19:14:01 +00004426/// ParseDeclaratorInternal - Parse a C or C++ declarator. The direct-declarator
4427/// is parsed by the function passed to it. Pass null, and the direct-declarator
4428/// isn't parsed at all, making this function effectively parse the C++
Douglas Gregor2f1bc522008-11-07 20:08:42 +00004429/// ptr-operator production.
4430///
Richard Smith0706df42011-10-19 21:33:05 +00004431/// If the grammar of this construct is extended, matching changes must also be
Richard Smith5d8388c2012-03-27 01:42:32 +00004432/// made to TryParseDeclarator and MightBeDeclarator, and possibly to
4433/// isConstructorDeclarator.
Richard Smith0706df42011-10-19 21:33:05 +00004434///
Sebastian Redlf30208a2009-01-24 21:16:55 +00004435/// declarator: [C99 6.7.5] [C++ 8p4, dcl.decl]
4436/// [C] pointer[opt] direct-declarator
4437/// [C++] direct-declarator
4438/// [C++] ptr-operator declarator
Reid Spencer5f016e22007-07-11 17:01:13 +00004439///
4440/// pointer: [C99 6.7.5]
4441/// '*' type-qualifier-list[opt]
4442/// '*' type-qualifier-list[opt] pointer
4443///
Douglas Gregor2f1bc522008-11-07 20:08:42 +00004444/// ptr-operator:
4445/// '*' cv-qualifier-seq[opt]
4446/// '&'
Sebastian Redl05532f22009-03-15 22:02:01 +00004447/// [C++0x] '&&'
Douglas Gregor2f1bc522008-11-07 20:08:42 +00004448/// [GNU] '&' restrict[opt] attributes[opt]
Sebastian Redl05532f22009-03-15 22:02:01 +00004449/// [GNU?] '&&' restrict[opt] attributes[opt]
Sebastian Redlf30208a2009-01-24 21:16:55 +00004450/// '::'[opt] nested-name-specifier '*' cv-qualifier-seq[opt]
Sebastian Redl4c5d3202008-11-21 19:14:01 +00004451void Parser::ParseDeclaratorInternal(Declarator &D,
4452 DirectDeclParseFunction DirectDeclParser) {
Douglas Gregor91a28862009-08-26 14:27:30 +00004453 if (Diags.hasAllExtensionsSilenced())
4454 D.setExtension();
Chad Rosier8decdee2012-06-26 22:30:43 +00004455
Sebastian Redlf30208a2009-01-24 21:16:55 +00004456 // C++ member pointers start with a '::' or a nested-name.
4457 // Member pointers get special handling, since there's no place for the
4458 // scope spec in the generic path below.
David Blaikie4e4d0842012-03-11 07:00:24 +00004459 if (getLangOpts().CPlusPlus &&
Chris Lattnerf919bfe2009-03-24 17:04:48 +00004460 (Tok.is(tok::coloncolon) || Tok.is(tok::identifier) ||
4461 Tok.is(tok::annot_cxxscope))) {
Douglas Gregorefaa93a2011-11-07 17:33:42 +00004462 bool EnteringContext = D.getContext() == Declarator::FileContext ||
4463 D.getContext() == Declarator::MemberContext;
Sebastian Redlf30208a2009-01-24 21:16:55 +00004464 CXXScopeSpec SS;
Douglas Gregorefaa93a2011-11-07 17:33:42 +00004465 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), EnteringContext);
John McCall9ba61662010-02-26 08:45:28 +00004466
Jeffrey Yasskinedc28772010-04-07 23:29:58 +00004467 if (SS.isNotEmpty()) {
Mike Stump1eb44332009-09-09 15:08:12 +00004468 if (Tok.isNot(tok::star)) {
Sebastian Redlf30208a2009-01-24 21:16:55 +00004469 // The scope spec really belongs to the direct-declarator.
Richard Smith6a502c42013-01-08 22:43:49 +00004470 if (D.mayHaveIdentifier())
4471 D.getCXXScopeSpec() = SS;
4472 else
4473 AnnotateScopeToken(SS, true);
4474
Sebastian Redlf30208a2009-01-24 21:16:55 +00004475 if (DirectDeclParser)
4476 (this->*DirectDeclParser)(D);
4477 return;
4478 }
4479
4480 SourceLocation Loc = ConsumeToken();
Sebastian Redlab197ba2009-02-09 18:23:29 +00004481 D.SetRangeEnd(Loc);
John McCall0b7e6782011-03-24 11:26:52 +00004482 DeclSpec DS(AttrFactory);
Sebastian Redlf30208a2009-01-24 21:16:55 +00004483 ParseTypeQualifierListOpt(DS);
Sebastian Redlab197ba2009-02-09 18:23:29 +00004484 D.ExtendWithDeclSpec(DS);
Sebastian Redlf30208a2009-01-24 21:16:55 +00004485
4486 // Recurse to parse whatever is left.
4487 ParseDeclaratorInternal(D, DirectDeclParser);
4488
4489 // Sema will have to catch (syntactically invalid) pointers into global
4490 // scope. It has to catch pointers into namespace scope anyway.
4491 D.AddTypeInfo(DeclaratorChunk::getMemberPointer(SS,DS.getTypeQualifiers(),
John McCall0b7e6782011-03-24 11:26:52 +00004492 Loc),
4493 DS.getAttributes(),
Sebastian Redlab197ba2009-02-09 18:23:29 +00004494 /* Don't replace range end. */SourceLocation());
Sebastian Redlf30208a2009-01-24 21:16:55 +00004495 return;
4496 }
4497 }
4498
4499 tok::TokenKind Kind = Tok.getKind();
Steve Naroff5618bd42008-08-27 16:04:49 +00004500 // Not a pointer, C++ reference, or block.
Richard Smith9988f282012-03-29 01:16:42 +00004501 if (!isPtrOperatorToken(Kind, getLangOpts())) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +00004502 if (DirectDeclParser)
4503 (this->*DirectDeclParser)(D);
Douglas Gregor2f1bc522008-11-07 20:08:42 +00004504 return;
4505 }
Sebastian Redlf30208a2009-01-24 21:16:55 +00004506
Sebastian Redl05532f22009-03-15 22:02:01 +00004507 // Otherwise, '*' -> pointer, '^' -> block, '&' -> lvalue reference,
4508 // '&&' -> rvalue reference
Sebastian Redl743de1f2009-03-23 00:00:23 +00004509 SourceLocation Loc = ConsumeToken(); // Eat the *, ^, & or &&.
Sebastian Redlab197ba2009-02-09 18:23:29 +00004510 D.SetRangeEnd(Loc);
Reid Spencer5f016e22007-07-11 17:01:13 +00004511
Chris Lattner9af55002009-03-27 04:18:06 +00004512 if (Kind == tok::star || Kind == tok::caret) {
Chris Lattner76549142008-02-21 01:32:26 +00004513 // Is a pointer.
John McCall0b7e6782011-03-24 11:26:52 +00004514 DeclSpec DS(AttrFactory);
Sebastian Redlf30208a2009-01-24 21:16:55 +00004515
Richard Smith6ee326a2012-04-10 01:32:12 +00004516 // FIXME: GNU attributes are not allowed here in a new-type-id.
Reid Spencer5f016e22007-07-11 17:01:13 +00004517 ParseTypeQualifierListOpt(DS);
Sebastian Redlab197ba2009-02-09 18:23:29 +00004518 D.ExtendWithDeclSpec(DS);
Sebastian Redlf30208a2009-01-24 21:16:55 +00004519
Reid Spencer5f016e22007-07-11 17:01:13 +00004520 // Recursively parse the declarator.
Sebastian Redl4c5d3202008-11-21 19:14:01 +00004521 ParseDeclaratorInternal(D, DirectDeclParser);
Steve Naroff5618bd42008-08-27 16:04:49 +00004522 if (Kind == tok::star)
4523 // Remember that we parsed a pointer type, and remember the type-quals.
4524 D.AddTypeInfo(DeclaratorChunk::getPointer(DS.getTypeQualifiers(), Loc,
Chandler Carruthd067c072011-02-23 18:51:59 +00004525 DS.getConstSpecLoc(),
4526 DS.getVolatileSpecLoc(),
John McCall0b7e6782011-03-24 11:26:52 +00004527 DS.getRestrictSpecLoc()),
4528 DS.getAttributes(),
Sebastian Redlab197ba2009-02-09 18:23:29 +00004529 SourceLocation());
Steve Naroff5618bd42008-08-27 16:04:49 +00004530 else
4531 // Remember that we parsed a Block type, and remember the type-quals.
Mike Stump1eb44332009-09-09 15:08:12 +00004532 D.AddTypeInfo(DeclaratorChunk::getBlockPointer(DS.getTypeQualifiers(),
John McCall0b7e6782011-03-24 11:26:52 +00004533 Loc),
4534 DS.getAttributes(),
Sebastian Redlab197ba2009-02-09 18:23:29 +00004535 SourceLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00004536 } else {
4537 // Is a reference
John McCall0b7e6782011-03-24 11:26:52 +00004538 DeclSpec DS(AttrFactory);
Reid Spencer5f016e22007-07-11 17:01:13 +00004539
Sebastian Redl743de1f2009-03-23 00:00:23 +00004540 // Complain about rvalue references in C++03, but then go on and build
4541 // the declarator.
Richard Smith7fe62082011-10-15 05:09:34 +00004542 if (Kind == tok::ampamp)
Richard Smith80ad52f2013-01-02 11:42:31 +00004543 Diag(Loc, getLangOpts().CPlusPlus11 ?
Richard Smith7fe62082011-10-15 05:09:34 +00004544 diag::warn_cxx98_compat_rvalue_reference :
4545 diag::ext_rvalue_reference);
Sebastian Redl743de1f2009-03-23 00:00:23 +00004546
Richard Smith6ee326a2012-04-10 01:32:12 +00004547 // GNU-style and C++11 attributes are allowed here, as is restrict.
4548 ParseTypeQualifierListOpt(DS);
4549 D.ExtendWithDeclSpec(DS);
4550
Reid Spencer5f016e22007-07-11 17:01:13 +00004551 // C++ 8.3.2p1: cv-qualified references are ill-formed except when the
4552 // cv-qualifiers are introduced through the use of a typedef or of a
4553 // template type argument, in which case the cv-qualifiers are ignored.
Reid Spencer5f016e22007-07-11 17:01:13 +00004554 if (DS.getTypeQualifiers() != DeclSpec::TQ_unspecified) {
4555 if (DS.getTypeQualifiers() & DeclSpec::TQ_const)
4556 Diag(DS.getConstSpecLoc(),
Chris Lattner1ab3b962008-11-18 07:48:38 +00004557 diag::err_invalid_reference_qualifier_application) << "const";
Reid Spencer5f016e22007-07-11 17:01:13 +00004558 if (DS.getTypeQualifiers() & DeclSpec::TQ_volatile)
4559 Diag(DS.getVolatileSpecLoc(),
Chris Lattner1ab3b962008-11-18 07:48:38 +00004560 diag::err_invalid_reference_qualifier_application) << "volatile";
Richard Smith4cf4a5e2013-03-28 01:55:44 +00004561 // 'restrict' is permitted as an extension.
4562 if (DS.getTypeQualifiers() & DeclSpec::TQ_atomic)
4563 Diag(DS.getAtomicSpecLoc(),
4564 diag::err_invalid_reference_qualifier_application) << "_Atomic";
Reid Spencer5f016e22007-07-11 17:01:13 +00004565 }
4566
4567 // Recursively parse the declarator.
Sebastian Redl4c5d3202008-11-21 19:14:01 +00004568 ParseDeclaratorInternal(D, DirectDeclParser);
Reid Spencer5f016e22007-07-11 17:01:13 +00004569
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +00004570 if (D.getNumTypeObjects() > 0) {
4571 // C++ [dcl.ref]p4: There shall be no references to references.
4572 DeclaratorChunk& InnerChunk = D.getTypeObject(D.getNumTypeObjects() - 1);
4573 if (InnerChunk.Kind == DeclaratorChunk::Reference) {
Chris Lattnerda83bac2008-11-19 07:37:42 +00004574 if (const IdentifierInfo *II = D.getIdentifier())
4575 Diag(InnerChunk.Loc, diag::err_illegal_decl_reference_to_reference)
4576 << II;
4577 else
4578 Diag(InnerChunk.Loc, diag::err_illegal_decl_reference_to_reference)
4579 << "type name";
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +00004580
Sebastian Redl4c5d3202008-11-21 19:14:01 +00004581 // Once we've complained about the reference-to-reference, we
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +00004582 // can go ahead and build the (technically ill-formed)
4583 // declarator: reference collapsing will take care of it.
4584 }
4585 }
4586
Richard Smith4cf4a5e2013-03-28 01:55:44 +00004587 // Remember that we parsed a reference type.
Chris Lattner76549142008-02-21 01:32:26 +00004588 D.AddTypeInfo(DeclaratorChunk::getReference(DS.getTypeQualifiers(), Loc,
Sebastian Redl05532f22009-03-15 22:02:01 +00004589 Kind == tok::amp),
John McCall0b7e6782011-03-24 11:26:52 +00004590 DS.getAttributes(),
Sebastian Redlab197ba2009-02-09 18:23:29 +00004591 SourceLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00004592 }
4593}
4594
Richard Smith9988f282012-03-29 01:16:42 +00004595static void diagnoseMisplacedEllipsis(Parser &P, Declarator &D,
4596 SourceLocation EllipsisLoc) {
4597 if (EllipsisLoc.isValid()) {
4598 FixItHint Insertion;
4599 if (!D.getEllipsisLoc().isValid()) {
4600 Insertion = FixItHint::CreateInsertion(D.getIdentifierLoc(), "...");
4601 D.setEllipsisLoc(EllipsisLoc);
4602 }
4603 P.Diag(EllipsisLoc, diag::err_misplaced_ellipsis_in_declaration)
4604 << FixItHint::CreateRemoval(EllipsisLoc) << Insertion << !D.hasName();
4605 }
4606}
4607
Reid Spencer5f016e22007-07-11 17:01:13 +00004608/// ParseDirectDeclarator
4609/// direct-declarator: [C99 6.7.5]
Douglas Gregor42a552f2008-11-05 20:51:48 +00004610/// [C99] identifier
Reid Spencer5f016e22007-07-11 17:01:13 +00004611/// '(' declarator ')'
4612/// [GNU] '(' attributes declarator ')'
4613/// [C90] direct-declarator '[' constant-expression[opt] ']'
4614/// [C99] direct-declarator '[' type-qual-list[opt] assignment-expr[opt] ']'
4615/// [C99] direct-declarator '[' 'static' type-qual-list[opt] assign-expr ']'
4616/// [C99] direct-declarator '[' type-qual-list 'static' assignment-expr ']'
4617/// [C99] direct-declarator '[' type-qual-list[opt] '*' ']'
Richard Smith6ee326a2012-04-10 01:32:12 +00004618/// [C++11] direct-declarator '[' constant-expression[opt] ']'
4619/// attribute-specifier-seq[opt]
Reid Spencer5f016e22007-07-11 17:01:13 +00004620/// direct-declarator '(' parameter-type-list ')'
4621/// direct-declarator '(' identifier-list[opt] ')'
4622/// [GNU] direct-declarator '(' parameter-forward-declarations
4623/// parameter-type-list[opt] ')'
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00004624/// [C++] direct-declarator '(' parameter-declaration-clause ')'
4625/// cv-qualifier-seq[opt] exception-specification[opt]
Richard Smith6ee326a2012-04-10 01:32:12 +00004626/// [C++11] direct-declarator '(' parameter-declaration-clause ')'
4627/// attribute-specifier-seq[opt] cv-qualifier-seq[opt]
4628/// ref-qualifier[opt] exception-specification[opt]
Douglas Gregorb48fe382008-10-31 09:07:45 +00004629/// [C++] declarator-id
Richard Smith6ee326a2012-04-10 01:32:12 +00004630/// [C++11] declarator-id attribute-specifier-seq[opt]
Douglas Gregor42a552f2008-11-05 20:51:48 +00004631///
4632/// declarator-id: [C++ 8]
Douglas Gregora8bc8c92010-12-23 22:44:42 +00004633/// '...'[opt] id-expression
Douglas Gregor42a552f2008-11-05 20:51:48 +00004634/// '::'[opt] nested-name-specifier[opt] type-name
4635///
4636/// id-expression: [C++ 5.1]
4637/// unqualified-id
Douglas Gregordb422df2009-09-25 21:45:23 +00004638/// qualified-id
Douglas Gregor42a552f2008-11-05 20:51:48 +00004639///
4640/// unqualified-id: [C++ 5.1]
Mike Stump1eb44332009-09-09 15:08:12 +00004641/// identifier
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00004642/// operator-function-id
Douglas Gregordb422df2009-09-25 21:45:23 +00004643/// conversion-function-id
Mike Stump1eb44332009-09-09 15:08:12 +00004644/// '~' class-name
Douglas Gregor39a8de12009-02-25 19:37:18 +00004645/// template-id
Argyrios Kyrtzidisc7ed9c62008-11-07 22:02:30 +00004646///
Richard Smith5d8388c2012-03-27 01:42:32 +00004647/// Note, any additional constructs added here may need corresponding changes
4648/// in isConstructorDeclarator.
Reid Spencer5f016e22007-07-11 17:01:13 +00004649void Parser::ParseDirectDeclarator(Declarator &D) {
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00004650 DeclaratorScopeObj DeclScopeObj(*this, D.getCXXScopeSpec());
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00004651
David Blaikie4e4d0842012-03-11 07:00:24 +00004652 if (getLangOpts().CPlusPlus && D.mayHaveIdentifier()) {
Douglas Gregor3f9a0562009-11-03 01:35:08 +00004653 // ParseDeclaratorInternal might already have parsed the scope.
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00004654 if (D.getCXXScopeSpec().isEmpty()) {
Douglas Gregorefaa93a2011-11-07 17:33:42 +00004655 bool EnteringContext = D.getContext() == Declarator::FileContext ||
4656 D.getContext() == Declarator::MemberContext;
Chad Rosier8decdee2012-06-26 22:30:43 +00004657 ParseOptionalCXXScopeSpecifier(D.getCXXScopeSpec(), ParsedType(),
Douglas Gregorefaa93a2011-11-07 17:33:42 +00004658 EnteringContext);
John McCall9ba61662010-02-26 08:45:28 +00004659 }
4660
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00004661 if (D.getCXXScopeSpec().isValid()) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00004662 if (Actions.ShouldEnterDeclaratorScope(getCurScope(), D.getCXXScopeSpec()))
John McCalle7e278b2009-12-11 20:04:54 +00004663 // Change the declaration context for name lookup, until this function
4664 // is exited (and the declarator has been parsed).
4665 DeclScopeObj.EnterDeclaratorScope();
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00004666 }
4667
Douglas Gregora8bc8c92010-12-23 22:44:42 +00004668 // C++0x [dcl.fct]p14:
4669 // There is a syntactic ambiguity when an ellipsis occurs at the end
Chad Rosier8decdee2012-06-26 22:30:43 +00004670 // of a parameter-declaration-clause without a preceding comma. In
4671 // this case, the ellipsis is parsed as part of the
4672 // abstract-declarator if the type of the parameter names a template
Douglas Gregora8bc8c92010-12-23 22:44:42 +00004673 // parameter pack that has not been expanded; otherwise, it is parsed
4674 // as part of the parameter-declaration-clause.
Richard Smith9988f282012-03-29 01:16:42 +00004675 if (Tok.is(tok::ellipsis) && D.getCXXScopeSpec().isEmpty() &&
Douglas Gregora8bc8c92010-12-23 22:44:42 +00004676 !((D.getContext() == Declarator::PrototypeContext ||
Faisal Valifad9e132013-09-26 19:54:12 +00004677 D.getContext() == Declarator::LambdaExprParameterContext ||
Douglas Gregora8bc8c92010-12-23 22:44:42 +00004678 D.getContext() == Declarator::BlockLiteralContext) &&
Douglas Gregora8bc8c92010-12-23 22:44:42 +00004679 NextToken().is(tok::r_paren) &&
Richard Smith30f2a742013-02-20 20:19:27 +00004680 !D.hasGroupingParens() &&
Richard Smith9988f282012-03-29 01:16:42 +00004681 !Actions.containsUnexpandedParameterPacks(D))) {
4682 SourceLocation EllipsisLoc = ConsumeToken();
4683 if (isPtrOperatorToken(Tok.getKind(), getLangOpts())) {
4684 // The ellipsis was put in the wrong place. Recover, and explain to
4685 // the user what they should have done.
4686 ParseDeclarator(D);
4687 diagnoseMisplacedEllipsis(*this, D, EllipsisLoc);
4688 return;
4689 } else
4690 D.setEllipsisLoc(EllipsisLoc);
4691
4692 // The ellipsis can't be followed by a parenthesized declarator. We
4693 // check for that in ParseParenDeclarator, after we have disambiguated
4694 // the l_paren token.
4695 }
4696
Douglas Gregor3f9a0562009-11-03 01:35:08 +00004697 if (Tok.is(tok::identifier) || Tok.is(tok::kw_operator) ||
4698 Tok.is(tok::annot_template_id) || Tok.is(tok::tilde)) {
4699 // We found something that indicates the start of an unqualified-id.
4700 // Parse that unqualified-id.
John McCallba9d8532010-04-13 06:39:49 +00004701 bool AllowConstructorName;
4702 if (D.getDeclSpec().hasTypeSpecifier())
4703 AllowConstructorName = false;
4704 else if (D.getCXXScopeSpec().isSet())
4705 AllowConstructorName =
4706 (D.getContext() == Declarator::FileContext ||
Dmitri Gribenko1b9e8f72013-02-12 17:27:41 +00004707 D.getContext() == Declarator::MemberContext);
John McCallba9d8532010-04-13 06:39:49 +00004708 else
4709 AllowConstructorName = (D.getContext() == Declarator::MemberContext);
4710
Abramo Bagnarae4b92762012-01-27 09:46:47 +00004711 SourceLocation TemplateKWLoc;
Chad Rosier8decdee2012-06-26 22:30:43 +00004712 if (ParseUnqualifiedId(D.getCXXScopeSpec(),
4713 /*EnteringContext=*/true,
4714 /*AllowDestructorName=*/true,
Douglas Gregor0efc2c12010-01-13 17:31:36 +00004715 AllowConstructorName,
John McCallb3d87482010-08-24 05:47:05 +00004716 ParsedType(),
Abramo Bagnarae4b92762012-01-27 09:46:47 +00004717 TemplateKWLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00004718 D.getName()) ||
4719 // Once we're past the identifier, if the scope was bad, mark the
4720 // whole declarator bad.
4721 D.getCXXScopeSpec().isInvalid()) {
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00004722 D.SetIdentifier(0, Tok.getLocation());
4723 D.setInvalidType(true);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00004724 } else {
4725 // Parsed the unqualified-id; update range information and move along.
4726 if (D.getSourceRange().getBegin().isInvalid())
4727 D.SetRangeBegin(D.getName().getSourceRange().getBegin());
4728 D.SetRangeEnd(D.getName().getSourceRange().getEnd());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00004729 }
Douglas Gregor3f9a0562009-11-03 01:35:08 +00004730 goto PastIdentifier;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00004731 }
Douglas Gregor3f9a0562009-11-03 01:35:08 +00004732 } else if (Tok.is(tok::identifier) && D.mayHaveIdentifier()) {
David Blaikie4e4d0842012-03-11 07:00:24 +00004733 assert(!getLangOpts().CPlusPlus &&
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00004734 "There's a C++-specific check for tok::identifier above");
4735 assert(Tok.getIdentifierInfo() && "Not an identifier?");
4736 D.SetIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
4737 ConsumeToken();
Douglas Gregor3f9a0562009-11-03 01:35:08 +00004738 goto PastIdentifier;
Richard Smitha38253c2013-07-11 05:10:21 +00004739 } else if (Tok.is(tok::identifier) && D.diagnoseIdentifier()) {
Richard Smith8d1ab8a2013-10-13 22:12:28 +00004740 // A virt-specifier isn't treated as an identifier if it appears after a
4741 // trailing-return-type.
4742 if (D.getContext() != Declarator::TrailingReturnContext ||
4743 !isCXX11VirtSpecifier(Tok)) {
4744 Diag(Tok.getLocation(), diag::err_unexpected_unqualified_id)
4745 << FixItHint::CreateRemoval(Tok.getLocation());
4746 D.SetIdentifier(0, Tok.getLocation());
4747 ConsumeToken();
4748 goto PastIdentifier;
4749 }
Douglas Gregor3f9a0562009-11-03 01:35:08 +00004750 }
Richard Smith9988f282012-03-29 01:16:42 +00004751
Douglas Gregor3f9a0562009-11-03 01:35:08 +00004752 if (Tok.is(tok::l_paren)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00004753 // direct-declarator: '(' declarator ')'
4754 // direct-declarator: '(' attributes declarator ')'
4755 // Example: 'char (*X)' or 'int (*XX)(void)'
4756 ParseParenDeclarator(D);
Douglas Gregor0efc2c12010-01-13 17:31:36 +00004757
4758 // If the declarator was parenthesized, we entered the declarator
4759 // scope when parsing the parenthesized declarator, then exited
4760 // the scope already. Re-enter the scope, if we need to.
4761 if (D.getCXXScopeSpec().isSet()) {
Fariborz Jahanian46877cd2010-08-17 23:50:37 +00004762 // If there was an error parsing parenthesized declarator, declarator
Richard Smith9988f282012-03-29 01:16:42 +00004763 // scope may have been entered before. Don't do it again.
Fariborz Jahanian46877cd2010-08-17 23:50:37 +00004764 if (!D.isInvalidType() &&
4765 Actions.ShouldEnterDeclaratorScope(getCurScope(), D.getCXXScopeSpec()))
Douglas Gregor0efc2c12010-01-13 17:31:36 +00004766 // Change the declaration context for name lookup, until this function
4767 // is exited (and the declarator has been parsed).
Fariborz Jahanian46877cd2010-08-17 23:50:37 +00004768 DeclScopeObj.EnterDeclaratorScope();
Douglas Gregor0efc2c12010-01-13 17:31:36 +00004769 }
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00004770 } else if (D.mayOmitIdentifier()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00004771 // This could be something simple like "int" (in which case the declarator
4772 // portion is empty), if an abstract-declarator is allowed.
4773 D.SetIdentifier(0, Tok.getLocation());
Richard Smith30f2a742013-02-20 20:19:27 +00004774
4775 // The grammar for abstract-pack-declarator does not allow grouping parens.
4776 // FIXME: Revisit this once core issue 1488 is resolved.
4777 if (D.hasEllipsis() && D.hasGroupingParens())
4778 Diag(PP.getLocForEndOfToken(D.getEllipsisLoc()),
4779 diag::ext_abstract_pack_declarator_parens);
Reid Spencer5f016e22007-07-11 17:01:13 +00004780 } else {
David Blaikiee75d9cf2012-06-29 22:03:56 +00004781 if (Tok.getKind() == tok::annot_pragma_parser_crash)
David Blaikie377da4c2012-08-21 18:56:49 +00004782 LLVM_BUILTIN_TRAP;
Douglas Gregore950d4b2009-03-06 23:28:18 +00004783 if (D.getContext() == Declarator::MemberContext)
4784 Diag(Tok, diag::err_expected_member_name_or_semi)
4785 << D.getDeclSpec().getSourceRange();
Richard Trieudb55c04c2013-01-26 02:31:38 +00004786 else if (getLangOpts().CPlusPlus) {
4787 if (Tok.is(tok::period) || Tok.is(tok::arrow))
4788 Diag(Tok, diag::err_invalid_operator_on_type) << Tok.is(tok::arrow);
Richard Trieuefb288c2013-09-05 02:31:33 +00004789 else {
4790 SourceLocation Loc = D.getCXXScopeSpec().getEndLoc();
4791 if (Tok.isAtStartOfLine() && Loc.isValid())
4792 Diag(PP.getLocForEndOfToken(Loc), diag::err_expected_unqualified_id)
4793 << getLangOpts().CPlusPlus;
4794 else
4795 Diag(Tok, diag::err_expected_unqualified_id)
4796 << getLangOpts().CPlusPlus;
4797 }
Richard Trieudb55c04c2013-01-26 02:31:38 +00004798 } else
Chris Lattner1ab3b962008-11-18 07:48:38 +00004799 Diag(Tok, diag::err_expected_ident_lparen);
Reid Spencer5f016e22007-07-11 17:01:13 +00004800 D.SetIdentifier(0, Tok.getLocation());
Chris Lattner1f6f54b2008-11-11 06:13:16 +00004801 D.setInvalidType(true);
Reid Spencer5f016e22007-07-11 17:01:13 +00004802 }
Mike Stump1eb44332009-09-09 15:08:12 +00004803
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00004804 PastIdentifier:
Reid Spencer5f016e22007-07-11 17:01:13 +00004805 assert(D.isPastIdentifier() &&
4806 "Haven't past the location of the identifier yet?");
Mike Stump1eb44332009-09-09 15:08:12 +00004807
Richard Smith6ee326a2012-04-10 01:32:12 +00004808 // Don't parse attributes unless we have parsed an unparenthesized name.
4809 if (D.hasName() && !D.getNumTypeObjects())
Richard Smith4e24f0f2013-01-02 12:01:23 +00004810 MaybeParseCXX11Attributes(D);
Sean Huntbbd37c62009-11-21 08:43:09 +00004811
Reid Spencer5f016e22007-07-11 17:01:13 +00004812 while (1) {
Chris Lattner04d66662007-10-09 17:33:22 +00004813 if (Tok.is(tok::l_paren)) {
David Blaikie42d6d0c2011-12-04 05:04:18 +00004814 // Enter function-declaration scope, limiting any declarators to the
4815 // function prototype scope, including parameter declarators.
4816 ParseScope PrototypeScope(this,
Richard Smith3a2b7a12013-01-28 22:42:45 +00004817 Scope::FunctionPrototypeScope|Scope::DeclScope|
4818 (D.isFunctionDeclaratorAFunctionDeclaration()
4819 ? Scope::FunctionDeclarationScope : 0));
4820
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00004821 // The paren may be part of a C++ direct initializer, eg. "int x(1);".
4822 // In such a case, check if we actually have a function declarator; if it
4823 // is not, the declarator has been fully parsed.
Richard Smithb9c62612012-07-30 21:30:52 +00004824 bool IsAmbiguous = false;
Richard Smith05766812012-08-18 00:55:03 +00004825 if (getLangOpts().CPlusPlus && D.mayBeFollowedByCXXDirectInit()) {
4826 // The name of the declarator, if any, is tentatively declared within
4827 // a possible direct initializer.
4828 TentativelyDeclaredIdentifiers.push_back(D.getIdentifier());
4829 bool IsFunctionDecl = isCXXFunctionDeclarator(&IsAmbiguous);
4830 TentativelyDeclaredIdentifiers.pop_back();
4831 if (!IsFunctionDecl)
4832 break;
4833 }
John McCall0b7e6782011-03-24 11:26:52 +00004834 ParsedAttributes attrs(AttrFactory);
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004835 BalancedDelimiterTracker T(*this, tok::l_paren);
4836 T.consumeOpen();
Richard Smithb9c62612012-07-30 21:30:52 +00004837 ParseFunctionDeclarator(D, attrs, T, IsAmbiguous);
David Blaikie42d6d0c2011-12-04 05:04:18 +00004838 PrototypeScope.Exit();
Chris Lattner04d66662007-10-09 17:33:22 +00004839 } else if (Tok.is(tok::l_square)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00004840 ParseBracketDeclarator(D);
4841 } else {
4842 break;
4843 }
4844 }
Chad Rosier8decdee2012-06-26 22:30:43 +00004845}
Reid Spencer5f016e22007-07-11 17:01:13 +00004846
Chris Lattneref4715c2008-04-06 05:45:57 +00004847/// ParseParenDeclarator - We parsed the declarator D up to a paren. This is
4848/// only called before the identifier, so these are most likely just grouping
Mike Stump1eb44332009-09-09 15:08:12 +00004849/// parens for precedence. If we find that these are actually function
Chris Lattneref4715c2008-04-06 05:45:57 +00004850/// parameter parens in an abstract-declarator, we call ParseFunctionDeclarator.
4851///
4852/// direct-declarator:
4853/// '(' declarator ')'
4854/// [GNU] '(' attributes declarator ')'
Chris Lattner7399ee02008-10-20 02:05:46 +00004855/// direct-declarator '(' parameter-type-list ')'
4856/// direct-declarator '(' identifier-list[opt] ')'
4857/// [GNU] direct-declarator '(' parameter-forward-declarations
4858/// parameter-type-list[opt] ')'
Chris Lattneref4715c2008-04-06 05:45:57 +00004859///
4860void Parser::ParseParenDeclarator(Declarator &D) {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004861 BalancedDelimiterTracker T(*this, tok::l_paren);
4862 T.consumeOpen();
4863
Chris Lattneref4715c2008-04-06 05:45:57 +00004864 assert(!D.isPastIdentifier() && "Should be called before passing identifier");
Mike Stump1eb44332009-09-09 15:08:12 +00004865
Chris Lattner7399ee02008-10-20 02:05:46 +00004866 // Eat any attributes before we look at whether this is a grouping or function
4867 // declarator paren. If this is a grouping paren, the attribute applies to
4868 // the type being built up, for example:
4869 // int (__attribute__(()) *x)(long y)
4870 // If this ends up not being a grouping paren, the attribute applies to the
4871 // first argument, for example:
4872 // int (__attribute__(()) int x)
4873 // In either case, we need to eat any attributes to be able to determine what
4874 // sort of paren this is.
4875 //
John McCall0b7e6782011-03-24 11:26:52 +00004876 ParsedAttributes attrs(AttrFactory);
Chris Lattner7399ee02008-10-20 02:05:46 +00004877 bool RequiresArg = false;
4878 if (Tok.is(tok::kw___attribute)) {
John McCall7f040a92010-12-24 02:08:15 +00004879 ParseGNUAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +00004880
Chris Lattner7399ee02008-10-20 02:05:46 +00004881 // We require that the argument list (if this is a non-grouping paren) be
4882 // present even if the attribute list was empty.
4883 RequiresArg = true;
4884 }
Chad Rosier9cab1c92012-12-21 21:22:20 +00004885
Steve Naroff239f0732008-12-25 14:16:32 +00004886 // Eat any Microsoft extensions.
Chad Rosier9cab1c92012-12-21 21:22:20 +00004887 ParseMicrosoftTypeAttributes(attrs);
4888
Dawn Perchik52fc3142010-09-03 01:29:35 +00004889 // Eat any Borland extensions.
Ted Kremenek8113ecf2010-11-10 05:59:39 +00004890 if (Tok.is(tok::kw___pascal))
John McCall7f040a92010-12-24 02:08:15 +00004891 ParseBorlandTypeAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +00004892
Chris Lattneref4715c2008-04-06 05:45:57 +00004893 // If we haven't past the identifier yet (or where the identifier would be
4894 // stored, if this is an abstract declarator), then this is probably just
4895 // grouping parens. However, if this could be an abstract-declarator, then
4896 // this could also be the start of function arguments (consider 'void()').
4897 bool isGrouping;
Mike Stump1eb44332009-09-09 15:08:12 +00004898
Chris Lattneref4715c2008-04-06 05:45:57 +00004899 if (!D.mayOmitIdentifier()) {
4900 // If this can't be an abstract-declarator, this *must* be a grouping
4901 // paren, because we haven't seen the identifier yet.
4902 isGrouping = true;
4903 } else if (Tok.is(tok::r_paren) || // 'int()' is a function.
Richard Smith22592862012-03-27 23:05:05 +00004904 (getLangOpts().CPlusPlus && Tok.is(tok::ellipsis) &&
4905 NextToken().is(tok::r_paren)) || // C++ int(...)
Richard Smith6ce48a72012-04-11 04:01:28 +00004906 isDeclarationSpecifier() || // 'int(int)' is a function.
4907 isCXX11AttributeSpecifier()) { // 'int([[]]int)' is a function.
Chris Lattneref4715c2008-04-06 05:45:57 +00004908 // This handles C99 6.7.5.3p11: in "typedef int X; void foo(X)", X is
4909 // considered to be a type, not a K&R identifier-list.
4910 isGrouping = false;
4911 } else {
4912 // Otherwise, this is a grouping paren, e.g. 'int (*X)' or 'int(X)'.
4913 isGrouping = true;
4914 }
Mike Stump1eb44332009-09-09 15:08:12 +00004915
Chris Lattneref4715c2008-04-06 05:45:57 +00004916 // If this is a grouping paren, handle:
4917 // direct-declarator: '(' declarator ')'
4918 // direct-declarator: '(' attributes declarator ')'
4919 if (isGrouping) {
Richard Smith9988f282012-03-29 01:16:42 +00004920 SourceLocation EllipsisLoc = D.getEllipsisLoc();
4921 D.setEllipsisLoc(SourceLocation());
4922
Argyrios Kyrtzidis3f2a8a02008-10-07 10:21:57 +00004923 bool hadGroupingParens = D.hasGroupingParens();
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00004924 D.setGroupingParens(true);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00004925 ParseDeclaratorInternal(D, &Parser::ParseDirectDeclarator);
Chris Lattneref4715c2008-04-06 05:45:57 +00004926 // Match the ')'.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004927 T.consumeClose();
Chad Rosier8decdee2012-06-26 22:30:43 +00004928 D.AddTypeInfo(DeclaratorChunk::getParen(T.getOpenLocation(),
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004929 T.getCloseLocation()),
4930 attrs, T.getCloseLocation());
Argyrios Kyrtzidis3f2a8a02008-10-07 10:21:57 +00004931
4932 D.setGroupingParens(hadGroupingParens);
Richard Smith9988f282012-03-29 01:16:42 +00004933
4934 // An ellipsis cannot be placed outside parentheses.
4935 if (EllipsisLoc.isValid())
4936 diagnoseMisplacedEllipsis(*this, D, EllipsisLoc);
4937
Chris Lattneref4715c2008-04-06 05:45:57 +00004938 return;
4939 }
Mike Stump1eb44332009-09-09 15:08:12 +00004940
Chris Lattneref4715c2008-04-06 05:45:57 +00004941 // Okay, if this wasn't a grouping paren, it must be the start of a function
4942 // argument list. Recognize that this declarator will never have an
Chris Lattner7399ee02008-10-20 02:05:46 +00004943 // identifier (and remember where it would have been), then call into
4944 // ParseFunctionDeclarator to handle of argument list.
Chris Lattneref4715c2008-04-06 05:45:57 +00004945 D.SetIdentifier(0, Tok.getLocation());
4946
David Blaikie42d6d0c2011-12-04 05:04:18 +00004947 // Enter function-declaration scope, limiting any declarators to the
4948 // function prototype scope, including parameter declarators.
4949 ParseScope PrototypeScope(this,
Richard Smith3a2b7a12013-01-28 22:42:45 +00004950 Scope::FunctionPrototypeScope | Scope::DeclScope |
4951 (D.isFunctionDeclaratorAFunctionDeclaration()
4952 ? Scope::FunctionDeclarationScope : 0));
Richard Smithb9c62612012-07-30 21:30:52 +00004953 ParseFunctionDeclarator(D, attrs, T, false, RequiresArg);
David Blaikie42d6d0c2011-12-04 05:04:18 +00004954 PrototypeScope.Exit();
Chris Lattneref4715c2008-04-06 05:45:57 +00004955}
4956
4957/// ParseFunctionDeclarator - We are after the identifier and have parsed the
4958/// declarator D up to a paren, which indicates that we are parsing function
4959/// arguments.
Reid Spencer5f016e22007-07-11 17:01:13 +00004960///
Richard Smith6ee326a2012-04-10 01:32:12 +00004961/// If FirstArgAttrs is non-null, then the caller parsed those arguments
4962/// immediately after the open paren - they should be considered to be the
4963/// first argument of a parameter.
Chris Lattner7399ee02008-10-20 02:05:46 +00004964///
Richard Smith6ee326a2012-04-10 01:32:12 +00004965/// If RequiresArg is true, then the first argument of the function is required
4966/// to be present and required to not be an identifier list.
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004967///
Richard Smith6ee326a2012-04-10 01:32:12 +00004968/// For C++, after the parameter-list, it also parses the cv-qualifier-seq[opt],
4969/// (C++11) ref-qualifier[opt], exception-specification[opt],
4970/// (C++11) attribute-specifier-seq[opt], and (C++11) trailing-return-type[opt].
4971///
4972/// [C++11] exception-specification:
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004973/// dynamic-exception-specification
4974/// noexcept-specification
4975///
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004976void Parser::ParseFunctionDeclarator(Declarator &D,
Richard Smith6ee326a2012-04-10 01:32:12 +00004977 ParsedAttributes &FirstArgAttrs,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004978 BalancedDelimiterTracker &Tracker,
Richard Smithb9c62612012-07-30 21:30:52 +00004979 bool IsAmbiguous,
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004980 bool RequiresArg) {
Chad Rosier8decdee2012-06-26 22:30:43 +00004981 assert(getCurScope()->isFunctionPrototypeScope() &&
David Blaikie42d6d0c2011-12-04 05:04:18 +00004982 "Should call from a Function scope");
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004983 // lparen is already consumed!
4984 assert(D.isPastIdentifier() && "Should not call before identifier!");
4985
4986 // This should be true when the function has typed arguments.
4987 // Otherwise, it is treated as a K&R-style function.
4988 bool HasProto = false;
4989 // Build up an array of information about the parsed arguments.
Chris Lattner5f9e2722011-07-23 10:55:15 +00004990 SmallVector<DeclaratorChunk::ParamInfo, 16> ParamInfo;
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004991 // Remember where we see an ellipsis, if any.
4992 SourceLocation EllipsisLoc;
4993
4994 DeclSpec DS(AttrFactory);
4995 bool RefQualifierIsLValueRef = true;
4996 SourceLocation RefQualifierLoc;
Douglas Gregor43f51032011-10-19 06:04:55 +00004997 SourceLocation ConstQualifierLoc;
4998 SourceLocation VolatileQualifierLoc;
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004999 ExceptionSpecificationType ESpecType = EST_None;
5000 SourceRange ESpecRange;
Chris Lattner5f9e2722011-07-23 10:55:15 +00005001 SmallVector<ParsedType, 2> DynamicExceptions;
5002 SmallVector<SourceRange, 2> DynamicExceptionRanges;
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005003 ExprResult NoexceptExpr;
Richard Smith6ee326a2012-04-10 01:32:12 +00005004 ParsedAttributes FnAttrs(AttrFactory);
Richard Smith54655be2012-06-12 01:51:59 +00005005 TypeResult TrailingReturnType;
Richard Smith6ee326a2012-04-10 01:32:12 +00005006
James Molloy16f1f712012-02-29 10:24:19 +00005007 Actions.ActOnStartFunctionDeclarator();
Abramo Bagnaraac8ea052012-10-15 21:05:46 +00005008 /* LocalEndLoc is the end location for the local FunctionTypeLoc.
5009 EndLoc is the end location for the function declarator.
5010 They differ for trailing return types. */
5011 SourceLocation StartLoc, LocalEndLoc, EndLoc;
Abramo Bagnara59c0a812012-10-04 21:42:10 +00005012 SourceLocation LParenLoc, RParenLoc;
5013 LParenLoc = Tracker.getOpenLocation();
5014 StartLoc = LParenLoc;
5015
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005016 if (isFunctionDeclaratorIdentifierList()) {
5017 if (RequiresArg)
5018 Diag(Tok, diag::err_argument_required_after_attribute);
5019
5020 ParseFunctionDeclaratorIdentifierList(D, ParamInfo);
5021
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005022 Tracker.consumeClose();
Abramo Bagnara59c0a812012-10-04 21:42:10 +00005023 RParenLoc = Tracker.getCloseLocation();
Abramo Bagnaraac8ea052012-10-15 21:05:46 +00005024 LocalEndLoc = RParenLoc;
Abramo Bagnara59c0a812012-10-04 21:42:10 +00005025 EndLoc = RParenLoc;
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005026 } else {
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005027 if (Tok.isNot(tok::r_paren))
Faisal Valifad9e132013-09-26 19:54:12 +00005028 ParseParameterDeclarationClause(D, FirstArgAttrs, ParamInfo,
5029 EllipsisLoc);
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005030 else if (RequiresArg)
5031 Diag(Tok, diag::err_argument_required_after_attribute);
5032
David Blaikie4e4d0842012-03-11 07:00:24 +00005033 HasProto = ParamInfo.size() || getLangOpts().CPlusPlus;
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005034
5035 // If we have the closing ')', eat it.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005036 Tracker.consumeClose();
Abramo Bagnara59c0a812012-10-04 21:42:10 +00005037 RParenLoc = Tracker.getCloseLocation();
Abramo Bagnaraac8ea052012-10-15 21:05:46 +00005038 LocalEndLoc = RParenLoc;
Abramo Bagnara59c0a812012-10-04 21:42:10 +00005039 EndLoc = RParenLoc;
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005040
David Blaikie4e4d0842012-03-11 07:00:24 +00005041 if (getLangOpts().CPlusPlus) {
Richard Smith6ee326a2012-04-10 01:32:12 +00005042 // FIXME: Accept these components in any order, and produce fixits to
5043 // correct the order if the user gets it wrong. Ideally we should deal
5044 // with the virt-specifier-seq and pure-specifier in the same way.
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005045
5046 // Parse cv-qualifier-seq[opt].
Richard Smith4cf4a5e2013-03-28 01:55:44 +00005047 ParseTypeQualifierListOpt(DS, /*VendorAttributesAllowed*/ false,
5048 /*CXX11AttributesAllowed*/ false,
5049 /*AtomicAllowed*/ false);
Richard Smith6ee326a2012-04-10 01:32:12 +00005050 if (!DS.getSourceRange().getEnd().isInvalid()) {
5051 EndLoc = DS.getSourceRange().getEnd();
5052 ConstQualifierLoc = DS.getConstSpecLoc();
5053 VolatileQualifierLoc = DS.getVolatileSpecLoc();
5054 }
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005055
5056 // Parse ref-qualifier[opt].
5057 if (Tok.is(tok::amp) || Tok.is(tok::ampamp)) {
Richard Smith80ad52f2013-01-02 11:42:31 +00005058 Diag(Tok, getLangOpts().CPlusPlus11 ?
Richard Smith7fe62082011-10-15 05:09:34 +00005059 diag::warn_cxx98_compat_ref_qualifier :
5060 diag::ext_ref_qualifier);
Richard Smith6ee326a2012-04-10 01:32:12 +00005061
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005062 RefQualifierIsLValueRef = Tok.is(tok::amp);
5063 RefQualifierLoc = ConsumeToken();
5064 EndLoc = RefQualifierLoc;
5065 }
5066
Douglas Gregorcefc3af2012-04-16 07:05:22 +00005067 // C++11 [expr.prim.general]p3:
Chad Rosier8decdee2012-06-26 22:30:43 +00005068 // If a declaration declares a member function or member function
5069 // template of a class X, the expression this is a prvalue of type
Douglas Gregorcefc3af2012-04-16 07:05:22 +00005070 // "pointer to cv-qualifier-seq X" between the optional cv-qualifer-seq
Chad Rosier8decdee2012-06-26 22:30:43 +00005071 // and the end of the function-definition, member-declarator, or
Douglas Gregorcefc3af2012-04-16 07:05:22 +00005072 // declarator.
Richard Smithd9227792013-03-15 00:41:52 +00005073 // FIXME: currently, "static" case isn't handled correctly.
Chad Rosier8decdee2012-06-26 22:30:43 +00005074 bool IsCXX11MemberFunction =
Richard Smith80ad52f2013-01-02 11:42:31 +00005075 getLangOpts().CPlusPlus11 &&
Richard Smithd9227792013-03-15 00:41:52 +00005076 (D.getContext() == Declarator::MemberContext
5077 ? !D.getDeclSpec().isFriendSpecified()
5078 : D.getContext() == Declarator::FileContext &&
5079 D.getCXXScopeSpec().isValid() &&
5080 Actions.CurContext->isRecord());
Douglas Gregorcefc3af2012-04-16 07:05:22 +00005081 Sema::CXXThisScopeRAII ThisScope(Actions,
5082 dyn_cast<CXXRecordDecl>(Actions.CurContext),
Richard Smith7b19cb12013-01-14 01:55:13 +00005083 DS.getTypeQualifiers() |
Richard Smith84046262013-04-21 01:08:50 +00005084 (D.getDeclSpec().isConstexprSpecified() &&
5085 !getLangOpts().CPlusPlus1y
Richard Smith7b19cb12013-01-14 01:55:13 +00005086 ? Qualifiers::Const : 0),
Douglas Gregorcefc3af2012-04-16 07:05:22 +00005087 IsCXX11MemberFunction);
Richard Smitha058fd42012-05-02 22:22:32 +00005088
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005089 // Parse exception-specification[opt].
Richard Smitha058fd42012-05-02 22:22:32 +00005090 ESpecType = tryParseExceptionSpecification(ESpecRange,
Douglas Gregor74e2fc32012-04-16 18:27:27 +00005091 DynamicExceptions,
5092 DynamicExceptionRanges,
Richard Smitha058fd42012-05-02 22:22:32 +00005093 NoexceptExpr);
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005094 if (ESpecType != EST_None)
5095 EndLoc = ESpecRange.getEnd();
5096
Richard Smith6ee326a2012-04-10 01:32:12 +00005097 // Parse attribute-specifier-seq[opt]. Per DR 979 and DR 1297, this goes
5098 // after the exception-specification.
Richard Smith4e24f0f2013-01-02 12:01:23 +00005099 MaybeParseCXX11Attributes(FnAttrs);
Richard Smith6ee326a2012-04-10 01:32:12 +00005100
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005101 // Parse trailing-return-type[opt].
Abramo Bagnaraac8ea052012-10-15 21:05:46 +00005102 LocalEndLoc = EndLoc;
Richard Smith80ad52f2013-01-02 11:42:31 +00005103 if (getLangOpts().CPlusPlus11 && Tok.is(tok::arrow)) {
Richard Smith7fe62082011-10-15 05:09:34 +00005104 Diag(Tok, diag::warn_cxx98_compat_trailing_return_type);
Abramo Bagnara59c0a812012-10-04 21:42:10 +00005105 if (D.getDeclSpec().getTypeSpecType() == TST_auto)
5106 StartLoc = D.getDeclSpec().getTypeSpecTypeLoc();
Abramo Bagnaraac8ea052012-10-15 21:05:46 +00005107 LocalEndLoc = Tok.getLocation();
Douglas Gregorae7902c2011-08-04 15:30:47 +00005108 SourceRange Range;
Richard Smith54655be2012-06-12 01:51:59 +00005109 TrailingReturnType = ParseTrailingReturnType(Range);
Abramo Bagnaraac8ea052012-10-15 21:05:46 +00005110 EndLoc = Range.getEnd();
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005111 }
5112 }
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005113 }
5114
5115 // Remember that we parsed a function type, and remember the attributes.
5116 D.AddTypeInfo(DeclaratorChunk::getFunction(HasProto,
Abramo Bagnara59c0a812012-10-04 21:42:10 +00005117 IsAmbiguous,
5118 LParenLoc,
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005119 ParamInfo.data(), ParamInfo.size(),
Abramo Bagnara59c0a812012-10-04 21:42:10 +00005120 EllipsisLoc, RParenLoc,
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005121 DS.getTypeQualifiers(),
5122 RefQualifierIsLValueRef,
Douglas Gregor43f51032011-10-19 06:04:55 +00005123 RefQualifierLoc, ConstQualifierLoc,
5124 VolatileQualifierLoc,
Douglas Gregor90ebed02011-07-13 21:47:47 +00005125 /*MutableLoc=*/SourceLocation(),
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005126 ESpecType, ESpecRange.getBegin(),
5127 DynamicExceptions.data(),
5128 DynamicExceptionRanges.data(),
5129 DynamicExceptions.size(),
5130 NoexceptExpr.isUsable() ?
5131 NoexceptExpr.get() : 0,
Abramo Bagnaraac8ea052012-10-15 21:05:46 +00005132 StartLoc, LocalEndLoc, D,
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005133 TrailingReturnType),
Richard Smith6ee326a2012-04-10 01:32:12 +00005134 FnAttrs, EndLoc);
James Molloy16f1f712012-02-29 10:24:19 +00005135
5136 Actions.ActOnEndFunctionDeclarator();
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005137}
5138
5139/// isFunctionDeclaratorIdentifierList - This parameter list may have an
5140/// identifier list form for a K&R-style function: void foo(a,b,c)
5141///
5142/// Note that identifier-lists are only allowed for normal declarators, not for
5143/// abstract-declarators.
5144bool Parser::isFunctionDeclaratorIdentifierList() {
David Blaikie4e4d0842012-03-11 07:00:24 +00005145 return !getLangOpts().CPlusPlus
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005146 && Tok.is(tok::identifier)
5147 && !TryAltiVecVectorToken()
5148 // K&R identifier lists can't have typedefs as identifiers, per C99
5149 // 6.7.5.3p11.
5150 && (TryAnnotateTypeOrScopeToken() || !Tok.is(tok::annot_typename))
5151 // Identifier lists follow a really simple grammar: the identifiers can
5152 // be followed *only* by a ", identifier" or ")". However, K&R
5153 // identifier lists are really rare in the brave new modern world, and
5154 // it is very common for someone to typo a type in a non-K&R style
5155 // list. If we are presented with something like: "void foo(intptr x,
5156 // float y)", we don't want to start parsing the function declarator as
5157 // though it is a K&R style declarator just because intptr is an
5158 // invalid type.
5159 //
5160 // To handle this, we check to see if the token after the first
5161 // identifier is a "," or ")". Only then do we parse it as an
5162 // identifier list.
5163 && (NextToken().is(tok::comma) || NextToken().is(tok::r_paren));
5164}
5165
5166/// ParseFunctionDeclaratorIdentifierList - While parsing a function declarator
5167/// we found a K&R-style identifier list instead of a typed parameter list.
5168///
5169/// After returning, ParamInfo will hold the parsed parameters.
5170///
5171/// identifier-list: [C99 6.7.5]
5172/// identifier
5173/// identifier-list ',' identifier
5174///
5175void Parser::ParseFunctionDeclaratorIdentifierList(
5176 Declarator &D,
Craig Topper6b9240e2013-07-05 19:34:19 +00005177 SmallVectorImpl<DeclaratorChunk::ParamInfo> &ParamInfo) {
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005178 // If there was no identifier specified for the declarator, either we are in
5179 // an abstract-declarator, or we are in a parameter declarator which was found
5180 // to be abstract. In abstract-declarators, identifier lists are not valid:
5181 // diagnose this.
5182 if (!D.getIdentifier())
5183 Diag(Tok, diag::ext_ident_list_in_param);
5184
5185 // Maintain an efficient lookup of params we have seen so far.
5186 llvm::SmallSet<const IdentifierInfo*, 16> ParamsSoFar;
5187
5188 while (1) {
5189 // If this isn't an identifier, report the error and skip until ')'.
5190 if (Tok.isNot(tok::identifier)) {
5191 Diag(Tok, diag::err_expected_ident);
5192 SkipUntil(tok::r_paren, /*StopAtSemi=*/true, /*DontConsume=*/true);
5193 // Forget we parsed anything.
5194 ParamInfo.clear();
5195 return;
5196 }
5197
5198 IdentifierInfo *ParmII = Tok.getIdentifierInfo();
5199
5200 // Reject 'typedef int y; int test(x, y)', but continue parsing.
5201 if (Actions.getTypeName(*ParmII, Tok.getLocation(), getCurScope()))
5202 Diag(Tok, diag::err_unexpected_typedef_ident) << ParmII;
5203
5204 // Verify that the argument identifier has not already been mentioned.
5205 if (!ParamsSoFar.insert(ParmII)) {
5206 Diag(Tok, diag::err_param_redefinition) << ParmII;
5207 } else {
5208 // Remember this identifier in ParamInfo.
5209 ParamInfo.push_back(DeclaratorChunk::ParamInfo(ParmII,
5210 Tok.getLocation(),
5211 0));
5212 }
5213
5214 // Eat the identifier.
5215 ConsumeToken();
5216
5217 // The list continues if we see a comma.
5218 if (Tok.isNot(tok::comma))
5219 break;
5220 ConsumeToken();
5221 }
5222}
5223
5224/// ParseParameterDeclarationClause - Parse a (possibly empty) parameter-list
5225/// after the opening parenthesis. This function will not parse a K&R-style
5226/// identifier list.
5227///
Richard Smith6ce48a72012-04-11 04:01:28 +00005228/// D is the declarator being parsed. If FirstArgAttrs is non-null, then the
5229/// caller parsed those arguments immediately after the open paren - they should
5230/// be considered to be part of the first parameter.
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005231///
5232/// After returning, ParamInfo will hold the parsed parameters. EllipsisLoc will
5233/// be the location of the ellipsis, if any was parsed.
5234///
Reid Spencer5f016e22007-07-11 17:01:13 +00005235/// parameter-type-list: [C99 6.7.5]
5236/// parameter-list
5237/// parameter-list ',' '...'
Douglas Gregored5d6512009-09-22 21:41:40 +00005238/// [C++] parameter-list '...'
Reid Spencer5f016e22007-07-11 17:01:13 +00005239///
5240/// parameter-list: [C99 6.7.5]
5241/// parameter-declaration
5242/// parameter-list ',' parameter-declaration
5243///
5244/// parameter-declaration: [C99 6.7.5]
5245/// declaration-specifiers declarator
Chris Lattner04421082008-04-08 04:40:51 +00005246/// [C++] declaration-specifiers declarator '=' assignment-expression
Sebastian Redl84407ba2012-03-14 15:54:00 +00005247/// [C++11] initializer-clause
Reid Spencer5f016e22007-07-11 17:01:13 +00005248/// [GNU] declaration-specifiers declarator attributes
Sebastian Redl50de12f2009-03-24 22:27:57 +00005249/// declaration-specifiers abstract-declarator[opt]
5250/// [C++] declaration-specifiers abstract-declarator[opt]
Chris Lattner8123a952008-04-10 02:22:51 +00005251/// '=' assignment-expression
Reid Spencer5f016e22007-07-11 17:01:13 +00005252/// [GNU] declaration-specifiers abstract-declarator[opt] attributes
Richard Smith6ce48a72012-04-11 04:01:28 +00005253/// [C++11] attribute-specifier-seq parameter-declaration
Reid Spencer5f016e22007-07-11 17:01:13 +00005254///
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005255void Parser::ParseParameterDeclarationClause(
5256 Declarator &D,
Richard Smith6ce48a72012-04-11 04:01:28 +00005257 ParsedAttributes &FirstArgAttrs,
Craig Topper6b9240e2013-07-05 19:34:19 +00005258 SmallVectorImpl<DeclaratorChunk::ParamInfo> &ParamInfo,
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005259 SourceLocation &EllipsisLoc) {
Chris Lattnerf97409f2008-04-06 06:57:35 +00005260 while (1) {
5261 if (Tok.is(tok::ellipsis)) {
Richard Smith6ce48a72012-04-11 04:01:28 +00005262 // FIXME: Issue a diagnostic if we parsed an attribute-specifier-seq
5263 // before deciding this was a parameter-declaration-clause.
Douglas Gregor965acbb2009-02-18 07:07:28 +00005264 EllipsisLoc = ConsumeToken(); // Consume the ellipsis.
Chris Lattnerf97409f2008-04-06 06:57:35 +00005265 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00005266 }
Mike Stump1eb44332009-09-09 15:08:12 +00005267
Chris Lattnerf97409f2008-04-06 06:57:35 +00005268 // Parse the declaration-specifiers.
John McCall54abf7d2009-11-04 02:18:39 +00005269 // Just use the ParsingDeclaration "scope" of the declarator.
John McCall0b7e6782011-03-24 11:26:52 +00005270 DeclSpec DS(AttrFactory);
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005271
Richard Smith6ce48a72012-04-11 04:01:28 +00005272 // Parse any C++11 attributes.
Richard Smith4e24f0f2013-01-02 12:01:23 +00005273 MaybeParseCXX11Attributes(DS.getAttributes());
Richard Smith6ce48a72012-04-11 04:01:28 +00005274
John McCall7f040a92010-12-24 02:08:15 +00005275 // Skip any Microsoft attributes before a param.
Chad Rosier16f90bf2012-12-20 20:37:53 +00005276 MaybeParseMicrosoftAttributes(DS.getAttributes());
John McCall7f040a92010-12-24 02:08:15 +00005277
5278 SourceLocation DSStart = Tok.getLocation();
Chris Lattner7399ee02008-10-20 02:05:46 +00005279
5280 // If the caller parsed attributes for the first argument, add them now.
John McCall7f040a92010-12-24 02:08:15 +00005281 // Take them so that we only apply the attributes to the first parameter.
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005282 // FIXME: If we can leave the attributes in the token stream somehow, we can
Richard Smith6ce48a72012-04-11 04:01:28 +00005283 // get rid of a parameter (FirstArgAttrs) and this statement. It might be
5284 // too much hassle.
5285 DS.takeAttributesFrom(FirstArgAttrs);
John McCall7f040a92010-12-24 02:08:15 +00005286
Chris Lattnere64c5492009-02-27 18:38:20 +00005287 ParseDeclarationSpecifiers(DS);
Mike Stump1eb44332009-09-09 15:08:12 +00005288
Faisal Valifad9e132013-09-26 19:54:12 +00005289
5290 // Parse the declarator. This is "PrototypeContext" or
5291 // "LambdaExprParameterContext", because we must accept either
5292 // 'declarator' or 'abstract-declarator' here.
5293 Declarator ParmDeclarator(DS,
5294 D.getContext() == Declarator::LambdaExprContext ?
5295 Declarator::LambdaExprParameterContext :
5296 Declarator::PrototypeContext);
5297 ParseDeclarator(ParmDeclarator);
Chris Lattnerf97409f2008-04-06 06:57:35 +00005298
5299 // Parse GNU attributes, if present.
Faisal Valifad9e132013-09-26 19:54:12 +00005300 MaybeParseGNUAttributes(ParmDeclarator);
Mike Stump1eb44332009-09-09 15:08:12 +00005301
Chris Lattnerf97409f2008-04-06 06:57:35 +00005302 // Remember this parsed parameter in ParamInfo.
Faisal Valifad9e132013-09-26 19:54:12 +00005303 IdentifierInfo *ParmII = ParmDeclarator.getIdentifier();
Mike Stump1eb44332009-09-09 15:08:12 +00005304
Douglas Gregor72b505b2008-12-16 21:30:33 +00005305 // DefArgToks is used when the parsing of default arguments needs
5306 // to be delayed.
5307 CachedTokens *DefArgToks = 0;
5308
Chris Lattnerf97409f2008-04-06 06:57:35 +00005309 // If no parameter was specified, verify that *something* was specified,
5310 // otherwise we have a missing type and identifier.
Faisal Valifad9e132013-09-26 19:54:12 +00005311 if (DS.isEmpty() && ParmDeclarator.getIdentifier() == 0 &&
5312 ParmDeclarator.getNumTypeObjects() == 0) {
Chris Lattnerf97409f2008-04-06 06:57:35 +00005313 // Completely missing, emit error.
5314 Diag(DSStart, diag::err_missing_param);
5315 } else {
5316 // Otherwise, we have something. Add it and let semantic analysis try
5317 // to grok it and add the result to the ParamInfo we are building.
Mike Stump1eb44332009-09-09 15:08:12 +00005318
Chris Lattnerf97409f2008-04-06 06:57:35 +00005319 // Inform the actions module about the parameter declarator, so it gets
5320 // added to the current scope.
Faisal Valifad9e132013-09-26 19:54:12 +00005321 Decl *Param = Actions.ActOnParamDeclarator(getCurScope(),
5322 ParmDeclarator);
Chris Lattner04421082008-04-08 04:40:51 +00005323 // Parse the default argument, if any. We parse the default
5324 // arguments in all dialects; the semantic analysis in
5325 // ActOnParamDefaultArgument will reject the default argument in
5326 // C.
5327 if (Tok.is(tok::equal)) {
Douglas Gregor61366e92008-12-24 00:01:03 +00005328 SourceLocation EqualLoc = Tok.getLocation();
5329
Chris Lattner04421082008-04-08 04:40:51 +00005330 // Parse the default argument
Douglas Gregor72b505b2008-12-16 21:30:33 +00005331 if (D.getContext() == Declarator::MemberContext) {
5332 // If we're inside a class definition, cache the tokens
5333 // corresponding to the default argument. We'll actually parse
5334 // them when we see the end of the class definition.
Douglas Gregor72b505b2008-12-16 21:30:33 +00005335 // FIXME: Can we use a smart pointer for Toks?
5336 DefArgToks = new CachedTokens;
5337
Richard Smith9bd3cdc2013-09-12 23:28:08 +00005338 if (!ConsumeAndStoreInitializer(*DefArgToks, CIK_DefaultArgument)) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00005339 delete DefArgToks;
5340 DefArgToks = 0;
Douglas Gregor61366e92008-12-24 00:01:03 +00005341 Actions.ActOnParamDefaultArgumentError(Param);
Argyrios Kyrtzidis2b602ad2010-08-06 09:47:24 +00005342 } else {
5343 // Mark the end of the default argument so that we know when to
5344 // stop when we parse it later on.
5345 Token DefArgEnd;
5346 DefArgEnd.startToken();
5347 DefArgEnd.setKind(tok::cxx_defaultarg_end);
5348 DefArgEnd.setLocation(Tok.getLocation());
5349 DefArgToks->push_back(DefArgEnd);
Mike Stump1eb44332009-09-09 15:08:12 +00005350 Actions.ActOnParamUnparsedDefaultArgument(Param, EqualLoc,
Anders Carlsson5e300d12009-06-12 16:51:40 +00005351 (*DefArgToks)[1].getLocation());
Argyrios Kyrtzidis2b602ad2010-08-06 09:47:24 +00005352 }
Chris Lattner04421082008-04-08 04:40:51 +00005353 } else {
Douglas Gregor72b505b2008-12-16 21:30:33 +00005354 // Consume the '='.
Douglas Gregor61366e92008-12-24 00:01:03 +00005355 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00005356
Chad Rosier8decdee2012-06-26 22:30:43 +00005357 // The argument isn't actually potentially evaluated unless it is
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00005358 // used.
5359 EnterExpressionEvaluationContext Eval(Actions,
Douglas Gregorccc1b5e2012-02-21 00:37:24 +00005360 Sema::PotentiallyEvaluatedIfUsed,
5361 Param);
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00005362
Sebastian Redl84407ba2012-03-14 15:54:00 +00005363 ExprResult DefArgResult;
Richard Smith80ad52f2013-01-02 11:42:31 +00005364 if (getLangOpts().CPlusPlus11 && Tok.is(tok::l_brace)) {
Sebastian Redl3e280b52012-03-18 22:25:45 +00005365 Diag(Tok, diag::warn_cxx98_compat_generalized_initializer_lists);
Sebastian Redl84407ba2012-03-14 15:54:00 +00005366 DefArgResult = ParseBraceInitializer();
Sebastian Redl3e280b52012-03-18 22:25:45 +00005367 } else
Sebastian Redl84407ba2012-03-14 15:54:00 +00005368 DefArgResult = ParseAssignmentExpression();
Douglas Gregor72b505b2008-12-16 21:30:33 +00005369 if (DefArgResult.isInvalid()) {
5370 Actions.ActOnParamDefaultArgumentError(Param);
5371 SkipUntil(tok::comma, tok::r_paren, true, true);
5372 } else {
5373 // Inform the actions module about the default argument
5374 Actions.ActOnParamDefaultArgument(Param, EqualLoc,
John McCall9ae2f072010-08-23 23:25:46 +00005375 DefArgResult.take());
Douglas Gregor72b505b2008-12-16 21:30:33 +00005376 }
Chris Lattner04421082008-04-08 04:40:51 +00005377 }
5378 }
Mike Stump1eb44332009-09-09 15:08:12 +00005379
5380 ParamInfo.push_back(DeclaratorChunk::ParamInfo(ParmII,
Faisal Valifad9e132013-09-26 19:54:12 +00005381 ParmDeclarator.getIdentifierLoc(),
5382 Param, DefArgToks));
Chris Lattnerf97409f2008-04-06 06:57:35 +00005383 }
5384
5385 // If the next token is a comma, consume it and keep reading arguments.
Douglas Gregored5d6512009-09-22 21:41:40 +00005386 if (Tok.isNot(tok::comma)) {
5387 if (Tok.is(tok::ellipsis)) {
Douglas Gregored5d6512009-09-22 21:41:40 +00005388 EllipsisLoc = ConsumeToken(); // Consume the ellipsis.
Chad Rosier8decdee2012-06-26 22:30:43 +00005389
David Blaikie4e4d0842012-03-11 07:00:24 +00005390 if (!getLangOpts().CPlusPlus) {
Douglas Gregored5d6512009-09-22 21:41:40 +00005391 // We have ellipsis without a preceding ',', which is ill-formed
5392 // in C. Complain and provide the fix.
5393 Diag(EllipsisLoc, diag::err_missing_comma_before_ellipsis)
Douglas Gregor849b2432010-03-31 17:46:05 +00005394 << FixItHint::CreateInsertion(EllipsisLoc, ", ");
Douglas Gregored5d6512009-09-22 21:41:40 +00005395 }
5396 }
Chad Rosier8decdee2012-06-26 22:30:43 +00005397
Douglas Gregored5d6512009-09-22 21:41:40 +00005398 break;
5399 }
Mike Stump1eb44332009-09-09 15:08:12 +00005400
Chris Lattnerf97409f2008-04-06 06:57:35 +00005401 // Consume the comma.
5402 ConsumeToken();
Reid Spencer5f016e22007-07-11 17:01:13 +00005403 }
Mike Stump1eb44332009-09-09 15:08:12 +00005404
Chris Lattner66d28652008-04-06 06:34:08 +00005405}
Chris Lattneref4715c2008-04-06 05:45:57 +00005406
Reid Spencer5f016e22007-07-11 17:01:13 +00005407/// [C90] direct-declarator '[' constant-expression[opt] ']'
5408/// [C99] direct-declarator '[' type-qual-list[opt] assignment-expr[opt] ']'
5409/// [C99] direct-declarator '[' 'static' type-qual-list[opt] assign-expr ']'
5410/// [C99] direct-declarator '[' type-qual-list 'static' assignment-expr ']'
5411/// [C99] direct-declarator '[' type-qual-list[opt] '*' ']'
Richard Smith6ee326a2012-04-10 01:32:12 +00005412/// [C++11] direct-declarator '[' constant-expression[opt] ']'
5413/// attribute-specifier-seq[opt]
Reid Spencer5f016e22007-07-11 17:01:13 +00005414void Parser::ParseBracketDeclarator(Declarator &D) {
Richard Smith6ee326a2012-04-10 01:32:12 +00005415 if (CheckProhibitedCXX11Attribute())
5416 return;
5417
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005418 BalancedDelimiterTracker T(*this, tok::l_square);
5419 T.consumeOpen();
Mike Stump1eb44332009-09-09 15:08:12 +00005420
Chris Lattner378c7e42008-12-18 07:27:21 +00005421 // C array syntax has many features, but by-far the most common is [] and [4].
5422 // This code does a fast path to handle some of the most obvious cases.
5423 if (Tok.getKind() == tok::r_square) {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005424 T.consumeClose();
John McCall0b7e6782011-03-24 11:26:52 +00005425 ParsedAttributes attrs(AttrFactory);
Richard Smith4e24f0f2013-01-02 12:01:23 +00005426 MaybeParseCXX11Attributes(attrs);
Chad Rosier8decdee2012-06-26 22:30:43 +00005427
Chris Lattner378c7e42008-12-18 07:27:21 +00005428 // Remember that we parsed the empty array type.
John McCall60d7b3a2010-08-24 06:29:42 +00005429 ExprResult NumElements;
John McCall0b7e6782011-03-24 11:26:52 +00005430 D.AddTypeInfo(DeclaratorChunk::getArray(0, false, false, 0,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005431 T.getOpenLocation(),
5432 T.getCloseLocation()),
5433 attrs, T.getCloseLocation());
Chris Lattner378c7e42008-12-18 07:27:21 +00005434 return;
5435 } else if (Tok.getKind() == tok::numeric_constant &&
5436 GetLookAheadToken(1).is(tok::r_square)) {
5437 // [4] is very common. Parse the numeric constant expression.
Richard Smith36f5cfe2012-03-09 08:00:36 +00005438 ExprResult ExprRes(Actions.ActOnNumericConstant(Tok, getCurScope()));
Chris Lattner378c7e42008-12-18 07:27:21 +00005439 ConsumeToken();
5440
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005441 T.consumeClose();
John McCall0b7e6782011-03-24 11:26:52 +00005442 ParsedAttributes attrs(AttrFactory);
Richard Smith4e24f0f2013-01-02 12:01:23 +00005443 MaybeParseCXX11Attributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +00005444
Chris Lattner378c7e42008-12-18 07:27:21 +00005445 // Remember that we parsed a array type, and remember its features.
Nikola Smiljanicebf0fa82013-01-11 08:33:05 +00005446 D.AddTypeInfo(DeclaratorChunk::getArray(0, false, false,
John McCall7f040a92010-12-24 02:08:15 +00005447 ExprRes.release(),
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005448 T.getOpenLocation(),
5449 T.getCloseLocation()),
5450 attrs, T.getCloseLocation());
Chris Lattner378c7e42008-12-18 07:27:21 +00005451 return;
5452 }
Mike Stump1eb44332009-09-09 15:08:12 +00005453
Reid Spencer5f016e22007-07-11 17:01:13 +00005454 // If valid, this location is the position where we read the 'static' keyword.
5455 SourceLocation StaticLoc;
Chris Lattner04d66662007-10-09 17:33:22 +00005456 if (Tok.is(tok::kw_static))
Reid Spencer5f016e22007-07-11 17:01:13 +00005457 StaticLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00005458
Reid Spencer5f016e22007-07-11 17:01:13 +00005459 // If there is a type-qualifier-list, read it now.
Chris Lattnera1fcbad2008-12-18 06:50:14 +00005460 // Type qualifiers in an array subscript are a C99 feature.
John McCall0b7e6782011-03-24 11:26:52 +00005461 DeclSpec DS(AttrFactory);
Chris Lattner5a69d1c2008-12-18 07:02:59 +00005462 ParseTypeQualifierListOpt(DS, false /*no attributes*/);
Mike Stump1eb44332009-09-09 15:08:12 +00005463
Reid Spencer5f016e22007-07-11 17:01:13 +00005464 // If we haven't already read 'static', check to see if there is one after the
5465 // type-qualifier-list.
Chris Lattner04d66662007-10-09 17:33:22 +00005466 if (!StaticLoc.isValid() && Tok.is(tok::kw_static))
Reid Spencer5f016e22007-07-11 17:01:13 +00005467 StaticLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00005468
Reid Spencer5f016e22007-07-11 17:01:13 +00005469 // Handle "direct-declarator [ type-qual-list[opt] * ]".
5470 bool isStar = false;
John McCall60d7b3a2010-08-24 06:29:42 +00005471 ExprResult NumElements;
Mike Stump1eb44332009-09-09 15:08:12 +00005472
Chris Lattner5dcc6ce2008-04-06 05:26:30 +00005473 // Handle the case where we have '[*]' as the array size. However, a leading
5474 // star could be the start of an expression, for example 'X[*p + 4]'. Verify
Sylvestre Ledrubed28ac2012-07-23 08:59:39 +00005475 // the token after the star is a ']'. Since stars in arrays are
Chris Lattner5dcc6ce2008-04-06 05:26:30 +00005476 // infrequent, use of lookahead is not costly here.
5477 if (Tok.is(tok::star) && GetLookAheadToken(1).is(tok::r_square)) {
Chris Lattnera711dd02008-04-06 05:27:21 +00005478 ConsumeToken(); // Eat the '*'.
Reid Spencer5f016e22007-07-11 17:01:13 +00005479
Chris Lattnera1fcbad2008-12-18 06:50:14 +00005480 if (StaticLoc.isValid()) {
Chris Lattner5dcc6ce2008-04-06 05:26:30 +00005481 Diag(StaticLoc, diag::err_unspecified_vla_size_with_static);
Chris Lattnera1fcbad2008-12-18 06:50:14 +00005482 StaticLoc = SourceLocation(); // Drop the static.
5483 }
Chris Lattner5dcc6ce2008-04-06 05:26:30 +00005484 isStar = true;
Chris Lattner04d66662007-10-09 17:33:22 +00005485 } else if (Tok.isNot(tok::r_square)) {
Chris Lattner378c7e42008-12-18 07:27:21 +00005486 // Note, in C89, this production uses the constant-expr production instead
5487 // of assignment-expr. The only difference is that assignment-expr allows
5488 // things like '=' and '*='. Sema rejects these in C89 mode because they
5489 // are not i-c-e's, so we don't need to distinguish between the two here.
Mike Stump1eb44332009-09-09 15:08:12 +00005490
Douglas Gregore0762c92009-06-19 23:52:42 +00005491 // Parse the constant-expression or assignment-expression now (depending
5492 // on dialect).
David Blaikie4e4d0842012-03-11 07:00:24 +00005493 if (getLangOpts().CPlusPlus) {
Douglas Gregore0762c92009-06-19 23:52:42 +00005494 NumElements = ParseConstantExpression();
Eli Friedman71b8fb52012-01-21 01:01:51 +00005495 } else {
5496 EnterExpressionEvaluationContext Unevaluated(Actions,
5497 Sema::ConstantEvaluated);
Douglas Gregore0762c92009-06-19 23:52:42 +00005498 NumElements = ParseAssignmentExpression();
Eli Friedman71b8fb52012-01-21 01:01:51 +00005499 }
Reid Spencer5f016e22007-07-11 17:01:13 +00005500 }
Mike Stump1eb44332009-09-09 15:08:12 +00005501
Reid Spencer5f016e22007-07-11 17:01:13 +00005502 // If there was an error parsing the assignment-expression, recover.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00005503 if (NumElements.isInvalid()) {
Chris Lattner5cb10d32009-04-24 22:30:50 +00005504 D.setInvalidType(true);
Reid Spencer5f016e22007-07-11 17:01:13 +00005505 // If the expression was invalid, skip it.
5506 SkipUntil(tok::r_square);
5507 return;
5508 }
Sebastian Redlab197ba2009-02-09 18:23:29 +00005509
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005510 T.consumeClose();
Sebastian Redlab197ba2009-02-09 18:23:29 +00005511
John McCall0b7e6782011-03-24 11:26:52 +00005512 ParsedAttributes attrs(AttrFactory);
Richard Smith4e24f0f2013-01-02 12:01:23 +00005513 MaybeParseCXX11Attributes(attrs);
Sean Huntbbd37c62009-11-21 08:43:09 +00005514
Chris Lattner378c7e42008-12-18 07:27:21 +00005515 // Remember that we parsed a array type, and remember its features.
John McCall0b7e6782011-03-24 11:26:52 +00005516 D.AddTypeInfo(DeclaratorChunk::getArray(DS.getTypeQualifiers(),
Reid Spencer5f016e22007-07-11 17:01:13 +00005517 StaticLoc.isValid(), isStar,
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00005518 NumElements.release(),
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005519 T.getOpenLocation(),
5520 T.getCloseLocation()),
5521 attrs, T.getCloseLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00005522}
5523
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00005524/// [GNU] typeof-specifier:
5525/// typeof ( expressions )
5526/// typeof ( type-name )
5527/// [GNU/C++] typeof unary-expression
Steve Naroffd1861fd2007-07-31 12:34:36 +00005528///
5529void Parser::ParseTypeofSpecifier(DeclSpec &DS) {
Chris Lattner04d66662007-10-09 17:33:22 +00005530 assert(Tok.is(tok::kw_typeof) && "Not a typeof specifier");
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00005531 Token OpTok = Tok;
Steve Naroffd1861fd2007-07-31 12:34:36 +00005532 SourceLocation StartLoc = ConsumeToken();
5533
John McCallcfb708c2010-01-13 20:03:27 +00005534 const bool hasParens = Tok.is(tok::l_paren);
5535
Eli Friedman80bfa3d2012-09-26 04:34:21 +00005536 EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated,
5537 Sema::ReuseLambdaContextDecl);
Eli Friedman71b8fb52012-01-21 01:01:51 +00005538
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00005539 bool isCastExpr;
John McCallb3d87482010-08-24 05:47:05 +00005540 ParsedType CastTy;
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00005541 SourceRange CastRange;
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00005542 ExprResult Operand = ParseExprAfterUnaryExprOrTypeTrait(OpTok, isCastExpr,
5543 CastTy, CastRange);
John McCallcfb708c2010-01-13 20:03:27 +00005544 if (hasParens)
5545 DS.setTypeofParensRange(CastRange);
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00005546
5547 if (CastRange.getEnd().isInvalid())
Argyrios Kyrtzidis64096252009-05-22 10:22:18 +00005548 // FIXME: Not accurate, the range gets one token more than it should.
5549 DS.SetRangeEnd(Tok.getLocation());
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00005550 else
5551 DS.SetRangeEnd(CastRange.getEnd());
Mike Stump1eb44332009-09-09 15:08:12 +00005552
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00005553 if (isCastExpr) {
5554 if (!CastTy) {
5555 DS.SetTypeSpecError();
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00005556 return;
Douglas Gregor809070a2009-02-18 17:45:20 +00005557 }
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00005558
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00005559 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +00005560 unsigned DiagID;
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00005561 // Check for duplicate type specifiers (e.g. "int typeof(int)").
5562 if (DS.SetTypeSpecType(DeclSpec::TST_typeofType, StartLoc, PrevSpec,
John McCallfec54012009-08-03 20:12:06 +00005563 DiagID, CastTy))
5564 Diag(StartLoc, DiagID) << PrevSpec;
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00005565 return;
Argyrios Kyrtzidis64096252009-05-22 10:22:18 +00005566 }
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00005567
Argyrios Kyrtzidis64096252009-05-22 10:22:18 +00005568 // If we get here, the operand to the typeof was an expresion.
5569 if (Operand.isInvalid()) {
5570 DS.SetTypeSpecError();
Steve Naroff9dfa7b42007-08-02 02:53:48 +00005571 return;
Steve Naroffd1861fd2007-07-31 12:34:36 +00005572 }
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00005573
Eli Friedman71b8fb52012-01-21 01:01:51 +00005574 // We might need to transform the operand if it is potentially evaluated.
5575 Operand = Actions.HandleExprEvaluationContextForTypeof(Operand.get());
5576 if (Operand.isInvalid()) {
5577 DS.SetTypeSpecError();
5578 return;
5579 }
5580
Argyrios Kyrtzidis64096252009-05-22 10:22:18 +00005581 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +00005582 unsigned DiagID;
Argyrios Kyrtzidis64096252009-05-22 10:22:18 +00005583 // Check for duplicate type specifiers (e.g. "int typeof(int)").
5584 if (DS.SetTypeSpecType(DeclSpec::TST_typeofExpr, StartLoc, PrevSpec,
John McCallb3d87482010-08-24 05:47:05 +00005585 DiagID, Operand.get()))
John McCallfec54012009-08-03 20:12:06 +00005586 Diag(StartLoc, DiagID) << PrevSpec;
Steve Naroffd1861fd2007-07-31 12:34:36 +00005587}
Chris Lattner1b492422010-02-28 18:33:55 +00005588
Benjamin Kramerffbe9b92011-12-23 17:00:35 +00005589/// [C11] atomic-specifier:
Eli Friedmanb001de72011-10-06 23:00:33 +00005590/// _Atomic ( type-name )
5591///
5592void Parser::ParseAtomicSpecifier(DeclSpec &DS) {
Richard Smith4cf4a5e2013-03-28 01:55:44 +00005593 assert(Tok.is(tok::kw__Atomic) && NextToken().is(tok::l_paren) &&
5594 "Not an atomic specifier");
Eli Friedmanb001de72011-10-06 23:00:33 +00005595
5596 SourceLocation StartLoc = ConsumeToken();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005597 BalancedDelimiterTracker T(*this, tok::l_paren);
Richard Smith4cf4a5e2013-03-28 01:55:44 +00005598 if (T.consumeOpen())
Eli Friedmanb001de72011-10-06 23:00:33 +00005599 return;
Eli Friedmanb001de72011-10-06 23:00:33 +00005600
5601 TypeResult Result = ParseTypeName();
5602 if (Result.isInvalid()) {
5603 SkipUntil(tok::r_paren);
5604 return;
5605 }
5606
5607 // Match the ')'
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005608 T.consumeClose();
Eli Friedmanb001de72011-10-06 23:00:33 +00005609
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005610 if (T.getCloseLocation().isInvalid())
Eli Friedmanb001de72011-10-06 23:00:33 +00005611 return;
5612
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005613 DS.setTypeofParensRange(T.getRange());
5614 DS.SetRangeEnd(T.getCloseLocation());
Eli Friedmanb001de72011-10-06 23:00:33 +00005615
5616 const char *PrevSpec = 0;
5617 unsigned DiagID;
5618 if (DS.SetTypeSpecType(DeclSpec::TST_atomic, StartLoc, PrevSpec,
5619 DiagID, Result.release()))
5620 Diag(StartLoc, DiagID) << PrevSpec;
5621}
5622
Chris Lattner1b492422010-02-28 18:33:55 +00005623
5624/// TryAltiVecVectorTokenOutOfLine - Out of line body that should only be called
5625/// from TryAltiVecVectorToken.
5626bool Parser::TryAltiVecVectorTokenOutOfLine() {
5627 Token Next = NextToken();
5628 switch (Next.getKind()) {
5629 default: return false;
5630 case tok::kw_short:
5631 case tok::kw_long:
5632 case tok::kw_signed:
5633 case tok::kw_unsigned:
5634 case tok::kw_void:
5635 case tok::kw_char:
5636 case tok::kw_int:
5637 case tok::kw_float:
5638 case tok::kw_double:
5639 case tok::kw_bool:
5640 case tok::kw___pixel:
5641 Tok.setKind(tok::kw___vector);
5642 return true;
5643 case tok::identifier:
5644 if (Next.getIdentifierInfo() == Ident_pixel) {
5645 Tok.setKind(tok::kw___vector);
5646 return true;
5647 }
Bill Schmidt3e3d20b2013-07-03 20:54:09 +00005648 if (Next.getIdentifierInfo() == Ident_bool) {
5649 Tok.setKind(tok::kw___vector);
5650 return true;
5651 }
Chris Lattner1b492422010-02-28 18:33:55 +00005652 return false;
5653 }
5654}
5655
5656bool Parser::TryAltiVecTokenOutOfLine(DeclSpec &DS, SourceLocation Loc,
5657 const char *&PrevSpec, unsigned &DiagID,
5658 bool &isInvalid) {
5659 if (Tok.getIdentifierInfo() == Ident_vector) {
5660 Token Next = NextToken();
5661 switch (Next.getKind()) {
5662 case tok::kw_short:
5663 case tok::kw_long:
5664 case tok::kw_signed:
5665 case tok::kw_unsigned:
5666 case tok::kw_void:
5667 case tok::kw_char:
5668 case tok::kw_int:
5669 case tok::kw_float:
5670 case tok::kw_double:
5671 case tok::kw_bool:
5672 case tok::kw___pixel:
5673 isInvalid = DS.SetTypeAltiVecVector(true, Loc, PrevSpec, DiagID);
5674 return true;
5675 case tok::identifier:
5676 if (Next.getIdentifierInfo() == Ident_pixel) {
5677 isInvalid = DS.SetTypeAltiVecVector(true, Loc, PrevSpec, DiagID);
5678 return true;
5679 }
Bill Schmidt3e3d20b2013-07-03 20:54:09 +00005680 if (Next.getIdentifierInfo() == Ident_bool) {
5681 isInvalid = DS.SetTypeAltiVecVector(true, Loc, PrevSpec, DiagID);
5682 return true;
5683 }
Chris Lattner1b492422010-02-28 18:33:55 +00005684 break;
5685 default:
5686 break;
5687 }
Douglas Gregora8f031f2010-06-16 15:28:57 +00005688 } else if ((Tok.getIdentifierInfo() == Ident_pixel) &&
Chris Lattner1b492422010-02-28 18:33:55 +00005689 DS.isTypeAltiVecVector()) {
5690 isInvalid = DS.SetTypeAltiVecPixel(true, Loc, PrevSpec, DiagID);
5691 return true;
Bill Schmidt3e3d20b2013-07-03 20:54:09 +00005692 } else if ((Tok.getIdentifierInfo() == Ident_bool) &&
5693 DS.isTypeAltiVecVector()) {
5694 isInvalid = DS.SetTypeAltiVecBool(true, Loc, PrevSpec, DiagID);
5695 return true;
Chris Lattner1b492422010-02-28 18:33:55 +00005696 }
5697 return false;
5698}