blob: c5904933133349cb35ee96b493cacf7fe80f0e60 [file] [log] [blame]
Chris Lattner7ad0fbe2006-11-05 07:46:30 +00001//===--- ParseDecl.cpp - Declaration Parsing ------------------------------===//
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5b12ab82007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Declaration portions of the Parser interfaces.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/Parse/Parser.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000015#include "RAIIObjectsForParser.h"
Larisse Voufo725de3e2013-06-21 00:08:46 +000016#include "clang/AST/DeclTemplate.h"
Benjamin Kramerd7d2b1f2012-12-01 16:35:25 +000017#include "clang/Basic/AddressSpaces.h"
Jordan Rosea7d03842013-02-08 22:30:41 +000018#include "clang/Basic/CharInfo.h"
Peter Collingbourne599cb8e2011-03-18 22:38:29 +000019#include "clang/Basic/OpenCL.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000020#include "clang/Parse/ParseDiagnostic.h"
Kaelyn Uhrain031643e2012-04-26 23:36:17 +000021#include "clang/Sema/Lookup.h"
John McCall8b0666c2010-08-20 18:27:03 +000022#include "clang/Sema/ParsedTemplate.h"
John McCallfaf5fb42010-08-26 23:41:50 +000023#include "clang/Sema/PrettyDeclStackTrace.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000024#include "clang/Sema/Scope.h"
Chris Lattnerad9ac942007-01-23 01:14:52 +000025#include "llvm/ADT/SmallSet.h"
Benjamin Kramer49038022012-02-04 13:45:25 +000026#include "llvm/ADT/SmallString.h"
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +000027#include "llvm/ADT/StringSwitch.h"
Chris Lattnerc0acd3d2006-07-31 05:13:43 +000028using namespace clang;
29
30//===----------------------------------------------------------------------===//
31// C99 6.7: Declarations.
32//===----------------------------------------------------------------------===//
33
Chris Lattnerf5fbd792006-08-10 23:56:11 +000034/// ParseTypeName
35/// type-name: [C99 6.7.6]
36/// specifier-qualifier-list abstract-declarator[opt]
Sebastian Redlbd150f42008-11-21 19:14:01 +000037///
38/// Called type-id in C++.
Douglas Gregor205d5e32011-01-31 16:09:46 +000039TypeResult Parser::ParseTypeName(SourceRange *Range,
John McCall31168b02011-06-15 23:02:42 +000040 Declarator::TheContext Context,
Richard Smithcd1c0552011-07-01 19:46:12 +000041 AccessSpecifier AS,
Richard Smith54ecd982013-02-20 19:22:51 +000042 Decl **OwnedType,
43 ParsedAttributes *Attrs) {
Richard Smith62dad822012-03-15 01:02:11 +000044 DeclSpecContext DSC = getDeclSpecContextFromDeclaratorContext(Context);
Richard Smith2f07ad52012-05-09 20:55:26 +000045 if (DSC == DSC_normal)
46 DSC = DSC_type_specifier;
Richard Smithbfdb1082012-03-12 08:56:40 +000047
Chris Lattnerf5fbd792006-08-10 23:56:11 +000048 // Parse the common declaration-specifiers piece.
John McCall084e83d2011-03-24 11:26:52 +000049 DeclSpec DS(AttrFactory);
Richard Smith54ecd982013-02-20 19:22:51 +000050 if (Attrs)
51 DS.addAttributes(Attrs->getList());
Richard Smithbfdb1082012-03-12 08:56:40 +000052 ParseSpecifierQualifierList(DS, AS, DSC);
Richard Smithcd1c0552011-07-01 19:46:12 +000053 if (OwnedType)
54 *OwnedType = DS.isTypeSpecOwned() ? DS.getRepAsDecl() : 0;
Sebastian Redld6434562009-05-29 18:02:33 +000055
Chris Lattnerf5fbd792006-08-10 23:56:11 +000056 // Parse the abstract-declarator, if present.
Douglas Gregor205d5e32011-01-31 16:09:46 +000057 Declarator DeclaratorInfo(DS, Context);
Chris Lattnerf5fbd792006-08-10 23:56:11 +000058 ParseDeclarator(DeclaratorInfo);
Sebastian Redld6434562009-05-29 18:02:33 +000059 if (Range)
60 *Range = DeclaratorInfo.getSourceRange();
61
Chris Lattnerf6d1c9c2009-04-25 08:06:05 +000062 if (DeclaratorInfo.isInvalidType())
Douglas Gregor220cac52009-02-18 17:45:20 +000063 return true;
64
Douglas Gregor0be31a22010-07-02 17:43:08 +000065 return Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
Chris Lattnerf5fbd792006-08-10 23:56:11 +000066}
67
Caitlin Sadowski9385dd72011-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
Alexis Hunt96d5c762009-11-21 08:43:09 +000077/// ParseGNUAttributes - Parse a non-empty attributes list.
Chris Lattnerb8cd5c22006-08-15 04:10:46 +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
Steve Naroff0f2fe172007-06-01 17:11:19 +000092/// attrib-name
93/// attrib-name '(' identifier ')'
94/// attrib-name '(' identifier ',' nonempty-expr-list ')'
95/// attrib-name '(' argument-expression-list [C99 6.5.2] ')'
Chris Lattnerb8cd5c22006-08-15 04:10:46 +000096///
Steve Naroff0f2fe172007-06-01 17:11:19 +000097/// [GNU] attrib-name:
98/// identifier
99/// typespec
100/// typequal
101/// storageclass
Mike Stump11289f42009-09-09 15:08:12 +0000102///
Richard Smithf7ca0c02013-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:
Steve Naroff0f2fe172007-06-01 17:11:19 +0000105///
Richard Smithf7ca0c02013-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 Smithb12bf692011-10-17 21:20:17 +0000116///
Richard Smithf7ca0c02013-09-03 18:57:36 +0000117/// We follow the C++ model, but don't allow junk after the identifier.
John McCall53fa7142010-12-24 02:08:15 +0000118void Parser::ParseGNUAttributes(ParsedAttributes &attrs,
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000119 SourceLocation *endLoc,
120 LateParsedAttrList *LateAttrs) {
Alexis Hunt96d5c762009-11-21 08:43:09 +0000121 assert(Tok.is(tok::kw___attribute) && "Not a GNU attribute list!");
Mike Stump11289f42009-09-09 15:08:12 +0000122
Chris Lattner76c72282007-10-09 17:33:22 +0000123 while (Tok.is(tok::kw___attribute)) {
Steve Naroff0f2fe172007-06-01 17:11:19 +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 McCall53fa7142010-12-24 02:08:15 +0000128 return;
Steve Naroff0f2fe172007-06-01 17:11:19 +0000129 }
130 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after, "(")) {
131 SkipUntil(tok::r_paren, true); // skip until ) or ;
John McCall53fa7142010-12-24 02:08:15 +0000132 return;
Steve Naroff0f2fe172007-06-01 17:11:19 +0000133 }
134 // Parse the attribute-list. e.g. __attribute__(( weak, alias("__f") ))
Chris Lattner76c72282007-10-09 17:33:22 +0000135 while (Tok.is(tok::identifier) || isDeclarationSpecifier() ||
136 Tok.is(tok::comma)) {
Mike Stump11289f42009-09-09 15:08:12 +0000137 if (Tok.is(tok::comma)) {
Steve Naroff0f2fe172007-06-01 17:11:19 +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 Stump11289f42009-09-09 15:08:12 +0000145
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000146 if (Tok.is(tok::l_paren)) {
147 // handle "parameterized" attributes
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +0000148 if (LateAttrs && isAttributeLateParsed(*AttrName)) {
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000149 LateParsedAttribute *LA =
150 new LateParsedAttribute(this, *AttrName, AttrNameLoc);
151 LateAttrs->push_back(LA);
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +0000152
Bill Wendling44426052012-12-20 19:22:21 +0000153 // Attributes in a class are parsed at the end of the class, along
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +0000154 // with other late-parsed declarations.
DeLesley Hutchins66e300e2012-11-02 21:44:32 +0000155 if (!ClassStack.empty() && !LateAttrs->parseSoon())
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +0000156 getCurrentClass().LateParsedDeclarations.push_back(LA);
Mike Stump11289f42009-09-09 15:08:12 +0000157
Caitlin Sadowski9385dd72011-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 Stump11289f42009-09-09 15:08:12 +0000160
Caitlin Sadowski9385dd72011-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 Han23214e52012-10-03 01:56:22 +0000166 ParseGNUAttributeArgs(AttrName, AttrNameLoc, attrs, endLoc,
Michael Han360d2252012-10-04 16:42:52 +0000167 0, SourceLocation(), AttributeList::AS_GNU);
Steve Naroff0f2fe172007-06-01 17:11:19 +0000168 }
169 } else {
Aaron Ballman00e99962013-08-31 01:11:41 +0000170 attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0, 0,
171 AttributeList::AS_GNU);
Steve Naroff0f2fe172007-06-01 17:11:19 +0000172 }
173 }
Steve Naroff98d153c2007-06-06 23:19:11 +0000174 if (ExpectAndConsume(tok::r_paren, diag::err_expected_rparen))
Richard Smith66e71682013-10-24 01:07:54 +0000175 SkipUntil(tok::r_paren);
Alexis Hunt96d5c762009-11-21 08:43:09 +0000176 SourceLocation Loc = Tok.getLocation();
Richard Smith66e71682013-10-24 01:07:54 +0000177 if (ExpectAndConsume(tok::r_paren, diag::err_expected_rparen))
178 SkipUntil(tok::r_paren);
John McCall53fa7142010-12-24 02:08:15 +0000179 if (endLoc)
180 *endLoc = Loc;
Steve Naroff0f2fe172007-06-01 17:11:19 +0000181 }
Steve Naroff0f2fe172007-06-01 17:11:19 +0000182}
Chris Lattnerf5fbd792006-08-10 23:56:11 +0000183
Aaron Ballman4768b312013-11-04 12:55:56 +0000184/// \brief Normalizes an attribute name by dropping prefixed and suffixed __.
185static StringRef normalizeAttrName(StringRef Name) {
Richard Smith66e71682013-10-24 01:07:54 +0000186 if (Name.size() >= 4 && Name.startswith("__") && Name.endswith("__"))
187 Name = Name.drop_front(2).drop_back(2);
Aaron Ballman4768b312013-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 Smith66e71682013-10-24 01:07:54 +0000194#include "clang/Parse/AttrIdentifierArg.inc"
Douglas Gregord2472d42013-05-02 23:25:32 +0000195 .Default(false);
196}
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000197
Aaron Ballman4768b312013-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 Smithfeefaf52013-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 Smithb1f9a282013-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 Han23214e52012-10-03 01:56:22 +0000240/// Parse the arguments to a parameterized GNU attribute or
241/// a C++11 attribute in "gnu" namespace.
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000242void Parser::ParseGNUAttributeArgs(IdentifierInfo *AttrName,
243 SourceLocation AttrNameLoc,
244 ParsedAttributes &Attrs,
Michael Han23214e52012-10-03 01:56:22 +0000245 SourceLocation *EndLoc,
246 IdentifierInfo *ScopeName,
247 SourceLocation ScopeLoc,
248 AttributeList::Syntax Syntax) {
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000249
250 assert(Tok.is(tok::l_paren) && "Attribute arg list not starting with '('");
251
Richard Smith66e71682013-10-24 01:07:54 +0000252 AttributeList::Kind AttrKind =
Richard Smithb1f9a282013-10-31 01:56:18 +0000253 AttributeList::getKind(AttrName, ScopeName, Syntax);
Richard Smith66e71682013-10-24 01:07:54 +0000254
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000255 // Availability attributes have their own grammar.
Richard Smithb1f9a282013-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 Smith66e71682013-10-24 01:07:54 +0000258 if (AttrKind == AttributeList::AT_Availability) {
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000259 ParseAvailabilityAttribute(*AttrName, AttrNameLoc, Attrs, EndLoc);
260 return;
261 }
Richard Smithb1f9a282013-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 Sadowski9385dd72011-09-08 17:42:22 +0000265 if (IsThreadSafetyAttribute(AttrName->getName())) {
266 ParseThreadSafetyAttribute(*AttrName, AttrNameLoc, Attrs, EndLoc);
267 return;
268 }
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +0000269 // Type safety attributes have their own grammar.
Richard Smith66e71682013-10-24 01:07:54 +0000270 if (AttrKind == AttributeList::AT_TypeTagForDatatype) {
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +0000271 ParseTypeTagForDatatypeAttribute(*AttrName, AttrNameLoc, Attrs, EndLoc);
272 return;
273 }
Aaron Ballman4768b312013-11-04 12:55:56 +0000274 // Some attributes expect solely a type parameter.
275 if (attributeIsTypeArgAttr(*AttrName)) {
Richard Smithb1f9a282013-10-31 01:56:18 +0000276 ParseAttributeWithTypeArg(*AttrName, AttrNameLoc, Attrs, EndLoc);
277 return;
278 }
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000279
Richard Smith66e71682013-10-24 01:07:54 +0000280 // Ignore the left paren location for now.
281 ConsumeParen();
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000282
Aaron Ballman00e99962013-08-31 01:11:41 +0000283 ArgsVector ArgExprs;
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000284
Richard Smithb1f9a282013-10-31 01:56:18 +0000285 if (Tok.is(tok::identifier)) {
Richard Smith66e71682013-10-24 01:07:54 +0000286 // If this attribute wants an 'identifier' argument, make it so.
Richard Smithb1f9a282013-10-31 01:56:18 +0000287 bool IsIdentifierArg = attributeHasIdentifierArg(*AttrName);
Richard Smith66e71682013-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 Smithb1f9a282013-10-31 01:56:18 +0000293 IsIdentifierArg = Next.is(tok::r_paren) || Next.is(tok::comma);
Richard Smith66e71682013-10-24 01:07:54 +0000294 }
Richard Smithb12bf692011-10-17 21:20:17 +0000295
Richard Smithb1f9a282013-10-31 01:56:18 +0000296 if (IsIdentifierArg)
297 ArgExprs.push_back(ParseIdentifierLoc());
Richard Smithb12bf692011-10-17 21:20:17 +0000298 }
299
Richard Smithb1f9a282013-10-31 01:56:18 +0000300 if (!ArgExprs.empty() ? Tok.is(tok::comma) : Tok.isNot(tok::r_paren)) {
Richard Smithb12bf692011-10-17 21:20:17 +0000301 // Eat the comma.
Aaron Ballman00e99962013-08-31 01:11:41 +0000302 if (!ArgExprs.empty())
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000303 ConsumeToken();
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000304
Richard Smithb12bf692011-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 Sadowski9385dd72011-09-08 17:42:22 +0000311 }
Richard Smithb12bf692011-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 Sadowski9385dd72011-09-08 17:42:22 +0000316 }
Fariborz Jahanian6b708652011-10-18 17:11:10 +0000317 }
Richard Smithb12bf692011-10-17 21:20:17 +0000318
319 SourceLocation RParen = Tok.getLocation();
Richard Smithb1f9a282013-10-31 01:56:18 +0000320 if (!ExpectAndConsume(tok::r_paren, diag::err_expected_rparen)) {
Michael Han360d2252012-10-04 16:42:52 +0000321 SourceLocation AttrLoc = ScopeLoc.isValid() ? ScopeLoc : AttrNameLoc;
Richard Smithb1f9a282013-10-31 01:56:18 +0000322 Attrs.addNew(AttrName, SourceRange(AttrLoc, RParen), ScopeName, ScopeLoc,
323 ArgExprs.data(), ArgExprs.size(), Syntax);
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000324 }
325}
326
Chad Rosierc1183952012-06-26 22:30:43 +0000327/// \brief Parses a single argument for a declspec, including the
Aaron Ballman478faed2012-06-19 22:09:27 +0000328/// surrounding parens.
Chad Rosierc1183952012-06-26 22:30:43 +0000329void Parser::ParseMicrosoftDeclSpecWithSingleArg(IdentifierInfo *AttrName,
Aaron Ballman478faed2012-06-19 22:09:27 +0000330 SourceLocation AttrNameLoc,
331 ParsedAttributes &Attrs)
332{
333 BalancedDelimiterTracker T(*this, tok::l_paren);
Chad Rosierc1183952012-06-26 22:30:43 +0000334 if (T.expectAndConsume(diag::err_expected_lparen_after,
Aaron Ballman478faed2012-06-19 22:09:27 +0000335 AttrName->getNameStart(), tok::r_paren))
336 return;
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000337
Aaron Ballman478faed2012-06-19 22:09:27 +0000338 ExprResult ArgExpr(ParseConstantExpression());
339 if (ArgExpr.isInvalid()) {
340 T.skipToEnd();
341 return;
342 }
Aaron Ballman00e99962013-08-31 01:11:41 +0000343 ArgsUnion ExprList = ArgExpr.take();
344 Attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, &ExprList, 1,
345 AttributeList::AS_Declspec);
Aaron Ballman478faed2012-06-19 22:09:27 +0000346
347 T.consumeClose();
348}
349
Chad Rosierc1183952012-06-26 22:30:43 +0000350/// \brief Determines whether a declspec is a "simple" one requiring no
Aaron Ballman478faed2012-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 Ballman444eb6e2013-05-04 16:58:37 +0000368 .Case("safebuffers", true )
Aaron Ballman478faed2012-06-19 22:09:27 +0000369 .Default(false);
370}
371
Chad Rosierc1183952012-06-26 22:30:43 +0000372/// \brief Attempts to parse a declspec which is not simple (one that takes
Aaron Ballman478faed2012-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 Rosierc1183952012-06-26 22:30:43 +0000375void Parser::ParseComplexMicrosoftDeclSpec(IdentifierInfo *Ident,
Aaron Ballman478faed2012-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 Rosierc1183952012-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 Ballman478faed2012-06-19 22:09:27 +0000389 // not.
390 if (Tok.getKind() == tok::l_paren)
391 ParseMicrosoftDeclSpecWithSingleArg(Ident, Loc, Attrs);
392 else
Aaron Ballman00e99962013-08-31 01:11:41 +0000393 Attrs.addNew(Ident, Loc, 0, Loc, 0, 0, AttributeList::AS_Declspec);
Aaron Ballman478faed2012-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 Rosierc1183952012-06-26 22:30:43 +0000396 // assignment expressions as a parameter, but the lhs of the assignment
Aaron Ballman478faed2012-06-19 22:09:27 +0000397 // must be named get or put.
John McCall5e77d762013-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 Ballman478faed2012-06-19 22:09:27 +0000401 return;
John McCall5e77d762013-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 Ballman00e99962013-08-31 01:11:41 +0000506 Attrs.addNewPropertyAttr(Ident, Loc, 0, SourceLocation(),
John McCall5e77d762013-04-16 07:28:30 +0000507 AccessorNames[AK_Get], AccessorNames[AK_Put],
508 AttributeList::AS_Declspec);
509 }
Aaron Ballman478faed2012-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 Rosierc1183952012-06-26 22:30:43 +0000516 // attribute, we'd have to split the valid declspec spelling logic into
Aaron Ballman478faed2012-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 Friedman06de2b52009-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 Ballman478faed2012-06-19 22:09:27 +0000534void Parser::ParseMicrosoftDeclSpec(ParsedAttributes &Attrs) {
Steve Naroff3a9b7e02008-12-24 20:59:21 +0000535 assert(Tok.is(tok::kw___declspec) && "Not a declspec!");
Eli Friedman06de2b52009-06-08 07:21:15 +0000536
Steve Naroff3a9b7e02008-12-24 20:59:21 +0000537 ConsumeToken();
Aaron Ballman478faed2012-06-19 22:09:27 +0000538 BalancedDelimiterTracker T(*this, tok::l_paren);
Chad Rosierc1183952012-06-26 22:30:43 +0000539 if (T.expectAndConsume(diag::err_expected_lparen_after, "__declspec",
Aaron Ballman478faed2012-06-19 22:09:27 +0000540 tok::r_paren))
John McCall53fa7142010-12-24 02:08:15 +0000541 return;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +0000542
Chad Rosierc1183952012-06-26 22:30:43 +0000543 // An empty declspec is perfectly legal and should not warn. Additionally,
Aaron Ballman478faed2012-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 Rosierc1183952012-06-26 22:30:43 +0000549 if (!IsString && Tok.getKind() != tok::identifier &&
Aaron Ballman478faed2012-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 Olesene1c0ae62012-06-19 21:48:43 +0000554 }
Aaron Ballman478faed2012-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 Olesene1c0ae62012-06-19 21:48:43 +0000565 }
Aaron Ballman478faed2012-06-19 22:09:27 +0000566 AttrName = PP.getIdentifierInfo(Str);
567 AttrNameLoc = ConsumeStringToken();
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +0000568 } else {
Aaron Ballman478faed2012-06-19 22:09:27 +0000569 AttrName = Tok.getIdentifierInfo();
570 AttrNameLoc = ConsumeToken();
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +0000571 }
Chad Rosierc1183952012-06-26 22:30:43 +0000572
Aaron Ballman478faed2012-06-19 22:09:27 +0000573 if (IsString || IsSimpleMicrosoftDeclSpec(AttrName))
Chad Rosierc1183952012-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 Ballman478faed2012-06-19 22:09:27 +0000576 // (for instance, SAL declspecs in older versions of MSVC).
577 //
Chad Rosierc1183952012-06-26 22:30:43 +0000578 // Alternatively, if the identifier is a simple one, then it requires no
Aaron Ballman478faed2012-06-19 22:09:27 +0000579 // arguments and can be turned into an attribute directly.
Aaron Ballman00e99962013-08-31 01:11:41 +0000580 Attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0, 0,
581 AttributeList::AS_Declspec);
Aaron Ballman478faed2012-06-19 22:09:27 +0000582 else
583 ParseComplexMicrosoftDeclSpec(AttrName, AttrNameLoc, Attrs);
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +0000584 }
Aaron Ballman478faed2012-06-19 22:09:27 +0000585 T.consumeClose();
Eli Friedman53339e02009-06-08 23:27:34 +0000586}
587
John McCall53fa7142010-12-24 02:08:15 +0000588void Parser::ParseMicrosoftTypeAttributes(ParsedAttributes &attrs) {
Eli Friedman53339e02009-06-08 23:27:34 +0000589 // Treat these like attributes
Eli Friedman53339e02009-06-08 23:27:34 +0000590 while (Tok.is(tok::kw___fastcall) || Tok.is(tok::kw___stdcall) ||
Douglas Gregora941dca2010-05-18 16:57:00 +0000591 Tok.is(tok::kw___thiscall) || Tok.is(tok::kw___cdecl) ||
Francois Pichet17ed0202011-08-18 09:59:55 +0000592 Tok.is(tok::kw___ptr64) || Tok.is(tok::kw___w64) ||
Aaron Ballman317a77f2013-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 Friedman53339e02009-06-08 23:27:34 +0000595 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
596 SourceLocation AttrNameLoc = ConsumeToken();
Aaron Ballman00e99962013-08-31 01:11:41 +0000597 attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0, 0,
598 AttributeList::AS_Keyword);
Eli Friedman53339e02009-06-08 23:27:34 +0000599 }
Steve Naroff3a9b7e02008-12-24 20:59:21 +0000600}
601
John McCall53fa7142010-12-24 02:08:15 +0000602void Parser::ParseBorlandTypeAttributes(ParsedAttributes &attrs) {
Dawn Perchik335e16b2010-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 Ballman00e99962013-08-31 01:11:41 +0000607 attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0, 0,
608 AttributeList::AS_Keyword);
Dawn Perchik335e16b2010-09-03 01:29:35 +0000609 }
John McCall53fa7142010-12-24 02:08:15 +0000610}
611
Peter Collingbourne7ce13fc2011-02-14 01:42:53 +0000612void Parser::ParseOpenCLAttributes(ParsedAttributes &attrs) {
613 // Treat these like attributes
614 while (Tok.is(tok::kw___kernel)) {
Richard Smith0cdcc982013-01-29 01:24:26 +0000615 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
Peter Collingbourne7ce13fc2011-02-14 01:42:53 +0000616 SourceLocation AttrNameLoc = ConsumeToken();
Aaron Ballman00e99962013-08-31 01:11:41 +0000617 attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0, 0,
618 AttributeList::AS_Keyword);
Peter Collingbourne7ce13fc2011-02-14 01:42:53 +0000619 }
620}
621
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000622void Parser::ParseOpenCLQualifiers(DeclSpec &DS) {
Richard Smith0cdcc982013-01-29 01:24:26 +0000623 // FIXME: The mapping from attribute spelling to semantics should be
624 // performed in Sema, not here.
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000625 SourceLocation Loc = Tok.getLocation();
626 switch(Tok.getKind()) {
627 // OpenCL qualifiers:
628 case tok::kw___private:
Chad Rosierc1183952012-06-26 22:30:43 +0000629 case tok::kw_private:
John McCall084e83d2011-03-24 11:26:52 +0000630 DS.getAttributes().addNewInteger(
Chad Rosierc1183952012-06-26 22:30:43 +0000631 Actions.getASTContext(),
John McCall084e83d2011-03-24 11:26:52 +0000632 PP.getIdentifierInfo("address_space"), Loc, 0);
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000633 break;
Chad Rosierc1183952012-06-26 22:30:43 +0000634
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000635 case tok::kw___global:
John McCall084e83d2011-03-24 11:26:52 +0000636 DS.getAttributes().addNewInteger(
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000637 Actions.getASTContext(),
John McCall084e83d2011-03-24 11:26:52 +0000638 PP.getIdentifierInfo("address_space"), Loc, LangAS::opencl_global);
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000639 break;
Chad Rosierc1183952012-06-26 22:30:43 +0000640
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000641 case tok::kw___local:
John McCall084e83d2011-03-24 11:26:52 +0000642 DS.getAttributes().addNewInteger(
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000643 Actions.getASTContext(),
John McCall084e83d2011-03-24 11:26:52 +0000644 PP.getIdentifierInfo("address_space"), Loc, LangAS::opencl_local);
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000645 break;
Chad Rosierc1183952012-06-26 22:30:43 +0000646
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000647 case tok::kw___constant:
John McCall084e83d2011-03-24 11:26:52 +0000648 DS.getAttributes().addNewInteger(
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000649 Actions.getASTContext(),
John McCall084e83d2011-03-24 11:26:52 +0000650 PP.getIdentifierInfo("address_space"), Loc, LangAS::opencl_constant);
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000651 break;
Chad Rosierc1183952012-06-26 22:30:43 +0000652
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000653 case tok::kw___read_only:
John McCall084e83d2011-03-24 11:26:52 +0000654 DS.getAttributes().addNewInteger(
Chad Rosierc1183952012-06-26 22:30:43 +0000655 Actions.getASTContext(),
John McCall084e83d2011-03-24 11:26:52 +0000656 PP.getIdentifierInfo("opencl_image_access"), Loc, CLIA_read_only);
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000657 break;
Chad Rosierc1183952012-06-26 22:30:43 +0000658
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000659 case tok::kw___write_only:
John McCall084e83d2011-03-24 11:26:52 +0000660 DS.getAttributes().addNewInteger(
Chad Rosierc1183952012-06-26 22:30:43 +0000661 Actions.getASTContext(),
John McCall084e83d2011-03-24 11:26:52 +0000662 PP.getIdentifierInfo("opencl_image_access"), Loc, CLIA_write_only);
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000663 break;
Chad Rosierc1183952012-06-26 22:30:43 +0000664
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000665 case tok::kw___read_write:
John McCall084e83d2011-03-24 11:26:52 +0000666 DS.getAttributes().addNewInteger(
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000667 Actions.getASTContext(),
John McCall084e83d2011-03-24 11:26:52 +0000668 PP.getIdentifierInfo("opencl_image_access"), Loc, CLIA_read_write);
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000669 break;
670 default: break;
671 }
672}
673
Douglas Gregor20b2ebd2011-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 Noblesmith2c1dd272012-02-05 02:13:05 +0000693 SmallString<512> Buffer;
Douglas Gregor20b2ebd2011-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 Rosea7d03842013-02-08 22:30:41 +0000706 while (AfterMajor < ActualLength && isDigit(ThisTokBegin[AfterMajor])) {
Douglas Gregor20b2ebd2011-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 Rosea7d03842013-02-08 22:30:41 +0000738 while (AfterMinor < ActualLength && isDigit(ThisTokBegin[AfterMinor])) {
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000739 Minor = Minor * 10 + ThisTokBegin[AfterMinor] - '0';
740 ++AfterMinor;
741 }
742
743 if (AfterMinor == ActualLength) {
744 ConsumeToken();
Chad Rosierc1183952012-06-26 22:30:43 +0000745
Douglas Gregor20b2ebd2011-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 Rosierc1183952012-06-26 22:30:43 +0000752 return VersionTuple(Major, Minor);
Douglas Gregor20b2ebd2011-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 Rosierc1183952012-06-26 22:30:43 +0000759 return VersionTuple();
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000760 }
761
762 // Parse the subminor version.
763 unsigned AfterSubminor = AfterMinor + 1;
764 unsigned Subminor = 0;
Jordan Rosea7d03842013-02-08 22:30:41 +0000765 while (AfterSubminor < ActualLength && isDigit(ThisTokBegin[AfterSubminor])) {
Douglas Gregor20b2ebd2011-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 Jahanian88d510d2011-12-10 00:28:41 +0000782/// 'availability' '(' platform ',' version-arg-list, opt-message')'
Douglas Gregor20b2ebd2011-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 Gregorfdd417f2012-03-11 04:53:21 +0000794/// 'obsoleted' = version
Douglas Gregor7ab142b2011-03-26 03:35:55 +0000795/// 'unavailable'
Fariborz Jahanian88d510d2011-12-10 00:28:41 +0000796/// opt-message:
797/// 'message' '=' <string>
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000798void Parser::ParseAvailabilityAttribute(IdentifierInfo &Availability,
799 SourceLocation AvailabilityLoc,
800 ParsedAttributes &attrs,
801 SourceLocation *endLoc) {
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000802 enum { Introduced, Deprecated, Obsoleted, Unknown };
803 AvailabilityChange Changes[Unknown];
Fariborz Jahanian88d510d2011-12-10 00:28:41 +0000804 ExprResult MessageExpr;
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000805
806 // Opening '('.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +0000807 BalancedDelimiterTracker T(*this, tok::l_paren);
808 if (T.consumeOpen()) {
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000809 Diag(Tok, diag::err_expected_lparen);
810 return;
811 }
Douglas Gregor20b2ebd2011-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 Smithfeefaf52013-09-03 18:01:40 +0000819 IdentifierLoc *Platform = ParseIdentifierLoc();
Douglas Gregor20b2ebd2011-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 Gregor7ab142b2011-03-26 03:35:55 +0000831 Ident_unavailable = PP.getIdentifierInfo("unavailable");
Fariborz Jahanian88d510d2011-12-10 00:28:41 +0000832 Ident_message = PP.getIdentifierInfo("message");
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000833 }
834
835 // Parse the set of introductions/deprecations/removals.
Douglas Gregor7ab142b2011-03-26 03:35:55 +0000836 SourceLocation UnavailableLoc;
Douglas Gregor20b2ebd2011-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 Gregor7ab142b2011-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 Rosierc1183952012-06-26 22:30:43 +0000850 }
Douglas Gregor7ab142b2011-03-26 03:35:55 +0000851 UnavailableLoc = KeywordLoc;
852
853 if (Tok.isNot(tok::comma))
854 break;
855
856 ConsumeToken();
857 continue;
Chad Rosierc1183952012-06-26 22:30:43 +0000858 }
859
Douglas Gregor20b2ebd2011-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 Jahanian88d510d2011-12-10 00:28:41 +0000867 if (Keyword == Ident_message) {
Benjamin Kramera9dfa922013-09-13 17:31:48 +0000868 if (Tok.isNot(tok::string_literal)) { // Also reject wide string literals.
Andy Gibbsa8df57a2012-11-17 19:16:52 +0000869 Diag(Tok, diag::err_expected_string_literal)
870 << /*Source='availability attribute'*/2;
Fariborz Jahanian88d510d2011-12-10 00:28:41 +0000871 SkipUntil(tok::r_paren);
872 return;
873 }
874 MessageExpr = ParseStringLiteralExpression();
875 break;
876 }
Chad Rosierc1183952012-06-26 22:30:43 +0000877
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000878 SourceRange VersionRange;
879 VersionTuple Version = ParseVersionTuple(VersionRange);
Chad Rosierc1183952012-06-26 22:30:43 +0000880
Douglas Gregor20b2ebd2011-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 Rosierc1183952012-06-26 22:30:43 +0000893 else
Douglas Gregor20b2ebd2011-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 Rosierc1183952012-06-26 22:30:43 +0000899 << Keyword
Douglas Gregor20b2ebd2011-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 Gregore7a8e3b2011-10-12 16:37:45 +0000919 if (T.consumeClose())
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000920 return;
921
922 if (endLoc)
Douglas Gregore7a8e3b2011-10-12 16:37:45 +0000923 *endLoc = T.getCloseLocation();
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000924
Douglas Gregor7ab142b2011-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 Gregor20b2ebd2011-03-23 00:50:03 +0000944 // Record this attribute
Chad Rosierc1183952012-06-26 22:30:43 +0000945 attrs.addNew(&Availability,
946 SourceRange(AvailabilityLoc, T.getCloseLocation()),
Fariborz Jahanian586be882012-01-23 23:38:32 +0000947 0, AvailabilityLoc,
Aaron Ballman00e99962013-08-31 01:11:41 +0000948 Platform,
John McCall084e83d2011-03-24 11:26:52 +0000949 Changes[Introduced],
950 Changes[Deprecated],
Chad Rosierc1183952012-06-26 22:30:43 +0000951 Changes[Obsoleted],
Fariborz Jahanian88d510d2011-12-10 00:28:41 +0000952 UnavailableLoc, MessageExpr.take(),
Alexis Hunta0e54d42012-06-18 16:13:52 +0000953 AttributeList::AS_GNU);
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000954}
955
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000956
Bill Wendling44426052012-12-20 19:22:21 +0000957// Late Parsed Attributes:
Caitlin Sadowski9385dd72011-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 Hutchins3fc6e4a2012-02-16 16:50:43 +0000967 Self->ParseLexedAttribute(*this, true, false);
Caitlin Sadowski9385dd72011-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 Gregor3024f072012-04-16 07:05:22 +0000981 // Set or update the scope flags.
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000982 bool AlreadyHasClassScope = Class.TopLevelClass;
Douglas Gregor3024f072012-04-16 07:05:22 +0000983 unsigned ScopeFlags = Scope::ClassScope|Scope::DeclScope;
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000984 ParseScope ClassScope(this, ScopeFlags, !AlreadyHasClassScope);
985 ParseScopeFlags ClassScopeFlags(this, ScopeFlags, AlreadyHasClassScope);
986
DeLesley Hutchins6f860042012-04-06 15:10:17 +0000987 // Enter the scope of nested classes
988 if (!AlreadyHasClassScope)
989 Actions.ActOnStartDelayedMemberDeclarations(getCurScope(),
990 Class.TagOrTemplate);
Benjamin Kramer1d373c62012-05-17 12:01:52 +0000991 if (!Class.LateParsedDeclarations.empty()) {
Douglas Gregor3024f072012-04-16 07:05:22 +0000992 for (unsigned i = 0, ni = Class.LateParsedDeclarations.size(); i < ni; ++i){
993 Class.LateParsedDeclarations[i]->ParseLexedAttributes();
994 }
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000995 }
Chad Rosierc1183952012-06-26 22:30:43 +0000996
DeLesley Hutchins6f860042012-04-06 15:10:17 +0000997 if (!AlreadyHasClassScope)
998 Actions.ActOnFinishDelayedMemberDeclarations(getCurScope(),
999 Class.TagOrTemplate);
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001000}
1001
DeLesley Hutchins3fc6e4a2012-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 Hutchins66e300e2012-11-02 21:44:32 +00001006 assert(LAs.parseSoon() &&
1007 "Attribute list should be marked for immediate parsing.");
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +00001008 for (unsigned i = 0, ni = LAs.size(); i < ni; ++i) {
DeLesley Hutchins19c722d2012-08-15 22:41:04 +00001009 if (D)
1010 LAs[i]->addDecl(D);
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +00001011 ParseLexedAttribute(*LAs[i], EnterScope, OnDefinition);
Benjamin Kramerbafc49a2012-04-14 12:44:47 +00001012 delete LAs[i];
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +00001013 }
1014 LAs.clear();
1015}
1016
1017
Caitlin Sadowski9385dd72011-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 Rosierc1183952012-06-26 22:30:43 +00001021/// create an attribute with the arguments filled in. We add this
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001022/// to the Attribute list for the decl.
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +00001023void Parser::ParseLexedAttribute(LateParsedAttribute &LA,
1024 bool EnterScope, bool OnDefinition) {
Caitlin Sadowski9385dd72011-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 Kyrtzidisc36633c2013-03-27 23:58:17 +00001033 ConsumeAnyToken(/*ConsumeCodeCompletionTok=*/true);
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001034
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +00001035 if (OnDefinition && !IsThreadSafetyAttribute(LA.AttrName.getName())) {
Richard Smith10876ef2013-01-17 01:30:42 +00001036 // FIXME: Do not warn on C++11 attributes, once we start supporting
1037 // them here.
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +00001038 Diag(Tok, diag::warn_attribute_on_function_definition)
1039 << LA.AttrName.getName();
1040 }
1041
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001042 ParsedAttributes Attrs(AttrFactory);
1043 SourceLocation endLoc;
1044
DeLesley Hutchinsf1150d32012-08-20 21:32:18 +00001045 if (LA.Decls.size() > 0) {
DeLesley Hutchinsbd2ee132012-03-02 22:12:59 +00001046 Decl *D = LA.Decls[0];
DeLesley Hutchinsf1150d32012-08-20 21:32:18 +00001047 NamedDecl *ND = dyn_cast<NamedDecl>(D);
1048 RecordDecl *RD = dyn_cast_or_null<RecordDecl>(D->getDeclContext());
Caitlin Sadowski990d5712011-09-08 17:42:31 +00001049
DeLesley Hutchinsf1150d32012-08-20 21:32:18 +00001050 // Allow 'this' within late-parsed attributes.
Richard Smithc3d2ebb2013-06-07 02:33:37 +00001051 Sema::CXXThisScopeRAII ThisScope(Actions, RD, /*TypeQuals=*/0,
1052 ND && ND->isCXXInstanceMember());
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001053
DeLesley Hutchinsf1150d32012-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 Hutchinsbd2ee132012-03-02 22:12:59 +00001060
DeLesley Hutchinsf1150d32012-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 Hutchinsbd2ee132012-03-02 22:12:59 +00001066
Michael Han23214e52012-10-03 01:56:22 +00001067 ParseGNUAttributeArgs(&LA.AttrName, LA.AttrNameLoc, Attrs, &endLoc,
Michael Han360d2252012-10-04 16:42:52 +00001068 0, SourceLocation(), AttributeList::AS_GNU);
DeLesley Hutchinsf1150d32012-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 Han23214e52012-10-03 01:56:22 +00001080 ParseGNUAttributeArgs(&LA.AttrName, LA.AttrNameLoc, Attrs, &endLoc,
Michael Han360d2252012-10-04 16:42:52 +00001081 0, SourceLocation(), AttributeList::AS_GNU);
DeLesley Hutchinsbd2ee132012-03-02 22:12:59 +00001082 }
DeLesley Hutchins71d61032012-03-02 22:29:50 +00001083 } else {
1084 Diag(Tok, diag::warn_attribute_no_decl) << LA.AttrName.getName();
Caitlin Sadowski990d5712011-09-08 17:42:31 +00001085 }
1086
DeLesley Hutchinsbd2ee132012-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 Sadowski9385dd72011-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 Gregor0cf55e92012-03-08 01:00:17 +00001099 ConsumeAnyToken();
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001100 }
1101}
1102
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +00001103/// \brief Wrapper around a case statement checking if AttrName is
1104/// one of the thread safety attributes
Dmitri Gribenkof8579502013-01-12 19:30:44 +00001105bool Parser::IsThreadSafetyAttribute(StringRef AttrName) {
Caitlin Sadowski4b1e8392011-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 Sadowski9385dd72011-09-08 17:42:22 +00001144 assert(Tok.is(tok::l_paren) && "Attribute arg list not starting with '('");
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +00001145
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001146 BalancedDelimiterTracker T(*this, tok::l_paren);
1147 T.consumeOpen();
Chad Rosierc1183952012-06-26 22:30:43 +00001148
Aaron Ballman00e99962013-08-31 01:11:41 +00001149 ArgsVector ArgExprs;
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001150 bool ArgExprsOk = true;
Chad Rosierc1183952012-06-26 22:30:43 +00001151
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001152 // now parse the list of expressions
DeLesley Hutchins36f5d852011-12-14 19:36:06 +00001153 while (Tok.isNot(tok::r_paren)) {
DeLesley Hutchinseb849c62013-02-07 19:01:07 +00001154 EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated);
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001155 ExprResult ArgExpr(ParseAssignmentExpression());
1156 if (ArgExpr.isInvalid()) {
1157 ArgExprsOk = false;
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001158 T.consumeClose();
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001159 break;
1160 } else {
1161 ArgExprs.push_back(ArgExpr.release());
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +00001162 }
Caitlin Sadowski9385dd72011-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 Hutchins30398dd2012-01-20 22:50:54 +00001168 if (ArgExprsOk && !T.consumeClose()) {
Aaron Ballman00e99962013-08-31 01:11:41 +00001169 Attrs.addNew(&AttrName, AttrNameLoc, 0, AttrNameLoc, ArgExprs.data(),
1170 ArgExprs.size(), AttributeList::AS_GNU);
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +00001171 }
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001172 if (EndLoc)
1173 *EndLoc = T.getCloseLocation();
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +00001174}
1175
Dmitri Gribenkoe4a5a902012-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 Smithfeefaf52013-09-03 18:01:40 +00001190 IdentifierLoc *ArgumentKind = ParseIdentifierLoc();
Dmitri Gribenkoe4a5a902012-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 Ballman00e99962013-08-31 01:11:41 +00001230 ArgumentKind, MatchingCType.release(),
1231 LayoutCompatible, MustBeNull,
1232 AttributeList::AS_GNU);
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +00001233 }
1234
1235 if (EndLoc)
1236 *EndLoc = T.getCloseLocation();
1237}
1238
Richard Smith7bdcc4a2012-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 Carruthd8f7d382012-04-10 16:03:08 +00001270 llvm_unreachable("All cases handled above.");
Richard Smith7bdcc4a2012-04-10 01:32:12 +00001271}
1272
Richard Smith98155ad2013-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 Smith4c96e992013-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 McCall53fa7142010-12-24 02:08:15 +00001292void Parser::DiagnoseProhibitedAttributes(ParsedAttributesWithRange &attrs) {
1293 Diag(attrs.Range.getBegin(), diag::err_attributes_not_allowed)
1294 << attrs.Range;
Dawn Perchik335e16b2010-09-03 01:29:35 +00001295}
1296
Michael Han64536a62012-11-06 19:34:54 +00001297void Parser::ProhibitCXX11Attributes(ParsedAttributesWithRange &attrs) {
1298 AttributeList *AttrList = attrs.getList();
1299 while (AttrList) {
Richard Smith89645bc2013-01-02 12:01:23 +00001300 if (AttrList->isCXX11Attribute()) {
Richard Smith810ad3e2013-01-29 10:02:16 +00001301 Diag(AttrList->getLoc(), diag::err_attribute_not_type_attr)
Michael Han64536a62012-11-06 19:34:54 +00001302 << AttrList->getName();
1303 AttrList->setInvalid();
1304 }
1305 AttrList = AttrList->getNext();
1306 }
1307}
1308
Chris Lattner53361ac2006-08-10 05:19:57 +00001309/// ParseDeclaration - Parse a full 'declaration', which consists of
1310/// declaration-specifiers, some number of declarators, and a semicolon.
Chris Lattner49836b42009-04-02 04:16:50 +00001311/// 'Context' should be a Declarator::TheContext value. This returns the
1312/// location of the semicolon in DeclEnd.
Chris Lattnera5235172007-08-25 06:57:03 +00001313///
1314/// declaration: [C99 6.7]
1315/// block-declaration ->
1316/// simple-declaration
1317/// others [FIXME]
Douglas Gregoreb31f392008-12-01 23:54:00 +00001318/// [C++] template-declaration
Chris Lattnera5235172007-08-25 06:57:03 +00001319/// [C++] namespace-definition
Douglas Gregord7c4d982008-12-30 03:27:21 +00001320/// [C++] using-directive
Douglas Gregor77b50e12009-06-22 23:06:13 +00001321/// [C++] using-declaration
Richard Smithc202b282012-04-14 00:33:13 +00001322/// [C++11/C11] static_assert-declaration
Chris Lattnera5235172007-08-25 06:57:03 +00001323/// others... [FIXME]
1324///
Fariborz Jahanian1db5c942010-09-28 20:42:35 +00001325Parser::DeclGroupPtrTy Parser::ParseDeclaration(StmtVector &Stmts,
1326 unsigned Context,
Alexis Hunt96d5c762009-11-21 08:43:09 +00001327 SourceLocation &DeclEnd,
John McCall53fa7142010-12-24 02:08:15 +00001328 ParsedAttributesWithRange &attrs) {
Argyrios Kyrtzidis355094e2010-06-17 10:52:18 +00001329 ParenBraceBracketBalancer BalancerRAIIObj(*this);
Fariborz Jahanian59b75282011-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 Rosierc1183952012-06-26 22:30:43 +00001333
John McCall48871652010-08-21 09:40:31 +00001334 Decl *SingleDecl = 0;
Richard Smithcd1c0552011-07-01 19:46:12 +00001335 Decl *OwnedType = 0;
Chris Lattnera5235172007-08-25 06:57:03 +00001336 switch (Tok.getKind()) {
Douglas Gregoreb31f392008-12-01 23:54:00 +00001337 case tok::kw_template:
Douglas Gregor23996282009-05-12 21:31:51 +00001338 case tok::kw_export:
John McCall53fa7142010-12-24 02:08:15 +00001339 ProhibitAttributes(attrs);
Douglas Gregor1b57ff32009-05-12 23:25:50 +00001340 SingleDecl = ParseDeclarationStartingWithTemplate(Context, DeclEnd);
Chris Lattner5bbb3c82009-03-29 16:50:03 +00001341 break;
Sebastian Redl67667942010-08-27 23:12:46 +00001342 case tok::kw_inline:
Sebastian Redl5a5f2c72010-08-31 00:36:45 +00001343 // Could be the start of an inline namespace. Allowed as an ext in C++03.
David Blaikiebbafb8a2012-03-11 07:00:24 +00001344 if (getLangOpts().CPlusPlus && NextToken().is(tok::kw_namespace)) {
John McCall53fa7142010-12-24 02:08:15 +00001345 ProhibitAttributes(attrs);
Sebastian Redl67667942010-08-27 23:12:46 +00001346 SourceLocation InlineLoc = ConsumeToken();
1347 SingleDecl = ParseNamespace(Context, DeclEnd, InlineLoc);
1348 break;
1349 }
Chad Rosierc1183952012-06-26 22:30:43 +00001350 return ParseSimpleDeclaration(Stmts, Context, DeclEnd, attrs,
Fariborz Jahanian1db5c942010-09-28 20:42:35 +00001351 true);
Chris Lattnera5235172007-08-25 06:57:03 +00001352 case tok::kw_namespace:
John McCall53fa7142010-12-24 02:08:15 +00001353 ProhibitAttributes(attrs);
Chris Lattner49836b42009-04-02 04:16:50 +00001354 SingleDecl = ParseNamespace(Context, DeclEnd);
Chris Lattner5bbb3c82009-03-29 16:50:03 +00001355 break;
Douglas Gregord7c4d982008-12-30 03:27:21 +00001356 case tok::kw_using:
John McCall9b72f892010-11-10 02:40:36 +00001357 SingleDecl = ParseUsingDirectiveOrDeclaration(Context, ParsedTemplateInfo(),
Richard Smithcd1c0552011-07-01 19:46:12 +00001358 DeclEnd, attrs, &OwnedType);
Chris Lattner5bbb3c82009-03-29 16:50:03 +00001359 break;
Anders Carlssonf24fcff62009-03-11 16:27:10 +00001360 case tok::kw_static_assert:
Peter Collingbourne3d9cbdc2011-04-15 00:35:57 +00001361 case tok::kw__Static_assert:
John McCall53fa7142010-12-24 02:08:15 +00001362 ProhibitAttributes(attrs);
Chris Lattner49836b42009-04-02 04:16:50 +00001363 SingleDecl = ParseStaticAssertDeclaration(DeclEnd);
Chris Lattner5bbb3c82009-03-29 16:50:03 +00001364 break;
Chris Lattnera5235172007-08-25 06:57:03 +00001365 default:
John McCall53fa7142010-12-24 02:08:15 +00001366 return ParseSimpleDeclaration(Stmts, Context, DeclEnd, attrs, true);
Chris Lattnera5235172007-08-25 06:57:03 +00001367 }
Chad Rosierc1183952012-06-26 22:30:43 +00001368
Chris Lattner5bbb3c82009-03-29 16:50:03 +00001369 // This routine returns a DeclGroup, if the thing we parsed only contains a
Richard Smithcd1c0552011-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 Lattnera5235172007-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] ';'
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00001377/// [C++11] attribute-specifier-seq decl-specifier-seq[opt]
1378/// init-declarator-list ';'
Chris Lattnera5235172007-08-25 06:57:03 +00001379///[C90/C++]init-declarator-list ';' [TODO]
1380/// [OMP] threadprivate-directive [TODO]
Chris Lattner32dc41c2009-03-29 17:27:48 +00001381///
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00001382/// for-range-declaration: [C++11 6.5p1: stmt.ranged]
Richard Smith02e85f32011-04-14 22:09:26 +00001383/// attribute-specifier-seq[opt] type-specifier-seq declarator
1384///
Chris Lattner32dc41c2009-03-29 17:27:48 +00001385/// If RequireSemi is false, this does not check for a ';' at the end of the
Chris Lattner005fc1b2010-04-05 18:18:31 +00001386/// declaration. If it is true, it checks for and eats it.
Richard Smith02e85f32011-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.
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00001391Parser::DeclGroupPtrTy
1392Parser::ParseSimpleDeclaration(StmtVector &Stmts, unsigned Context,
1393 SourceLocation &DeclEnd,
Richard Smith2386c8b2013-02-22 09:06:26 +00001394 ParsedAttributesWithRange &Attrs,
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00001395 bool RequireSemi, ForRangeInit *FRI) {
Chris Lattner53361ac2006-08-10 05:19:57 +00001396 // Parse the common declaration-specifiers piece.
John McCall28a6aea2009-11-04 02:18:39 +00001397 ParsingDeclSpec DS(*this);
Douglas Gregor0e7dde52011-04-24 05:37:28 +00001398
Douglas Gregor9de54ea2010-01-13 17:31:36 +00001399 ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS_none,
Richard Smith30482bc2011-02-20 03:19:35 +00001400 getDeclSpecContextFromDeclaratorContext(Context));
Abramo Bagnara1cd83682012-01-07 10:52:36 +00001401
Chris Lattner0e894622006-08-13 19:58:17 +00001402 // C99 6.7.2.3p6: Handle "struct-or-union identifier;", "enum { X };"
1403 // declaration-specifiers init-declarator-list[opt] ';'
Chris Lattner76c72282007-10-09 17:33:22 +00001404 if (Tok.is(tok::semi)) {
Richard Smith2386c8b2013-02-22 09:06:26 +00001405 ProhibitAttributes(Attrs);
Argyrios Kyrtzidisfbb2bb52012-05-16 23:49:15 +00001406 DeclEnd = Tok.getLocation();
Chris Lattner005fc1b2010-04-05 18:18:31 +00001407 if (RequireSemi) ConsumeToken();
John McCall48871652010-08-21 09:40:31 +00001408 Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS_none,
Douglas Gregor0e7dde52011-04-24 05:37:28 +00001409 DS);
John McCall28a6aea2009-11-04 02:18:39 +00001410 DS.complete(TheDecl);
Chris Lattner5bbb3c82009-03-29 16:50:03 +00001411 return Actions.ConvertDeclToDeclGroup(TheDecl);
Chris Lattner0e894622006-08-13 19:58:17 +00001412 }
Chad Rosierc1183952012-06-26 22:30:43 +00001413
Richard Smith2386c8b2013-02-22 09:06:26 +00001414 DS.takeAttributesFrom(Attrs);
Chad Rosierc1183952012-06-26 22:30:43 +00001415 return ParseDeclGroup(DS, Context, /*FunctionDefs=*/ false, &DeclEnd, FRI);
John McCalld5a36322009-11-03 19:26:08 +00001416}
Mike Stump11289f42009-09-09 15:08:12 +00001417
Richard Smith09f76ee2011-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 Blaikiebbafb8a2012-03-11 07:00:24 +00001436 return getLangOpts().CPlusPlus;
Richard Smith09f76ee2011-10-19 21:33:05 +00001437
Richard Smithc8a79032012-01-09 22:31:44 +00001438 case tok::l_square: // Might be an attribute on an unnamed bit-field.
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001439 return Context == Declarator::MemberContext && getLangOpts().CPlusPlus11 &&
Richard Smithc8a79032012-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 Blaikiebbafb8a2012-03-11 07:00:24 +00001443 return Context == Declarator::MemberContext || getLangOpts().CPlusPlus;
Richard Smithc8a79032012-01-09 22:31:44 +00001444
Richard Smith09f76ee2011-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 Smithc8a79032012-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 Blaikiebbafb8a2012-03-11 07:00:24 +00001470 (getLangOpts().CPlusPlus && Context == Declarator::FileContext);
Richard Smithc8a79032012-01-09 22:31:44 +00001471
1472 case tok::identifier: // Possible virt-specifier.
Richard Smith89645bc2013-01-02 12:01:23 +00001473 return getLangOpts().CPlusPlus11 && isCXX11VirtSpecifier(NextToken());
Richard Smith09f76ee2011-10-19 21:33:05 +00001474
1475 default:
1476 return false;
1477 }
1478
1479 default:
1480 return false;
1481 }
1482}
1483
Richard Smithb8caac82012-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 Rose12e730c2012-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 Smithb8caac82012-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 Rose12e730c2012-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 Smithb8caac82012-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 McCalld5a36322009-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 McCall28a6aea2009-11-04 02:18:39 +00001566Parser::DeclGroupPtrTy Parser::ParseDeclGroup(ParsingDeclSpec &DS,
1567 unsigned Context,
John McCalld5a36322009-11-03 19:26:08 +00001568 bool AllowFunctionDefinitions,
Richard Smith02e85f32011-04-14 22:09:26 +00001569 SourceLocation *DeclEnd,
1570 ForRangeInit *FRI) {
John McCalld5a36322009-11-03 19:26:08 +00001571 // Parse the first declarator.
John McCall28a6aea2009-11-04 02:18:39 +00001572 ParsingDeclarator D(*this, DS, static_cast<Declarator::TheContext>(Context));
John McCalld5a36322009-11-03 19:26:08 +00001573 ParseDeclarator(D);
Chris Lattner32dc41c2009-03-29 17:27:48 +00001574
John McCalld5a36322009-11-03 19:26:08 +00001575 // Bail out if the first declarator didn't seem well-formed.
1576 if (!D.hasName() && !D.mayOmitIdentifier()) {
Richard Smithb8caac82012-04-11 20:59:20 +00001577 SkipMalformedDecl();
John McCalld5a36322009-11-03 19:26:08 +00001578 return DeclGroupPtrTy();
Chris Lattnerefb0f112009-03-29 17:18:04 +00001579 }
Mike Stump11289f42009-09-09 15:08:12 +00001580
DeLesley Hutchins3fc6e4a2012-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 Hutchins66e300e2012-11-02 21:44:32 +00001583 // These will be parsed in ParseFunctionDefinition or ParseLexedAttrList.
1584 LateParsedAttrList LateParsedAttrs(true);
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +00001585 if (D.isFunctionDeclarator())
1586 MaybeParseGNUAttributes(D, &LateParsedAttrs);
1587
Chris Lattnerdbb1e932010-07-11 22:24:20 +00001588 // Check to see if we have a function *definition* which must have a body.
Douglas Gregor012efe22013-04-16 16:01:32 +00001589 if (D.isFunctionDeclarator() &&
Chris Lattnerdbb1e932010-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 Jahanian712bb812012-08-10 15:54:40 +00001593 !isDeclarationAfterDeclarator()) {
Chad Rosierc1183952012-06-26 22:30:43 +00001594
Douglas Gregor012efe22013-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 McCalld5a36322009-11-03 19:26:08 +00001599
Douglas Gregor012efe22013-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 McCalld5a36322009-11-03 19:26:08 +00001607 }
1608
Douglas Gregor012efe22013-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 McCalld5a36322009-11-03 19:26:08 +00001620 } else {
Douglas Gregor012efe22013-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 McCalld5a36322009-11-03 19:26:08 +00001625 }
1626 }
1627
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +00001628 if (ParseAsmAttributesAfterDeclarator(D))
Richard Smith02e85f32011-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 Gregor2eb1c572013-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 Smith02e85f32011-04-14 22:09:26 +00001648 Decl *ThisDecl = Actions.ActOnDeclarator(getCurScope(), D);
Douglas Gregor2eb1c572013-04-08 20:52:24 +00001649 if (IsForRangeLoop)
1650 Actions.ActOnCXXForRangeDecl(ThisDecl);
Richard Smith02e85f32011-04-14 22:09:26 +00001651 Actions.FinalizeDeclaration(ThisDecl);
John McCallcf6e0c82012-01-27 01:29:43 +00001652 D.complete(ThisDecl);
Rafael Espindolaab417692013-07-09 12:05:01 +00001653 return Actions.FinalizeDeclaratorGroup(getCurScope(), DS, ThisDecl);
Richard Smith02e85f32011-04-14 22:09:26 +00001654 }
1655
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001656 SmallVector<Decl *, 8> DeclsInGroup;
Richard Smith02e85f32011-04-14 22:09:26 +00001657 Decl *FirstDecl = ParseDeclarationAfterDeclaratorAndAttributes(D);
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +00001658 if (LateParsedAttrs.size() > 0)
1659 ParseLexedAttributeList(LateParsedAttrs, FirstDecl, true, false);
John McCall28a6aea2009-11-04 02:18:39 +00001660 D.complete(FirstDecl);
John McCall48871652010-08-21 09:40:31 +00001661 if (FirstDecl)
John McCalld5a36322009-11-03 19:26:08 +00001662 DeclsInGroup.push_back(FirstDecl);
1663
Richard Smith09f76ee2011-10-19 21:33:05 +00001664 bool ExpectSemi = Context != Declarator::ForContext;
Fariborz Jahanian577574a2012-07-02 23:37:09 +00001665
John McCalld5a36322009-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 Smith09f76ee2011-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 McCalld5a36322009-11-03 19:26:08 +00001680
1681 // Parse the next declarator.
1682 D.clear();
Richard Smith8d06f422012-01-12 23:53:29 +00001683 D.setCommaLoc(CommaLoc);
John McCalld5a36322009-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 McCall53fa7142010-12-24 02:08:15 +00001692 MaybeParseGNUAttributes(D);
John McCalld5a36322009-11-03 19:26:08 +00001693
1694 ParseDeclarator(D);
Fariborz Jahanian372030b2012-01-13 00:14:12 +00001695 if (!D.isInvalidType()) {
1696 Decl *ThisDecl = ParseDeclarationAfterDeclarator(D);
1697 D.complete(ThisDecl);
1698 if (ThisDecl)
Chad Rosierc1183952012-06-26 22:30:43 +00001699 DeclsInGroup.push_back(ThisDecl);
Fariborz Jahanian372030b2012-01-13 00:14:12 +00001700 }
John McCalld5a36322009-11-03 19:26:08 +00001701 }
1702
1703 if (DeclEnd)
1704 *DeclEnd = Tok.getLocation();
1705
Richard Smith09f76ee2011-10-19 21:33:05 +00001706 if (ExpectSemi &&
Chris Lattner02f1b612012-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 Lattner13901342010-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 McCalld5a36322009-11-03 19:26:08 +00001718 }
1719
Rafael Espindolaab417692013-07-09 12:05:01 +00001720 return Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup);
Chris Lattner53361ac2006-08-10 05:19:57 +00001721}
1722
Richard Smith02e85f32011-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 Hutchins3fc6e4a2012-02-16 16:50:43 +00001725bool Parser::ParseAsmAttributesAfterDeclarator(Declarator &D) {
Richard Smith02e85f32011-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 Gregor23996282009-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.
Chris Lattnerf0f3baa2006-08-14 00:15:20 +00001747///
Chris Lattnerf0f3baa2006-08-14 00:15:20 +00001748/// init-declarator: [C99 6.7]
1749/// declarator
1750/// declarator '=' initializer
Chris Lattner6d7e6342006-08-15 03:41:14 +00001751/// [GNU] declarator simple-asm-expr[opt] attributes[opt]
1752/// [GNU] declarator simple-asm-expr[opt] attributes[opt] '=' initializer
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00001753/// [C++] declarator initializer[opt]
1754///
1755/// [C++] initializer:
1756/// [C++] '=' initializer-clause
1757/// [C++] '(' expression-list ')'
Sebastian Redlf769df52009-03-24 22:27:57 +00001758/// [C++0x] '=' 'default' [TODO]
1759/// [C++0x] '=' 'delete'
Sebastian Redl3da34892011-06-05 12:23:16 +00001760/// [C++0x] braced-init-list
Sebastian Redlf769df52009-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.
Chris Lattnerf0f3baa2006-08-14 00:15:20 +00001764///
John McCall48871652010-08-21 09:40:31 +00001765Decl *Parser::ParseDeclarationAfterDeclarator(Declarator &D,
Douglas Gregorb52fabb2009-06-23 23:11:28 +00001766 const ParsedTemplateInfo &TemplateInfo) {
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +00001767 if (ParseAsmAttributesAfterDeclarator(D))
Richard Smith02e85f32011-04-14 22:09:26 +00001768 return 0;
Mike Stump11289f42009-09-09 15:08:12 +00001769
Richard Smith02e85f32011-04-14 22:09:26 +00001770 return ParseDeclarationAfterDeclaratorAndAttributes(D, TemplateInfo);
1771}
Mike Stump11289f42009-09-09 15:08:12 +00001772
Richard Smith02e85f32011-04-14 22:09:26 +00001773Decl *Parser::ParseDeclarationAfterDeclaratorAndAttributes(Declarator &D,
1774 const ParsedTemplateInfo &TemplateInfo) {
Douglas Gregor23996282009-05-12 21:31:51 +00001775 // Inform the current actions module that we just parsed this declarator.
John McCall48871652010-08-21 09:40:31 +00001776 Decl *ThisDecl = 0;
Douglas Gregor450f00842009-09-25 18:43:00 +00001777 switch (TemplateInfo.Kind) {
1778 case ParsedTemplateInfo::NonTemplate:
Douglas Gregor0be31a22010-07-02 17:43:08 +00001779 ThisDecl = Actions.ActOnDeclarator(getCurScope(), D);
Douglas Gregor450f00842009-09-25 18:43:00 +00001780 break;
Chad Rosierc1183952012-06-26 22:30:43 +00001781
Douglas Gregor450f00842009-09-25 18:43:00 +00001782 case ParsedTemplateInfo::Template:
Larisse Voufo39a1e502013-08-06 01:03:05 +00001783 case ParsedTemplateInfo::ExplicitSpecialization: {
Douglas Gregor0be31a22010-07-02 17:43:08 +00001784 ThisDecl = Actions.ActOnTemplateDeclarator(getCurScope(),
Benjamin Kramercc4c49d2012-08-23 23:38:35 +00001785 *TemplateInfo.TemplateParams,
Douglas Gregor450f00842009-09-25 18:43:00 +00001786 D);
Larisse Voufo833b05a2013-08-06 07:33:00 +00001787 if (VarTemplateDecl *VT = dyn_cast_or_null<VarTemplateDecl>(ThisDecl))
Larisse Voufo39a1e502013-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 Gregor450f00842009-09-25 18:43:00 +00001830 break;
1831 }
1832 }
Mike Stump11289f42009-09-09 15:08:12 +00001833
Richard Smith74aeef52013-04-26 16:15:35 +00001834 bool TypeContainsAuto = D.getDeclSpec().containsPlaceholderType();
Richard Smith30482bc2011-02-20 03:19:35 +00001835
Douglas Gregor23996282009-05-12 21:31:51 +00001836 // Parse declarator '=' initializer.
Richard Trieuc64d3232012-01-18 22:54:52 +00001837 // If a '==' or '+=' is found, suggest a fixit to '='.
Richard Trieu4972a6d2012-01-19 22:01:51 +00001838 if (isTokenEqualOrEqualTypo()) {
Douglas Gregor23996282009-05-12 21:31:51 +00001839 ConsumeToken();
Larisse Voufo39a1e502013-08-06 01:03:05 +00001840
Anders Carlsson991285e2010-09-24 21:25:25 +00001841 if (Tok.is(tok::kw_delete)) {
Alexis Hunt5a7fa252011-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);
Alexis Hunt5dafebc2011-05-06 01:42:00 +00001847 } else if (Tok.is(tok::kw_default)) {
Alexis Hunt5a7fa252011-05-12 06:15:49 +00001848 if (D.isFunctionDeclarator())
Sebastian Redl46afb552012-02-11 23:51:21 +00001849 Diag(ConsumeToken(), diag::err_default_delete_in_multiple_declaration)
1850 << 0 /* default */;
Alexis Hunt5a7fa252011-05-12 06:15:49 +00001851 else
1852 Diag(ConsumeToken(), diag::err_default_special_members);
Douglas Gregor23996282009-05-12 21:31:51 +00001853 } else {
David Blaikiebbafb8a2012-03-11 07:00:24 +00001854 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
John McCall1f4ee7b2009-12-19 09:28:58 +00001855 EnterScope(0);
Douglas Gregor0be31a22010-07-02 17:43:08 +00001856 Actions.ActOnCXXEnterDeclInitializer(getCurScope(), ThisDecl);
John McCall1f4ee7b2009-12-19 09:28:58 +00001857 }
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00001858
Douglas Gregor7aa6b222010-05-30 01:49:25 +00001859 if (Tok.is(tok::code_completion)) {
Douglas Gregor0be31a22010-07-02 17:43:08 +00001860 Actions.CodeCompleteInitializer(getCurScope(), ThisDecl);
Peter Collingbourne6b4fdc22012-07-27 12:56:09 +00001861 Actions.FinalizeDeclaration(ThisDecl);
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +00001862 cutOffParsing();
1863 return 0;
Douglas Gregor7aa6b222010-05-30 01:49:25 +00001864 }
Chad Rosierc1183952012-06-26 22:30:43 +00001865
John McCalldadc5752010-08-24 06:29:42 +00001866 ExprResult Init(ParseInitializer());
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00001867
David Blaikiebbafb8a2012-03-11 07:00:24 +00001868 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
Douglas Gregor0be31a22010-07-02 17:43:08 +00001869 Actions.ActOnCXXExitDeclInitializer(getCurScope(), ThisDecl);
John McCall1f4ee7b2009-12-19 09:28:58 +00001870 ExitScope();
1871 }
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00001872
Douglas Gregor23996282009-05-12 21:31:51 +00001873 if (Init.isInvalid()) {
Douglas Gregor604c3022010-03-01 18:27:54 +00001874 SkipUntil(tok::comma, true, true);
1875 Actions.ActOnInitializerError(ThisDecl);
1876 } else
Richard Smith30482bc2011-02-20 03:19:35 +00001877 Actions.AddInitializerToDecl(ThisDecl, Init.take(),
1878 /*DirectInit=*/false, TypeContainsAuto);
Douglas Gregor23996282009-05-12 21:31:51 +00001879 }
1880 } else if (Tok.is(tok::l_paren)) {
1881 // Parse C++ direct initializer: '(' expression-list ')'
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001882 BalancedDelimiterTracker T(*this, tok::l_paren);
1883 T.consumeOpen();
1884
Benjamin Kramerf0623432012-08-23 22:51:59 +00001885 ExprVector Exprs;
Douglas Gregor23996282009-05-12 21:31:51 +00001886 CommaLocsTy CommaLocs;
1887
David Blaikiebbafb8a2012-03-11 07:00:24 +00001888 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
Douglas Gregor613bf102009-12-22 17:47:17 +00001889 EnterScope(0);
Douglas Gregor0be31a22010-07-02 17:43:08 +00001890 Actions.ActOnCXXEnterDeclInitializer(getCurScope(), ThisDecl);
Douglas Gregor613bf102009-12-22 17:47:17 +00001891 }
1892
Douglas Gregor23996282009-05-12 21:31:51 +00001893 if (ParseExpressionList(Exprs, CommaLocs)) {
David Blaikieeae04112012-10-10 23:15:05 +00001894 Actions.ActOnInitializerError(ThisDecl);
Douglas Gregor23996282009-05-12 21:31:51 +00001895 SkipUntil(tok::r_paren);
Douglas Gregor613bf102009-12-22 17:47:17 +00001896
David Blaikiebbafb8a2012-03-11 07:00:24 +00001897 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
Douglas Gregor0be31a22010-07-02 17:43:08 +00001898 Actions.ActOnCXXExitDeclInitializer(getCurScope(), ThisDecl);
Douglas Gregor613bf102009-12-22 17:47:17 +00001899 ExitScope();
1900 }
Douglas Gregor23996282009-05-12 21:31:51 +00001901 } else {
1902 // Match the ')'.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001903 T.consumeClose();
Douglas Gregor23996282009-05-12 21:31:51 +00001904
1905 assert(!Exprs.empty() && Exprs.size()-1 == CommaLocs.size() &&
1906 "Unexpected number of commas!");
Douglas Gregor613bf102009-12-22 17:47:17 +00001907
David Blaikiebbafb8a2012-03-11 07:00:24 +00001908 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
Douglas Gregor0be31a22010-07-02 17:43:08 +00001909 Actions.ActOnCXXExitDeclInitializer(getCurScope(), ThisDecl);
Douglas Gregor613bf102009-12-22 17:47:17 +00001910 ExitScope();
1911 }
1912
Sebastian Redla9351792012-02-11 23:51:47 +00001913 ExprResult Initializer = Actions.ActOnParenListExpr(T.getOpenLocation(),
1914 T.getCloseLocation(),
Benjamin Kramer62b95d82012-08-23 21:35:17 +00001915 Exprs);
Sebastian Redla9351792012-02-11 23:51:47 +00001916 Actions.AddInitializerToDecl(ThisDecl, Initializer.take(),
1917 /*DirectInit=*/true, TypeContainsAuto);
Douglas Gregor23996282009-05-12 21:31:51 +00001918 }
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001919 } else if (getLangOpts().CPlusPlus11 && Tok.is(tok::l_brace) &&
Fariborz Jahanian8be1ecd2012-07-03 23:22:13 +00001920 (!CurParsedObjCImpl || !D.isFunctionDeclarator())) {
Sebastian Redl3da34892011-06-05 12:23:16 +00001921 // Parse C++0x braced-init-list.
Richard Smith5d164bc2011-10-15 05:09:34 +00001922 Diag(Tok, diag::warn_cxx98_compat_generalized_initializer_lists);
1923
Sebastian Redl3da34892011-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 Gregor23996282009-05-12 21:31:51 +00001942 } else {
Richard Smith30482bc2011-02-20 03:19:35 +00001943 Actions.ActOnUninitializedDecl(ThisDecl, TypeContainsAuto);
Douglas Gregor23996282009-05-12 21:31:51 +00001944 }
1945
Richard Smithb2bc2e62011-02-21 20:05:19 +00001946 Actions.FinalizeDeclaration(ThisDecl);
1947
Douglas Gregor23996282009-05-12 21:31:51 +00001948 return ThisDecl;
1949}
1950
Chris Lattner1890ac82006-08-13 01:16:23 +00001951/// ParseSpecifierQualifierList
1952/// specifier-qualifier-list:
1953/// type-specifier specifier-qualifier-list[opt]
1954/// type-qualifier specifier-qualifier-list[opt]
Chris Lattnere37e2332006-08-15 04:50:22 +00001955/// [GNU] attributes specifier-qualifier-list[opt]
Chris Lattner1890ac82006-08-13 01:16:23 +00001956///
Richard Smithc5b05522012-03-12 07:56:15 +00001957void Parser::ParseSpecifierQualifierList(DeclSpec &DS, AccessSpecifier AS,
1958 DeclSpecContext DSC) {
Chris Lattner1890ac82006-08-13 01:16:23 +00001959 /// specifier-qualifier-list is a subset of declaration-specifiers. Just
1960 /// parse declaration-specifiers and complain about extra stuff.
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00001961 /// TODO: diagnose attribute-specifiers and alignment-specifiers.
Richard Smithc5b05522012-03-12 07:56:15 +00001962 ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS, DSC);
Mike Stump11289f42009-09-09 15:08:12 +00001963
Chris Lattner1890ac82006-08-13 01:16:23 +00001964 // Validate declspec for type-name.
1965 unsigned Specs = DS.getParsedSpecifiers();
Richard Smith2f07ad52012-05-09 20:55:26 +00001966 if ((DSC == DSC_type_specifier || DSC == DSC_trailing) &&
1967 !DS.hasTypeSpecifier()) {
Richard Smithc5b05522012-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()) {
Chris Lattner1890ac82006-08-13 01:16:23 +00001972 Diag(Tok, diag::err_typename_requires_specqual);
Richard Smithc5b05522012-03-12 07:56:15 +00001973 if (!DS.hasTypeSpecifier())
1974 DS.SetTypeSpecError();
1975 }
Mike Stump11289f42009-09-09 15:08:12 +00001976
Chris Lattner1b22eed2006-11-28 05:12:07 +00001977 // Issue diagnostic and remove storage class if present.
Chris Lattner1890ac82006-08-13 01:16:23 +00001978 if (Specs & DeclSpec::PQ_StorageClassSpecifier) {
Chris Lattner1b22eed2006-11-28 05:12:07 +00001979 if (DS.getStorageClassSpecLoc().isValid())
1980 Diag(DS.getStorageClassSpecLoc(),diag::err_typename_invalid_storageclass);
1981 else
Richard Smithb4a9e862013-04-12 22:46:28 +00001982 Diag(DS.getThreadStorageClassSpecLoc(),
1983 diag::err_typename_invalid_storageclass);
Chris Lattnera925dc62006-11-28 04:33:46 +00001984 DS.ClearStorageClassSpecs();
Chris Lattner1890ac82006-08-13 01:16:23 +00001985 }
Mike Stump11289f42009-09-09 15:08:12 +00001986
Chris Lattner1b22eed2006-11-28 05:12:07 +00001987 // Issue diagnostic and remove function specfier if present.
Chris Lattner1890ac82006-08-13 01:16:23 +00001988 if (Specs & DeclSpec::PQ_FunctionSpecifier) {
Douglas Gregor61956c42008-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);
Chris Lattnera925dc62006-11-28 04:33:46 +00001995 DS.ClearFunctionSpecs();
Chris Lattner1890ac82006-08-13 01:16:23 +00001996 }
Richard Smithc5b05522012-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 }
Chris Lattner1890ac82006-08-13 01:16:23 +00002003}
Chris Lattner53361ac2006-08-10 05:19:57 +00002004
Chris Lattner6cc055a2009-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 Lattnera723ba92009-04-14 21:16:09 +00002016/// int x : 4; // struct-declarator
Chris Lattner2b988c12009-04-12 22:29:43 +00002017/// int x { 5}; // C++'0x unified initializers
Chris Lattner6cc055a2009-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 Lattnera723ba92009-04-14 21:16:09 +00002026 T.is(tok::kw_asm) || T.is(tok::l_brace) || T.is(tok::colon);
Chris Lattner6cc055a2009-04-12 20:42:31 +00002027}
2028
Chris Lattner20a0c612009-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 Lattnerb4a8fe82009-04-14 22:17:06 +00002039bool Parser::ParseImplicitInt(DeclSpec &DS, CXXScopeSpec *SS,
Douglas Gregor1b57ff32009-05-12 23:25:50 +00002040 const ParsedTemplateInfo &TemplateInfo,
Michael Han9407e502012-11-26 22:54:45 +00002041 AccessSpecifier AS, DeclSpecContext DSC,
2042 ParsedAttributesWithRange &Attrs) {
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00002043 assert(Tok.is(tok::identifier) && "should have identifier");
Mike Stump11289f42009-09-09 15:08:12 +00002044
Chris Lattner20a0c612009-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 Stump11289f42009-09-09 15:08:12 +00002059
Chris Lattner20a0c612009-04-14 21:34:55 +00002060 // Since we know that this either implicit int (which is rare) or an
Richard Smitha952ebb2012-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 Smith3b870382013-04-30 22:43:51 +00002064 // implicit int as an extension in C99 and C11.
Richard Smith2f07ad52012-05-09 20:55:26 +00002065 if (DSC != DSC_type_specifier && DSC != DSC_trailing &&
Richard Smith3b870382013-04-30 22:43:51 +00002066 !getLangOpts().CPlusPlus &&
Richard Smithc5b05522012-03-12 07:56:15 +00002067 isValidAfterIdentifierInDeclarator(NextToken())) {
Chris Lattner20a0c612009-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 Stump11289f42009-09-09 15:08:12 +00002073
Richard Smitha952ebb2012-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 Smithfb8b7b92013-10-15 00:00:26 +00002078 if (SS)
2079 AnnotateScopeToken(*SS, /*IsNewAnnotation*/false);
Richard Smitha952ebb2012-05-15 21:01:51 +00002080 return false;
2081 }
2082
Chris Lattner20a0c612009-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 Lattnerb4a8fe82009-04-14 22:17:06 +00002087 //
2088 // C++ doesn't need this, and isTagName doesn't take SS.
2089 if (SS == 0) {
Argyrios Kyrtzidis1f329402011-04-21 17:29:47 +00002090 const char *TagName = 0, *FixitTagName = 0;
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00002091 tok::TokenKind TagKind = tok::unknown;
Mike Stump11289f42009-09-09 15:08:12 +00002092
Douglas Gregor0be31a22010-07-02 17:43:08 +00002093 switch (Actions.isTagName(*Tok.getIdentifierInfo(), getCurScope())) {
Chris Lattner20a0c612009-04-14 21:34:55 +00002094 default: break;
Argyrios Kyrtzidis1f329402011-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 Matosdc86f942012-08-31 18:45:21 +00002101 case DeclSpec::TST_interface:
2102 TagName="__interface"; FixitTagName = "__interface ";
2103 TagKind=tok::kw___interface;break;
Argyrios Kyrtzidis1f329402011-04-21 17:29:47 +00002104 case DeclSpec::TST_class:
2105 TagName="class" ; FixitTagName = "class " ;TagKind=tok::kw_class ;break;
Chris Lattner20a0c612009-04-14 21:34:55 +00002106 }
Mike Stump11289f42009-09-09 15:08:12 +00002107
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00002108 if (TagName) {
Kaelyn Uhrain031643e2012-04-26 23:36:17 +00002109 IdentifierInfo *TokenName = Tok.getIdentifierInfo();
2110 LookupResult R(Actions, TokenName, SourceLocation(),
2111 Sema::LookupOrdinaryName);
2112
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00002113 Diag(Loc, diag::err_use_of_tag_name_without_tag)
Kaelyn Uhrain031643e2012-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 Uhrain3fe3f852012-04-27 18:26:49 +00002120 Diag((*I)->getLocation(), diag::note_decl_hiding_tag_type)
Kaelyn Uhrain031643e2012-04-26 23:36:17 +00002121 << TokenName << TagName;
2122 }
Mike Stump11289f42009-09-09 15:08:12 +00002123
Chris Lattnerb4a8fe82009-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 Smithc5b05522012-03-12 07:56:15 +00002126 ParseEnumSpecifier(Loc, DS, TemplateInfo, AS, DSC_normal);
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00002127 else
Richard Smithc5b05522012-03-12 07:56:15 +00002128 ParseClassSpecifier(TagKind, Loc, DS, TemplateInfo, AS,
Michael Han9407e502012-11-26 22:54:45 +00002129 /*EnteringContext*/ false, DSC_normal, Attrs);
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00002130 return true;
2131 }
Chris Lattner20a0c612009-04-14 21:34:55 +00002132 }
Mike Stump11289f42009-09-09 15:08:12 +00002133
Richard Smithfe904f02012-05-15 21:29:55 +00002134 // Determine whether this identifier could plausibly be the name of something
Richard Smithedd124e2012-05-15 21:42:17 +00002135 // being declared (with a missing type).
Richard Smithfe904f02012-05-15 21:29:55 +00002136 if (DSC != DSC_type_specifier && DSC != DSC_trailing &&
2137 (!SS || DSC == DSC_top_level || DSC == DSC_class)) {
Richard Smitha952ebb2012-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 Smitha952ebb2012-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 Smithfb8b7b92013-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 Smitha952ebb2012-05-15 21:01:51 +00002172 }
Richard Smithfb8b7b92013-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 Smitha952ebb2012-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 Rosierc1183952012-06-26 22:30:43 +00002193 // This is almost certainly an invalid type name. Let the action emit a
Douglas Gregor15e56022009-10-13 23:27:22 +00002194 // diagnostic and attempt to recover.
John McCallba7bf592010-08-24 05:47:05 +00002195 ParsedType T;
Kaelyn Uhrainb5b17fe2012-06-15 23:45:58 +00002196 IdentifierInfo *II = Tok.getIdentifierInfo();
2197 if (Actions.DiagnoseUnknownTypeName(II, Loc, getCurScope(), SS, T)) {
Douglas Gregor15e56022009-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 McCallba7bf592010-08-24 05:47:05 +00002205 DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec, DiagID, T);
Douglas Gregor15e56022009-10-13 23:27:22 +00002206 DS.SetRangeEnd(Tok.getLocation());
2207 ConsumeToken();
Kaelyn Uhrainb5b17fe2012-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 Gregor15e56022009-10-13 23:27:22 +00002213 // There may be other declaration specifiers after this.
2214 return true;
2215 }
Chad Rosierc1183952012-06-26 22:30:43 +00002216
Douglas Gregor15e56022009-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 Stump11289f42009-09-09 15:08:12 +00002224
Douglas Gregor15e56022009-10-13 23:27:22 +00002225 // Mark this as an error.
Richard Smithc5b05522012-03-12 07:56:15 +00002226 DS.SetTypeSpecError();
Chris Lattner20a0c612009-04-14 21:34:55 +00002227 DS.SetRangeEnd(Tok.getLocation());
2228 ConsumeToken();
Mike Stump11289f42009-09-09 15:08:12 +00002229
Chris Lattner20a0c612009-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 Gregor9de54ea2010-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 Rosierc1183952012-06-26 22:30:43 +00002241Parser::DeclSpecContext
Douglas Gregor9de54ea2010-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 Smith62dad822012-03-15 01:02:11 +00002247 if (Context == Declarator::TrailingReturnContext)
2248 return DSC_trailing;
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002249 return DSC_normal;
2250}
2251
Peter Collingbourne2f3cf4b2011-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 Kramere56f3932011-12-23 17:00:35 +00002257/// [C11] type-id
2258/// [C11] constant-expression
Peter Collingbourne7d33cd32011-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 Collingbourne2f3cf4b2011-09-29 18:04:28 +00002264 if (isTypeIdInParens()) {
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002265 SourceLocation TypeLoc = Tok.getLocation();
2266 ParsedType Ty = ParseTypeName().get();
2267 SourceRange TypeRange(Start, Tok.getLocation());
Peter Collingbourne7d33cd32011-10-23 20:07:52 +00002268 ER = Actions.ActOnUnaryExprOrTypeTraitExpr(TypeLoc, UETT_AlignOf, true,
2269 Ty.getAsOpaquePtr(), TypeRange);
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002270 } else
Peter Collingbourne7d33cd32011-10-23 20:07:52 +00002271 ER = ParseConstantExpression();
2272
Richard Smith2bf7fdb2013-01-02 11:42:31 +00002273 if (getLangOpts().CPlusPlus11 && Tok.is(tok::ellipsis))
Peter Collingbourneccbcce02011-10-24 17:56:00 +00002274 EllipsisLoc = ConsumeToken();
Peter Collingbourne7d33cd32011-10-23 20:07:52 +00002275
2276 return ER;
Peter Collingbourne2f3cf4b2011-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 Kramere56f3932011-12-23 17:00:35 +00002283/// [C11] '_Alignas' '(' type-id ')'
2284/// [C11] '_Alignas' '(' constant-expression ')'
Richard Smithd11c7a12013-01-29 01:48:07 +00002285/// [C++11] 'alignas' '(' type-id ...[opt] ')'
2286/// [C++11] 'alignas' '(' assignment-expression ...[opt] ')'
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002287void Parser::ParseAlignmentSpecifier(ParsedAttributes &Attrs,
Richard Smith44c247f2013-02-22 08:32:16 +00002288 SourceLocation *EndLoc) {
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002289 assert((Tok.is(tok::kw_alignas) || Tok.is(tok::kw__Alignas)) &&
2290 "Not an alignment-specifier!");
2291
Richard Smithd11c7a12013-01-29 01:48:07 +00002292 IdentifierInfo *KWName = Tok.getIdentifierInfo();
2293 SourceLocation KWLoc = ConsumeToken();
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002294
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002295 BalancedDelimiterTracker T(*this, tok::l_paren);
2296 if (T.expectAndConsume(diag::err_expected_lparen))
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002297 return;
2298
Peter Collingbourne7d33cd32011-10-23 20:07:52 +00002299 SourceLocation EllipsisLoc;
2300 ExprResult ArgExpr = ParseAlignArgument(T.getOpenLocation(), EllipsisLoc);
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002301 if (ArgExpr.isInvalid()) {
2302 SkipUntil(tok::r_paren);
2303 return;
2304 }
2305
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002306 T.consumeClose();
Richard Smith44c247f2013-02-22 08:32:16 +00002307 if (EndLoc)
2308 *EndLoc = T.getCloseLocation();
Peter Collingbourne7d33cd32011-10-23 20:07:52 +00002309
Aaron Ballman00e99962013-08-31 01:11:41 +00002310 ArgsVector ArgExprs;
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002311 ArgExprs.push_back(ArgExpr.release());
Aaron Ballman00e99962013-08-31 01:11:41 +00002312 Attrs.addNew(KWName, KWLoc, 0, KWLoc, ArgExprs.data(), 1,
2313 AttributeList::AS_Keyword, EllipsisLoc);
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002314}
2315
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00002316/// ParseDeclarationSpecifiers
2317/// declaration-specifiers: [C99 6.7]
Chris Lattner3b561a32006-08-13 00:12:11 +00002318/// storage-class-specifier declaration-specifiers[opt]
2319/// type-specifier declaration-specifiers[opt]
Chris Lattner3b561a32006-08-13 00:12:11 +00002320/// [C99] function-specifier declaration-specifiers[opt]
Benjamin Kramere56f3932011-12-23 17:00:35 +00002321/// [C11] alignment-specifier declaration-specifiers[opt]
Chris Lattnere37e2332006-08-15 04:50:22 +00002322/// [GNU] attributes declaration-specifiers[opt]
Douglas Gregor26701a42011-09-09 02:06:17 +00002323/// [Clang] '__module_private__' declaration-specifiers[opt]
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00002324///
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002325/// storage-class-specifier: [C99 6.7.1]
Chris Lattnerda48a8e2006-08-04 05:25:55 +00002326/// 'typedef'
2327/// 'extern'
2328/// 'static'
2329/// 'auto'
2330/// 'register'
Sebastian Redlccdfaba2008-11-14 23:42:31 +00002331/// [C++] 'mutable'
Richard Smithb4a9e862013-04-12 22:46:28 +00002332/// [C++11] 'thread_local'
2333/// [C11] '_Thread_local'
Chris Lattnerda48a8e2006-08-04 05:25:55 +00002334/// [GNU] '__thread'
Chris Lattnerb9093cd2006-08-04 04:39:53 +00002335/// function-specifier: [C99 6.7.4]
Chris Lattner3b561a32006-08-13 00:12:11 +00002336/// [C99] 'inline'
Douglas Gregor61956c42008-10-31 09:07:45 +00002337/// [C++] 'virtual'
2338/// [C++] 'explicit'
Peter Collingbourne7ce13fc2011-02-14 01:42:53 +00002339/// [OpenCL] '__kernel'
Anders Carlssoncd8db412009-05-06 04:46:28 +00002340/// 'friend': [C++ dcl.friend]
Sebastian Redl39c2a8b2009-11-05 15:47:02 +00002341/// 'constexpr': [C++0x dcl.constexpr]
Anders Carlssoncd8db412009-05-06 04:46:28 +00002342
Chris Lattnerb9093cd2006-08-04 04:39:53 +00002343///
Douglas Gregorb9bd8a92008-12-24 02:52:09 +00002344void Parser::ParseDeclarationSpecifiers(DeclSpec &DS,
Douglas Gregor1b57ff32009-05-12 23:25:50 +00002345 const ParsedTemplateInfo &TemplateInfo,
John McCall07e91c02009-08-06 02:15:43 +00002346 AccessSpecifier AS,
DeLesley Hutchinsbd2ee132012-03-02 22:12:59 +00002347 DeclSpecContext DSContext,
2348 LateParsedAttrList *LateAttrs) {
Douglas Gregor0e7dde52011-04-24 05:37:28 +00002349 if (DS.getSourceRange().isInvalid()) {
2350 DS.SetRangeStart(Tok.getLocation());
2351 DS.SetRangeEnd(Tok.getLocation());
2352 }
Chad Rosierc1183952012-06-26 22:30:43 +00002353
Douglas Gregordf593fb2011-11-07 17:33:42 +00002354 bool EnteringContext = (DSContext == DSC_class || DSContext == DSC_top_level);
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00002355 bool AttrsLastTime = false;
2356 ParsedAttributesWithRange attrs(AttrFactory);
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00002357 while (1) {
John McCall49bfce42009-08-03 20:12:06 +00002358 bool isInvalid = false;
Chris Lattnerb9093cd2006-08-04 04:39:53 +00002359 const char *PrevSpec = 0;
John McCall49bfce42009-08-03 20:12:06 +00002360 unsigned DiagID = 0;
2361
Chris Lattner4d8f8732006-11-28 05:05:08 +00002362 SourceLocation Loc = Tok.getLocation();
Douglas Gregor450c75a2008-11-07 15:42:26 +00002363
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00002364 switch (Tok.getKind()) {
Mike Stump11289f42009-09-09 15:08:12 +00002365 default:
Chris Lattner0974b232008-07-26 00:20:22 +00002366 DoneWithDeclSpec:
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00002367 if (!AttrsLastTime)
2368 ProhibitAttributes(attrs);
Michael Han64536a62012-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
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00002375 DS.takeAttributesFrom(attrs);
Michael Han64536a62012-11-06 19:34:54 +00002376 }
Peter Collingbourne70188b32011-09-29 18:03:57 +00002377
Chris Lattnerb9093cd2006-08-04 04:39:53 +00002378 // If this is not a declaration specifier token, we're done reading decl
2379 // specifiers. First verify that DeclSpec's are consistent.
Douglas Gregore3e01a22009-04-01 22:41:11 +00002380 DS.Finish(Diags, PP);
Chris Lattnerb9093cd2006-08-04 04:39:53 +00002381 return;
Mike Stump11289f42009-09-09 15:08:12 +00002382
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00002383 case tok::l_square:
2384 case tok::kw_alignas:
Richard Smith4cabd042013-02-22 09:15:49 +00002385 if (!getLangOpts().CPlusPlus11 || !isCXX11AttributeSpecifier())
Alexis Hunt6aa9bee2012-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 Rosierc1183952012-06-26 22:30:43 +00002397 continue;
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00002398
Douglas Gregorc49f5b22010-08-23 18:23:48 +00002399 case tok::code_completion: {
John McCallfaf5fb42010-08-26 23:41:50 +00002400 Sema::ParserCompletionContext CCC = Sema::PCC_Namespace;
Douglas Gregorc49f5b22010-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 Rosierc1183952012-06-26 22:30:43 +00002409 = DSContext == DSC_top_level ||
Douglas Gregorc49f5b22010-08-23 18:23:48 +00002410 (DSContext == DSC_class && DS.isFriendSpecified());
2411
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00002412 Actions.CodeCompleteDeclSpec(getCurScope(), DS,
Chad Rosierc1183952012-06-26 22:30:43 +00002413 AllowNonIdentifiers,
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00002414 AllowNestedNameSpecifiers);
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +00002415 return cutOffParsing();
Chad Rosierc1183952012-06-26 22:30:43 +00002416 }
2417
Douglas Gregor80039242011-02-15 20:33:25 +00002418 if (getCurScope()->getFnParent() || getCurScope()->getBlockParent())
2419 CCC = Sema::PCC_LocalDeclarationSpecifiers;
2420 else if (TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate)
Chad Rosierc1183952012-06-26 22:30:43 +00002421 CCC = DSContext == DSC_class? Sema::PCC_MemberTemplate
John McCallfaf5fb42010-08-26 23:41:50 +00002422 : Sema::PCC_Template;
Douglas Gregorc49f5b22010-08-23 18:23:48 +00002423 else if (DSContext == DSC_class)
John McCallfaf5fb42010-08-26 23:41:50 +00002424 CCC = Sema::PCC_Class;
Argyrios Kyrtzidisb6c6a582012-02-07 16:50:53 +00002425 else if (CurParsedObjCImpl)
John McCallfaf5fb42010-08-26 23:41:50 +00002426 CCC = Sema::PCC_ObjCImplementation;
Chad Rosierc1183952012-06-26 22:30:43 +00002427
Douglas Gregorc49f5b22010-08-23 18:23:48 +00002428 Actions.CodeCompleteOrdinaryName(getCurScope(), CCC);
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +00002429 return cutOffParsing();
Douglas Gregorc49f5b22010-08-23 18:23:48 +00002430 }
2431
Chris Lattnerbd31aa32009-01-05 00:07:25 +00002432 case tok::coloncolon: // ::foo::bar
John McCall1f476a12010-02-26 08:45:28 +00002433 // C++ scope specifier. Annotate and loop, or bail out on error.
Eli Friedman2a1d9a92013-08-15 23:59:20 +00002434 if (TryAnnotateCXXScopeToken(EnteringContext)) {
John McCall1f476a12010-02-26 08:45:28 +00002435 if (!DS.hasTypeSpecifier())
2436 DS.SetTypeSpecError();
2437 goto DoneWithDeclSpec;
2438 }
John McCall8bc2a702010-03-01 18:20:46 +00002439 if (Tok.is(tok::coloncolon)) // ::new or ::delete
2440 goto DoneWithDeclSpec;
John McCall1f476a12010-02-26 08:45:28 +00002441 continue;
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00002442
2443 case tok::annot_cxxscope: {
Richard Smith3092a3b2012-05-09 18:56:43 +00002444 if (DS.hasTypeSpecifier() || DS.isTypeAltiVecVector())
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00002445 goto DoneWithDeclSpec;
2446
John McCall9dab4e62009-12-12 11:40:51 +00002447 CXXScopeSpec SS;
Douglas Gregor869ad452011-02-24 17:54:50 +00002448 Actions.RestoreNestedNameSpecifierAnnotation(Tok.getAnnotationValue(),
2449 Tok.getAnnotationRange(),
2450 SS);
John McCall9dab4e62009-12-12 11:40:51 +00002451
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00002452 // We are looking for a qualified typename.
Douglas Gregor167fa622009-03-25 15:40:00 +00002453 Token Next = NextToken();
Mike Stump11289f42009-09-09 15:08:12 +00002454 if (Next.is(tok::annot_template_id) &&
Douglas Gregor167fa622009-03-25 15:40:00 +00002455 static_cast<TemplateIdAnnotation *>(Next.getAnnotationValue())
Douglas Gregorb67535d2009-03-31 00:43:58 +00002456 ->Kind == TNK_Type_template) {
Douglas Gregor167fa622009-03-25 15:40:00 +00002457 // We have a qualified template-id, e.g., N::A<int>
Douglas Gregor9de54ea2010-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 Rosierc1183952012-06-26 22:30:43 +00002474 //
Douglas Gregor9de54ea2010-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 Rosierc1183952012-06-26 22:30:43 +00002477 // reinforced by the NAD status of core issue 635.
Argyrios Kyrtzidisc0c5dd22011-06-22 06:09:49 +00002478 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Next);
Dmitri Gribenkod1c91f12013-02-12 17:27:41 +00002479 if ((DSContext == DSC_top_level || DSContext == DSC_class) &&
John McCall84821e72010-04-13 06:39:49 +00002480 TemplateId->Name &&
Douglas Gregor0be31a22010-07-02 17:43:08 +00002481 Actions.isCurrentClassName(*TemplateId->Name, getCurScope(), &SS)) {
Douglas Gregor9de54ea2010-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 McCall9dab4e62009-12-12 11:40:51 +00002499 DS.getTypeSpecScope() = SS;
2500 ConsumeToken(); // The C++ scope.
Mike Stump11289f42009-09-09 15:08:12 +00002501 assert(Tok.is(tok::annot_template_id) &&
Douglas Gregor167fa622009-03-25 15:40:00 +00002502 "ParseOptionalCXXScopeSpecifier not working");
Douglas Gregore7c20652011-03-02 00:47:37 +00002503 AnnotateTemplateIdTokenAsType();
Douglas Gregor167fa622009-03-25 15:40:00 +00002504 continue;
2505 }
2506
Douglas Gregorc5790df2009-09-28 07:26:33 +00002507 if (Next.is(tok::annot_typename)) {
John McCall9dab4e62009-12-12 11:40:51 +00002508 DS.getTypeSpecScope() = SS;
2509 ConsumeToken(); // The C++ scope.
John McCallba7bf592010-08-24 05:47:05 +00002510 if (Tok.getAnnotationValue()) {
2511 ParsedType T = getTypeAnnotation(Tok);
Nico Weber77430342010-11-22 10:30:56 +00002512 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename,
Chad Rosierc1183952012-06-26 22:30:43 +00002513 Tok.getAnnotationEndLoc(),
John McCallba7bf592010-08-24 05:47:05 +00002514 PrevSpec, DiagID, T);
Richard Smithda837032012-09-14 18:27:01 +00002515 if (isInvalid)
2516 break;
John McCallba7bf592010-08-24 05:47:05 +00002517 }
Douglas Gregorc5790df2009-09-28 07:26:33 +00002518 else
2519 DS.SetTypeSpecError();
2520 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
2521 ConsumeToken(); // The typename
2522 }
2523
Douglas Gregor167fa622009-03-25 15:40:00 +00002524 if (Next.isNot(tok::identifier))
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00002525 goto DoneWithDeclSpec;
2526
Douglas Gregor9de54ea2010-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 Gribenkod1c91f12013-02-12 17:27:41 +00002529 if ((DSContext == DSC_top_level || DSContext == DSC_class) &&
Chad Rosierc1183952012-06-26 22:30:43 +00002530 Actions.isCurrentClassName(*Next.getIdentifierInfo(), getCurScope(),
Douglas Gregor9de54ea2010-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 Kyrtzidis32a03792008-11-08 16:45:02 +00002544
John McCallba7bf592010-08-24 05:47:05 +00002545 ParsedType TypeRep = Actions.getTypeName(*Next.getIdentifierInfo(),
2546 Next.getLocation(),
Douglas Gregor844cb502011-03-01 18:12:44 +00002547 getCurScope(), &SS,
2548 false, false, ParsedType(),
Abramo Bagnara4244b432012-01-27 08:46:19 +00002549 /*IsCtorOrDtorName=*/false,
Douglas Gregor844cb502011-03-01 18:12:44 +00002550 /*NonTrivialSourceInfo=*/true);
Douglas Gregor8bf42052009-02-09 18:46:07 +00002551
Chris Lattnerb4a8fe82009-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 Stump11289f42009-09-09 15:08:12 +00002555 // typename.
David Blaikie7d170102013-05-15 07:37:26 +00002556 if (!TypeRep) {
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00002557 ConsumeToken(); // Eat the scope spec so the identifier is current.
Michael Han9407e502012-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 Kyrtzidis32a03792008-11-08 16:45:02 +00002566 goto DoneWithDeclSpec;
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00002567 }
Mike Stump11289f42009-09-09 15:08:12 +00002568
John McCall9dab4e62009-12-12 11:40:51 +00002569 DS.getTypeSpecScope() = SS;
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00002570 ConsumeToken(); // The C++ scope.
2571
Douglas Gregor9817f4a2009-02-09 15:09:02 +00002572 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
John McCall49bfce42009-08-03 20:12:06 +00002573 DiagID, TypeRep);
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00002574 if (isInvalid)
2575 break;
Mike Stump11289f42009-09-09 15:08:12 +00002576
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00002577 DS.SetRangeEnd(Tok.getLocation());
2578 ConsumeToken(); // The typename.
2579
2580 continue;
2581 }
Mike Stump11289f42009-09-09 15:08:12 +00002582
Chris Lattnere387d9e2009-01-21 19:48:37 +00002583 case tok::annot_typename: {
John McCallba7bf592010-08-24 05:47:05 +00002584 if (Tok.getAnnotationValue()) {
2585 ParsedType T = getTypeAnnotation(Tok);
Nico Weber7f8bb362010-11-22 12:50:03 +00002586 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
John McCallba7bf592010-08-24 05:47:05 +00002587 DiagID, T);
2588 } else
Douglas Gregorfe3d7d02009-04-01 21:51:26 +00002589 DS.SetTypeSpecError();
Chad Rosierc1183952012-06-26 22:30:43 +00002590
Chris Lattner005fc1b2010-04-05 18:18:31 +00002591 if (isInvalid)
2592 break;
2593
Chris Lattnere387d9e2009-01-21 19:48:37 +00002594 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
2595 ConsumeToken(); // The typename
Mike Stump11289f42009-09-09 15:08:12 +00002596
Chris Lattnere387d9e2009-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 Rosierc1183952012-06-26 22:30:43 +00002599 // Objective-C interface.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002600 if (Tok.is(tok::less) && getLangOpts().ObjC1)
Douglas Gregor06e41ae2010-10-21 23:17:00 +00002601 ParseObjCProtocolQualifiers(DS);
Chad Rosierc1183952012-06-26 22:30:43 +00002602
Chris Lattnere387d9e2009-01-21 19:48:37 +00002603 continue;
2604 }
Mike Stump11289f42009-09-09 15:08:12 +00002605
Douglas Gregor06873092011-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 Rosierc1183952012-06-26 22:30:43 +00002623
Chris Lattner16fac4f2008-07-26 01:18:38 +00002624 // typedef-name
David Blaikie15a430a2011-12-04 05:04:18 +00002625 case tok::kw_decltype:
Chris Lattner16fac4f2008-07-26 01:18:38 +00002626 case tok::identifier: {
Chris Lattnerbd31aa32009-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 Blaikiebbafb8a2012-03-11 07:00:24 +00002629 if (getLangOpts().CPlusPlus) {
Eli Friedman2a1d9a92013-08-15 23:59:20 +00002630 if (TryAnnotateCXXScopeToken(EnteringContext)) {
John McCall1f476a12010-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 Stump11289f42009-09-09 15:08:12 +00002638
Chris Lattner16fac4f2008-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 Stump11289f42009-09-09 15:08:12 +00002644
John Thompson22334602010-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 Smith3092a3b2012-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 McCallba7bf592010-08-24 05:47:05 +00002654 ParsedType TypeRep =
2655 Actions.getTypeName(*Tok.getIdentifierInfo(),
2656 Tok.getLocation(), getCurScope());
Douglas Gregor8bf42052009-02-09 18:46:07 +00002657
Chris Lattner6cc055a2009-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 McCallba7bf592010-08-24 05:47:05 +00002660 if (!TypeRep) {
Michael Han9407e502012-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 Lattner16fac4f2008-07-26 01:18:38 +00002669 goto DoneWithDeclSpec;
Chris Lattner6cc055a2009-04-12 20:42:31 +00002670 }
Douglas Gregor8bf42052009-02-09 18:46:07 +00002671
Douglas Gregor9de54ea2010-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 Blaikiebbafb8a2012-03-11 07:00:24 +00002674 if (getLangOpts().CPlusPlus && DSContext == DSC_class &&
Douglas Gregor0be31a22010-07-02 17:43:08 +00002675 Actions.isCurrentClassName(*Tok.getIdentifierInfo(), getCurScope()) &&
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002676 isConstructorDeclarator())
Douglas Gregor61956c42008-10-31 09:07:45 +00002677 goto DoneWithDeclSpec;
2678
Douglas Gregor9817f4a2009-02-09 15:09:02 +00002679 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
John McCall49bfce42009-08-03 20:12:06 +00002680 DiagID, TypeRep);
Chris Lattner16fac4f2008-07-26 01:18:38 +00002681 if (isInvalid)
2682 break;
Mike Stump11289f42009-09-09 15:08:12 +00002683
Chris Lattner16fac4f2008-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 Rosierc1183952012-06-26 22:30:43 +00002689 // Objective-C interface.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002690 if (Tok.is(tok::less) && getLangOpts().ObjC1)
Douglas Gregor06e41ae2010-10-21 23:17:00 +00002691 ParseObjCProtocolQualifiers(DS);
Chad Rosierc1183952012-06-26 22:30:43 +00002692
Steve Naroffcd5e7822008-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 Lattner16fac4f2008-07-26 01:18:38 +00002696 }
Douglas Gregor7f741122009-02-25 19:37:18 +00002697
2698 // type-name
2699 case tok::annot_template_id: {
Argyrios Kyrtzidisc0c5dd22011-06-22 06:09:49 +00002700 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregorb67535d2009-03-31 00:43:58 +00002701 if (TemplateId->Kind != TNK_Type_template) {
Douglas Gregor7f741122009-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 Gregor9de54ea2010-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 Blaikiebbafb8a2012-03-11 07:00:24 +00002710 if (getLangOpts().CPlusPlus && DSContext == DSC_class &&
Douglas Gregor0be31a22010-07-02 17:43:08 +00002711 Actions.isCurrentClassName(*TemplateId->Name, getCurScope()) &&
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002712 isConstructorDeclarator())
2713 goto DoneWithDeclSpec;
2714
Douglas Gregor7f741122009-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 Gregorfe3d7d02009-04-01 21:51:26 +00002717 AnnotateTemplateIdTokenAsType();
Douglas Gregor7f741122009-02-25 19:37:18 +00002718 continue;
2719 }
2720
Chris Lattnere37e2332006-08-15 04:50:22 +00002721 // GNU attributes support.
2722 case tok::kw___attribute:
DeLesley Hutchinsbd2ee132012-03-02 22:12:59 +00002723 ParseGNUAttributes(DS.getAttributes(), 0, LateAttrs);
Chris Lattnerb95cca02006-10-17 03:01:08 +00002724 continue;
Steve Naroff3a9b7e02008-12-24 20:59:21 +00002725
2726 // Microsoft declspec support.
2727 case tok::kw___declspec:
John McCall53fa7142010-12-24 02:08:15 +00002728 ParseMicrosoftDeclSpec(DS.getAttributes());
Steve Naroff3a9b7e02008-12-24 20:59:21 +00002729 continue;
Mike Stump11289f42009-09-09 15:08:12 +00002730
Steve Naroff44ac7772008-12-25 14:16:32 +00002731 // Microsoft single token adornments.
Michael J. Spencerf97bd8c2012-06-18 07:00:48 +00002732 case tok::kw___forceinline: {
Chad Rosier92f0dcc2012-12-21 22:24:43 +00002733 isInvalid = DS.setFunctionSpecInline(Loc);
Michael J. Spencerf97bd8c2012-06-18 07:00:48 +00002734 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
Richard Smithda837032012-09-14 18:27:01 +00002735 SourceLocation AttrNameLoc = Tok.getLocation();
Alexis Hunta0e54d42012-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 Ballman00e99962013-08-31 01:11:41 +00002738 DS.getAttributes().addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0, 0,
2739 AttributeList::AS_GNU);
Richard Smithda837032012-09-14 18:27:01 +00002740 break;
Michael J. Spencerf97bd8c2012-06-18 07:00:48 +00002741 }
Eli Friedman53339e02009-06-08 23:27:34 +00002742
Aaron Ballman317a77f2013-05-22 23:25:32 +00002743 case tok::kw___sptr:
2744 case tok::kw___uptr:
Eli Friedman53339e02009-06-08 23:27:34 +00002745 case tok::kw___ptr64:
Francois Pichetf2fb4112011-08-25 00:36:46 +00002746 case tok::kw___ptr32:
Steve Narofff9c29d42008-12-25 14:41:26 +00002747 case tok::kw___w64:
Steve Naroff44ac7772008-12-25 14:16:32 +00002748 case tok::kw___cdecl:
2749 case tok::kw___stdcall:
2750 case tok::kw___fastcall:
Douglas Gregora941dca2010-05-18 16:57:00 +00002751 case tok::kw___thiscall:
Francois Pichet17ed0202011-08-18 09:59:55 +00002752 case tok::kw___unaligned:
John McCall53fa7142010-12-24 02:08:15 +00002753 ParseMicrosoftTypeAttributes(DS.getAttributes());
Eli Friedman53339e02009-06-08 23:27:34 +00002754 continue;
2755
Dawn Perchik335e16b2010-09-03 01:29:35 +00002756 // Borland single token adornments.
2757 case tok::kw___pascal:
John McCall53fa7142010-12-24 02:08:15 +00002758 ParseBorlandTypeAttributes(DS.getAttributes());
Dawn Perchik335e16b2010-09-03 01:29:35 +00002759 continue;
2760
Peter Collingbourne7ce13fc2011-02-14 01:42:53 +00002761 // OpenCL single token adornments.
2762 case tok::kw___kernel:
2763 ParseOpenCLAttributes(DS.getAttributes());
2764 continue;
2765
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002766 // storage-class-specifier
2767 case tok::kw_typedef:
Peter Collingbourne485b80f2011-10-06 03:01:00 +00002768 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_typedef, Loc,
2769 PrevSpec, DiagID);
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002770 break;
2771 case tok::kw_extern:
Richard Smithb4a9e862013-04-12 22:46:28 +00002772 if (DS.getThreadStorageClassSpec() == DeclSpec::TSCS___thread)
Chris Lattner6d29c102008-11-18 07:48:38 +00002773 Diag(Tok, diag::ext_thread_before) << "extern";
Peter Collingbourne485b80f2011-10-06 03:01:00 +00002774 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_extern, Loc,
2775 PrevSpec, DiagID);
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002776 break;
Steve Naroff2050b0d2007-12-18 00:16:02 +00002777 case tok::kw___private_extern__:
Peter Collingbourne485b80f2011-10-06 03:01:00 +00002778 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_private_extern,
2779 Loc, PrevSpec, DiagID);
Steve Naroff2050b0d2007-12-18 00:16:02 +00002780 break;
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002781 case tok::kw_static:
Richard Smithb4a9e862013-04-12 22:46:28 +00002782 if (DS.getThreadStorageClassSpec() == DeclSpec::TSCS___thread)
Chris Lattner6d29c102008-11-18 07:48:38 +00002783 Diag(Tok, diag::ext_thread_before) << "static";
Peter Collingbourne485b80f2011-10-06 03:01:00 +00002784 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_static, Loc,
2785 PrevSpec, DiagID);
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002786 break;
2787 case tok::kw_auto:
Richard Smith2bf7fdb2013-01-02 11:42:31 +00002788 if (getLangOpts().CPlusPlus11) {
Fariborz Jahanianbb6db562011-02-22 23:17:49 +00002789 if (isKnownToBeTypeSpecifier(GetLookAheadToken(1))) {
Peter Collingbourne485b80f2011-10-06 03:01:00 +00002790 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_auto, Loc,
2791 PrevSpec, DiagID);
Fariborz Jahanianbb6db562011-02-22 23:17:49 +00002792 if (!isInvalid)
Richard Smith58c74332011-09-04 19:54:14 +00002793 Diag(Tok, diag::ext_auto_storage_class)
Fariborz Jahanianbb6db562011-02-22 23:17:49 +00002794 << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc());
Richard Smith58c74332011-09-04 19:54:14 +00002795 } else
Fariborz Jahanianbb6db562011-02-22 23:17:49 +00002796 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_auto, Loc, PrevSpec,
2797 DiagID);
Richard Smith58c74332011-09-04 19:54:14 +00002798 } else
Peter Collingbourne485b80f2011-10-06 03:01:00 +00002799 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_auto, Loc,
2800 PrevSpec, DiagID);
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002801 break;
2802 case tok::kw_register:
Peter Collingbourne485b80f2011-10-06 03:01:00 +00002803 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_register, Loc,
2804 PrevSpec, DiagID);
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002805 break;
Sebastian Redlccdfaba2008-11-14 23:42:31 +00002806 case tok::kw_mutable:
Peter Collingbourne485b80f2011-10-06 03:01:00 +00002807 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_mutable, Loc,
2808 PrevSpec, DiagID);
Sebastian Redlccdfaba2008-11-14 23:42:31 +00002809 break;
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002810 case tok::kw___thread:
Richard Smithb4a9e862013-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);
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002821 break;
Mike Stump11289f42009-09-09 15:08:12 +00002822
Chris Lattnerb9093cd2006-08-04 04:39:53 +00002823 // function-specifier
2824 case tok::kw_inline:
Chad Rosier92f0dcc2012-12-21 22:24:43 +00002825 isInvalid = DS.setFunctionSpecInline(Loc);
Chris Lattnerb9093cd2006-08-04 04:39:53 +00002826 break;
Douglas Gregor61956c42008-10-31 09:07:45 +00002827 case tok::kw_virtual:
Chad Rosier92f0dcc2012-12-21 22:24:43 +00002828 isInvalid = DS.setFunctionSpecVirtual(Loc);
Douglas Gregor61956c42008-10-31 09:07:45 +00002829 break;
Douglas Gregor61956c42008-10-31 09:07:45 +00002830 case tok::kw_explicit:
Chad Rosier92f0dcc2012-12-21 22:24:43 +00002831 isInvalid = DS.setFunctionSpecExplicit(Loc);
Douglas Gregor61956c42008-10-31 09:07:45 +00002832 break;
Richard Smith0015f092013-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 Lattnere387d9e2009-01-21 19:48:37 +00002838
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002839 // alignment-specifier
2840 case tok::kw__Alignas:
David Blaikiebbafb8a2012-03-11 07:00:24 +00002841 if (!getLangOpts().C11)
Jordan Rose58d54722012-06-30 21:33:57 +00002842 Diag(Tok, diag::ext_c11_alignment) << Tok.getName();
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002843 ParseAlignmentSpecifier(DS.getAttributes());
2844 continue;
2845
Anders Carlssoncd8db412009-05-06 04:46:28 +00002846 // friend
2847 case tok::kw_friend:
John McCall07e91c02009-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 Carlssoncd8db412009-05-06 04:46:28 +00002855 break;
Mike Stump11289f42009-09-09 15:08:12 +00002856
Douglas Gregor26701a42011-09-09 02:06:17 +00002857 // Modules
2858 case tok::kw___module_private__:
2859 isInvalid = DS.setModulePrivateSpec(Loc, PrevSpec, DiagID);
2860 break;
Chad Rosierc1183952012-06-26 22:30:43 +00002861
Sebastian Redl39c2a8b2009-11-05 15:47:02 +00002862 // constexpr
2863 case tok::kw_constexpr:
2864 isInvalid = DS.SetConstexprSpec(Loc, PrevSpec, DiagID);
2865 break;
2866
Chris Lattnere387d9e2009-01-21 19:48:37 +00002867 // type-specifier
2868 case tok::kw_short:
John McCall49bfce42009-08-03 20:12:06 +00002869 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_short, Loc, PrevSpec,
2870 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002871 break;
2872 case tok::kw_long:
2873 if (DS.getTypeSpecWidth() != DeclSpec::TSW_long)
John McCall49bfce42009-08-03 20:12:06 +00002874 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_long, Loc, PrevSpec,
2875 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002876 else
John McCall49bfce42009-08-03 20:12:06 +00002877 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_longlong, Loc, PrevSpec,
2878 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002879 break;
Francois Pichet84133e42011-04-28 01:59:37 +00002880 case tok::kw___int64:
2881 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_longlong, Loc, PrevSpec,
2882 DiagID);
2883 break;
Chris Lattnere387d9e2009-01-21 19:48:37 +00002884 case tok::kw_signed:
John McCall49bfce42009-08-03 20:12:06 +00002885 isInvalid = DS.SetTypeSpecSign(DeclSpec::TSS_signed, Loc, PrevSpec,
2886 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002887 break;
2888 case tok::kw_unsigned:
John McCall49bfce42009-08-03 20:12:06 +00002889 isInvalid = DS.SetTypeSpecSign(DeclSpec::TSS_unsigned, Loc, PrevSpec,
2890 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002891 break;
2892 case tok::kw__Complex:
John McCall49bfce42009-08-03 20:12:06 +00002893 isInvalid = DS.SetTypeSpecComplex(DeclSpec::TSC_complex, Loc, PrevSpec,
2894 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002895 break;
2896 case tok::kw__Imaginary:
John McCall49bfce42009-08-03 20:12:06 +00002897 isInvalid = DS.SetTypeSpecComplex(DeclSpec::TSC_imaginary, Loc, PrevSpec,
2898 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002899 break;
2900 case tok::kw_void:
John McCall49bfce42009-08-03 20:12:06 +00002901 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_void, Loc, PrevSpec,
2902 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002903 break;
2904 case tok::kw_char:
John McCall49bfce42009-08-03 20:12:06 +00002905 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char, Loc, PrevSpec,
2906 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002907 break;
2908 case tok::kw_int:
John McCall49bfce42009-08-03 20:12:06 +00002909 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, PrevSpec,
2910 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002911 break;
Richard Smithf016bbc2012-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 Lattnere387d9e2009-01-21 19:48:37 +00002920 case tok::kw_float:
John McCall49bfce42009-08-03 20:12:06 +00002921 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_float, Loc, PrevSpec,
2922 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002923 break;
2924 case tok::kw_double:
John McCall49bfce42009-08-03 20:12:06 +00002925 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_double, Loc, PrevSpec,
2926 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002927 break;
2928 case tok::kw_wchar_t:
John McCall49bfce42009-08-03 20:12:06 +00002929 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_wchar, Loc, PrevSpec,
2930 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002931 break;
Alisdair Mereditha9ad47d2009-07-14 06:30:34 +00002932 case tok::kw_char16_t:
John McCall49bfce42009-08-03 20:12:06 +00002933 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char16, Loc, PrevSpec,
2934 DiagID);
Alisdair Mereditha9ad47d2009-07-14 06:30:34 +00002935 break;
2936 case tok::kw_char32_t:
John McCall49bfce42009-08-03 20:12:06 +00002937 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char32, Loc, PrevSpec,
2938 DiagID);
Alisdair Mereditha9ad47d2009-07-14 06:30:34 +00002939 break;
Chris Lattnere387d9e2009-01-21 19:48:37 +00002940 case tok::kw_bool:
2941 case tok::kw__Bool:
Argyrios Kyrtzidis20ee5ae2010-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 Jahanian2b059992011-04-19 21:42:37 +00002947 // For better error recovery.
2948 Tok.setKind(tok::identifier);
Argyrios Kyrtzidis20ee5ae2010-11-16 18:18:13 +00002949 isInvalid = true;
2950 } else {
2951 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_bool, Loc, PrevSpec,
2952 DiagID);
2953 }
Chris Lattnere387d9e2009-01-21 19:48:37 +00002954 break;
2955 case tok::kw__Decimal32:
John McCall49bfce42009-08-03 20:12:06 +00002956 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal32, Loc, PrevSpec,
2957 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002958 break;
2959 case tok::kw__Decimal64:
John McCall49bfce42009-08-03 20:12:06 +00002960 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal64, Loc, PrevSpec,
2961 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002962 break;
2963 case tok::kw__Decimal128:
John McCall49bfce42009-08-03 20:12:06 +00002964 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal128, Loc, PrevSpec,
2965 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002966 break;
John Thompson22334602010-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 Benyeid8a08ea2012-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 Benyei61054192013-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 Benyei1b4fb3e2013-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 McCall39439732011-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 Lattnere387d9e2009-01-21 19:48:37 +00003009
3010 // class-specifier:
3011 case tok::kw_class:
3012 case tok::kw_struct:
Joao Matosdc86f942012-08-31 18:45:21 +00003013 case tok::kw___interface:
Chris Lattnerffaa0e62009-04-12 21:49:30 +00003014 case tok::kw_union: {
3015 tok::TokenKind Kind = Tok.getKind();
3016 ConsumeToken();
Michael Han9407e502012-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 Wendling44426052012-12-20 19:22:21 +00003021 ParsedAttributesWithRange Attributes(AttrFactory);
Richard Smithc5b05522012-03-12 07:56:15 +00003022 ParseClassSpecifier(Kind, Loc, DS, TemplateInfo, AS,
Bill Wendling44426052012-12-20 19:22:21 +00003023 EnteringContext, DSContext, Attributes);
Michael Han9407e502012-11-26 22:54:45 +00003024
3025 // If there are attributes following class specifier,
3026 // take them over and handle them here.
Bill Wendling44426052012-12-20 19:22:21 +00003027 if (!Attributes.empty()) {
Michael Han9407e502012-11-26 22:54:45 +00003028 AttrsLastTime = true;
Bill Wendling44426052012-12-20 19:22:21 +00003029 attrs.takeAllFrom(Attributes);
Michael Han9407e502012-11-26 22:54:45 +00003030 }
Chris Lattnere387d9e2009-01-21 19:48:37 +00003031 continue;
Chris Lattnerffaa0e62009-04-12 21:49:30 +00003032 }
Chris Lattnere387d9e2009-01-21 19:48:37 +00003033
3034 // enum-specifier:
3035 case tok::kw_enum:
Chris Lattnerffaa0e62009-04-12 21:49:30 +00003036 ConsumeToken();
Richard Smithc5b05522012-03-12 07:56:15 +00003037 ParseEnumSpecifier(Loc, DS, TemplateInfo, AS, DSContext);
Chris Lattnere387d9e2009-01-21 19:48:37 +00003038 continue;
3039
3040 // cv-qualifier:
3041 case tok::kw_const:
John McCall49bfce42009-08-03 20:12:06 +00003042 isInvalid = DS.SetTypeQual(DeclSpec::TQ_const, Loc, PrevSpec, DiagID,
Richard Smith87e79512012-10-17 23:31:46 +00003043 getLangOpts());
Chris Lattnere387d9e2009-01-21 19:48:37 +00003044 break;
3045 case tok::kw_volatile:
John McCall49bfce42009-08-03 20:12:06 +00003046 isInvalid = DS.SetTypeQual(DeclSpec::TQ_volatile, Loc, PrevSpec, DiagID,
Richard Smith87e79512012-10-17 23:31:46 +00003047 getLangOpts());
Chris Lattnere387d9e2009-01-21 19:48:37 +00003048 break;
3049 case tok::kw_restrict:
John McCall49bfce42009-08-03 20:12:06 +00003050 isInvalid = DS.SetTypeQual(DeclSpec::TQ_restrict, Loc, PrevSpec, DiagID,
Richard Smith87e79512012-10-17 23:31:46 +00003051 getLangOpts());
Chris Lattnere387d9e2009-01-21 19:48:37 +00003052 break;
3053
Douglas Gregor333489b2009-03-27 23:10:48 +00003054 // C++ typename-specifier:
3055 case tok::kw_typename:
John McCall1f476a12010-02-26 08:45:28 +00003056 if (TryAnnotateTypeOrScopeToken()) {
3057 DS.SetTypeSpecError();
3058 goto DoneWithDeclSpec;
3059 }
3060 if (!Tok.is(tok::kw_typename))
Douglas Gregor333489b2009-03-27 23:10:48 +00003061 continue;
3062 break;
3063
Chris Lattnere387d9e2009-01-21 19:48:37 +00003064 // GNU typeof support.
3065 case tok::kw_typeof:
3066 ParseTypeofSpecifier(DS);
3067 continue;
3068
David Blaikie15a430a2011-12-04 05:04:18 +00003069 case tok::annot_decltype:
Anders Carlsson74948d02009-06-24 17:47:40 +00003070 ParseDecltypeSpecifier(DS);
3071 continue;
3072
Alexis Hunt4a257072011-05-19 05:37:45 +00003073 case tok::kw___underlying_type:
3074 ParseUnderlyingTypeSpecifier(DS);
Eli Friedman0dfb8892011-10-06 23:00:33 +00003075 continue;
3076
3077 case tok::kw__Atomic:
Richard Smith8e1ac332013-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;
Alexis Hunt4a257072011-05-19 05:37:45 +00003089
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00003090 // OpenCL qualifiers:
Chad Rosierc1183952012-06-26 22:30:43 +00003091 case tok::kw_private:
David Blaikiebbafb8a2012-03-11 07:00:24 +00003092 if (!getLangOpts().OpenCL)
Peter Collingbourne599cb8e2011-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 Rosierc1183952012-06-26 22:30:43 +00003103
Steve Naroffcfdf6162008-06-05 00:02:44 +00003104 case tok::less:
Chris Lattner16fac4f2008-07-26 01:18:38 +00003105 // GCC ObjC supports types like "<SomeProtocol>" as a synonym for
Chris Lattner0974b232008-07-26 00:20:22 +00003106 // "id<SomeProtocol>". This is hopelessly old fashioned and dangerous,
3107 // but we support it.
David Blaikiebbafb8a2012-03-11 07:00:24 +00003108 if (DS.hasTypeSpecifier() || !getLangOpts().ObjC1)
Chris Lattner0974b232008-07-26 00:20:22 +00003109 goto DoneWithDeclSpec;
Mike Stump11289f42009-09-09 15:08:12 +00003110
Douglas Gregor3a001f42010-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 Rosierc1183952012-06-26 22:30:43 +00003115
Douglas Gregor06e41ae2010-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;
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00003119 }
John McCall49bfce42009-08-03 20:12:06 +00003120 // If the specifier wasn't legal, issue a diagnostic.
Chris Lattnerb9093cd2006-08-04 04:39:53 +00003121 if (isInvalid) {
3122 assert(PrevSpec && "Method did not return previous specifier!");
John McCall49bfce42009-08-03 20:12:06 +00003123 assert(DiagID);
Chad Rosierc1183952012-06-26 22:30:43 +00003124
Douglas Gregora05f5ab2010-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;
Chris Lattnerb9093cd2006-08-04 04:39:53 +00003130 }
Fariborz Jahanianbb6db562011-02-22 23:17:49 +00003131
Chris Lattner2e232092008-03-13 06:29:04 +00003132 DS.SetRangeEnd(Tok.getLocation());
Fariborz Jahanian2b059992011-04-19 21:42:37 +00003133 if (DiagID != diag::err_bool_redeclaration)
3134 ConsumeToken();
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00003135
3136 AttrsLastTime = false;
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00003137 }
3138}
Douglas Gregoreb31f392008-12-01 23:54:00 +00003139
Chris Lattner70ae4912007-10-29 04:42:53 +00003140/// ParseStructDeclaration - Parse a struct declaration without the terminating
3141/// semicolon.
3142///
Chris Lattner90a26b02007-01-23 04:38:16 +00003143/// struct-declaration:
Chris Lattner70ae4912007-10-29 04:42:53 +00003144/// specifier-qualifier-list struct-declarator-list
Chris Lattner736ed5d2007-06-09 05:59:07 +00003145/// [GNU] __extension__ struct-declaration
Chris Lattner70ae4912007-10-29 04:42:53 +00003146/// [GNU] specifier-qualifier-list
Chris Lattner90a26b02007-01-23 04:38:16 +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 Lattnera12405b2008-04-10 06:46:29 +00003157void Parser::
Eli Friedman89b1f2c2012-08-08 23:04:35 +00003158ParseStructDeclaration(ParsingDeclSpec &DS, FieldCallback &Fields) {
Chad Rosierc1183952012-06-26 22:30:43 +00003159
Chris Lattnerf02ef3e2008-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 Naroff97170802007-08-20 22:28:22 +00003163 ConsumeToken();
Chris Lattnerf02ef3e2008-10-20 06:45:43 +00003164 return ParseStructDeclaration(DS, Fields);
3165 }
Mike Stump11289f42009-09-09 15:08:12 +00003166
Steve Naroff97170802007-08-20 22:28:22 +00003167 // Parse the common specifier-qualifiers-list piece.
Steve Naroff97170802007-08-20 22:28:22 +00003168 ParseSpecifierQualifierList(DS);
Mike Stump11289f42009-09-09 15:08:12 +00003169
Douglas Gregorc6f58fe2009-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 Lattner76c72282007-10-09 17:33:22 +00003172 if (Tok.is(tok::semi)) {
Eli Friedman89b1f2c2012-08-08 23:04:35 +00003173 Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS_none,
3174 DS);
3175 DS.complete(TheDecl);
Steve Naroff97170802007-08-20 22:28:22 +00003176 return;
3177 }
3178
3179 // Read struct-declarators until we find the semicolon.
John McCallcfefb6d2009-11-03 02:38:08 +00003180 bool FirstDeclarator = true;
Richard Smith8d06f422012-01-12 23:53:29 +00003181 SourceLocation CommaLoc;
Steve Naroff97170802007-08-20 22:28:22 +00003182 while (1) {
Eli Friedman89b1f2c2012-08-08 23:04:35 +00003183 ParsingFieldDeclarator DeclaratorInfo(*this, DS);
Richard Smith8d06f422012-01-12 23:53:29 +00003184 DeclaratorInfo.D.setCommaLoc(CommaLoc);
John McCallcfefb6d2009-11-03 02:38:08 +00003185
Bill Wendling44426052012-12-20 19:22:21 +00003186 // Attributes are only allowed here on successive declarators.
John McCall53fa7142010-12-24 02:08:15 +00003187 if (!FirstDeclarator)
3188 MaybeParseGNUAttributes(DeclaratorInfo.D);
Mike Stump11289f42009-09-09 15:08:12 +00003189
Steve Naroff97170802007-08-20 22:28:22 +00003190 /// struct-declarator: declarator
3191 /// struct-declarator: declarator[opt] ':' constant-expression
Chris Lattner17c3b1f2009-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 Lattnera12405b2008-04-10 06:46:29 +00003195 ParseDeclarator(DeclaratorInfo.D);
Chris Lattner17c3b1f2009-12-10 01:59:24 +00003196 }
Mike Stump11289f42009-09-09 15:08:12 +00003197
Chris Lattner76c72282007-10-09 17:33:22 +00003198 if (Tok.is(tok::colon)) {
Steve Naroff97170802007-08-20 22:28:22 +00003199 ConsumeToken();
John McCalldadc5752010-08-24 06:29:42 +00003200 ExprResult Res(ParseConstantExpression());
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00003201 if (Res.isInvalid())
Steve Naroff97170802007-08-20 22:28:22 +00003202 SkipUntil(tok::semi, true, true);
Chris Lattner32295d32008-04-10 06:15:14 +00003203 else
Sebastian Redld9f7b1c2008-12-10 00:02:53 +00003204 DeclaratorInfo.BitfieldSize = Res.release();
Steve Naroff97170802007-08-20 22:28:22 +00003205 }
Sebastian Redlf6591ca2009-02-09 18:23:29 +00003206
Steve Naroff97170802007-08-20 22:28:22 +00003207 // If attributes exist after the declarator, parse them.
John McCall53fa7142010-12-24 02:08:15 +00003208 MaybeParseGNUAttributes(DeclaratorInfo.D);
Sebastian Redlf6591ca2009-02-09 18:23:29 +00003209
John McCallcfefb6d2009-11-03 02:38:08 +00003210 // We're done with this declarator; invoke the callback.
Eli Friedmanba01f2b2012-08-08 23:35:12 +00003211 Fields.invoke(DeclaratorInfo);
John McCallcfefb6d2009-11-03 02:38:08 +00003212
Steve Naroff97170802007-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 Lattner76c72282007-10-09 17:33:22 +00003215 if (Tok.isNot(tok::comma))
Chris Lattner70ae4912007-10-29 04:42:53 +00003216 return;
Sebastian Redlf6591ca2009-02-09 18:23:29 +00003217
Steve Naroff97170802007-08-20 22:28:22 +00003218 // Consume the comma.
Richard Smith8d06f422012-01-12 23:53:29 +00003219 CommaLoc = ConsumeToken();
Sebastian Redlf6591ca2009-02-09 18:23:29 +00003220
John McCallcfefb6d2009-11-03 02:38:08 +00003221 FirstDeclarator = false;
Steve Naroff97170802007-08-20 22:28:22 +00003222 }
Steve Naroff97170802007-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 Lattner535b8302008-06-21 19:39:06 +00003233/// [OBC] '@' 'defs' '(' class-name ')'
Steve Naroff97170802007-08-20 22:28:22 +00003234///
Chris Lattner1300fb92007-01-23 23:42:53 +00003235void Parser::ParseStructUnionBody(SourceLocation RecordLoc,
John McCall48871652010-08-21 09:40:31 +00003236 unsigned TagType, Decl *TagDecl) {
John McCallfaf5fb42010-08-26 23:41:50 +00003237 PrettyDeclStackTraceEntry CrashInfo(Actions, TagDecl, RecordLoc,
3238 "parsing struct/union body");
Andy Gibbs22e140b2013-04-03 09:31:19 +00003239 assert(!getLangOpts().CPlusPlus && "C++ declarations not supported");
Mike Stump11289f42009-09-09 15:08:12 +00003240
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003241 BalancedDelimiterTracker T(*this, tok::l_brace);
3242 if (T.consumeOpen())
3243 return;
Mike Stump11289f42009-09-09 15:08:12 +00003244
Douglas Gregor658b9552009-01-09 22:42:13 +00003245 ParseScope StructScope(this, Scope::ClassScope|Scope::DeclScope);
Douglas Gregor0be31a22010-07-02 17:43:08 +00003246 Actions.ActOnTagStartDefinition(getCurScope(), TagDecl);
Douglas Gregor82ac25e2009-01-08 20:45:30 +00003247
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003248 SmallVector<Decl *, 32> FieldDecls;
Chris Lattnera12405b2008-04-10 06:46:29 +00003249
Chris Lattner7b9ace62007-01-23 20:11:08 +00003250 // While we still have something to read, read the declarations in the struct.
Chris Lattner76c72282007-10-09 17:33:22 +00003251 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
Chris Lattner90a26b02007-01-23 04:38:16 +00003252 // Each iteration of this loop reads one struct-declaration.
Mike Stump11289f42009-09-09 15:08:12 +00003253
Chris Lattner736ed5d2007-06-09 05:59:07 +00003254 // Check for extraneous top-level semicolon.
Chris Lattner76c72282007-10-09 17:33:22 +00003255 if (Tok.is(tok::semi)) {
Richard Smith87f5dc52012-07-23 05:45:25 +00003256 ConsumeExtraSemi(InsideStruct, TagType);
Chris Lattner36e46a22007-06-09 05:49:55 +00003257 continue;
3258 }
Chris Lattnera12405b2008-04-10 06:46:29 +00003259
Andy Gibbsc804e082013-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 Kyrtzidis71c12fb2013-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 McCallcfefb6d2009-11-03 02:38:08 +00003277 if (!Tok.is(tok::at)) {
3278 struct CFieldCallback : FieldCallback {
3279 Parser &P;
John McCall48871652010-08-21 09:40:31 +00003280 Decl *TagDecl;
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003281 SmallVectorImpl<Decl *> &FieldDecls;
John McCallcfefb6d2009-11-03 02:38:08 +00003282
John McCall48871652010-08-21 09:40:31 +00003283 CFieldCallback(Parser &P, Decl *TagDecl,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003284 SmallVectorImpl<Decl *> &FieldDecls) :
John McCallcfefb6d2009-11-03 02:38:08 +00003285 P(P), TagDecl(TagDecl), FieldDecls(FieldDecls) {}
3286
Eli Friedman934dbbf2012-08-08 23:53:27 +00003287 void invoke(ParsingFieldDeclarator &FD) {
John McCallcfefb6d2009-11-03 02:38:08 +00003288 // Install the declarator into the current TagDecl.
John McCall48871652010-08-21 09:40:31 +00003289 Decl *Field = P.Actions.ActOnField(P.getCurScope(), TagDecl,
John McCall5e6253b2009-11-03 21:13:47 +00003290 FD.D.getDeclSpec().getSourceRange().getBegin(),
3291 FD.D, FD.BitfieldSize);
John McCallcfefb6d2009-11-03 02:38:08 +00003292 FieldDecls.push_back(Field);
Eli Friedman89b1f2c2012-08-08 23:04:35 +00003293 FD.complete(Field);
Douglas Gregor66a985d2009-08-26 14:27:30 +00003294 }
John McCallcfefb6d2009-11-03 02:38:08 +00003295 } Callback(*this, TagDecl, FieldDecls);
3296
Eli Friedman89b1f2c2012-08-08 23:04:35 +00003297 // Parse all the comma separated declarators.
3298 ParsingDeclSpec DS(*this);
John McCallcfefb6d2009-11-03 02:38:08 +00003299 ParseStructDeclaration(DS, Callback);
Chris Lattner535b8302008-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 Lattner245c5332010-02-02 00:37:27 +00003304 SkipUntil(tok::semi, true);
Chris Lattner535b8302008-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 Lattner245c5332010-02-02 00:37:27 +00003311 SkipUntil(tok::semi, true);
Chris Lattner535b8302008-06-21 19:39:06 +00003312 continue;
3313 }
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003314 SmallVector<Decl *, 16> Fields;
Douglas Gregor0be31a22010-07-02 17:43:08 +00003315 Actions.ActOnDefs(getCurScope(), TagDecl, Tok.getLocation(),
Douglas Gregor91f84212008-12-11 16:49:14 +00003316 Tok.getIdentifierInfo(), Fields);
Chris Lattner535b8302008-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 Stump11289f42009-09-09 15:08:12 +00003320 }
Chris Lattner736ed5d2007-06-09 05:59:07 +00003321
Chris Lattner76c72282007-10-09 17:33:22 +00003322 if (Tok.is(tok::semi)) {
Chris Lattner90a26b02007-01-23 04:38:16 +00003323 ConsumeToken();
Chris Lattner76c72282007-10-09 17:33:22 +00003324 } else if (Tok.is(tok::r_brace)) {
Chris Lattner245c5332010-02-02 00:37:27 +00003325 ExpectAndConsume(tok::semi, diag::ext_expected_semi_decl_list);
Chris Lattner0c7e82d2007-06-09 05:54:40 +00003326 break;
Chris Lattner90a26b02007-01-23 04:38:16 +00003327 } else {
Chris Lattner245c5332010-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 ';'.
Chris Lattner90a26b02007-01-23 04:38:16 +00003330 SkipUntil(tok::r_brace, true, true);
Chris Lattner245c5332010-02-02 00:37:27 +00003331 // If we stopped at a ';', eat it.
3332 if (Tok.is(tok::semi)) ConsumeToken();
Chris Lattner90a26b02007-01-23 04:38:16 +00003333 }
3334 }
Mike Stump11289f42009-09-09 15:08:12 +00003335
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003336 T.consumeClose();
Mike Stump11289f42009-09-09 15:08:12 +00003337
John McCall084e83d2011-03-24 11:26:52 +00003338 ParsedAttributes attrs(AttrFactory);
Chris Lattner90a26b02007-01-23 04:38:16 +00003339 // If attributes exist after struct contents, parse them.
John McCall53fa7142010-12-24 02:08:15 +00003340 MaybeParseGNUAttributes(attrs);
Daniel Dunbar15619c72008-10-03 02:03:53 +00003341
Douglas Gregor0be31a22010-07-02 17:43:08 +00003342 Actions.ActOnFields(getCurScope(),
David Blaikie751c5582011-09-22 02:58:26 +00003343 RecordLoc, TagDecl, FieldDecls,
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003344 T.getOpenLocation(), T.getCloseLocation(),
John McCall53fa7142010-12-24 02:08:15 +00003345 attrs.getList());
Douglas Gregor82ac25e2009-01-08 20:45:30 +00003346 StructScope.Exit();
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003347 Actions.ActOnTagFinishDefinition(getCurScope(), TagDecl,
3348 T.getCloseLocation());
Chris Lattner90a26b02007-01-23 04:38:16 +00003349}
3350
Chris Lattner3b561a32006-08-13 00:12:11 +00003351/// ParseEnumSpecifier
Chris Lattner1890ac82006-08-13 01:16:23 +00003352/// enum-specifier: [C99 6.7.2.2]
Chris Lattner3b561a32006-08-13 00:12:11 +00003353/// 'enum' identifier[opt] '{' enumerator-list '}'
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00003354///[C99/C++]'enum' identifier[opt] '{' enumerator-list ',' '}'
Chris Lattnere37e2332006-08-15 04:50:22 +00003355/// [GNU] 'enum' attributes[opt] identifier[opt] '{' enumerator-list ',' [opt]
3356/// '}' attributes[opt]
Aaron Ballman9ecff022012-03-01 04:09:28 +00003357/// [MS] 'enum' __declspec[opt] identifier[opt] '{' enumerator-list ',' [opt]
3358/// '}'
Chris Lattner3b561a32006-08-13 00:12:11 +00003359/// 'enum' identifier
Chris Lattnere37e2332006-08-15 04:50:22 +00003360/// [GNU] 'enum' attributes[opt] identifier
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00003361///
Richard Smith7d137e32012-03-23 03:33:32 +00003362/// [C++11] enum-head '{' enumerator-list[opt] '}'
3363/// [C++11] enum-head '{' enumerator-list ',' '}'
Douglas Gregor0bf31402010-10-08 23:50:27 +00003364///
Richard Smith7d137e32012-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 Gregor0bf31402010-10-08 23:50:27 +00003369///
Richard Smith7d137e32012-03-23 03:33:32 +00003370/// enum-key: [C++11]
Douglas Gregor0bf31402010-10-08 23:50:27 +00003371/// 'enum'
3372/// 'enum' 'class'
3373/// 'enum' 'struct'
3374///
Richard Smith7d137e32012-03-23 03:33:32 +00003375/// enum-base: [C++11]
Douglas Gregor0bf31402010-10-08 23:50:27 +00003376/// ':' type-specifier-seq
3377///
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00003378/// [C++] elaborated-type-specifier:
3379/// [C++] 'enum' '::'[opt] nested-name-specifier[opt] identifier
3380///
Chris Lattnerffaa0e62009-04-12 21:49:30 +00003381void Parser::ParseEnumSpecifier(SourceLocation StartLoc, DeclSpec &DS,
Douglas Gregordc70c3a2010-03-02 17:53:14 +00003382 const ParsedTemplateInfo &TemplateInfo,
Richard Smithc5b05522012-03-12 07:56:15 +00003383 AccessSpecifier AS, DeclSpecContext DSC) {
Chris Lattnerffbc2712007-01-25 06:05:38 +00003384 // Parse the tag portion of this.
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003385 if (Tok.is(tok::code_completion)) {
3386 // Code completion for an enum name.
Douglas Gregor0be31a22010-07-02 17:43:08 +00003387 Actions.CodeCompleteTag(getCurScope(), DeclSpec::TST_enum);
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +00003388 return cutOffParsing();
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003389 }
John McCallcb432fa2011-07-06 05:58:41 +00003390
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00003391 // If attributes exist after tag, parse them.
3392 ParsedAttributesWithRange attrs(AttrFactory);
3393 MaybeParseGNUAttributes(attrs);
Richard Smith89645bc2013-01-02 12:01:23 +00003394 MaybeParseCXX11Attributes(attrs);
Alexis Hunt6aa9bee2012-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 Smith0f8ee222012-01-10 01:33:14 +00003400 SourceLocation ScopedEnumKWLoc;
John McCallcb432fa2011-07-06 05:58:41 +00003401 bool IsScopedUsingClassTag = false;
3402
John McCallbeae29a2012-06-23 22:30:04 +00003403 // In C++11, recognize 'enum class' and 'enum struct'.
Richard Trieud0d87b52013-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 McCallcb432fa2011-07-06 05:58:41 +00003407 IsScopedUsingClassTag = Tok.is(tok::kw_class);
Richard Smith0f8ee222012-01-10 01:33:14 +00003408 ScopedEnumKWLoc = ConsumeToken();
Chad Rosierc1183952012-06-26 22:30:43 +00003409
Bill Wendling44426052012-12-20 19:22:21 +00003410 // Attributes are not allowed between these keywords. Diagnose,
John McCallbeae29a2012-06-23 22:30:04 +00003411 // but then just treat them like they appeared in the right place.
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00003412 ProhibitAttributes(attrs);
John McCallbeae29a2012-06-23 22:30:04 +00003413
3414 // They are allowed afterwards, though.
3415 MaybeParseGNUAttributes(attrs);
Richard Smith89645bc2013-01-02 12:01:23 +00003416 MaybeParseCXX11Attributes(attrs);
John McCallbeae29a2012-06-23 22:30:04 +00003417 while (Tok.is(tok::kw___declspec))
3418 ParseMicrosoftDeclSpec(attrs);
John McCallcb432fa2011-07-06 05:58:41 +00003419 }
Richard Smith7d137e32012-03-23 03:33:32 +00003420
John McCall6347b682012-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 Smith7d137e32012-03-23 03:33:32 +00003431
Richard Smithbfdb1082012-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 Smith2bf7fdb2013-01-02 11:42:31 +00003436 (getLangOpts().CPlusPlus11 || getLangOpts().MicrosoftExt ||
Richard Smithbfdb1082012-03-12 08:56:40 +00003437 getLangOpts().ObjC2);
John McCallcb432fa2011-07-06 05:58:41 +00003438
Abramo Bagnarad7548482010-05-19 21:37:53 +00003439 CXXScopeSpec &SS = DS.getTypeSpecScope();
David Blaikiebbafb8a2012-03-11 07:00:24 +00003440 if (getLangOpts().CPlusPlus) {
John McCallcb432fa2011-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 Rosierc1183952012-06-26 22:30:43 +00003444
3445 if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(),
Richard Smith1d4b2e12013-04-01 21:43:41 +00003446 /*EnteringContext=*/true))
John McCall1f476a12010-02-26 08:45:28 +00003447 return;
3448
3449 if (SS.isSet() && Tok.isNot(tok::identifier)) {
Argyrios Kyrtzidis32a03792008-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 Stump11289f42009-09-09 15:08:12 +00003459
Argyrios Kyrtzidisf01fa822008-09-11 00:21:41 +00003460 // Must have either 'enum name' or 'enum {...}'.
Douglas Gregor6cd5ae42011-02-22 02:55:24 +00003461 if (Tok.isNot(tok::identifier) && Tok.isNot(tok::l_brace) &&
Richard Smithbfdb1082012-03-12 08:56:40 +00003462 !(AllowFixedUnderlyingType && Tok.is(tok::colon))) {
Argyrios Kyrtzidisf01fa822008-09-11 00:21:41 +00003463 Diag(Tok, diag::err_expected_ident_lbrace);
Mike Stump11289f42009-09-09 15:08:12 +00003464
Argyrios Kyrtzidisf01fa822008-09-11 00:21:41 +00003465 // Skip the rest of this declarator, up until the comma or semicolon.
3466 SkipUntil(tok::comma, true);
Chris Lattner3b561a32006-08-13 00:12:11 +00003467 return;
Argyrios Kyrtzidisf01fa822008-09-11 00:21:41 +00003468 }
Mike Stump11289f42009-09-09 15:08:12 +00003469
Argyrios Kyrtzidisf01fa822008-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 Stump11289f42009-09-09 15:08:12 +00003477
Richard Smith0f8ee222012-01-10 01:33:14 +00003478 if (!Name && ScopedEnumKWLoc.isValid()) {
Douglas Gregor0bf31402010-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 Smith0f8ee222012-01-10 01:33:14 +00003482 ScopedEnumKWLoc = SourceLocation();
Abramo Bagnara0e05e242010-12-03 18:54:17 +00003483 IsScopedUsingClassTag = false;
Douglas Gregor0bf31402010-10-08 23:50:27 +00003484 }
3485
John McCall6347b682012-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 Smith7d137e32012-03-23 03:33:32 +00003490
Douglas Gregor0bf31402010-10-08 23:50:27 +00003491 TypeResult BaseType;
3492
Douglas Gregord1f69f62010-12-01 17:42:47 +00003493 // Parse the fixed underlying type.
Richard Smith200f47c2012-07-02 19:14:01 +00003494 bool CanBeBitfield = getCurScope()->getFlags() & Scope::ClassScope;
Douglas Gregor6cd5ae42011-02-22 02:55:24 +00003495 if (AllowFixedUnderlyingType && Tok.is(tok::colon)) {
Douglas Gregord1f69f62010-12-01 17:42:47 +00003496 bool PossibleBitfield = false;
Richard Smith200f47c2012-07-02 19:14:01 +00003497 if (CanBeBitfield) {
Douglas Gregord1f69f62010-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 Rosierc1183952012-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 Gregord1f69f62010-12-01 17:42:47 +00003504 // underlying types anyway.
Richard Smith4f605af2012-08-18 00:55:03 +00003505 EnterExpressionEvaluationContext Unevaluated(Actions,
3506 Sema::ConstantEvaluated);
Douglas Gregord1f69f62010-12-01 17:42:47 +00003507 TPResult TPR = isExpressionOrTypeSpecifierSimple(NextToken().getKind());
Chad Rosierc1183952012-06-26 22:30:43 +00003508 // If the next token starts an expression, we know we're parsing a
Douglas Gregord1f69f62010-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 Rosierc1183952012-06-26 22:30:43 +00003514 // lookahead one more token to see if it's obvious that we have a
Douglas Gregord1f69f62010-12-01 17:42:47 +00003515 // fixed underlying type.
Chad Rosierc1183952012-06-26 22:30:43 +00003516 else if (TPR == TPResult::False() &&
Douglas Gregord1f69f62010-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 Smith1e3b0f02012-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 Blaikiebbafb8a2012-03-11 07:00:24 +00003535 if ((getLangOpts().CPlusPlus &&
Richard Smith1e3b0f02012-02-23 01:36:12 +00003536 isCXXDeclarationSpecifier(TPResult::True()) != TPResult::True()) ||
David Blaikiebbafb8a2012-03-11 07:00:24 +00003537 (!getLangOpts().CPlusPlus && !isDeclarationSpecifier(true))) {
Douglas Gregord1f69f62010-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 Rosierc1183952012-06-26 22:30:43 +00003554
Richard Smith2bf7fdb2013-01-02 11:42:31 +00003555 if (getLangOpts().CPlusPlus11) {
Richard Smith5d164bc2011-10-15 05:09:34 +00003556 Diag(StartLoc, diag::warn_cxx98_compat_enum_fixed_underlying_type);
Eli Friedman0d0355ab2012-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 Gregord1f69f62010-12-01 17:42:47 +00003563 }
Douglas Gregor0bf31402010-10-08 23:50:27 +00003564 }
3565
Richard Smith0f8ee222012-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 Kyrtzidisf01fa822008-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 McCallfaf5fb42010-08-26 23:41:50 +00003576 Sema::TagUseKind TUK;
John McCall6347b682012-05-07 06:16:58 +00003577 if (!AllowDeclaration) {
Richard Smithbfdb1082012-03-12 08:56:40 +00003578 TUK = Sema::TUK_Reference;
John McCall6347b682012-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 Smith369b9f92012-06-25 21:37:02 +00003589 } else if (DSC != DSC_type_specifier &&
3590 (Tok.is(tok::semi) ||
Richard Smith200f47c2012-07-02 19:14:01 +00003591 (Tok.isAtStartOfLine() &&
3592 !isValidAfterTypeSpecifier(CanBeBitfield)))) {
Richard Smith369b9f92012-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 McCall6347b682012-05-07 06:16:58 +00003601 } else {
John McCallfaf5fb42010-08-26 23:41:50 +00003602 TUK = Sema::TUK_Reference;
John McCall6347b682012-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 Smith7d137e32012-03-23 03:33:32 +00003610
3611 MultiTemplateParamsArg TParams;
Douglas Gregorcbbf3e32010-05-03 17:48:54 +00003612 if (TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate &&
John McCallfaf5fb42010-08-26 23:41:50 +00003613 TUK != Sema::TUK_Reference) {
Richard Smith2bf7fdb2013-01-02 11:42:31 +00003614 if (!getLangOpts().CPlusPlus11 || !SS.isSet()) {
Richard Smith7d137e32012-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 Gregorcbbf3e32010-05-03 17:48:54 +00003631 }
Chad Rosierc1183952012-06-26 22:30:43 +00003632
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00003633 if (TUK == Sema::TUK_Reference)
3634 ProhibitAttributes(attrs);
Richard Smith7d137e32012-03-23 03:33:32 +00003635
Douglas Gregor6cd5ae42011-02-22 02:55:24 +00003636 if (!Name && TUK != Sema::TUK_Definition) {
3637 Diag(Tok, diag::err_enumerator_unnamed_no_def);
Richard Smith7d137e32012-03-23 03:33:32 +00003638
Douglas Gregor6cd5ae42011-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 Smith7d137e32012-03-23 03:33:32 +00003643
Douglas Gregord6ab8742009-05-28 23:31:59 +00003644 bool Owned = false;
John McCall7f41d982009-09-11 04:59:25 +00003645 bool IsDependent = false;
Douglas Gregorba41d012010-04-24 16:38:41 +00003646 const char *PrevSpec = 0;
3647 unsigned DiagID;
John McCall48871652010-08-21 09:40:31 +00003648 Decl *TagDecl = Actions.ActOnTag(getCurScope(), DeclSpec::TST_enum, TUK,
John McCall53fa7142010-12-24 02:08:15 +00003649 StartLoc, SS, Name, NameLoc, attrs.getList(),
Richard Smith7d137e32012-03-23 03:33:32 +00003650 AS, DS.getModulePrivateSpecLoc(), TParams,
Richard Smith0f8ee222012-01-10 01:33:14 +00003651 Owned, IsDependent, ScopedEnumKWLoc,
Abramo Bagnara0e05e242010-12-03 18:54:17 +00003652 IsScopedUsingClassTag, BaseType);
Douglas Gregor0bf31402010-10-08 23:50:27 +00003653
Douglas Gregorba41d012010-04-24 16:38:41 +00003654 if (IsDependent) {
Chad Rosierc1183952012-06-26 22:30:43 +00003655 // This enum has a dependent nested-name-specifier. Handle it as a
Douglas Gregorba41d012010-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 Rosierc1183952012-06-26 22:30:43 +00003662
Douglas Gregor0be31a22010-07-02 17:43:08 +00003663 TypeResult Type = Actions.ActOnDependentTag(getCurScope(), DeclSpec::TST_enum,
Chad Rosierc1183952012-06-26 22:30:43 +00003664 TUK, SS, Name, StartLoc,
Douglas Gregorba41d012010-04-24 16:38:41 +00003665 NameLoc);
3666 if (Type.isInvalid()) {
3667 DS.SetTypeSpecError();
3668 return;
3669 }
Chad Rosierc1183952012-06-26 22:30:43 +00003670
Abramo Bagnara9875a3c2011-03-16 20:16:18 +00003671 if (DS.SetTypeSpecType(DeclSpec::TST_typename, StartLoc,
3672 NameLoc.isValid() ? NameLoc : StartLoc,
3673 PrevSpec, DiagID, Type.get()))
Douglas Gregorba41d012010-04-24 16:38:41 +00003674 Diag(StartLoc, DiagID) << PrevSpec;
Chad Rosierc1183952012-06-26 22:30:43 +00003675
Douglas Gregorba41d012010-04-24 16:38:41 +00003676 return;
3677 }
Mike Stump11289f42009-09-09 15:08:12 +00003678
John McCall48871652010-08-21 09:40:31 +00003679 if (!TagDecl) {
Chad Rosierc1183952012-06-26 22:30:43 +00003680 // The action failed to produce an enumeration tag. If this is a
Douglas Gregorba41d012010-04-24 16:38:41 +00003681 // definition, consume the entire definition.
Richard Smithbfdb1082012-03-12 08:56:40 +00003682 if (Tok.is(tok::l_brace) && TUK != Sema::TUK_Reference) {
Douglas Gregorba41d012010-04-24 16:38:41 +00003683 ConsumeBrace();
3684 SkipUntil(tok::r_brace);
3685 }
Chad Rosierc1183952012-06-26 22:30:43 +00003686
Douglas Gregorba41d012010-04-24 16:38:41 +00003687 DS.SetTypeSpecError();
3688 return;
3689 }
Richard Smith0f8ee222012-01-10 01:33:14 +00003690
Richard Smith369b9f92012-06-25 21:37:02 +00003691 if (Tok.is(tok::l_brace) && TUK != Sema::TUK_Reference)
John McCall6347b682012-05-07 06:16:58 +00003692 ParseEnumBody(StartLoc, TagDecl);
Mike Stump11289f42009-09-09 15:08:12 +00003693
Abramo Bagnara9875a3c2011-03-16 20:16:18 +00003694 if (DS.SetTypeSpecType(DeclSpec::TST_enum, StartLoc,
3695 NameLoc.isValid() ? NameLoc : StartLoc,
3696 PrevSpec, DiagID, TagDecl, Owned))
John McCall49bfce42009-08-03 20:12:06 +00003697 Diag(StartLoc, DiagID) << PrevSpec;
Chris Lattner3b561a32006-08-13 00:12:11 +00003698}
3699
Chris Lattnerc1915e22007-01-25 07:29:02 +00003700/// 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 McCall48871652010-08-21 09:40:31 +00003710void Parser::ParseEnumBody(SourceLocation StartLoc, Decl *EnumDecl) {
Douglas Gregor07665a62009-01-05 19:45:36 +00003711 // Enter the scope of the enum body and start the definition.
3712 ParseScope EnumScope(this, Scope::DeclScope);
Douglas Gregor0be31a22010-07-02 17:43:08 +00003713 Actions.ActOnTagStartDefinition(getCurScope(), EnumDecl);
Douglas Gregor07665a62009-01-05 19:45:36 +00003714
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003715 BalancedDelimiterTracker T(*this, tok::l_brace);
3716 T.consumeOpen();
Mike Stump11289f42009-09-09 15:08:12 +00003717
Chris Lattner37256fb2007-08-27 17:24:30 +00003718 // C does not allow an empty enumerator-list, C++ does [dcl.enum].
David Blaikiebbafb8a2012-03-11 07:00:24 +00003719 if (Tok.is(tok::r_brace) && !getLangOpts().CPlusPlus)
Fariborz Jahanian6e814922010-05-28 22:23:22 +00003720 Diag(Tok, diag::error_empty_enum);
Mike Stump11289f42009-09-09 15:08:12 +00003721
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003722 SmallVector<Decl *, 32> EnumConstantDecls;
Chris Lattnerc1915e22007-01-25 07:29:02 +00003723
John McCall48871652010-08-21 09:40:31 +00003724 Decl *LastEnumConstDecl = 0;
Mike Stump11289f42009-09-09 15:08:12 +00003725
Chris Lattnerc1915e22007-01-25 07:29:02 +00003726 // Parse the enumerator-list.
Chris Lattner76c72282007-10-09 17:33:22 +00003727 while (Tok.is(tok::identifier)) {
Chris Lattnerc1915e22007-01-25 07:29:02 +00003728 IdentifierInfo *Ident = Tok.getIdentifierInfo();
3729 SourceLocation IdentLoc = ConsumeToken();
Mike Stump11289f42009-09-09 15:08:12 +00003730
John McCall811a0f52010-10-22 23:36:17 +00003731 // If attributes exist after the enumerator, parse them.
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00003732 ParsedAttributesWithRange attrs(AttrFactory);
John McCall53fa7142010-12-24 02:08:15 +00003733 MaybeParseGNUAttributes(attrs);
Richard Smith89645bc2013-01-02 12:01:23 +00003734 MaybeParseCXX11Attributes(attrs);
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00003735 ProhibitAttributes(attrs);
John McCall811a0f52010-10-22 23:36:17 +00003736
Chris Lattnerc1915e22007-01-25 07:29:02 +00003737 SourceLocation EqualLoc;
John McCalldadc5752010-08-24 06:29:42 +00003738 ExprResult AssignedVal;
John McCall2ec85372012-05-07 06:16:41 +00003739 ParsingDeclRAIIObject PD(*this, ParsingDeclRAIIObject::NoParent);
Chad Rosierc1183952012-06-26 22:30:43 +00003740
Chris Lattner76c72282007-10-09 17:33:22 +00003741 if (Tok.is(tok::equal)) {
Chris Lattnerc1915e22007-01-25 07:29:02 +00003742 EqualLoc = ConsumeToken();
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00003743 AssignedVal = ParseConstantExpression();
3744 if (AssignedVal.isInvalid())
Chris Lattnerda6c2ce2007-04-27 19:13:15 +00003745 SkipUntil(tok::comma, tok::r_brace, true, true);
Chris Lattnerc1915e22007-01-25 07:29:02 +00003746 }
Mike Stump11289f42009-09-09 15:08:12 +00003747
Chris Lattnerc1915e22007-01-25 07:29:02 +00003748 // Install the enumerator constant into EnumDecl.
John McCall48871652010-08-21 09:40:31 +00003749 Decl *EnumConstDecl = Actions.ActOnEnumConstant(getCurScope(), EnumDecl,
3750 LastEnumConstDecl,
3751 IdentLoc, Ident,
John McCall53fa7142010-12-24 02:08:15 +00003752 attrs.getList(), EqualLoc,
John McCall48871652010-08-21 09:40:31 +00003753 AssignedVal.release());
Fariborz Jahanian329b3512011-12-09 01:15:54 +00003754 PD.complete(EnumConstDecl);
Chad Rosierc1183952012-06-26 22:30:43 +00003755
Chris Lattner4ef40012007-06-11 01:28:17 +00003756 EnumConstantDecls.push_back(EnumConstDecl);
3757 LastEnumConstDecl = EnumConstDecl;
Mike Stump11289f42009-09-09 15:08:12 +00003758
Douglas Gregorce66d022010-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 Rosierc1183952012-06-26 22:30:43 +00003762 Diag(Loc, diag::err_enumerator_list_missing_comma)
Douglas Gregorce66d022010-09-07 14:51:08 +00003763 << FixItHint::CreateInsertion(Loc, ", ");
3764 continue;
3765 }
Chad Rosierc1183952012-06-26 22:30:43 +00003766
Chris Lattner76c72282007-10-09 17:33:22 +00003767 if (Tok.isNot(tok::comma))
Chris Lattnerc1915e22007-01-25 07:29:02 +00003768 break;
3769 SourceLocation CommaLoc = ConsumeToken();
Mike Stump11289f42009-09-09 15:08:12 +00003770
Richard Smith5d164bc2011-10-15 05:09:34 +00003771 if (Tok.isNot(tok::identifier)) {
Richard Smith2bf7fdb2013-01-02 11:42:31 +00003772 if (!getLangOpts().C99 && !getLangOpts().CPlusPlus11)
Richard Smith87f5dc52012-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 Smith5d164bc2011-10-15 05:09:34 +00003776 << FixItHint::CreateRemoval(CommaLoc);
Richard Smith2bf7fdb2013-01-02 11:42:31 +00003777 else if (getLangOpts().CPlusPlus11)
Richard Smith5d164bc2011-10-15 05:09:34 +00003778 Diag(CommaLoc, diag::warn_cxx98_compat_enumerator_list_comma)
3779 << FixItHint::CreateRemoval(CommaLoc);
3780 }
Chris Lattnerc1915e22007-01-25 07:29:02 +00003781 }
Mike Stump11289f42009-09-09 15:08:12 +00003782
Chris Lattnerc1915e22007-01-25 07:29:02 +00003783 // Eat the }.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003784 T.consumeClose();
Chris Lattnerc1915e22007-01-25 07:29:02 +00003785
Chris Lattnerc1915e22007-01-25 07:29:02 +00003786 // If attributes exist after the identifier list, parse them.
John McCall084e83d2011-03-24 11:26:52 +00003787 ParsedAttributes attrs(AttrFactory);
John McCall53fa7142010-12-24 02:08:15 +00003788 MaybeParseGNUAttributes(attrs);
Douglas Gregor82ac25e2009-01-08 20:45:30 +00003789
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003790 Actions.ActOnEnumBody(StartLoc, T.getOpenLocation(), T.getCloseLocation(),
Dmitri Gribenkoe5fde992013-04-27 20:23:52 +00003791 EnumDecl, EnumConstantDecls,
3792 getCurScope(),
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003793 attrs.getList());
Mike Stump11289f42009-09-09 15:08:12 +00003794
Douglas Gregor82ac25e2009-01-08 20:45:30 +00003795 EnumScope.Exit();
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003796 Actions.ActOnTagFinishDefinition(getCurScope(), EnumDecl,
3797 T.getCloseLocation());
Richard Smith369b9f92012-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 Smith200f47c2012-07-02 19:14:01 +00003801 bool CanBeBitfield = getCurScope()->getFlags() & Scope::ClassScope;
3802 if (!isValidAfterTypeSpecifier(CanBeBitfield)) {
Richard Smith369b9f92012-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 }
Chris Lattnerc1915e22007-01-25 07:29:02 +00003810}
Chris Lattner3b561a32006-08-13 00:12:11 +00003811
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003812/// isTypeSpecifierQualifier - Return true if the current token could be the
Steve Naroff69e8f9e2008-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 Collingbourne599cb8e2011-03-18 22:38:29 +00003817
3818 // type-qualifier only in OpenCL
3819 case tok::kw_private:
David Blaikiebbafb8a2012-03-11 07:00:24 +00003820 return getLangOpts().OpenCL;
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00003821
Steve Naroff69e8f9e2008-02-11 23:15:56 +00003822 // type-qualifier
3823 case tok::kw_const:
3824 case tok::kw_volatile:
3825 case tok::kw_restrict:
Peter Collingbourne599cb8e2011-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 Naroff69e8f9e2008-02-11 23:15:56 +00003833 return true;
3834 }
3835}
3836
Chris Lattnerfd48afe2010-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 Pichet84133e42011-04-28 01:59:37 +00003846 case tok::kw___int64:
Richard Smithf016bbc2012-04-04 06:24:32 +00003847 case tok::kw___int128:
Chris Lattnerfd48afe2010-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 Korobeynikovf0c267e2011-10-14 23:23:15 +00003858 case tok::kw_half:
Chris Lattnerfd48afe2010-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 Rosierc1183952012-06-26 22:30:43 +00003867
Guy Benyeid8a08ea2012-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 Benyei61054192013-02-07 10:55:47 +00003875 case tok::kw_sampler_t:
Guy Benyei1b4fb3e2013-01-20 12:31:11 +00003876 case tok::kw_event_t:
Guy Benyeid8a08ea2012-12-18 14:38:23 +00003877
Chris Lattnerfd48afe2010-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 Matosdc86f942012-08-31 18:45:21 +00003881 case tok::kw___interface:
Chris Lattnerfd48afe2010-02-28 18:18:36 +00003882 case tok::kw_union:
3883 // enum-specifier
3884 case tok::kw_enum:
Chad Rosierc1183952012-06-26 22:30:43 +00003885
Chris Lattnerfd48afe2010-02-28 18:18:36 +00003886 // typedef-name
3887 case tok::annot_typename:
3888 return true;
3889 }
3890}
3891
Steve Naroff69e8f9e2008-02-11 23:15:56 +00003892/// isTypeSpecifierQualifier - Return true if the current token could be the
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003893/// start of a specifier-qualifier-list.
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00003894bool Parser::isTypeSpecifierQualifier() {
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003895 switch (Tok.getKind()) {
3896 default: return false;
Mike Stump11289f42009-09-09 15:08:12 +00003897
Chris Lattner020bab92009-01-04 23:41:41 +00003898 case tok::identifier: // foo::bar
John Thompson22334602010-02-05 00:12:22 +00003899 if (TryAltiVecVectorToken())
3900 return true;
3901 // Fall through.
Douglas Gregor333489b2009-03-27 23:10:48 +00003902 case tok::kw_typename: // typename T::type
Chris Lattner020bab92009-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 McCall1f476a12010-02-26 08:45:28 +00003906 return true;
3907 if (Tok.is(tok::identifier))
3908 return false;
3909 return isTypeSpecifierQualifier();
Douglas Gregor333489b2009-03-27 23:10:48 +00003910
Chris Lattner020bab92009-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 Lattner020bab92009-01-04 23:41:41 +00003916 if (TryAnnotateTypeOrScopeToken())
John McCall1f476a12010-02-26 08:45:28 +00003917 return true;
3918 return isTypeSpecifierQualifier();
Mike Stump11289f42009-09-09 15:08:12 +00003919
Chris Lattnere37e2332006-08-15 04:50:22 +00003920 // GNU attributes support.
3921 case tok::kw___attribute:
Steve Naroffad373bd2007-07-31 12:34:36 +00003922 // GNU typeof support.
3923 case tok::kw_typeof:
Mike Stump11289f42009-09-09 15:08:12 +00003924
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003925 // type-specifiers
3926 case tok::kw_short:
3927 case tok::kw_long:
Francois Pichet84133e42011-04-28 01:59:37 +00003928 case tok::kw___int64:
Richard Smithf016bbc2012-04-04 06:24:32 +00003929 case tok::kw___int128:
Chris Lattnerf5fbd792006-08-10 23:56:11 +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 Kyrtzidis40e9e482008-08-09 16:51:54 +00003936 case tok::kw_wchar_t:
Alisdair Mereditha9ad47d2009-07-14 06:30:34 +00003937 case tok::kw_char16_t:
3938 case tok::kw_char32_t:
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003939 case tok::kw_int:
Anton Korobeynikovf0c267e2011-10-14 23:23:15 +00003940 case tok::kw_half:
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003941 case tok::kw_float:
3942 case tok::kw_double:
Chris Lattnerbb31a422007-11-15 05:25:19 +00003943 case tok::kw_bool:
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003944 case tok::kw__Bool:
3945 case tok::kw__Decimal32:
3946 case tok::kw__Decimal64:
3947 case tok::kw__Decimal128:
John Thompson22334602010-02-05 00:12:22 +00003948 case tok::kw___vector:
Mike Stump11289f42009-09-09 15:08:12 +00003949
Guy Benyeid8a08ea2012-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 Benyei61054192013-02-07 10:55:47 +00003957 case tok::kw_sampler_t:
Guy Benyei1b4fb3e2013-01-20 12:31:11 +00003958 case tok::kw_event_t:
Guy Benyeid8a08ea2012-12-18 14:38:23 +00003959
Chris Lattner861a2262008-04-13 18:59:07 +00003960 // struct-or-union-specifier (C99) or class-specifier (C++)
3961 case tok::kw_class:
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003962 case tok::kw_struct:
Joao Matosdc86f942012-08-31 18:45:21 +00003963 case tok::kw___interface:
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003964 case tok::kw_union:
3965 // enum-specifier
3966 case tok::kw_enum:
Mike Stump11289f42009-09-09 15:08:12 +00003967
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003968 // type-qualifier
3969 case tok::kw_const:
3970 case tok::kw_volatile:
3971 case tok::kw_restrict:
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00003972
John McCallea0a39e2012-11-14 00:49:39 +00003973 // Debugger support.
3974 case tok::kw___unknown_anytype:
3975
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00003976 // typedef-name
Chris Lattnera8a3f732009-01-06 05:06:21 +00003977 case tok::annot_typename:
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003978 return true;
Mike Stump11289f42009-09-09 15:08:12 +00003979
Chris Lattner409bf7d2008-10-20 00:25:30 +00003980 // GNU ObjC bizarre protocol extension: <proto1,proto2> with implicit 'id'.
3981 case tok::less:
David Blaikiebbafb8a2012-03-11 07:00:24 +00003982 return getLangOpts().ObjC1;
Mike Stump11289f42009-09-09 15:08:12 +00003983
Steve Naroff44ac7772008-12-25 14:16:32 +00003984 case tok::kw___cdecl:
3985 case tok::kw___stdcall:
3986 case tok::kw___fastcall:
Douglas Gregora941dca2010-05-18 16:57:00 +00003987 case tok::kw___thiscall:
Eli Friedman53339e02009-06-08 23:27:34 +00003988 case tok::kw___w64:
3989 case tok::kw___ptr64:
Francois Pichetf2fb4112011-08-25 00:36:46 +00003990 case tok::kw___ptr32:
Dawn Perchik335e16b2010-09-03 01:29:35 +00003991 case tok::kw___pascal:
Francois Pichet17ed0202011-08-18 09:59:55 +00003992 case tok::kw___unaligned:
Peter Collingbourne599cb8e2011-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 Friedman53339e02009-06-08 23:27:34 +00004002 return true;
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00004003
4004 case tok::kw_private:
David Blaikiebbafb8a2012-03-11 07:00:24 +00004005 return getLangOpts().OpenCL;
Eli Friedman0dfb8892011-10-06 23:00:33 +00004006
Richard Smith8e1ac332013-03-28 01:55:44 +00004007 // C11 _Atomic
Eli Friedman0dfb8892011-10-06 23:00:33 +00004008 case tok::kw__Atomic:
4009 return true;
Chris Lattnerf5fbd792006-08-10 23:56:11 +00004010 }
4011}
4012
Chris Lattneracd58a32006-08-06 17:24:14 +00004013/// isDeclarationSpecifier() - Return true if the current token is part of a
4014/// declaration specifier.
Douglas Gregorabf4a3e2010-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) {
Chris Lattneracd58a32006-08-06 17:24:14 +00004019 switch (Tok.getKind()) {
4020 default: return false;
Mike Stump11289f42009-09-09 15:08:12 +00004021
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00004022 case tok::kw_private:
David Blaikiebbafb8a2012-03-11 07:00:24 +00004023 return getLangOpts().OpenCL;
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00004024
Chris Lattner020bab92009-01-04 23:41:41 +00004025 case tok::identifier: // foo::bar
Steve Naroff9527bbf2009-03-09 21:12:44 +00004026 // Unfortunate hack to support "Class.factoryMethod" notation.
David Blaikiebbafb8a2012-03-11 07:00:24 +00004027 if (getLangOpts().ObjC1 && NextToken().is(tok::period))
Steve Naroff9527bbf2009-03-09 21:12:44 +00004028 return false;
John Thompson22334602010-02-05 00:12:22 +00004029 if (TryAltiVecVectorToken())
4030 return true;
4031 // Fall through.
David Blaikie15a430a2011-12-04 05:04:18 +00004032 case tok::kw_decltype: // decltype(T())::type
Douglas Gregor333489b2009-03-27 23:10:48 +00004033 case tok::kw_typename: // typename T::type
Chris Lattner020bab92009-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 McCall1f476a12010-02-26 08:45:28 +00004037 return true;
4038 if (Tok.is(tok::identifier))
4039 return false;
Chad Rosierc1183952012-06-26 22:30:43 +00004040
Douglas Gregorabf4a3e2010-09-16 01:51:54 +00004041 // If we're in Objective-C and we have an Objective-C class type followed
Chad Rosierc1183952012-06-26 22:30:43 +00004042 // by an identifier and then either ':' or ']', in a place where an
Douglas Gregorabf4a3e2010-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 Rosierc1183952012-06-26 22:30:43 +00004046 if (DisambiguatingWithExpression &&
Douglas Gregorabf4a3e2010-09-16 01:51:54 +00004047 isStartOfObjCClassMessageMissingOpenBracket())
4048 return false;
Chad Rosierc1183952012-06-26 22:30:43 +00004049
John McCall1f476a12010-02-26 08:45:28 +00004050 return isDeclarationSpecifier();
4051
Chris Lattner020bab92009-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 Stump11289f42009-09-09 15:08:12 +00004056
Chris Lattner020bab92009-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 McCall1f476a12010-02-26 08:45:28 +00004060 return true;
4061 return isDeclarationSpecifier();
Mike Stump11289f42009-09-09 15:08:12 +00004062
Chris Lattneracd58a32006-08-06 17:24:14 +00004063 // storage-class-specifier
4064 case tok::kw_typedef:
4065 case tok::kw_extern:
Steve Naroff2050b0d2007-12-18 00:16:02 +00004066 case tok::kw___private_extern__:
Chris Lattneracd58a32006-08-06 17:24:14 +00004067 case tok::kw_static:
4068 case tok::kw_auto:
4069 case tok::kw_register:
4070 case tok::kw___thread:
Richard Smithb4a9e862013-04-12 22:46:28 +00004071 case tok::kw_thread_local:
4072 case tok::kw__Thread_local:
Mike Stump11289f42009-09-09 15:08:12 +00004073
Douglas Gregor26701a42011-09-09 02:06:17 +00004074 // Modules
4075 case tok::kw___module_private__:
Chad Rosierc1183952012-06-26 22:30:43 +00004076
John McCallea0a39e2012-11-14 00:49:39 +00004077 // Debugger support
4078 case tok::kw___unknown_anytype:
4079
Chris Lattneracd58a32006-08-06 17:24:14 +00004080 // type-specifiers
4081 case tok::kw_short:
4082 case tok::kw_long:
Francois Pichet84133e42011-04-28 01:59:37 +00004083 case tok::kw___int64:
Richard Smithf016bbc2012-04-04 06:24:32 +00004084 case tok::kw___int128:
Chris Lattneracd58a32006-08-06 17:24:14 +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 Kyrtzidis40e9e482008-08-09 16:51:54 +00004091 case tok::kw_wchar_t:
Alisdair Mereditha9ad47d2009-07-14 06:30:34 +00004092 case tok::kw_char16_t:
4093 case tok::kw_char32_t:
4094
Chris Lattneracd58a32006-08-06 17:24:14 +00004095 case tok::kw_int:
Anton Korobeynikovf0c267e2011-10-14 23:23:15 +00004096 case tok::kw_half:
Chris Lattneracd58a32006-08-06 17:24:14 +00004097 case tok::kw_float:
4098 case tok::kw_double:
Chris Lattnerbb31a422007-11-15 05:25:19 +00004099 case tok::kw_bool:
Chris Lattneracd58a32006-08-06 17:24:14 +00004100 case tok::kw__Bool:
4101 case tok::kw__Decimal32:
4102 case tok::kw__Decimal64:
4103 case tok::kw__Decimal128:
John Thompson22334602010-02-05 00:12:22 +00004104 case tok::kw___vector:
Mike Stump11289f42009-09-09 15:08:12 +00004105
Guy Benyeid8a08ea2012-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 Benyei61054192013-02-07 10:55:47 +00004113 case tok::kw_sampler_t:
Guy Benyei1b4fb3e2013-01-20 12:31:11 +00004114 case tok::kw_event_t:
Guy Benyeid8a08ea2012-12-18 14:38:23 +00004115
Chris Lattner861a2262008-04-13 18:59:07 +00004116 // struct-or-union-specifier (C99) or class-specifier (C++)
4117 case tok::kw_class:
Chris Lattneracd58a32006-08-06 17:24:14 +00004118 case tok::kw_struct:
4119 case tok::kw_union:
Joao Matosdc86f942012-08-31 18:45:21 +00004120 case tok::kw___interface:
Chris Lattneracd58a32006-08-06 17:24:14 +00004121 // enum-specifier
4122 case tok::kw_enum:
Mike Stump11289f42009-09-09 15:08:12 +00004123
Chris Lattneracd58a32006-08-06 17:24:14 +00004124 // type-qualifier
4125 case tok::kw_const:
4126 case tok::kw_volatile:
4127 case tok::kw_restrict:
Steve Naroffad373bd2007-07-31 12:34:36 +00004128
Chris Lattneracd58a32006-08-06 17:24:14 +00004129 // function-specifier
4130 case tok::kw_inline:
Douglas Gregor61956c42008-10-31 09:07:45 +00004131 case tok::kw_virtual:
4132 case tok::kw_explicit:
Richard Smith0015f092013-01-17 22:16:11 +00004133 case tok::kw__Noreturn:
Chris Lattner7b20dc72007-08-09 16:40:21 +00004134
Richard Smith1dba27c2013-01-29 09:02:09 +00004135 // alignment-specifier
4136 case tok::kw__Alignas:
4137
Richard Smithd16fe122012-10-25 00:00:53 +00004138 // friend keyword.
4139 case tok::kw_friend:
4140
Peter Collingbourne3d9cbdc2011-04-15 00:35:57 +00004141 // static_assert-declaration
4142 case tok::kw__Static_assert:
4143
Chris Lattner599e47e2007-08-09 17:01:07 +00004144 // GNU typeof support.
4145 case tok::kw_typeof:
Mike Stump11289f42009-09-09 15:08:12 +00004146
Chris Lattner599e47e2007-08-09 17:01:07 +00004147 // GNU attributes.
Chris Lattner7b20dc72007-08-09 16:40:21 +00004148 case tok::kw___attribute:
Mike Stump11289f42009-09-09 15:08:12 +00004149
Richard Smithd16fe122012-10-25 00:00:53 +00004150 // C++11 decltype and constexpr.
David Blaikie15a430a2011-12-04 05:04:18 +00004151 case tok::annot_decltype:
Richard Smithd16fe122012-10-25 00:00:53 +00004152 case tok::kw_constexpr:
Francois Pichete878cb62011-06-19 08:02:06 +00004153
Richard Smith8e1ac332013-03-28 01:55:44 +00004154 // C11 _Atomic
Eli Friedman0dfb8892011-10-06 23:00:33 +00004155 case tok::kw__Atomic:
4156 return true;
4157
Chris Lattner8b2ec162008-07-26 03:38:44 +00004158 // GNU ObjC bizarre protocol extension: <proto1,proto2> with implicit 'id'.
4159 case tok::less:
David Blaikiebbafb8a2012-03-11 07:00:24 +00004160 return getLangOpts().ObjC1;
Mike Stump11289f42009-09-09 15:08:12 +00004161
Douglas Gregor19b7acf2011-04-27 05:41:15 +00004162 // typedef-name
4163 case tok::annot_typename:
4164 return !DisambiguatingWithExpression ||
4165 !isStartOfObjCClassMessageMissingOpenBracket();
Chad Rosierc1183952012-06-26 22:30:43 +00004166
Steve Narofff192fab2009-01-06 19:34:12 +00004167 case tok::kw___declspec:
Steve Naroff44ac7772008-12-25 14:16:32 +00004168 case tok::kw___cdecl:
4169 case tok::kw___stdcall:
4170 case tok::kw___fastcall:
Douglas Gregora941dca2010-05-18 16:57:00 +00004171 case tok::kw___thiscall:
Eli Friedman53339e02009-06-08 23:27:34 +00004172 case tok::kw___w64:
Aaron Ballman317a77f2013-05-22 23:25:32 +00004173 case tok::kw___sptr:
4174 case tok::kw___uptr:
Eli Friedman53339e02009-06-08 23:27:34 +00004175 case tok::kw___ptr64:
Francois Pichetf2fb4112011-08-25 00:36:46 +00004176 case tok::kw___ptr32:
Eli Friedman53339e02009-06-08 23:27:34 +00004177 case tok::kw___forceinline:
Dawn Perchik335e16b2010-09-03 01:29:35 +00004178 case tok::kw___pascal:
Francois Pichet17ed0202011-08-18 09:59:55 +00004179 case tok::kw___unaligned:
Peter Collingbourne599cb8e2011-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 Friedman53339e02009-06-08 23:27:34 +00004189 return true;
Chris Lattneracd58a32006-08-06 17:24:14 +00004190 }
4191}
4192
Douglas Gregor9de54ea2010-01-13 17:31:36 +00004193bool Parser::isConstructorDeclarator() {
4194 TentativeParsingAction TPA(*this);
4195
4196 // Parse the C++ scope specifier.
4197 CXXScopeSpec SS;
Chad Rosierc1183952012-06-26 22:30:43 +00004198 if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(),
Douglas Gregordf593fb2011-11-07 17:33:42 +00004199 /*EnteringContext=*/true)) {
John McCall1f476a12010-02-26 08:45:28 +00004200 TPA.Revert();
4201 return false;
4202 }
Douglas Gregor9de54ea2010-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 Smith43f340f2012-03-27 23:05:05 +00004214 // Current class name must be followed by a left parenthesis.
Douglas Gregor9de54ea2010-01-13 17:31:36 +00004215 if (Tok.isNot(tok::l_paren)) {
4216 TPA.Revert();
4217 return false;
4218 }
4219 ConsumeParen();
4220
Richard Smith43f340f2012-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 Gregor9de54ea2010-01-13 17:31:36 +00004225 TPA.Revert();
4226 return true;
4227 }
4228
Richard Smithf2163662013-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 Gregor9de54ea2010-01-13 17:31:36 +00004238 // If we need to, enter the specified scope.
4239 DeclaratorScopeObj DeclScopeObj(*this, SS);
Douglas Gregor0be31a22010-07-02 17:43:08 +00004240 if (SS.isSet() && Actions.ShouldEnterDeclaratorScope(getCurScope(), SS))
Douglas Gregor9de54ea2010-01-13 17:31:36 +00004241 DeclScopeObj.EnterDeclaratorScope();
4242
Francois Pichet79f3a872011-01-31 04:54:32 +00004243 // Optionally skip Microsoft attributes.
John McCall084e83d2011-03-24 11:26:52 +00004244 ParsedAttributes Attrs(AttrFactory);
Francois Pichet79f3a872011-01-31 04:54:32 +00004245 MaybeParseMicrosoftAttributes(Attrs);
4246
Douglas Gregor9de54ea2010-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 Smithefd009d2012-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 Smith1453e312012-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 Smithefd009d2012-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 Gregor9de54ea2010-01-13 17:31:36 +00004287 TPA.Revert();
4288 return IsConstructor;
4289}
Chris Lattnerb9093cd2006-08-04 04:39:53 +00004290
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004291/// ParseTypeQualifierListOpt
Dawn Perchik335e16b2010-09-03 01:29:35 +00004292/// type-qualifier-list: [C99 6.7.5]
4293/// type-qualifier
Chad Rosierc1183952012-06-26 22:30:43 +00004294/// [vendor] attributes
Dawn Perchik335e16b2010-09-03 01:29:35 +00004295/// [ only if VendorAttributesAllowed=true ]
4296/// type-qualifier-list type-qualifier
Chad Rosierc1183952012-06-26 22:30:43 +00004297/// [vendor] type-qualifier-list attributes
Dawn Perchik335e16b2010-09-03 01:29:35 +00004298/// [ only if VendorAttributesAllowed=true ]
4299/// [C++0x] attribute-specifier[opt] is allowed before cv-qualifier-seq
Richard Smith89645bc2013-01-02 12:01:23 +00004300/// [ only if CXX11AttributesAllowed=true ]
Dawn Perchik335e16b2010-09-03 01:29:35 +00004301/// Note: vendor can be GNU, MS, etc.
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004302///
Dawn Perchik335e16b2010-09-03 01:29:35 +00004303void Parser::ParseTypeQualifierListOpt(DeclSpec &DS,
4304 bool VendorAttributesAllowed,
Richard Smith8e1ac332013-03-28 01:55:44 +00004305 bool CXX11AttributesAllowed,
4306 bool AtomicAllowed) {
Richard Smith2bf7fdb2013-01-02 11:42:31 +00004307 if (getLangOpts().CPlusPlus11 && CXX11AttributesAllowed &&
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004308 isCXX11AttributeSpecifier()) {
John McCall084e83d2011-03-24 11:26:52 +00004309 ParsedAttributesWithRange attrs(AttrFactory);
Richard Smith3dff2512012-04-10 03:25:07 +00004310 ParseCXX11Attributes(attrs);
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004311 DS.takeAttributesFrom(attrs);
Alexis Hunt96d5c762009-11-21 08:43:09 +00004312 }
Abramo Bagnaraf2a79d92011-03-12 11:17:06 +00004313
4314 SourceLocation EndLoc;
4315
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004316 while (1) {
John McCall49bfce42009-08-03 20:12:06 +00004317 bool isInvalid = false;
Chris Lattnerd9c3c592006-08-05 06:26:47 +00004318 const char *PrevSpec = 0;
John McCall49bfce42009-08-03 20:12:06 +00004319 unsigned DiagID = 0;
Chris Lattner60809f52006-11-28 05:18:46 +00004320 SourceLocation Loc = Tok.getLocation();
Chris Lattnerd9c3c592006-08-05 06:26:47 +00004321
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004322 switch (Tok.getKind()) {
Douglas Gregor28c78432010-08-27 17:35:51 +00004323 case tok::code_completion:
4324 Actions.CodeCompleteTypeQualifiers(DS);
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +00004325 return cutOffParsing();
Chad Rosierc1183952012-06-26 22:30:43 +00004326
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004327 case tok::kw_const:
John McCall49bfce42009-08-03 20:12:06 +00004328 isInvalid = DS.SetTypeQual(DeclSpec::TQ_const , Loc, PrevSpec, DiagID,
Richard Smith87e79512012-10-17 23:31:46 +00004329 getLangOpts());
Chris Lattnerd9c3c592006-08-05 06:26:47 +00004330 break;
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004331 case tok::kw_volatile:
John McCall49bfce42009-08-03 20:12:06 +00004332 isInvalid = DS.SetTypeQual(DeclSpec::TQ_volatile, Loc, PrevSpec, DiagID,
Richard Smith87e79512012-10-17 23:31:46 +00004333 getLangOpts());
Chris Lattnerd9c3c592006-08-05 06:26:47 +00004334 break;
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004335 case tok::kw_restrict:
John McCall49bfce42009-08-03 20:12:06 +00004336 isInvalid = DS.SetTypeQual(DeclSpec::TQ_restrict, Loc, PrevSpec, DiagID,
Richard Smith87e79512012-10-17 23:31:46 +00004337 getLangOpts());
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004338 break;
Richard Smith8e1ac332013-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 Collingbourne599cb8e2011-03-18 22:38:29 +00004345
4346 // OpenCL qualifiers:
Chad Rosierc1183952012-06-26 22:30:43 +00004347 case tok::kw_private:
David Blaikiebbafb8a2012-03-11 07:00:24 +00004348 if (!getLangOpts().OpenCL)
Peter Collingbourne599cb8e2011-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 Ballman317a77f2013-05-22 23:25:32 +00004360 case tok::kw___sptr:
4361 case tok::kw___uptr:
Eli Friedman53339e02009-06-08 23:27:34 +00004362 case tok::kw___w64:
Steve Narofff9c29d42008-12-25 14:41:26 +00004363 case tok::kw___ptr64:
Francois Pichetf2fb4112011-08-25 00:36:46 +00004364 case tok::kw___ptr32:
Steve Naroff44ac7772008-12-25 14:16:32 +00004365 case tok::kw___cdecl:
4366 case tok::kw___stdcall:
4367 case tok::kw___fastcall:
Douglas Gregora941dca2010-05-18 16:57:00 +00004368 case tok::kw___thiscall:
Francois Pichet17ed0202011-08-18 09:59:55 +00004369 case tok::kw___unaligned:
Dawn Perchik335e16b2010-09-03 01:29:35 +00004370 if (VendorAttributesAllowed) {
John McCall53fa7142010-12-24 02:08:15 +00004371 ParseMicrosoftTypeAttributes(DS.getAttributes());
Eli Friedman53339e02009-06-08 23:27:34 +00004372 continue;
4373 }
4374 goto DoneWithTypeQuals;
Dawn Perchik335e16b2010-09-03 01:29:35 +00004375 case tok::kw___pascal:
4376 if (VendorAttributesAllowed) {
John McCall53fa7142010-12-24 02:08:15 +00004377 ParseBorlandTypeAttributes(DS.getAttributes());
Dawn Perchik335e16b2010-09-03 01:29:35 +00004378 continue;
4379 }
4380 goto DoneWithTypeQuals;
Chris Lattnere37e2332006-08-15 04:50:22 +00004381 case tok::kw___attribute:
Dawn Perchik335e16b2010-09-03 01:29:35 +00004382 if (VendorAttributesAllowed) {
John McCall53fa7142010-12-24 02:08:15 +00004383 ParseGNUAttributes(DS.getAttributes());
Chris Lattnercf0bab22008-12-18 07:02:59 +00004384 continue; // do *not* consume the next token!
4385 }
4386 // otherwise, FALL THROUGH!
4387 default:
Steve Naroff44ac7772008-12-25 14:16:32 +00004388 DoneWithTypeQuals:
Chris Lattnercf0bab22008-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 Gregore3e01a22009-04-01 22:41:11 +00004391 DS.Finish(Diags, PP);
Abramo Bagnaraf2a79d92011-03-12 11:17:06 +00004392 if (EndLoc.isValid())
4393 DS.SetRangeEnd(EndLoc);
Chris Lattnercf0bab22008-12-18 07:02:59 +00004394 return;
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004395 }
Chris Lattnerb6ec4e72008-12-18 06:50:14 +00004396
Chris Lattnerd9c3c592006-08-05 06:26:47 +00004397 // If the specifier combination wasn't legal, issue a diagnostic.
4398 if (isInvalid) {
4399 assert(PrevSpec && "Method did not return previous specifier!");
Chris Lattner6d29c102008-11-18 07:48:38 +00004400 Diag(Tok, DiagID) << PrevSpec;
Chris Lattnerd9c3c592006-08-05 06:26:47 +00004401 }
Abramo Bagnaraf2a79d92011-03-12 11:17:06 +00004402 EndLoc = ConsumeToken();
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004403 }
4404}
4405
Chris Lattnerd5d0a6c2006-08-07 00:58:14 +00004406
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 Redlbd150f42008-11-21 19:14:01 +00004412 ParseDeclaratorInternal(D, &Parser::ParseDirectDeclarator);
Chris Lattnerd5d0a6c2006-08-07 00:58:14 +00004413}
4414
Richard Smith0efa75c2012-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 Redlbd150f42008-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 Gregordbc5daf2008-11-07 20:08:42 +00004429/// ptr-operator production.
4430///
Richard Smith09f76ee2011-10-19 21:33:05 +00004431/// If the grammar of this construct is extended, matching changes must also be
Richard Smith1453e312012-03-27 01:42:32 +00004432/// made to TryParseDeclarator and MightBeDeclarator, and possibly to
4433/// isConstructorDeclarator.
Richard Smith09f76ee2011-10-19 21:33:05 +00004434///
Sebastian Redl9ed6efd2009-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
Chris Lattner6c7416c2006-08-07 00:19:33 +00004439///
4440/// pointer: [C99 6.7.5]
4441/// '*' type-qualifier-list[opt]
4442/// '*' type-qualifier-list[opt] pointer
4443///
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004444/// ptr-operator:
4445/// '*' cv-qualifier-seq[opt]
4446/// '&'
Sebastian Redled0f3b02009-03-15 22:02:01 +00004447/// [C++0x] '&&'
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004448/// [GNU] '&' restrict[opt] attributes[opt]
Sebastian Redled0f3b02009-03-15 22:02:01 +00004449/// [GNU?] '&&' restrict[opt] attributes[opt]
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004450/// '::'[opt] nested-name-specifier '*' cv-qualifier-seq[opt]
Sebastian Redlbd150f42008-11-21 19:14:01 +00004451void Parser::ParseDeclaratorInternal(Declarator &D,
4452 DirectDeclParseFunction DirectDeclParser) {
Douglas Gregor66a985d2009-08-26 14:27:30 +00004453 if (Diags.hasAllExtensionsSilenced())
4454 D.setExtension();
Chad Rosierc1183952012-06-26 22:30:43 +00004455
Sebastian Redl9ed6efd2009-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 Blaikiebbafb8a2012-03-11 07:00:24 +00004459 if (getLangOpts().CPlusPlus &&
Chris Lattner803802d2009-03-24 17:04:48 +00004460 (Tok.is(tok::coloncolon) || Tok.is(tok::identifier) ||
4461 Tok.is(tok::annot_cxxscope))) {
Douglas Gregordf593fb2011-11-07 17:33:42 +00004462 bool EnteringContext = D.getContext() == Declarator::FileContext ||
4463 D.getContext() == Declarator::MemberContext;
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004464 CXXScopeSpec SS;
Douglas Gregordf593fb2011-11-07 17:33:42 +00004465 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), EnteringContext);
John McCall1f476a12010-02-26 08:45:28 +00004466
Jeffrey Yasskin4e150f82010-04-07 23:29:58 +00004467 if (SS.isNotEmpty()) {
Mike Stump11289f42009-09-09 15:08:12 +00004468 if (Tok.isNot(tok::star)) {
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004469 // The scope spec really belongs to the direct-declarator.
Richard Smith5f044ad2013-01-08 22:43:49 +00004470 if (D.mayHaveIdentifier())
4471 D.getCXXScopeSpec() = SS;
4472 else
4473 AnnotateScopeToken(SS, true);
4474
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004475 if (DirectDeclParser)
4476 (this->*DirectDeclParser)(D);
4477 return;
4478 }
4479
4480 SourceLocation Loc = ConsumeToken();
Sebastian Redlf6591ca2009-02-09 18:23:29 +00004481 D.SetRangeEnd(Loc);
John McCall084e83d2011-03-24 11:26:52 +00004482 DeclSpec DS(AttrFactory);
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004483 ParseTypeQualifierListOpt(DS);
Sebastian Redlf6591ca2009-02-09 18:23:29 +00004484 D.ExtendWithDeclSpec(DS);
Sebastian Redl9ed6efd2009-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 McCall084e83d2011-03-24 11:26:52 +00004492 Loc),
4493 DS.getAttributes(),
Sebastian Redlf6591ca2009-02-09 18:23:29 +00004494 /* Don't replace range end. */SourceLocation());
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004495 return;
4496 }
4497 }
4498
4499 tok::TokenKind Kind = Tok.getKind();
Steve Naroffec33ed92008-08-27 16:04:49 +00004500 // Not a pointer, C++ reference, or block.
Richard Smith0efa75c2012-03-29 01:16:42 +00004501 if (!isPtrOperatorToken(Kind, getLangOpts())) {
Sebastian Redlbd150f42008-11-21 19:14:01 +00004502 if (DirectDeclParser)
4503 (this->*DirectDeclParser)(D);
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004504 return;
4505 }
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004506
Sebastian Redled0f3b02009-03-15 22:02:01 +00004507 // Otherwise, '*' -> pointer, '^' -> block, '&' -> lvalue reference,
4508 // '&&' -> rvalue reference
Sebastian Redl3b27be62009-03-23 00:00:23 +00004509 SourceLocation Loc = ConsumeToken(); // Eat the *, ^, & or &&.
Sebastian Redlf6591ca2009-02-09 18:23:29 +00004510 D.SetRangeEnd(Loc);
Bill Wendling3708c182007-05-27 10:15:43 +00004511
Chris Lattner9eac9312009-03-27 04:18:06 +00004512 if (Kind == tok::star || Kind == tok::caret) {
Chris Lattner788404f2008-02-21 01:32:26 +00004513 // Is a pointer.
John McCall084e83d2011-03-24 11:26:52 +00004514 DeclSpec DS(AttrFactory);
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004515
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004516 // FIXME: GNU attributes are not allowed here in a new-type-id.
Bill Wendling3708c182007-05-27 10:15:43 +00004517 ParseTypeQualifierListOpt(DS);
Sebastian Redlf6591ca2009-02-09 18:23:29 +00004518 D.ExtendWithDeclSpec(DS);
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004519
Bill Wendling3708c182007-05-27 10:15:43 +00004520 // Recursively parse the declarator.
Sebastian Redlbd150f42008-11-21 19:14:01 +00004521 ParseDeclaratorInternal(D, DirectDeclParser);
Steve Naroffec33ed92008-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 Carruthe71b378d2011-02-23 18:51:59 +00004525 DS.getConstSpecLoc(),
4526 DS.getVolatileSpecLoc(),
John McCall084e83d2011-03-24 11:26:52 +00004527 DS.getRestrictSpecLoc()),
4528 DS.getAttributes(),
Sebastian Redlf6591ca2009-02-09 18:23:29 +00004529 SourceLocation());
Steve Naroffec33ed92008-08-27 16:04:49 +00004530 else
4531 // Remember that we parsed a Block type, and remember the type-quals.
Mike Stump11289f42009-09-09 15:08:12 +00004532 D.AddTypeInfo(DeclaratorChunk::getBlockPointer(DS.getTypeQualifiers(),
John McCall084e83d2011-03-24 11:26:52 +00004533 Loc),
4534 DS.getAttributes(),
Sebastian Redlf6591ca2009-02-09 18:23:29 +00004535 SourceLocation());
Bill Wendling3708c182007-05-27 10:15:43 +00004536 } else {
4537 // Is a reference
John McCall084e83d2011-03-24 11:26:52 +00004538 DeclSpec DS(AttrFactory);
Bill Wendling93efb222007-06-02 23:28:54 +00004539
Sebastian Redl3b27be62009-03-23 00:00:23 +00004540 // Complain about rvalue references in C++03, but then go on and build
4541 // the declarator.
Richard Smith5d164bc2011-10-15 05:09:34 +00004542 if (Kind == tok::ampamp)
Richard Smith2bf7fdb2013-01-02 11:42:31 +00004543 Diag(Loc, getLangOpts().CPlusPlus11 ?
Richard Smith5d164bc2011-10-15 05:09:34 +00004544 diag::warn_cxx98_compat_rvalue_reference :
4545 diag::ext_rvalue_reference);
Sebastian Redl3b27be62009-03-23 00:00:23 +00004546
Richard Smith7bdcc4a2012-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
Bill Wendling93efb222007-06-02 23:28:54 +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.
Bill Wendling93efb222007-06-02 23:28:54 +00004554 if (DS.getTypeQualifiers() != DeclSpec::TQ_unspecified) {
4555 if (DS.getTypeQualifiers() & DeclSpec::TQ_const)
4556 Diag(DS.getConstSpecLoc(),
Chris Lattner6d29c102008-11-18 07:48:38 +00004557 diag::err_invalid_reference_qualifier_application) << "const";
Bill Wendling93efb222007-06-02 23:28:54 +00004558 if (DS.getTypeQualifiers() & DeclSpec::TQ_volatile)
4559 Diag(DS.getVolatileSpecLoc(),
Chris Lattner6d29c102008-11-18 07:48:38 +00004560 diag::err_invalid_reference_qualifier_application) << "volatile";
Richard Smith8e1ac332013-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";
Bill Wendling93efb222007-06-02 23:28:54 +00004565 }
Bill Wendling3708c182007-05-27 10:15:43 +00004566
4567 // Recursively parse the declarator.
Sebastian Redlbd150f42008-11-21 19:14:01 +00004568 ParseDeclaratorInternal(D, DirectDeclParser);
Bill Wendling3708c182007-05-27 10:15:43 +00004569
Douglas Gregor66583c52008-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 Lattnerebad6a22008-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 Gregor66583c52008-11-03 15:51:28 +00004580
Sebastian Redlbd150f42008-11-21 19:14:01 +00004581 // Once we've complained about the reference-to-reference, we
Douglas Gregor66583c52008-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 Smith8e1ac332013-03-28 01:55:44 +00004587 // Remember that we parsed a reference type.
Chris Lattner788404f2008-02-21 01:32:26 +00004588 D.AddTypeInfo(DeclaratorChunk::getReference(DS.getTypeQualifiers(), Loc,
Sebastian Redled0f3b02009-03-15 22:02:01 +00004589 Kind == tok::amp),
John McCall084e83d2011-03-24 11:26:52 +00004590 DS.getAttributes(),
Sebastian Redlf6591ca2009-02-09 18:23:29 +00004591 SourceLocation());
Bill Wendling3708c182007-05-27 10:15:43 +00004592 }
Chris Lattner6c7416c2006-08-07 00:19:33 +00004593}
4594
Richard Smith0efa75c2012-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
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004608/// ParseDirectDeclarator
4609/// direct-declarator: [C99 6.7.5]
Douglas Gregor831c93f2008-11-05 20:51:48 +00004610/// [C99] identifier
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004611/// '(' declarator ')'
4612/// [GNU] '(' attributes declarator ')'
Chris Lattnere8074e62006-08-06 18:30:15 +00004613/// [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 Smith7bdcc4a2012-04-10 01:32:12 +00004618/// [C++11] direct-declarator '[' constant-expression[opt] ']'
4619/// attribute-specifier-seq[opt]
Chris Lattnerc0acd3d2006-07-31 05:13:43 +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 Kyrtzidis22c40fa2008-10-24 21:46:40 +00004624/// [C++] direct-declarator '(' parameter-declaration-clause ')'
4625/// cv-qualifier-seq[opt] exception-specification[opt]
Richard Smith7bdcc4a2012-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 Gregor61956c42008-10-31 09:07:45 +00004629/// [C++] declarator-id
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004630/// [C++11] declarator-id attribute-specifier-seq[opt]
Douglas Gregor831c93f2008-11-05 20:51:48 +00004631///
4632/// declarator-id: [C++ 8]
Douglas Gregor27b4c162010-12-23 22:44:42 +00004633/// '...'[opt] id-expression
Douglas Gregor831c93f2008-11-05 20:51:48 +00004634/// '::'[opt] nested-name-specifier[opt] type-name
4635///
4636/// id-expression: [C++ 5.1]
4637/// unqualified-id
Douglas Gregord90fd522009-09-25 21:45:23 +00004638/// qualified-id
Douglas Gregor831c93f2008-11-05 20:51:48 +00004639///
4640/// unqualified-id: [C++ 5.1]
Mike Stump11289f42009-09-09 15:08:12 +00004641/// identifier
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00004642/// operator-function-id
Douglas Gregord90fd522009-09-25 21:45:23 +00004643/// conversion-function-id
Mike Stump11289f42009-09-09 15:08:12 +00004644/// '~' class-name
Douglas Gregor7f741122009-02-25 19:37:18 +00004645/// template-id
Argyrios Kyrtzidise4426352008-11-07 22:02:30 +00004646///
Richard Smith1453e312012-03-27 01:42:32 +00004647/// Note, any additional constructs added here may need corresponding changes
4648/// in isConstructorDeclarator.
Chris Lattneracd58a32006-08-06 17:24:14 +00004649void Parser::ParseDirectDeclarator(Declarator &D) {
Argyrios Kyrtzidis9323b042008-11-26 22:40:03 +00004650 DeclaratorScopeObj DeclScopeObj(*this, D.getCXXScopeSpec());
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00004651
David Blaikiebbafb8a2012-03-11 07:00:24 +00004652 if (getLangOpts().CPlusPlus && D.mayHaveIdentifier()) {
Douglas Gregor7861a802009-11-03 01:35:08 +00004653 // ParseDeclaratorInternal might already have parsed the scope.
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00004654 if (D.getCXXScopeSpec().isEmpty()) {
Douglas Gregordf593fb2011-11-07 17:33:42 +00004655 bool EnteringContext = D.getContext() == Declarator::FileContext ||
4656 D.getContext() == Declarator::MemberContext;
Chad Rosierc1183952012-06-26 22:30:43 +00004657 ParseOptionalCXXScopeSpecifier(D.getCXXScopeSpec(), ParsedType(),
Douglas Gregordf593fb2011-11-07 17:33:42 +00004658 EnteringContext);
John McCall1f476a12010-02-26 08:45:28 +00004659 }
4660
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00004661 if (D.getCXXScopeSpec().isValid()) {
Douglas Gregor0be31a22010-07-02 17:43:08 +00004662 if (Actions.ShouldEnterDeclaratorScope(getCurScope(), D.getCXXScopeSpec()))
John McCall2b058ef2009-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 Yasskinc76498d2010-04-08 16:38:48 +00004666 }
4667
Douglas Gregor27b4c162010-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 Rosierc1183952012-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 Gregor27b4c162010-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 Smith0efa75c2012-03-29 01:16:42 +00004675 if (Tok.is(tok::ellipsis) && D.getCXXScopeSpec().isEmpty() &&
Douglas Gregor27b4c162010-12-23 22:44:42 +00004676 !((D.getContext() == Declarator::PrototypeContext ||
Faisal Vali2b391ab2013-09-26 19:54:12 +00004677 D.getContext() == Declarator::LambdaExprParameterContext ||
Douglas Gregor27b4c162010-12-23 22:44:42 +00004678 D.getContext() == Declarator::BlockLiteralContext) &&
Douglas Gregor27b4c162010-12-23 22:44:42 +00004679 NextToken().is(tok::r_paren) &&
Richard Smithb19337f2013-02-20 20:19:27 +00004680 !D.hasGroupingParens() &&
Richard Smith0efa75c2012-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 Gregor7861a802009-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 McCall84821e72010-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 Gribenkod1c91f12013-02-12 17:27:41 +00004707 D.getContext() == Declarator::MemberContext);
John McCall84821e72010-04-13 06:39:49 +00004708 else
4709 AllowConstructorName = (D.getContext() == Declarator::MemberContext);
4710
Abramo Bagnara7945c982012-01-27 09:46:47 +00004711 SourceLocation TemplateKWLoc;
Chad Rosierc1183952012-06-26 22:30:43 +00004712 if (ParseUnqualifiedId(D.getCXXScopeSpec(),
4713 /*EnteringContext=*/true,
4714 /*AllowDestructorName=*/true,
Douglas Gregor9de54ea2010-01-13 17:31:36 +00004715 AllowConstructorName,
John McCallba7bf592010-08-24 05:47:05 +00004716 ParsedType(),
Abramo Bagnara7945c982012-01-27 09:46:47 +00004717 TemplateKWLoc,
Jeffrey Yasskinc76498d2010-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 Kyrtzidis9323b042008-11-26 22:40:03 +00004722 D.SetIdentifier(0, Tok.getLocation());
4723 D.setInvalidType(true);
Douglas Gregor7861a802009-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 Gregordbc5daf2008-11-07 20:08:42 +00004729 }
Douglas Gregor7861a802009-11-03 01:35:08 +00004730 goto PastIdentifier;
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00004731 }
Douglas Gregor7861a802009-11-03 01:35:08 +00004732 } else if (Tok.is(tok::identifier) && D.mayHaveIdentifier()) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00004733 assert(!getLangOpts().CPlusPlus &&
Argyrios Kyrtzidis9323b042008-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 Gregor7861a802009-11-03 01:35:08 +00004738 goto PastIdentifier;
Richard Smith9ce302e2013-07-11 05:10:21 +00004739 } else if (Tok.is(tok::identifier) && D.diagnoseIdentifier()) {
Richard Smithf39720b2013-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 Gregor7861a802009-11-03 01:35:08 +00004750 }
Richard Smith0efa75c2012-03-29 01:16:42 +00004751
Douglas Gregor7861a802009-11-03 01:35:08 +00004752 if (Tok.is(tok::l_paren)) {
Chris Lattneracd58a32006-08-06 17:24:14 +00004753 // direct-declarator: '(' declarator ')'
Chris Lattnere37e2332006-08-15 04:50:22 +00004754 // direct-declarator: '(' attributes declarator ')'
Chris Lattneracd58a32006-08-06 17:24:14 +00004755 // Example: 'char (*X)' or 'int (*XX)(void)'
4756 ParseParenDeclarator(D);
Douglas Gregor9de54ea2010-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 Jahanian358acd52010-08-17 23:50:37 +00004762 // If there was an error parsing parenthesized declarator, declarator
Richard Smith0efa75c2012-03-29 01:16:42 +00004763 // scope may have been entered before. Don't do it again.
Fariborz Jahanian358acd52010-08-17 23:50:37 +00004764 if (!D.isInvalidType() &&
4765 Actions.ShouldEnterDeclaratorScope(getCurScope(), D.getCXXScopeSpec()))
Douglas Gregor9de54ea2010-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 Jahanian358acd52010-08-17 23:50:37 +00004768 DeclScopeObj.EnterDeclaratorScope();
Douglas Gregor9de54ea2010-01-13 17:31:36 +00004769 }
Argyrios Kyrtzidis9323b042008-11-26 22:40:03 +00004770 } else if (D.mayOmitIdentifier()) {
Chris Lattneracd58a32006-08-06 17:24:14 +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 Smithb19337f2013-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);
Chris Lattneracd58a32006-08-06 17:24:14 +00004780 } else {
David Blaikie5d577a22012-06-29 22:03:56 +00004781 if (Tok.getKind() == tok::annot_pragma_parser_crash)
David Blaikie5bd4c2a2012-08-21 18:56:49 +00004782 LLVM_BUILTIN_TRAP;
Douglas Gregord9f92e22009-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 Trieu9c672672013-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 Trieu2f586962013-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 Trieu9c672672013-01-26 02:31:38 +00004798 } else
Chris Lattner6d29c102008-11-18 07:48:38 +00004799 Diag(Tok, diag::err_expected_ident_lparen);
Chris Lattnereec40f92006-08-06 21:55:29 +00004800 D.SetIdentifier(0, Tok.getLocation());
Chris Lattner8c5dd732008-11-11 06:13:16 +00004801 D.setInvalidType(true);
Chris Lattneracd58a32006-08-06 17:24:14 +00004802 }
Mike Stump11289f42009-09-09 15:08:12 +00004803
Argyrios Kyrtzidis9323b042008-11-26 22:40:03 +00004804 PastIdentifier:
Chris Lattneracd58a32006-08-06 17:24:14 +00004805 assert(D.isPastIdentifier() &&
4806 "Haven't past the location of the identifier yet?");
Mike Stump11289f42009-09-09 15:08:12 +00004807
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004808 // Don't parse attributes unless we have parsed an unparenthesized name.
4809 if (D.hasName() && !D.getNumTypeObjects())
Richard Smith89645bc2013-01-02 12:01:23 +00004810 MaybeParseCXX11Attributes(D);
Alexis Hunt96d5c762009-11-21 08:43:09 +00004811
Chris Lattneracd58a32006-08-06 17:24:14 +00004812 while (1) {
Chris Lattner76c72282007-10-09 17:33:22 +00004813 if (Tok.is(tok::l_paren)) {
David Blaikie15a430a2011-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 Smithe233fbf2013-01-28 22:42:45 +00004817 Scope::FunctionPrototypeScope|Scope::DeclScope|
4818 (D.isFunctionDeclaratorAFunctionDeclaration()
4819 ? Scope::FunctionDeclarationScope : 0));
4820
Argyrios Kyrtzidis9a1191c2008-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 Smith943c4402012-07-30 21:30:52 +00004824 bool IsAmbiguous = false;
Richard Smith4f605af2012-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 McCall084e83d2011-03-24 11:26:52 +00004834 ParsedAttributes attrs(AttrFactory);
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00004835 BalancedDelimiterTracker T(*this, tok::l_paren);
4836 T.consumeOpen();
Richard Smith943c4402012-07-30 21:30:52 +00004837 ParseFunctionDeclarator(D, attrs, T, IsAmbiguous);
David Blaikie15a430a2011-12-04 05:04:18 +00004838 PrototypeScope.Exit();
Chris Lattner76c72282007-10-09 17:33:22 +00004839 } else if (Tok.is(tok::l_square)) {
Chris Lattnere8074e62006-08-06 18:30:15 +00004840 ParseBracketDeclarator(D);
Chris Lattneracd58a32006-08-06 17:24:14 +00004841 } else {
4842 break;
4843 }
4844 }
Chad Rosierc1183952012-06-26 22:30:43 +00004845}
Chris Lattneracd58a32006-08-06 17:24:14 +00004846
Chris Lattnerc0a1c7d2008-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 Stump11289f42009-09-09 15:08:12 +00004849/// parens for precedence. If we find that these are actually function
Chris Lattnerc0a1c7d2008-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 Lattner8ff2c6c2008-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 Lattnerc0a1c7d2008-04-06 05:45:57 +00004859///
4860void Parser::ParseParenDeclarator(Declarator &D) {
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00004861 BalancedDelimiterTracker T(*this, tok::l_paren);
4862 T.consumeOpen();
4863
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004864 assert(!D.isPastIdentifier() && "Should be called before passing identifier");
Mike Stump11289f42009-09-09 15:08:12 +00004865
Chris Lattner8ff2c6c2008-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 McCall084e83d2011-03-24 11:26:52 +00004876 ParsedAttributes attrs(AttrFactory);
Chris Lattner8ff2c6c2008-10-20 02:05:46 +00004877 bool RequiresArg = false;
4878 if (Tok.is(tok::kw___attribute)) {
John McCall53fa7142010-12-24 02:08:15 +00004879 ParseGNUAttributes(attrs);
Mike Stump11289f42009-09-09 15:08:12 +00004880
Chris Lattner8ff2c6c2008-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 Rosiereea9ca72012-12-21 21:22:20 +00004885
Steve Naroff44ac7772008-12-25 14:16:32 +00004886 // Eat any Microsoft extensions.
Chad Rosiereea9ca72012-12-21 21:22:20 +00004887 ParseMicrosoftTypeAttributes(attrs);
4888
Dawn Perchik335e16b2010-09-03 01:29:35 +00004889 // Eat any Borland extensions.
Ted Kremenek5eec2b02010-11-10 05:59:39 +00004890 if (Tok.is(tok::kw___pascal))
John McCall53fa7142010-12-24 02:08:15 +00004891 ParseBorlandTypeAttributes(attrs);
Mike Stump11289f42009-09-09 15:08:12 +00004892
Chris Lattnerc0a1c7d2008-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 Stump11289f42009-09-09 15:08:12 +00004898
Chris Lattnerc0a1c7d2008-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 Smith43f340f2012-03-27 23:05:05 +00004904 (getLangOpts().CPlusPlus && Tok.is(tok::ellipsis) &&
4905 NextToken().is(tok::r_paren)) || // C++ int(...)
Richard Smith2620cd92012-04-11 04:01:28 +00004906 isDeclarationSpecifier() || // 'int(int)' is a function.
4907 isCXX11AttributeSpecifier()) { // 'int([[]]int)' is a function.
Chris Lattnerc0a1c7d2008-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 Stump11289f42009-09-09 15:08:12 +00004915
Chris Lattnerc0a1c7d2008-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 Smith0efa75c2012-03-29 01:16:42 +00004920 SourceLocation EllipsisLoc = D.getEllipsisLoc();
4921 D.setEllipsisLoc(SourceLocation());
4922
Argyrios Kyrtzidis8ae36842008-10-07 10:21:57 +00004923 bool hadGroupingParens = D.hasGroupingParens();
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00004924 D.setGroupingParens(true);
Sebastian Redlbd150f42008-11-21 19:14:01 +00004925 ParseDeclaratorInternal(D, &Parser::ParseDirectDeclarator);
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004926 // Match the ')'.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00004927 T.consumeClose();
Chad Rosierc1183952012-06-26 22:30:43 +00004928 D.AddTypeInfo(DeclaratorChunk::getParen(T.getOpenLocation(),
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00004929 T.getCloseLocation()),
4930 attrs, T.getCloseLocation());
Argyrios Kyrtzidis8ae36842008-10-07 10:21:57 +00004931
4932 D.setGroupingParens(hadGroupingParens);
Richard Smith0efa75c2012-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 Lattnerc0a1c7d2008-04-06 05:45:57 +00004938 return;
4939 }
Mike Stump11289f42009-09-09 15:08:12 +00004940
Chris Lattnerc0a1c7d2008-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 Lattner8ff2c6c2008-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 Lattnerc0a1c7d2008-04-06 05:45:57 +00004945 D.SetIdentifier(0, Tok.getLocation());
4946
David Blaikie15a430a2011-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 Smithe233fbf2013-01-28 22:42:45 +00004950 Scope::FunctionPrototypeScope | Scope::DeclScope |
4951 (D.isFunctionDeclaratorAFunctionDeclaration()
4952 ? Scope::FunctionDeclarationScope : 0));
Richard Smith943c4402012-07-30 21:30:52 +00004953 ParseFunctionDeclarator(D, attrs, T, false, RequiresArg);
David Blaikie15a430a2011-12-04 05:04:18 +00004954 PrototypeScope.Exit();
Chris Lattnerc0a1c7d2008-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.
Chris Lattneracd58a32006-08-06 17:24:14 +00004960///
Richard Smith7bdcc4a2012-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 Lattner8ff2c6c2008-10-20 02:05:46 +00004964///
Richard Smith7bdcc4a2012-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 Gregor9e66af42011-07-05 16:44:18 +00004967///
Richard Smith7bdcc4a2012-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 Gregor9e66af42011-07-05 16:44:18 +00004973/// dynamic-exception-specification
4974/// noexcept-specification
4975///
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00004976void Parser::ParseFunctionDeclarator(Declarator &D,
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004977 ParsedAttributes &FirstArgAttrs,
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00004978 BalancedDelimiterTracker &Tracker,
Richard Smith943c4402012-07-30 21:30:52 +00004979 bool IsAmbiguous,
Douglas Gregor9e66af42011-07-05 16:44:18 +00004980 bool RequiresArg) {
Chad Rosierc1183952012-06-26 22:30:43 +00004981 assert(getCurScope()->isFunctionPrototypeScope() &&
David Blaikie15a430a2011-12-04 05:04:18 +00004982 "Should call from a Function scope");
Douglas Gregor9e66af42011-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 Lattner0e62c1c2011-07-23 10:55:15 +00004990 SmallVector<DeclaratorChunk::ParamInfo, 16> ParamInfo;
Douglas Gregor9e66af42011-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 Gregore248eea2011-10-19 06:04:55 +00004997 SourceLocation ConstQualifierLoc;
4998 SourceLocation VolatileQualifierLoc;
Douglas Gregor9e66af42011-07-05 16:44:18 +00004999 ExceptionSpecificationType ESpecType = EST_None;
5000 SourceRange ESpecRange;
Chris Lattner0e62c1c2011-07-23 10:55:15 +00005001 SmallVector<ParsedType, 2> DynamicExceptions;
5002 SmallVector<SourceRange, 2> DynamicExceptionRanges;
Douglas Gregor9e66af42011-07-05 16:44:18 +00005003 ExprResult NoexceptExpr;
Richard Smith7bdcc4a2012-04-10 01:32:12 +00005004 ParsedAttributes FnAttrs(AttrFactory);
Richard Smith700537c2012-06-12 01:51:59 +00005005 TypeResult TrailingReturnType;
Richard Smith7bdcc4a2012-04-10 01:32:12 +00005006
James Molloy6f8780b2012-02-29 10:24:19 +00005007 Actions.ActOnStartFunctionDeclarator();
Abramo Bagnara2fc03ca2012-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 Bagnaraaeeb9892012-10-04 21:42:10 +00005012 SourceLocation LParenLoc, RParenLoc;
5013 LParenLoc = Tracker.getOpenLocation();
5014 StartLoc = LParenLoc;
5015
Douglas Gregor9e66af42011-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 Gregore7a8e3b2011-10-12 16:37:45 +00005022 Tracker.consumeClose();
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00005023 RParenLoc = Tracker.getCloseLocation();
Abramo Bagnara2fc03ca2012-10-15 21:05:46 +00005024 LocalEndLoc = RParenLoc;
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00005025 EndLoc = RParenLoc;
Douglas Gregor9e66af42011-07-05 16:44:18 +00005026 } else {
Douglas Gregor9e66af42011-07-05 16:44:18 +00005027 if (Tok.isNot(tok::r_paren))
Faisal Vali2b391ab2013-09-26 19:54:12 +00005028 ParseParameterDeclarationClause(D, FirstArgAttrs, ParamInfo,
5029 EllipsisLoc);
Douglas Gregor9e66af42011-07-05 16:44:18 +00005030 else if (RequiresArg)
5031 Diag(Tok, diag::err_argument_required_after_attribute);
5032
David Blaikiebbafb8a2012-03-11 07:00:24 +00005033 HasProto = ParamInfo.size() || getLangOpts().CPlusPlus;
Douglas Gregor9e66af42011-07-05 16:44:18 +00005034
5035 // If we have the closing ')', eat it.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00005036 Tracker.consumeClose();
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00005037 RParenLoc = Tracker.getCloseLocation();
Abramo Bagnara2fc03ca2012-10-15 21:05:46 +00005038 LocalEndLoc = RParenLoc;
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00005039 EndLoc = RParenLoc;
Douglas Gregor9e66af42011-07-05 16:44:18 +00005040
David Blaikiebbafb8a2012-03-11 07:00:24 +00005041 if (getLangOpts().CPlusPlus) {
Richard Smith7bdcc4a2012-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 Gregor9e66af42011-07-05 16:44:18 +00005045
5046 // Parse cv-qualifier-seq[opt].
Richard Smith8e1ac332013-03-28 01:55:44 +00005047 ParseTypeQualifierListOpt(DS, /*VendorAttributesAllowed*/ false,
5048 /*CXX11AttributesAllowed*/ false,
5049 /*AtomicAllowed*/ false);
Richard Smith7bdcc4a2012-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 Gregor9e66af42011-07-05 16:44:18 +00005055
5056 // Parse ref-qualifier[opt].
5057 if (Tok.is(tok::amp) || Tok.is(tok::ampamp)) {
Richard Smith2bf7fdb2013-01-02 11:42:31 +00005058 Diag(Tok, getLangOpts().CPlusPlus11 ?
Richard Smith5d164bc2011-10-15 05:09:34 +00005059 diag::warn_cxx98_compat_ref_qualifier :
5060 diag::ext_ref_qualifier);
Richard Smith7bdcc4a2012-04-10 01:32:12 +00005061
Douglas Gregor9e66af42011-07-05 16:44:18 +00005062 RefQualifierIsLValueRef = Tok.is(tok::amp);
5063 RefQualifierLoc = ConsumeToken();
5064 EndLoc = RefQualifierLoc;
5065 }
5066
Douglas Gregor3024f072012-04-16 07:05:22 +00005067 // C++11 [expr.prim.general]p3:
Chad Rosierc1183952012-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 Gregor3024f072012-04-16 07:05:22 +00005070 // "pointer to cv-qualifier-seq X" between the optional cv-qualifer-seq
Chad Rosierc1183952012-06-26 22:30:43 +00005071 // and the end of the function-definition, member-declarator, or
Douglas Gregor3024f072012-04-16 07:05:22 +00005072 // declarator.
Richard Smithad1bbb92013-03-15 00:41:52 +00005073 // FIXME: currently, "static" case isn't handled correctly.
Chad Rosierc1183952012-06-26 22:30:43 +00005074 bool IsCXX11MemberFunction =
Richard Smith2bf7fdb2013-01-02 11:42:31 +00005075 getLangOpts().CPlusPlus11 &&
Richard Smithad1bbb92013-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 Gregor3024f072012-04-16 07:05:22 +00005081 Sema::CXXThisScopeRAII ThisScope(Actions,
5082 dyn_cast<CXXRecordDecl>(Actions.CurContext),
Richard Smith01141a92013-01-14 01:55:13 +00005083 DS.getTypeQualifiers() |
Richard Smith034185c2013-04-21 01:08:50 +00005084 (D.getDeclSpec().isConstexprSpecified() &&
5085 !getLangOpts().CPlusPlus1y
Richard Smith01141a92013-01-14 01:55:13 +00005086 ? Qualifiers::Const : 0),
Douglas Gregor3024f072012-04-16 07:05:22 +00005087 IsCXX11MemberFunction);
Richard Smith2331bbf2012-05-02 22:22:32 +00005088
Douglas Gregor9e66af42011-07-05 16:44:18 +00005089 // Parse exception-specification[opt].
Richard Smith2331bbf2012-05-02 22:22:32 +00005090 ESpecType = tryParseExceptionSpecification(ESpecRange,
Douglas Gregor433e0532012-04-16 18:27:27 +00005091 DynamicExceptions,
5092 DynamicExceptionRanges,
Richard Smith2331bbf2012-05-02 22:22:32 +00005093 NoexceptExpr);
Douglas Gregor9e66af42011-07-05 16:44:18 +00005094 if (ESpecType != EST_None)
5095 EndLoc = ESpecRange.getEnd();
5096
Richard Smith7bdcc4a2012-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 Smith89645bc2013-01-02 12:01:23 +00005099 MaybeParseCXX11Attributes(FnAttrs);
Richard Smith7bdcc4a2012-04-10 01:32:12 +00005100
Douglas Gregor9e66af42011-07-05 16:44:18 +00005101 // Parse trailing-return-type[opt].
Abramo Bagnara2fc03ca2012-10-15 21:05:46 +00005102 LocalEndLoc = EndLoc;
Richard Smith2bf7fdb2013-01-02 11:42:31 +00005103 if (getLangOpts().CPlusPlus11 && Tok.is(tok::arrow)) {
Richard Smith5d164bc2011-10-15 05:09:34 +00005104 Diag(Tok, diag::warn_cxx98_compat_trailing_return_type);
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00005105 if (D.getDeclSpec().getTypeSpecType() == TST_auto)
5106 StartLoc = D.getDeclSpec().getTypeSpecTypeLoc();
Abramo Bagnara2fc03ca2012-10-15 21:05:46 +00005107 LocalEndLoc = Tok.getLocation();
Douglas Gregordb0b9f12011-08-04 15:30:47 +00005108 SourceRange Range;
Richard Smith700537c2012-06-12 01:51:59 +00005109 TrailingReturnType = ParseTrailingReturnType(Range);
Abramo Bagnara2fc03ca2012-10-15 21:05:46 +00005110 EndLoc = Range.getEnd();
Douglas Gregor9e66af42011-07-05 16:44:18 +00005111 }
5112 }
Douglas Gregor9e66af42011-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 Bagnaraaeeb9892012-10-04 21:42:10 +00005117 IsAmbiguous,
5118 LParenLoc,
Douglas Gregor9e66af42011-07-05 16:44:18 +00005119 ParamInfo.data(), ParamInfo.size(),
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00005120 EllipsisLoc, RParenLoc,
Douglas Gregor9e66af42011-07-05 16:44:18 +00005121 DS.getTypeQualifiers(),
5122 RefQualifierIsLValueRef,
Douglas Gregore248eea2011-10-19 06:04:55 +00005123 RefQualifierLoc, ConstQualifierLoc,
5124 VolatileQualifierLoc,
Douglas Gregorad69e652011-07-13 21:47:47 +00005125 /*MutableLoc=*/SourceLocation(),
Douglas Gregor9e66af42011-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 Bagnara2fc03ca2012-10-15 21:05:46 +00005132 StartLoc, LocalEndLoc, D,
Douglas Gregor9e66af42011-07-05 16:44:18 +00005133 TrailingReturnType),
Richard Smith7bdcc4a2012-04-10 01:32:12 +00005134 FnAttrs, EndLoc);
James Molloy6f8780b2012-02-29 10:24:19 +00005135
5136 Actions.ActOnEndFunctionDeclarator();
Douglas Gregor9e66af42011-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 Blaikiebbafb8a2012-03-11 07:00:24 +00005145 return !getLangOpts().CPlusPlus
Douglas Gregor9e66af42011-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 Topper5603df42013-07-05 19:34:19 +00005177 SmallVectorImpl<DeclaratorChunk::ParamInfo> &ParamInfo) {
Douglas Gregor9e66af42011-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 Smith2620cd92012-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 Gregor9e66af42011-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///
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00005235/// parameter-type-list: [C99 6.7.5]
5236/// parameter-list
5237/// parameter-list ',' '...'
Douglas Gregor9bfc2e52009-09-22 21:41:40 +00005238/// [C++] parameter-list '...'
Chris Lattnerc0acd3d2006-07-31 05:13:43 +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 Lattneraa9c7ae2008-04-08 04:40:51 +00005246/// [C++] declaration-specifiers declarator '=' assignment-expression
Sebastian Redldb63af22012-03-14 15:54:00 +00005247/// [C++11] initializer-clause
Chris Lattnere37e2332006-08-15 04:50:22 +00005248/// [GNU] declaration-specifiers declarator attributes
Sebastian Redlf769df52009-03-24 22:27:57 +00005249/// declaration-specifiers abstract-declarator[opt]
5250/// [C++] declaration-specifiers abstract-declarator[opt]
Chris Lattner58258242008-04-10 02:22:51 +00005251/// '=' assignment-expression
Chris Lattnere37e2332006-08-15 04:50:22 +00005252/// [GNU] declaration-specifiers abstract-declarator[opt] attributes
Richard Smith2620cd92012-04-11 04:01:28 +00005253/// [C++11] attribute-specifier-seq parameter-declaration
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00005254///
Douglas Gregor9e66af42011-07-05 16:44:18 +00005255void Parser::ParseParameterDeclarationClause(
5256 Declarator &D,
Richard Smith2620cd92012-04-11 04:01:28 +00005257 ParsedAttributes &FirstArgAttrs,
Craig Topper5603df42013-07-05 19:34:19 +00005258 SmallVectorImpl<DeclaratorChunk::ParamInfo> &ParamInfo,
Douglas Gregor9e66af42011-07-05 16:44:18 +00005259 SourceLocation &EllipsisLoc) {
Chris Lattner371ed4e2008-04-06 06:57:35 +00005260 while (1) {
5261 if (Tok.is(tok::ellipsis)) {
Richard Smith2620cd92012-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 Gregor94349fd2009-02-18 07:07:28 +00005264 EllipsisLoc = ConsumeToken(); // Consume the ellipsis.
Chris Lattner371ed4e2008-04-06 06:57:35 +00005265 break;
Chris Lattneracd58a32006-08-06 17:24:14 +00005266 }
Mike Stump11289f42009-09-09 15:08:12 +00005267
Chris Lattner371ed4e2008-04-06 06:57:35 +00005268 // Parse the declaration-specifiers.
John McCall28a6aea2009-11-04 02:18:39 +00005269 // Just use the ParsingDeclaration "scope" of the declarator.
John McCall084e83d2011-03-24 11:26:52 +00005270 DeclSpec DS(AttrFactory);
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00005271
Richard Smith2620cd92012-04-11 04:01:28 +00005272 // Parse any C++11 attributes.
Richard Smith89645bc2013-01-02 12:01:23 +00005273 MaybeParseCXX11Attributes(DS.getAttributes());
Richard Smith2620cd92012-04-11 04:01:28 +00005274
John McCall53fa7142010-12-24 02:08:15 +00005275 // Skip any Microsoft attributes before a param.
Chad Rosierf8a2e702012-12-20 20:37:53 +00005276 MaybeParseMicrosoftAttributes(DS.getAttributes());
John McCall53fa7142010-12-24 02:08:15 +00005277
5278 SourceLocation DSStart = Tok.getLocation();
Chris Lattner8ff2c6c2008-10-20 02:05:46 +00005279
5280 // If the caller parsed attributes for the first argument, add them now.
John McCall53fa7142010-12-24 02:08:15 +00005281 // Take them so that we only apply the attributes to the first parameter.
Douglas Gregor9e66af42011-07-05 16:44:18 +00005282 // FIXME: If we can leave the attributes in the token stream somehow, we can
Richard Smith2620cd92012-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 McCall53fa7142010-12-24 02:08:15 +00005286
Chris Lattnerde39c3e2009-02-27 18:38:20 +00005287 ParseDeclarationSpecifiers(DS);
Mike Stump11289f42009-09-09 15:08:12 +00005288
Faisal Vali2b391ab2013-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 Lattner371ed4e2008-04-06 06:57:35 +00005298
5299 // Parse GNU attributes, if present.
Faisal Vali2b391ab2013-09-26 19:54:12 +00005300 MaybeParseGNUAttributes(ParmDeclarator);
Mike Stump11289f42009-09-09 15:08:12 +00005301
Chris Lattner371ed4e2008-04-06 06:57:35 +00005302 // Remember this parsed parameter in ParamInfo.
Faisal Vali2b391ab2013-09-26 19:54:12 +00005303 IdentifierInfo *ParmII = ParmDeclarator.getIdentifier();
Mike Stump11289f42009-09-09 15:08:12 +00005304
Douglas Gregor4d87df52008-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 Lattner371ed4e2008-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 Vali2b391ab2013-09-26 19:54:12 +00005311 if (DS.isEmpty() && ParmDeclarator.getIdentifier() == 0 &&
5312 ParmDeclarator.getNumTypeObjects() == 0) {
Chris Lattner371ed4e2008-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 Stump11289f42009-09-09 15:08:12 +00005318
Chris Lattner371ed4e2008-04-06 06:57:35 +00005319 // Inform the actions module about the parameter declarator, so it gets
5320 // added to the current scope.
Faisal Vali2b391ab2013-09-26 19:54:12 +00005321 Decl *Param = Actions.ActOnParamDeclarator(getCurScope(),
5322 ParmDeclarator);
Chris Lattneraa9c7ae2008-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 Gregor58354032008-12-24 00:01:03 +00005328 SourceLocation EqualLoc = Tok.getLocation();
5329
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00005330 // Parse the default argument
Douglas Gregor4d87df52008-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 Gregor4d87df52008-12-16 21:30:33 +00005335 // FIXME: Can we use a smart pointer for Toks?
5336 DefArgToks = new CachedTokens;
5337
Richard Smith1fff95c2013-09-12 23:28:08 +00005338 if (!ConsumeAndStoreInitializer(*DefArgToks, CIK_DefaultArgument)) {
Douglas Gregor4d87df52008-12-16 21:30:33 +00005339 delete DefArgToks;
5340 DefArgToks = 0;
Douglas Gregor58354032008-12-24 00:01:03 +00005341 Actions.ActOnParamDefaultArgumentError(Param);
Argyrios Kyrtzidis249179c2010-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 Stump11289f42009-09-09 15:08:12 +00005350 Actions.ActOnParamUnparsedDefaultArgument(Param, EqualLoc,
Anders Carlsson84613c42009-06-12 16:51:40 +00005351 (*DefArgToks)[1].getLocation());
Argyrios Kyrtzidis249179c2010-08-06 09:47:24 +00005352 }
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00005353 } else {
Douglas Gregor4d87df52008-12-16 21:30:33 +00005354 // Consume the '='.
Douglas Gregor58354032008-12-24 00:01:03 +00005355 ConsumeToken();
Mike Stump11289f42009-09-09 15:08:12 +00005356
Chad Rosierc1183952012-06-26 22:30:43 +00005357 // The argument isn't actually potentially evaluated unless it is
Douglas Gregor8a01b2a2010-09-11 20:24:53 +00005358 // used.
5359 EnterExpressionEvaluationContext Eval(Actions,
Douglas Gregor7fcbd902012-02-21 00:37:24 +00005360 Sema::PotentiallyEvaluatedIfUsed,
5361 Param);
Douglas Gregor8a01b2a2010-09-11 20:24:53 +00005362
Sebastian Redldb63af22012-03-14 15:54:00 +00005363 ExprResult DefArgResult;
Richard Smith2bf7fdb2013-01-02 11:42:31 +00005364 if (getLangOpts().CPlusPlus11 && Tok.is(tok::l_brace)) {
Sebastian Redl1678d5f2012-03-18 22:25:45 +00005365 Diag(Tok, diag::warn_cxx98_compat_generalized_initializer_lists);
Sebastian Redldb63af22012-03-14 15:54:00 +00005366 DefArgResult = ParseBraceInitializer();
Sebastian Redl1678d5f2012-03-18 22:25:45 +00005367 } else
Sebastian Redldb63af22012-03-14 15:54:00 +00005368 DefArgResult = ParseAssignmentExpression();
Douglas Gregor4d87df52008-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 McCallb268a282010-08-23 23:25:46 +00005375 DefArgResult.take());
Douglas Gregor4d87df52008-12-16 21:30:33 +00005376 }
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00005377 }
5378 }
Mike Stump11289f42009-09-09 15:08:12 +00005379
5380 ParamInfo.push_back(DeclaratorChunk::ParamInfo(ParmII,
Faisal Vali2b391ab2013-09-26 19:54:12 +00005381 ParmDeclarator.getIdentifierLoc(),
5382 Param, DefArgToks));
Chris Lattner371ed4e2008-04-06 06:57:35 +00005383 }
5384
5385 // If the next token is a comma, consume it and keep reading arguments.
Douglas Gregor9bfc2e52009-09-22 21:41:40 +00005386 if (Tok.isNot(tok::comma)) {
5387 if (Tok.is(tok::ellipsis)) {
Douglas Gregor9bfc2e52009-09-22 21:41:40 +00005388 EllipsisLoc = ConsumeToken(); // Consume the ellipsis.
Chad Rosierc1183952012-06-26 22:30:43 +00005389
David Blaikiebbafb8a2012-03-11 07:00:24 +00005390 if (!getLangOpts().CPlusPlus) {
Douglas Gregor9bfc2e52009-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 Gregora771f462010-03-31 17:46:05 +00005394 << FixItHint::CreateInsertion(EllipsisLoc, ", ");
Douglas Gregor9bfc2e52009-09-22 21:41:40 +00005395 }
5396 }
Chad Rosierc1183952012-06-26 22:30:43 +00005397
Douglas Gregor9bfc2e52009-09-22 21:41:40 +00005398 break;
5399 }
Mike Stump11289f42009-09-09 15:08:12 +00005400
Chris Lattner371ed4e2008-04-06 06:57:35 +00005401 // Consume the comma.
5402 ConsumeToken();
Chris Lattneracd58a32006-08-06 17:24:14 +00005403 }
Mike Stump11289f42009-09-09 15:08:12 +00005404
Chris Lattner6c940e62008-04-06 06:34:08 +00005405}
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00005406
Chris Lattnere8074e62006-08-06 18:30:15 +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 Smith7bdcc4a2012-04-10 01:32:12 +00005412/// [C++11] direct-declarator '[' constant-expression[opt] ']'
5413/// attribute-specifier-seq[opt]
Chris Lattnere8074e62006-08-06 18:30:15 +00005414void Parser::ParseBracketDeclarator(Declarator &D) {
Richard Smith7bdcc4a2012-04-10 01:32:12 +00005415 if (CheckProhibitedCXX11Attribute())
5416 return;
5417
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00005418 BalancedDelimiterTracker T(*this, tok::l_square);
5419 T.consumeOpen();
Mike Stump11289f42009-09-09 15:08:12 +00005420
Chris Lattner84a11622008-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 Gregore7a8e3b2011-10-12 16:37:45 +00005424 T.consumeClose();
John McCall084e83d2011-03-24 11:26:52 +00005425 ParsedAttributes attrs(AttrFactory);
Richard Smith89645bc2013-01-02 12:01:23 +00005426 MaybeParseCXX11Attributes(attrs);
Chad Rosierc1183952012-06-26 22:30:43 +00005427
Chris Lattner84a11622008-12-18 07:27:21 +00005428 // Remember that we parsed the empty array type.
John McCalldadc5752010-08-24 06:29:42 +00005429 ExprResult NumElements;
John McCall084e83d2011-03-24 11:26:52 +00005430 D.AddTypeInfo(DeclaratorChunk::getArray(0, false, false, 0,
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00005431 T.getOpenLocation(),
5432 T.getCloseLocation()),
5433 attrs, T.getCloseLocation());
Chris Lattner84a11622008-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 Smithbcc22fc2012-03-09 08:00:36 +00005438 ExprResult ExprRes(Actions.ActOnNumericConstant(Tok, getCurScope()));
Chris Lattner84a11622008-12-18 07:27:21 +00005439 ConsumeToken();
5440
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00005441 T.consumeClose();
John McCall084e83d2011-03-24 11:26:52 +00005442 ParsedAttributes attrs(AttrFactory);
Richard Smith89645bc2013-01-02 12:01:23 +00005443 MaybeParseCXX11Attributes(attrs);
Mike Stump11289f42009-09-09 15:08:12 +00005444
Chris Lattner84a11622008-12-18 07:27:21 +00005445 // Remember that we parsed a array type, and remember its features.
Nikola Smiljanicc531dcc2013-01-11 08:33:05 +00005446 D.AddTypeInfo(DeclaratorChunk::getArray(0, false, false,
John McCall53fa7142010-12-24 02:08:15 +00005447 ExprRes.release(),
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00005448 T.getOpenLocation(),
5449 T.getCloseLocation()),
5450 attrs, T.getCloseLocation());
Chris Lattner84a11622008-12-18 07:27:21 +00005451 return;
5452 }
Mike Stump11289f42009-09-09 15:08:12 +00005453
Chris Lattnere8074e62006-08-06 18:30:15 +00005454 // If valid, this location is the position where we read the 'static' keyword.
5455 SourceLocation StaticLoc;
Chris Lattner76c72282007-10-09 17:33:22 +00005456 if (Tok.is(tok::kw_static))
Chris Lattneraf635312006-10-16 06:06:51 +00005457 StaticLoc = ConsumeToken();
Mike Stump11289f42009-09-09 15:08:12 +00005458
Chris Lattnere8074e62006-08-06 18:30:15 +00005459 // If there is a type-qualifier-list, read it now.
Chris Lattnerb6ec4e72008-12-18 06:50:14 +00005460 // Type qualifiers in an array subscript are a C99 feature.
John McCall084e83d2011-03-24 11:26:52 +00005461 DeclSpec DS(AttrFactory);
Chris Lattnercf0bab22008-12-18 07:02:59 +00005462 ParseTypeQualifierListOpt(DS, false /*no attributes*/);
Mike Stump11289f42009-09-09 15:08:12 +00005463
Chris Lattnere8074e62006-08-06 18:30:15 +00005464 // If we haven't already read 'static', check to see if there is one after the
5465 // type-qualifier-list.
Chris Lattner76c72282007-10-09 17:33:22 +00005466 if (!StaticLoc.isValid() && Tok.is(tok::kw_static))
Chris Lattneraf635312006-10-16 06:06:51 +00005467 StaticLoc = ConsumeToken();
Mike Stump11289f42009-09-09 15:08:12 +00005468
Chris Lattnere8074e62006-08-06 18:30:15 +00005469 // Handle "direct-declarator [ type-qual-list[opt] * ]".
Chris Lattnere8074e62006-08-06 18:30:15 +00005470 bool isStar = false;
John McCalldadc5752010-08-24 06:29:42 +00005471 ExprResult NumElements;
Mike Stump11289f42009-09-09 15:08:12 +00005472
Chris Lattner521ff2b2008-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 Ledru830885c2012-07-23 08:59:39 +00005475 // the token after the star is a ']'. Since stars in arrays are
Chris Lattner521ff2b2008-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 Lattnerc439f0d2008-04-06 05:27:21 +00005478 ConsumeToken(); // Eat the '*'.
Chris Lattner1906f802006-08-06 19:14:46 +00005479
Chris Lattnerb6ec4e72008-12-18 06:50:14 +00005480 if (StaticLoc.isValid()) {
Chris Lattner521ff2b2008-04-06 05:26:30 +00005481 Diag(StaticLoc, diag::err_unspecified_vla_size_with_static);
Chris Lattnerb6ec4e72008-12-18 06:50:14 +00005482 StaticLoc = SourceLocation(); // Drop the static.
5483 }
Chris Lattner521ff2b2008-04-06 05:26:30 +00005484 isStar = true;
Chris Lattner76c72282007-10-09 17:33:22 +00005485 } else if (Tok.isNot(tok::r_square)) {
Chris Lattner84a11622008-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 Stump11289f42009-09-09 15:08:12 +00005490
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00005491 // Parse the constant-expression or assignment-expression now (depending
5492 // on dialect).
David Blaikiebbafb8a2012-03-11 07:00:24 +00005493 if (getLangOpts().CPlusPlus) {
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00005494 NumElements = ParseConstantExpression();
Eli Friedmane0afc982012-01-21 01:01:51 +00005495 } else {
5496 EnterExpressionEvaluationContext Unevaluated(Actions,
5497 Sema::ConstantEvaluated);
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00005498 NumElements = ParseAssignmentExpression();
Eli Friedmane0afc982012-01-21 01:01:51 +00005499 }
Chris Lattner62591722006-08-12 18:40:58 +00005500 }
Mike Stump11289f42009-09-09 15:08:12 +00005501
Chris Lattner62591722006-08-12 18:40:58 +00005502 // If there was an error parsing the assignment-expression, recover.
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00005503 if (NumElements.isInvalid()) {
Chris Lattnercd2a8c52009-04-24 22:30:50 +00005504 D.setInvalidType(true);
Chris Lattner62591722006-08-12 18:40:58 +00005505 // If the expression was invalid, skip it.
5506 SkipUntil(tok::r_square);
5507 return;
Chris Lattnere8074e62006-08-06 18:30:15 +00005508 }
Sebastian Redlf6591ca2009-02-09 18:23:29 +00005509
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00005510 T.consumeClose();
Sebastian Redlf6591ca2009-02-09 18:23:29 +00005511
John McCall084e83d2011-03-24 11:26:52 +00005512 ParsedAttributes attrs(AttrFactory);
Richard Smith89645bc2013-01-02 12:01:23 +00005513 MaybeParseCXX11Attributes(attrs);
Alexis Hunt96d5c762009-11-21 08:43:09 +00005514
Chris Lattner84a11622008-12-18 07:27:21 +00005515 // Remember that we parsed a array type, and remember its features.
John McCall084e83d2011-03-24 11:26:52 +00005516 D.AddTypeInfo(DeclaratorChunk::getArray(DS.getTypeQualifiers(),
Chris Lattnercbc426d2006-12-02 06:43:02 +00005517 StaticLoc.isValid(), isStar,
Douglas Gregor04318252009-07-06 15:59:29 +00005518 NumElements.release(),
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00005519 T.getOpenLocation(),
5520 T.getCloseLocation()),
5521 attrs, T.getCloseLocation());
Chris Lattnere8074e62006-08-06 18:30:15 +00005522}
5523
Argyrios Kyrtzidis2545aeb2008-09-05 11:26:19 +00005524/// [GNU] typeof-specifier:
5525/// typeof ( expressions )
5526/// typeof ( type-name )
5527/// [GNU/C++] typeof unary-expression
Steve Naroffad373bd2007-07-31 12:34:36 +00005528///
5529void Parser::ParseTypeofSpecifier(DeclSpec &DS) {
Chris Lattner76c72282007-10-09 17:33:22 +00005530 assert(Tok.is(tok::kw_typeof) && "Not a typeof specifier");
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00005531 Token OpTok = Tok;
Steve Naroffad373bd2007-07-31 12:34:36 +00005532 SourceLocation StartLoc = ConsumeToken();
5533
John McCalle8595032010-01-13 20:03:27 +00005534 const bool hasParens = Tok.is(tok::l_paren);
5535
Eli Friedman15681d62012-09-26 04:34:21 +00005536 EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated,
5537 Sema::ReuseLambdaContextDecl);
Eli Friedmane0afc982012-01-21 01:01:51 +00005538
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00005539 bool isCastExpr;
John McCallba7bf592010-08-24 05:47:05 +00005540 ParsedType CastTy;
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00005541 SourceRange CastRange;
Peter Collingbournee190dee2011-03-11 19:24:49 +00005542 ExprResult Operand = ParseExprAfterUnaryExprOrTypeTrait(OpTok, isCastExpr,
5543 CastTy, CastRange);
John McCalle8595032010-01-13 20:03:27 +00005544 if (hasParens)
5545 DS.setTypeofParensRange(CastRange);
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00005546
5547 if (CastRange.getEnd().isInvalid())
Argyrios Kyrtzidisf5cc7ac2009-05-22 10:22:18 +00005548 // FIXME: Not accurate, the range gets one token more than it should.
5549 DS.SetRangeEnd(Tok.getLocation());
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00005550 else
5551 DS.SetRangeEnd(CastRange.getEnd());
Mike Stump11289f42009-09-09 15:08:12 +00005552
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00005553 if (isCastExpr) {
5554 if (!CastTy) {
5555 DS.SetTypeSpecError();
Argyrios Kyrtzidis2545aeb2008-09-05 11:26:19 +00005556 return;
Douglas Gregor220cac52009-02-18 17:45:20 +00005557 }
Argyrios Kyrtzidis2545aeb2008-09-05 11:26:19 +00005558
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00005559 const char *PrevSpec = 0;
John McCall49bfce42009-08-03 20:12:06 +00005560 unsigned DiagID;
Argyrios Kyrtzidis7bd98442009-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 McCall49bfce42009-08-03 20:12:06 +00005563 DiagID, CastTy))
5564 Diag(StartLoc, DiagID) << PrevSpec;
Argyrios Kyrtzidis7bd98442009-05-22 10:22:50 +00005565 return;
Argyrios Kyrtzidisf5cc7ac2009-05-22 10:22:18 +00005566 }
Argyrios Kyrtzidis2545aeb2008-09-05 11:26:19 +00005567
Argyrios Kyrtzidisf5cc7ac2009-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 Naroff4bd2f712007-08-02 02:53:48 +00005571 return;
Steve Naroffad373bd2007-07-31 12:34:36 +00005572 }
Argyrios Kyrtzidis2545aeb2008-09-05 11:26:19 +00005573
Eli Friedmane0afc982012-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 Kyrtzidisf5cc7ac2009-05-22 10:22:18 +00005581 const char *PrevSpec = 0;
John McCall49bfce42009-08-03 20:12:06 +00005582 unsigned DiagID;
Argyrios Kyrtzidisf5cc7ac2009-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 McCallba7bf592010-08-24 05:47:05 +00005585 DiagID, Operand.get()))
John McCall49bfce42009-08-03 20:12:06 +00005586 Diag(StartLoc, DiagID) << PrevSpec;
Steve Naroffad373bd2007-07-31 12:34:36 +00005587}
Chris Lattner73a9c7d2010-02-28 18:33:55 +00005588
Benjamin Kramere56f3932011-12-23 17:00:35 +00005589/// [C11] atomic-specifier:
Eli Friedman0dfb8892011-10-06 23:00:33 +00005590/// _Atomic ( type-name )
5591///
5592void Parser::ParseAtomicSpecifier(DeclSpec &DS) {
Richard Smith8e1ac332013-03-28 01:55:44 +00005593 assert(Tok.is(tok::kw__Atomic) && NextToken().is(tok::l_paren) &&
5594 "Not an atomic specifier");
Eli Friedman0dfb8892011-10-06 23:00:33 +00005595
5596 SourceLocation StartLoc = ConsumeToken();
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00005597 BalancedDelimiterTracker T(*this, tok::l_paren);
Richard Smith8e1ac332013-03-28 01:55:44 +00005598 if (T.consumeOpen())
Eli Friedman0dfb8892011-10-06 23:00:33 +00005599 return;
Eli Friedman0dfb8892011-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 Gregore7a8e3b2011-10-12 16:37:45 +00005608 T.consumeClose();
Eli Friedman0dfb8892011-10-06 23:00:33 +00005609
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00005610 if (T.getCloseLocation().isInvalid())
Eli Friedman0dfb8892011-10-06 23:00:33 +00005611 return;
5612
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00005613 DS.setTypeofParensRange(T.getRange());
5614 DS.SetRangeEnd(T.getCloseLocation());
Eli Friedman0dfb8892011-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 Lattner73a9c7d2010-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 Schmidt99a084b2013-07-03 20:54:09 +00005648 if (Next.getIdentifierInfo() == Ident_bool) {
5649 Tok.setKind(tok::kw___vector);
5650 return true;
5651 }
Chris Lattner73a9c7d2010-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 Schmidt99a084b2013-07-03 20:54:09 +00005680 if (Next.getIdentifierInfo() == Ident_bool) {
5681 isInvalid = DS.SetTypeAltiVecVector(true, Loc, PrevSpec, DiagID);
5682 return true;
5683 }
Chris Lattner73a9c7d2010-02-28 18:33:55 +00005684 break;
5685 default:
5686 break;
5687 }
Douglas Gregor9938e3b2010-06-16 15:28:57 +00005688 } else if ((Tok.getIdentifierInfo() == Ident_pixel) &&
Chris Lattner73a9c7d2010-02-28 18:33:55 +00005689 DS.isTypeAltiVecVector()) {
5690 isInvalid = DS.SetTypeAltiVecPixel(true, Loc, PrevSpec, DiagID);
5691 return true;
Bill Schmidt99a084b2013-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 Lattner73a9c7d2010-02-28 18:33:55 +00005696 }
5697 return false;
5698}