blob: 6d7ab979b08adfe5a3c08f303cc43417d7a12ba2 [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))
Steve Naroff98d153c2007-06-06 23:19:11 +0000175 SkipUntil(tok::r_paren, false);
Alexis Hunt96d5c762009-11-21 08:43:09 +0000176 SourceLocation Loc = Tok.getLocation();
Sebastian Redlf6591ca2009-02-09 18:23:29 +0000177 if (ExpectAndConsume(tok::r_paren, diag::err_expected_rparen)) {
178 SkipUntil(tok::r_paren, false);
179 }
John McCall53fa7142010-12-24 02:08:15 +0000180 if (endLoc)
181 *endLoc = Loc;
Steve Naroff0f2fe172007-06-01 17:11:19 +0000182 }
Steve Naroff0f2fe172007-06-01 17:11:19 +0000183}
Chris Lattnerf5fbd792006-08-10 23:56:11 +0000184
Douglas Gregord2472d42013-05-02 23:25:32 +0000185/// \brief Determine whether the given attribute has all expression arguments.
186static bool attributeHasExprArgs(const IdentifierInfo &II) {
187 return llvm::StringSwitch<bool>(II.getName())
188#include "clang/Parse/AttrExprArgs.inc"
189 .Default(false);
190}
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000191
Richard Smithfeefaf52013-09-03 18:01:40 +0000192IdentifierLoc *Parser::ParseIdentifierLoc() {
193 assert(Tok.is(tok::identifier) && "expected an identifier");
194 IdentifierLoc *IL = IdentifierLoc::create(Actions.Context,
195 Tok.getLocation(),
196 Tok.getIdentifierInfo());
197 ConsumeToken();
198 return IL;
199}
200
Michael Han23214e52012-10-03 01:56:22 +0000201/// Parse the arguments to a parameterized GNU attribute or
202/// a C++11 attribute in "gnu" namespace.
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000203void Parser::ParseGNUAttributeArgs(IdentifierInfo *AttrName,
204 SourceLocation AttrNameLoc,
205 ParsedAttributes &Attrs,
Michael Han23214e52012-10-03 01:56:22 +0000206 SourceLocation *EndLoc,
207 IdentifierInfo *ScopeName,
208 SourceLocation ScopeLoc,
209 AttributeList::Syntax Syntax) {
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000210
211 assert(Tok.is(tok::l_paren) && "Attribute arg list not starting with '('");
212
213 // Availability attributes have their own grammar.
214 if (AttrName->isStr("availability")) {
215 ParseAvailabilityAttribute(*AttrName, AttrNameLoc, Attrs, EndLoc);
216 return;
217 }
218 // Thread safety attributes fit into the FIXME case above, so we
219 // just parse the arguments as a list of expressions
220 if (IsThreadSafetyAttribute(AttrName->getName())) {
221 ParseThreadSafetyAttribute(*AttrName, AttrNameLoc, Attrs, EndLoc);
222 return;
223 }
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +0000224 // Type safety attributes have their own grammar.
225 if (AttrName->isStr("type_tag_for_datatype")) {
226 ParseTypeTagForDatatypeAttribute(*AttrName, AttrNameLoc, Attrs, EndLoc);
227 return;
228 }
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000229
230 ConsumeParen(); // ignore the left paren loc for now
231
Richard Smithb12bf692011-10-17 21:20:17 +0000232 bool BuiltinType = false;
Aaron Ballman00e99962013-08-31 01:11:41 +0000233 ArgsVector ArgExprs;
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000234
Joey Goulyaba589c2013-03-08 09:42:32 +0000235 TypeResult T;
236 SourceRange TypeRange;
237 bool TypeParsed = false;
238
Richard Smithb12bf692011-10-17 21:20:17 +0000239 switch (Tok.getKind()) {
240 case tok::kw_char:
241 case tok::kw_wchar_t:
242 case tok::kw_char16_t:
243 case tok::kw_char32_t:
244 case tok::kw_bool:
245 case tok::kw_short:
246 case tok::kw_int:
247 case tok::kw_long:
248 case tok::kw___int64:
Richard Smithf016bbc2012-04-04 06:24:32 +0000249 case tok::kw___int128:
Richard Smithb12bf692011-10-17 21:20:17 +0000250 case tok::kw_signed:
251 case tok::kw_unsigned:
252 case tok::kw_float:
253 case tok::kw_double:
254 case tok::kw_void:
255 case tok::kw_typeof:
256 // __attribute__(( vec_type_hint(char) ))
Richard Smithb12bf692011-10-17 21:20:17 +0000257 BuiltinType = true;
Joey Goulyaba589c2013-03-08 09:42:32 +0000258 T = ParseTypeName(&TypeRange);
259 TypeParsed = true;
Richard Smithb12bf692011-10-17 21:20:17 +0000260 break;
261
Aaron Ballman00e99962013-08-31 01:11:41 +0000262 case tok::identifier: {
Joey Goulyaba589c2013-03-08 09:42:32 +0000263 if (AttrName->isStr("vec_type_hint")) {
264 T = ParseTypeName(&TypeRange);
265 TypeParsed = true;
266 break;
267 }
Richard Smithf7ca0c02013-09-03 18:57:36 +0000268 // If this attribute doesn't want an 'identifier' argument, then this
269 // argument should be parsed as an expression.
Douglas Gregord2472d42013-05-02 23:25:32 +0000270 if (attributeHasExprArgs(*AttrName))
271 break;
Aaron Ballman00e99962013-08-31 01:11:41 +0000272
Richard Smithfeefaf52013-09-03 18:01:40 +0000273 ArgExprs.push_back(ParseIdentifierLoc());
Aaron Ballman00e99962013-08-31 01:11:41 +0000274 } break;
Richard Smithb12bf692011-10-17 21:20:17 +0000275
276 default:
277 break;
278 }
279
Joey Goulyaba589c2013-03-08 09:42:32 +0000280 bool isInvalid = false;
281 bool isParmType = false;
Richard Smithb12bf692011-10-17 21:20:17 +0000282
Joey Goulyaba589c2013-03-08 09:42:32 +0000283 if (!BuiltinType && !AttrName->isStr("vec_type_hint") &&
Aaron Ballman00e99962013-08-31 01:11:41 +0000284 (!ArgExprs.empty() ? Tok.is(tok::comma) : Tok.isNot(tok::r_paren))) {
Richard Smithb12bf692011-10-17 21:20:17 +0000285 // Eat the comma.
Aaron Ballman00e99962013-08-31 01:11:41 +0000286 if (!ArgExprs.empty())
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000287 ConsumeToken();
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000288
Richard Smithb12bf692011-10-17 21:20:17 +0000289 // Parse the non-empty comma-separated list of expressions.
290 while (1) {
291 ExprResult ArgExpr(ParseAssignmentExpression());
292 if (ArgExpr.isInvalid()) {
293 SkipUntil(tok::r_paren);
294 return;
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000295 }
Richard Smithb12bf692011-10-17 21:20:17 +0000296 ArgExprs.push_back(ArgExpr.release());
297 if (Tok.isNot(tok::comma))
298 break;
299 ConsumeToken(); // Eat the comma, move to the next argument
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000300 }
Richard Smithb12bf692011-10-17 21:20:17 +0000301 }
Fariborz Jahanian6b708652011-10-18 17:11:10 +0000302 else if (Tok.is(tok::less) && AttrName->isStr("iboutletcollection")) {
303 if (!ExpectAndConsume(tok::less, diag::err_expected_less_after, "<",
304 tok::greater)) {
Fariborz Jahanian7f733022011-10-18 23:13:50 +0000305 while (Tok.is(tok::identifier)) {
306 ConsumeToken();
307 if (Tok.is(tok::greater))
308 break;
309 if (Tok.is(tok::comma)) {
310 ConsumeToken();
311 continue;
312 }
313 }
314 if (Tok.isNot(tok::greater))
315 Diag(Tok, diag::err_iboutletcollection_with_protocol);
Fariborz Jahanian6b708652011-10-18 17:11:10 +0000316 SkipUntil(tok::r_paren, false, true); // skip until ')'
317 }
Joey Goulyaba589c2013-03-08 09:42:32 +0000318 } else if (AttrName->isStr("vec_type_hint")) {
319 if (T.get() && !T.isInvalid())
320 isParmType = true;
321 else {
322 if (Tok.is(tok::identifier))
323 ConsumeToken();
324 if (TypeParsed)
325 isInvalid = true;
326 }
Fariborz Jahanian6b708652011-10-18 17:11:10 +0000327 }
Richard Smithb12bf692011-10-17 21:20:17 +0000328
329 SourceLocation RParen = Tok.getLocation();
Joey Goulyaba589c2013-03-08 09:42:32 +0000330 if (!ExpectAndConsume(tok::r_paren, diag::err_expected_rparen) &&
331 !isInvalid) {
Michael Han360d2252012-10-04 16:42:52 +0000332 SourceLocation AttrLoc = ScopeLoc.isValid() ? ScopeLoc : AttrNameLoc;
Joey Goulyaba589c2013-03-08 09:42:32 +0000333 if (isParmType) {
Joey Goulyaba589c2013-03-08 09:42:32 +0000334 Attrs.addNewTypeAttr(AttrName, SourceRange(AttrLoc, RParen), ScopeName,
Aaron Ballman00e99962013-08-31 01:11:41 +0000335 ScopeLoc, T.get(), Syntax);
Joey Goulyaba589c2013-03-08 09:42:32 +0000336 } else {
337 AttributeList *attr = Attrs.addNew(
Aaron Ballman00e99962013-08-31 01:11:41 +0000338 AttrName, SourceRange(AttrLoc, RParen), ScopeName, ScopeLoc,
339 ArgExprs.data(), ArgExprs.size(), Syntax);
Joey Goulyaba589c2013-03-08 09:42:32 +0000340 if (BuiltinType &&
341 attr->getKind() == AttributeList::AT_IBOutletCollection)
342 Diag(Tok, diag::err_iboutletcollection_builtintype);
343 }
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000344 }
345}
346
Chad Rosierc1183952012-06-26 22:30:43 +0000347/// \brief Parses a single argument for a declspec, including the
Aaron Ballman478faed2012-06-19 22:09:27 +0000348/// surrounding parens.
Chad Rosierc1183952012-06-26 22:30:43 +0000349void Parser::ParseMicrosoftDeclSpecWithSingleArg(IdentifierInfo *AttrName,
Aaron Ballman478faed2012-06-19 22:09:27 +0000350 SourceLocation AttrNameLoc,
351 ParsedAttributes &Attrs)
352{
353 BalancedDelimiterTracker T(*this, tok::l_paren);
Chad Rosierc1183952012-06-26 22:30:43 +0000354 if (T.expectAndConsume(diag::err_expected_lparen_after,
Aaron Ballman478faed2012-06-19 22:09:27 +0000355 AttrName->getNameStart(), tok::r_paren))
356 return;
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000357
Aaron Ballman478faed2012-06-19 22:09:27 +0000358 ExprResult ArgExpr(ParseConstantExpression());
359 if (ArgExpr.isInvalid()) {
360 T.skipToEnd();
361 return;
362 }
Aaron Ballman00e99962013-08-31 01:11:41 +0000363 ArgsUnion ExprList = ArgExpr.take();
364 Attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, &ExprList, 1,
365 AttributeList::AS_Declspec);
Aaron Ballman478faed2012-06-19 22:09:27 +0000366
367 T.consumeClose();
368}
369
Chad Rosierc1183952012-06-26 22:30:43 +0000370/// \brief Determines whether a declspec is a "simple" one requiring no
Aaron Ballman478faed2012-06-19 22:09:27 +0000371/// arguments.
372bool Parser::IsSimpleMicrosoftDeclSpec(IdentifierInfo *Ident) {
373 return llvm::StringSwitch<bool>(Ident->getName())
374 .Case("dllimport", true)
375 .Case("dllexport", true)
376 .Case("noreturn", true)
377 .Case("nothrow", true)
378 .Case("noinline", true)
379 .Case("naked", true)
380 .Case("appdomain", true)
381 .Case("process", true)
382 .Case("jitintrinsic", true)
383 .Case("noalias", true)
384 .Case("restrict", true)
385 .Case("novtable", true)
386 .Case("selectany", true)
387 .Case("thread", true)
Aaron Ballman444eb6e2013-05-04 16:58:37 +0000388 .Case("safebuffers", true )
Aaron Ballman478faed2012-06-19 22:09:27 +0000389 .Default(false);
390}
391
Chad Rosierc1183952012-06-26 22:30:43 +0000392/// \brief Attempts to parse a declspec which is not simple (one that takes
Aaron Ballman478faed2012-06-19 22:09:27 +0000393/// parameters). Will return false if we properly handled the declspec, or
394/// true if it is an unknown declspec.
Chad Rosierc1183952012-06-26 22:30:43 +0000395void Parser::ParseComplexMicrosoftDeclSpec(IdentifierInfo *Ident,
Aaron Ballman478faed2012-06-19 22:09:27 +0000396 SourceLocation Loc,
397 ParsedAttributes &Attrs) {
398 // Try to handle the easy case first -- these declspecs all take a single
399 // parameter as their argument.
400 if (llvm::StringSwitch<bool>(Ident->getName())
401 .Case("uuid", true)
402 .Case("align", true)
403 .Case("allocate", true)
404 .Default(false)) {
405 ParseMicrosoftDeclSpecWithSingleArg(Ident, Loc, Attrs);
406 } else if (Ident->getName() == "deprecated") {
Chad Rosierc1183952012-06-26 22:30:43 +0000407 // The deprecated declspec has an optional single argument, so we will
408 // check for a l-paren to decide whether we should parse an argument or
Aaron Ballman478faed2012-06-19 22:09:27 +0000409 // not.
410 if (Tok.getKind() == tok::l_paren)
411 ParseMicrosoftDeclSpecWithSingleArg(Ident, Loc, Attrs);
412 else
Aaron Ballman00e99962013-08-31 01:11:41 +0000413 Attrs.addNew(Ident, Loc, 0, Loc, 0, 0, AttributeList::AS_Declspec);
Aaron Ballman478faed2012-06-19 22:09:27 +0000414 } else if (Ident->getName() == "property") {
415 // The property declspec is more complex in that it can take one or two
Chad Rosierc1183952012-06-26 22:30:43 +0000416 // assignment expressions as a parameter, but the lhs of the assignment
Aaron Ballman478faed2012-06-19 22:09:27 +0000417 // must be named get or put.
John McCall5e77d762013-04-16 07:28:30 +0000418 if (Tok.isNot(tok::l_paren)) {
419 Diag(Tok.getLocation(), diag::err_expected_lparen_after)
420 << Ident->getNameStart();
Aaron Ballman478faed2012-06-19 22:09:27 +0000421 return;
John McCall5e77d762013-04-16 07:28:30 +0000422 }
423 BalancedDelimiterTracker T(*this, tok::l_paren);
424 T.expectAndConsume(diag::err_expected_lparen_after,
425 Ident->getNameStart(), tok::r_paren);
426
427 enum AccessorKind {
428 AK_Invalid = -1,
429 AK_Put = 0, AK_Get = 1 // indices into AccessorNames
430 };
431 IdentifierInfo *AccessorNames[] = { 0, 0 };
432 bool HasInvalidAccessor = false;
433
434 // Parse the accessor specifications.
435 while (true) {
436 // Stop if this doesn't look like an accessor spec.
437 if (!Tok.is(tok::identifier)) {
438 // If the user wrote a completely empty list, use a special diagnostic.
439 if (Tok.is(tok::r_paren) && !HasInvalidAccessor &&
440 AccessorNames[AK_Put] == 0 && AccessorNames[AK_Get] == 0) {
441 Diag(Loc, diag::err_ms_property_no_getter_or_putter);
442 break;
443 }
444
445 Diag(Tok.getLocation(), diag::err_ms_property_unknown_accessor);
446 break;
447 }
448
449 AccessorKind Kind;
450 SourceLocation KindLoc = Tok.getLocation();
451 StringRef KindStr = Tok.getIdentifierInfo()->getName();
452 if (KindStr == "get") {
453 Kind = AK_Get;
454 } else if (KindStr == "put") {
455 Kind = AK_Put;
456
457 // Recover from the common mistake of using 'set' instead of 'put'.
458 } else if (KindStr == "set") {
459 Diag(KindLoc, diag::err_ms_property_has_set_accessor)
460 << FixItHint::CreateReplacement(KindLoc, "put");
461 Kind = AK_Put;
462
463 // Handle the mistake of forgetting the accessor kind by skipping
464 // this accessor.
465 } else if (NextToken().is(tok::comma) || NextToken().is(tok::r_paren)) {
466 Diag(KindLoc, diag::err_ms_property_missing_accessor_kind);
467 ConsumeToken();
468 HasInvalidAccessor = true;
469 goto next_property_accessor;
470
471 // Otherwise, complain about the unknown accessor kind.
472 } else {
473 Diag(KindLoc, diag::err_ms_property_unknown_accessor);
474 HasInvalidAccessor = true;
475 Kind = AK_Invalid;
476
477 // Try to keep parsing unless it doesn't look like an accessor spec.
478 if (!NextToken().is(tok::equal)) break;
479 }
480
481 // Consume the identifier.
482 ConsumeToken();
483
484 // Consume the '='.
485 if (Tok.is(tok::equal)) {
486 ConsumeToken();
487 } else {
488 Diag(Tok.getLocation(), diag::err_ms_property_expected_equal)
489 << KindStr;
490 break;
491 }
492
493 // Expect the method name.
494 if (!Tok.is(tok::identifier)) {
495 Diag(Tok.getLocation(), diag::err_ms_property_expected_accessor_name);
496 break;
497 }
498
499 if (Kind == AK_Invalid) {
500 // Just drop invalid accessors.
501 } else if (AccessorNames[Kind] != NULL) {
502 // Complain about the repeated accessor, ignore it, and keep parsing.
503 Diag(KindLoc, diag::err_ms_property_duplicate_accessor) << KindStr;
504 } else {
505 AccessorNames[Kind] = Tok.getIdentifierInfo();
506 }
507 ConsumeToken();
508
509 next_property_accessor:
510 // Keep processing accessors until we run out.
511 if (Tok.is(tok::comma)) {
512 ConsumeAnyToken();
513 continue;
514
515 // If we run into the ')', stop without consuming it.
516 } else if (Tok.is(tok::r_paren)) {
517 break;
518 } else {
519 Diag(Tok.getLocation(), diag::err_ms_property_expected_comma_or_rparen);
520 break;
521 }
522 }
523
524 // Only add the property attribute if it was well-formed.
525 if (!HasInvalidAccessor) {
Aaron Ballman00e99962013-08-31 01:11:41 +0000526 Attrs.addNewPropertyAttr(Ident, Loc, 0, SourceLocation(),
John McCall5e77d762013-04-16 07:28:30 +0000527 AccessorNames[AK_Get], AccessorNames[AK_Put],
528 AttributeList::AS_Declspec);
529 }
Aaron Ballman478faed2012-06-19 22:09:27 +0000530 T.skipToEnd();
531 } else {
532 // We don't recognize this as a valid declspec, but instead of creating the
533 // attribute and allowing sema to warn about it, we will warn here instead.
534 // This is because some attributes have multiple spellings, but we need to
535 // disallow that for declspecs (such as align vs aligned). If we made the
Chad Rosierc1183952012-06-26 22:30:43 +0000536 // attribute, we'd have to split the valid declspec spelling logic into
Aaron Ballman478faed2012-06-19 22:09:27 +0000537 // both locations.
538 Diag(Loc, diag::warn_ms_declspec_unknown) << Ident;
539
540 // If there's an open paren, we should eat the open and close parens under
541 // the assumption that this unknown declspec has parameters.
542 BalancedDelimiterTracker T(*this, tok::l_paren);
543 if (!T.consumeOpen())
544 T.skipToEnd();
545 }
546}
547
Eli Friedman06de2b52009-06-08 07:21:15 +0000548/// [MS] decl-specifier:
549/// __declspec ( extended-decl-modifier-seq )
550///
551/// [MS] extended-decl-modifier-seq:
552/// extended-decl-modifier[opt]
553/// extended-decl-modifier extended-decl-modifier-seq
Aaron Ballman478faed2012-06-19 22:09:27 +0000554void Parser::ParseMicrosoftDeclSpec(ParsedAttributes &Attrs) {
Steve Naroff3a9b7e02008-12-24 20:59:21 +0000555 assert(Tok.is(tok::kw___declspec) && "Not a declspec!");
Eli Friedman06de2b52009-06-08 07:21:15 +0000556
Steve Naroff3a9b7e02008-12-24 20:59:21 +0000557 ConsumeToken();
Aaron Ballman478faed2012-06-19 22:09:27 +0000558 BalancedDelimiterTracker T(*this, tok::l_paren);
Chad Rosierc1183952012-06-26 22:30:43 +0000559 if (T.expectAndConsume(diag::err_expected_lparen_after, "__declspec",
Aaron Ballman478faed2012-06-19 22:09:27 +0000560 tok::r_paren))
John McCall53fa7142010-12-24 02:08:15 +0000561 return;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +0000562
Chad Rosierc1183952012-06-26 22:30:43 +0000563 // An empty declspec is perfectly legal and should not warn. Additionally,
Aaron Ballman478faed2012-06-19 22:09:27 +0000564 // you can specify multiple attributes per declspec.
565 while (Tok.getKind() != tok::r_paren) {
566 // We expect either a well-known identifier or a generic string. Anything
567 // else is a malformed declspec.
568 bool IsString = Tok.getKind() == tok::string_literal ? true : false;
Chad Rosierc1183952012-06-26 22:30:43 +0000569 if (!IsString && Tok.getKind() != tok::identifier &&
Aaron Ballman478faed2012-06-19 22:09:27 +0000570 Tok.getKind() != tok::kw_restrict) {
571 Diag(Tok, diag::err_ms_declspec_type);
572 T.skipToEnd();
573 return;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +0000574 }
Aaron Ballman478faed2012-06-19 22:09:27 +0000575
576 IdentifierInfo *AttrName;
577 SourceLocation AttrNameLoc;
578 if (IsString) {
579 SmallString<8> StrBuffer;
580 bool Invalid = false;
581 StringRef Str = PP.getSpelling(Tok, StrBuffer, &Invalid);
582 if (Invalid) {
583 T.skipToEnd();
584 return;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +0000585 }
Aaron Ballman478faed2012-06-19 22:09:27 +0000586 AttrName = PP.getIdentifierInfo(Str);
587 AttrNameLoc = ConsumeStringToken();
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +0000588 } else {
Aaron Ballman478faed2012-06-19 22:09:27 +0000589 AttrName = Tok.getIdentifierInfo();
590 AttrNameLoc = ConsumeToken();
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +0000591 }
Chad Rosierc1183952012-06-26 22:30:43 +0000592
Aaron Ballman478faed2012-06-19 22:09:27 +0000593 if (IsString || IsSimpleMicrosoftDeclSpec(AttrName))
Chad Rosierc1183952012-06-26 22:30:43 +0000594 // If we have a generic string, we will allow it because there is no
595 // documented list of allowable string declspecs, but we know they exist
Aaron Ballman478faed2012-06-19 22:09:27 +0000596 // (for instance, SAL declspecs in older versions of MSVC).
597 //
Chad Rosierc1183952012-06-26 22:30:43 +0000598 // Alternatively, if the identifier is a simple one, then it requires no
Aaron Ballman478faed2012-06-19 22:09:27 +0000599 // arguments and can be turned into an attribute directly.
Aaron Ballman00e99962013-08-31 01:11:41 +0000600 Attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0, 0,
601 AttributeList::AS_Declspec);
Aaron Ballman478faed2012-06-19 22:09:27 +0000602 else
603 ParseComplexMicrosoftDeclSpec(AttrName, AttrNameLoc, Attrs);
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +0000604 }
Aaron Ballman478faed2012-06-19 22:09:27 +0000605 T.consumeClose();
Eli Friedman53339e02009-06-08 23:27:34 +0000606}
607
John McCall53fa7142010-12-24 02:08:15 +0000608void Parser::ParseMicrosoftTypeAttributes(ParsedAttributes &attrs) {
Eli Friedman53339e02009-06-08 23:27:34 +0000609 // Treat these like attributes
Eli Friedman53339e02009-06-08 23:27:34 +0000610 while (Tok.is(tok::kw___fastcall) || Tok.is(tok::kw___stdcall) ||
Douglas Gregora941dca2010-05-18 16:57:00 +0000611 Tok.is(tok::kw___thiscall) || Tok.is(tok::kw___cdecl) ||
Francois Pichet17ed0202011-08-18 09:59:55 +0000612 Tok.is(tok::kw___ptr64) || Tok.is(tok::kw___w64) ||
Aaron Ballman317a77f2013-05-22 23:25:32 +0000613 Tok.is(tok::kw___ptr32) || Tok.is(tok::kw___unaligned) ||
614 Tok.is(tok::kw___sptr) || Tok.is(tok::kw___uptr)) {
Eli Friedman53339e02009-06-08 23:27:34 +0000615 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
616 SourceLocation AttrNameLoc = ConsumeToken();
Aaron Ballman00e99962013-08-31 01:11:41 +0000617 attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0, 0,
618 AttributeList::AS_Keyword);
Eli Friedman53339e02009-06-08 23:27:34 +0000619 }
Steve Naroff3a9b7e02008-12-24 20:59:21 +0000620}
621
John McCall53fa7142010-12-24 02:08:15 +0000622void Parser::ParseBorlandTypeAttributes(ParsedAttributes &attrs) {
Dawn Perchik335e16b2010-09-03 01:29:35 +0000623 // Treat these like attributes
624 while (Tok.is(tok::kw___pascal)) {
625 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
626 SourceLocation AttrNameLoc = ConsumeToken();
Aaron Ballman00e99962013-08-31 01:11:41 +0000627 attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0, 0,
628 AttributeList::AS_Keyword);
Dawn Perchik335e16b2010-09-03 01:29:35 +0000629 }
John McCall53fa7142010-12-24 02:08:15 +0000630}
631
Peter Collingbourne7ce13fc2011-02-14 01:42:53 +0000632void Parser::ParseOpenCLAttributes(ParsedAttributes &attrs) {
633 // Treat these like attributes
634 while (Tok.is(tok::kw___kernel)) {
Richard Smith0cdcc982013-01-29 01:24:26 +0000635 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
Peter Collingbourne7ce13fc2011-02-14 01:42:53 +0000636 SourceLocation AttrNameLoc = ConsumeToken();
Aaron Ballman00e99962013-08-31 01:11:41 +0000637 attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0, 0,
638 AttributeList::AS_Keyword);
Peter Collingbourne7ce13fc2011-02-14 01:42:53 +0000639 }
640}
641
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000642void Parser::ParseOpenCLQualifiers(DeclSpec &DS) {
Richard Smith0cdcc982013-01-29 01:24:26 +0000643 // FIXME: The mapping from attribute spelling to semantics should be
644 // performed in Sema, not here.
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000645 SourceLocation Loc = Tok.getLocation();
646 switch(Tok.getKind()) {
647 // OpenCL qualifiers:
648 case tok::kw___private:
Chad Rosierc1183952012-06-26 22:30:43 +0000649 case tok::kw_private:
John McCall084e83d2011-03-24 11:26:52 +0000650 DS.getAttributes().addNewInteger(
Chad Rosierc1183952012-06-26 22:30:43 +0000651 Actions.getASTContext(),
John McCall084e83d2011-03-24 11:26:52 +0000652 PP.getIdentifierInfo("address_space"), Loc, 0);
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000653 break;
Chad Rosierc1183952012-06-26 22:30:43 +0000654
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000655 case tok::kw___global:
John McCall084e83d2011-03-24 11:26:52 +0000656 DS.getAttributes().addNewInteger(
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000657 Actions.getASTContext(),
John McCall084e83d2011-03-24 11:26:52 +0000658 PP.getIdentifierInfo("address_space"), Loc, LangAS::opencl_global);
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000659 break;
Chad Rosierc1183952012-06-26 22:30:43 +0000660
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000661 case tok::kw___local:
John McCall084e83d2011-03-24 11:26:52 +0000662 DS.getAttributes().addNewInteger(
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000663 Actions.getASTContext(),
John McCall084e83d2011-03-24 11:26:52 +0000664 PP.getIdentifierInfo("address_space"), Loc, LangAS::opencl_local);
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000665 break;
Chad Rosierc1183952012-06-26 22:30:43 +0000666
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000667 case tok::kw___constant:
John McCall084e83d2011-03-24 11:26:52 +0000668 DS.getAttributes().addNewInteger(
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000669 Actions.getASTContext(),
John McCall084e83d2011-03-24 11:26:52 +0000670 PP.getIdentifierInfo("address_space"), Loc, LangAS::opencl_constant);
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000671 break;
Chad Rosierc1183952012-06-26 22:30:43 +0000672
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000673 case tok::kw___read_only:
John McCall084e83d2011-03-24 11:26:52 +0000674 DS.getAttributes().addNewInteger(
Chad Rosierc1183952012-06-26 22:30:43 +0000675 Actions.getASTContext(),
John McCall084e83d2011-03-24 11:26:52 +0000676 PP.getIdentifierInfo("opencl_image_access"), Loc, CLIA_read_only);
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000677 break;
Chad Rosierc1183952012-06-26 22:30:43 +0000678
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000679 case tok::kw___write_only:
John McCall084e83d2011-03-24 11:26:52 +0000680 DS.getAttributes().addNewInteger(
Chad Rosierc1183952012-06-26 22:30:43 +0000681 Actions.getASTContext(),
John McCall084e83d2011-03-24 11:26:52 +0000682 PP.getIdentifierInfo("opencl_image_access"), Loc, CLIA_write_only);
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000683 break;
Chad Rosierc1183952012-06-26 22:30:43 +0000684
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000685 case tok::kw___read_write:
John McCall084e83d2011-03-24 11:26:52 +0000686 DS.getAttributes().addNewInteger(
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000687 Actions.getASTContext(),
John McCall084e83d2011-03-24 11:26:52 +0000688 PP.getIdentifierInfo("opencl_image_access"), Loc, CLIA_read_write);
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000689 break;
690 default: break;
691 }
692}
693
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000694/// \brief Parse a version number.
695///
696/// version:
697/// simple-integer
698/// simple-integer ',' simple-integer
699/// simple-integer ',' simple-integer ',' simple-integer
700VersionTuple Parser::ParseVersionTuple(SourceRange &Range) {
701 Range = Tok.getLocation();
702
703 if (!Tok.is(tok::numeric_constant)) {
704 Diag(Tok, diag::err_expected_version);
705 SkipUntil(tok::comma, tok::r_paren, true, true, true);
706 return VersionTuple();
707 }
708
709 // Parse the major (and possibly minor and subminor) versions, which
710 // are stored in the numeric constant. We utilize a quirk of the
711 // lexer, which is that it handles something like 1.2.3 as a single
712 // numeric constant, rather than two separate tokens.
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +0000713 SmallString<512> Buffer;
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000714 Buffer.resize(Tok.getLength()+1);
715 const char *ThisTokBegin = &Buffer[0];
716
717 // Get the spelling of the token, which eliminates trigraphs, etc.
718 bool Invalid = false;
719 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin, &Invalid);
720 if (Invalid)
721 return VersionTuple();
722
723 // Parse the major version.
724 unsigned AfterMajor = 0;
725 unsigned Major = 0;
Jordan Rosea7d03842013-02-08 22:30:41 +0000726 while (AfterMajor < ActualLength && isDigit(ThisTokBegin[AfterMajor])) {
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000727 Major = Major * 10 + ThisTokBegin[AfterMajor] - '0';
728 ++AfterMajor;
729 }
730
731 if (AfterMajor == 0) {
732 Diag(Tok, diag::err_expected_version);
733 SkipUntil(tok::comma, tok::r_paren, true, true, true);
734 return VersionTuple();
735 }
736
737 if (AfterMajor == ActualLength) {
738 ConsumeToken();
739
740 // We only had a single version component.
741 if (Major == 0) {
742 Diag(Tok, diag::err_zero_version);
743 return VersionTuple();
744 }
745
746 return VersionTuple(Major);
747 }
748
749 if (ThisTokBegin[AfterMajor] != '.' || (AfterMajor + 1 == ActualLength)) {
750 Diag(Tok, diag::err_expected_version);
751 SkipUntil(tok::comma, tok::r_paren, true, true, true);
752 return VersionTuple();
753 }
754
755 // Parse the minor version.
756 unsigned AfterMinor = AfterMajor + 1;
757 unsigned Minor = 0;
Jordan Rosea7d03842013-02-08 22:30:41 +0000758 while (AfterMinor < ActualLength && isDigit(ThisTokBegin[AfterMinor])) {
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000759 Minor = Minor * 10 + ThisTokBegin[AfterMinor] - '0';
760 ++AfterMinor;
761 }
762
763 if (AfterMinor == ActualLength) {
764 ConsumeToken();
Chad Rosierc1183952012-06-26 22:30:43 +0000765
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000766 // We had major.minor.
767 if (Major == 0 && Minor == 0) {
768 Diag(Tok, diag::err_zero_version);
769 return VersionTuple();
770 }
771
Chad Rosierc1183952012-06-26 22:30:43 +0000772 return VersionTuple(Major, Minor);
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000773 }
774
775 // If what follows is not a '.', we have a problem.
776 if (ThisTokBegin[AfterMinor] != '.') {
777 Diag(Tok, diag::err_expected_version);
778 SkipUntil(tok::comma, tok::r_paren, true, true, true);
Chad Rosierc1183952012-06-26 22:30:43 +0000779 return VersionTuple();
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000780 }
781
782 // Parse the subminor version.
783 unsigned AfterSubminor = AfterMinor + 1;
784 unsigned Subminor = 0;
Jordan Rosea7d03842013-02-08 22:30:41 +0000785 while (AfterSubminor < ActualLength && isDigit(ThisTokBegin[AfterSubminor])) {
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000786 Subminor = Subminor * 10 + ThisTokBegin[AfterSubminor] - '0';
787 ++AfterSubminor;
788 }
789
790 if (AfterSubminor != ActualLength) {
791 Diag(Tok, diag::err_expected_version);
792 SkipUntil(tok::comma, tok::r_paren, true, true, true);
793 return VersionTuple();
794 }
795 ConsumeToken();
796 return VersionTuple(Major, Minor, Subminor);
797}
798
799/// \brief Parse the contents of the "availability" attribute.
800///
801/// availability-attribute:
Fariborz Jahanian88d510d2011-12-10 00:28:41 +0000802/// 'availability' '(' platform ',' version-arg-list, opt-message')'
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000803///
804/// platform:
805/// identifier
806///
807/// version-arg-list:
808/// version-arg
809/// version-arg ',' version-arg-list
810///
811/// version-arg:
812/// 'introduced' '=' version
813/// 'deprecated' '=' version
Douglas Gregorfdd417f2012-03-11 04:53:21 +0000814/// 'obsoleted' = version
Douglas Gregor7ab142b2011-03-26 03:35:55 +0000815/// 'unavailable'
Fariborz Jahanian88d510d2011-12-10 00:28:41 +0000816/// opt-message:
817/// 'message' '=' <string>
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000818void Parser::ParseAvailabilityAttribute(IdentifierInfo &Availability,
819 SourceLocation AvailabilityLoc,
820 ParsedAttributes &attrs,
821 SourceLocation *endLoc) {
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000822 enum { Introduced, Deprecated, Obsoleted, Unknown };
823 AvailabilityChange Changes[Unknown];
Fariborz Jahanian88d510d2011-12-10 00:28:41 +0000824 ExprResult MessageExpr;
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000825
826 // Opening '('.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +0000827 BalancedDelimiterTracker T(*this, tok::l_paren);
828 if (T.consumeOpen()) {
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000829 Diag(Tok, diag::err_expected_lparen);
830 return;
831 }
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000832
833 // Parse the platform name,
834 if (Tok.isNot(tok::identifier)) {
835 Diag(Tok, diag::err_availability_expected_platform);
836 SkipUntil(tok::r_paren);
837 return;
838 }
Richard Smithfeefaf52013-09-03 18:01:40 +0000839 IdentifierLoc *Platform = ParseIdentifierLoc();
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000840
841 // Parse the ',' following the platform name.
842 if (ExpectAndConsume(tok::comma, diag::err_expected_comma, "", tok::r_paren))
843 return;
844
845 // If we haven't grabbed the pointers for the identifiers
846 // "introduced", "deprecated", and "obsoleted", do so now.
847 if (!Ident_introduced) {
848 Ident_introduced = PP.getIdentifierInfo("introduced");
849 Ident_deprecated = PP.getIdentifierInfo("deprecated");
850 Ident_obsoleted = PP.getIdentifierInfo("obsoleted");
Douglas Gregor7ab142b2011-03-26 03:35:55 +0000851 Ident_unavailable = PP.getIdentifierInfo("unavailable");
Fariborz Jahanian88d510d2011-12-10 00:28:41 +0000852 Ident_message = PP.getIdentifierInfo("message");
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000853 }
854
855 // Parse the set of introductions/deprecations/removals.
Douglas Gregor7ab142b2011-03-26 03:35:55 +0000856 SourceLocation UnavailableLoc;
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000857 do {
858 if (Tok.isNot(tok::identifier)) {
859 Diag(Tok, diag::err_availability_expected_change);
860 SkipUntil(tok::r_paren);
861 return;
862 }
863 IdentifierInfo *Keyword = Tok.getIdentifierInfo();
864 SourceLocation KeywordLoc = ConsumeToken();
865
Douglas Gregor7ab142b2011-03-26 03:35:55 +0000866 if (Keyword == Ident_unavailable) {
867 if (UnavailableLoc.isValid()) {
868 Diag(KeywordLoc, diag::err_availability_redundant)
869 << Keyword << SourceRange(UnavailableLoc);
Chad Rosierc1183952012-06-26 22:30:43 +0000870 }
Douglas Gregor7ab142b2011-03-26 03:35:55 +0000871 UnavailableLoc = KeywordLoc;
872
873 if (Tok.isNot(tok::comma))
874 break;
875
876 ConsumeToken();
877 continue;
Chad Rosierc1183952012-06-26 22:30:43 +0000878 }
879
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000880 if (Tok.isNot(tok::equal)) {
881 Diag(Tok, diag::err_expected_equal_after)
882 << Keyword;
883 SkipUntil(tok::r_paren);
884 return;
885 }
886 ConsumeToken();
Fariborz Jahanian88d510d2011-12-10 00:28:41 +0000887 if (Keyword == Ident_message) {
888 if (!isTokenStringLiteral()) {
Andy Gibbsa8df57a2012-11-17 19:16:52 +0000889 Diag(Tok, diag::err_expected_string_literal)
890 << /*Source='availability attribute'*/2;
Fariborz Jahanian88d510d2011-12-10 00:28:41 +0000891 SkipUntil(tok::r_paren);
892 return;
893 }
894 MessageExpr = ParseStringLiteralExpression();
895 break;
896 }
Chad Rosierc1183952012-06-26 22:30:43 +0000897
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000898 SourceRange VersionRange;
899 VersionTuple Version = ParseVersionTuple(VersionRange);
Chad Rosierc1183952012-06-26 22:30:43 +0000900
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000901 if (Version.empty()) {
902 SkipUntil(tok::r_paren);
903 return;
904 }
905
906 unsigned Index;
907 if (Keyword == Ident_introduced)
908 Index = Introduced;
909 else if (Keyword == Ident_deprecated)
910 Index = Deprecated;
911 else if (Keyword == Ident_obsoleted)
912 Index = Obsoleted;
Chad Rosierc1183952012-06-26 22:30:43 +0000913 else
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000914 Index = Unknown;
915
916 if (Index < Unknown) {
917 if (!Changes[Index].KeywordLoc.isInvalid()) {
918 Diag(KeywordLoc, diag::err_availability_redundant)
Chad Rosierc1183952012-06-26 22:30:43 +0000919 << Keyword
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000920 << SourceRange(Changes[Index].KeywordLoc,
921 Changes[Index].VersionRange.getEnd());
922 }
923
924 Changes[Index].KeywordLoc = KeywordLoc;
925 Changes[Index].Version = Version;
926 Changes[Index].VersionRange = VersionRange;
927 } else {
928 Diag(KeywordLoc, diag::err_availability_unknown_change)
929 << Keyword << VersionRange;
930 }
931
932 if (Tok.isNot(tok::comma))
933 break;
934
935 ConsumeToken();
936 } while (true);
937
938 // Closing ')'.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +0000939 if (T.consumeClose())
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000940 return;
941
942 if (endLoc)
Douglas Gregore7a8e3b2011-10-12 16:37:45 +0000943 *endLoc = T.getCloseLocation();
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000944
Douglas Gregor7ab142b2011-03-26 03:35:55 +0000945 // The 'unavailable' availability cannot be combined with any other
946 // availability changes. Make sure that hasn't happened.
947 if (UnavailableLoc.isValid()) {
948 bool Complained = false;
949 for (unsigned Index = Introduced; Index != Unknown; ++Index) {
950 if (Changes[Index].KeywordLoc.isValid()) {
951 if (!Complained) {
952 Diag(UnavailableLoc, diag::warn_availability_and_unavailable)
953 << SourceRange(Changes[Index].KeywordLoc,
954 Changes[Index].VersionRange.getEnd());
955 Complained = true;
956 }
957
958 // Clear out the availability.
959 Changes[Index] = AvailabilityChange();
960 }
961 }
962 }
963
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000964 // Record this attribute
Chad Rosierc1183952012-06-26 22:30:43 +0000965 attrs.addNew(&Availability,
966 SourceRange(AvailabilityLoc, T.getCloseLocation()),
Fariborz Jahanian586be882012-01-23 23:38:32 +0000967 0, AvailabilityLoc,
Aaron Ballman00e99962013-08-31 01:11:41 +0000968 Platform,
John McCall084e83d2011-03-24 11:26:52 +0000969 Changes[Introduced],
970 Changes[Deprecated],
Chad Rosierc1183952012-06-26 22:30:43 +0000971 Changes[Obsoleted],
Fariborz Jahanian88d510d2011-12-10 00:28:41 +0000972 UnavailableLoc, MessageExpr.take(),
Alexis Hunta0e54d42012-06-18 16:13:52 +0000973 AttributeList::AS_GNU);
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000974}
975
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000976
Bill Wendling44426052012-12-20 19:22:21 +0000977// Late Parsed Attributes:
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000978// See other examples of late parsing in lib/Parse/ParseCXXInlineMethods
979
980void Parser::LateParsedDeclaration::ParseLexedAttributes() {}
981
982void Parser::LateParsedClass::ParseLexedAttributes() {
983 Self->ParseLexedAttributes(*Class);
984}
985
986void Parser::LateParsedAttribute::ParseLexedAttributes() {
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +0000987 Self->ParseLexedAttribute(*this, true, false);
Caitlin Sadowski9385dd72011-09-08 17:42:22 +0000988}
989
990/// Wrapper class which calls ParseLexedAttribute, after setting up the
991/// scope appropriately.
992void Parser::ParseLexedAttributes(ParsingClass &Class) {
993 // Deal with templates
994 // FIXME: Test cases to make sure this does the right thing for templates.
995 bool HasTemplateScope = !Class.TopLevelClass && Class.TemplateScope;
996 ParseScope ClassTemplateScope(this, Scope::TemplateParamScope,
997 HasTemplateScope);
998 if (HasTemplateScope)
999 Actions.ActOnReenterTemplateScope(getCurScope(), Class.TagOrTemplate);
1000
Douglas Gregor3024f072012-04-16 07:05:22 +00001001 // Set or update the scope flags.
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001002 bool AlreadyHasClassScope = Class.TopLevelClass;
Douglas Gregor3024f072012-04-16 07:05:22 +00001003 unsigned ScopeFlags = Scope::ClassScope|Scope::DeclScope;
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001004 ParseScope ClassScope(this, ScopeFlags, !AlreadyHasClassScope);
1005 ParseScopeFlags ClassScopeFlags(this, ScopeFlags, AlreadyHasClassScope);
1006
DeLesley Hutchins6f860042012-04-06 15:10:17 +00001007 // Enter the scope of nested classes
1008 if (!AlreadyHasClassScope)
1009 Actions.ActOnStartDelayedMemberDeclarations(getCurScope(),
1010 Class.TagOrTemplate);
Benjamin Kramer1d373c62012-05-17 12:01:52 +00001011 if (!Class.LateParsedDeclarations.empty()) {
Douglas Gregor3024f072012-04-16 07:05:22 +00001012 for (unsigned i = 0, ni = Class.LateParsedDeclarations.size(); i < ni; ++i){
1013 Class.LateParsedDeclarations[i]->ParseLexedAttributes();
1014 }
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001015 }
Chad Rosierc1183952012-06-26 22:30:43 +00001016
DeLesley Hutchins6f860042012-04-06 15:10:17 +00001017 if (!AlreadyHasClassScope)
1018 Actions.ActOnFinishDelayedMemberDeclarations(getCurScope(),
1019 Class.TagOrTemplate);
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001020}
1021
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +00001022
1023/// \brief Parse all attributes in LAs, and attach them to Decl D.
1024void Parser::ParseLexedAttributeList(LateParsedAttrList &LAs, Decl *D,
1025 bool EnterScope, bool OnDefinition) {
DeLesley Hutchins66e300e2012-11-02 21:44:32 +00001026 assert(LAs.parseSoon() &&
1027 "Attribute list should be marked for immediate parsing.");
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +00001028 for (unsigned i = 0, ni = LAs.size(); i < ni; ++i) {
DeLesley Hutchins19c722d2012-08-15 22:41:04 +00001029 if (D)
1030 LAs[i]->addDecl(D);
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +00001031 ParseLexedAttribute(*LAs[i], EnterScope, OnDefinition);
Benjamin Kramerbafc49a2012-04-14 12:44:47 +00001032 delete LAs[i];
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +00001033 }
1034 LAs.clear();
1035}
1036
1037
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001038/// \brief Finish parsing an attribute for which parsing was delayed.
1039/// This will be called at the end of parsing a class declaration
1040/// for each LateParsedAttribute. We consume the saved tokens and
Chad Rosierc1183952012-06-26 22:30:43 +00001041/// create an attribute with the arguments filled in. We add this
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001042/// to the Attribute list for the decl.
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +00001043void Parser::ParseLexedAttribute(LateParsedAttribute &LA,
1044 bool EnterScope, bool OnDefinition) {
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001045 // Save the current token position.
1046 SourceLocation OrigLoc = Tok.getLocation();
1047
1048 // Append the current token at the end of the new token stream so that it
1049 // doesn't get lost.
1050 LA.Toks.push_back(Tok);
1051 PP.EnterTokenStream(LA.Toks.data(), LA.Toks.size(), true, false);
1052 // Consume the previously pushed token.
Argyrios Kyrtzidisc36633c2013-03-27 23:58:17 +00001053 ConsumeAnyToken(/*ConsumeCodeCompletionTok=*/true);
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001054
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +00001055 if (OnDefinition && !IsThreadSafetyAttribute(LA.AttrName.getName())) {
Richard Smith10876ef2013-01-17 01:30:42 +00001056 // FIXME: Do not warn on C++11 attributes, once we start supporting
1057 // them here.
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +00001058 Diag(Tok, diag::warn_attribute_on_function_definition)
1059 << LA.AttrName.getName();
1060 }
1061
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001062 ParsedAttributes Attrs(AttrFactory);
1063 SourceLocation endLoc;
1064
DeLesley Hutchinsf1150d32012-08-20 21:32:18 +00001065 if (LA.Decls.size() > 0) {
DeLesley Hutchinsbd2ee132012-03-02 22:12:59 +00001066 Decl *D = LA.Decls[0];
DeLesley Hutchinsf1150d32012-08-20 21:32:18 +00001067 NamedDecl *ND = dyn_cast<NamedDecl>(D);
1068 RecordDecl *RD = dyn_cast_or_null<RecordDecl>(D->getDeclContext());
Caitlin Sadowski990d5712011-09-08 17:42:31 +00001069
DeLesley Hutchinsf1150d32012-08-20 21:32:18 +00001070 // Allow 'this' within late-parsed attributes.
Richard Smithc3d2ebb2013-06-07 02:33:37 +00001071 Sema::CXXThisScopeRAII ThisScope(Actions, RD, /*TypeQuals=*/0,
1072 ND && ND->isCXXInstanceMember());
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001073
DeLesley Hutchinsf1150d32012-08-20 21:32:18 +00001074 if (LA.Decls.size() == 1) {
1075 // If the Decl is templatized, add template parameters to scope.
1076 bool HasTemplateScope = EnterScope && D->isTemplateDecl();
1077 ParseScope TempScope(this, Scope::TemplateParamScope, HasTemplateScope);
1078 if (HasTemplateScope)
1079 Actions.ActOnReenterTemplateScope(Actions.CurScope, D);
DeLesley Hutchinsbd2ee132012-03-02 22:12:59 +00001080
DeLesley Hutchinsf1150d32012-08-20 21:32:18 +00001081 // If the Decl is on a function, add function parameters to the scope.
1082 bool HasFunScope = EnterScope && D->isFunctionOrFunctionTemplate();
1083 ParseScope FnScope(this, Scope::FnScope|Scope::DeclScope, HasFunScope);
1084 if (HasFunScope)
1085 Actions.ActOnReenterFunctionContext(Actions.CurScope, D);
DeLesley Hutchinsbd2ee132012-03-02 22:12:59 +00001086
Michael Han23214e52012-10-03 01:56:22 +00001087 ParseGNUAttributeArgs(&LA.AttrName, LA.AttrNameLoc, Attrs, &endLoc,
Michael Han360d2252012-10-04 16:42:52 +00001088 0, SourceLocation(), AttributeList::AS_GNU);
DeLesley Hutchinsf1150d32012-08-20 21:32:18 +00001089
1090 if (HasFunScope) {
1091 Actions.ActOnExitFunctionContext();
1092 FnScope.Exit(); // Pop scope, and remove Decls from IdResolver
1093 }
1094 if (HasTemplateScope) {
1095 TempScope.Exit();
1096 }
1097 } else {
1098 // If there are multiple decls, then the decl cannot be within the
1099 // function scope.
Michael Han23214e52012-10-03 01:56:22 +00001100 ParseGNUAttributeArgs(&LA.AttrName, LA.AttrNameLoc, Attrs, &endLoc,
Michael Han360d2252012-10-04 16:42:52 +00001101 0, SourceLocation(), AttributeList::AS_GNU);
DeLesley Hutchinsbd2ee132012-03-02 22:12:59 +00001102 }
DeLesley Hutchins71d61032012-03-02 22:29:50 +00001103 } else {
1104 Diag(Tok, diag::warn_attribute_no_decl) << LA.AttrName.getName();
Caitlin Sadowski990d5712011-09-08 17:42:31 +00001105 }
1106
DeLesley Hutchinsbd2ee132012-03-02 22:12:59 +00001107 for (unsigned i = 0, ni = LA.Decls.size(); i < ni; ++i) {
1108 Actions.ActOnFinishDelayedAttribute(getCurScope(), LA.Decls[i], Attrs);
1109 }
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001110
1111 if (Tok.getLocation() != OrigLoc) {
1112 // Due to a parsing error, we either went over the cached tokens or
1113 // there are still cached tokens left, so we skip the leftover tokens.
1114 // Since this is an uncommon situation that should be avoided, use the
1115 // expensive isBeforeInTranslationUnit call.
1116 if (PP.getSourceManager().isBeforeInTranslationUnit(Tok.getLocation(),
1117 OrigLoc))
1118 while (Tok.getLocation() != OrigLoc && Tok.isNot(tok::eof))
Douglas Gregor0cf55e92012-03-08 01:00:17 +00001119 ConsumeAnyToken();
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001120 }
1121}
1122
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +00001123/// \brief Wrapper around a case statement checking if AttrName is
1124/// one of the thread safety attributes
Dmitri Gribenkof8579502013-01-12 19:30:44 +00001125bool Parser::IsThreadSafetyAttribute(StringRef AttrName) {
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +00001126 return llvm::StringSwitch<bool>(AttrName)
1127 .Case("guarded_by", true)
1128 .Case("guarded_var", true)
1129 .Case("pt_guarded_by", true)
1130 .Case("pt_guarded_var", true)
1131 .Case("lockable", true)
1132 .Case("scoped_lockable", true)
1133 .Case("no_thread_safety_analysis", true)
1134 .Case("acquired_after", true)
1135 .Case("acquired_before", true)
1136 .Case("exclusive_lock_function", true)
1137 .Case("shared_lock_function", true)
1138 .Case("exclusive_trylock_function", true)
1139 .Case("shared_trylock_function", true)
1140 .Case("unlock_function", true)
1141 .Case("lock_returned", true)
1142 .Case("locks_excluded", true)
1143 .Case("exclusive_locks_required", true)
1144 .Case("shared_locks_required", true)
1145 .Default(false);
1146}
1147
1148/// \brief Parse the contents of thread safety attributes. These
1149/// should always be parsed as an expression list.
1150///
1151/// We need to special case the parsing due to the fact that if the first token
1152/// of the first argument is an identifier, the main parse loop will store
1153/// that token as a "parameter" and the rest of
1154/// the arguments will be added to a list of "arguments". However,
1155/// subsequent tokens in the first argument are lost. We instead parse each
1156/// argument as an expression and add all arguments to the list of "arguments".
1157/// In future, we will take advantage of this special case to also
1158/// deal with some argument scoping issues here (for example, referring to a
1159/// function parameter in the attribute on that function).
1160void Parser::ParseThreadSafetyAttribute(IdentifierInfo &AttrName,
1161 SourceLocation AttrNameLoc,
1162 ParsedAttributes &Attrs,
1163 SourceLocation *EndLoc) {
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001164 assert(Tok.is(tok::l_paren) && "Attribute arg list not starting with '('");
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +00001165
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001166 BalancedDelimiterTracker T(*this, tok::l_paren);
1167 T.consumeOpen();
Chad Rosierc1183952012-06-26 22:30:43 +00001168
Aaron Ballman00e99962013-08-31 01:11:41 +00001169 ArgsVector ArgExprs;
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001170 bool ArgExprsOk = true;
Chad Rosierc1183952012-06-26 22:30:43 +00001171
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001172 // now parse the list of expressions
DeLesley Hutchins36f5d852011-12-14 19:36:06 +00001173 while (Tok.isNot(tok::r_paren)) {
DeLesley Hutchinseb849c62013-02-07 19:01:07 +00001174 EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated);
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001175 ExprResult ArgExpr(ParseAssignmentExpression());
1176 if (ArgExpr.isInvalid()) {
1177 ArgExprsOk = false;
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001178 T.consumeClose();
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001179 break;
1180 } else {
1181 ArgExprs.push_back(ArgExpr.release());
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +00001182 }
Caitlin Sadowski9385dd72011-09-08 17:42:22 +00001183 if (Tok.isNot(tok::comma))
1184 break;
1185 ConsumeToken(); // Eat the comma, move to the next argument
1186 }
1187 // Match the ')'.
DeLesley Hutchins30398dd2012-01-20 22:50:54 +00001188 if (ArgExprsOk && !T.consumeClose()) {
Aaron Ballman00e99962013-08-31 01:11:41 +00001189 Attrs.addNew(&AttrName, AttrNameLoc, 0, AttrNameLoc, ArgExprs.data(),
1190 ArgExprs.size(), AttributeList::AS_GNU);
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +00001191 }
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001192 if (EndLoc)
1193 *EndLoc = T.getCloseLocation();
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +00001194}
1195
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +00001196void Parser::ParseTypeTagForDatatypeAttribute(IdentifierInfo &AttrName,
1197 SourceLocation AttrNameLoc,
1198 ParsedAttributes &Attrs,
1199 SourceLocation *EndLoc) {
1200 assert(Tok.is(tok::l_paren) && "Attribute arg list not starting with '('");
1201
1202 BalancedDelimiterTracker T(*this, tok::l_paren);
1203 T.consumeOpen();
1204
1205 if (Tok.isNot(tok::identifier)) {
1206 Diag(Tok, diag::err_expected_ident);
1207 T.skipToEnd();
1208 return;
1209 }
Richard Smithfeefaf52013-09-03 18:01:40 +00001210 IdentifierLoc *ArgumentKind = ParseIdentifierLoc();
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +00001211
1212 if (Tok.isNot(tok::comma)) {
1213 Diag(Tok, diag::err_expected_comma);
1214 T.skipToEnd();
1215 return;
1216 }
1217 ConsumeToken();
1218
1219 SourceRange MatchingCTypeRange;
1220 TypeResult MatchingCType = ParseTypeName(&MatchingCTypeRange);
1221 if (MatchingCType.isInvalid()) {
1222 T.skipToEnd();
1223 return;
1224 }
1225
1226 bool LayoutCompatible = false;
1227 bool MustBeNull = false;
1228 while (Tok.is(tok::comma)) {
1229 ConsumeToken();
1230 if (Tok.isNot(tok::identifier)) {
1231 Diag(Tok, diag::err_expected_ident);
1232 T.skipToEnd();
1233 return;
1234 }
1235 IdentifierInfo *Flag = Tok.getIdentifierInfo();
1236 if (Flag->isStr("layout_compatible"))
1237 LayoutCompatible = true;
1238 else if (Flag->isStr("must_be_null"))
1239 MustBeNull = true;
1240 else {
1241 Diag(Tok, diag::err_type_safety_unknown_flag) << Flag;
1242 T.skipToEnd();
1243 return;
1244 }
1245 ConsumeToken(); // consume flag
1246 }
1247
1248 if (!T.consumeClose()) {
1249 Attrs.addNewTypeTagForDatatype(&AttrName, AttrNameLoc, 0, AttrNameLoc,
Aaron Ballman00e99962013-08-31 01:11:41 +00001250 ArgumentKind, MatchingCType.release(),
1251 LayoutCompatible, MustBeNull,
1252 AttributeList::AS_GNU);
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +00001253 }
1254
1255 if (EndLoc)
1256 *EndLoc = T.getCloseLocation();
1257}
1258
Richard Smith7bdcc4a2012-04-10 01:32:12 +00001259/// DiagnoseProhibitedCXX11Attribute - We have found the opening square brackets
1260/// of a C++11 attribute-specifier in a location where an attribute is not
1261/// permitted. By C++11 [dcl.attr.grammar]p6, this is ill-formed. Diagnose this
1262/// situation.
1263///
1264/// \return \c true if we skipped an attribute-like chunk of tokens, \c false if
1265/// this doesn't appear to actually be an attribute-specifier, and the caller
1266/// should try to parse it.
1267bool Parser::DiagnoseProhibitedCXX11Attribute() {
1268 assert(Tok.is(tok::l_square) && NextToken().is(tok::l_square));
1269
1270 switch (isCXX11AttributeSpecifier(/*Disambiguate*/true)) {
1271 case CAK_NotAttributeSpecifier:
1272 // No diagnostic: we're in Obj-C++11 and this is not actually an attribute.
1273 return false;
1274
1275 case CAK_InvalidAttributeSpecifier:
1276 Diag(Tok.getLocation(), diag::err_l_square_l_square_not_attribute);
1277 return false;
1278
1279 case CAK_AttributeSpecifier:
1280 // Parse and discard the attributes.
1281 SourceLocation BeginLoc = ConsumeBracket();
1282 ConsumeBracket();
1283 SkipUntil(tok::r_square, /*StopAtSemi*/ false);
1284 assert(Tok.is(tok::r_square) && "isCXX11AttributeSpecifier lied");
1285 SourceLocation EndLoc = ConsumeBracket();
1286 Diag(BeginLoc, diag::err_attributes_not_allowed)
1287 << SourceRange(BeginLoc, EndLoc);
1288 return true;
1289 }
Chandler Carruthd8f7d382012-04-10 16:03:08 +00001290 llvm_unreachable("All cases handled above.");
Richard Smith7bdcc4a2012-04-10 01:32:12 +00001291}
1292
Richard Smith98155ad2013-02-20 01:17:14 +00001293/// \brief We have found the opening square brackets of a C++11
1294/// attribute-specifier in a location where an attribute is not permitted, but
1295/// we know where the attributes ought to be written. Parse them anyway, and
1296/// provide a fixit moving them to the right place.
Richard Smith4c96e992013-02-19 23:47:15 +00001297void Parser::DiagnoseMisplacedCXX11Attribute(ParsedAttributesWithRange &Attrs,
1298 SourceLocation CorrectLocation) {
1299 assert((Tok.is(tok::l_square) && NextToken().is(tok::l_square)) ||
1300 Tok.is(tok::kw_alignas));
1301
1302 // Consume the attributes.
1303 SourceLocation Loc = Tok.getLocation();
1304 ParseCXX11Attributes(Attrs);
1305 CharSourceRange AttrRange(SourceRange(Loc, Attrs.Range.getEnd()), true);
1306
1307 Diag(Loc, diag::err_attributes_not_allowed)
1308 << FixItHint::CreateInsertionFromRange(CorrectLocation, AttrRange)
1309 << FixItHint::CreateRemoval(AttrRange);
1310}
1311
John McCall53fa7142010-12-24 02:08:15 +00001312void Parser::DiagnoseProhibitedAttributes(ParsedAttributesWithRange &attrs) {
1313 Diag(attrs.Range.getBegin(), diag::err_attributes_not_allowed)
1314 << attrs.Range;
Dawn Perchik335e16b2010-09-03 01:29:35 +00001315}
1316
Michael Han64536a62012-11-06 19:34:54 +00001317void Parser::ProhibitCXX11Attributes(ParsedAttributesWithRange &attrs) {
1318 AttributeList *AttrList = attrs.getList();
1319 while (AttrList) {
Richard Smith89645bc2013-01-02 12:01:23 +00001320 if (AttrList->isCXX11Attribute()) {
Richard Smith810ad3e2013-01-29 10:02:16 +00001321 Diag(AttrList->getLoc(), diag::err_attribute_not_type_attr)
Michael Han64536a62012-11-06 19:34:54 +00001322 << AttrList->getName();
1323 AttrList->setInvalid();
1324 }
1325 AttrList = AttrList->getNext();
1326 }
1327}
1328
Chris Lattner53361ac2006-08-10 05:19:57 +00001329/// ParseDeclaration - Parse a full 'declaration', which consists of
1330/// declaration-specifiers, some number of declarators, and a semicolon.
Chris Lattner49836b42009-04-02 04:16:50 +00001331/// 'Context' should be a Declarator::TheContext value. This returns the
1332/// location of the semicolon in DeclEnd.
Chris Lattnera5235172007-08-25 06:57:03 +00001333///
1334/// declaration: [C99 6.7]
1335/// block-declaration ->
1336/// simple-declaration
1337/// others [FIXME]
Douglas Gregoreb31f392008-12-01 23:54:00 +00001338/// [C++] template-declaration
Chris Lattnera5235172007-08-25 06:57:03 +00001339/// [C++] namespace-definition
Douglas Gregord7c4d982008-12-30 03:27:21 +00001340/// [C++] using-directive
Douglas Gregor77b50e12009-06-22 23:06:13 +00001341/// [C++] using-declaration
Richard Smithc202b282012-04-14 00:33:13 +00001342/// [C++11/C11] static_assert-declaration
Chris Lattnera5235172007-08-25 06:57:03 +00001343/// others... [FIXME]
1344///
Fariborz Jahanian1db5c942010-09-28 20:42:35 +00001345Parser::DeclGroupPtrTy Parser::ParseDeclaration(StmtVector &Stmts,
1346 unsigned Context,
Alexis Hunt96d5c762009-11-21 08:43:09 +00001347 SourceLocation &DeclEnd,
John McCall53fa7142010-12-24 02:08:15 +00001348 ParsedAttributesWithRange &attrs) {
Argyrios Kyrtzidis355094e2010-06-17 10:52:18 +00001349 ParenBraceBracketBalancer BalancerRAIIObj(*this);
Fariborz Jahanian59b75282011-08-30 17:10:52 +00001350 // Must temporarily exit the objective-c container scope for
1351 // parsing c none objective-c decls.
1352 ObjCDeclContextSwitch ObjCDC(*this);
Chad Rosierc1183952012-06-26 22:30:43 +00001353
John McCall48871652010-08-21 09:40:31 +00001354 Decl *SingleDecl = 0;
Richard Smithcd1c0552011-07-01 19:46:12 +00001355 Decl *OwnedType = 0;
Chris Lattnera5235172007-08-25 06:57:03 +00001356 switch (Tok.getKind()) {
Douglas Gregoreb31f392008-12-01 23:54:00 +00001357 case tok::kw_template:
Douglas Gregor23996282009-05-12 21:31:51 +00001358 case tok::kw_export:
John McCall53fa7142010-12-24 02:08:15 +00001359 ProhibitAttributes(attrs);
Douglas Gregor1b57ff32009-05-12 23:25:50 +00001360 SingleDecl = ParseDeclarationStartingWithTemplate(Context, DeclEnd);
Chris Lattner5bbb3c82009-03-29 16:50:03 +00001361 break;
Sebastian Redl67667942010-08-27 23:12:46 +00001362 case tok::kw_inline:
Sebastian Redl5a5f2c72010-08-31 00:36:45 +00001363 // Could be the start of an inline namespace. Allowed as an ext in C++03.
David Blaikiebbafb8a2012-03-11 07:00:24 +00001364 if (getLangOpts().CPlusPlus && NextToken().is(tok::kw_namespace)) {
John McCall53fa7142010-12-24 02:08:15 +00001365 ProhibitAttributes(attrs);
Sebastian Redl67667942010-08-27 23:12:46 +00001366 SourceLocation InlineLoc = ConsumeToken();
1367 SingleDecl = ParseNamespace(Context, DeclEnd, InlineLoc);
1368 break;
1369 }
Chad Rosierc1183952012-06-26 22:30:43 +00001370 return ParseSimpleDeclaration(Stmts, Context, DeclEnd, attrs,
Fariborz Jahanian1db5c942010-09-28 20:42:35 +00001371 true);
Chris Lattnera5235172007-08-25 06:57:03 +00001372 case tok::kw_namespace:
John McCall53fa7142010-12-24 02:08:15 +00001373 ProhibitAttributes(attrs);
Chris Lattner49836b42009-04-02 04:16:50 +00001374 SingleDecl = ParseNamespace(Context, DeclEnd);
Chris Lattner5bbb3c82009-03-29 16:50:03 +00001375 break;
Douglas Gregord7c4d982008-12-30 03:27:21 +00001376 case tok::kw_using:
John McCall9b72f892010-11-10 02:40:36 +00001377 SingleDecl = ParseUsingDirectiveOrDeclaration(Context, ParsedTemplateInfo(),
Richard Smithcd1c0552011-07-01 19:46:12 +00001378 DeclEnd, attrs, &OwnedType);
Chris Lattner5bbb3c82009-03-29 16:50:03 +00001379 break;
Anders Carlssonf24fcff62009-03-11 16:27:10 +00001380 case tok::kw_static_assert:
Peter Collingbourne3d9cbdc2011-04-15 00:35:57 +00001381 case tok::kw__Static_assert:
John McCall53fa7142010-12-24 02:08:15 +00001382 ProhibitAttributes(attrs);
Chris Lattner49836b42009-04-02 04:16:50 +00001383 SingleDecl = ParseStaticAssertDeclaration(DeclEnd);
Chris Lattner5bbb3c82009-03-29 16:50:03 +00001384 break;
Chris Lattnera5235172007-08-25 06:57:03 +00001385 default:
John McCall53fa7142010-12-24 02:08:15 +00001386 return ParseSimpleDeclaration(Stmts, Context, DeclEnd, attrs, true);
Chris Lattnera5235172007-08-25 06:57:03 +00001387 }
Chad Rosierc1183952012-06-26 22:30:43 +00001388
Chris Lattner5bbb3c82009-03-29 16:50:03 +00001389 // This routine returns a DeclGroup, if the thing we parsed only contains a
Richard Smithcd1c0552011-07-01 19:46:12 +00001390 // single decl, convert it now. Alias declarations can also declare a type;
1391 // include that too if it is present.
1392 return Actions.ConvertDeclToDeclGroup(SingleDecl, OwnedType);
Chris Lattnera5235172007-08-25 06:57:03 +00001393}
1394
1395/// simple-declaration: [C99 6.7: declaration] [C++ 7p1: dcl.dcl]
1396/// declaration-specifiers init-declarator-list[opt] ';'
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00001397/// [C++11] attribute-specifier-seq decl-specifier-seq[opt]
1398/// init-declarator-list ';'
Chris Lattnera5235172007-08-25 06:57:03 +00001399///[C90/C++]init-declarator-list ';' [TODO]
1400/// [OMP] threadprivate-directive [TODO]
Chris Lattner32dc41c2009-03-29 17:27:48 +00001401///
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00001402/// for-range-declaration: [C++11 6.5p1: stmt.ranged]
Richard Smith02e85f32011-04-14 22:09:26 +00001403/// attribute-specifier-seq[opt] type-specifier-seq declarator
1404///
Chris Lattner32dc41c2009-03-29 17:27:48 +00001405/// If RequireSemi is false, this does not check for a ';' at the end of the
Chris Lattner005fc1b2010-04-05 18:18:31 +00001406/// declaration. If it is true, it checks for and eats it.
Richard Smith02e85f32011-04-14 22:09:26 +00001407///
1408/// If FRI is non-null, we might be parsing a for-range-declaration instead
1409/// of a simple-declaration. If we find that we are, we also parse the
1410/// for-range-initializer, and place it here.
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00001411Parser::DeclGroupPtrTy
1412Parser::ParseSimpleDeclaration(StmtVector &Stmts, unsigned Context,
1413 SourceLocation &DeclEnd,
Richard Smith2386c8b2013-02-22 09:06:26 +00001414 ParsedAttributesWithRange &Attrs,
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00001415 bool RequireSemi, ForRangeInit *FRI) {
Chris Lattner53361ac2006-08-10 05:19:57 +00001416 // Parse the common declaration-specifiers piece.
John McCall28a6aea2009-11-04 02:18:39 +00001417 ParsingDeclSpec DS(*this);
Douglas Gregor0e7dde52011-04-24 05:37:28 +00001418
Douglas Gregor9de54ea2010-01-13 17:31:36 +00001419 ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS_none,
Richard Smith30482bc2011-02-20 03:19:35 +00001420 getDeclSpecContextFromDeclaratorContext(Context));
Abramo Bagnara1cd83682012-01-07 10:52:36 +00001421
Chris Lattner0e894622006-08-13 19:58:17 +00001422 // C99 6.7.2.3p6: Handle "struct-or-union identifier;", "enum { X };"
1423 // declaration-specifiers init-declarator-list[opt] ';'
Chris Lattner76c72282007-10-09 17:33:22 +00001424 if (Tok.is(tok::semi)) {
Richard Smith2386c8b2013-02-22 09:06:26 +00001425 ProhibitAttributes(Attrs);
Argyrios Kyrtzidisfbb2bb52012-05-16 23:49:15 +00001426 DeclEnd = Tok.getLocation();
Chris Lattner005fc1b2010-04-05 18:18:31 +00001427 if (RequireSemi) ConsumeToken();
John McCall48871652010-08-21 09:40:31 +00001428 Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS_none,
Douglas Gregor0e7dde52011-04-24 05:37:28 +00001429 DS);
John McCall28a6aea2009-11-04 02:18:39 +00001430 DS.complete(TheDecl);
Chris Lattner5bbb3c82009-03-29 16:50:03 +00001431 return Actions.ConvertDeclToDeclGroup(TheDecl);
Chris Lattner0e894622006-08-13 19:58:17 +00001432 }
Chad Rosierc1183952012-06-26 22:30:43 +00001433
Richard Smith2386c8b2013-02-22 09:06:26 +00001434 DS.takeAttributesFrom(Attrs);
Chad Rosierc1183952012-06-26 22:30:43 +00001435 return ParseDeclGroup(DS, Context, /*FunctionDefs=*/ false, &DeclEnd, FRI);
John McCalld5a36322009-11-03 19:26:08 +00001436}
Mike Stump11289f42009-09-09 15:08:12 +00001437
Richard Smith09f76ee2011-10-19 21:33:05 +00001438/// Returns true if this might be the start of a declarator, or a common typo
1439/// for a declarator.
1440bool Parser::MightBeDeclarator(unsigned Context) {
1441 switch (Tok.getKind()) {
1442 case tok::annot_cxxscope:
1443 case tok::annot_template_id:
1444 case tok::caret:
1445 case tok::code_completion:
1446 case tok::coloncolon:
1447 case tok::ellipsis:
1448 case tok::kw___attribute:
1449 case tok::kw_operator:
1450 case tok::l_paren:
1451 case tok::star:
1452 return true;
1453
1454 case tok::amp:
1455 case tok::ampamp:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001456 return getLangOpts().CPlusPlus;
Richard Smith09f76ee2011-10-19 21:33:05 +00001457
Richard Smithc8a79032012-01-09 22:31:44 +00001458 case tok::l_square: // Might be an attribute on an unnamed bit-field.
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001459 return Context == Declarator::MemberContext && getLangOpts().CPlusPlus11 &&
Richard Smithc8a79032012-01-09 22:31:44 +00001460 NextToken().is(tok::l_square);
1461
1462 case tok::colon: // Might be a typo for '::' or an unnamed bit-field.
David Blaikiebbafb8a2012-03-11 07:00:24 +00001463 return Context == Declarator::MemberContext || getLangOpts().CPlusPlus;
Richard Smithc8a79032012-01-09 22:31:44 +00001464
Richard Smith09f76ee2011-10-19 21:33:05 +00001465 case tok::identifier:
1466 switch (NextToken().getKind()) {
1467 case tok::code_completion:
1468 case tok::coloncolon:
1469 case tok::comma:
1470 case tok::equal:
1471 case tok::equalequal: // Might be a typo for '='.
1472 case tok::kw_alignas:
1473 case tok::kw_asm:
1474 case tok::kw___attribute:
1475 case tok::l_brace:
1476 case tok::l_paren:
1477 case tok::l_square:
1478 case tok::less:
1479 case tok::r_brace:
1480 case tok::r_paren:
1481 case tok::r_square:
1482 case tok::semi:
1483 return true;
1484
1485 case tok::colon:
1486 // At namespace scope, 'identifier:' is probably a typo for 'identifier::'
Richard Smithc8a79032012-01-09 22:31:44 +00001487 // and in block scope it's probably a label. Inside a class definition,
1488 // this is a bit-field.
1489 return Context == Declarator::MemberContext ||
David Blaikiebbafb8a2012-03-11 07:00:24 +00001490 (getLangOpts().CPlusPlus && Context == Declarator::FileContext);
Richard Smithc8a79032012-01-09 22:31:44 +00001491
1492 case tok::identifier: // Possible virt-specifier.
Richard Smith89645bc2013-01-02 12:01:23 +00001493 return getLangOpts().CPlusPlus11 && isCXX11VirtSpecifier(NextToken());
Richard Smith09f76ee2011-10-19 21:33:05 +00001494
1495 default:
1496 return false;
1497 }
1498
1499 default:
1500 return false;
1501 }
1502}
1503
Richard Smithb8caac82012-04-11 20:59:20 +00001504/// Skip until we reach something which seems like a sensible place to pick
1505/// up parsing after a malformed declaration. This will sometimes stop sooner
1506/// than SkipUntil(tok::r_brace) would, but will never stop later.
1507void Parser::SkipMalformedDecl() {
1508 while (true) {
1509 switch (Tok.getKind()) {
1510 case tok::l_brace:
1511 // Skip until matching }, then stop. We've probably skipped over
1512 // a malformed class or function definition or similar.
1513 ConsumeBrace();
1514 SkipUntil(tok::r_brace, /*StopAtSemi*/false);
1515 if (Tok.is(tok::comma) || Tok.is(tok::l_brace) || Tok.is(tok::kw_try)) {
1516 // This declaration isn't over yet. Keep skipping.
1517 continue;
1518 }
1519 if (Tok.is(tok::semi))
1520 ConsumeToken();
1521 return;
1522
1523 case tok::l_square:
1524 ConsumeBracket();
1525 SkipUntil(tok::r_square, /*StopAtSemi*/false);
1526 continue;
1527
1528 case tok::l_paren:
1529 ConsumeParen();
1530 SkipUntil(tok::r_paren, /*StopAtSemi*/false);
1531 continue;
1532
1533 case tok::r_brace:
1534 return;
1535
1536 case tok::semi:
1537 ConsumeToken();
1538 return;
1539
1540 case tok::kw_inline:
1541 // 'inline namespace' at the start of a line is almost certainly
Jordan Rose12e730c2012-07-09 16:54:53 +00001542 // a good place to pick back up parsing, except in an Objective-C
1543 // @interface context.
1544 if (Tok.isAtStartOfLine() && NextToken().is(tok::kw_namespace) &&
1545 (!ParsingInObjCContainer || CurParsedObjCImpl))
Richard Smithb8caac82012-04-11 20:59:20 +00001546 return;
1547 break;
1548
1549 case tok::kw_namespace:
1550 // 'namespace' at the start of a line is almost certainly a good
Jordan Rose12e730c2012-07-09 16:54:53 +00001551 // place to pick back up parsing, except in an Objective-C
1552 // @interface context.
1553 if (Tok.isAtStartOfLine() &&
1554 (!ParsingInObjCContainer || CurParsedObjCImpl))
1555 return;
1556 break;
1557
1558 case tok::at:
1559 // @end is very much like } in Objective-C contexts.
1560 if (NextToken().isObjCAtKeyword(tok::objc_end) &&
1561 ParsingInObjCContainer)
1562 return;
1563 break;
1564
1565 case tok::minus:
1566 case tok::plus:
1567 // - and + probably start new method declarations in Objective-C contexts.
1568 if (Tok.isAtStartOfLine() && ParsingInObjCContainer)
Richard Smithb8caac82012-04-11 20:59:20 +00001569 return;
1570 break;
1571
1572 case tok::eof:
1573 return;
1574
1575 default:
1576 break;
1577 }
1578
1579 ConsumeAnyToken();
1580 }
1581}
1582
John McCalld5a36322009-11-03 19:26:08 +00001583/// ParseDeclGroup - Having concluded that this is either a function
1584/// definition or a group of object declarations, actually parse the
1585/// result.
John McCall28a6aea2009-11-04 02:18:39 +00001586Parser::DeclGroupPtrTy Parser::ParseDeclGroup(ParsingDeclSpec &DS,
1587 unsigned Context,
John McCalld5a36322009-11-03 19:26:08 +00001588 bool AllowFunctionDefinitions,
Richard Smith02e85f32011-04-14 22:09:26 +00001589 SourceLocation *DeclEnd,
1590 ForRangeInit *FRI) {
John McCalld5a36322009-11-03 19:26:08 +00001591 // Parse the first declarator.
John McCall28a6aea2009-11-04 02:18:39 +00001592 ParsingDeclarator D(*this, DS, static_cast<Declarator::TheContext>(Context));
John McCalld5a36322009-11-03 19:26:08 +00001593 ParseDeclarator(D);
Chris Lattner32dc41c2009-03-29 17:27:48 +00001594
John McCalld5a36322009-11-03 19:26:08 +00001595 // Bail out if the first declarator didn't seem well-formed.
1596 if (!D.hasName() && !D.mayOmitIdentifier()) {
Richard Smithb8caac82012-04-11 20:59:20 +00001597 SkipMalformedDecl();
John McCalld5a36322009-11-03 19:26:08 +00001598 return DeclGroupPtrTy();
Chris Lattnerefb0f112009-03-29 17:18:04 +00001599 }
Mike Stump11289f42009-09-09 15:08:12 +00001600
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +00001601 // Save late-parsed attributes for now; they need to be parsed in the
1602 // appropriate function scope after the function Decl has been constructed.
DeLesley Hutchins66e300e2012-11-02 21:44:32 +00001603 // These will be parsed in ParseFunctionDefinition or ParseLexedAttrList.
1604 LateParsedAttrList LateParsedAttrs(true);
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +00001605 if (D.isFunctionDeclarator())
1606 MaybeParseGNUAttributes(D, &LateParsedAttrs);
1607
Chris Lattnerdbb1e932010-07-11 22:24:20 +00001608 // Check to see if we have a function *definition* which must have a body.
Douglas Gregor012efe22013-04-16 16:01:32 +00001609 if (D.isFunctionDeclarator() &&
Chris Lattnerdbb1e932010-07-11 22:24:20 +00001610 // Look at the next token to make sure that this isn't a function
1611 // declaration. We have to check this because __attribute__ might be the
1612 // start of a function definition in GCC-extended K&R C.
Fariborz Jahanian712bb812012-08-10 15:54:40 +00001613 !isDeclarationAfterDeclarator()) {
Chad Rosierc1183952012-06-26 22:30:43 +00001614
Douglas Gregor012efe22013-04-16 16:01:32 +00001615 if (AllowFunctionDefinitions) {
1616 if (isStartOfFunctionDefinition(D)) {
1617 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
1618 Diag(Tok, diag::err_function_declared_typedef);
John McCalld5a36322009-11-03 19:26:08 +00001619
Douglas Gregor012efe22013-04-16 16:01:32 +00001620 // Recover by treating the 'typedef' as spurious.
1621 DS.ClearStorageClassSpecs();
1622 }
1623
1624 Decl *TheDecl =
1625 ParseFunctionDefinition(D, ParsedTemplateInfo(), &LateParsedAttrs);
1626 return Actions.ConvertDeclToDeclGroup(TheDecl);
John McCalld5a36322009-11-03 19:26:08 +00001627 }
1628
Douglas Gregor012efe22013-04-16 16:01:32 +00001629 if (isDeclarationSpecifier()) {
1630 // If there is an invalid declaration specifier right after the function
1631 // prototype, then we must be in a missing semicolon case where this isn't
1632 // actually a body. Just fall through into the code that handles it as a
1633 // prototype, and let the top-level code handle the erroneous declspec
1634 // where it would otherwise expect a comma or semicolon.
1635 } else {
1636 Diag(Tok, diag::err_expected_fn_body);
1637 SkipUntil(tok::semi);
1638 return DeclGroupPtrTy();
1639 }
John McCalld5a36322009-11-03 19:26:08 +00001640 } else {
Douglas Gregor012efe22013-04-16 16:01:32 +00001641 if (Tok.is(tok::l_brace)) {
1642 Diag(Tok, diag::err_function_definition_not_allowed);
1643 SkipUntil(tok::r_brace, true, true);
1644 }
John McCalld5a36322009-11-03 19:26:08 +00001645 }
1646 }
1647
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +00001648 if (ParseAsmAttributesAfterDeclarator(D))
Richard Smith02e85f32011-04-14 22:09:26 +00001649 return DeclGroupPtrTy();
1650
1651 // C++0x [stmt.iter]p1: Check if we have a for-range-declarator. If so, we
1652 // must parse and analyze the for-range-initializer before the declaration is
1653 // analyzed.
Douglas Gregor2eb1c572013-04-08 20:52:24 +00001654 //
1655 // Handle the Objective-C for-in loop variable similarly, although we
1656 // don't need to parse the container in advance.
1657 if (FRI && (Tok.is(tok::colon) || isTokIdentifier_in())) {
1658 bool IsForRangeLoop = false;
1659 if (Tok.is(tok::colon)) {
1660 IsForRangeLoop = true;
1661 FRI->ColonLoc = ConsumeToken();
1662 if (Tok.is(tok::l_brace))
1663 FRI->RangeExpr = ParseBraceInitializer();
1664 else
1665 FRI->RangeExpr = ParseExpression();
1666 }
1667
Richard Smith02e85f32011-04-14 22:09:26 +00001668 Decl *ThisDecl = Actions.ActOnDeclarator(getCurScope(), D);
Douglas Gregor2eb1c572013-04-08 20:52:24 +00001669 if (IsForRangeLoop)
1670 Actions.ActOnCXXForRangeDecl(ThisDecl);
Richard Smith02e85f32011-04-14 22:09:26 +00001671 Actions.FinalizeDeclaration(ThisDecl);
John McCallcf6e0c82012-01-27 01:29:43 +00001672 D.complete(ThisDecl);
Rafael Espindolaab417692013-07-09 12:05:01 +00001673 return Actions.FinalizeDeclaratorGroup(getCurScope(), DS, ThisDecl);
Richard Smith02e85f32011-04-14 22:09:26 +00001674 }
1675
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001676 SmallVector<Decl *, 8> DeclsInGroup;
Richard Smith02e85f32011-04-14 22:09:26 +00001677 Decl *FirstDecl = ParseDeclarationAfterDeclaratorAndAttributes(D);
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +00001678 if (LateParsedAttrs.size() > 0)
1679 ParseLexedAttributeList(LateParsedAttrs, FirstDecl, true, false);
John McCall28a6aea2009-11-04 02:18:39 +00001680 D.complete(FirstDecl);
John McCall48871652010-08-21 09:40:31 +00001681 if (FirstDecl)
John McCalld5a36322009-11-03 19:26:08 +00001682 DeclsInGroup.push_back(FirstDecl);
1683
Richard Smith09f76ee2011-10-19 21:33:05 +00001684 bool ExpectSemi = Context != Declarator::ForContext;
Fariborz Jahanian577574a2012-07-02 23:37:09 +00001685
John McCalld5a36322009-11-03 19:26:08 +00001686 // If we don't have a comma, it is either the end of the list (a ';') or an
1687 // error, bail out.
1688 while (Tok.is(tok::comma)) {
Richard Smith09f76ee2011-10-19 21:33:05 +00001689 SourceLocation CommaLoc = ConsumeToken();
1690
1691 if (Tok.isAtStartOfLine() && ExpectSemi && !MightBeDeclarator(Context)) {
1692 // This comma was followed by a line-break and something which can't be
1693 // the start of a declarator. The comma was probably a typo for a
1694 // semicolon.
1695 Diag(CommaLoc, diag::err_expected_semi_declaration)
1696 << FixItHint::CreateReplacement(CommaLoc, ";");
1697 ExpectSemi = false;
1698 break;
1699 }
John McCalld5a36322009-11-03 19:26:08 +00001700
1701 // Parse the next declarator.
1702 D.clear();
Richard Smith8d06f422012-01-12 23:53:29 +00001703 D.setCommaLoc(CommaLoc);
John McCalld5a36322009-11-03 19:26:08 +00001704
1705 // Accept attributes in an init-declarator. In the first declarator in a
1706 // declaration, these would be part of the declspec. In subsequent
1707 // declarators, they become part of the declarator itself, so that they
1708 // don't apply to declarators after *this* one. Examples:
1709 // short __attribute__((common)) var; -> declspec
1710 // short var __attribute__((common)); -> declarator
1711 // short x, __attribute__((common)) var; -> declarator
John McCall53fa7142010-12-24 02:08:15 +00001712 MaybeParseGNUAttributes(D);
John McCalld5a36322009-11-03 19:26:08 +00001713
1714 ParseDeclarator(D);
Fariborz Jahanian372030b2012-01-13 00:14:12 +00001715 if (!D.isInvalidType()) {
1716 Decl *ThisDecl = ParseDeclarationAfterDeclarator(D);
1717 D.complete(ThisDecl);
1718 if (ThisDecl)
Chad Rosierc1183952012-06-26 22:30:43 +00001719 DeclsInGroup.push_back(ThisDecl);
Fariborz Jahanian372030b2012-01-13 00:14:12 +00001720 }
John McCalld5a36322009-11-03 19:26:08 +00001721 }
1722
1723 if (DeclEnd)
1724 *DeclEnd = Tok.getLocation();
1725
Richard Smith09f76ee2011-10-19 21:33:05 +00001726 if (ExpectSemi &&
Chris Lattner02f1b612012-04-28 16:12:17 +00001727 ExpectAndConsumeSemi(Context == Declarator::FileContext
1728 ? diag::err_invalid_token_after_toplevel_declarator
1729 : diag::err_expected_semi_declaration)) {
Chris Lattner13901342010-07-11 22:42:07 +00001730 // Okay, there was no semicolon and one was expected. If we see a
1731 // declaration specifier, just assume it was missing and continue parsing.
1732 // Otherwise things are very confused and we skip to recover.
1733 if (!isDeclarationSpecifier()) {
1734 SkipUntil(tok::r_brace, true, true);
1735 if (Tok.is(tok::semi))
1736 ConsumeToken();
1737 }
John McCalld5a36322009-11-03 19:26:08 +00001738 }
1739
Rafael Espindolaab417692013-07-09 12:05:01 +00001740 return Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup);
Chris Lattner53361ac2006-08-10 05:19:57 +00001741}
1742
Richard Smith02e85f32011-04-14 22:09:26 +00001743/// Parse an optional simple-asm-expr and attributes, and attach them to a
1744/// declarator. Returns true on an error.
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +00001745bool Parser::ParseAsmAttributesAfterDeclarator(Declarator &D) {
Richard Smith02e85f32011-04-14 22:09:26 +00001746 // If a simple-asm-expr is present, parse it.
1747 if (Tok.is(tok::kw_asm)) {
1748 SourceLocation Loc;
1749 ExprResult AsmLabel(ParseSimpleAsm(&Loc));
1750 if (AsmLabel.isInvalid()) {
1751 SkipUntil(tok::semi, true, true);
1752 return true;
1753 }
1754
1755 D.setAsmLabel(AsmLabel.release());
1756 D.SetRangeEnd(Loc);
1757 }
1758
1759 MaybeParseGNUAttributes(D);
1760 return false;
1761}
1762
Douglas Gregor23996282009-05-12 21:31:51 +00001763/// \brief Parse 'declaration' after parsing 'declaration-specifiers
1764/// declarator'. This method parses the remainder of the declaration
1765/// (including any attributes or initializer, among other things) and
1766/// finalizes the declaration.
Chris Lattnerf0f3baa2006-08-14 00:15:20 +00001767///
Chris Lattnerf0f3baa2006-08-14 00:15:20 +00001768/// init-declarator: [C99 6.7]
1769/// declarator
1770/// declarator '=' initializer
Chris Lattner6d7e6342006-08-15 03:41:14 +00001771/// [GNU] declarator simple-asm-expr[opt] attributes[opt]
1772/// [GNU] declarator simple-asm-expr[opt] attributes[opt] '=' initializer
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00001773/// [C++] declarator initializer[opt]
1774///
1775/// [C++] initializer:
1776/// [C++] '=' initializer-clause
1777/// [C++] '(' expression-list ')'
Sebastian Redlf769df52009-03-24 22:27:57 +00001778/// [C++0x] '=' 'default' [TODO]
1779/// [C++0x] '=' 'delete'
Sebastian Redl3da34892011-06-05 12:23:16 +00001780/// [C++0x] braced-init-list
Sebastian Redlf769df52009-03-24 22:27:57 +00001781///
1782/// According to the standard grammar, =default and =delete are function
1783/// definitions, but that definitely doesn't fit with the parser here.
Chris Lattnerf0f3baa2006-08-14 00:15:20 +00001784///
John McCall48871652010-08-21 09:40:31 +00001785Decl *Parser::ParseDeclarationAfterDeclarator(Declarator &D,
Douglas Gregorb52fabb2009-06-23 23:11:28 +00001786 const ParsedTemplateInfo &TemplateInfo) {
DeLesley Hutchins3fc6e4a2012-02-16 16:50:43 +00001787 if (ParseAsmAttributesAfterDeclarator(D))
Richard Smith02e85f32011-04-14 22:09:26 +00001788 return 0;
Mike Stump11289f42009-09-09 15:08:12 +00001789
Richard Smith02e85f32011-04-14 22:09:26 +00001790 return ParseDeclarationAfterDeclaratorAndAttributes(D, TemplateInfo);
1791}
Mike Stump11289f42009-09-09 15:08:12 +00001792
Richard Smith02e85f32011-04-14 22:09:26 +00001793Decl *Parser::ParseDeclarationAfterDeclaratorAndAttributes(Declarator &D,
1794 const ParsedTemplateInfo &TemplateInfo) {
Douglas Gregor23996282009-05-12 21:31:51 +00001795 // Inform the current actions module that we just parsed this declarator.
John McCall48871652010-08-21 09:40:31 +00001796 Decl *ThisDecl = 0;
Douglas Gregor450f00842009-09-25 18:43:00 +00001797 switch (TemplateInfo.Kind) {
1798 case ParsedTemplateInfo::NonTemplate:
Douglas Gregor0be31a22010-07-02 17:43:08 +00001799 ThisDecl = Actions.ActOnDeclarator(getCurScope(), D);
Douglas Gregor450f00842009-09-25 18:43:00 +00001800 break;
Chad Rosierc1183952012-06-26 22:30:43 +00001801
Douglas Gregor450f00842009-09-25 18:43:00 +00001802 case ParsedTemplateInfo::Template:
Larisse Voufo39a1e502013-08-06 01:03:05 +00001803 case ParsedTemplateInfo::ExplicitSpecialization: {
Douglas Gregor0be31a22010-07-02 17:43:08 +00001804 ThisDecl = Actions.ActOnTemplateDeclarator(getCurScope(),
Benjamin Kramercc4c49d2012-08-23 23:38:35 +00001805 *TemplateInfo.TemplateParams,
Douglas Gregor450f00842009-09-25 18:43:00 +00001806 D);
Larisse Voufo21de36b2013-08-06 03:43:07 +00001807 if (Tok.is(tok::semi) &&
1808 Actions.HandleVariableRedeclaration(ThisDecl, D.getCXXScopeSpec())) {
Douglas Gregor450f00842009-09-25 18:43:00 +00001809 SkipUntil(tok::semi, true, true);
John McCall48871652010-08-21 09:40:31 +00001810 return 0;
Douglas Gregor450f00842009-09-25 18:43:00 +00001811 }
Larisse Voufo833b05a2013-08-06 07:33:00 +00001812 if (VarTemplateDecl *VT = dyn_cast_or_null<VarTemplateDecl>(ThisDecl))
Larisse Voufo39a1e502013-08-06 01:03:05 +00001813 // Re-direct this decl to refer to the templated decl so that we can
1814 // initialize it.
1815 ThisDecl = VT->getTemplatedDecl();
1816 break;
1817 }
1818 case ParsedTemplateInfo::ExplicitInstantiation: {
1819 if (Tok.is(tok::semi)) {
1820 DeclResult ThisRes = Actions.ActOnExplicitInstantiation(
1821 getCurScope(), TemplateInfo.ExternLoc, TemplateInfo.TemplateLoc, D);
1822 if (ThisRes.isInvalid()) {
1823 SkipUntil(tok::semi, true, true);
1824 return 0;
1825 }
1826 ThisDecl = ThisRes.get();
1827 } else {
1828 // FIXME: This check should be for a variable template instantiation only.
1829
1830 // Check that this is a valid instantiation
1831 if (D.getName().getKind() != UnqualifiedId::IK_TemplateId) {
1832 // If the declarator-id is not a template-id, issue a diagnostic and
1833 // recover by ignoring the 'template' keyword.
1834 Diag(Tok, diag::err_template_defn_explicit_instantiation)
1835 << 2 << FixItHint::CreateRemoval(TemplateInfo.TemplateLoc);
1836 ThisDecl = Actions.ActOnDeclarator(getCurScope(), D);
1837 } else {
1838 SourceLocation LAngleLoc =
1839 PP.getLocForEndOfToken(TemplateInfo.TemplateLoc);
1840 Diag(D.getIdentifierLoc(),
1841 diag::err_explicit_instantiation_with_definition)
1842 << SourceRange(TemplateInfo.TemplateLoc)
1843 << FixItHint::CreateInsertion(LAngleLoc, "<>");
1844
1845 // Recover as if it were an explicit specialization.
1846 TemplateParameterLists FakedParamLists;
1847 FakedParamLists.push_back(Actions.ActOnTemplateParameterList(
1848 0, SourceLocation(), TemplateInfo.TemplateLoc, LAngleLoc, 0, 0,
1849 LAngleLoc));
1850
1851 ThisDecl =
1852 Actions.ActOnTemplateDeclarator(getCurScope(), FakedParamLists, D);
1853 }
1854 }
Douglas Gregor450f00842009-09-25 18:43:00 +00001855 break;
1856 }
1857 }
Mike Stump11289f42009-09-09 15:08:12 +00001858
Richard Smith74aeef52013-04-26 16:15:35 +00001859 bool TypeContainsAuto = D.getDeclSpec().containsPlaceholderType();
Richard Smith30482bc2011-02-20 03:19:35 +00001860
Douglas Gregor23996282009-05-12 21:31:51 +00001861 // Parse declarator '=' initializer.
Richard Trieuc64d3232012-01-18 22:54:52 +00001862 // If a '==' or '+=' is found, suggest a fixit to '='.
Richard Trieu4972a6d2012-01-19 22:01:51 +00001863 if (isTokenEqualOrEqualTypo()) {
Douglas Gregor23996282009-05-12 21:31:51 +00001864 ConsumeToken();
Larisse Voufo39a1e502013-08-06 01:03:05 +00001865
Anders Carlsson991285e2010-09-24 21:25:25 +00001866 if (Tok.is(tok::kw_delete)) {
Alexis Hunt5a7fa252011-05-12 06:15:49 +00001867 if (D.isFunctionDeclarator())
1868 Diag(ConsumeToken(), diag::err_default_delete_in_multiple_declaration)
1869 << 1 /* delete */;
1870 else
1871 Diag(ConsumeToken(), diag::err_deleted_non_function);
Alexis Hunt5dafebc2011-05-06 01:42:00 +00001872 } else if (Tok.is(tok::kw_default)) {
Alexis Hunt5a7fa252011-05-12 06:15:49 +00001873 if (D.isFunctionDeclarator())
Sebastian Redl46afb552012-02-11 23:51:21 +00001874 Diag(ConsumeToken(), diag::err_default_delete_in_multiple_declaration)
1875 << 0 /* default */;
Alexis Hunt5a7fa252011-05-12 06:15:49 +00001876 else
1877 Diag(ConsumeToken(), diag::err_default_special_members);
Douglas Gregor23996282009-05-12 21:31:51 +00001878 } else {
David Blaikiebbafb8a2012-03-11 07:00:24 +00001879 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
John McCall1f4ee7b2009-12-19 09:28:58 +00001880 EnterScope(0);
Douglas Gregor0be31a22010-07-02 17:43:08 +00001881 Actions.ActOnCXXEnterDeclInitializer(getCurScope(), ThisDecl);
John McCall1f4ee7b2009-12-19 09:28:58 +00001882 }
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00001883
Douglas Gregor7aa6b222010-05-30 01:49:25 +00001884 if (Tok.is(tok::code_completion)) {
Douglas Gregor0be31a22010-07-02 17:43:08 +00001885 Actions.CodeCompleteInitializer(getCurScope(), ThisDecl);
Peter Collingbourne6b4fdc22012-07-27 12:56:09 +00001886 Actions.FinalizeDeclaration(ThisDecl);
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +00001887 cutOffParsing();
1888 return 0;
Douglas Gregor7aa6b222010-05-30 01:49:25 +00001889 }
Chad Rosierc1183952012-06-26 22:30:43 +00001890
John McCalldadc5752010-08-24 06:29:42 +00001891 ExprResult Init(ParseInitializer());
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00001892
David Blaikiebbafb8a2012-03-11 07:00:24 +00001893 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
Douglas Gregor0be31a22010-07-02 17:43:08 +00001894 Actions.ActOnCXXExitDeclInitializer(getCurScope(), ThisDecl);
John McCall1f4ee7b2009-12-19 09:28:58 +00001895 ExitScope();
1896 }
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00001897
Douglas Gregor23996282009-05-12 21:31:51 +00001898 if (Init.isInvalid()) {
Douglas Gregor604c3022010-03-01 18:27:54 +00001899 SkipUntil(tok::comma, true, true);
1900 Actions.ActOnInitializerError(ThisDecl);
1901 } else
Richard Smith30482bc2011-02-20 03:19:35 +00001902 Actions.AddInitializerToDecl(ThisDecl, Init.take(),
1903 /*DirectInit=*/false, TypeContainsAuto);
Douglas Gregor23996282009-05-12 21:31:51 +00001904 }
1905 } else if (Tok.is(tok::l_paren)) {
1906 // Parse C++ direct initializer: '(' expression-list ')'
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001907 BalancedDelimiterTracker T(*this, tok::l_paren);
1908 T.consumeOpen();
1909
Benjamin Kramerf0623432012-08-23 22:51:59 +00001910 ExprVector Exprs;
Douglas Gregor23996282009-05-12 21:31:51 +00001911 CommaLocsTy CommaLocs;
1912
David Blaikiebbafb8a2012-03-11 07:00:24 +00001913 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
Douglas Gregor613bf102009-12-22 17:47:17 +00001914 EnterScope(0);
Douglas Gregor0be31a22010-07-02 17:43:08 +00001915 Actions.ActOnCXXEnterDeclInitializer(getCurScope(), ThisDecl);
Douglas Gregor613bf102009-12-22 17:47:17 +00001916 }
1917
Douglas Gregor23996282009-05-12 21:31:51 +00001918 if (ParseExpressionList(Exprs, CommaLocs)) {
David Blaikieeae04112012-10-10 23:15:05 +00001919 Actions.ActOnInitializerError(ThisDecl);
Douglas Gregor23996282009-05-12 21:31:51 +00001920 SkipUntil(tok::r_paren);
Douglas Gregor613bf102009-12-22 17:47:17 +00001921
David Blaikiebbafb8a2012-03-11 07:00:24 +00001922 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
Douglas Gregor0be31a22010-07-02 17:43:08 +00001923 Actions.ActOnCXXExitDeclInitializer(getCurScope(), ThisDecl);
Douglas Gregor613bf102009-12-22 17:47:17 +00001924 ExitScope();
1925 }
Douglas Gregor23996282009-05-12 21:31:51 +00001926 } else {
1927 // Match the ')'.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00001928 T.consumeClose();
Douglas Gregor23996282009-05-12 21:31:51 +00001929
1930 assert(!Exprs.empty() && Exprs.size()-1 == CommaLocs.size() &&
1931 "Unexpected number of commas!");
Douglas Gregor613bf102009-12-22 17:47:17 +00001932
David Blaikiebbafb8a2012-03-11 07:00:24 +00001933 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
Douglas Gregor0be31a22010-07-02 17:43:08 +00001934 Actions.ActOnCXXExitDeclInitializer(getCurScope(), ThisDecl);
Douglas Gregor613bf102009-12-22 17:47:17 +00001935 ExitScope();
1936 }
1937
Sebastian Redla9351792012-02-11 23:51:47 +00001938 ExprResult Initializer = Actions.ActOnParenListExpr(T.getOpenLocation(),
1939 T.getCloseLocation(),
Benjamin Kramer62b95d82012-08-23 21:35:17 +00001940 Exprs);
Sebastian Redla9351792012-02-11 23:51:47 +00001941 Actions.AddInitializerToDecl(ThisDecl, Initializer.take(),
1942 /*DirectInit=*/true, TypeContainsAuto);
Douglas Gregor23996282009-05-12 21:31:51 +00001943 }
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001944 } else if (getLangOpts().CPlusPlus11 && Tok.is(tok::l_brace) &&
Fariborz Jahanian8be1ecd2012-07-03 23:22:13 +00001945 (!CurParsedObjCImpl || !D.isFunctionDeclarator())) {
Sebastian Redl3da34892011-06-05 12:23:16 +00001946 // Parse C++0x braced-init-list.
Richard Smith5d164bc2011-10-15 05:09:34 +00001947 Diag(Tok, diag::warn_cxx98_compat_generalized_initializer_lists);
1948
Sebastian Redl3da34892011-06-05 12:23:16 +00001949 if (D.getCXXScopeSpec().isSet()) {
1950 EnterScope(0);
1951 Actions.ActOnCXXEnterDeclInitializer(getCurScope(), ThisDecl);
1952 }
1953
1954 ExprResult Init(ParseBraceInitializer());
1955
1956 if (D.getCXXScopeSpec().isSet()) {
1957 Actions.ActOnCXXExitDeclInitializer(getCurScope(), ThisDecl);
1958 ExitScope();
1959 }
1960
1961 if (Init.isInvalid()) {
1962 Actions.ActOnInitializerError(ThisDecl);
1963 } else
1964 Actions.AddInitializerToDecl(ThisDecl, Init.take(),
1965 /*DirectInit=*/true, TypeContainsAuto);
1966
Douglas Gregor23996282009-05-12 21:31:51 +00001967 } else {
Richard Smith30482bc2011-02-20 03:19:35 +00001968 Actions.ActOnUninitializedDecl(ThisDecl, TypeContainsAuto);
Douglas Gregor23996282009-05-12 21:31:51 +00001969 }
1970
Richard Smithb2bc2e62011-02-21 20:05:19 +00001971 Actions.FinalizeDeclaration(ThisDecl);
1972
Douglas Gregor23996282009-05-12 21:31:51 +00001973 return ThisDecl;
1974}
1975
Chris Lattner1890ac82006-08-13 01:16:23 +00001976/// ParseSpecifierQualifierList
1977/// specifier-qualifier-list:
1978/// type-specifier specifier-qualifier-list[opt]
1979/// type-qualifier specifier-qualifier-list[opt]
Chris Lattnere37e2332006-08-15 04:50:22 +00001980/// [GNU] attributes specifier-qualifier-list[opt]
Chris Lattner1890ac82006-08-13 01:16:23 +00001981///
Richard Smithc5b05522012-03-12 07:56:15 +00001982void Parser::ParseSpecifierQualifierList(DeclSpec &DS, AccessSpecifier AS,
1983 DeclSpecContext DSC) {
Chris Lattner1890ac82006-08-13 01:16:23 +00001984 /// specifier-qualifier-list is a subset of declaration-specifiers. Just
1985 /// parse declaration-specifiers and complain about extra stuff.
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00001986 /// TODO: diagnose attribute-specifiers and alignment-specifiers.
Richard Smithc5b05522012-03-12 07:56:15 +00001987 ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS, DSC);
Mike Stump11289f42009-09-09 15:08:12 +00001988
Chris Lattner1890ac82006-08-13 01:16:23 +00001989 // Validate declspec for type-name.
1990 unsigned Specs = DS.getParsedSpecifiers();
Richard Smith2f07ad52012-05-09 20:55:26 +00001991 if ((DSC == DSC_type_specifier || DSC == DSC_trailing) &&
1992 !DS.hasTypeSpecifier()) {
Richard Smithc5b05522012-03-12 07:56:15 +00001993 Diag(Tok, diag::err_expected_type);
1994 DS.SetTypeSpecError();
1995 } else if (Specs == DeclSpec::PQ_None && !DS.getNumProtocolQualifiers() &&
1996 !DS.hasAttributes()) {
Chris Lattner1890ac82006-08-13 01:16:23 +00001997 Diag(Tok, diag::err_typename_requires_specqual);
Richard Smithc5b05522012-03-12 07:56:15 +00001998 if (!DS.hasTypeSpecifier())
1999 DS.SetTypeSpecError();
2000 }
Mike Stump11289f42009-09-09 15:08:12 +00002001
Chris Lattner1b22eed2006-11-28 05:12:07 +00002002 // Issue diagnostic and remove storage class if present.
Chris Lattner1890ac82006-08-13 01:16:23 +00002003 if (Specs & DeclSpec::PQ_StorageClassSpecifier) {
Chris Lattner1b22eed2006-11-28 05:12:07 +00002004 if (DS.getStorageClassSpecLoc().isValid())
2005 Diag(DS.getStorageClassSpecLoc(),diag::err_typename_invalid_storageclass);
2006 else
Richard Smithb4a9e862013-04-12 22:46:28 +00002007 Diag(DS.getThreadStorageClassSpecLoc(),
2008 diag::err_typename_invalid_storageclass);
Chris Lattnera925dc62006-11-28 04:33:46 +00002009 DS.ClearStorageClassSpecs();
Chris Lattner1890ac82006-08-13 01:16:23 +00002010 }
Mike Stump11289f42009-09-09 15:08:12 +00002011
Chris Lattner1b22eed2006-11-28 05:12:07 +00002012 // Issue diagnostic and remove function specfier if present.
Chris Lattner1890ac82006-08-13 01:16:23 +00002013 if (Specs & DeclSpec::PQ_FunctionSpecifier) {
Douglas Gregor61956c42008-10-31 09:07:45 +00002014 if (DS.isInlineSpecified())
2015 Diag(DS.getInlineSpecLoc(), diag::err_typename_invalid_functionspec);
2016 if (DS.isVirtualSpecified())
2017 Diag(DS.getVirtualSpecLoc(), diag::err_typename_invalid_functionspec);
2018 if (DS.isExplicitSpecified())
2019 Diag(DS.getExplicitSpecLoc(), diag::err_typename_invalid_functionspec);
Chris Lattnera925dc62006-11-28 04:33:46 +00002020 DS.ClearFunctionSpecs();
Chris Lattner1890ac82006-08-13 01:16:23 +00002021 }
Richard Smithc5b05522012-03-12 07:56:15 +00002022
2023 // Issue diagnostic and remove constexpr specfier if present.
2024 if (DS.isConstexprSpecified()) {
2025 Diag(DS.getConstexprSpecLoc(), diag::err_typename_invalid_constexpr);
2026 DS.ClearConstexprSpec();
2027 }
Chris Lattner1890ac82006-08-13 01:16:23 +00002028}
Chris Lattner53361ac2006-08-10 05:19:57 +00002029
Chris Lattner6cc055a2009-04-12 20:42:31 +00002030/// isValidAfterIdentifierInDeclaratorAfterDeclSpec - Return true if the
2031/// specified token is valid after the identifier in a declarator which
2032/// immediately follows the declspec. For example, these things are valid:
2033///
2034/// int x [ 4]; // direct-declarator
2035/// int x ( int y); // direct-declarator
2036/// int(int x ) // direct-declarator
2037/// int x ; // simple-declaration
2038/// int x = 17; // init-declarator-list
2039/// int x , y; // init-declarator-list
2040/// int x __asm__ ("foo"); // init-declarator-list
Chris Lattnera723ba92009-04-14 21:16:09 +00002041/// int x : 4; // struct-declarator
Chris Lattner2b988c12009-04-12 22:29:43 +00002042/// int x { 5}; // C++'0x unified initializers
Chris Lattner6cc055a2009-04-12 20:42:31 +00002043///
2044/// This is not, because 'x' does not immediately follow the declspec (though
2045/// ')' happens to be valid anyway).
2046/// int (x)
2047///
2048static bool isValidAfterIdentifierInDeclarator(const Token &T) {
2049 return T.is(tok::l_square) || T.is(tok::l_paren) || T.is(tok::r_paren) ||
2050 T.is(tok::semi) || T.is(tok::comma) || T.is(tok::equal) ||
Chris Lattnera723ba92009-04-14 21:16:09 +00002051 T.is(tok::kw_asm) || T.is(tok::l_brace) || T.is(tok::colon);
Chris Lattner6cc055a2009-04-12 20:42:31 +00002052}
2053
Chris Lattner20a0c612009-04-14 21:34:55 +00002054
2055/// ParseImplicitInt - This method is called when we have an non-typename
2056/// identifier in a declspec (which normally terminates the decl spec) when
2057/// the declspec has no type specifier. In this case, the declspec is either
2058/// malformed or is "implicit int" (in K&R and C89).
2059///
2060/// This method handles diagnosing this prettily and returns false if the
2061/// declspec is done being processed. If it recovers and thinks there may be
2062/// other pieces of declspec after it, it returns true.
2063///
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00002064bool Parser::ParseImplicitInt(DeclSpec &DS, CXXScopeSpec *SS,
Douglas Gregor1b57ff32009-05-12 23:25:50 +00002065 const ParsedTemplateInfo &TemplateInfo,
Michael Han9407e502012-11-26 22:54:45 +00002066 AccessSpecifier AS, DeclSpecContext DSC,
2067 ParsedAttributesWithRange &Attrs) {
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00002068 assert(Tok.is(tok::identifier) && "should have identifier");
Mike Stump11289f42009-09-09 15:08:12 +00002069
Chris Lattner20a0c612009-04-14 21:34:55 +00002070 SourceLocation Loc = Tok.getLocation();
2071 // If we see an identifier that is not a type name, we normally would
2072 // parse it as the identifer being declared. However, when a typename
2073 // is typo'd or the definition is not included, this will incorrectly
2074 // parse the typename as the identifier name and fall over misparsing
2075 // later parts of the diagnostic.
2076 //
2077 // As such, we try to do some look-ahead in cases where this would
2078 // otherwise be an "implicit-int" case to see if this is invalid. For
2079 // example: "static foo_t x = 4;" In this case, if we parsed foo_t as
2080 // an identifier with implicit int, we'd get a parse error because the
2081 // next token is obviously invalid for a type. Parse these as a case
2082 // with an invalid type specifier.
2083 assert(!DS.hasTypeSpecifier() && "Type specifier checked above");
Mike Stump11289f42009-09-09 15:08:12 +00002084
Chris Lattner20a0c612009-04-14 21:34:55 +00002085 // Since we know that this either implicit int (which is rare) or an
Richard Smitha952ebb2012-05-15 21:01:51 +00002086 // error, do lookahead to try to do better recovery. This never applies
2087 // within a type specifier. Outside of C++, we allow this even if the
2088 // language doesn't "officially" support implicit int -- we support
Richard Smith3b870382013-04-30 22:43:51 +00002089 // implicit int as an extension in C99 and C11.
Richard Smith2f07ad52012-05-09 20:55:26 +00002090 if (DSC != DSC_type_specifier && DSC != DSC_trailing &&
Richard Smith3b870382013-04-30 22:43:51 +00002091 !getLangOpts().CPlusPlus &&
Richard Smithc5b05522012-03-12 07:56:15 +00002092 isValidAfterIdentifierInDeclarator(NextToken())) {
Chris Lattner20a0c612009-04-14 21:34:55 +00002093 // If this token is valid for implicit int, e.g. "static x = 4", then
2094 // we just avoid eating the identifier, so it will be parsed as the
2095 // identifier in the declarator.
2096 return false;
2097 }
Mike Stump11289f42009-09-09 15:08:12 +00002098
Richard Smitha952ebb2012-05-15 21:01:51 +00002099 if (getLangOpts().CPlusPlus &&
2100 DS.getStorageClassSpec() == DeclSpec::SCS_auto) {
2101 // Don't require a type specifier if we have the 'auto' storage class
2102 // specifier in C++98 -- we'll promote it to a type specifier.
2103 return false;
2104 }
2105
Chris Lattner20a0c612009-04-14 21:34:55 +00002106 // Otherwise, if we don't consume this token, we are going to emit an
2107 // error anyway. Try to recover from various common problems. Check
2108 // to see if this was a reference to a tag name without a tag specified.
2109 // This is a common problem in C (saying 'foo' instead of 'struct foo').
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00002110 //
2111 // C++ doesn't need this, and isTagName doesn't take SS.
2112 if (SS == 0) {
Argyrios Kyrtzidis1f329402011-04-21 17:29:47 +00002113 const char *TagName = 0, *FixitTagName = 0;
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00002114 tok::TokenKind TagKind = tok::unknown;
Mike Stump11289f42009-09-09 15:08:12 +00002115
Douglas Gregor0be31a22010-07-02 17:43:08 +00002116 switch (Actions.isTagName(*Tok.getIdentifierInfo(), getCurScope())) {
Chris Lattner20a0c612009-04-14 21:34:55 +00002117 default: break;
Argyrios Kyrtzidis1f329402011-04-21 17:29:47 +00002118 case DeclSpec::TST_enum:
2119 TagName="enum" ; FixitTagName = "enum " ; TagKind=tok::kw_enum ;break;
2120 case DeclSpec::TST_union:
2121 TagName="union" ; FixitTagName = "union " ;TagKind=tok::kw_union ;break;
2122 case DeclSpec::TST_struct:
2123 TagName="struct"; FixitTagName = "struct ";TagKind=tok::kw_struct;break;
Joao Matosdc86f942012-08-31 18:45:21 +00002124 case DeclSpec::TST_interface:
2125 TagName="__interface"; FixitTagName = "__interface ";
2126 TagKind=tok::kw___interface;break;
Argyrios Kyrtzidis1f329402011-04-21 17:29:47 +00002127 case DeclSpec::TST_class:
2128 TagName="class" ; FixitTagName = "class " ;TagKind=tok::kw_class ;break;
Chris Lattner20a0c612009-04-14 21:34:55 +00002129 }
Mike Stump11289f42009-09-09 15:08:12 +00002130
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00002131 if (TagName) {
Kaelyn Uhrain031643e2012-04-26 23:36:17 +00002132 IdentifierInfo *TokenName = Tok.getIdentifierInfo();
2133 LookupResult R(Actions, TokenName, SourceLocation(),
2134 Sema::LookupOrdinaryName);
2135
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00002136 Diag(Loc, diag::err_use_of_tag_name_without_tag)
Kaelyn Uhrain031643e2012-04-26 23:36:17 +00002137 << TokenName << TagName << getLangOpts().CPlusPlus
2138 << FixItHint::CreateInsertion(Tok.getLocation(), FixitTagName);
2139
2140 if (Actions.LookupParsedName(R, getCurScope(), SS)) {
2141 for (LookupResult::iterator I = R.begin(), IEnd = R.end();
2142 I != IEnd; ++I)
Kaelyn Uhrain3fe3f852012-04-27 18:26:49 +00002143 Diag((*I)->getLocation(), diag::note_decl_hiding_tag_type)
Kaelyn Uhrain031643e2012-04-26 23:36:17 +00002144 << TokenName << TagName;
2145 }
Mike Stump11289f42009-09-09 15:08:12 +00002146
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00002147 // Parse this as a tag as if the missing tag were present.
2148 if (TagKind == tok::kw_enum)
Richard Smithc5b05522012-03-12 07:56:15 +00002149 ParseEnumSpecifier(Loc, DS, TemplateInfo, AS, DSC_normal);
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00002150 else
Richard Smithc5b05522012-03-12 07:56:15 +00002151 ParseClassSpecifier(TagKind, Loc, DS, TemplateInfo, AS,
Michael Han9407e502012-11-26 22:54:45 +00002152 /*EnteringContext*/ false, DSC_normal, Attrs);
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00002153 return true;
2154 }
Chris Lattner20a0c612009-04-14 21:34:55 +00002155 }
Mike Stump11289f42009-09-09 15:08:12 +00002156
Richard Smithfe904f02012-05-15 21:29:55 +00002157 // Determine whether this identifier could plausibly be the name of something
Richard Smithedd124e2012-05-15 21:42:17 +00002158 // being declared (with a missing type).
Richard Smithfe904f02012-05-15 21:29:55 +00002159 if (DSC != DSC_type_specifier && DSC != DSC_trailing &&
2160 (!SS || DSC == DSC_top_level || DSC == DSC_class)) {
Richard Smitha952ebb2012-05-15 21:01:51 +00002161 // Look ahead to the next token to try to figure out what this declaration
2162 // was supposed to be.
2163 switch (NextToken().getKind()) {
2164 case tok::comma:
2165 case tok::equal:
2166 case tok::kw_asm:
2167 case tok::l_brace:
2168 case tok::l_square:
2169 case tok::semi:
2170 // This looks like a variable declaration. The type is probably missing.
2171 // We're done parsing decl-specifiers.
2172 return false;
2173
2174 case tok::l_paren: {
2175 // static x(4); // 'x' is not a type
2176 // x(int n); // 'x' is not a type
2177 // x (*p)[]; // 'x' is a type
2178 //
2179 // Since we're in an error case (or the rare 'implicit int in C++' MS
2180 // extension), we can afford to perform a tentative parse to determine
2181 // which case we're in.
2182 TentativeParsingAction PA(*this);
2183 ConsumeToken();
2184 TPResult TPR = TryParseDeclarator(/*mayBeAbstract*/false);
2185 PA.Revert();
2186 if (TPR == TPResult::False())
2187 return false;
2188 // The identifier is followed by a parenthesized declarator.
2189 // It's supposed to be a type.
2190 break;
2191 }
2192
2193 default:
2194 // This is probably supposed to be a type. This includes cases like:
2195 // int f(itn);
2196 // struct S { unsinged : 4; };
2197 break;
2198 }
2199 }
2200
Chad Rosierc1183952012-06-26 22:30:43 +00002201 // This is almost certainly an invalid type name. Let the action emit a
Douglas Gregor15e56022009-10-13 23:27:22 +00002202 // diagnostic and attempt to recover.
John McCallba7bf592010-08-24 05:47:05 +00002203 ParsedType T;
Kaelyn Uhrainb5b17fe2012-06-15 23:45:58 +00002204 IdentifierInfo *II = Tok.getIdentifierInfo();
2205 if (Actions.DiagnoseUnknownTypeName(II, Loc, getCurScope(), SS, T)) {
Douglas Gregor15e56022009-10-13 23:27:22 +00002206 // The action emitted a diagnostic, so we don't have to.
2207 if (T) {
2208 // The action has suggested that the type T could be used. Set that as
2209 // the type in the declaration specifiers, consume the would-be type
2210 // name token, and we're done.
2211 const char *PrevSpec;
2212 unsigned DiagID;
John McCallba7bf592010-08-24 05:47:05 +00002213 DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec, DiagID, T);
Douglas Gregor15e56022009-10-13 23:27:22 +00002214 DS.SetRangeEnd(Tok.getLocation());
2215 ConsumeToken();
Kaelyn Uhrainb5b17fe2012-06-15 23:45:58 +00002216 // There may be other declaration specifiers after this.
2217 return true;
2218 } else if (II != Tok.getIdentifierInfo()) {
2219 // If no type was suggested, the correction is to a keyword
2220 Tok.setKind(II->getTokenID());
Douglas Gregor15e56022009-10-13 23:27:22 +00002221 // There may be other declaration specifiers after this.
2222 return true;
2223 }
Chad Rosierc1183952012-06-26 22:30:43 +00002224
Douglas Gregor15e56022009-10-13 23:27:22 +00002225 // Fall through; the action had no suggestion for us.
2226 } else {
2227 // The action did not emit a diagnostic, so emit one now.
2228 SourceRange R;
2229 if (SS) R = SS->getRange();
2230 Diag(Loc, diag::err_unknown_typename) << Tok.getIdentifierInfo() << R;
2231 }
Mike Stump11289f42009-09-09 15:08:12 +00002232
Douglas Gregor15e56022009-10-13 23:27:22 +00002233 // Mark this as an error.
Richard Smithc5b05522012-03-12 07:56:15 +00002234 DS.SetTypeSpecError();
Chris Lattner20a0c612009-04-14 21:34:55 +00002235 DS.SetRangeEnd(Tok.getLocation());
2236 ConsumeToken();
Mike Stump11289f42009-09-09 15:08:12 +00002237
Chris Lattner20a0c612009-04-14 21:34:55 +00002238 // TODO: Could inject an invalid typedef decl in an enclosing scope to
2239 // avoid rippling error messages on subsequent uses of the same type,
2240 // could be useful if #include was forgotten.
2241 return false;
2242}
2243
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002244/// \brief Determine the declaration specifier context from the declarator
2245/// context.
2246///
2247/// \param Context the declarator context, which is one of the
2248/// Declarator::TheContext enumerator values.
Chad Rosierc1183952012-06-26 22:30:43 +00002249Parser::DeclSpecContext
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002250Parser::getDeclSpecContextFromDeclaratorContext(unsigned Context) {
2251 if (Context == Declarator::MemberContext)
2252 return DSC_class;
2253 if (Context == Declarator::FileContext)
2254 return DSC_top_level;
Richard Smith62dad822012-03-15 01:02:11 +00002255 if (Context == Declarator::TrailingReturnContext)
2256 return DSC_trailing;
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002257 return DSC_normal;
2258}
2259
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002260/// ParseAlignArgument - Parse the argument to an alignment-specifier.
2261///
2262/// FIXME: Simply returns an alignof() expression if the argument is a
2263/// type. Ideally, the type should be propagated directly into Sema.
2264///
Benjamin Kramere56f3932011-12-23 17:00:35 +00002265/// [C11] type-id
2266/// [C11] constant-expression
Peter Collingbourne7d33cd32011-10-23 20:07:52 +00002267/// [C++0x] type-id ...[opt]
2268/// [C++0x] assignment-expression ...[opt]
2269ExprResult Parser::ParseAlignArgument(SourceLocation Start,
2270 SourceLocation &EllipsisLoc) {
2271 ExprResult ER;
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002272 if (isTypeIdInParens()) {
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002273 SourceLocation TypeLoc = Tok.getLocation();
2274 ParsedType Ty = ParseTypeName().get();
2275 SourceRange TypeRange(Start, Tok.getLocation());
Peter Collingbourne7d33cd32011-10-23 20:07:52 +00002276 ER = Actions.ActOnUnaryExprOrTypeTraitExpr(TypeLoc, UETT_AlignOf, true,
2277 Ty.getAsOpaquePtr(), TypeRange);
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002278 } else
Peter Collingbourne7d33cd32011-10-23 20:07:52 +00002279 ER = ParseConstantExpression();
2280
Richard Smith2bf7fdb2013-01-02 11:42:31 +00002281 if (getLangOpts().CPlusPlus11 && Tok.is(tok::ellipsis))
Peter Collingbourneccbcce02011-10-24 17:56:00 +00002282 EllipsisLoc = ConsumeToken();
Peter Collingbourne7d33cd32011-10-23 20:07:52 +00002283
2284 return ER;
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002285}
2286
2287/// ParseAlignmentSpecifier - Parse an alignment-specifier, and add the
2288/// attribute to Attrs.
2289///
2290/// alignment-specifier:
Benjamin Kramere56f3932011-12-23 17:00:35 +00002291/// [C11] '_Alignas' '(' type-id ')'
2292/// [C11] '_Alignas' '(' constant-expression ')'
Richard Smithd11c7a12013-01-29 01:48:07 +00002293/// [C++11] 'alignas' '(' type-id ...[opt] ')'
2294/// [C++11] 'alignas' '(' assignment-expression ...[opt] ')'
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002295void Parser::ParseAlignmentSpecifier(ParsedAttributes &Attrs,
Richard Smith44c247f2013-02-22 08:32:16 +00002296 SourceLocation *EndLoc) {
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002297 assert((Tok.is(tok::kw_alignas) || Tok.is(tok::kw__Alignas)) &&
2298 "Not an alignment-specifier!");
2299
Richard Smithd11c7a12013-01-29 01:48:07 +00002300 IdentifierInfo *KWName = Tok.getIdentifierInfo();
2301 SourceLocation KWLoc = ConsumeToken();
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002302
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002303 BalancedDelimiterTracker T(*this, tok::l_paren);
2304 if (T.expectAndConsume(diag::err_expected_lparen))
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002305 return;
2306
Peter Collingbourne7d33cd32011-10-23 20:07:52 +00002307 SourceLocation EllipsisLoc;
2308 ExprResult ArgExpr = ParseAlignArgument(T.getOpenLocation(), EllipsisLoc);
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002309 if (ArgExpr.isInvalid()) {
2310 SkipUntil(tok::r_paren);
2311 return;
2312 }
2313
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00002314 T.consumeClose();
Richard Smith44c247f2013-02-22 08:32:16 +00002315 if (EndLoc)
2316 *EndLoc = T.getCloseLocation();
Peter Collingbourne7d33cd32011-10-23 20:07:52 +00002317
Aaron Ballman00e99962013-08-31 01:11:41 +00002318 ArgsVector ArgExprs;
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002319 ArgExprs.push_back(ArgExpr.release());
Aaron Ballman00e99962013-08-31 01:11:41 +00002320 Attrs.addNew(KWName, KWLoc, 0, KWLoc, ArgExprs.data(), 1,
2321 AttributeList::AS_Keyword, EllipsisLoc);
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002322}
2323
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00002324/// ParseDeclarationSpecifiers
2325/// declaration-specifiers: [C99 6.7]
Chris Lattner3b561a32006-08-13 00:12:11 +00002326/// storage-class-specifier declaration-specifiers[opt]
2327/// type-specifier declaration-specifiers[opt]
Chris Lattner3b561a32006-08-13 00:12:11 +00002328/// [C99] function-specifier declaration-specifiers[opt]
Benjamin Kramere56f3932011-12-23 17:00:35 +00002329/// [C11] alignment-specifier declaration-specifiers[opt]
Chris Lattnere37e2332006-08-15 04:50:22 +00002330/// [GNU] attributes declaration-specifiers[opt]
Douglas Gregor26701a42011-09-09 02:06:17 +00002331/// [Clang] '__module_private__' declaration-specifiers[opt]
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00002332///
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002333/// storage-class-specifier: [C99 6.7.1]
Chris Lattnerda48a8e2006-08-04 05:25:55 +00002334/// 'typedef'
2335/// 'extern'
2336/// 'static'
2337/// 'auto'
2338/// 'register'
Sebastian Redlccdfaba2008-11-14 23:42:31 +00002339/// [C++] 'mutable'
Richard Smithb4a9e862013-04-12 22:46:28 +00002340/// [C++11] 'thread_local'
2341/// [C11] '_Thread_local'
Chris Lattnerda48a8e2006-08-04 05:25:55 +00002342/// [GNU] '__thread'
Chris Lattnerb9093cd2006-08-04 04:39:53 +00002343/// function-specifier: [C99 6.7.4]
Chris Lattner3b561a32006-08-13 00:12:11 +00002344/// [C99] 'inline'
Douglas Gregor61956c42008-10-31 09:07:45 +00002345/// [C++] 'virtual'
2346/// [C++] 'explicit'
Peter Collingbourne7ce13fc2011-02-14 01:42:53 +00002347/// [OpenCL] '__kernel'
Anders Carlssoncd8db412009-05-06 04:46:28 +00002348/// 'friend': [C++ dcl.friend]
Sebastian Redl39c2a8b2009-11-05 15:47:02 +00002349/// 'constexpr': [C++0x dcl.constexpr]
Anders Carlssoncd8db412009-05-06 04:46:28 +00002350
Chris Lattnerb9093cd2006-08-04 04:39:53 +00002351///
Douglas Gregorb9bd8a92008-12-24 02:52:09 +00002352void Parser::ParseDeclarationSpecifiers(DeclSpec &DS,
Douglas Gregor1b57ff32009-05-12 23:25:50 +00002353 const ParsedTemplateInfo &TemplateInfo,
John McCall07e91c02009-08-06 02:15:43 +00002354 AccessSpecifier AS,
DeLesley Hutchinsbd2ee132012-03-02 22:12:59 +00002355 DeclSpecContext DSContext,
2356 LateParsedAttrList *LateAttrs) {
Douglas Gregor0e7dde52011-04-24 05:37:28 +00002357 if (DS.getSourceRange().isInvalid()) {
2358 DS.SetRangeStart(Tok.getLocation());
2359 DS.SetRangeEnd(Tok.getLocation());
2360 }
Chad Rosierc1183952012-06-26 22:30:43 +00002361
Douglas Gregordf593fb2011-11-07 17:33:42 +00002362 bool EnteringContext = (DSContext == DSC_class || DSContext == DSC_top_level);
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00002363 bool AttrsLastTime = false;
2364 ParsedAttributesWithRange attrs(AttrFactory);
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00002365 while (1) {
John McCall49bfce42009-08-03 20:12:06 +00002366 bool isInvalid = false;
Chris Lattnerb9093cd2006-08-04 04:39:53 +00002367 const char *PrevSpec = 0;
John McCall49bfce42009-08-03 20:12:06 +00002368 unsigned DiagID = 0;
2369
Chris Lattner4d8f8732006-11-28 05:05:08 +00002370 SourceLocation Loc = Tok.getLocation();
Douglas Gregor450c75a2008-11-07 15:42:26 +00002371
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00002372 switch (Tok.getKind()) {
Mike Stump11289f42009-09-09 15:08:12 +00002373 default:
Chris Lattner0974b232008-07-26 00:20:22 +00002374 DoneWithDeclSpec:
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00002375 if (!AttrsLastTime)
2376 ProhibitAttributes(attrs);
Michael Han64536a62012-11-06 19:34:54 +00002377 else {
2378 // Reject C++11 attributes that appertain to decl specifiers as
2379 // we don't support any C++11 attributes that appertain to decl
2380 // specifiers. This also conforms to what g++ 4.8 is doing.
2381 ProhibitCXX11Attributes(attrs);
2382
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00002383 DS.takeAttributesFrom(attrs);
Michael Han64536a62012-11-06 19:34:54 +00002384 }
Peter Collingbourne70188b32011-09-29 18:03:57 +00002385
Chris Lattnerb9093cd2006-08-04 04:39:53 +00002386 // If this is not a declaration specifier token, we're done reading decl
2387 // specifiers. First verify that DeclSpec's are consistent.
Douglas Gregore3e01a22009-04-01 22:41:11 +00002388 DS.Finish(Diags, PP);
Chris Lattnerb9093cd2006-08-04 04:39:53 +00002389 return;
Mike Stump11289f42009-09-09 15:08:12 +00002390
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00002391 case tok::l_square:
2392 case tok::kw_alignas:
Richard Smith4cabd042013-02-22 09:15:49 +00002393 if (!getLangOpts().CPlusPlus11 || !isCXX11AttributeSpecifier())
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00002394 goto DoneWithDeclSpec;
2395
2396 ProhibitAttributes(attrs);
2397 // FIXME: It would be good to recover by accepting the attributes,
2398 // but attempting to do that now would cause serious
2399 // madness in terms of diagnostics.
2400 attrs.clear();
2401 attrs.Range = SourceRange();
2402
2403 ParseCXX11Attributes(attrs);
2404 AttrsLastTime = true;
Chad Rosierc1183952012-06-26 22:30:43 +00002405 continue;
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00002406
Douglas Gregorc49f5b22010-08-23 18:23:48 +00002407 case tok::code_completion: {
John McCallfaf5fb42010-08-26 23:41:50 +00002408 Sema::ParserCompletionContext CCC = Sema::PCC_Namespace;
Douglas Gregorc49f5b22010-08-23 18:23:48 +00002409 if (DS.hasTypeSpecifier()) {
2410 bool AllowNonIdentifiers
2411 = (getCurScope()->getFlags() & (Scope::ControlScope |
2412 Scope::BlockScope |
2413 Scope::TemplateParamScope |
2414 Scope::FunctionPrototypeScope |
2415 Scope::AtCatchScope)) == 0;
2416 bool AllowNestedNameSpecifiers
Chad Rosierc1183952012-06-26 22:30:43 +00002417 = DSContext == DSC_top_level ||
Douglas Gregorc49f5b22010-08-23 18:23:48 +00002418 (DSContext == DSC_class && DS.isFriendSpecified());
2419
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00002420 Actions.CodeCompleteDeclSpec(getCurScope(), DS,
Chad Rosierc1183952012-06-26 22:30:43 +00002421 AllowNonIdentifiers,
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00002422 AllowNestedNameSpecifiers);
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +00002423 return cutOffParsing();
Chad Rosierc1183952012-06-26 22:30:43 +00002424 }
2425
Douglas Gregor80039242011-02-15 20:33:25 +00002426 if (getCurScope()->getFnParent() || getCurScope()->getBlockParent())
2427 CCC = Sema::PCC_LocalDeclarationSpecifiers;
2428 else if (TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate)
Chad Rosierc1183952012-06-26 22:30:43 +00002429 CCC = DSContext == DSC_class? Sema::PCC_MemberTemplate
John McCallfaf5fb42010-08-26 23:41:50 +00002430 : Sema::PCC_Template;
Douglas Gregorc49f5b22010-08-23 18:23:48 +00002431 else if (DSContext == DSC_class)
John McCallfaf5fb42010-08-26 23:41:50 +00002432 CCC = Sema::PCC_Class;
Argyrios Kyrtzidisb6c6a582012-02-07 16:50:53 +00002433 else if (CurParsedObjCImpl)
John McCallfaf5fb42010-08-26 23:41:50 +00002434 CCC = Sema::PCC_ObjCImplementation;
Chad Rosierc1183952012-06-26 22:30:43 +00002435
Douglas Gregorc49f5b22010-08-23 18:23:48 +00002436 Actions.CodeCompleteOrdinaryName(getCurScope(), CCC);
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +00002437 return cutOffParsing();
Douglas Gregorc49f5b22010-08-23 18:23:48 +00002438 }
2439
Chris Lattnerbd31aa32009-01-05 00:07:25 +00002440 case tok::coloncolon: // ::foo::bar
John McCall1f476a12010-02-26 08:45:28 +00002441 // C++ scope specifier. Annotate and loop, or bail out on error.
Eli Friedman2a1d9a92013-08-15 23:59:20 +00002442 if (TryAnnotateCXXScopeToken(EnteringContext)) {
John McCall1f476a12010-02-26 08:45:28 +00002443 if (!DS.hasTypeSpecifier())
2444 DS.SetTypeSpecError();
2445 goto DoneWithDeclSpec;
2446 }
John McCall8bc2a702010-03-01 18:20:46 +00002447 if (Tok.is(tok::coloncolon)) // ::new or ::delete
2448 goto DoneWithDeclSpec;
John McCall1f476a12010-02-26 08:45:28 +00002449 continue;
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00002450
2451 case tok::annot_cxxscope: {
Richard Smith3092a3b2012-05-09 18:56:43 +00002452 if (DS.hasTypeSpecifier() || DS.isTypeAltiVecVector())
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00002453 goto DoneWithDeclSpec;
2454
John McCall9dab4e62009-12-12 11:40:51 +00002455 CXXScopeSpec SS;
Douglas Gregor869ad452011-02-24 17:54:50 +00002456 Actions.RestoreNestedNameSpecifierAnnotation(Tok.getAnnotationValue(),
2457 Tok.getAnnotationRange(),
2458 SS);
John McCall9dab4e62009-12-12 11:40:51 +00002459
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00002460 // We are looking for a qualified typename.
Douglas Gregor167fa622009-03-25 15:40:00 +00002461 Token Next = NextToken();
Mike Stump11289f42009-09-09 15:08:12 +00002462 if (Next.is(tok::annot_template_id) &&
Douglas Gregor167fa622009-03-25 15:40:00 +00002463 static_cast<TemplateIdAnnotation *>(Next.getAnnotationValue())
Douglas Gregorb67535d2009-03-31 00:43:58 +00002464 ->Kind == TNK_Type_template) {
Douglas Gregor167fa622009-03-25 15:40:00 +00002465 // We have a qualified template-id, e.g., N::A<int>
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002466
2467 // C++ [class.qual]p2:
2468 // In a lookup in which the constructor is an acceptable lookup
2469 // result and the nested-name-specifier nominates a class C:
2470 //
2471 // - if the name specified after the
2472 // nested-name-specifier, when looked up in C, is the
2473 // injected-class-name of C (Clause 9), or
2474 //
2475 // - if the name specified after the nested-name-specifier
2476 // is the same as the identifier or the
2477 // simple-template-id's template-name in the last
2478 // component of the nested-name-specifier,
2479 //
2480 // the name is instead considered to name the constructor of
2481 // class C.
Chad Rosierc1183952012-06-26 22:30:43 +00002482 //
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002483 // Thus, if the template-name is actually the constructor
2484 // name, then the code is ill-formed; this interpretation is
Chad Rosierc1183952012-06-26 22:30:43 +00002485 // reinforced by the NAD status of core issue 635.
Argyrios Kyrtzidisc0c5dd22011-06-22 06:09:49 +00002486 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Next);
Dmitri Gribenkod1c91f12013-02-12 17:27:41 +00002487 if ((DSContext == DSC_top_level || DSContext == DSC_class) &&
John McCall84821e72010-04-13 06:39:49 +00002488 TemplateId->Name &&
Douglas Gregor0be31a22010-07-02 17:43:08 +00002489 Actions.isCurrentClassName(*TemplateId->Name, getCurScope(), &SS)) {
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002490 if (isConstructorDeclarator()) {
2491 // The user meant this to be an out-of-line constructor
2492 // definition, but template arguments are not allowed
2493 // there. Just allow this as a constructor; we'll
2494 // complain about it later.
2495 goto DoneWithDeclSpec;
2496 }
2497
2498 // The user meant this to name a type, but it actually names
2499 // a constructor with some extraneous template
2500 // arguments. Complain, then parse it as a type as the user
2501 // intended.
2502 Diag(TemplateId->TemplateNameLoc,
2503 diag::err_out_of_line_template_id_names_constructor)
2504 << TemplateId->Name;
2505 }
2506
John McCall9dab4e62009-12-12 11:40:51 +00002507 DS.getTypeSpecScope() = SS;
2508 ConsumeToken(); // The C++ scope.
Mike Stump11289f42009-09-09 15:08:12 +00002509 assert(Tok.is(tok::annot_template_id) &&
Douglas Gregor167fa622009-03-25 15:40:00 +00002510 "ParseOptionalCXXScopeSpecifier not working");
Douglas Gregore7c20652011-03-02 00:47:37 +00002511 AnnotateTemplateIdTokenAsType();
Douglas Gregor167fa622009-03-25 15:40:00 +00002512 continue;
2513 }
2514
Douglas Gregorc5790df2009-09-28 07:26:33 +00002515 if (Next.is(tok::annot_typename)) {
John McCall9dab4e62009-12-12 11:40:51 +00002516 DS.getTypeSpecScope() = SS;
2517 ConsumeToken(); // The C++ scope.
John McCallba7bf592010-08-24 05:47:05 +00002518 if (Tok.getAnnotationValue()) {
2519 ParsedType T = getTypeAnnotation(Tok);
Nico Weber77430342010-11-22 10:30:56 +00002520 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename,
Chad Rosierc1183952012-06-26 22:30:43 +00002521 Tok.getAnnotationEndLoc(),
John McCallba7bf592010-08-24 05:47:05 +00002522 PrevSpec, DiagID, T);
Richard Smithda837032012-09-14 18:27:01 +00002523 if (isInvalid)
2524 break;
John McCallba7bf592010-08-24 05:47:05 +00002525 }
Douglas Gregorc5790df2009-09-28 07:26:33 +00002526 else
2527 DS.SetTypeSpecError();
2528 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
2529 ConsumeToken(); // The typename
2530 }
2531
Douglas Gregor167fa622009-03-25 15:40:00 +00002532 if (Next.isNot(tok::identifier))
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00002533 goto DoneWithDeclSpec;
2534
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002535 // If we're in a context where the identifier could be a class name,
2536 // check whether this is a constructor declaration.
Dmitri Gribenkod1c91f12013-02-12 17:27:41 +00002537 if ((DSContext == DSC_top_level || DSContext == DSC_class) &&
Chad Rosierc1183952012-06-26 22:30:43 +00002538 Actions.isCurrentClassName(*Next.getIdentifierInfo(), getCurScope(),
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002539 &SS)) {
2540 if (isConstructorDeclarator())
2541 goto DoneWithDeclSpec;
2542
2543 // As noted in C++ [class.qual]p2 (cited above), when the name
2544 // of the class is qualified in a context where it could name
2545 // a constructor, its a constructor name. However, we've
2546 // looked at the declarator, and the user probably meant this
2547 // to be a type. Complain that it isn't supposed to be treated
2548 // as a type, then proceed to parse it as a type.
2549 Diag(Next.getLocation(), diag::err_out_of_line_type_names_constructor)
2550 << Next.getIdentifierInfo();
2551 }
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00002552
John McCallba7bf592010-08-24 05:47:05 +00002553 ParsedType TypeRep = Actions.getTypeName(*Next.getIdentifierInfo(),
2554 Next.getLocation(),
Douglas Gregor844cb502011-03-01 18:12:44 +00002555 getCurScope(), &SS,
2556 false, false, ParsedType(),
Abramo Bagnara4244b432012-01-27 08:46:19 +00002557 /*IsCtorOrDtorName=*/false,
Douglas Gregor844cb502011-03-01 18:12:44 +00002558 /*NonTrivialSourceInfo=*/true);
Douglas Gregor8bf42052009-02-09 18:46:07 +00002559
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00002560 // If the referenced identifier is not a type, then this declspec is
2561 // erroneous: We already checked about that it has no type specifier, and
2562 // C++ doesn't have implicit int. Diagnose it as a typo w.r.t. to the
Mike Stump11289f42009-09-09 15:08:12 +00002563 // typename.
David Blaikie7d170102013-05-15 07:37:26 +00002564 if (!TypeRep) {
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00002565 ConsumeToken(); // Eat the scope spec so the identifier is current.
Michael Han9407e502012-11-26 22:54:45 +00002566 ParsedAttributesWithRange Attrs(AttrFactory);
2567 if (ParseImplicitInt(DS, &SS, TemplateInfo, AS, DSContext, Attrs)) {
2568 if (!Attrs.empty()) {
2569 AttrsLastTime = true;
2570 attrs.takeAllFrom(Attrs);
2571 }
2572 continue;
2573 }
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00002574 goto DoneWithDeclSpec;
Chris Lattnerb4a8fe82009-04-14 22:17:06 +00002575 }
Mike Stump11289f42009-09-09 15:08:12 +00002576
John McCall9dab4e62009-12-12 11:40:51 +00002577 DS.getTypeSpecScope() = SS;
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00002578 ConsumeToken(); // The C++ scope.
2579
Douglas Gregor9817f4a2009-02-09 15:09:02 +00002580 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
John McCall49bfce42009-08-03 20:12:06 +00002581 DiagID, TypeRep);
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00002582 if (isInvalid)
2583 break;
Mike Stump11289f42009-09-09 15:08:12 +00002584
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00002585 DS.SetRangeEnd(Tok.getLocation());
2586 ConsumeToken(); // The typename.
2587
2588 continue;
2589 }
Mike Stump11289f42009-09-09 15:08:12 +00002590
Chris Lattnere387d9e2009-01-21 19:48:37 +00002591 case tok::annot_typename: {
John McCallba7bf592010-08-24 05:47:05 +00002592 if (Tok.getAnnotationValue()) {
2593 ParsedType T = getTypeAnnotation(Tok);
Nico Weber7f8bb362010-11-22 12:50:03 +00002594 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
John McCallba7bf592010-08-24 05:47:05 +00002595 DiagID, T);
2596 } else
Douglas Gregorfe3d7d02009-04-01 21:51:26 +00002597 DS.SetTypeSpecError();
Chad Rosierc1183952012-06-26 22:30:43 +00002598
Chris Lattner005fc1b2010-04-05 18:18:31 +00002599 if (isInvalid)
2600 break;
2601
Chris Lattnere387d9e2009-01-21 19:48:37 +00002602 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
2603 ConsumeToken(); // The typename
Mike Stump11289f42009-09-09 15:08:12 +00002604
Chris Lattnere387d9e2009-01-21 19:48:37 +00002605 // Objective-C supports syntax of the form 'id<proto1,proto2>' where 'id'
2606 // is a specific typedef and 'itf<proto1,proto2>' where 'itf' is an
Chad Rosierc1183952012-06-26 22:30:43 +00002607 // Objective-C interface.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002608 if (Tok.is(tok::less) && getLangOpts().ObjC1)
Douglas Gregor06e41ae2010-10-21 23:17:00 +00002609 ParseObjCProtocolQualifiers(DS);
Chad Rosierc1183952012-06-26 22:30:43 +00002610
Chris Lattnere387d9e2009-01-21 19:48:37 +00002611 continue;
2612 }
Mike Stump11289f42009-09-09 15:08:12 +00002613
Douglas Gregor06873092011-04-28 15:48:45 +00002614 case tok::kw___is_signed:
2615 // GNU libstdc++ 4.4 uses __is_signed as an identifier, but Clang
2616 // typically treats it as a trait. If we see __is_signed as it appears
2617 // in libstdc++, e.g.,
2618 //
2619 // static const bool __is_signed;
2620 //
2621 // then treat __is_signed as an identifier rather than as a keyword.
2622 if (DS.getTypeSpecType() == TST_bool &&
2623 DS.getTypeQualifiers() == DeclSpec::TQ_const &&
2624 DS.getStorageClassSpec() == DeclSpec::SCS_static) {
2625 Tok.getIdentifierInfo()->RevertTokenIDToIdentifier();
2626 Tok.setKind(tok::identifier);
2627 }
2628
2629 // We're done with the declaration-specifiers.
2630 goto DoneWithDeclSpec;
Chad Rosierc1183952012-06-26 22:30:43 +00002631
Chris Lattner16fac4f2008-07-26 01:18:38 +00002632 // typedef-name
David Blaikie15a430a2011-12-04 05:04:18 +00002633 case tok::kw_decltype:
Chris Lattner16fac4f2008-07-26 01:18:38 +00002634 case tok::identifier: {
Chris Lattnerbd31aa32009-01-05 00:07:25 +00002635 // In C++, check to see if this is a scope specifier like foo::bar::, if
2636 // so handle it as such. This is important for ctor parsing.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002637 if (getLangOpts().CPlusPlus) {
Eli Friedman2a1d9a92013-08-15 23:59:20 +00002638 if (TryAnnotateCXXScopeToken(EnteringContext)) {
John McCall1f476a12010-02-26 08:45:28 +00002639 if (!DS.hasTypeSpecifier())
2640 DS.SetTypeSpecError();
2641 goto DoneWithDeclSpec;
2642 }
2643 if (!Tok.is(tok::identifier))
2644 continue;
2645 }
Mike Stump11289f42009-09-09 15:08:12 +00002646
Chris Lattner16fac4f2008-07-26 01:18:38 +00002647 // This identifier can only be a typedef name if we haven't already seen
2648 // a type-specifier. Without this check we misparse:
2649 // typedef int X; struct Y { short X; }; as 'short int'.
2650 if (DS.hasTypeSpecifier())
2651 goto DoneWithDeclSpec;
Mike Stump11289f42009-09-09 15:08:12 +00002652
John Thompson22334602010-02-05 00:12:22 +00002653 // Check for need to substitute AltiVec keyword tokens.
2654 if (TryAltiVecToken(DS, Loc, PrevSpec, DiagID, isInvalid))
2655 break;
2656
Richard Smith3092a3b2012-05-09 18:56:43 +00002657 // [AltiVec] 2.2: [If the 'vector' specifier is used] The syntax does not
2658 // allow the use of a typedef name as a type specifier.
2659 if (DS.isTypeAltiVecVector())
2660 goto DoneWithDeclSpec;
2661
John McCallba7bf592010-08-24 05:47:05 +00002662 ParsedType TypeRep =
2663 Actions.getTypeName(*Tok.getIdentifierInfo(),
2664 Tok.getLocation(), getCurScope());
Douglas Gregor8bf42052009-02-09 18:46:07 +00002665
Chris Lattner6cc055a2009-04-12 20:42:31 +00002666 // If this is not a typedef name, don't parse it as part of the declspec,
2667 // it must be an implicit int or an error.
John McCallba7bf592010-08-24 05:47:05 +00002668 if (!TypeRep) {
Michael Han9407e502012-11-26 22:54:45 +00002669 ParsedAttributesWithRange Attrs(AttrFactory);
2670 if (ParseImplicitInt(DS, 0, TemplateInfo, AS, DSContext, Attrs)) {
2671 if (!Attrs.empty()) {
2672 AttrsLastTime = true;
2673 attrs.takeAllFrom(Attrs);
2674 }
2675 continue;
2676 }
Chris Lattner16fac4f2008-07-26 01:18:38 +00002677 goto DoneWithDeclSpec;
Chris Lattner6cc055a2009-04-12 20:42:31 +00002678 }
Douglas Gregor8bf42052009-02-09 18:46:07 +00002679
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002680 // If we're in a context where the identifier could be a class name,
2681 // check whether this is a constructor declaration.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002682 if (getLangOpts().CPlusPlus && DSContext == DSC_class &&
Douglas Gregor0be31a22010-07-02 17:43:08 +00002683 Actions.isCurrentClassName(*Tok.getIdentifierInfo(), getCurScope()) &&
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002684 isConstructorDeclarator())
Douglas Gregor61956c42008-10-31 09:07:45 +00002685 goto DoneWithDeclSpec;
2686
Douglas Gregor9817f4a2009-02-09 15:09:02 +00002687 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
John McCall49bfce42009-08-03 20:12:06 +00002688 DiagID, TypeRep);
Chris Lattner16fac4f2008-07-26 01:18:38 +00002689 if (isInvalid)
2690 break;
Mike Stump11289f42009-09-09 15:08:12 +00002691
Chris Lattner16fac4f2008-07-26 01:18:38 +00002692 DS.SetRangeEnd(Tok.getLocation());
2693 ConsumeToken(); // The identifier
2694
2695 // Objective-C supports syntax of the form 'id<proto1,proto2>' where 'id'
2696 // is a specific typedef and 'itf<proto1,proto2>' where 'itf' is an
Chad Rosierc1183952012-06-26 22:30:43 +00002697 // Objective-C interface.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002698 if (Tok.is(tok::less) && getLangOpts().ObjC1)
Douglas Gregor06e41ae2010-10-21 23:17:00 +00002699 ParseObjCProtocolQualifiers(DS);
Chad Rosierc1183952012-06-26 22:30:43 +00002700
Steve Naroffcd5e7822008-09-22 10:28:57 +00002701 // Need to support trailing type qualifiers (e.g. "id<p> const").
2702 // If a type specifier follows, it will be diagnosed elsewhere.
2703 continue;
Chris Lattner16fac4f2008-07-26 01:18:38 +00002704 }
Douglas Gregor7f741122009-02-25 19:37:18 +00002705
2706 // type-name
2707 case tok::annot_template_id: {
Argyrios Kyrtzidisc0c5dd22011-06-22 06:09:49 +00002708 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregorb67535d2009-03-31 00:43:58 +00002709 if (TemplateId->Kind != TNK_Type_template) {
Douglas Gregor7f741122009-02-25 19:37:18 +00002710 // This template-id does not refer to a type name, so we're
2711 // done with the type-specifiers.
2712 goto DoneWithDeclSpec;
2713 }
2714
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002715 // If we're in a context where the template-id could be a
2716 // constructor name or specialization, check whether this is a
2717 // constructor declaration.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002718 if (getLangOpts().CPlusPlus && DSContext == DSC_class &&
Douglas Gregor0be31a22010-07-02 17:43:08 +00002719 Actions.isCurrentClassName(*TemplateId->Name, getCurScope()) &&
Douglas Gregor9de54ea2010-01-13 17:31:36 +00002720 isConstructorDeclarator())
2721 goto DoneWithDeclSpec;
2722
Douglas Gregor7f741122009-02-25 19:37:18 +00002723 // Turn the template-id annotation token into a type annotation
2724 // token, then try again to parse it as a type-specifier.
Douglas Gregorfe3d7d02009-04-01 21:51:26 +00002725 AnnotateTemplateIdTokenAsType();
Douglas Gregor7f741122009-02-25 19:37:18 +00002726 continue;
2727 }
2728
Chris Lattnere37e2332006-08-15 04:50:22 +00002729 // GNU attributes support.
2730 case tok::kw___attribute:
DeLesley Hutchinsbd2ee132012-03-02 22:12:59 +00002731 ParseGNUAttributes(DS.getAttributes(), 0, LateAttrs);
Chris Lattnerb95cca02006-10-17 03:01:08 +00002732 continue;
Steve Naroff3a9b7e02008-12-24 20:59:21 +00002733
2734 // Microsoft declspec support.
2735 case tok::kw___declspec:
John McCall53fa7142010-12-24 02:08:15 +00002736 ParseMicrosoftDeclSpec(DS.getAttributes());
Steve Naroff3a9b7e02008-12-24 20:59:21 +00002737 continue;
Mike Stump11289f42009-09-09 15:08:12 +00002738
Steve Naroff44ac7772008-12-25 14:16:32 +00002739 // Microsoft single token adornments.
Michael J. Spencerf97bd8c2012-06-18 07:00:48 +00002740 case tok::kw___forceinline: {
Chad Rosier92f0dcc2012-12-21 22:24:43 +00002741 isInvalid = DS.setFunctionSpecInline(Loc);
Michael J. Spencerf97bd8c2012-06-18 07:00:48 +00002742 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
Richard Smithda837032012-09-14 18:27:01 +00002743 SourceLocation AttrNameLoc = Tok.getLocation();
Alexis Hunta0e54d42012-06-18 16:13:52 +00002744 // FIXME: This does not work correctly if it is set to be a declspec
2745 // attribute, and a GNU attribute is simply incorrect.
Aaron Ballman00e99962013-08-31 01:11:41 +00002746 DS.getAttributes().addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0, 0,
2747 AttributeList::AS_GNU);
Richard Smithda837032012-09-14 18:27:01 +00002748 break;
Michael J. Spencerf97bd8c2012-06-18 07:00:48 +00002749 }
Eli Friedman53339e02009-06-08 23:27:34 +00002750
Aaron Ballman317a77f2013-05-22 23:25:32 +00002751 case tok::kw___sptr:
2752 case tok::kw___uptr:
Eli Friedman53339e02009-06-08 23:27:34 +00002753 case tok::kw___ptr64:
Francois Pichetf2fb4112011-08-25 00:36:46 +00002754 case tok::kw___ptr32:
Steve Narofff9c29d42008-12-25 14:41:26 +00002755 case tok::kw___w64:
Steve Naroff44ac7772008-12-25 14:16:32 +00002756 case tok::kw___cdecl:
2757 case tok::kw___stdcall:
2758 case tok::kw___fastcall:
Douglas Gregora941dca2010-05-18 16:57:00 +00002759 case tok::kw___thiscall:
Francois Pichet17ed0202011-08-18 09:59:55 +00002760 case tok::kw___unaligned:
John McCall53fa7142010-12-24 02:08:15 +00002761 ParseMicrosoftTypeAttributes(DS.getAttributes());
Eli Friedman53339e02009-06-08 23:27:34 +00002762 continue;
2763
Dawn Perchik335e16b2010-09-03 01:29:35 +00002764 // Borland single token adornments.
2765 case tok::kw___pascal:
John McCall53fa7142010-12-24 02:08:15 +00002766 ParseBorlandTypeAttributes(DS.getAttributes());
Dawn Perchik335e16b2010-09-03 01:29:35 +00002767 continue;
2768
Peter Collingbourne7ce13fc2011-02-14 01:42:53 +00002769 // OpenCL single token adornments.
2770 case tok::kw___kernel:
2771 ParseOpenCLAttributes(DS.getAttributes());
2772 continue;
2773
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002774 // storage-class-specifier
2775 case tok::kw_typedef:
Peter Collingbourne485b80f2011-10-06 03:01:00 +00002776 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_typedef, Loc,
2777 PrevSpec, DiagID);
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002778 break;
2779 case tok::kw_extern:
Richard Smithb4a9e862013-04-12 22:46:28 +00002780 if (DS.getThreadStorageClassSpec() == DeclSpec::TSCS___thread)
Chris Lattner6d29c102008-11-18 07:48:38 +00002781 Diag(Tok, diag::ext_thread_before) << "extern";
Peter Collingbourne485b80f2011-10-06 03:01:00 +00002782 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_extern, Loc,
2783 PrevSpec, DiagID);
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002784 break;
Steve Naroff2050b0d2007-12-18 00:16:02 +00002785 case tok::kw___private_extern__:
Peter Collingbourne485b80f2011-10-06 03:01:00 +00002786 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_private_extern,
2787 Loc, PrevSpec, DiagID);
Steve Naroff2050b0d2007-12-18 00:16:02 +00002788 break;
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002789 case tok::kw_static:
Richard Smithb4a9e862013-04-12 22:46:28 +00002790 if (DS.getThreadStorageClassSpec() == DeclSpec::TSCS___thread)
Chris Lattner6d29c102008-11-18 07:48:38 +00002791 Diag(Tok, diag::ext_thread_before) << "static";
Peter Collingbourne485b80f2011-10-06 03:01:00 +00002792 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_static, Loc,
2793 PrevSpec, DiagID);
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002794 break;
2795 case tok::kw_auto:
Richard Smith2bf7fdb2013-01-02 11:42:31 +00002796 if (getLangOpts().CPlusPlus11) {
Fariborz Jahanianbb6db562011-02-22 23:17:49 +00002797 if (isKnownToBeTypeSpecifier(GetLookAheadToken(1))) {
Peter Collingbourne485b80f2011-10-06 03:01:00 +00002798 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_auto, Loc,
2799 PrevSpec, DiagID);
Fariborz Jahanianbb6db562011-02-22 23:17:49 +00002800 if (!isInvalid)
Richard Smith58c74332011-09-04 19:54:14 +00002801 Diag(Tok, diag::ext_auto_storage_class)
Fariborz Jahanianbb6db562011-02-22 23:17:49 +00002802 << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc());
Richard Smith58c74332011-09-04 19:54:14 +00002803 } else
Fariborz Jahanianbb6db562011-02-22 23:17:49 +00002804 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_auto, Loc, PrevSpec,
2805 DiagID);
Richard Smith58c74332011-09-04 19:54:14 +00002806 } else
Peter Collingbourne485b80f2011-10-06 03:01:00 +00002807 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_auto, Loc,
2808 PrevSpec, DiagID);
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002809 break;
2810 case tok::kw_register:
Peter Collingbourne485b80f2011-10-06 03:01:00 +00002811 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_register, Loc,
2812 PrevSpec, DiagID);
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002813 break;
Sebastian Redlccdfaba2008-11-14 23:42:31 +00002814 case tok::kw_mutable:
Peter Collingbourne485b80f2011-10-06 03:01:00 +00002815 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_mutable, Loc,
2816 PrevSpec, DiagID);
Sebastian Redlccdfaba2008-11-14 23:42:31 +00002817 break;
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002818 case tok::kw___thread:
Richard Smithb4a9e862013-04-12 22:46:28 +00002819 isInvalid = DS.SetStorageClassSpecThread(DeclSpec::TSCS___thread, Loc,
2820 PrevSpec, DiagID);
2821 break;
2822 case tok::kw_thread_local:
2823 isInvalid = DS.SetStorageClassSpecThread(DeclSpec::TSCS_thread_local, Loc,
2824 PrevSpec, DiagID);
2825 break;
2826 case tok::kw__Thread_local:
2827 isInvalid = DS.SetStorageClassSpecThread(DeclSpec::TSCS__Thread_local,
2828 Loc, PrevSpec, DiagID);
Chris Lattnerf63f89a2006-08-05 03:28:50 +00002829 break;
Mike Stump11289f42009-09-09 15:08:12 +00002830
Chris Lattnerb9093cd2006-08-04 04:39:53 +00002831 // function-specifier
2832 case tok::kw_inline:
Chad Rosier92f0dcc2012-12-21 22:24:43 +00002833 isInvalid = DS.setFunctionSpecInline(Loc);
Chris Lattnerb9093cd2006-08-04 04:39:53 +00002834 break;
Douglas Gregor61956c42008-10-31 09:07:45 +00002835 case tok::kw_virtual:
Chad Rosier92f0dcc2012-12-21 22:24:43 +00002836 isInvalid = DS.setFunctionSpecVirtual(Loc);
Douglas Gregor61956c42008-10-31 09:07:45 +00002837 break;
Douglas Gregor61956c42008-10-31 09:07:45 +00002838 case tok::kw_explicit:
Chad Rosier92f0dcc2012-12-21 22:24:43 +00002839 isInvalid = DS.setFunctionSpecExplicit(Loc);
Douglas Gregor61956c42008-10-31 09:07:45 +00002840 break;
Richard Smith0015f092013-01-17 22:16:11 +00002841 case tok::kw__Noreturn:
2842 if (!getLangOpts().C11)
2843 Diag(Loc, diag::ext_c11_noreturn);
2844 isInvalid = DS.setFunctionSpecNoreturn(Loc);
2845 break;
Chris Lattnere387d9e2009-01-21 19:48:37 +00002846
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002847 // alignment-specifier
2848 case tok::kw__Alignas:
David Blaikiebbafb8a2012-03-11 07:00:24 +00002849 if (!getLangOpts().C11)
Jordan Rose58d54722012-06-30 21:33:57 +00002850 Diag(Tok, diag::ext_c11_alignment) << Tok.getName();
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +00002851 ParseAlignmentSpecifier(DS.getAttributes());
2852 continue;
2853
Anders Carlssoncd8db412009-05-06 04:46:28 +00002854 // friend
2855 case tok::kw_friend:
John McCall07e91c02009-08-06 02:15:43 +00002856 if (DSContext == DSC_class)
2857 isInvalid = DS.SetFriendSpec(Loc, PrevSpec, DiagID);
2858 else {
2859 PrevSpec = ""; // not actually used by the diagnostic
2860 DiagID = diag::err_friend_invalid_in_context;
2861 isInvalid = true;
2862 }
Anders Carlssoncd8db412009-05-06 04:46:28 +00002863 break;
Mike Stump11289f42009-09-09 15:08:12 +00002864
Douglas Gregor26701a42011-09-09 02:06:17 +00002865 // Modules
2866 case tok::kw___module_private__:
2867 isInvalid = DS.setModulePrivateSpec(Loc, PrevSpec, DiagID);
2868 break;
Chad Rosierc1183952012-06-26 22:30:43 +00002869
Sebastian Redl39c2a8b2009-11-05 15:47:02 +00002870 // constexpr
2871 case tok::kw_constexpr:
2872 isInvalid = DS.SetConstexprSpec(Loc, PrevSpec, DiagID);
2873 break;
2874
Chris Lattnere387d9e2009-01-21 19:48:37 +00002875 // type-specifier
2876 case tok::kw_short:
John McCall49bfce42009-08-03 20:12:06 +00002877 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_short, Loc, PrevSpec,
2878 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002879 break;
2880 case tok::kw_long:
2881 if (DS.getTypeSpecWidth() != DeclSpec::TSW_long)
John McCall49bfce42009-08-03 20:12:06 +00002882 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_long, Loc, PrevSpec,
2883 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002884 else
John McCall49bfce42009-08-03 20:12:06 +00002885 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_longlong, Loc, PrevSpec,
2886 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002887 break;
Francois Pichet84133e42011-04-28 01:59:37 +00002888 case tok::kw___int64:
2889 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_longlong, Loc, PrevSpec,
2890 DiagID);
2891 break;
Chris Lattnere387d9e2009-01-21 19:48:37 +00002892 case tok::kw_signed:
John McCall49bfce42009-08-03 20:12:06 +00002893 isInvalid = DS.SetTypeSpecSign(DeclSpec::TSS_signed, Loc, PrevSpec,
2894 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002895 break;
2896 case tok::kw_unsigned:
John McCall49bfce42009-08-03 20:12:06 +00002897 isInvalid = DS.SetTypeSpecSign(DeclSpec::TSS_unsigned, Loc, PrevSpec,
2898 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002899 break;
2900 case tok::kw__Complex:
John McCall49bfce42009-08-03 20:12:06 +00002901 isInvalid = DS.SetTypeSpecComplex(DeclSpec::TSC_complex, Loc, PrevSpec,
2902 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002903 break;
2904 case tok::kw__Imaginary:
John McCall49bfce42009-08-03 20:12:06 +00002905 isInvalid = DS.SetTypeSpecComplex(DeclSpec::TSC_imaginary, Loc, PrevSpec,
2906 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002907 break;
2908 case tok::kw_void:
John McCall49bfce42009-08-03 20:12:06 +00002909 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_void, Loc, PrevSpec,
2910 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002911 break;
2912 case tok::kw_char:
John McCall49bfce42009-08-03 20:12:06 +00002913 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char, Loc, PrevSpec,
2914 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002915 break;
2916 case tok::kw_int:
John McCall49bfce42009-08-03 20:12:06 +00002917 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, PrevSpec,
2918 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002919 break;
Richard Smithf016bbc2012-04-04 06:24:32 +00002920 case tok::kw___int128:
2921 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_int128, Loc, PrevSpec,
2922 DiagID);
2923 break;
2924 case tok::kw_half:
2925 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_half, Loc, PrevSpec,
2926 DiagID);
2927 break;
Chris Lattnere387d9e2009-01-21 19:48:37 +00002928 case tok::kw_float:
John McCall49bfce42009-08-03 20:12:06 +00002929 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_float, Loc, PrevSpec,
2930 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002931 break;
2932 case tok::kw_double:
John McCall49bfce42009-08-03 20:12:06 +00002933 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_double, Loc, PrevSpec,
2934 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002935 break;
2936 case tok::kw_wchar_t:
John McCall49bfce42009-08-03 20:12:06 +00002937 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_wchar, Loc, PrevSpec,
2938 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002939 break;
Alisdair Mereditha9ad47d2009-07-14 06:30:34 +00002940 case tok::kw_char16_t:
John McCall49bfce42009-08-03 20:12:06 +00002941 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char16, Loc, PrevSpec,
2942 DiagID);
Alisdair Mereditha9ad47d2009-07-14 06:30:34 +00002943 break;
2944 case tok::kw_char32_t:
John McCall49bfce42009-08-03 20:12:06 +00002945 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char32, Loc, PrevSpec,
2946 DiagID);
Alisdair Mereditha9ad47d2009-07-14 06:30:34 +00002947 break;
Chris Lattnere387d9e2009-01-21 19:48:37 +00002948 case tok::kw_bool:
2949 case tok::kw__Bool:
Argyrios Kyrtzidis20ee5ae2010-11-16 18:18:13 +00002950 if (Tok.is(tok::kw_bool) &&
2951 DS.getTypeSpecType() != DeclSpec::TST_unspecified &&
2952 DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
2953 PrevSpec = ""; // Not used by the diagnostic.
2954 DiagID = diag::err_bool_redeclaration;
Fariborz Jahanian2b059992011-04-19 21:42:37 +00002955 // For better error recovery.
2956 Tok.setKind(tok::identifier);
Argyrios Kyrtzidis20ee5ae2010-11-16 18:18:13 +00002957 isInvalid = true;
2958 } else {
2959 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_bool, Loc, PrevSpec,
2960 DiagID);
2961 }
Chris Lattnere387d9e2009-01-21 19:48:37 +00002962 break;
2963 case tok::kw__Decimal32:
John McCall49bfce42009-08-03 20:12:06 +00002964 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal32, Loc, PrevSpec,
2965 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002966 break;
2967 case tok::kw__Decimal64:
John McCall49bfce42009-08-03 20:12:06 +00002968 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal64, Loc, PrevSpec,
2969 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002970 break;
2971 case tok::kw__Decimal128:
John McCall49bfce42009-08-03 20:12:06 +00002972 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal128, Loc, PrevSpec,
2973 DiagID);
Chris Lattnere387d9e2009-01-21 19:48:37 +00002974 break;
John Thompson22334602010-02-05 00:12:22 +00002975 case tok::kw___vector:
2976 isInvalid = DS.SetTypeAltiVecVector(true, Loc, PrevSpec, DiagID);
2977 break;
2978 case tok::kw___pixel:
2979 isInvalid = DS.SetTypeAltiVecPixel(true, Loc, PrevSpec, DiagID);
2980 break;
Guy Benyeid8a08ea2012-12-18 14:38:23 +00002981 case tok::kw_image1d_t:
2982 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_image1d_t, Loc,
2983 PrevSpec, DiagID);
2984 break;
2985 case tok::kw_image1d_array_t:
2986 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_image1d_array_t, Loc,
2987 PrevSpec, DiagID);
2988 break;
2989 case tok::kw_image1d_buffer_t:
2990 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_image1d_buffer_t, Loc,
2991 PrevSpec, DiagID);
2992 break;
2993 case tok::kw_image2d_t:
2994 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_image2d_t, Loc,
2995 PrevSpec, DiagID);
2996 break;
2997 case tok::kw_image2d_array_t:
2998 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_image2d_array_t, Loc,
2999 PrevSpec, DiagID);
3000 break;
3001 case tok::kw_image3d_t:
3002 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_image3d_t, Loc,
3003 PrevSpec, DiagID);
3004 break;
Guy Benyei61054192013-02-07 10:55:47 +00003005 case tok::kw_sampler_t:
3006 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_sampler_t, Loc,
3007 PrevSpec, DiagID);
3008 break;
Guy Benyei1b4fb3e2013-01-20 12:31:11 +00003009 case tok::kw_event_t:
3010 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_event_t, Loc,
3011 PrevSpec, DiagID);
3012 break;
John McCall39439732011-04-09 22:50:59 +00003013 case tok::kw___unknown_anytype:
3014 isInvalid = DS.SetTypeSpecType(TST_unknown_anytype, Loc,
3015 PrevSpec, DiagID);
3016 break;
Chris Lattnere387d9e2009-01-21 19:48:37 +00003017
3018 // class-specifier:
3019 case tok::kw_class:
3020 case tok::kw_struct:
Joao Matosdc86f942012-08-31 18:45:21 +00003021 case tok::kw___interface:
Chris Lattnerffaa0e62009-04-12 21:49:30 +00003022 case tok::kw_union: {
3023 tok::TokenKind Kind = Tok.getKind();
3024 ConsumeToken();
Michael Han9407e502012-11-26 22:54:45 +00003025
3026 // These are attributes following class specifiers.
3027 // To produce better diagnostic, we parse them when
3028 // parsing class specifier.
Bill Wendling44426052012-12-20 19:22:21 +00003029 ParsedAttributesWithRange Attributes(AttrFactory);
Richard Smithc5b05522012-03-12 07:56:15 +00003030 ParseClassSpecifier(Kind, Loc, DS, TemplateInfo, AS,
Bill Wendling44426052012-12-20 19:22:21 +00003031 EnteringContext, DSContext, Attributes);
Michael Han9407e502012-11-26 22:54:45 +00003032
3033 // If there are attributes following class specifier,
3034 // take them over and handle them here.
Bill Wendling44426052012-12-20 19:22:21 +00003035 if (!Attributes.empty()) {
Michael Han9407e502012-11-26 22:54:45 +00003036 AttrsLastTime = true;
Bill Wendling44426052012-12-20 19:22:21 +00003037 attrs.takeAllFrom(Attributes);
Michael Han9407e502012-11-26 22:54:45 +00003038 }
Chris Lattnere387d9e2009-01-21 19:48:37 +00003039 continue;
Chris Lattnerffaa0e62009-04-12 21:49:30 +00003040 }
Chris Lattnere387d9e2009-01-21 19:48:37 +00003041
3042 // enum-specifier:
3043 case tok::kw_enum:
Chris Lattnerffaa0e62009-04-12 21:49:30 +00003044 ConsumeToken();
Richard Smithc5b05522012-03-12 07:56:15 +00003045 ParseEnumSpecifier(Loc, DS, TemplateInfo, AS, DSContext);
Chris Lattnere387d9e2009-01-21 19:48:37 +00003046 continue;
3047
3048 // cv-qualifier:
3049 case tok::kw_const:
John McCall49bfce42009-08-03 20:12:06 +00003050 isInvalid = DS.SetTypeQual(DeclSpec::TQ_const, Loc, PrevSpec, DiagID,
Richard Smith87e79512012-10-17 23:31:46 +00003051 getLangOpts());
Chris Lattnere387d9e2009-01-21 19:48:37 +00003052 break;
3053 case tok::kw_volatile:
John McCall49bfce42009-08-03 20:12:06 +00003054 isInvalid = DS.SetTypeQual(DeclSpec::TQ_volatile, Loc, PrevSpec, DiagID,
Richard Smith87e79512012-10-17 23:31:46 +00003055 getLangOpts());
Chris Lattnere387d9e2009-01-21 19:48:37 +00003056 break;
3057 case tok::kw_restrict:
John McCall49bfce42009-08-03 20:12:06 +00003058 isInvalid = DS.SetTypeQual(DeclSpec::TQ_restrict, Loc, PrevSpec, DiagID,
Richard Smith87e79512012-10-17 23:31:46 +00003059 getLangOpts());
Chris Lattnere387d9e2009-01-21 19:48:37 +00003060 break;
3061
Douglas Gregor333489b2009-03-27 23:10:48 +00003062 // C++ typename-specifier:
3063 case tok::kw_typename:
John McCall1f476a12010-02-26 08:45:28 +00003064 if (TryAnnotateTypeOrScopeToken()) {
3065 DS.SetTypeSpecError();
3066 goto DoneWithDeclSpec;
3067 }
3068 if (!Tok.is(tok::kw_typename))
Douglas Gregor333489b2009-03-27 23:10:48 +00003069 continue;
3070 break;
3071
Chris Lattnere387d9e2009-01-21 19:48:37 +00003072 // GNU typeof support.
3073 case tok::kw_typeof:
3074 ParseTypeofSpecifier(DS);
3075 continue;
3076
David Blaikie15a430a2011-12-04 05:04:18 +00003077 case tok::annot_decltype:
Anders Carlsson74948d02009-06-24 17:47:40 +00003078 ParseDecltypeSpecifier(DS);
3079 continue;
3080
Alexis Hunt4a257072011-05-19 05:37:45 +00003081 case tok::kw___underlying_type:
3082 ParseUnderlyingTypeSpecifier(DS);
Eli Friedman0dfb8892011-10-06 23:00:33 +00003083 continue;
3084
3085 case tok::kw__Atomic:
Richard Smith8e1ac332013-03-28 01:55:44 +00003086 // C11 6.7.2.4/4:
3087 // If the _Atomic keyword is immediately followed by a left parenthesis,
3088 // it is interpreted as a type specifier (with a type name), not as a
3089 // type qualifier.
3090 if (NextToken().is(tok::l_paren)) {
3091 ParseAtomicSpecifier(DS);
3092 continue;
3093 }
3094 isInvalid = DS.SetTypeQual(DeclSpec::TQ_atomic, Loc, PrevSpec, DiagID,
3095 getLangOpts());
3096 break;
Alexis Hunt4a257072011-05-19 05:37:45 +00003097
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00003098 // OpenCL qualifiers:
Chad Rosierc1183952012-06-26 22:30:43 +00003099 case tok::kw_private:
David Blaikiebbafb8a2012-03-11 07:00:24 +00003100 if (!getLangOpts().OpenCL)
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00003101 goto DoneWithDeclSpec;
3102 case tok::kw___private:
3103 case tok::kw___global:
3104 case tok::kw___local:
3105 case tok::kw___constant:
3106 case tok::kw___read_only:
3107 case tok::kw___write_only:
3108 case tok::kw___read_write:
3109 ParseOpenCLQualifiers(DS);
3110 break;
Chad Rosierc1183952012-06-26 22:30:43 +00003111
Steve Naroffcfdf6162008-06-05 00:02:44 +00003112 case tok::less:
Chris Lattner16fac4f2008-07-26 01:18:38 +00003113 // GCC ObjC supports types like "<SomeProtocol>" as a synonym for
Chris Lattner0974b232008-07-26 00:20:22 +00003114 // "id<SomeProtocol>". This is hopelessly old fashioned and dangerous,
3115 // but we support it.
David Blaikiebbafb8a2012-03-11 07:00:24 +00003116 if (DS.hasTypeSpecifier() || !getLangOpts().ObjC1)
Chris Lattner0974b232008-07-26 00:20:22 +00003117 goto DoneWithDeclSpec;
Mike Stump11289f42009-09-09 15:08:12 +00003118
Douglas Gregor3a001f42010-11-19 17:10:50 +00003119 if (!ParseObjCProtocolQualifiers(DS))
3120 Diag(Loc, diag::warn_objc_protocol_qualifier_missing_id)
3121 << FixItHint::CreateInsertion(Loc, "id")
3122 << SourceRange(Loc, DS.getSourceRange().getEnd());
Chad Rosierc1183952012-06-26 22:30:43 +00003123
Douglas Gregor06e41ae2010-10-21 23:17:00 +00003124 // Need to support trailing type qualifiers (e.g. "id<p> const").
3125 // If a type specifier follows, it will be diagnosed elsewhere.
3126 continue;
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00003127 }
John McCall49bfce42009-08-03 20:12:06 +00003128 // If the specifier wasn't legal, issue a diagnostic.
Chris Lattnerb9093cd2006-08-04 04:39:53 +00003129 if (isInvalid) {
3130 assert(PrevSpec && "Method did not return previous specifier!");
John McCall49bfce42009-08-03 20:12:06 +00003131 assert(DiagID);
Chad Rosierc1183952012-06-26 22:30:43 +00003132
Douglas Gregora05f5ab2010-08-23 14:34:43 +00003133 if (DiagID == diag::ext_duplicate_declspec)
3134 Diag(Tok, DiagID)
3135 << PrevSpec << FixItHint::CreateRemoval(Tok.getLocation());
3136 else
3137 Diag(Tok, DiagID) << PrevSpec;
Chris Lattnerb9093cd2006-08-04 04:39:53 +00003138 }
Fariborz Jahanianbb6db562011-02-22 23:17:49 +00003139
Chris Lattner2e232092008-03-13 06:29:04 +00003140 DS.SetRangeEnd(Tok.getLocation());
Fariborz Jahanian2b059992011-04-19 21:42:37 +00003141 if (DiagID != diag::err_bool_redeclaration)
3142 ConsumeToken();
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00003143
3144 AttrsLastTime = false;
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00003145 }
3146}
Douglas Gregoreb31f392008-12-01 23:54:00 +00003147
Chris Lattner70ae4912007-10-29 04:42:53 +00003148/// ParseStructDeclaration - Parse a struct declaration without the terminating
3149/// semicolon.
3150///
Chris Lattner90a26b02007-01-23 04:38:16 +00003151/// struct-declaration:
Chris Lattner70ae4912007-10-29 04:42:53 +00003152/// specifier-qualifier-list struct-declarator-list
Chris Lattner736ed5d2007-06-09 05:59:07 +00003153/// [GNU] __extension__ struct-declaration
Chris Lattner70ae4912007-10-29 04:42:53 +00003154/// [GNU] specifier-qualifier-list
Chris Lattner90a26b02007-01-23 04:38:16 +00003155/// struct-declarator-list:
3156/// struct-declarator
3157/// struct-declarator-list ',' struct-declarator
3158/// [GNU] struct-declarator-list ',' attributes[opt] struct-declarator
3159/// struct-declarator:
3160/// declarator
3161/// [GNU] declarator attributes[opt]
3162/// declarator[opt] ':' constant-expression
3163/// [GNU] declarator[opt] ':' constant-expression attributes[opt]
3164///
Chris Lattnera12405b2008-04-10 06:46:29 +00003165void Parser::
Eli Friedman89b1f2c2012-08-08 23:04:35 +00003166ParseStructDeclaration(ParsingDeclSpec &DS, FieldCallback &Fields) {
Chad Rosierc1183952012-06-26 22:30:43 +00003167
Chris Lattnerf02ef3e2008-10-20 06:45:43 +00003168 if (Tok.is(tok::kw___extension__)) {
3169 // __extension__ silences extension warnings in the subexpression.
3170 ExtensionRAIIObject O(Diags); // Use RAII to do this.
Steve Naroff97170802007-08-20 22:28:22 +00003171 ConsumeToken();
Chris Lattnerf02ef3e2008-10-20 06:45:43 +00003172 return ParseStructDeclaration(DS, Fields);
3173 }
Mike Stump11289f42009-09-09 15:08:12 +00003174
Steve Naroff97170802007-08-20 22:28:22 +00003175 // Parse the common specifier-qualifiers-list piece.
Steve Naroff97170802007-08-20 22:28:22 +00003176 ParseSpecifierQualifierList(DS);
Mike Stump11289f42009-09-09 15:08:12 +00003177
Douglas Gregorc6f58fe2009-01-12 22:49:06 +00003178 // If there are no declarators, this is a free-standing declaration
3179 // specifier. Let the actions module cope with it.
Chris Lattner76c72282007-10-09 17:33:22 +00003180 if (Tok.is(tok::semi)) {
Eli Friedman89b1f2c2012-08-08 23:04:35 +00003181 Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS_none,
3182 DS);
3183 DS.complete(TheDecl);
Steve Naroff97170802007-08-20 22:28:22 +00003184 return;
3185 }
3186
3187 // Read struct-declarators until we find the semicolon.
John McCallcfefb6d2009-11-03 02:38:08 +00003188 bool FirstDeclarator = true;
Richard Smith8d06f422012-01-12 23:53:29 +00003189 SourceLocation CommaLoc;
Steve Naroff97170802007-08-20 22:28:22 +00003190 while (1) {
Eli Friedman89b1f2c2012-08-08 23:04:35 +00003191 ParsingFieldDeclarator DeclaratorInfo(*this, DS);
Richard Smith8d06f422012-01-12 23:53:29 +00003192 DeclaratorInfo.D.setCommaLoc(CommaLoc);
John McCallcfefb6d2009-11-03 02:38:08 +00003193
Bill Wendling44426052012-12-20 19:22:21 +00003194 // Attributes are only allowed here on successive declarators.
John McCall53fa7142010-12-24 02:08:15 +00003195 if (!FirstDeclarator)
3196 MaybeParseGNUAttributes(DeclaratorInfo.D);
Mike Stump11289f42009-09-09 15:08:12 +00003197
Steve Naroff97170802007-08-20 22:28:22 +00003198 /// struct-declarator: declarator
3199 /// struct-declarator: declarator[opt] ':' constant-expression
Chris Lattner17c3b1f2009-12-10 01:59:24 +00003200 if (Tok.isNot(tok::colon)) {
3201 // Don't parse FOO:BAR as if it were a typo for FOO::BAR.
3202 ColonProtectionRAIIObject X(*this);
Chris Lattnera12405b2008-04-10 06:46:29 +00003203 ParseDeclarator(DeclaratorInfo.D);
Chris Lattner17c3b1f2009-12-10 01:59:24 +00003204 }
Mike Stump11289f42009-09-09 15:08:12 +00003205
Chris Lattner76c72282007-10-09 17:33:22 +00003206 if (Tok.is(tok::colon)) {
Steve Naroff97170802007-08-20 22:28:22 +00003207 ConsumeToken();
John McCalldadc5752010-08-24 06:29:42 +00003208 ExprResult Res(ParseConstantExpression());
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00003209 if (Res.isInvalid())
Steve Naroff97170802007-08-20 22:28:22 +00003210 SkipUntil(tok::semi, true, true);
Chris Lattner32295d32008-04-10 06:15:14 +00003211 else
Sebastian Redld9f7b1c2008-12-10 00:02:53 +00003212 DeclaratorInfo.BitfieldSize = Res.release();
Steve Naroff97170802007-08-20 22:28:22 +00003213 }
Sebastian Redlf6591ca2009-02-09 18:23:29 +00003214
Steve Naroff97170802007-08-20 22:28:22 +00003215 // If attributes exist after the declarator, parse them.
John McCall53fa7142010-12-24 02:08:15 +00003216 MaybeParseGNUAttributes(DeclaratorInfo.D);
Sebastian Redlf6591ca2009-02-09 18:23:29 +00003217
John McCallcfefb6d2009-11-03 02:38:08 +00003218 // We're done with this declarator; invoke the callback.
Eli Friedmanba01f2b2012-08-08 23:35:12 +00003219 Fields.invoke(DeclaratorInfo);
John McCallcfefb6d2009-11-03 02:38:08 +00003220
Steve Naroff97170802007-08-20 22:28:22 +00003221 // If we don't have a comma, it is either the end of the list (a ';')
3222 // or an error, bail out.
Chris Lattner76c72282007-10-09 17:33:22 +00003223 if (Tok.isNot(tok::comma))
Chris Lattner70ae4912007-10-29 04:42:53 +00003224 return;
Sebastian Redlf6591ca2009-02-09 18:23:29 +00003225
Steve Naroff97170802007-08-20 22:28:22 +00003226 // Consume the comma.
Richard Smith8d06f422012-01-12 23:53:29 +00003227 CommaLoc = ConsumeToken();
Sebastian Redlf6591ca2009-02-09 18:23:29 +00003228
John McCallcfefb6d2009-11-03 02:38:08 +00003229 FirstDeclarator = false;
Steve Naroff97170802007-08-20 22:28:22 +00003230 }
Steve Naroff97170802007-08-20 22:28:22 +00003231}
3232
3233/// ParseStructUnionBody
3234/// struct-contents:
3235/// struct-declaration-list
3236/// [EXT] empty
3237/// [GNU] "struct-declaration-list" without terminatoring ';'
3238/// struct-declaration-list:
3239/// struct-declaration
3240/// struct-declaration-list struct-declaration
Chris Lattner535b8302008-06-21 19:39:06 +00003241/// [OBC] '@' 'defs' '(' class-name ')'
Steve Naroff97170802007-08-20 22:28:22 +00003242///
Chris Lattner1300fb92007-01-23 23:42:53 +00003243void Parser::ParseStructUnionBody(SourceLocation RecordLoc,
John McCall48871652010-08-21 09:40:31 +00003244 unsigned TagType, Decl *TagDecl) {
John McCallfaf5fb42010-08-26 23:41:50 +00003245 PrettyDeclStackTraceEntry CrashInfo(Actions, TagDecl, RecordLoc,
3246 "parsing struct/union body");
Andy Gibbs22e140b2013-04-03 09:31:19 +00003247 assert(!getLangOpts().CPlusPlus && "C++ declarations not supported");
Mike Stump11289f42009-09-09 15:08:12 +00003248
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003249 BalancedDelimiterTracker T(*this, tok::l_brace);
3250 if (T.consumeOpen())
3251 return;
Mike Stump11289f42009-09-09 15:08:12 +00003252
Douglas Gregor658b9552009-01-09 22:42:13 +00003253 ParseScope StructScope(this, Scope::ClassScope|Scope::DeclScope);
Douglas Gregor0be31a22010-07-02 17:43:08 +00003254 Actions.ActOnTagStartDefinition(getCurScope(), TagDecl);
Douglas Gregor82ac25e2009-01-08 20:45:30 +00003255
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003256 SmallVector<Decl *, 32> FieldDecls;
Chris Lattnera12405b2008-04-10 06:46:29 +00003257
Chris Lattner7b9ace62007-01-23 20:11:08 +00003258 // While we still have something to read, read the declarations in the struct.
Chris Lattner76c72282007-10-09 17:33:22 +00003259 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
Chris Lattner90a26b02007-01-23 04:38:16 +00003260 // Each iteration of this loop reads one struct-declaration.
Mike Stump11289f42009-09-09 15:08:12 +00003261
Chris Lattner736ed5d2007-06-09 05:59:07 +00003262 // Check for extraneous top-level semicolon.
Chris Lattner76c72282007-10-09 17:33:22 +00003263 if (Tok.is(tok::semi)) {
Richard Smith87f5dc52012-07-23 05:45:25 +00003264 ConsumeExtraSemi(InsideStruct, TagType);
Chris Lattner36e46a22007-06-09 05:49:55 +00003265 continue;
3266 }
Chris Lattnera12405b2008-04-10 06:46:29 +00003267
Andy Gibbsc804e082013-04-03 09:46:04 +00003268 // Parse _Static_assert declaration.
3269 if (Tok.is(tok::kw__Static_assert)) {
3270 SourceLocation DeclEnd;
3271 ParseStaticAssertDeclaration(DeclEnd);
3272 continue;
3273 }
3274
Argyrios Kyrtzidis71c12fb2013-04-18 01:42:35 +00003275 if (Tok.is(tok::annot_pragma_pack)) {
3276 HandlePragmaPack();
3277 continue;
3278 }
3279
3280 if (Tok.is(tok::annot_pragma_align)) {
3281 HandlePragmaAlign();
3282 continue;
3283 }
3284
John McCallcfefb6d2009-11-03 02:38:08 +00003285 if (!Tok.is(tok::at)) {
3286 struct CFieldCallback : FieldCallback {
3287 Parser &P;
John McCall48871652010-08-21 09:40:31 +00003288 Decl *TagDecl;
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003289 SmallVectorImpl<Decl *> &FieldDecls;
John McCallcfefb6d2009-11-03 02:38:08 +00003290
John McCall48871652010-08-21 09:40:31 +00003291 CFieldCallback(Parser &P, Decl *TagDecl,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003292 SmallVectorImpl<Decl *> &FieldDecls) :
John McCallcfefb6d2009-11-03 02:38:08 +00003293 P(P), TagDecl(TagDecl), FieldDecls(FieldDecls) {}
3294
Eli Friedman934dbbf2012-08-08 23:53:27 +00003295 void invoke(ParsingFieldDeclarator &FD) {
John McCallcfefb6d2009-11-03 02:38:08 +00003296 // Install the declarator into the current TagDecl.
John McCall48871652010-08-21 09:40:31 +00003297 Decl *Field = P.Actions.ActOnField(P.getCurScope(), TagDecl,
John McCall5e6253b2009-11-03 21:13:47 +00003298 FD.D.getDeclSpec().getSourceRange().getBegin(),
3299 FD.D, FD.BitfieldSize);
John McCallcfefb6d2009-11-03 02:38:08 +00003300 FieldDecls.push_back(Field);
Eli Friedman89b1f2c2012-08-08 23:04:35 +00003301 FD.complete(Field);
Douglas Gregor66a985d2009-08-26 14:27:30 +00003302 }
John McCallcfefb6d2009-11-03 02:38:08 +00003303 } Callback(*this, TagDecl, FieldDecls);
3304
Eli Friedman89b1f2c2012-08-08 23:04:35 +00003305 // Parse all the comma separated declarators.
3306 ParsingDeclSpec DS(*this);
John McCallcfefb6d2009-11-03 02:38:08 +00003307 ParseStructDeclaration(DS, Callback);
Chris Lattner535b8302008-06-21 19:39:06 +00003308 } else { // Handle @defs
3309 ConsumeToken();
3310 if (!Tok.isObjCAtKeyword(tok::objc_defs)) {
3311 Diag(Tok, diag::err_unexpected_at);
Chris Lattner245c5332010-02-02 00:37:27 +00003312 SkipUntil(tok::semi, true);
Chris Lattner535b8302008-06-21 19:39:06 +00003313 continue;
3314 }
3315 ConsumeToken();
3316 ExpectAndConsume(tok::l_paren, diag::err_expected_lparen);
3317 if (!Tok.is(tok::identifier)) {
3318 Diag(Tok, diag::err_expected_ident);
Chris Lattner245c5332010-02-02 00:37:27 +00003319 SkipUntil(tok::semi, true);
Chris Lattner535b8302008-06-21 19:39:06 +00003320 continue;
3321 }
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003322 SmallVector<Decl *, 16> Fields;
Douglas Gregor0be31a22010-07-02 17:43:08 +00003323 Actions.ActOnDefs(getCurScope(), TagDecl, Tok.getLocation(),
Douglas Gregor91f84212008-12-11 16:49:14 +00003324 Tok.getIdentifierInfo(), Fields);
Chris Lattner535b8302008-06-21 19:39:06 +00003325 FieldDecls.insert(FieldDecls.end(), Fields.begin(), Fields.end());
3326 ConsumeToken();
3327 ExpectAndConsume(tok::r_paren, diag::err_expected_rparen);
Mike Stump11289f42009-09-09 15:08:12 +00003328 }
Chris Lattner736ed5d2007-06-09 05:59:07 +00003329
Chris Lattner76c72282007-10-09 17:33:22 +00003330 if (Tok.is(tok::semi)) {
Chris Lattner90a26b02007-01-23 04:38:16 +00003331 ConsumeToken();
Chris Lattner76c72282007-10-09 17:33:22 +00003332 } else if (Tok.is(tok::r_brace)) {
Chris Lattner245c5332010-02-02 00:37:27 +00003333 ExpectAndConsume(tok::semi, diag::ext_expected_semi_decl_list);
Chris Lattner0c7e82d2007-06-09 05:54:40 +00003334 break;
Chris Lattner90a26b02007-01-23 04:38:16 +00003335 } else {
Chris Lattner245c5332010-02-02 00:37:27 +00003336 ExpectAndConsume(tok::semi, diag::err_expected_semi_decl_list);
3337 // Skip to end of block or statement to avoid ext-warning on extra ';'.
Chris Lattner90a26b02007-01-23 04:38:16 +00003338 SkipUntil(tok::r_brace, true, true);
Chris Lattner245c5332010-02-02 00:37:27 +00003339 // If we stopped at a ';', eat it.
3340 if (Tok.is(tok::semi)) ConsumeToken();
Chris Lattner90a26b02007-01-23 04:38:16 +00003341 }
3342 }
Mike Stump11289f42009-09-09 15:08:12 +00003343
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003344 T.consumeClose();
Mike Stump11289f42009-09-09 15:08:12 +00003345
John McCall084e83d2011-03-24 11:26:52 +00003346 ParsedAttributes attrs(AttrFactory);
Chris Lattner90a26b02007-01-23 04:38:16 +00003347 // If attributes exist after struct contents, parse them.
John McCall53fa7142010-12-24 02:08:15 +00003348 MaybeParseGNUAttributes(attrs);
Daniel Dunbar15619c72008-10-03 02:03:53 +00003349
Douglas Gregor0be31a22010-07-02 17:43:08 +00003350 Actions.ActOnFields(getCurScope(),
David Blaikie751c5582011-09-22 02:58:26 +00003351 RecordLoc, TagDecl, FieldDecls,
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003352 T.getOpenLocation(), T.getCloseLocation(),
John McCall53fa7142010-12-24 02:08:15 +00003353 attrs.getList());
Douglas Gregor82ac25e2009-01-08 20:45:30 +00003354 StructScope.Exit();
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003355 Actions.ActOnTagFinishDefinition(getCurScope(), TagDecl,
3356 T.getCloseLocation());
Chris Lattner90a26b02007-01-23 04:38:16 +00003357}
3358
Chris Lattner3b561a32006-08-13 00:12:11 +00003359/// ParseEnumSpecifier
Chris Lattner1890ac82006-08-13 01:16:23 +00003360/// enum-specifier: [C99 6.7.2.2]
Chris Lattner3b561a32006-08-13 00:12:11 +00003361/// 'enum' identifier[opt] '{' enumerator-list '}'
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00003362///[C99/C++]'enum' identifier[opt] '{' enumerator-list ',' '}'
Chris Lattnere37e2332006-08-15 04:50:22 +00003363/// [GNU] 'enum' attributes[opt] identifier[opt] '{' enumerator-list ',' [opt]
3364/// '}' attributes[opt]
Aaron Ballman9ecff022012-03-01 04:09:28 +00003365/// [MS] 'enum' __declspec[opt] identifier[opt] '{' enumerator-list ',' [opt]
3366/// '}'
Chris Lattner3b561a32006-08-13 00:12:11 +00003367/// 'enum' identifier
Chris Lattnere37e2332006-08-15 04:50:22 +00003368/// [GNU] 'enum' attributes[opt] identifier
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00003369///
Richard Smith7d137e32012-03-23 03:33:32 +00003370/// [C++11] enum-head '{' enumerator-list[opt] '}'
3371/// [C++11] enum-head '{' enumerator-list ',' '}'
Douglas Gregor0bf31402010-10-08 23:50:27 +00003372///
Richard Smith7d137e32012-03-23 03:33:32 +00003373/// enum-head: [C++11]
3374/// enum-key attribute-specifier-seq[opt] identifier[opt] enum-base[opt]
3375/// enum-key attribute-specifier-seq[opt] nested-name-specifier
3376/// identifier enum-base[opt]
Douglas Gregor0bf31402010-10-08 23:50:27 +00003377///
Richard Smith7d137e32012-03-23 03:33:32 +00003378/// enum-key: [C++11]
Douglas Gregor0bf31402010-10-08 23:50:27 +00003379/// 'enum'
3380/// 'enum' 'class'
3381/// 'enum' 'struct'
3382///
Richard Smith7d137e32012-03-23 03:33:32 +00003383/// enum-base: [C++11]
Douglas Gregor0bf31402010-10-08 23:50:27 +00003384/// ':' type-specifier-seq
3385///
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00003386/// [C++] elaborated-type-specifier:
3387/// [C++] 'enum' '::'[opt] nested-name-specifier[opt] identifier
3388///
Chris Lattnerffaa0e62009-04-12 21:49:30 +00003389void Parser::ParseEnumSpecifier(SourceLocation StartLoc, DeclSpec &DS,
Douglas Gregordc70c3a2010-03-02 17:53:14 +00003390 const ParsedTemplateInfo &TemplateInfo,
Richard Smithc5b05522012-03-12 07:56:15 +00003391 AccessSpecifier AS, DeclSpecContext DSC) {
Chris Lattnerffbc2712007-01-25 06:05:38 +00003392 // Parse the tag portion of this.
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003393 if (Tok.is(tok::code_completion)) {
3394 // Code completion for an enum name.
Douglas Gregor0be31a22010-07-02 17:43:08 +00003395 Actions.CodeCompleteTag(getCurScope(), DeclSpec::TST_enum);
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +00003396 return cutOffParsing();
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003397 }
John McCallcb432fa2011-07-06 05:58:41 +00003398
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00003399 // If attributes exist after tag, parse them.
3400 ParsedAttributesWithRange attrs(AttrFactory);
3401 MaybeParseGNUAttributes(attrs);
Richard Smith89645bc2013-01-02 12:01:23 +00003402 MaybeParseCXX11Attributes(attrs);
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00003403
3404 // If declspecs exist after tag, parse them.
3405 while (Tok.is(tok::kw___declspec))
3406 ParseMicrosoftDeclSpec(attrs);
3407
Richard Smith0f8ee222012-01-10 01:33:14 +00003408 SourceLocation ScopedEnumKWLoc;
John McCallcb432fa2011-07-06 05:58:41 +00003409 bool IsScopedUsingClassTag = false;
3410
John McCallbeae29a2012-06-23 22:30:04 +00003411 // In C++11, recognize 'enum class' and 'enum struct'.
Richard Trieud0d87b52013-04-23 02:47:36 +00003412 if (Tok.is(tok::kw_class) || Tok.is(tok::kw_struct)) {
3413 Diag(Tok, getLangOpts().CPlusPlus11 ? diag::warn_cxx98_compat_scoped_enum
3414 : diag::ext_scoped_enum);
John McCallcb432fa2011-07-06 05:58:41 +00003415 IsScopedUsingClassTag = Tok.is(tok::kw_class);
Richard Smith0f8ee222012-01-10 01:33:14 +00003416 ScopedEnumKWLoc = ConsumeToken();
Chad Rosierc1183952012-06-26 22:30:43 +00003417
Bill Wendling44426052012-12-20 19:22:21 +00003418 // Attributes are not allowed between these keywords. Diagnose,
John McCallbeae29a2012-06-23 22:30:04 +00003419 // but then just treat them like they appeared in the right place.
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00003420 ProhibitAttributes(attrs);
John McCallbeae29a2012-06-23 22:30:04 +00003421
3422 // They are allowed afterwards, though.
3423 MaybeParseGNUAttributes(attrs);
Richard Smith89645bc2013-01-02 12:01:23 +00003424 MaybeParseCXX11Attributes(attrs);
John McCallbeae29a2012-06-23 22:30:04 +00003425 while (Tok.is(tok::kw___declspec))
3426 ParseMicrosoftDeclSpec(attrs);
John McCallcb432fa2011-07-06 05:58:41 +00003427 }
Richard Smith7d137e32012-03-23 03:33:32 +00003428
John McCall6347b682012-05-07 06:16:58 +00003429 // C++11 [temp.explicit]p12:
3430 // The usual access controls do not apply to names used to specify
3431 // explicit instantiations.
3432 // We extend this to also cover explicit specializations. Note that
3433 // we don't suppress if this turns out to be an elaborated type
3434 // specifier.
3435 bool shouldDelayDiagsInTag =
3436 (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation ||
3437 TemplateInfo.Kind == ParsedTemplateInfo::ExplicitSpecialization);
3438 SuppressAccessChecks diagsFromTag(*this, shouldDelayDiagsInTag);
Richard Smith7d137e32012-03-23 03:33:32 +00003439
Richard Smithbfdb1082012-03-12 08:56:40 +00003440 // Enum definitions should not be parsed in a trailing-return-type.
3441 bool AllowDeclaration = DSC != DSC_trailing;
3442
3443 bool AllowFixedUnderlyingType = AllowDeclaration &&
Richard Smith2bf7fdb2013-01-02 11:42:31 +00003444 (getLangOpts().CPlusPlus11 || getLangOpts().MicrosoftExt ||
Richard Smithbfdb1082012-03-12 08:56:40 +00003445 getLangOpts().ObjC2);
John McCallcb432fa2011-07-06 05:58:41 +00003446
Abramo Bagnarad7548482010-05-19 21:37:53 +00003447 CXXScopeSpec &SS = DS.getTypeSpecScope();
David Blaikiebbafb8a2012-03-11 07:00:24 +00003448 if (getLangOpts().CPlusPlus) {
John McCallcb432fa2011-07-06 05:58:41 +00003449 // "enum foo : bar;" is not a potential typo for "enum foo::bar;"
3450 // if a fixed underlying type is allowed.
3451 ColonProtectionRAIIObject X(*this, AllowFixedUnderlyingType);
Chad Rosierc1183952012-06-26 22:30:43 +00003452
3453 if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(),
Richard Smith1d4b2e12013-04-01 21:43:41 +00003454 /*EnteringContext=*/true))
John McCall1f476a12010-02-26 08:45:28 +00003455 return;
3456
3457 if (SS.isSet() && Tok.isNot(tok::identifier)) {
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00003458 Diag(Tok, diag::err_expected_ident);
3459 if (Tok.isNot(tok::l_brace)) {
3460 // Has no name and is not a definition.
3461 // Skip the rest of this declarator, up until the comma or semicolon.
3462 SkipUntil(tok::comma, true);
3463 return;
3464 }
3465 }
3466 }
Mike Stump11289f42009-09-09 15:08:12 +00003467
Argyrios Kyrtzidisf01fa822008-09-11 00:21:41 +00003468 // Must have either 'enum name' or 'enum {...}'.
Douglas Gregor6cd5ae42011-02-22 02:55:24 +00003469 if (Tok.isNot(tok::identifier) && Tok.isNot(tok::l_brace) &&
Richard Smithbfdb1082012-03-12 08:56:40 +00003470 !(AllowFixedUnderlyingType && Tok.is(tok::colon))) {
Argyrios Kyrtzidisf01fa822008-09-11 00:21:41 +00003471 Diag(Tok, diag::err_expected_ident_lbrace);
Mike Stump11289f42009-09-09 15:08:12 +00003472
Argyrios Kyrtzidisf01fa822008-09-11 00:21:41 +00003473 // Skip the rest of this declarator, up until the comma or semicolon.
3474 SkipUntil(tok::comma, true);
Chris Lattner3b561a32006-08-13 00:12:11 +00003475 return;
Argyrios Kyrtzidisf01fa822008-09-11 00:21:41 +00003476 }
Mike Stump11289f42009-09-09 15:08:12 +00003477
Argyrios Kyrtzidisf01fa822008-09-11 00:21:41 +00003478 // If an identifier is present, consume and remember it.
3479 IdentifierInfo *Name = 0;
3480 SourceLocation NameLoc;
3481 if (Tok.is(tok::identifier)) {
3482 Name = Tok.getIdentifierInfo();
3483 NameLoc = ConsumeToken();
3484 }
Mike Stump11289f42009-09-09 15:08:12 +00003485
Richard Smith0f8ee222012-01-10 01:33:14 +00003486 if (!Name && ScopedEnumKWLoc.isValid()) {
Douglas Gregor0bf31402010-10-08 23:50:27 +00003487 // C++0x 7.2p2: The optional identifier shall not be omitted in the
3488 // declaration of a scoped enumeration.
3489 Diag(Tok, diag::err_scoped_enum_missing_identifier);
Richard Smith0f8ee222012-01-10 01:33:14 +00003490 ScopedEnumKWLoc = SourceLocation();
Abramo Bagnara0e05e242010-12-03 18:54:17 +00003491 IsScopedUsingClassTag = false;
Douglas Gregor0bf31402010-10-08 23:50:27 +00003492 }
3493
John McCall6347b682012-05-07 06:16:58 +00003494 // Okay, end the suppression area. We'll decide whether to emit the
3495 // diagnostics in a second.
3496 if (shouldDelayDiagsInTag)
3497 diagsFromTag.done();
Richard Smith7d137e32012-03-23 03:33:32 +00003498
Douglas Gregor0bf31402010-10-08 23:50:27 +00003499 TypeResult BaseType;
3500
Douglas Gregord1f69f62010-12-01 17:42:47 +00003501 // Parse the fixed underlying type.
Richard Smith200f47c2012-07-02 19:14:01 +00003502 bool CanBeBitfield = getCurScope()->getFlags() & Scope::ClassScope;
Douglas Gregor6cd5ae42011-02-22 02:55:24 +00003503 if (AllowFixedUnderlyingType && Tok.is(tok::colon)) {
Douglas Gregord1f69f62010-12-01 17:42:47 +00003504 bool PossibleBitfield = false;
Richard Smith200f47c2012-07-02 19:14:01 +00003505 if (CanBeBitfield) {
Douglas Gregord1f69f62010-12-01 17:42:47 +00003506 // If we're in class scope, this can either be an enum declaration with
3507 // an underlying type, or a declaration of a bitfield member. We try to
3508 // use a simple disambiguation scheme first to catch the common cases
Chad Rosierc1183952012-06-26 22:30:43 +00003509 // (integer literal, sizeof); if it's still ambiguous, we then consider
3510 // anything that's a simple-type-specifier followed by '(' as an
3511 // expression. This suffices because function types are not valid
Douglas Gregord1f69f62010-12-01 17:42:47 +00003512 // underlying types anyway.
Richard Smith4f605af2012-08-18 00:55:03 +00003513 EnterExpressionEvaluationContext Unevaluated(Actions,
3514 Sema::ConstantEvaluated);
Douglas Gregord1f69f62010-12-01 17:42:47 +00003515 TPResult TPR = isExpressionOrTypeSpecifierSimple(NextToken().getKind());
Chad Rosierc1183952012-06-26 22:30:43 +00003516 // If the next token starts an expression, we know we're parsing a
Douglas Gregord1f69f62010-12-01 17:42:47 +00003517 // bit-field. This is the common case.
3518 if (TPR == TPResult::True())
3519 PossibleBitfield = true;
3520 // If the next token starts a type-specifier-seq, it may be either a
3521 // a fixed underlying type or the start of a function-style cast in C++;
Chad Rosierc1183952012-06-26 22:30:43 +00003522 // lookahead one more token to see if it's obvious that we have a
Douglas Gregord1f69f62010-12-01 17:42:47 +00003523 // fixed underlying type.
Chad Rosierc1183952012-06-26 22:30:43 +00003524 else if (TPR == TPResult::False() &&
Douglas Gregord1f69f62010-12-01 17:42:47 +00003525 GetLookAheadToken(2).getKind() == tok::semi) {
3526 // Consume the ':'.
3527 ConsumeToken();
3528 } else {
3529 // We have the start of a type-specifier-seq, so we have to perform
3530 // tentative parsing to determine whether we have an expression or a
3531 // type.
3532 TentativeParsingAction TPA(*this);
3533
3534 // Consume the ':'.
3535 ConsumeToken();
Richard Smith1e3b0f02012-02-23 01:36:12 +00003536
3537 // If we see a type specifier followed by an open-brace, we have an
3538 // ambiguity between an underlying type and a C++11 braced
3539 // function-style cast. Resolve this by always treating it as an
3540 // underlying type.
3541 // FIXME: The standard is not entirely clear on how to disambiguate in
3542 // this case.
David Blaikiebbafb8a2012-03-11 07:00:24 +00003543 if ((getLangOpts().CPlusPlus &&
Richard Smith1e3b0f02012-02-23 01:36:12 +00003544 isCXXDeclarationSpecifier(TPResult::True()) != TPResult::True()) ||
David Blaikiebbafb8a2012-03-11 07:00:24 +00003545 (!getLangOpts().CPlusPlus && !isDeclarationSpecifier(true))) {
Douglas Gregord1f69f62010-12-01 17:42:47 +00003546 // We'll parse this as a bitfield later.
3547 PossibleBitfield = true;
3548 TPA.Revert();
3549 } else {
3550 // We have a type-specifier-seq.
3551 TPA.Commit();
3552 }
3553 }
3554 } else {
3555 // Consume the ':'.
3556 ConsumeToken();
3557 }
3558
3559 if (!PossibleBitfield) {
3560 SourceRange Range;
3561 BaseType = ParseTypeName(&Range);
Chad Rosierc1183952012-06-26 22:30:43 +00003562
Richard Smith2bf7fdb2013-01-02 11:42:31 +00003563 if (getLangOpts().CPlusPlus11) {
Richard Smith5d164bc2011-10-15 05:09:34 +00003564 Diag(StartLoc, diag::warn_cxx98_compat_enum_fixed_underlying_type);
Eli Friedman0d0355ab2012-11-02 01:34:28 +00003565 } else if (!getLangOpts().ObjC2) {
3566 if (getLangOpts().CPlusPlus)
3567 Diag(StartLoc, diag::ext_cxx11_enum_fixed_underlying_type) << Range;
3568 else
3569 Diag(StartLoc, diag::ext_c_enum_fixed_underlying_type) << Range;
3570 }
Douglas Gregord1f69f62010-12-01 17:42:47 +00003571 }
Douglas Gregor0bf31402010-10-08 23:50:27 +00003572 }
3573
Richard Smith0f8ee222012-01-10 01:33:14 +00003574 // There are four options here. If we have 'friend enum foo;' then this is a
3575 // friend declaration, and cannot have an accompanying definition. If we have
3576 // 'enum foo;', then this is a forward declaration. If we have
3577 // 'enum foo {...' then this is a definition. Otherwise we have something
3578 // like 'enum foo xyz', a reference.
Argyrios Kyrtzidisf01fa822008-09-11 00:21:41 +00003579 //
3580 // This is needed to handle stuff like this right (C99 6.7.2.3p11):
3581 // enum foo {..}; void bar() { enum foo; } <- new foo in bar.
3582 // enum foo {..}; void bar() { enum foo x; } <- use of old foo.
3583 //
John McCallfaf5fb42010-08-26 23:41:50 +00003584 Sema::TagUseKind TUK;
John McCall6347b682012-05-07 06:16:58 +00003585 if (!AllowDeclaration) {
Richard Smithbfdb1082012-03-12 08:56:40 +00003586 TUK = Sema::TUK_Reference;
John McCall6347b682012-05-07 06:16:58 +00003587 } else if (Tok.is(tok::l_brace)) {
3588 if (DS.isFriendSpecified()) {
3589 Diag(Tok.getLocation(), diag::err_friend_decl_defines_type)
3590 << SourceRange(DS.getFriendSpecLoc());
3591 ConsumeBrace();
3592 SkipUntil(tok::r_brace);
3593 TUK = Sema::TUK_Friend;
3594 } else {
3595 TUK = Sema::TUK_Definition;
3596 }
Richard Smith369b9f92012-06-25 21:37:02 +00003597 } else if (DSC != DSC_type_specifier &&
3598 (Tok.is(tok::semi) ||
Richard Smith200f47c2012-07-02 19:14:01 +00003599 (Tok.isAtStartOfLine() &&
3600 !isValidAfterTypeSpecifier(CanBeBitfield)))) {
Richard Smith369b9f92012-06-25 21:37:02 +00003601 TUK = DS.isFriendSpecified() ? Sema::TUK_Friend : Sema::TUK_Declaration;
3602 if (Tok.isNot(tok::semi)) {
3603 // A semicolon was missing after this declaration. Diagnose and recover.
3604 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_tagdecl,
3605 "enum");
3606 PP.EnterToken(Tok);
3607 Tok.setKind(tok::semi);
3608 }
John McCall6347b682012-05-07 06:16:58 +00003609 } else {
John McCallfaf5fb42010-08-26 23:41:50 +00003610 TUK = Sema::TUK_Reference;
John McCall6347b682012-05-07 06:16:58 +00003611 }
3612
3613 // If this is an elaborated type specifier, and we delayed
3614 // diagnostics before, just merge them into the current pool.
3615 if (TUK == Sema::TUK_Reference && shouldDelayDiagsInTag) {
3616 diagsFromTag.redelay();
3617 }
Richard Smith7d137e32012-03-23 03:33:32 +00003618
3619 MultiTemplateParamsArg TParams;
Douglas Gregorcbbf3e32010-05-03 17:48:54 +00003620 if (TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate &&
John McCallfaf5fb42010-08-26 23:41:50 +00003621 TUK != Sema::TUK_Reference) {
Richard Smith2bf7fdb2013-01-02 11:42:31 +00003622 if (!getLangOpts().CPlusPlus11 || !SS.isSet()) {
Richard Smith7d137e32012-03-23 03:33:32 +00003623 // Skip the rest of this declarator, up until the comma or semicolon.
3624 Diag(Tok, diag::err_enum_template);
3625 SkipUntil(tok::comma, true);
3626 return;
3627 }
3628
3629 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation) {
3630 // Enumerations can't be explicitly instantiated.
3631 DS.SetTypeSpecError();
3632 Diag(StartLoc, diag::err_explicit_instantiation_enum);
3633 return;
3634 }
3635
3636 assert(TemplateInfo.TemplateParams && "no template parameters");
3637 TParams = MultiTemplateParamsArg(TemplateInfo.TemplateParams->data(),
3638 TemplateInfo.TemplateParams->size());
Douglas Gregorcbbf3e32010-05-03 17:48:54 +00003639 }
Chad Rosierc1183952012-06-26 22:30:43 +00003640
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00003641 if (TUK == Sema::TUK_Reference)
3642 ProhibitAttributes(attrs);
Richard Smith7d137e32012-03-23 03:33:32 +00003643
Douglas Gregor6cd5ae42011-02-22 02:55:24 +00003644 if (!Name && TUK != Sema::TUK_Definition) {
3645 Diag(Tok, diag::err_enumerator_unnamed_no_def);
Richard Smith7d137e32012-03-23 03:33:32 +00003646
Douglas Gregor6cd5ae42011-02-22 02:55:24 +00003647 // Skip the rest of this declarator, up until the comma or semicolon.
3648 SkipUntil(tok::comma, true);
3649 return;
3650 }
Richard Smith7d137e32012-03-23 03:33:32 +00003651
Douglas Gregord6ab8742009-05-28 23:31:59 +00003652 bool Owned = false;
John McCall7f41d982009-09-11 04:59:25 +00003653 bool IsDependent = false;
Douglas Gregorba41d012010-04-24 16:38:41 +00003654 const char *PrevSpec = 0;
3655 unsigned DiagID;
John McCall48871652010-08-21 09:40:31 +00003656 Decl *TagDecl = Actions.ActOnTag(getCurScope(), DeclSpec::TST_enum, TUK,
John McCall53fa7142010-12-24 02:08:15 +00003657 StartLoc, SS, Name, NameLoc, attrs.getList(),
Richard Smith7d137e32012-03-23 03:33:32 +00003658 AS, DS.getModulePrivateSpecLoc(), TParams,
Richard Smith0f8ee222012-01-10 01:33:14 +00003659 Owned, IsDependent, ScopedEnumKWLoc,
Abramo Bagnara0e05e242010-12-03 18:54:17 +00003660 IsScopedUsingClassTag, BaseType);
Douglas Gregor0bf31402010-10-08 23:50:27 +00003661
Douglas Gregorba41d012010-04-24 16:38:41 +00003662 if (IsDependent) {
Chad Rosierc1183952012-06-26 22:30:43 +00003663 // This enum has a dependent nested-name-specifier. Handle it as a
Douglas Gregorba41d012010-04-24 16:38:41 +00003664 // dependent tag.
3665 if (!Name) {
3666 DS.SetTypeSpecError();
3667 Diag(Tok, diag::err_expected_type_name_after_typename);
3668 return;
3669 }
Chad Rosierc1183952012-06-26 22:30:43 +00003670
Douglas Gregor0be31a22010-07-02 17:43:08 +00003671 TypeResult Type = Actions.ActOnDependentTag(getCurScope(), DeclSpec::TST_enum,
Chad Rosierc1183952012-06-26 22:30:43 +00003672 TUK, SS, Name, StartLoc,
Douglas Gregorba41d012010-04-24 16:38:41 +00003673 NameLoc);
3674 if (Type.isInvalid()) {
3675 DS.SetTypeSpecError();
3676 return;
3677 }
Chad Rosierc1183952012-06-26 22:30:43 +00003678
Abramo Bagnara9875a3c2011-03-16 20:16:18 +00003679 if (DS.SetTypeSpecType(DeclSpec::TST_typename, StartLoc,
3680 NameLoc.isValid() ? NameLoc : StartLoc,
3681 PrevSpec, DiagID, Type.get()))
Douglas Gregorba41d012010-04-24 16:38:41 +00003682 Diag(StartLoc, DiagID) << PrevSpec;
Chad Rosierc1183952012-06-26 22:30:43 +00003683
Douglas Gregorba41d012010-04-24 16:38:41 +00003684 return;
3685 }
Mike Stump11289f42009-09-09 15:08:12 +00003686
John McCall48871652010-08-21 09:40:31 +00003687 if (!TagDecl) {
Chad Rosierc1183952012-06-26 22:30:43 +00003688 // The action failed to produce an enumeration tag. If this is a
Douglas Gregorba41d012010-04-24 16:38:41 +00003689 // definition, consume the entire definition.
Richard Smithbfdb1082012-03-12 08:56:40 +00003690 if (Tok.is(tok::l_brace) && TUK != Sema::TUK_Reference) {
Douglas Gregorba41d012010-04-24 16:38:41 +00003691 ConsumeBrace();
3692 SkipUntil(tok::r_brace);
3693 }
Chad Rosierc1183952012-06-26 22:30:43 +00003694
Douglas Gregorba41d012010-04-24 16:38:41 +00003695 DS.SetTypeSpecError();
3696 return;
3697 }
Richard Smith0f8ee222012-01-10 01:33:14 +00003698
Richard Smith369b9f92012-06-25 21:37:02 +00003699 if (Tok.is(tok::l_brace) && TUK != Sema::TUK_Reference)
John McCall6347b682012-05-07 06:16:58 +00003700 ParseEnumBody(StartLoc, TagDecl);
Mike Stump11289f42009-09-09 15:08:12 +00003701
Abramo Bagnara9875a3c2011-03-16 20:16:18 +00003702 if (DS.SetTypeSpecType(DeclSpec::TST_enum, StartLoc,
3703 NameLoc.isValid() ? NameLoc : StartLoc,
3704 PrevSpec, DiagID, TagDecl, Owned))
John McCall49bfce42009-08-03 20:12:06 +00003705 Diag(StartLoc, DiagID) << PrevSpec;
Chris Lattner3b561a32006-08-13 00:12:11 +00003706}
3707
Chris Lattnerc1915e22007-01-25 07:29:02 +00003708/// ParseEnumBody - Parse a {} enclosed enumerator-list.
3709/// enumerator-list:
3710/// enumerator
3711/// enumerator-list ',' enumerator
3712/// enumerator:
3713/// enumeration-constant
3714/// enumeration-constant '=' constant-expression
3715/// enumeration-constant:
3716/// identifier
3717///
John McCall48871652010-08-21 09:40:31 +00003718void Parser::ParseEnumBody(SourceLocation StartLoc, Decl *EnumDecl) {
Douglas Gregor07665a62009-01-05 19:45:36 +00003719 // Enter the scope of the enum body and start the definition.
3720 ParseScope EnumScope(this, Scope::DeclScope);
Douglas Gregor0be31a22010-07-02 17:43:08 +00003721 Actions.ActOnTagStartDefinition(getCurScope(), EnumDecl);
Douglas Gregor07665a62009-01-05 19:45:36 +00003722
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003723 BalancedDelimiterTracker T(*this, tok::l_brace);
3724 T.consumeOpen();
Mike Stump11289f42009-09-09 15:08:12 +00003725
Chris Lattner37256fb2007-08-27 17:24:30 +00003726 // C does not allow an empty enumerator-list, C++ does [dcl.enum].
David Blaikiebbafb8a2012-03-11 07:00:24 +00003727 if (Tok.is(tok::r_brace) && !getLangOpts().CPlusPlus)
Fariborz Jahanian6e814922010-05-28 22:23:22 +00003728 Diag(Tok, diag::error_empty_enum);
Mike Stump11289f42009-09-09 15:08:12 +00003729
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003730 SmallVector<Decl *, 32> EnumConstantDecls;
Chris Lattnerc1915e22007-01-25 07:29:02 +00003731
John McCall48871652010-08-21 09:40:31 +00003732 Decl *LastEnumConstDecl = 0;
Mike Stump11289f42009-09-09 15:08:12 +00003733
Chris Lattnerc1915e22007-01-25 07:29:02 +00003734 // Parse the enumerator-list.
Chris Lattner76c72282007-10-09 17:33:22 +00003735 while (Tok.is(tok::identifier)) {
Chris Lattnerc1915e22007-01-25 07:29:02 +00003736 IdentifierInfo *Ident = Tok.getIdentifierInfo();
3737 SourceLocation IdentLoc = ConsumeToken();
Mike Stump11289f42009-09-09 15:08:12 +00003738
John McCall811a0f52010-10-22 23:36:17 +00003739 // If attributes exist after the enumerator, parse them.
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00003740 ParsedAttributesWithRange attrs(AttrFactory);
John McCall53fa7142010-12-24 02:08:15 +00003741 MaybeParseGNUAttributes(attrs);
Richard Smith89645bc2013-01-02 12:01:23 +00003742 MaybeParseCXX11Attributes(attrs);
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00003743 ProhibitAttributes(attrs);
John McCall811a0f52010-10-22 23:36:17 +00003744
Chris Lattnerc1915e22007-01-25 07:29:02 +00003745 SourceLocation EqualLoc;
John McCalldadc5752010-08-24 06:29:42 +00003746 ExprResult AssignedVal;
John McCall2ec85372012-05-07 06:16:41 +00003747 ParsingDeclRAIIObject PD(*this, ParsingDeclRAIIObject::NoParent);
Chad Rosierc1183952012-06-26 22:30:43 +00003748
Chris Lattner76c72282007-10-09 17:33:22 +00003749 if (Tok.is(tok::equal)) {
Chris Lattnerc1915e22007-01-25 07:29:02 +00003750 EqualLoc = ConsumeToken();
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00003751 AssignedVal = ParseConstantExpression();
3752 if (AssignedVal.isInvalid())
Chris Lattnerda6c2ce2007-04-27 19:13:15 +00003753 SkipUntil(tok::comma, tok::r_brace, true, true);
Chris Lattnerc1915e22007-01-25 07:29:02 +00003754 }
Mike Stump11289f42009-09-09 15:08:12 +00003755
Chris Lattnerc1915e22007-01-25 07:29:02 +00003756 // Install the enumerator constant into EnumDecl.
John McCall48871652010-08-21 09:40:31 +00003757 Decl *EnumConstDecl = Actions.ActOnEnumConstant(getCurScope(), EnumDecl,
3758 LastEnumConstDecl,
3759 IdentLoc, Ident,
John McCall53fa7142010-12-24 02:08:15 +00003760 attrs.getList(), EqualLoc,
John McCall48871652010-08-21 09:40:31 +00003761 AssignedVal.release());
Fariborz Jahanian329b3512011-12-09 01:15:54 +00003762 PD.complete(EnumConstDecl);
Chad Rosierc1183952012-06-26 22:30:43 +00003763
Chris Lattner4ef40012007-06-11 01:28:17 +00003764 EnumConstantDecls.push_back(EnumConstDecl);
3765 LastEnumConstDecl = EnumConstDecl;
Mike Stump11289f42009-09-09 15:08:12 +00003766
Douglas Gregorce66d022010-09-07 14:51:08 +00003767 if (Tok.is(tok::identifier)) {
3768 // We're missing a comma between enumerators.
3769 SourceLocation Loc = PP.getLocForEndOfToken(PrevTokLocation);
Chad Rosierc1183952012-06-26 22:30:43 +00003770 Diag(Loc, diag::err_enumerator_list_missing_comma)
Douglas Gregorce66d022010-09-07 14:51:08 +00003771 << FixItHint::CreateInsertion(Loc, ", ");
3772 continue;
3773 }
Chad Rosierc1183952012-06-26 22:30:43 +00003774
Chris Lattner76c72282007-10-09 17:33:22 +00003775 if (Tok.isNot(tok::comma))
Chris Lattnerc1915e22007-01-25 07:29:02 +00003776 break;
3777 SourceLocation CommaLoc = ConsumeToken();
Mike Stump11289f42009-09-09 15:08:12 +00003778
Richard Smith5d164bc2011-10-15 05:09:34 +00003779 if (Tok.isNot(tok::identifier)) {
Richard Smith2bf7fdb2013-01-02 11:42:31 +00003780 if (!getLangOpts().C99 && !getLangOpts().CPlusPlus11)
Richard Smith87f5dc52012-07-23 05:45:25 +00003781 Diag(CommaLoc, getLangOpts().CPlusPlus ?
3782 diag::ext_enumerator_list_comma_cxx :
3783 diag::ext_enumerator_list_comma_c)
Richard Smith5d164bc2011-10-15 05:09:34 +00003784 << FixItHint::CreateRemoval(CommaLoc);
Richard Smith2bf7fdb2013-01-02 11:42:31 +00003785 else if (getLangOpts().CPlusPlus11)
Richard Smith5d164bc2011-10-15 05:09:34 +00003786 Diag(CommaLoc, diag::warn_cxx98_compat_enumerator_list_comma)
3787 << FixItHint::CreateRemoval(CommaLoc);
3788 }
Chris Lattnerc1915e22007-01-25 07:29:02 +00003789 }
Mike Stump11289f42009-09-09 15:08:12 +00003790
Chris Lattnerc1915e22007-01-25 07:29:02 +00003791 // Eat the }.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003792 T.consumeClose();
Chris Lattnerc1915e22007-01-25 07:29:02 +00003793
Chris Lattnerc1915e22007-01-25 07:29:02 +00003794 // If attributes exist after the identifier list, parse them.
John McCall084e83d2011-03-24 11:26:52 +00003795 ParsedAttributes attrs(AttrFactory);
John McCall53fa7142010-12-24 02:08:15 +00003796 MaybeParseGNUAttributes(attrs);
Douglas Gregor82ac25e2009-01-08 20:45:30 +00003797
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003798 Actions.ActOnEnumBody(StartLoc, T.getOpenLocation(), T.getCloseLocation(),
Dmitri Gribenkoe5fde992013-04-27 20:23:52 +00003799 EnumDecl, EnumConstantDecls,
3800 getCurScope(),
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003801 attrs.getList());
Mike Stump11289f42009-09-09 15:08:12 +00003802
Douglas Gregor82ac25e2009-01-08 20:45:30 +00003803 EnumScope.Exit();
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00003804 Actions.ActOnTagFinishDefinition(getCurScope(), EnumDecl,
3805 T.getCloseLocation());
Richard Smith369b9f92012-06-25 21:37:02 +00003806
3807 // The next token must be valid after an enum definition. If not, a ';'
3808 // was probably forgotten.
Richard Smith200f47c2012-07-02 19:14:01 +00003809 bool CanBeBitfield = getCurScope()->getFlags() & Scope::ClassScope;
3810 if (!isValidAfterTypeSpecifier(CanBeBitfield)) {
Richard Smith369b9f92012-06-25 21:37:02 +00003811 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_tagdecl, "enum");
3812 // Push this token back into the preprocessor and change our current token
3813 // to ';' so that the rest of the code recovers as though there were an
3814 // ';' after the definition.
3815 PP.EnterToken(Tok);
3816 Tok.setKind(tok::semi);
3817 }
Chris Lattnerc1915e22007-01-25 07:29:02 +00003818}
Chris Lattner3b561a32006-08-13 00:12:11 +00003819
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003820/// isTypeSpecifierQualifier - Return true if the current token could be the
Steve Naroff69e8f9e2008-02-11 23:15:56 +00003821/// start of a type-qualifier-list.
3822bool Parser::isTypeQualifier() const {
3823 switch (Tok.getKind()) {
3824 default: return false;
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00003825
3826 // type-qualifier only in OpenCL
3827 case tok::kw_private:
David Blaikiebbafb8a2012-03-11 07:00:24 +00003828 return getLangOpts().OpenCL;
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00003829
Steve Naroff69e8f9e2008-02-11 23:15:56 +00003830 // type-qualifier
3831 case tok::kw_const:
3832 case tok::kw_volatile:
3833 case tok::kw_restrict:
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00003834 case tok::kw___private:
3835 case tok::kw___local:
3836 case tok::kw___global:
3837 case tok::kw___constant:
3838 case tok::kw___read_only:
3839 case tok::kw___read_write:
3840 case tok::kw___write_only:
Steve Naroff69e8f9e2008-02-11 23:15:56 +00003841 return true;
3842 }
3843}
3844
Chris Lattnerfd48afe2010-02-28 18:18:36 +00003845/// isKnownToBeTypeSpecifier - Return true if we know that the specified token
3846/// is definitely a type-specifier. Return false if it isn't part of a type
3847/// specifier or if we're not sure.
3848bool Parser::isKnownToBeTypeSpecifier(const Token &Tok) const {
3849 switch (Tok.getKind()) {
3850 default: return false;
3851 // type-specifiers
3852 case tok::kw_short:
3853 case tok::kw_long:
Francois Pichet84133e42011-04-28 01:59:37 +00003854 case tok::kw___int64:
Richard Smithf016bbc2012-04-04 06:24:32 +00003855 case tok::kw___int128:
Chris Lattnerfd48afe2010-02-28 18:18:36 +00003856 case tok::kw_signed:
3857 case tok::kw_unsigned:
3858 case tok::kw__Complex:
3859 case tok::kw__Imaginary:
3860 case tok::kw_void:
3861 case tok::kw_char:
3862 case tok::kw_wchar_t:
3863 case tok::kw_char16_t:
3864 case tok::kw_char32_t:
3865 case tok::kw_int:
Anton Korobeynikovf0c267e2011-10-14 23:23:15 +00003866 case tok::kw_half:
Chris Lattnerfd48afe2010-02-28 18:18:36 +00003867 case tok::kw_float:
3868 case tok::kw_double:
3869 case tok::kw_bool:
3870 case tok::kw__Bool:
3871 case tok::kw__Decimal32:
3872 case tok::kw__Decimal64:
3873 case tok::kw__Decimal128:
3874 case tok::kw___vector:
Chad Rosierc1183952012-06-26 22:30:43 +00003875
Guy Benyeid8a08ea2012-12-18 14:38:23 +00003876 // OpenCL specific types:
3877 case tok::kw_image1d_t:
3878 case tok::kw_image1d_array_t:
3879 case tok::kw_image1d_buffer_t:
3880 case tok::kw_image2d_t:
3881 case tok::kw_image2d_array_t:
3882 case tok::kw_image3d_t:
Guy Benyei61054192013-02-07 10:55:47 +00003883 case tok::kw_sampler_t:
Guy Benyei1b4fb3e2013-01-20 12:31:11 +00003884 case tok::kw_event_t:
Guy Benyeid8a08ea2012-12-18 14:38:23 +00003885
Chris Lattnerfd48afe2010-02-28 18:18:36 +00003886 // struct-or-union-specifier (C99) or class-specifier (C++)
3887 case tok::kw_class:
3888 case tok::kw_struct:
Joao Matosdc86f942012-08-31 18:45:21 +00003889 case tok::kw___interface:
Chris Lattnerfd48afe2010-02-28 18:18:36 +00003890 case tok::kw_union:
3891 // enum-specifier
3892 case tok::kw_enum:
Chad Rosierc1183952012-06-26 22:30:43 +00003893
Chris Lattnerfd48afe2010-02-28 18:18:36 +00003894 // typedef-name
3895 case tok::annot_typename:
3896 return true;
3897 }
3898}
3899
Steve Naroff69e8f9e2008-02-11 23:15:56 +00003900/// isTypeSpecifierQualifier - Return true if the current token could be the
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003901/// start of a specifier-qualifier-list.
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00003902bool Parser::isTypeSpecifierQualifier() {
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003903 switch (Tok.getKind()) {
3904 default: return false;
Mike Stump11289f42009-09-09 15:08:12 +00003905
Chris Lattner020bab92009-01-04 23:41:41 +00003906 case tok::identifier: // foo::bar
John Thompson22334602010-02-05 00:12:22 +00003907 if (TryAltiVecVectorToken())
3908 return true;
3909 // Fall through.
Douglas Gregor333489b2009-03-27 23:10:48 +00003910 case tok::kw_typename: // typename T::type
Chris Lattner020bab92009-01-04 23:41:41 +00003911 // Annotate typenames and C++ scope specifiers. If we get one, just
3912 // recurse to handle whatever we get.
3913 if (TryAnnotateTypeOrScopeToken())
John McCall1f476a12010-02-26 08:45:28 +00003914 return true;
3915 if (Tok.is(tok::identifier))
3916 return false;
3917 return isTypeSpecifierQualifier();
Douglas Gregor333489b2009-03-27 23:10:48 +00003918
Chris Lattner020bab92009-01-04 23:41:41 +00003919 case tok::coloncolon: // ::foo::bar
3920 if (NextToken().is(tok::kw_new) || // ::new
3921 NextToken().is(tok::kw_delete)) // ::delete
3922 return false;
3923
Chris Lattner020bab92009-01-04 23:41:41 +00003924 if (TryAnnotateTypeOrScopeToken())
John McCall1f476a12010-02-26 08:45:28 +00003925 return true;
3926 return isTypeSpecifierQualifier();
Mike Stump11289f42009-09-09 15:08:12 +00003927
Chris Lattnere37e2332006-08-15 04:50:22 +00003928 // GNU attributes support.
3929 case tok::kw___attribute:
Steve Naroffad373bd2007-07-31 12:34:36 +00003930 // GNU typeof support.
3931 case tok::kw_typeof:
Mike Stump11289f42009-09-09 15:08:12 +00003932
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003933 // type-specifiers
3934 case tok::kw_short:
3935 case tok::kw_long:
Francois Pichet84133e42011-04-28 01:59:37 +00003936 case tok::kw___int64:
Richard Smithf016bbc2012-04-04 06:24:32 +00003937 case tok::kw___int128:
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003938 case tok::kw_signed:
3939 case tok::kw_unsigned:
3940 case tok::kw__Complex:
3941 case tok::kw__Imaginary:
3942 case tok::kw_void:
3943 case tok::kw_char:
Argyrios Kyrtzidis40e9e482008-08-09 16:51:54 +00003944 case tok::kw_wchar_t:
Alisdair Mereditha9ad47d2009-07-14 06:30:34 +00003945 case tok::kw_char16_t:
3946 case tok::kw_char32_t:
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003947 case tok::kw_int:
Anton Korobeynikovf0c267e2011-10-14 23:23:15 +00003948 case tok::kw_half:
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003949 case tok::kw_float:
3950 case tok::kw_double:
Chris Lattnerbb31a422007-11-15 05:25:19 +00003951 case tok::kw_bool:
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003952 case tok::kw__Bool:
3953 case tok::kw__Decimal32:
3954 case tok::kw__Decimal64:
3955 case tok::kw__Decimal128:
John Thompson22334602010-02-05 00:12:22 +00003956 case tok::kw___vector:
Mike Stump11289f42009-09-09 15:08:12 +00003957
Guy Benyeid8a08ea2012-12-18 14:38:23 +00003958 // OpenCL specific types:
3959 case tok::kw_image1d_t:
3960 case tok::kw_image1d_array_t:
3961 case tok::kw_image1d_buffer_t:
3962 case tok::kw_image2d_t:
3963 case tok::kw_image2d_array_t:
3964 case tok::kw_image3d_t:
Guy Benyei61054192013-02-07 10:55:47 +00003965 case tok::kw_sampler_t:
Guy Benyei1b4fb3e2013-01-20 12:31:11 +00003966 case tok::kw_event_t:
Guy Benyeid8a08ea2012-12-18 14:38:23 +00003967
Chris Lattner861a2262008-04-13 18:59:07 +00003968 // struct-or-union-specifier (C99) or class-specifier (C++)
3969 case tok::kw_class:
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003970 case tok::kw_struct:
Joao Matosdc86f942012-08-31 18:45:21 +00003971 case tok::kw___interface:
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003972 case tok::kw_union:
3973 // enum-specifier
3974 case tok::kw_enum:
Mike Stump11289f42009-09-09 15:08:12 +00003975
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003976 // type-qualifier
3977 case tok::kw_const:
3978 case tok::kw_volatile:
3979 case tok::kw_restrict:
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00003980
John McCallea0a39e2012-11-14 00:49:39 +00003981 // Debugger support.
3982 case tok::kw___unknown_anytype:
3983
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00003984 // typedef-name
Chris Lattnera8a3f732009-01-06 05:06:21 +00003985 case tok::annot_typename:
Chris Lattnerf5fbd792006-08-10 23:56:11 +00003986 return true;
Mike Stump11289f42009-09-09 15:08:12 +00003987
Chris Lattner409bf7d2008-10-20 00:25:30 +00003988 // GNU ObjC bizarre protocol extension: <proto1,proto2> with implicit 'id'.
3989 case tok::less:
David Blaikiebbafb8a2012-03-11 07:00:24 +00003990 return getLangOpts().ObjC1;
Mike Stump11289f42009-09-09 15:08:12 +00003991
Steve Naroff44ac7772008-12-25 14:16:32 +00003992 case tok::kw___cdecl:
3993 case tok::kw___stdcall:
3994 case tok::kw___fastcall:
Douglas Gregora941dca2010-05-18 16:57:00 +00003995 case tok::kw___thiscall:
Eli Friedman53339e02009-06-08 23:27:34 +00003996 case tok::kw___w64:
3997 case tok::kw___ptr64:
Francois Pichetf2fb4112011-08-25 00:36:46 +00003998 case tok::kw___ptr32:
Dawn Perchik335e16b2010-09-03 01:29:35 +00003999 case tok::kw___pascal:
Francois Pichet17ed0202011-08-18 09:59:55 +00004000 case tok::kw___unaligned:
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00004001
4002 case tok::kw___private:
4003 case tok::kw___local:
4004 case tok::kw___global:
4005 case tok::kw___constant:
4006 case tok::kw___read_only:
4007 case tok::kw___read_write:
4008 case tok::kw___write_only:
4009
Eli Friedman53339e02009-06-08 23:27:34 +00004010 return true;
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00004011
4012 case tok::kw_private:
David Blaikiebbafb8a2012-03-11 07:00:24 +00004013 return getLangOpts().OpenCL;
Eli Friedman0dfb8892011-10-06 23:00:33 +00004014
Richard Smith8e1ac332013-03-28 01:55:44 +00004015 // C11 _Atomic
Eli Friedman0dfb8892011-10-06 23:00:33 +00004016 case tok::kw__Atomic:
4017 return true;
Chris Lattnerf5fbd792006-08-10 23:56:11 +00004018 }
4019}
4020
Chris Lattneracd58a32006-08-06 17:24:14 +00004021/// isDeclarationSpecifier() - Return true if the current token is part of a
4022/// declaration specifier.
Douglas Gregorabf4a3e2010-09-16 01:51:54 +00004023///
4024/// \param DisambiguatingWithExpression True to indicate that the purpose of
4025/// this check is to disambiguate between an expression and a declaration.
4026bool Parser::isDeclarationSpecifier(bool DisambiguatingWithExpression) {
Chris Lattneracd58a32006-08-06 17:24:14 +00004027 switch (Tok.getKind()) {
4028 default: return false;
Mike Stump11289f42009-09-09 15:08:12 +00004029
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00004030 case tok::kw_private:
David Blaikiebbafb8a2012-03-11 07:00:24 +00004031 return getLangOpts().OpenCL;
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00004032
Chris Lattner020bab92009-01-04 23:41:41 +00004033 case tok::identifier: // foo::bar
Steve Naroff9527bbf2009-03-09 21:12:44 +00004034 // Unfortunate hack to support "Class.factoryMethod" notation.
David Blaikiebbafb8a2012-03-11 07:00:24 +00004035 if (getLangOpts().ObjC1 && NextToken().is(tok::period))
Steve Naroff9527bbf2009-03-09 21:12:44 +00004036 return false;
John Thompson22334602010-02-05 00:12:22 +00004037 if (TryAltiVecVectorToken())
4038 return true;
4039 // Fall through.
David Blaikie15a430a2011-12-04 05:04:18 +00004040 case tok::kw_decltype: // decltype(T())::type
Douglas Gregor333489b2009-03-27 23:10:48 +00004041 case tok::kw_typename: // typename T::type
Chris Lattner020bab92009-01-04 23:41:41 +00004042 // Annotate typenames and C++ scope specifiers. If we get one, just
4043 // recurse to handle whatever we get.
4044 if (TryAnnotateTypeOrScopeToken())
John McCall1f476a12010-02-26 08:45:28 +00004045 return true;
4046 if (Tok.is(tok::identifier))
4047 return false;
Chad Rosierc1183952012-06-26 22:30:43 +00004048
Douglas Gregorabf4a3e2010-09-16 01:51:54 +00004049 // If we're in Objective-C and we have an Objective-C class type followed
Chad Rosierc1183952012-06-26 22:30:43 +00004050 // by an identifier and then either ':' or ']', in a place where an
Douglas Gregorabf4a3e2010-09-16 01:51:54 +00004051 // expression is permitted, then this is probably a class message send
4052 // missing the initial '['. In this case, we won't consider this to be
4053 // the start of a declaration.
Chad Rosierc1183952012-06-26 22:30:43 +00004054 if (DisambiguatingWithExpression &&
Douglas Gregorabf4a3e2010-09-16 01:51:54 +00004055 isStartOfObjCClassMessageMissingOpenBracket())
4056 return false;
Chad Rosierc1183952012-06-26 22:30:43 +00004057
John McCall1f476a12010-02-26 08:45:28 +00004058 return isDeclarationSpecifier();
4059
Chris Lattner020bab92009-01-04 23:41:41 +00004060 case tok::coloncolon: // ::foo::bar
4061 if (NextToken().is(tok::kw_new) || // ::new
4062 NextToken().is(tok::kw_delete)) // ::delete
4063 return false;
Mike Stump11289f42009-09-09 15:08:12 +00004064
Chris Lattner020bab92009-01-04 23:41:41 +00004065 // Annotate typenames and C++ scope specifiers. If we get one, just
4066 // recurse to handle whatever we get.
4067 if (TryAnnotateTypeOrScopeToken())
John McCall1f476a12010-02-26 08:45:28 +00004068 return true;
4069 return isDeclarationSpecifier();
Mike Stump11289f42009-09-09 15:08:12 +00004070
Chris Lattneracd58a32006-08-06 17:24:14 +00004071 // storage-class-specifier
4072 case tok::kw_typedef:
4073 case tok::kw_extern:
Steve Naroff2050b0d2007-12-18 00:16:02 +00004074 case tok::kw___private_extern__:
Chris Lattneracd58a32006-08-06 17:24:14 +00004075 case tok::kw_static:
4076 case tok::kw_auto:
4077 case tok::kw_register:
4078 case tok::kw___thread:
Richard Smithb4a9e862013-04-12 22:46:28 +00004079 case tok::kw_thread_local:
4080 case tok::kw__Thread_local:
Mike Stump11289f42009-09-09 15:08:12 +00004081
Douglas Gregor26701a42011-09-09 02:06:17 +00004082 // Modules
4083 case tok::kw___module_private__:
Chad Rosierc1183952012-06-26 22:30:43 +00004084
John McCallea0a39e2012-11-14 00:49:39 +00004085 // Debugger support
4086 case tok::kw___unknown_anytype:
4087
Chris Lattneracd58a32006-08-06 17:24:14 +00004088 // type-specifiers
4089 case tok::kw_short:
4090 case tok::kw_long:
Francois Pichet84133e42011-04-28 01:59:37 +00004091 case tok::kw___int64:
Richard Smithf016bbc2012-04-04 06:24:32 +00004092 case tok::kw___int128:
Chris Lattneracd58a32006-08-06 17:24:14 +00004093 case tok::kw_signed:
4094 case tok::kw_unsigned:
4095 case tok::kw__Complex:
4096 case tok::kw__Imaginary:
4097 case tok::kw_void:
4098 case tok::kw_char:
Argyrios Kyrtzidis40e9e482008-08-09 16:51:54 +00004099 case tok::kw_wchar_t:
Alisdair Mereditha9ad47d2009-07-14 06:30:34 +00004100 case tok::kw_char16_t:
4101 case tok::kw_char32_t:
4102
Chris Lattneracd58a32006-08-06 17:24:14 +00004103 case tok::kw_int:
Anton Korobeynikovf0c267e2011-10-14 23:23:15 +00004104 case tok::kw_half:
Chris Lattneracd58a32006-08-06 17:24:14 +00004105 case tok::kw_float:
4106 case tok::kw_double:
Chris Lattnerbb31a422007-11-15 05:25:19 +00004107 case tok::kw_bool:
Chris Lattneracd58a32006-08-06 17:24:14 +00004108 case tok::kw__Bool:
4109 case tok::kw__Decimal32:
4110 case tok::kw__Decimal64:
4111 case tok::kw__Decimal128:
John Thompson22334602010-02-05 00:12:22 +00004112 case tok::kw___vector:
Mike Stump11289f42009-09-09 15:08:12 +00004113
Guy Benyeid8a08ea2012-12-18 14:38:23 +00004114 // OpenCL specific types:
4115 case tok::kw_image1d_t:
4116 case tok::kw_image1d_array_t:
4117 case tok::kw_image1d_buffer_t:
4118 case tok::kw_image2d_t:
4119 case tok::kw_image2d_array_t:
4120 case tok::kw_image3d_t:
Guy Benyei61054192013-02-07 10:55:47 +00004121 case tok::kw_sampler_t:
Guy Benyei1b4fb3e2013-01-20 12:31:11 +00004122 case tok::kw_event_t:
Guy Benyeid8a08ea2012-12-18 14:38:23 +00004123
Chris Lattner861a2262008-04-13 18:59:07 +00004124 // struct-or-union-specifier (C99) or class-specifier (C++)
4125 case tok::kw_class:
Chris Lattneracd58a32006-08-06 17:24:14 +00004126 case tok::kw_struct:
4127 case tok::kw_union:
Joao Matosdc86f942012-08-31 18:45:21 +00004128 case tok::kw___interface:
Chris Lattneracd58a32006-08-06 17:24:14 +00004129 // enum-specifier
4130 case tok::kw_enum:
Mike Stump11289f42009-09-09 15:08:12 +00004131
Chris Lattneracd58a32006-08-06 17:24:14 +00004132 // type-qualifier
4133 case tok::kw_const:
4134 case tok::kw_volatile:
4135 case tok::kw_restrict:
Steve Naroffad373bd2007-07-31 12:34:36 +00004136
Chris Lattneracd58a32006-08-06 17:24:14 +00004137 // function-specifier
4138 case tok::kw_inline:
Douglas Gregor61956c42008-10-31 09:07:45 +00004139 case tok::kw_virtual:
4140 case tok::kw_explicit:
Richard Smith0015f092013-01-17 22:16:11 +00004141 case tok::kw__Noreturn:
Chris Lattner7b20dc72007-08-09 16:40:21 +00004142
Richard Smith1dba27c2013-01-29 09:02:09 +00004143 // alignment-specifier
4144 case tok::kw__Alignas:
4145
Richard Smithd16fe122012-10-25 00:00:53 +00004146 // friend keyword.
4147 case tok::kw_friend:
4148
Peter Collingbourne3d9cbdc2011-04-15 00:35:57 +00004149 // static_assert-declaration
4150 case tok::kw__Static_assert:
4151
Chris Lattner599e47e2007-08-09 17:01:07 +00004152 // GNU typeof support.
4153 case tok::kw_typeof:
Mike Stump11289f42009-09-09 15:08:12 +00004154
Chris Lattner599e47e2007-08-09 17:01:07 +00004155 // GNU attributes.
Chris Lattner7b20dc72007-08-09 16:40:21 +00004156 case tok::kw___attribute:
Mike Stump11289f42009-09-09 15:08:12 +00004157
Richard Smithd16fe122012-10-25 00:00:53 +00004158 // C++11 decltype and constexpr.
David Blaikie15a430a2011-12-04 05:04:18 +00004159 case tok::annot_decltype:
Richard Smithd16fe122012-10-25 00:00:53 +00004160 case tok::kw_constexpr:
Francois Pichete878cb62011-06-19 08:02:06 +00004161
Richard Smith8e1ac332013-03-28 01:55:44 +00004162 // C11 _Atomic
Eli Friedman0dfb8892011-10-06 23:00:33 +00004163 case tok::kw__Atomic:
4164 return true;
4165
Chris Lattner8b2ec162008-07-26 03:38:44 +00004166 // GNU ObjC bizarre protocol extension: <proto1,proto2> with implicit 'id'.
4167 case tok::less:
David Blaikiebbafb8a2012-03-11 07:00:24 +00004168 return getLangOpts().ObjC1;
Mike Stump11289f42009-09-09 15:08:12 +00004169
Douglas Gregor19b7acf2011-04-27 05:41:15 +00004170 // typedef-name
4171 case tok::annot_typename:
4172 return !DisambiguatingWithExpression ||
4173 !isStartOfObjCClassMessageMissingOpenBracket();
Chad Rosierc1183952012-06-26 22:30:43 +00004174
Steve Narofff192fab2009-01-06 19:34:12 +00004175 case tok::kw___declspec:
Steve Naroff44ac7772008-12-25 14:16:32 +00004176 case tok::kw___cdecl:
4177 case tok::kw___stdcall:
4178 case tok::kw___fastcall:
Douglas Gregora941dca2010-05-18 16:57:00 +00004179 case tok::kw___thiscall:
Eli Friedman53339e02009-06-08 23:27:34 +00004180 case tok::kw___w64:
Aaron Ballman317a77f2013-05-22 23:25:32 +00004181 case tok::kw___sptr:
4182 case tok::kw___uptr:
Eli Friedman53339e02009-06-08 23:27:34 +00004183 case tok::kw___ptr64:
Francois Pichetf2fb4112011-08-25 00:36:46 +00004184 case tok::kw___ptr32:
Eli Friedman53339e02009-06-08 23:27:34 +00004185 case tok::kw___forceinline:
Dawn Perchik335e16b2010-09-03 01:29:35 +00004186 case tok::kw___pascal:
Francois Pichet17ed0202011-08-18 09:59:55 +00004187 case tok::kw___unaligned:
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00004188
4189 case tok::kw___private:
4190 case tok::kw___local:
4191 case tok::kw___global:
4192 case tok::kw___constant:
4193 case tok::kw___read_only:
4194 case tok::kw___read_write:
4195 case tok::kw___write_only:
4196
Eli Friedman53339e02009-06-08 23:27:34 +00004197 return true;
Chris Lattneracd58a32006-08-06 17:24:14 +00004198 }
4199}
4200
Douglas Gregor9de54ea2010-01-13 17:31:36 +00004201bool Parser::isConstructorDeclarator() {
4202 TentativeParsingAction TPA(*this);
4203
4204 // Parse the C++ scope specifier.
4205 CXXScopeSpec SS;
Chad Rosierc1183952012-06-26 22:30:43 +00004206 if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(),
Douglas Gregordf593fb2011-11-07 17:33:42 +00004207 /*EnteringContext=*/true)) {
John McCall1f476a12010-02-26 08:45:28 +00004208 TPA.Revert();
4209 return false;
4210 }
Douglas Gregor9de54ea2010-01-13 17:31:36 +00004211
4212 // Parse the constructor name.
4213 if (Tok.is(tok::identifier) || Tok.is(tok::annot_template_id)) {
4214 // We already know that we have a constructor name; just consume
4215 // the token.
4216 ConsumeToken();
4217 } else {
4218 TPA.Revert();
4219 return false;
4220 }
4221
Richard Smith43f340f2012-03-27 23:05:05 +00004222 // Current class name must be followed by a left parenthesis.
Douglas Gregor9de54ea2010-01-13 17:31:36 +00004223 if (Tok.isNot(tok::l_paren)) {
4224 TPA.Revert();
4225 return false;
4226 }
4227 ConsumeParen();
4228
Richard Smith43f340f2012-03-27 23:05:05 +00004229 // A right parenthesis, or ellipsis followed by a right parenthesis signals
4230 // that we have a constructor.
4231 if (Tok.is(tok::r_paren) ||
4232 (Tok.is(tok::ellipsis) && NextToken().is(tok::r_paren))) {
Douglas Gregor9de54ea2010-01-13 17:31:36 +00004233 TPA.Revert();
4234 return true;
4235 }
4236
Richard Smithf2163662013-09-06 00:12:20 +00004237 // A C++11 attribute here signals that we have a constructor, and is an
4238 // attribute on the first constructor parameter.
4239 if (getLangOpts().CPlusPlus11 &&
4240 isCXX11AttributeSpecifier(/*Disambiguate*/ false,
4241 /*OuterMightBeMessageSend*/ true)) {
4242 TPA.Revert();
4243 return true;
4244 }
4245
Douglas Gregor9de54ea2010-01-13 17:31:36 +00004246 // If we need to, enter the specified scope.
4247 DeclaratorScopeObj DeclScopeObj(*this, SS);
Douglas Gregor0be31a22010-07-02 17:43:08 +00004248 if (SS.isSet() && Actions.ShouldEnterDeclaratorScope(getCurScope(), SS))
Douglas Gregor9de54ea2010-01-13 17:31:36 +00004249 DeclScopeObj.EnterDeclaratorScope();
4250
Francois Pichet79f3a872011-01-31 04:54:32 +00004251 // Optionally skip Microsoft attributes.
John McCall084e83d2011-03-24 11:26:52 +00004252 ParsedAttributes Attrs(AttrFactory);
Francois Pichet79f3a872011-01-31 04:54:32 +00004253 MaybeParseMicrosoftAttributes(Attrs);
4254
Douglas Gregor9de54ea2010-01-13 17:31:36 +00004255 // Check whether the next token(s) are part of a declaration
4256 // specifier, in which case we have the start of a parameter and,
4257 // therefore, we know that this is a constructor.
Richard Smithefd009d2012-03-27 00:56:56 +00004258 bool IsConstructor = false;
4259 if (isDeclarationSpecifier())
4260 IsConstructor = true;
4261 else if (Tok.is(tok::identifier) ||
4262 (Tok.is(tok::annot_cxxscope) && NextToken().is(tok::identifier))) {
4263 // We've seen "C ( X" or "C ( X::Y", but "X" / "X::Y" is not a type.
4264 // This might be a parenthesized member name, but is more likely to
4265 // be a constructor declaration with an invalid argument type. Keep
4266 // looking.
4267 if (Tok.is(tok::annot_cxxscope))
4268 ConsumeToken();
4269 ConsumeToken();
4270
4271 // If this is not a constructor, we must be parsing a declarator,
Richard Smith1453e312012-03-27 01:42:32 +00004272 // which must have one of the following syntactic forms (see the
4273 // grammar extract at the start of ParseDirectDeclarator):
Richard Smithefd009d2012-03-27 00:56:56 +00004274 switch (Tok.getKind()) {
4275 case tok::l_paren:
4276 // C(X ( int));
4277 case tok::l_square:
4278 // C(X [ 5]);
4279 // C(X [ [attribute]]);
4280 case tok::coloncolon:
4281 // C(X :: Y);
4282 // C(X :: *p);
4283 case tok::r_paren:
4284 // C(X )
4285 // Assume this isn't a constructor, rather than assuming it's a
4286 // constructor with an unnamed parameter of an ill-formed type.
4287 break;
4288
4289 default:
4290 IsConstructor = true;
4291 break;
4292 }
4293 }
4294
Douglas Gregor9de54ea2010-01-13 17:31:36 +00004295 TPA.Revert();
4296 return IsConstructor;
4297}
Chris Lattnerb9093cd2006-08-04 04:39:53 +00004298
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004299/// ParseTypeQualifierListOpt
Dawn Perchik335e16b2010-09-03 01:29:35 +00004300/// type-qualifier-list: [C99 6.7.5]
4301/// type-qualifier
Chad Rosierc1183952012-06-26 22:30:43 +00004302/// [vendor] attributes
Dawn Perchik335e16b2010-09-03 01:29:35 +00004303/// [ only if VendorAttributesAllowed=true ]
4304/// type-qualifier-list type-qualifier
Chad Rosierc1183952012-06-26 22:30:43 +00004305/// [vendor] type-qualifier-list attributes
Dawn Perchik335e16b2010-09-03 01:29:35 +00004306/// [ only if VendorAttributesAllowed=true ]
4307/// [C++0x] attribute-specifier[opt] is allowed before cv-qualifier-seq
Richard Smith89645bc2013-01-02 12:01:23 +00004308/// [ only if CXX11AttributesAllowed=true ]
Dawn Perchik335e16b2010-09-03 01:29:35 +00004309/// Note: vendor can be GNU, MS, etc.
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004310///
Dawn Perchik335e16b2010-09-03 01:29:35 +00004311void Parser::ParseTypeQualifierListOpt(DeclSpec &DS,
4312 bool VendorAttributesAllowed,
Richard Smith8e1ac332013-03-28 01:55:44 +00004313 bool CXX11AttributesAllowed,
4314 bool AtomicAllowed) {
Richard Smith2bf7fdb2013-01-02 11:42:31 +00004315 if (getLangOpts().CPlusPlus11 && CXX11AttributesAllowed &&
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004316 isCXX11AttributeSpecifier()) {
John McCall084e83d2011-03-24 11:26:52 +00004317 ParsedAttributesWithRange attrs(AttrFactory);
Richard Smith3dff2512012-04-10 03:25:07 +00004318 ParseCXX11Attributes(attrs);
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004319 DS.takeAttributesFrom(attrs);
Alexis Hunt96d5c762009-11-21 08:43:09 +00004320 }
Abramo Bagnaraf2a79d92011-03-12 11:17:06 +00004321
4322 SourceLocation EndLoc;
4323
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004324 while (1) {
John McCall49bfce42009-08-03 20:12:06 +00004325 bool isInvalid = false;
Chris Lattnerd9c3c592006-08-05 06:26:47 +00004326 const char *PrevSpec = 0;
John McCall49bfce42009-08-03 20:12:06 +00004327 unsigned DiagID = 0;
Chris Lattner60809f52006-11-28 05:18:46 +00004328 SourceLocation Loc = Tok.getLocation();
Chris Lattnerd9c3c592006-08-05 06:26:47 +00004329
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004330 switch (Tok.getKind()) {
Douglas Gregor28c78432010-08-27 17:35:51 +00004331 case tok::code_completion:
4332 Actions.CodeCompleteTypeQualifiers(DS);
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +00004333 return cutOffParsing();
Chad Rosierc1183952012-06-26 22:30:43 +00004334
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004335 case tok::kw_const:
John McCall49bfce42009-08-03 20:12:06 +00004336 isInvalid = DS.SetTypeQual(DeclSpec::TQ_const , Loc, PrevSpec, DiagID,
Richard Smith87e79512012-10-17 23:31:46 +00004337 getLangOpts());
Chris Lattnerd9c3c592006-08-05 06:26:47 +00004338 break;
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004339 case tok::kw_volatile:
John McCall49bfce42009-08-03 20:12:06 +00004340 isInvalid = DS.SetTypeQual(DeclSpec::TQ_volatile, Loc, PrevSpec, DiagID,
Richard Smith87e79512012-10-17 23:31:46 +00004341 getLangOpts());
Chris Lattnerd9c3c592006-08-05 06:26:47 +00004342 break;
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004343 case tok::kw_restrict:
John McCall49bfce42009-08-03 20:12:06 +00004344 isInvalid = DS.SetTypeQual(DeclSpec::TQ_restrict, Loc, PrevSpec, DiagID,
Richard Smith87e79512012-10-17 23:31:46 +00004345 getLangOpts());
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004346 break;
Richard Smith8e1ac332013-03-28 01:55:44 +00004347 case tok::kw__Atomic:
4348 if (!AtomicAllowed)
4349 goto DoneWithTypeQuals;
4350 isInvalid = DS.SetTypeQual(DeclSpec::TQ_atomic, Loc, PrevSpec, DiagID,
4351 getLangOpts());
4352 break;
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00004353
4354 // OpenCL qualifiers:
Chad Rosierc1183952012-06-26 22:30:43 +00004355 case tok::kw_private:
David Blaikiebbafb8a2012-03-11 07:00:24 +00004356 if (!getLangOpts().OpenCL)
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00004357 goto DoneWithTypeQuals;
4358 case tok::kw___private:
4359 case tok::kw___global:
4360 case tok::kw___local:
4361 case tok::kw___constant:
4362 case tok::kw___read_only:
4363 case tok::kw___write_only:
4364 case tok::kw___read_write:
4365 ParseOpenCLQualifiers(DS);
4366 break;
4367
Aaron Ballman317a77f2013-05-22 23:25:32 +00004368 case tok::kw___sptr:
4369 case tok::kw___uptr:
Eli Friedman53339e02009-06-08 23:27:34 +00004370 case tok::kw___w64:
Steve Narofff9c29d42008-12-25 14:41:26 +00004371 case tok::kw___ptr64:
Francois Pichetf2fb4112011-08-25 00:36:46 +00004372 case tok::kw___ptr32:
Steve Naroff44ac7772008-12-25 14:16:32 +00004373 case tok::kw___cdecl:
4374 case tok::kw___stdcall:
4375 case tok::kw___fastcall:
Douglas Gregora941dca2010-05-18 16:57:00 +00004376 case tok::kw___thiscall:
Francois Pichet17ed0202011-08-18 09:59:55 +00004377 case tok::kw___unaligned:
Dawn Perchik335e16b2010-09-03 01:29:35 +00004378 if (VendorAttributesAllowed) {
John McCall53fa7142010-12-24 02:08:15 +00004379 ParseMicrosoftTypeAttributes(DS.getAttributes());
Eli Friedman53339e02009-06-08 23:27:34 +00004380 continue;
4381 }
4382 goto DoneWithTypeQuals;
Dawn Perchik335e16b2010-09-03 01:29:35 +00004383 case tok::kw___pascal:
4384 if (VendorAttributesAllowed) {
John McCall53fa7142010-12-24 02:08:15 +00004385 ParseBorlandTypeAttributes(DS.getAttributes());
Dawn Perchik335e16b2010-09-03 01:29:35 +00004386 continue;
4387 }
4388 goto DoneWithTypeQuals;
Chris Lattnere37e2332006-08-15 04:50:22 +00004389 case tok::kw___attribute:
Dawn Perchik335e16b2010-09-03 01:29:35 +00004390 if (VendorAttributesAllowed) {
John McCall53fa7142010-12-24 02:08:15 +00004391 ParseGNUAttributes(DS.getAttributes());
Chris Lattnercf0bab22008-12-18 07:02:59 +00004392 continue; // do *not* consume the next token!
4393 }
4394 // otherwise, FALL THROUGH!
4395 default:
Steve Naroff44ac7772008-12-25 14:16:32 +00004396 DoneWithTypeQuals:
Chris Lattnercf0bab22008-12-18 07:02:59 +00004397 // If this is not a type-qualifier token, we're done reading type
4398 // qualifiers. First verify that DeclSpec's are consistent.
Douglas Gregore3e01a22009-04-01 22:41:11 +00004399 DS.Finish(Diags, PP);
Abramo Bagnaraf2a79d92011-03-12 11:17:06 +00004400 if (EndLoc.isValid())
4401 DS.SetRangeEnd(EndLoc);
Chris Lattnercf0bab22008-12-18 07:02:59 +00004402 return;
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004403 }
Chris Lattnerb6ec4e72008-12-18 06:50:14 +00004404
Chris Lattnerd9c3c592006-08-05 06:26:47 +00004405 // If the specifier combination wasn't legal, issue a diagnostic.
4406 if (isInvalid) {
4407 assert(PrevSpec && "Method did not return previous specifier!");
Chris Lattner6d29c102008-11-18 07:48:38 +00004408 Diag(Tok, DiagID) << PrevSpec;
Chris Lattnerd9c3c592006-08-05 06:26:47 +00004409 }
Abramo Bagnaraf2a79d92011-03-12 11:17:06 +00004410 EndLoc = ConsumeToken();
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004411 }
4412}
4413
Chris Lattnerd5d0a6c2006-08-07 00:58:14 +00004414
4415/// ParseDeclarator - Parse and verify a newly-initialized declarator.
4416///
4417void Parser::ParseDeclarator(Declarator &D) {
4418 /// This implements the 'declarator' production in the C grammar, then checks
4419 /// for well-formedness and issues diagnostics.
Sebastian Redlbd150f42008-11-21 19:14:01 +00004420 ParseDeclaratorInternal(D, &Parser::ParseDirectDeclarator);
Chris Lattnerd5d0a6c2006-08-07 00:58:14 +00004421}
4422
Richard Smith0efa75c2012-03-29 01:16:42 +00004423static bool isPtrOperatorToken(tok::TokenKind Kind, const LangOptions &Lang) {
4424 if (Kind == tok::star || Kind == tok::caret)
4425 return true;
4426
4427 // We parse rvalue refs in C++03, because otherwise the errors are scary.
4428 if (!Lang.CPlusPlus)
4429 return false;
4430
4431 return Kind == tok::amp || Kind == tok::ampamp;
4432}
4433
Sebastian Redlbd150f42008-11-21 19:14:01 +00004434/// ParseDeclaratorInternal - Parse a C or C++ declarator. The direct-declarator
4435/// is parsed by the function passed to it. Pass null, and the direct-declarator
4436/// isn't parsed at all, making this function effectively parse the C++
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004437/// ptr-operator production.
4438///
Richard Smith09f76ee2011-10-19 21:33:05 +00004439/// If the grammar of this construct is extended, matching changes must also be
Richard Smith1453e312012-03-27 01:42:32 +00004440/// made to TryParseDeclarator and MightBeDeclarator, and possibly to
4441/// isConstructorDeclarator.
Richard Smith09f76ee2011-10-19 21:33:05 +00004442///
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004443/// declarator: [C99 6.7.5] [C++ 8p4, dcl.decl]
4444/// [C] pointer[opt] direct-declarator
4445/// [C++] direct-declarator
4446/// [C++] ptr-operator declarator
Chris Lattner6c7416c2006-08-07 00:19:33 +00004447///
4448/// pointer: [C99 6.7.5]
4449/// '*' type-qualifier-list[opt]
4450/// '*' type-qualifier-list[opt] pointer
4451///
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004452/// ptr-operator:
4453/// '*' cv-qualifier-seq[opt]
4454/// '&'
Sebastian Redled0f3b02009-03-15 22:02:01 +00004455/// [C++0x] '&&'
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004456/// [GNU] '&' restrict[opt] attributes[opt]
Sebastian Redled0f3b02009-03-15 22:02:01 +00004457/// [GNU?] '&&' restrict[opt] attributes[opt]
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004458/// '::'[opt] nested-name-specifier '*' cv-qualifier-seq[opt]
Sebastian Redlbd150f42008-11-21 19:14:01 +00004459void Parser::ParseDeclaratorInternal(Declarator &D,
4460 DirectDeclParseFunction DirectDeclParser) {
Douglas Gregor66a985d2009-08-26 14:27:30 +00004461 if (Diags.hasAllExtensionsSilenced())
4462 D.setExtension();
Chad Rosierc1183952012-06-26 22:30:43 +00004463
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004464 // C++ member pointers start with a '::' or a nested-name.
4465 // Member pointers get special handling, since there's no place for the
4466 // scope spec in the generic path below.
David Blaikiebbafb8a2012-03-11 07:00:24 +00004467 if (getLangOpts().CPlusPlus &&
Chris Lattner803802d2009-03-24 17:04:48 +00004468 (Tok.is(tok::coloncolon) || Tok.is(tok::identifier) ||
4469 Tok.is(tok::annot_cxxscope))) {
Douglas Gregordf593fb2011-11-07 17:33:42 +00004470 bool EnteringContext = D.getContext() == Declarator::FileContext ||
4471 D.getContext() == Declarator::MemberContext;
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004472 CXXScopeSpec SS;
Douglas Gregordf593fb2011-11-07 17:33:42 +00004473 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), EnteringContext);
John McCall1f476a12010-02-26 08:45:28 +00004474
Jeffrey Yasskin4e150f82010-04-07 23:29:58 +00004475 if (SS.isNotEmpty()) {
Mike Stump11289f42009-09-09 15:08:12 +00004476 if (Tok.isNot(tok::star)) {
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004477 // The scope spec really belongs to the direct-declarator.
Richard Smith5f044ad2013-01-08 22:43:49 +00004478 if (D.mayHaveIdentifier())
4479 D.getCXXScopeSpec() = SS;
4480 else
4481 AnnotateScopeToken(SS, true);
4482
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004483 if (DirectDeclParser)
4484 (this->*DirectDeclParser)(D);
4485 return;
4486 }
4487
4488 SourceLocation Loc = ConsumeToken();
Sebastian Redlf6591ca2009-02-09 18:23:29 +00004489 D.SetRangeEnd(Loc);
John McCall084e83d2011-03-24 11:26:52 +00004490 DeclSpec DS(AttrFactory);
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004491 ParseTypeQualifierListOpt(DS);
Sebastian Redlf6591ca2009-02-09 18:23:29 +00004492 D.ExtendWithDeclSpec(DS);
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004493
4494 // Recurse to parse whatever is left.
4495 ParseDeclaratorInternal(D, DirectDeclParser);
4496
4497 // Sema will have to catch (syntactically invalid) pointers into global
4498 // scope. It has to catch pointers into namespace scope anyway.
4499 D.AddTypeInfo(DeclaratorChunk::getMemberPointer(SS,DS.getTypeQualifiers(),
John McCall084e83d2011-03-24 11:26:52 +00004500 Loc),
4501 DS.getAttributes(),
Sebastian Redlf6591ca2009-02-09 18:23:29 +00004502 /* Don't replace range end. */SourceLocation());
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004503 return;
4504 }
4505 }
4506
4507 tok::TokenKind Kind = Tok.getKind();
Steve Naroffec33ed92008-08-27 16:04:49 +00004508 // Not a pointer, C++ reference, or block.
Richard Smith0efa75c2012-03-29 01:16:42 +00004509 if (!isPtrOperatorToken(Kind, getLangOpts())) {
Sebastian Redlbd150f42008-11-21 19:14:01 +00004510 if (DirectDeclParser)
4511 (this->*DirectDeclParser)(D);
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004512 return;
4513 }
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004514
Sebastian Redled0f3b02009-03-15 22:02:01 +00004515 // Otherwise, '*' -> pointer, '^' -> block, '&' -> lvalue reference,
4516 // '&&' -> rvalue reference
Sebastian Redl3b27be62009-03-23 00:00:23 +00004517 SourceLocation Loc = ConsumeToken(); // Eat the *, ^, & or &&.
Sebastian Redlf6591ca2009-02-09 18:23:29 +00004518 D.SetRangeEnd(Loc);
Bill Wendling3708c182007-05-27 10:15:43 +00004519
Chris Lattner9eac9312009-03-27 04:18:06 +00004520 if (Kind == tok::star || Kind == tok::caret) {
Chris Lattner788404f2008-02-21 01:32:26 +00004521 // Is a pointer.
John McCall084e83d2011-03-24 11:26:52 +00004522 DeclSpec DS(AttrFactory);
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004523
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004524 // FIXME: GNU attributes are not allowed here in a new-type-id.
Bill Wendling3708c182007-05-27 10:15:43 +00004525 ParseTypeQualifierListOpt(DS);
Sebastian Redlf6591ca2009-02-09 18:23:29 +00004526 D.ExtendWithDeclSpec(DS);
Sebastian Redl9ed6efd2009-01-24 21:16:55 +00004527
Bill Wendling3708c182007-05-27 10:15:43 +00004528 // Recursively parse the declarator.
Sebastian Redlbd150f42008-11-21 19:14:01 +00004529 ParseDeclaratorInternal(D, DirectDeclParser);
Steve Naroffec33ed92008-08-27 16:04:49 +00004530 if (Kind == tok::star)
4531 // Remember that we parsed a pointer type, and remember the type-quals.
4532 D.AddTypeInfo(DeclaratorChunk::getPointer(DS.getTypeQualifiers(), Loc,
Chandler Carruthe71b378d2011-02-23 18:51:59 +00004533 DS.getConstSpecLoc(),
4534 DS.getVolatileSpecLoc(),
John McCall084e83d2011-03-24 11:26:52 +00004535 DS.getRestrictSpecLoc()),
4536 DS.getAttributes(),
Sebastian Redlf6591ca2009-02-09 18:23:29 +00004537 SourceLocation());
Steve Naroffec33ed92008-08-27 16:04:49 +00004538 else
4539 // Remember that we parsed a Block type, and remember the type-quals.
Mike Stump11289f42009-09-09 15:08:12 +00004540 D.AddTypeInfo(DeclaratorChunk::getBlockPointer(DS.getTypeQualifiers(),
John McCall084e83d2011-03-24 11:26:52 +00004541 Loc),
4542 DS.getAttributes(),
Sebastian Redlf6591ca2009-02-09 18:23:29 +00004543 SourceLocation());
Bill Wendling3708c182007-05-27 10:15:43 +00004544 } else {
4545 // Is a reference
John McCall084e83d2011-03-24 11:26:52 +00004546 DeclSpec DS(AttrFactory);
Bill Wendling93efb222007-06-02 23:28:54 +00004547
Sebastian Redl3b27be62009-03-23 00:00:23 +00004548 // Complain about rvalue references in C++03, but then go on and build
4549 // the declarator.
Richard Smith5d164bc2011-10-15 05:09:34 +00004550 if (Kind == tok::ampamp)
Richard Smith2bf7fdb2013-01-02 11:42:31 +00004551 Diag(Loc, getLangOpts().CPlusPlus11 ?
Richard Smith5d164bc2011-10-15 05:09:34 +00004552 diag::warn_cxx98_compat_rvalue_reference :
4553 diag::ext_rvalue_reference);
Sebastian Redl3b27be62009-03-23 00:00:23 +00004554
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004555 // GNU-style and C++11 attributes are allowed here, as is restrict.
4556 ParseTypeQualifierListOpt(DS);
4557 D.ExtendWithDeclSpec(DS);
4558
Bill Wendling93efb222007-06-02 23:28:54 +00004559 // C++ 8.3.2p1: cv-qualified references are ill-formed except when the
4560 // cv-qualifiers are introduced through the use of a typedef or of a
4561 // template type argument, in which case the cv-qualifiers are ignored.
Bill Wendling93efb222007-06-02 23:28:54 +00004562 if (DS.getTypeQualifiers() != DeclSpec::TQ_unspecified) {
4563 if (DS.getTypeQualifiers() & DeclSpec::TQ_const)
4564 Diag(DS.getConstSpecLoc(),
Chris Lattner6d29c102008-11-18 07:48:38 +00004565 diag::err_invalid_reference_qualifier_application) << "const";
Bill Wendling93efb222007-06-02 23:28:54 +00004566 if (DS.getTypeQualifiers() & DeclSpec::TQ_volatile)
4567 Diag(DS.getVolatileSpecLoc(),
Chris Lattner6d29c102008-11-18 07:48:38 +00004568 diag::err_invalid_reference_qualifier_application) << "volatile";
Richard Smith8e1ac332013-03-28 01:55:44 +00004569 // 'restrict' is permitted as an extension.
4570 if (DS.getTypeQualifiers() & DeclSpec::TQ_atomic)
4571 Diag(DS.getAtomicSpecLoc(),
4572 diag::err_invalid_reference_qualifier_application) << "_Atomic";
Bill Wendling93efb222007-06-02 23:28:54 +00004573 }
Bill Wendling3708c182007-05-27 10:15:43 +00004574
4575 // Recursively parse the declarator.
Sebastian Redlbd150f42008-11-21 19:14:01 +00004576 ParseDeclaratorInternal(D, DirectDeclParser);
Bill Wendling3708c182007-05-27 10:15:43 +00004577
Douglas Gregor66583c52008-11-03 15:51:28 +00004578 if (D.getNumTypeObjects() > 0) {
4579 // C++ [dcl.ref]p4: There shall be no references to references.
4580 DeclaratorChunk& InnerChunk = D.getTypeObject(D.getNumTypeObjects() - 1);
4581 if (InnerChunk.Kind == DeclaratorChunk::Reference) {
Chris Lattnerebad6a22008-11-19 07:37:42 +00004582 if (const IdentifierInfo *II = D.getIdentifier())
4583 Diag(InnerChunk.Loc, diag::err_illegal_decl_reference_to_reference)
4584 << II;
4585 else
4586 Diag(InnerChunk.Loc, diag::err_illegal_decl_reference_to_reference)
4587 << "type name";
Douglas Gregor66583c52008-11-03 15:51:28 +00004588
Sebastian Redlbd150f42008-11-21 19:14:01 +00004589 // Once we've complained about the reference-to-reference, we
Douglas Gregor66583c52008-11-03 15:51:28 +00004590 // can go ahead and build the (technically ill-formed)
4591 // declarator: reference collapsing will take care of it.
4592 }
4593 }
4594
Richard Smith8e1ac332013-03-28 01:55:44 +00004595 // Remember that we parsed a reference type.
Chris Lattner788404f2008-02-21 01:32:26 +00004596 D.AddTypeInfo(DeclaratorChunk::getReference(DS.getTypeQualifiers(), Loc,
Sebastian Redled0f3b02009-03-15 22:02:01 +00004597 Kind == tok::amp),
John McCall084e83d2011-03-24 11:26:52 +00004598 DS.getAttributes(),
Sebastian Redlf6591ca2009-02-09 18:23:29 +00004599 SourceLocation());
Bill Wendling3708c182007-05-27 10:15:43 +00004600 }
Chris Lattner6c7416c2006-08-07 00:19:33 +00004601}
4602
Richard Smith0efa75c2012-03-29 01:16:42 +00004603static void diagnoseMisplacedEllipsis(Parser &P, Declarator &D,
4604 SourceLocation EllipsisLoc) {
4605 if (EllipsisLoc.isValid()) {
4606 FixItHint Insertion;
4607 if (!D.getEllipsisLoc().isValid()) {
4608 Insertion = FixItHint::CreateInsertion(D.getIdentifierLoc(), "...");
4609 D.setEllipsisLoc(EllipsisLoc);
4610 }
4611 P.Diag(EllipsisLoc, diag::err_misplaced_ellipsis_in_declaration)
4612 << FixItHint::CreateRemoval(EllipsisLoc) << Insertion << !D.hasName();
4613 }
4614}
4615
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004616/// ParseDirectDeclarator
4617/// direct-declarator: [C99 6.7.5]
Douglas Gregor831c93f2008-11-05 20:51:48 +00004618/// [C99] identifier
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004619/// '(' declarator ')'
4620/// [GNU] '(' attributes declarator ')'
Chris Lattnere8074e62006-08-06 18:30:15 +00004621/// [C90] direct-declarator '[' constant-expression[opt] ']'
4622/// [C99] direct-declarator '[' type-qual-list[opt] assignment-expr[opt] ']'
4623/// [C99] direct-declarator '[' 'static' type-qual-list[opt] assign-expr ']'
4624/// [C99] direct-declarator '[' type-qual-list 'static' assignment-expr ']'
4625/// [C99] direct-declarator '[' type-qual-list[opt] '*' ']'
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004626/// [C++11] direct-declarator '[' constant-expression[opt] ']'
4627/// attribute-specifier-seq[opt]
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00004628/// direct-declarator '(' parameter-type-list ')'
4629/// direct-declarator '(' identifier-list[opt] ')'
4630/// [GNU] direct-declarator '(' parameter-forward-declarations
4631/// parameter-type-list[opt] ')'
Argyrios Kyrtzidis22c40fa2008-10-24 21:46:40 +00004632/// [C++] direct-declarator '(' parameter-declaration-clause ')'
4633/// cv-qualifier-seq[opt] exception-specification[opt]
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004634/// [C++11] direct-declarator '(' parameter-declaration-clause ')'
4635/// attribute-specifier-seq[opt] cv-qualifier-seq[opt]
4636/// ref-qualifier[opt] exception-specification[opt]
Douglas Gregor61956c42008-10-31 09:07:45 +00004637/// [C++] declarator-id
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004638/// [C++11] declarator-id attribute-specifier-seq[opt]
Douglas Gregor831c93f2008-11-05 20:51:48 +00004639///
4640/// declarator-id: [C++ 8]
Douglas Gregor27b4c162010-12-23 22:44:42 +00004641/// '...'[opt] id-expression
Douglas Gregor831c93f2008-11-05 20:51:48 +00004642/// '::'[opt] nested-name-specifier[opt] type-name
4643///
4644/// id-expression: [C++ 5.1]
4645/// unqualified-id
Douglas Gregord90fd522009-09-25 21:45:23 +00004646/// qualified-id
Douglas Gregor831c93f2008-11-05 20:51:48 +00004647///
4648/// unqualified-id: [C++ 5.1]
Mike Stump11289f42009-09-09 15:08:12 +00004649/// identifier
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00004650/// operator-function-id
Douglas Gregord90fd522009-09-25 21:45:23 +00004651/// conversion-function-id
Mike Stump11289f42009-09-09 15:08:12 +00004652/// '~' class-name
Douglas Gregor7f741122009-02-25 19:37:18 +00004653/// template-id
Argyrios Kyrtzidise4426352008-11-07 22:02:30 +00004654///
Richard Smith1453e312012-03-27 01:42:32 +00004655/// Note, any additional constructs added here may need corresponding changes
4656/// in isConstructorDeclarator.
Chris Lattneracd58a32006-08-06 17:24:14 +00004657void Parser::ParseDirectDeclarator(Declarator &D) {
Argyrios Kyrtzidis9323b042008-11-26 22:40:03 +00004658 DeclaratorScopeObj DeclScopeObj(*this, D.getCXXScopeSpec());
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00004659
David Blaikiebbafb8a2012-03-11 07:00:24 +00004660 if (getLangOpts().CPlusPlus && D.mayHaveIdentifier()) {
Douglas Gregor7861a802009-11-03 01:35:08 +00004661 // ParseDeclaratorInternal might already have parsed the scope.
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00004662 if (D.getCXXScopeSpec().isEmpty()) {
Douglas Gregordf593fb2011-11-07 17:33:42 +00004663 bool EnteringContext = D.getContext() == Declarator::FileContext ||
4664 D.getContext() == Declarator::MemberContext;
Chad Rosierc1183952012-06-26 22:30:43 +00004665 ParseOptionalCXXScopeSpecifier(D.getCXXScopeSpec(), ParsedType(),
Douglas Gregordf593fb2011-11-07 17:33:42 +00004666 EnteringContext);
John McCall1f476a12010-02-26 08:45:28 +00004667 }
4668
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00004669 if (D.getCXXScopeSpec().isValid()) {
Douglas Gregor0be31a22010-07-02 17:43:08 +00004670 if (Actions.ShouldEnterDeclaratorScope(getCurScope(), D.getCXXScopeSpec()))
John McCall2b058ef2009-12-11 20:04:54 +00004671 // Change the declaration context for name lookup, until this function
4672 // is exited (and the declarator has been parsed).
4673 DeclScopeObj.EnterDeclaratorScope();
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00004674 }
4675
Douglas Gregor27b4c162010-12-23 22:44:42 +00004676 // C++0x [dcl.fct]p14:
4677 // There is a syntactic ambiguity when an ellipsis occurs at the end
Chad Rosierc1183952012-06-26 22:30:43 +00004678 // of a parameter-declaration-clause without a preceding comma. In
4679 // this case, the ellipsis is parsed as part of the
4680 // abstract-declarator if the type of the parameter names a template
Douglas Gregor27b4c162010-12-23 22:44:42 +00004681 // parameter pack that has not been expanded; otherwise, it is parsed
4682 // as part of the parameter-declaration-clause.
Richard Smith0efa75c2012-03-29 01:16:42 +00004683 if (Tok.is(tok::ellipsis) && D.getCXXScopeSpec().isEmpty() &&
Douglas Gregor27b4c162010-12-23 22:44:42 +00004684 !((D.getContext() == Declarator::PrototypeContext ||
4685 D.getContext() == Declarator::BlockLiteralContext) &&
Douglas Gregor27b4c162010-12-23 22:44:42 +00004686 NextToken().is(tok::r_paren) &&
Richard Smithb19337f2013-02-20 20:19:27 +00004687 !D.hasGroupingParens() &&
Richard Smith0efa75c2012-03-29 01:16:42 +00004688 !Actions.containsUnexpandedParameterPacks(D))) {
4689 SourceLocation EllipsisLoc = ConsumeToken();
4690 if (isPtrOperatorToken(Tok.getKind(), getLangOpts())) {
4691 // The ellipsis was put in the wrong place. Recover, and explain to
4692 // the user what they should have done.
4693 ParseDeclarator(D);
4694 diagnoseMisplacedEllipsis(*this, D, EllipsisLoc);
4695 return;
4696 } else
4697 D.setEllipsisLoc(EllipsisLoc);
4698
4699 // The ellipsis can't be followed by a parenthesized declarator. We
4700 // check for that in ParseParenDeclarator, after we have disambiguated
4701 // the l_paren token.
4702 }
4703
Douglas Gregor7861a802009-11-03 01:35:08 +00004704 if (Tok.is(tok::identifier) || Tok.is(tok::kw_operator) ||
4705 Tok.is(tok::annot_template_id) || Tok.is(tok::tilde)) {
4706 // We found something that indicates the start of an unqualified-id.
4707 // Parse that unqualified-id.
John McCall84821e72010-04-13 06:39:49 +00004708 bool AllowConstructorName;
4709 if (D.getDeclSpec().hasTypeSpecifier())
4710 AllowConstructorName = false;
4711 else if (D.getCXXScopeSpec().isSet())
4712 AllowConstructorName =
4713 (D.getContext() == Declarator::FileContext ||
Dmitri Gribenkod1c91f12013-02-12 17:27:41 +00004714 D.getContext() == Declarator::MemberContext);
John McCall84821e72010-04-13 06:39:49 +00004715 else
4716 AllowConstructorName = (D.getContext() == Declarator::MemberContext);
4717
Abramo Bagnara7945c982012-01-27 09:46:47 +00004718 SourceLocation TemplateKWLoc;
Chad Rosierc1183952012-06-26 22:30:43 +00004719 if (ParseUnqualifiedId(D.getCXXScopeSpec(),
4720 /*EnteringContext=*/true,
4721 /*AllowDestructorName=*/true,
Douglas Gregor9de54ea2010-01-13 17:31:36 +00004722 AllowConstructorName,
John McCallba7bf592010-08-24 05:47:05 +00004723 ParsedType(),
Abramo Bagnara7945c982012-01-27 09:46:47 +00004724 TemplateKWLoc,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00004725 D.getName()) ||
4726 // Once we're past the identifier, if the scope was bad, mark the
4727 // whole declarator bad.
4728 D.getCXXScopeSpec().isInvalid()) {
Argyrios Kyrtzidis9323b042008-11-26 22:40:03 +00004729 D.SetIdentifier(0, Tok.getLocation());
4730 D.setInvalidType(true);
Douglas Gregor7861a802009-11-03 01:35:08 +00004731 } else {
4732 // Parsed the unqualified-id; update range information and move along.
4733 if (D.getSourceRange().getBegin().isInvalid())
4734 D.SetRangeBegin(D.getName().getSourceRange().getBegin());
4735 D.SetRangeEnd(D.getName().getSourceRange().getEnd());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004736 }
Douglas Gregor7861a802009-11-03 01:35:08 +00004737 goto PastIdentifier;
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00004738 }
Douglas Gregor7861a802009-11-03 01:35:08 +00004739 } else if (Tok.is(tok::identifier) && D.mayHaveIdentifier()) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00004740 assert(!getLangOpts().CPlusPlus &&
Argyrios Kyrtzidis9323b042008-11-26 22:40:03 +00004741 "There's a C++-specific check for tok::identifier above");
4742 assert(Tok.getIdentifierInfo() && "Not an identifier?");
4743 D.SetIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
4744 ConsumeToken();
Douglas Gregor7861a802009-11-03 01:35:08 +00004745 goto PastIdentifier;
Richard Smith9ce302e2013-07-11 05:10:21 +00004746 } else if (Tok.is(tok::identifier) && D.diagnoseIdentifier()) {
4747 Diag(Tok.getLocation(), diag::err_unexpected_unqualified_id)
4748 << FixItHint::CreateRemoval(Tok.getLocation());
4749 D.SetIdentifier(0, Tok.getLocation());
4750 ConsumeToken();
4751 goto PastIdentifier;
Douglas Gregor7861a802009-11-03 01:35:08 +00004752 }
Richard Smith0efa75c2012-03-29 01:16:42 +00004753
Douglas Gregor7861a802009-11-03 01:35:08 +00004754 if (Tok.is(tok::l_paren)) {
Chris Lattneracd58a32006-08-06 17:24:14 +00004755 // direct-declarator: '(' declarator ')'
Chris Lattnere37e2332006-08-15 04:50:22 +00004756 // direct-declarator: '(' attributes declarator ')'
Chris Lattneracd58a32006-08-06 17:24:14 +00004757 // Example: 'char (*X)' or 'int (*XX)(void)'
4758 ParseParenDeclarator(D);
Douglas Gregor9de54ea2010-01-13 17:31:36 +00004759
4760 // If the declarator was parenthesized, we entered the declarator
4761 // scope when parsing the parenthesized declarator, then exited
4762 // the scope already. Re-enter the scope, if we need to.
4763 if (D.getCXXScopeSpec().isSet()) {
Fariborz Jahanian358acd52010-08-17 23:50:37 +00004764 // If there was an error parsing parenthesized declarator, declarator
Richard Smith0efa75c2012-03-29 01:16:42 +00004765 // scope may have been entered before. Don't do it again.
Fariborz Jahanian358acd52010-08-17 23:50:37 +00004766 if (!D.isInvalidType() &&
4767 Actions.ShouldEnterDeclaratorScope(getCurScope(), D.getCXXScopeSpec()))
Douglas Gregor9de54ea2010-01-13 17:31:36 +00004768 // Change the declaration context for name lookup, until this function
4769 // is exited (and the declarator has been parsed).
Fariborz Jahanian358acd52010-08-17 23:50:37 +00004770 DeclScopeObj.EnterDeclaratorScope();
Douglas Gregor9de54ea2010-01-13 17:31:36 +00004771 }
Argyrios Kyrtzidis9323b042008-11-26 22:40:03 +00004772 } else if (D.mayOmitIdentifier()) {
Chris Lattneracd58a32006-08-06 17:24:14 +00004773 // This could be something simple like "int" (in which case the declarator
4774 // portion is empty), if an abstract-declarator is allowed.
4775 D.SetIdentifier(0, Tok.getLocation());
Richard Smithb19337f2013-02-20 20:19:27 +00004776
4777 // The grammar for abstract-pack-declarator does not allow grouping parens.
4778 // FIXME: Revisit this once core issue 1488 is resolved.
4779 if (D.hasEllipsis() && D.hasGroupingParens())
4780 Diag(PP.getLocForEndOfToken(D.getEllipsisLoc()),
4781 diag::ext_abstract_pack_declarator_parens);
Chris Lattneracd58a32006-08-06 17:24:14 +00004782 } else {
David Blaikie5d577a22012-06-29 22:03:56 +00004783 if (Tok.getKind() == tok::annot_pragma_parser_crash)
David Blaikie5bd4c2a2012-08-21 18:56:49 +00004784 LLVM_BUILTIN_TRAP;
Douglas Gregord9f92e22009-03-06 23:28:18 +00004785 if (D.getContext() == Declarator::MemberContext)
4786 Diag(Tok, diag::err_expected_member_name_or_semi)
4787 << D.getDeclSpec().getSourceRange();
Richard Trieu9c672672013-01-26 02:31:38 +00004788 else if (getLangOpts().CPlusPlus) {
4789 if (Tok.is(tok::period) || Tok.is(tok::arrow))
4790 Diag(Tok, diag::err_invalid_operator_on_type) << Tok.is(tok::arrow);
Richard Trieu2f586962013-09-05 02:31:33 +00004791 else {
4792 SourceLocation Loc = D.getCXXScopeSpec().getEndLoc();
4793 if (Tok.isAtStartOfLine() && Loc.isValid())
4794 Diag(PP.getLocForEndOfToken(Loc), diag::err_expected_unqualified_id)
4795 << getLangOpts().CPlusPlus;
4796 else
4797 Diag(Tok, diag::err_expected_unqualified_id)
4798 << getLangOpts().CPlusPlus;
4799 }
Richard Trieu9c672672013-01-26 02:31:38 +00004800 } else
Chris Lattner6d29c102008-11-18 07:48:38 +00004801 Diag(Tok, diag::err_expected_ident_lparen);
Chris Lattnereec40f92006-08-06 21:55:29 +00004802 D.SetIdentifier(0, Tok.getLocation());
Chris Lattner8c5dd732008-11-11 06:13:16 +00004803 D.setInvalidType(true);
Chris Lattneracd58a32006-08-06 17:24:14 +00004804 }
Mike Stump11289f42009-09-09 15:08:12 +00004805
Argyrios Kyrtzidis9323b042008-11-26 22:40:03 +00004806 PastIdentifier:
Chris Lattneracd58a32006-08-06 17:24:14 +00004807 assert(D.isPastIdentifier() &&
4808 "Haven't past the location of the identifier yet?");
Mike Stump11289f42009-09-09 15:08:12 +00004809
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004810 // Don't parse attributes unless we have parsed an unparenthesized name.
4811 if (D.hasName() && !D.getNumTypeObjects())
Richard Smith89645bc2013-01-02 12:01:23 +00004812 MaybeParseCXX11Attributes(D);
Alexis Hunt96d5c762009-11-21 08:43:09 +00004813
Chris Lattneracd58a32006-08-06 17:24:14 +00004814 while (1) {
Chris Lattner76c72282007-10-09 17:33:22 +00004815 if (Tok.is(tok::l_paren)) {
David Blaikie15a430a2011-12-04 05:04:18 +00004816 // Enter function-declaration scope, limiting any declarators to the
4817 // function prototype scope, including parameter declarators.
4818 ParseScope PrototypeScope(this,
Richard Smithe233fbf2013-01-28 22:42:45 +00004819 Scope::FunctionPrototypeScope|Scope::DeclScope|
4820 (D.isFunctionDeclaratorAFunctionDeclaration()
4821 ? Scope::FunctionDeclarationScope : 0));
4822
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00004823 // The paren may be part of a C++ direct initializer, eg. "int x(1);".
4824 // In such a case, check if we actually have a function declarator; if it
4825 // is not, the declarator has been fully parsed.
Richard Smith943c4402012-07-30 21:30:52 +00004826 bool IsAmbiguous = false;
Richard Smith4f605af2012-08-18 00:55:03 +00004827 if (getLangOpts().CPlusPlus && D.mayBeFollowedByCXXDirectInit()) {
4828 // The name of the declarator, if any, is tentatively declared within
4829 // a possible direct initializer.
4830 TentativelyDeclaredIdentifiers.push_back(D.getIdentifier());
4831 bool IsFunctionDecl = isCXXFunctionDeclarator(&IsAmbiguous);
4832 TentativelyDeclaredIdentifiers.pop_back();
4833 if (!IsFunctionDecl)
4834 break;
4835 }
John McCall084e83d2011-03-24 11:26:52 +00004836 ParsedAttributes attrs(AttrFactory);
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00004837 BalancedDelimiterTracker T(*this, tok::l_paren);
4838 T.consumeOpen();
Richard Smith943c4402012-07-30 21:30:52 +00004839 ParseFunctionDeclarator(D, attrs, T, IsAmbiguous);
David Blaikie15a430a2011-12-04 05:04:18 +00004840 PrototypeScope.Exit();
Chris Lattner76c72282007-10-09 17:33:22 +00004841 } else if (Tok.is(tok::l_square)) {
Chris Lattnere8074e62006-08-06 18:30:15 +00004842 ParseBracketDeclarator(D);
Chris Lattneracd58a32006-08-06 17:24:14 +00004843 } else {
4844 break;
4845 }
4846 }
Chad Rosierc1183952012-06-26 22:30:43 +00004847}
Chris Lattneracd58a32006-08-06 17:24:14 +00004848
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004849/// ParseParenDeclarator - We parsed the declarator D up to a paren. This is
4850/// only called before the identifier, so these are most likely just grouping
Mike Stump11289f42009-09-09 15:08:12 +00004851/// parens for precedence. If we find that these are actually function
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004852/// parameter parens in an abstract-declarator, we call ParseFunctionDeclarator.
4853///
4854/// direct-declarator:
4855/// '(' declarator ')'
4856/// [GNU] '(' attributes declarator ')'
Chris Lattner8ff2c6c2008-10-20 02:05:46 +00004857/// direct-declarator '(' parameter-type-list ')'
4858/// direct-declarator '(' identifier-list[opt] ')'
4859/// [GNU] direct-declarator '(' parameter-forward-declarations
4860/// parameter-type-list[opt] ')'
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004861///
4862void Parser::ParseParenDeclarator(Declarator &D) {
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00004863 BalancedDelimiterTracker T(*this, tok::l_paren);
4864 T.consumeOpen();
4865
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004866 assert(!D.isPastIdentifier() && "Should be called before passing identifier");
Mike Stump11289f42009-09-09 15:08:12 +00004867
Chris Lattner8ff2c6c2008-10-20 02:05:46 +00004868 // Eat any attributes before we look at whether this is a grouping or function
4869 // declarator paren. If this is a grouping paren, the attribute applies to
4870 // the type being built up, for example:
4871 // int (__attribute__(()) *x)(long y)
4872 // If this ends up not being a grouping paren, the attribute applies to the
4873 // first argument, for example:
4874 // int (__attribute__(()) int x)
4875 // In either case, we need to eat any attributes to be able to determine what
4876 // sort of paren this is.
4877 //
John McCall084e83d2011-03-24 11:26:52 +00004878 ParsedAttributes attrs(AttrFactory);
Chris Lattner8ff2c6c2008-10-20 02:05:46 +00004879 bool RequiresArg = false;
4880 if (Tok.is(tok::kw___attribute)) {
John McCall53fa7142010-12-24 02:08:15 +00004881 ParseGNUAttributes(attrs);
Mike Stump11289f42009-09-09 15:08:12 +00004882
Chris Lattner8ff2c6c2008-10-20 02:05:46 +00004883 // We require that the argument list (if this is a non-grouping paren) be
4884 // present even if the attribute list was empty.
4885 RequiresArg = true;
4886 }
Chad Rosiereea9ca72012-12-21 21:22:20 +00004887
Steve Naroff44ac7772008-12-25 14:16:32 +00004888 // Eat any Microsoft extensions.
Chad Rosiereea9ca72012-12-21 21:22:20 +00004889 ParseMicrosoftTypeAttributes(attrs);
4890
Dawn Perchik335e16b2010-09-03 01:29:35 +00004891 // Eat any Borland extensions.
Ted Kremenek5eec2b02010-11-10 05:59:39 +00004892 if (Tok.is(tok::kw___pascal))
John McCall53fa7142010-12-24 02:08:15 +00004893 ParseBorlandTypeAttributes(attrs);
Mike Stump11289f42009-09-09 15:08:12 +00004894
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004895 // If we haven't past the identifier yet (or where the identifier would be
4896 // stored, if this is an abstract declarator), then this is probably just
4897 // grouping parens. However, if this could be an abstract-declarator, then
4898 // this could also be the start of function arguments (consider 'void()').
4899 bool isGrouping;
Mike Stump11289f42009-09-09 15:08:12 +00004900
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004901 if (!D.mayOmitIdentifier()) {
4902 // If this can't be an abstract-declarator, this *must* be a grouping
4903 // paren, because we haven't seen the identifier yet.
4904 isGrouping = true;
4905 } else if (Tok.is(tok::r_paren) || // 'int()' is a function.
Richard Smith43f340f2012-03-27 23:05:05 +00004906 (getLangOpts().CPlusPlus && Tok.is(tok::ellipsis) &&
4907 NextToken().is(tok::r_paren)) || // C++ int(...)
Richard Smith2620cd92012-04-11 04:01:28 +00004908 isDeclarationSpecifier() || // 'int(int)' is a function.
4909 isCXX11AttributeSpecifier()) { // 'int([[]]int)' is a function.
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004910 // This handles C99 6.7.5.3p11: in "typedef int X; void foo(X)", X is
4911 // considered to be a type, not a K&R identifier-list.
4912 isGrouping = false;
4913 } else {
4914 // Otherwise, this is a grouping paren, e.g. 'int (*X)' or 'int(X)'.
4915 isGrouping = true;
4916 }
Mike Stump11289f42009-09-09 15:08:12 +00004917
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004918 // If this is a grouping paren, handle:
4919 // direct-declarator: '(' declarator ')'
4920 // direct-declarator: '(' attributes declarator ')'
4921 if (isGrouping) {
Richard Smith0efa75c2012-03-29 01:16:42 +00004922 SourceLocation EllipsisLoc = D.getEllipsisLoc();
4923 D.setEllipsisLoc(SourceLocation());
4924
Argyrios Kyrtzidis8ae36842008-10-07 10:21:57 +00004925 bool hadGroupingParens = D.hasGroupingParens();
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00004926 D.setGroupingParens(true);
Sebastian Redlbd150f42008-11-21 19:14:01 +00004927 ParseDeclaratorInternal(D, &Parser::ParseDirectDeclarator);
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004928 // Match the ')'.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00004929 T.consumeClose();
Chad Rosierc1183952012-06-26 22:30:43 +00004930 D.AddTypeInfo(DeclaratorChunk::getParen(T.getOpenLocation(),
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00004931 T.getCloseLocation()),
4932 attrs, T.getCloseLocation());
Argyrios Kyrtzidis8ae36842008-10-07 10:21:57 +00004933
4934 D.setGroupingParens(hadGroupingParens);
Richard Smith0efa75c2012-03-29 01:16:42 +00004935
4936 // An ellipsis cannot be placed outside parentheses.
4937 if (EllipsisLoc.isValid())
4938 diagnoseMisplacedEllipsis(*this, D, EllipsisLoc);
4939
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004940 return;
4941 }
Mike Stump11289f42009-09-09 15:08:12 +00004942
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004943 // Okay, if this wasn't a grouping paren, it must be the start of a function
4944 // argument list. Recognize that this declarator will never have an
Chris Lattner8ff2c6c2008-10-20 02:05:46 +00004945 // identifier (and remember where it would have been), then call into
4946 // ParseFunctionDeclarator to handle of argument list.
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004947 D.SetIdentifier(0, Tok.getLocation());
4948
David Blaikie15a430a2011-12-04 05:04:18 +00004949 // Enter function-declaration scope, limiting any declarators to the
4950 // function prototype scope, including parameter declarators.
4951 ParseScope PrototypeScope(this,
Richard Smithe233fbf2013-01-28 22:42:45 +00004952 Scope::FunctionPrototypeScope | Scope::DeclScope |
4953 (D.isFunctionDeclaratorAFunctionDeclaration()
4954 ? Scope::FunctionDeclarationScope : 0));
Richard Smith943c4402012-07-30 21:30:52 +00004955 ParseFunctionDeclarator(D, attrs, T, false, RequiresArg);
David Blaikie15a430a2011-12-04 05:04:18 +00004956 PrototypeScope.Exit();
Chris Lattnerc0a1c7d2008-04-06 05:45:57 +00004957}
4958
4959/// ParseFunctionDeclarator - We are after the identifier and have parsed the
4960/// declarator D up to a paren, which indicates that we are parsing function
4961/// arguments.
Chris Lattneracd58a32006-08-06 17:24:14 +00004962///
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004963/// If FirstArgAttrs is non-null, then the caller parsed those arguments
4964/// immediately after the open paren - they should be considered to be the
4965/// first argument of a parameter.
Chris Lattner8ff2c6c2008-10-20 02:05:46 +00004966///
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004967/// If RequiresArg is true, then the first argument of the function is required
4968/// to be present and required to not be an identifier list.
Douglas Gregor9e66af42011-07-05 16:44:18 +00004969///
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004970/// For C++, after the parameter-list, it also parses the cv-qualifier-seq[opt],
4971/// (C++11) ref-qualifier[opt], exception-specification[opt],
4972/// (C++11) attribute-specifier-seq[opt], and (C++11) trailing-return-type[opt].
4973///
4974/// [C++11] exception-specification:
Douglas Gregor9e66af42011-07-05 16:44:18 +00004975/// dynamic-exception-specification
4976/// noexcept-specification
4977///
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00004978void Parser::ParseFunctionDeclarator(Declarator &D,
Richard Smith7bdcc4a2012-04-10 01:32:12 +00004979 ParsedAttributes &FirstArgAttrs,
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00004980 BalancedDelimiterTracker &Tracker,
Richard Smith943c4402012-07-30 21:30:52 +00004981 bool IsAmbiguous,
Douglas Gregor9e66af42011-07-05 16:44:18 +00004982 bool RequiresArg) {
Chad Rosierc1183952012-06-26 22:30:43 +00004983 assert(getCurScope()->isFunctionPrototypeScope() &&
David Blaikie15a430a2011-12-04 05:04:18 +00004984 "Should call from a Function scope");
Douglas Gregor9e66af42011-07-05 16:44:18 +00004985 // lparen is already consumed!
4986 assert(D.isPastIdentifier() && "Should not call before identifier!");
4987
4988 // This should be true when the function has typed arguments.
4989 // Otherwise, it is treated as a K&R-style function.
4990 bool HasProto = false;
4991 // Build up an array of information about the parsed arguments.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00004992 SmallVector<DeclaratorChunk::ParamInfo, 16> ParamInfo;
Douglas Gregor9e66af42011-07-05 16:44:18 +00004993 // Remember where we see an ellipsis, if any.
4994 SourceLocation EllipsisLoc;
4995
4996 DeclSpec DS(AttrFactory);
4997 bool RefQualifierIsLValueRef = true;
4998 SourceLocation RefQualifierLoc;
Douglas Gregore248eea2011-10-19 06:04:55 +00004999 SourceLocation ConstQualifierLoc;
5000 SourceLocation VolatileQualifierLoc;
Douglas Gregor9e66af42011-07-05 16:44:18 +00005001 ExceptionSpecificationType ESpecType = EST_None;
5002 SourceRange ESpecRange;
Chris Lattner0e62c1c2011-07-23 10:55:15 +00005003 SmallVector<ParsedType, 2> DynamicExceptions;
5004 SmallVector<SourceRange, 2> DynamicExceptionRanges;
Douglas Gregor9e66af42011-07-05 16:44:18 +00005005 ExprResult NoexceptExpr;
Richard Smith7bdcc4a2012-04-10 01:32:12 +00005006 ParsedAttributes FnAttrs(AttrFactory);
Richard Smith700537c2012-06-12 01:51:59 +00005007 TypeResult TrailingReturnType;
Richard Smith7bdcc4a2012-04-10 01:32:12 +00005008
James Molloy6f8780b2012-02-29 10:24:19 +00005009 Actions.ActOnStartFunctionDeclarator();
Manuel Klimek2fdbea22013-08-22 12:12:24 +00005010
Abramo Bagnara2fc03ca2012-10-15 21:05:46 +00005011 /* LocalEndLoc is the end location for the local FunctionTypeLoc.
5012 EndLoc is the end location for the function declarator.
5013 They differ for trailing return types. */
5014 SourceLocation StartLoc, LocalEndLoc, EndLoc;
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00005015 SourceLocation LParenLoc, RParenLoc;
5016 LParenLoc = Tracker.getOpenLocation();
5017 StartLoc = LParenLoc;
5018
Douglas Gregor9e66af42011-07-05 16:44:18 +00005019 if (isFunctionDeclaratorIdentifierList()) {
5020 if (RequiresArg)
5021 Diag(Tok, diag::err_argument_required_after_attribute);
5022
5023 ParseFunctionDeclaratorIdentifierList(D, ParamInfo);
5024
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00005025 Tracker.consumeClose();
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00005026 RParenLoc = Tracker.getCloseLocation();
Abramo Bagnara2fc03ca2012-10-15 21:05:46 +00005027 LocalEndLoc = RParenLoc;
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00005028 EndLoc = RParenLoc;
Douglas Gregor9e66af42011-07-05 16:44:18 +00005029 } else {
Douglas Gregor9e66af42011-07-05 16:44:18 +00005030 if (Tok.isNot(tok::r_paren))
Manuel Klimek2fdbea22013-08-22 12:12:24 +00005031 ParseParameterDeclarationClause(D, FirstArgAttrs, ParamInfo, EllipsisLoc);
Douglas Gregor9e66af42011-07-05 16:44:18 +00005032 else if (RequiresArg)
5033 Diag(Tok, diag::err_argument_required_after_attribute);
5034
David Blaikiebbafb8a2012-03-11 07:00:24 +00005035 HasProto = ParamInfo.size() || getLangOpts().CPlusPlus;
Douglas Gregor9e66af42011-07-05 16:44:18 +00005036
5037 // If we have the closing ')', eat it.
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00005038 Tracker.consumeClose();
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00005039 RParenLoc = Tracker.getCloseLocation();
Abramo Bagnara2fc03ca2012-10-15 21:05:46 +00005040 LocalEndLoc = RParenLoc;
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00005041 EndLoc = RParenLoc;
Douglas Gregor9e66af42011-07-05 16:44:18 +00005042
David Blaikiebbafb8a2012-03-11 07:00:24 +00005043 if (getLangOpts().CPlusPlus) {
Richard Smith7bdcc4a2012-04-10 01:32:12 +00005044 // FIXME: Accept these components in any order, and produce fixits to
5045 // correct the order if the user gets it wrong. Ideally we should deal
5046 // with the virt-specifier-seq and pure-specifier in the same way.
Douglas Gregor9e66af42011-07-05 16:44:18 +00005047
5048 // Parse cv-qualifier-seq[opt].
Richard Smith8e1ac332013-03-28 01:55:44 +00005049 ParseTypeQualifierListOpt(DS, /*VendorAttributesAllowed*/ false,
5050 /*CXX11AttributesAllowed*/ false,
5051 /*AtomicAllowed*/ false);
Richard Smith7bdcc4a2012-04-10 01:32:12 +00005052 if (!DS.getSourceRange().getEnd().isInvalid()) {
5053 EndLoc = DS.getSourceRange().getEnd();
5054 ConstQualifierLoc = DS.getConstSpecLoc();
5055 VolatileQualifierLoc = DS.getVolatileSpecLoc();
5056 }
Douglas Gregor9e66af42011-07-05 16:44:18 +00005057
5058 // Parse ref-qualifier[opt].
5059 if (Tok.is(tok::amp) || Tok.is(tok::ampamp)) {
Richard Smith2bf7fdb2013-01-02 11:42:31 +00005060 Diag(Tok, getLangOpts().CPlusPlus11 ?
Richard Smith5d164bc2011-10-15 05:09:34 +00005061 diag::warn_cxx98_compat_ref_qualifier :
5062 diag::ext_ref_qualifier);
Richard Smith7bdcc4a2012-04-10 01:32:12 +00005063
Douglas Gregor9e66af42011-07-05 16:44:18 +00005064 RefQualifierIsLValueRef = Tok.is(tok::amp);
5065 RefQualifierLoc = ConsumeToken();
5066 EndLoc = RefQualifierLoc;
5067 }
5068
Douglas Gregor3024f072012-04-16 07:05:22 +00005069 // C++11 [expr.prim.general]p3:
Chad Rosierc1183952012-06-26 22:30:43 +00005070 // If a declaration declares a member function or member function
5071 // template of a class X, the expression this is a prvalue of type
Douglas Gregor3024f072012-04-16 07:05:22 +00005072 // "pointer to cv-qualifier-seq X" between the optional cv-qualifer-seq
Chad Rosierc1183952012-06-26 22:30:43 +00005073 // and the end of the function-definition, member-declarator, or
Douglas Gregor3024f072012-04-16 07:05:22 +00005074 // declarator.
Richard Smithad1bbb92013-03-15 00:41:52 +00005075 // FIXME: currently, "static" case isn't handled correctly.
Chad Rosierc1183952012-06-26 22:30:43 +00005076 bool IsCXX11MemberFunction =
Richard Smith2bf7fdb2013-01-02 11:42:31 +00005077 getLangOpts().CPlusPlus11 &&
Richard Smithad1bbb92013-03-15 00:41:52 +00005078 (D.getContext() == Declarator::MemberContext
5079 ? !D.getDeclSpec().isFriendSpecified()
5080 : D.getContext() == Declarator::FileContext &&
5081 D.getCXXScopeSpec().isValid() &&
5082 Actions.CurContext->isRecord());
Douglas Gregor3024f072012-04-16 07:05:22 +00005083 Sema::CXXThisScopeRAII ThisScope(Actions,
5084 dyn_cast<CXXRecordDecl>(Actions.CurContext),
Richard Smith01141a92013-01-14 01:55:13 +00005085 DS.getTypeQualifiers() |
Richard Smith034185c2013-04-21 01:08:50 +00005086 (D.getDeclSpec().isConstexprSpecified() &&
5087 !getLangOpts().CPlusPlus1y
Richard Smith01141a92013-01-14 01:55:13 +00005088 ? Qualifiers::Const : 0),
Douglas Gregor3024f072012-04-16 07:05:22 +00005089 IsCXX11MemberFunction);
Richard Smith2331bbf2012-05-02 22:22:32 +00005090
Douglas Gregor9e66af42011-07-05 16:44:18 +00005091 // Parse exception-specification[opt].
Richard Smith2331bbf2012-05-02 22:22:32 +00005092 ESpecType = tryParseExceptionSpecification(ESpecRange,
Douglas Gregor433e0532012-04-16 18:27:27 +00005093 DynamicExceptions,
5094 DynamicExceptionRanges,
Richard Smith2331bbf2012-05-02 22:22:32 +00005095 NoexceptExpr);
Douglas Gregor9e66af42011-07-05 16:44:18 +00005096 if (ESpecType != EST_None)
5097 EndLoc = ESpecRange.getEnd();
5098
Richard Smith7bdcc4a2012-04-10 01:32:12 +00005099 // Parse attribute-specifier-seq[opt]. Per DR 979 and DR 1297, this goes
5100 // after the exception-specification.
Richard Smith89645bc2013-01-02 12:01:23 +00005101 MaybeParseCXX11Attributes(FnAttrs);
Richard Smith7bdcc4a2012-04-10 01:32:12 +00005102
Douglas Gregor9e66af42011-07-05 16:44:18 +00005103 // Parse trailing-return-type[opt].
Abramo Bagnara2fc03ca2012-10-15 21:05:46 +00005104 LocalEndLoc = EndLoc;
Richard Smith2bf7fdb2013-01-02 11:42:31 +00005105 if (getLangOpts().CPlusPlus11 && Tok.is(tok::arrow)) {
Richard Smith5d164bc2011-10-15 05:09:34 +00005106 Diag(Tok, diag::warn_cxx98_compat_trailing_return_type);
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00005107 if (D.getDeclSpec().getTypeSpecType() == TST_auto)
5108 StartLoc = D.getDeclSpec().getTypeSpecTypeLoc();
Abramo Bagnara2fc03ca2012-10-15 21:05:46 +00005109 LocalEndLoc = Tok.getLocation();
Douglas Gregordb0b9f12011-08-04 15:30:47 +00005110 SourceRange Range;
Richard Smith700537c2012-06-12 01:51:59 +00005111 TrailingReturnType = ParseTrailingReturnType(Range);
Abramo Bagnara2fc03ca2012-10-15 21:05:46 +00005112 EndLoc = Range.getEnd();
Douglas Gregor9e66af42011-07-05 16:44:18 +00005113 }
5114 }
Douglas Gregor9e66af42011-07-05 16:44:18 +00005115 }
5116
5117 // Remember that we parsed a function type, and remember the attributes.
5118 D.AddTypeInfo(DeclaratorChunk::getFunction(HasProto,
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00005119 IsAmbiguous,
5120 LParenLoc,
Douglas Gregor9e66af42011-07-05 16:44:18 +00005121 ParamInfo.data(), ParamInfo.size(),
Abramo Bagnaraaeeb9892012-10-04 21:42:10 +00005122 EllipsisLoc, RParenLoc,
Douglas Gregor9e66af42011-07-05 16:44:18 +00005123 DS.getTypeQualifiers(),
5124 RefQualifierIsLValueRef,
Douglas Gregore248eea2011-10-19 06:04:55 +00005125 RefQualifierLoc, ConstQualifierLoc,
5126 VolatileQualifierLoc,
Douglas Gregorad69e652011-07-13 21:47:47 +00005127 /*MutableLoc=*/SourceLocation(),
Douglas Gregor9e66af42011-07-05 16:44:18 +00005128 ESpecType, ESpecRange.getBegin(),
5129 DynamicExceptions.data(),
5130 DynamicExceptionRanges.data(),
5131 DynamicExceptions.size(),
5132 NoexceptExpr.isUsable() ?
5133 NoexceptExpr.get() : 0,
Abramo Bagnara2fc03ca2012-10-15 21:05:46 +00005134 StartLoc, LocalEndLoc, D,
Douglas Gregor9e66af42011-07-05 16:44:18 +00005135 TrailingReturnType),
Richard Smith7bdcc4a2012-04-10 01:32:12 +00005136 FnAttrs, EndLoc);
James Molloy6f8780b2012-02-29 10:24:19 +00005137
5138 Actions.ActOnEndFunctionDeclarator();
Douglas Gregor9e66af42011-07-05 16:44:18 +00005139}
5140
5141/// isFunctionDeclaratorIdentifierList - This parameter list may have an
5142/// identifier list form for a K&R-style function: void foo(a,b,c)
5143///
5144/// Note that identifier-lists are only allowed for normal declarators, not for
5145/// abstract-declarators.
5146bool Parser::isFunctionDeclaratorIdentifierList() {
David Blaikiebbafb8a2012-03-11 07:00:24 +00005147 return !getLangOpts().CPlusPlus
Douglas Gregor9e66af42011-07-05 16:44:18 +00005148 && Tok.is(tok::identifier)
5149 && !TryAltiVecVectorToken()
5150 // K&R identifier lists can't have typedefs as identifiers, per C99
5151 // 6.7.5.3p11.
5152 && (TryAnnotateTypeOrScopeToken() || !Tok.is(tok::annot_typename))
5153 // Identifier lists follow a really simple grammar: the identifiers can
5154 // be followed *only* by a ", identifier" or ")". However, K&R
5155 // identifier lists are really rare in the brave new modern world, and
5156 // it is very common for someone to typo a type in a non-K&R style
5157 // list. If we are presented with something like: "void foo(intptr x,
5158 // float y)", we don't want to start parsing the function declarator as
5159 // though it is a K&R style declarator just because intptr is an
5160 // invalid type.
5161 //
5162 // To handle this, we check to see if the token after the first
5163 // identifier is a "," or ")". Only then do we parse it as an
5164 // identifier list.
5165 && (NextToken().is(tok::comma) || NextToken().is(tok::r_paren));
5166}
5167
5168/// ParseFunctionDeclaratorIdentifierList - While parsing a function declarator
5169/// we found a K&R-style identifier list instead of a typed parameter list.
5170///
5171/// After returning, ParamInfo will hold the parsed parameters.
5172///
5173/// identifier-list: [C99 6.7.5]
5174/// identifier
5175/// identifier-list ',' identifier
5176///
5177void Parser::ParseFunctionDeclaratorIdentifierList(
5178 Declarator &D,
Craig Topper5603df42013-07-05 19:34:19 +00005179 SmallVectorImpl<DeclaratorChunk::ParamInfo> &ParamInfo) {
Douglas Gregor9e66af42011-07-05 16:44:18 +00005180 // If there was no identifier specified for the declarator, either we are in
5181 // an abstract-declarator, or we are in a parameter declarator which was found
5182 // to be abstract. In abstract-declarators, identifier lists are not valid:
5183 // diagnose this.
5184 if (!D.getIdentifier())
5185 Diag(Tok, diag::ext_ident_list_in_param);
5186
5187 // Maintain an efficient lookup of params we have seen so far.
5188 llvm::SmallSet<const IdentifierInfo*, 16> ParamsSoFar;
5189
5190 while (1) {
5191 // If this isn't an identifier, report the error and skip until ')'.
5192 if (Tok.isNot(tok::identifier)) {
5193 Diag(Tok, diag::err_expected_ident);
5194 SkipUntil(tok::r_paren, /*StopAtSemi=*/true, /*DontConsume=*/true);
5195 // Forget we parsed anything.
5196 ParamInfo.clear();
5197 return;
5198 }
5199
5200 IdentifierInfo *ParmII = Tok.getIdentifierInfo();
5201
5202 // Reject 'typedef int y; int test(x, y)', but continue parsing.
5203 if (Actions.getTypeName(*ParmII, Tok.getLocation(), getCurScope()))
5204 Diag(Tok, diag::err_unexpected_typedef_ident) << ParmII;
5205
5206 // Verify that the argument identifier has not already been mentioned.
5207 if (!ParamsSoFar.insert(ParmII)) {
5208 Diag(Tok, diag::err_param_redefinition) << ParmII;
5209 } else {
5210 // Remember this identifier in ParamInfo.
5211 ParamInfo.push_back(DeclaratorChunk::ParamInfo(ParmII,
5212 Tok.getLocation(),
5213 0));
5214 }
5215
5216 // Eat the identifier.
5217 ConsumeToken();
5218
5219 // The list continues if we see a comma.
5220 if (Tok.isNot(tok::comma))
5221 break;
5222 ConsumeToken();
5223 }
5224}
5225
5226/// ParseParameterDeclarationClause - Parse a (possibly empty) parameter-list
5227/// after the opening parenthesis. This function will not parse a K&R-style
5228/// identifier list.
5229///
Richard Smith2620cd92012-04-11 04:01:28 +00005230/// D is the declarator being parsed. If FirstArgAttrs is non-null, then the
5231/// caller parsed those arguments immediately after the open paren - they should
5232/// be considered to be part of the first parameter.
Douglas Gregor9e66af42011-07-05 16:44:18 +00005233///
5234/// After returning, ParamInfo will hold the parsed parameters. EllipsisLoc will
5235/// be the location of the ellipsis, if any was parsed.
5236///
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00005237/// parameter-type-list: [C99 6.7.5]
5238/// parameter-list
5239/// parameter-list ',' '...'
Douglas Gregor9bfc2e52009-09-22 21:41:40 +00005240/// [C++] parameter-list '...'
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00005241///
5242/// parameter-list: [C99 6.7.5]
5243/// parameter-declaration
5244/// parameter-list ',' parameter-declaration
5245///
5246/// parameter-declaration: [C99 6.7.5]
5247/// declaration-specifiers declarator
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00005248/// [C++] declaration-specifiers declarator '=' assignment-expression
Sebastian Redldb63af22012-03-14 15:54:00 +00005249/// [C++11] initializer-clause
Chris Lattnere37e2332006-08-15 04:50:22 +00005250/// [GNU] declaration-specifiers declarator attributes
Sebastian Redlf769df52009-03-24 22:27:57 +00005251/// declaration-specifiers abstract-declarator[opt]
5252/// [C++] declaration-specifiers abstract-declarator[opt]
Chris Lattner58258242008-04-10 02:22:51 +00005253/// '=' assignment-expression
Chris Lattnere37e2332006-08-15 04:50:22 +00005254/// [GNU] declaration-specifiers abstract-declarator[opt] attributes
Richard Smith2620cd92012-04-11 04:01:28 +00005255/// [C++11] attribute-specifier-seq parameter-declaration
Chris Lattnerc0acd3d2006-07-31 05:13:43 +00005256///
Douglas Gregor9e66af42011-07-05 16:44:18 +00005257void Parser::ParseParameterDeclarationClause(
5258 Declarator &D,
Richard Smith2620cd92012-04-11 04:01:28 +00005259 ParsedAttributes &FirstArgAttrs,
Craig Topper5603df42013-07-05 19:34:19 +00005260 SmallVectorImpl<DeclaratorChunk::ParamInfo> &ParamInfo,
Douglas Gregor9e66af42011-07-05 16:44:18 +00005261 SourceLocation &EllipsisLoc) {
Manuel Klimek2fdbea22013-08-22 12:12:24 +00005262
Chris Lattner371ed4e2008-04-06 06:57:35 +00005263 while (1) {
5264 if (Tok.is(tok::ellipsis)) {
Richard Smith2620cd92012-04-11 04:01:28 +00005265 // FIXME: Issue a diagnostic if we parsed an attribute-specifier-seq
5266 // before deciding this was a parameter-declaration-clause.
Douglas Gregor94349fd2009-02-18 07:07:28 +00005267 EllipsisLoc = ConsumeToken(); // Consume the ellipsis.
Chris Lattner371ed4e2008-04-06 06:57:35 +00005268 break;
Chris Lattneracd58a32006-08-06 17:24:14 +00005269 }
Mike Stump11289f42009-09-09 15:08:12 +00005270
Chris Lattner371ed4e2008-04-06 06:57:35 +00005271 // Parse the declaration-specifiers.
John McCall28a6aea2009-11-04 02:18:39 +00005272 // Just use the ParsingDeclaration "scope" of the declarator.
John McCall084e83d2011-03-24 11:26:52 +00005273 DeclSpec DS(AttrFactory);
Douglas Gregore7a8e3b2011-10-12 16:37:45 +00005274
Richard Smith2620cd92012-04-11 04:01:28 +00005275 // Parse any C++11 attributes.
Richard Smith89645bc2013-01-02 12:01:23 +00005276 MaybeParseCXX11Attributes(DS.getAttributes());
Richard Smith2620cd92012-04-11 04:01:28 +00005277
John McCall53fa7142010-12-24 02:08:15 +00005278 // Skip any Microsoft attributes before a param.
Chad Rosierf8a2e702012-12-20 20:37:53 +00005279 MaybeParseMicrosoftAttributes(DS.getAttributes());
John McCall53fa7142010-12-24 02:08:15 +00005280
5281 SourceLocation DSStart = Tok.getLocation();
Chris Lattner8ff2c6c2008-10-20 02:05:46 +00005282
5283 // If the caller parsed attributes for the first argument, add them now.
John McCall53fa7142010-12-24 02:08:15 +00005284 // Take them so that we only apply the attributes to the first parameter.
Douglas Gregor9e66af42011-07-05 16:44:18 +00005285 // FIXME: If we can leave the attributes in the token stream somehow, we can
Richard Smith2620cd92012-04-11 04:01:28 +00005286 // get rid of a parameter (FirstArgAttrs) and this statement. It might be
5287 // too much hassle.
5288 DS.takeAttributesFrom(FirstArgAttrs);
John McCall53fa7142010-12-24 02:08:15 +00005289
Chris Lattnerde39c3e2009-02-27 18:38:20 +00005290 ParseDeclarationSpecifiers(DS);
Mike Stump11289f42009-09-09 15:08:12 +00005291
Manuel Klimek2fdbea22013-08-22 12:12:24 +00005292 // Parse the declarator. This is "PrototypeContext", because we must
5293 // accept either 'declarator' or 'abstract-declarator' here.
5294 Declarator ParmDecl(DS, Declarator::PrototypeContext);
5295 ParseDeclarator(ParmDecl);
Chris Lattner371ed4e2008-04-06 06:57:35 +00005296
5297 // Parse GNU attributes, if present.
Manuel Klimek2fdbea22013-08-22 12:12:24 +00005298 MaybeParseGNUAttributes(ParmDecl);
Mike Stump11289f42009-09-09 15:08:12 +00005299
Chris Lattner371ed4e2008-04-06 06:57:35 +00005300 // Remember this parsed parameter in ParamInfo.
Manuel Klimek2fdbea22013-08-22 12:12:24 +00005301 IdentifierInfo *ParmII = ParmDecl.getIdentifier();
Mike Stump11289f42009-09-09 15:08:12 +00005302
Douglas Gregor4d87df52008-12-16 21:30:33 +00005303 // DefArgToks is used when the parsing of default arguments needs
5304 // to be delayed.
5305 CachedTokens *DefArgToks = 0;
5306
Chris Lattner371ed4e2008-04-06 06:57:35 +00005307 // If no parameter was specified, verify that *something* was specified,
5308 // otherwise we have a missing type and identifier.
Manuel Klimek2fdbea22013-08-22 12:12:24 +00005309 if (DS.isEmpty() && ParmDecl.getIdentifier() == 0 &&
5310 ParmDecl.getNumTypeObjects() == 0) {
Chris Lattner371ed4e2008-04-06 06:57:35 +00005311 // Completely missing, emit error.
5312 Diag(DSStart, diag::err_missing_param);
5313 } else {
5314 // Otherwise, we have something. Add it and let semantic analysis try
5315 // to grok it and add the result to the ParamInfo we are building.
Mike Stump11289f42009-09-09 15:08:12 +00005316
Chris Lattner371ed4e2008-04-06 06:57:35 +00005317 // Inform the actions module about the parameter declarator, so it gets
5318 // added to the current scope.
Manuel Klimek2fdbea22013-08-22 12:12:24 +00005319 Decl *Param = Actions.ActOnParamDeclarator(getCurScope(), ParmDecl);
5320
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00005321 // Parse the default argument, if any. We parse the default
5322 // arguments in all dialects; the semantic analysis in
5323 // ActOnParamDefaultArgument will reject the default argument in
5324 // C.
5325 if (Tok.is(tok::equal)) {
Douglas Gregor58354032008-12-24 00:01:03 +00005326 SourceLocation EqualLoc = Tok.getLocation();
5327
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00005328 // Parse the default argument
Douglas Gregor4d87df52008-12-16 21:30:33 +00005329 if (D.getContext() == Declarator::MemberContext) {
5330 // If we're inside a class definition, cache the tokens
5331 // corresponding to the default argument. We'll actually parse
5332 // them when we see the end of the class definition.
Douglas Gregor4d87df52008-12-16 21:30:33 +00005333 // FIXME: Can we use a smart pointer for Toks?
5334 DefArgToks = new CachedTokens;
5335
Mike Stump11289f42009-09-09 15:08:12 +00005336 if (!ConsumeAndStoreUntil(tok::comma, tok::r_paren, *DefArgToks,
Argyrios Kyrtzidis8d7bdba2010-04-23 21:20:12 +00005337 /*StopAtSemi=*/true,
5338 /*ConsumeFinalToken=*/false)) {
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,
Manuel Klimek2fdbea22013-08-22 12:12:24 +00005381 ParmDecl.getIdentifierLoc(), Param,
5382 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}