blob: 5d47d3d9b80f4a18df00b63f5672558da3b938b8 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- ParseDecl.cpp - Declaration Parsing ------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Declaration portions of the Parser interfaces.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/Parse/Parser.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000015#include "RAIIObjectsForParser.h"
Larisse Voufo7c64ef02013-06-21 00:08:46 +000016#include "clang/AST/DeclTemplate.h"
Benjamin Kramer9852f582012-12-01 16:35:25 +000017#include "clang/Basic/AddressSpaces.h"
Jordan Rose3f6f51e2013-02-08 22:30:41 +000018#include "clang/Basic/CharInfo.h"
Peter Collingbourne207f4d82011-03-18 22:38:29 +000019#include "clang/Basic/OpenCL.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000020#include "clang/Parse/ParseDiagnostic.h"
Kaelyn Uhrainaec2ac62012-04-26 23:36:17 +000021#include "clang/Sema/Lookup.h"
John McCall19510852010-08-20 18:27:03 +000022#include "clang/Sema/ParsedTemplate.h"
John McCallf312b1e2010-08-26 23:41:50 +000023#include "clang/Sema/PrettyDeclStackTrace.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000024#include "clang/Sema/Scope.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000025#include "llvm/ADT/SmallSet.h"
Benjamin Kramer8fe83e12012-02-04 13:45:25 +000026#include "llvm/ADT/SmallString.h"
Caitlin Sadowskib51e0312011-08-09 17:59:31 +000027#include "llvm/ADT/StringSwitch.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000028using namespace clang;
29
30//===----------------------------------------------------------------------===//
31// C99 6.7: Declarations.
32//===----------------------------------------------------------------------===//
33
34/// ParseTypeName
35/// type-name: [C99 6.7.6]
36/// specifier-qualifier-list abstract-declarator[opt]
Sebastian Redl4c5d3202008-11-21 19:14:01 +000037///
38/// Called type-id in C++.
Douglas Gregor683a81f2011-01-31 16:09:46 +000039TypeResult Parser::ParseTypeName(SourceRange *Range,
John McCallf85e1932011-06-15 23:02:42 +000040 Declarator::TheContext Context,
Richard Smithc89edf52011-07-01 19:46:12 +000041 AccessSpecifier AS,
Richard Smith6b3d3e52013-02-20 19:22:51 +000042 Decl **OwnedType,
43 ParsedAttributes *Attrs) {
Richard Smith6d96d3a2012-03-15 01:02:11 +000044 DeclSpecContext DSC = getDeclSpecContextFromDeclaratorContext(Context);
Richard Smitha971d242012-05-09 20:55:26 +000045 if (DSC == DSC_normal)
46 DSC = DSC_type_specifier;
Richard Smith7796eb52012-03-12 08:56:40 +000047
Reid Spencer5f016e22007-07-11 17:01:13 +000048 // Parse the common declaration-specifiers piece.
John McCall0b7e6782011-03-24 11:26:52 +000049 DeclSpec DS(AttrFactory);
Richard Smith6b3d3e52013-02-20 19:22:51 +000050 if (Attrs)
51 DS.addAttributes(Attrs->getList());
Richard Smith7796eb52012-03-12 08:56:40 +000052 ParseSpecifierQualifierList(DS, AS, DSC);
Richard Smithc89edf52011-07-01 19:46:12 +000053 if (OwnedType)
54 *OwnedType = DS.isTypeSpecOwned() ? DS.getRepAsDecl() : 0;
Sebastian Redlef65f062009-05-29 18:02:33 +000055
Reid Spencer5f016e22007-07-11 17:01:13 +000056 // Parse the abstract-declarator, if present.
Douglas Gregor683a81f2011-01-31 16:09:46 +000057 Declarator DeclaratorInfo(DS, Context);
Reid Spencer5f016e22007-07-11 17:01:13 +000058 ParseDeclarator(DeclaratorInfo);
Sebastian Redlef65f062009-05-29 18:02:33 +000059 if (Range)
60 *Range = DeclaratorInfo.getSourceRange();
61
Chris Lattnereaaebc72009-04-25 08:06:05 +000062 if (DeclaratorInfo.isInvalidType())
Douglas Gregor809070a2009-02-18 17:45:20 +000063 return true;
64
Douglas Gregor23c94db2010-07-02 17:43:08 +000065 return Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
Reid Spencer5f016e22007-07-11 17:01:13 +000066}
67
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +000068
69/// isAttributeLateParsed - Return true if the attribute has arguments that
70/// require late parsing.
71static bool isAttributeLateParsed(const IdentifierInfo &II) {
72 return llvm::StringSwitch<bool>(II.getName())
73#include "clang/Parse/AttrLateParsed.inc"
74 .Default(false);
75}
76
Sean Huntbbd37c62009-11-21 08:43:09 +000077/// ParseGNUAttributes - Parse a non-empty attributes list.
Reid Spencer5f016e22007-07-11 17:01:13 +000078///
79/// [GNU] attributes:
80/// attribute
81/// attributes attribute
82///
83/// [GNU] attribute:
84/// '__attribute__' '(' '(' attribute-list ')' ')'
85///
86/// [GNU] attribute-list:
87/// attrib
88/// attribute_list ',' attrib
89///
90/// [GNU] attrib:
91/// empty
92/// attrib-name
93/// attrib-name '(' identifier ')'
94/// attrib-name '(' identifier ',' nonempty-expr-list ')'
95/// attrib-name '(' argument-expression-list [C99 6.5.2] ')'
96///
97/// [GNU] attrib-name:
98/// identifier
99/// typespec
100/// typequal
101/// storageclass
Mike Stump1eb44332009-09-09 15:08:12 +0000102///
Richard Smith4c6c4112013-09-03 18:57:36 +0000103/// Whether an attribute takes an 'identifier' is determined by the
104/// attrib-name. GCC's behavior here is not worth imitating:
Reid Spencer5f016e22007-07-11 17:01:13 +0000105///
Richard Smith4c6c4112013-09-03 18:57:36 +0000106/// * In C mode, if the attribute argument list starts with an identifier
107/// followed by a ',' or an ')', and the identifier doesn't resolve to
108/// a type, it is parsed as an identifier. If the attribute actually
109/// wanted an expression, it's out of luck (but it turns out that no
110/// attributes work that way, because C constant expressions are very
111/// limited).
112/// * In C++ mode, if the attribute argument list starts with an identifier,
113/// and the attribute *wants* an identifier, it is parsed as an identifier.
114/// At block scope, any additional tokens between the identifier and the
115/// ',' or ')' are ignored, otherwise they produce a parse error.
Richard Smithfe0a0fb2011-10-17 21:20:17 +0000116///
Richard Smith4c6c4112013-09-03 18:57:36 +0000117/// We follow the C++ model, but don't allow junk after the identifier.
John McCall7f040a92010-12-24 02:08:15 +0000118void Parser::ParseGNUAttributes(ParsedAttributes &attrs,
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000119 SourceLocation *endLoc,
120 LateParsedAttrList *LateAttrs) {
Sean Huntbbd37c62009-11-21 08:43:09 +0000121 assert(Tok.is(tok::kw___attribute) && "Not a GNU attribute list!");
Mike Stump1eb44332009-09-09 15:08:12 +0000122
Chris Lattner04d66662007-10-09 17:33:22 +0000123 while (Tok.is(tok::kw___attribute)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000124 ConsumeToken();
125 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after,
126 "attribute")) {
127 SkipUntil(tok::r_paren, true); // skip until ) or ;
John McCall7f040a92010-12-24 02:08:15 +0000128 return;
Reid Spencer5f016e22007-07-11 17:01:13 +0000129 }
130 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after, "(")) {
131 SkipUntil(tok::r_paren, true); // skip until ) or ;
John McCall7f040a92010-12-24 02:08:15 +0000132 return;
Reid Spencer5f016e22007-07-11 17:01:13 +0000133 }
134 // Parse the attribute-list. e.g. __attribute__(( weak, alias("__f") ))
Chris Lattner04d66662007-10-09 17:33:22 +0000135 while (Tok.is(tok::identifier) || isDeclarationSpecifier() ||
136 Tok.is(tok::comma)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000137 if (Tok.is(tok::comma)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000138 // allows for empty/non-empty attributes. ((__vector_size__(16),,,,))
139 ConsumeToken();
140 continue;
141 }
142 // we have an identifier or declaration specifier (const, int, etc.)
143 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
144 SourceLocation AttrNameLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000145
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000146 if (Tok.is(tok::l_paren)) {
147 // handle "parameterized" attributes
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +0000148 if (LateAttrs && isAttributeLateParsed(*AttrName)) {
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000149 LateParsedAttribute *LA =
150 new LateParsedAttribute(this, *AttrName, AttrNameLoc);
151 LateAttrs->push_back(LA);
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +0000152
Bill Wendlingad017fa2012-12-20 19:22:21 +0000153 // Attributes in a class are parsed at the end of the class, along
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +0000154 // with other late-parsed declarations.
DeLesley Hutchins161db022012-11-02 21:44:32 +0000155 if (!ClassStack.empty() && !LateAttrs->parseSoon())
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +0000156 getCurrentClass().LateParsedDeclarations.push_back(LA);
Mike Stump1eb44332009-09-09 15:08:12 +0000157
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000158 // consume everything up to and including the matching right parens
159 ConsumeAndStoreUntil(tok::r_paren, LA->Toks, true, false);
Mike Stump1eb44332009-09-09 15:08:12 +0000160
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000161 Token Eof;
162 Eof.startToken();
163 Eof.setLocation(Tok.getLocation());
164 LA->Toks.push_back(Eof);
165 } else {
Michael Han6880f492012-10-03 01:56:22 +0000166 ParseGNUAttributeArgs(AttrName, AttrNameLoc, attrs, endLoc,
Michael Han45bed132012-10-04 16:42:52 +0000167 0, SourceLocation(), AttributeList::AS_GNU);
Reid Spencer5f016e22007-07-11 17:01:13 +0000168 }
169 } else {
Aaron Ballman624421f2013-08-31 01:11:41 +0000170 attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0, 0,
171 AttributeList::AS_GNU);
Reid Spencer5f016e22007-07-11 17:01:13 +0000172 }
173 }
174 if (ExpectAndConsume(tok::r_paren, diag::err_expected_rparen))
Reid Spencer5f016e22007-07-11 17:01:13 +0000175 SkipUntil(tok::r_paren, false);
Sean Huntbbd37c62009-11-21 08:43:09 +0000176 SourceLocation Loc = Tok.getLocation();
Sebastian Redlab197ba2009-02-09 18:23:29 +0000177 if (ExpectAndConsume(tok::r_paren, diag::err_expected_rparen)) {
178 SkipUntil(tok::r_paren, false);
179 }
John McCall7f040a92010-12-24 02:08:15 +0000180 if (endLoc)
181 *endLoc = Loc;
Reid Spencer5f016e22007-07-11 17:01:13 +0000182 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000183}
184
Douglas Gregor92eb7d82013-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 Sadowskieff98fc2011-09-08 17:42:22 +0000191
Richard Smith8edabd92013-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 Han6880f492012-10-03 01:56:22 +0000201/// Parse the arguments to a parameterized GNU attribute or
202/// a C++11 attribute in "gnu" namespace.
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000203void Parser::ParseGNUAttributeArgs(IdentifierInfo *AttrName,
204 SourceLocation AttrNameLoc,
205 ParsedAttributes &Attrs,
Michael Han6880f492012-10-03 01:56:22 +0000206 SourceLocation *EndLoc,
207 IdentifierInfo *ScopeName,
208 SourceLocation ScopeLoc,
209 AttributeList::Syntax Syntax) {
Caitlin Sadowskieff98fc2011-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 Gribenko0d5a0692012-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 Sadowskieff98fc2011-09-08 17:42:22 +0000229
230 ConsumeParen(); // ignore the left paren loc for now
231
Richard Smithfe0a0fb2011-10-17 21:20:17 +0000232 bool BuiltinType = false;
Aaron Ballman624421f2013-08-31 01:11:41 +0000233 ArgsVector ArgExprs;
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000234
Joey Gouly37453b92013-03-08 09:42:32 +0000235 TypeResult T;
236 SourceRange TypeRange;
237 bool TypeParsed = false;
238
Richard Smithfe0a0fb2011-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 Smith5a5a9712012-04-04 06:24:32 +0000249 case tok::kw___int128:
Richard Smithfe0a0fb2011-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 Smithfe0a0fb2011-10-17 21:20:17 +0000257 BuiltinType = true;
Joey Gouly37453b92013-03-08 09:42:32 +0000258 T = ParseTypeName(&TypeRange);
259 TypeParsed = true;
Richard Smithfe0a0fb2011-10-17 21:20:17 +0000260 break;
261
Aaron Ballman624421f2013-08-31 01:11:41 +0000262 case tok::identifier: {
Joey Gouly37453b92013-03-08 09:42:32 +0000263 if (AttrName->isStr("vec_type_hint")) {
264 T = ParseTypeName(&TypeRange);
265 TypeParsed = true;
266 break;
267 }
Richard Smith4c6c4112013-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 Gregor92eb7d82013-05-02 23:25:32 +0000270 if (attributeHasExprArgs(*AttrName))
271 break;
Aaron Ballman624421f2013-08-31 01:11:41 +0000272
Richard Smith8edabd92013-09-03 18:01:40 +0000273 ArgExprs.push_back(ParseIdentifierLoc());
Aaron Ballman624421f2013-08-31 01:11:41 +0000274 } break;
Richard Smithfe0a0fb2011-10-17 21:20:17 +0000275
276 default:
277 break;
278 }
279
Joey Gouly37453b92013-03-08 09:42:32 +0000280 bool isInvalid = false;
281 bool isParmType = false;
Richard Smithfe0a0fb2011-10-17 21:20:17 +0000282
Joey Gouly37453b92013-03-08 09:42:32 +0000283 if (!BuiltinType && !AttrName->isStr("vec_type_hint") &&
Aaron Ballman624421f2013-08-31 01:11:41 +0000284 (!ArgExprs.empty() ? Tok.is(tok::comma) : Tok.isNot(tok::r_paren))) {
Richard Smithfe0a0fb2011-10-17 21:20:17 +0000285 // Eat the comma.
Aaron Ballman624421f2013-08-31 01:11:41 +0000286 if (!ArgExprs.empty())
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000287 ConsumeToken();
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000288
Richard Smithfe0a0fb2011-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 Sadowskieff98fc2011-09-08 17:42:22 +0000295 }
Richard Smithfe0a0fb2011-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 Sadowskieff98fc2011-09-08 17:42:22 +0000300 }
Richard Smithfe0a0fb2011-10-17 21:20:17 +0000301 }
Fariborz Jahanian7a81e412011-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 Jahanianb2243432011-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 Jahanian7a81e412011-10-18 17:11:10 +0000316 SkipUntil(tok::r_paren, false, true); // skip until ')'
317 }
Joey Gouly37453b92013-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 Jahanian7a81e412011-10-18 17:11:10 +0000327 }
Richard Smithfe0a0fb2011-10-17 21:20:17 +0000328
329 SourceLocation RParen = Tok.getLocation();
Joey Gouly37453b92013-03-08 09:42:32 +0000330 if (!ExpectAndConsume(tok::r_paren, diag::err_expected_rparen) &&
331 !isInvalid) {
Michael Han45bed132012-10-04 16:42:52 +0000332 SourceLocation AttrLoc = ScopeLoc.isValid() ? ScopeLoc : AttrNameLoc;
Joey Gouly37453b92013-03-08 09:42:32 +0000333 if (isParmType) {
Joey Gouly37453b92013-03-08 09:42:32 +0000334 Attrs.addNewTypeAttr(AttrName, SourceRange(AttrLoc, RParen), ScopeName,
Aaron Ballman624421f2013-08-31 01:11:41 +0000335 ScopeLoc, T.get(), Syntax);
Joey Gouly37453b92013-03-08 09:42:32 +0000336 } else {
337 AttributeList *attr = Attrs.addNew(
Aaron Ballman624421f2013-08-31 01:11:41 +0000338 AttrName, SourceRange(AttrLoc, RParen), ScopeName, ScopeLoc,
339 ArgExprs.data(), ArgExprs.size(), Syntax);
Joey Gouly37453b92013-03-08 09:42:32 +0000340 if (BuiltinType &&
341 attr->getKind() == AttributeList::AT_IBOutletCollection)
342 Diag(Tok, diag::err_iboutletcollection_builtintype);
343 }
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000344 }
345}
346
Chad Rosier8decdee2012-06-26 22:30:43 +0000347/// \brief Parses a single argument for a declspec, including the
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000348/// surrounding parens.
Chad Rosier8decdee2012-06-26 22:30:43 +0000349void Parser::ParseMicrosoftDeclSpecWithSingleArg(IdentifierInfo *AttrName,
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000350 SourceLocation AttrNameLoc,
351 ParsedAttributes &Attrs)
352{
353 BalancedDelimiterTracker T(*this, tok::l_paren);
Chad Rosier8decdee2012-06-26 22:30:43 +0000354 if (T.expectAndConsume(diag::err_expected_lparen_after,
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000355 AttrName->getNameStart(), tok::r_paren))
356 return;
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000357
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000358 ExprResult ArgExpr(ParseConstantExpression());
359 if (ArgExpr.isInvalid()) {
360 T.skipToEnd();
361 return;
362 }
Aaron Ballman624421f2013-08-31 01:11:41 +0000363 ArgsUnion ExprList = ArgExpr.take();
364 Attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, &ExprList, 1,
365 AttributeList::AS_Declspec);
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000366
367 T.consumeClose();
368}
369
Chad Rosier8decdee2012-06-26 22:30:43 +0000370/// \brief Determines whether a declspec is a "simple" one requiring no
Aaron Ballmanfc685ac2012-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 Ballman3ce0de62013-05-04 16:58:37 +0000388 .Case("safebuffers", true )
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000389 .Default(false);
390}
391
Chad Rosier8decdee2012-06-26 22:30:43 +0000392/// \brief Attempts to parse a declspec which is not simple (one that takes
Aaron Ballmanfc685ac2012-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 Rosier8decdee2012-06-26 22:30:43 +0000395void Parser::ParseComplexMicrosoftDeclSpec(IdentifierInfo *Ident,
Aaron Ballmanfc685ac2012-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 Rosier8decdee2012-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 Ballmanfc685ac2012-06-19 22:09:27 +0000409 // not.
410 if (Tok.getKind() == tok::l_paren)
411 ParseMicrosoftDeclSpecWithSingleArg(Ident, Loc, Attrs);
412 else
Aaron Ballman624421f2013-08-31 01:11:41 +0000413 Attrs.addNew(Ident, Loc, 0, Loc, 0, 0, AttributeList::AS_Declspec);
Aaron Ballmanfc685ac2012-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 Rosier8decdee2012-06-26 22:30:43 +0000416 // assignment expressions as a parameter, but the lhs of the assignment
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000417 // must be named get or put.
John McCall76da55d2013-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 Ballmanfc685ac2012-06-19 22:09:27 +0000421 return;
John McCall76da55d2013-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 Ballman624421f2013-08-31 01:11:41 +0000526 Attrs.addNewPropertyAttr(Ident, Loc, 0, SourceLocation(),
John McCall76da55d2013-04-16 07:28:30 +0000527 AccessorNames[AK_Get], AccessorNames[AK_Put],
528 AttributeList::AS_Declspec);
529 }
Aaron Ballmanfc685ac2012-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 Rosier8decdee2012-06-26 22:30:43 +0000536 // attribute, we'd have to split the valid declspec spelling logic into
Aaron Ballmanfc685ac2012-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 Friedmana23b4852009-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 Ballmanfc685ac2012-06-19 22:09:27 +0000554void Parser::ParseMicrosoftDeclSpec(ParsedAttributes &Attrs) {
Steve Narofff59e17e2008-12-24 20:59:21 +0000555 assert(Tok.is(tok::kw___declspec) && "Not a declspec!");
Eli Friedmana23b4852009-06-08 07:21:15 +0000556
Steve Narofff59e17e2008-12-24 20:59:21 +0000557 ConsumeToken();
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000558 BalancedDelimiterTracker T(*this, tok::l_paren);
Chad Rosier8decdee2012-06-26 22:30:43 +0000559 if (T.expectAndConsume(diag::err_expected_lparen_after, "__declspec",
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000560 tok::r_paren))
John McCall7f040a92010-12-24 02:08:15 +0000561 return;
Jakob Stoklund Olesen35329362012-06-19 21:48:43 +0000562
Chad Rosier8decdee2012-06-26 22:30:43 +0000563 // An empty declspec is perfectly legal and should not warn. Additionally,
Aaron Ballmanfc685ac2012-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 Rosier8decdee2012-06-26 22:30:43 +0000569 if (!IsString && Tok.getKind() != tok::identifier &&
Aaron Ballmanfc685ac2012-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 Olesen35329362012-06-19 21:48:43 +0000574 }
Aaron Ballmanfc685ac2012-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 Olesen35329362012-06-19 21:48:43 +0000585 }
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000586 AttrName = PP.getIdentifierInfo(Str);
587 AttrNameLoc = ConsumeStringToken();
Jakob Stoklund Olesen35329362012-06-19 21:48:43 +0000588 } else {
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000589 AttrName = Tok.getIdentifierInfo();
590 AttrNameLoc = ConsumeToken();
Jakob Stoklund Olesen35329362012-06-19 21:48:43 +0000591 }
Chad Rosier8decdee2012-06-26 22:30:43 +0000592
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000593 if (IsString || IsSimpleMicrosoftDeclSpec(AttrName))
Chad Rosier8decdee2012-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 Ballmanfc685ac2012-06-19 22:09:27 +0000596 // (for instance, SAL declspecs in older versions of MSVC).
597 //
Chad Rosier8decdee2012-06-26 22:30:43 +0000598 // Alternatively, if the identifier is a simple one, then it requires no
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000599 // arguments and can be turned into an attribute directly.
Aaron Ballman624421f2013-08-31 01:11:41 +0000600 Attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0, 0,
601 AttributeList::AS_Declspec);
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000602 else
603 ParseComplexMicrosoftDeclSpec(AttrName, AttrNameLoc, Attrs);
Jakob Stoklund Olesen35329362012-06-19 21:48:43 +0000604 }
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000605 T.consumeClose();
Eli Friedman290eeb02009-06-08 23:27:34 +0000606}
607
John McCall7f040a92010-12-24 02:08:15 +0000608void Parser::ParseMicrosoftTypeAttributes(ParsedAttributes &attrs) {
Eli Friedman290eeb02009-06-08 23:27:34 +0000609 // Treat these like attributes
Eli Friedman290eeb02009-06-08 23:27:34 +0000610 while (Tok.is(tok::kw___fastcall) || Tok.is(tok::kw___stdcall) ||
Douglas Gregorf813a2c2010-05-18 16:57:00 +0000611 Tok.is(tok::kw___thiscall) || Tok.is(tok::kw___cdecl) ||
Francois Pichet3bd9aa42011-08-18 09:59:55 +0000612 Tok.is(tok::kw___ptr64) || Tok.is(tok::kw___w64) ||
Aaron Ballmanaa9df092013-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 Friedman290eeb02009-06-08 23:27:34 +0000615 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
616 SourceLocation AttrNameLoc = ConsumeToken();
Aaron Ballman624421f2013-08-31 01:11:41 +0000617 attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0, 0,
618 AttributeList::AS_Keyword);
Eli Friedman290eeb02009-06-08 23:27:34 +0000619 }
Steve Narofff59e17e2008-12-24 20:59:21 +0000620}
621
John McCall7f040a92010-12-24 02:08:15 +0000622void Parser::ParseBorlandTypeAttributes(ParsedAttributes &attrs) {
Dawn Perchik52fc3142010-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 Ballman624421f2013-08-31 01:11:41 +0000627 attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0, 0,
628 AttributeList::AS_Keyword);
Dawn Perchik52fc3142010-09-03 01:29:35 +0000629 }
John McCall7f040a92010-12-24 02:08:15 +0000630}
631
Peter Collingbournef315fa82011-02-14 01:42:53 +0000632void Parser::ParseOpenCLAttributes(ParsedAttributes &attrs) {
633 // Treat these like attributes
634 while (Tok.is(tok::kw___kernel)) {
Richard Smith5cd532c2013-01-29 01:24:26 +0000635 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
Peter Collingbournef315fa82011-02-14 01:42:53 +0000636 SourceLocation AttrNameLoc = ConsumeToken();
Aaron Ballman624421f2013-08-31 01:11:41 +0000637 attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0, 0,
638 AttributeList::AS_Keyword);
Peter Collingbournef315fa82011-02-14 01:42:53 +0000639 }
640}
641
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000642void Parser::ParseOpenCLQualifiers(DeclSpec &DS) {
Richard Smith5cd532c2013-01-29 01:24:26 +0000643 // FIXME: The mapping from attribute spelling to semantics should be
644 // performed in Sema, not here.
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000645 SourceLocation Loc = Tok.getLocation();
646 switch(Tok.getKind()) {
647 // OpenCL qualifiers:
648 case tok::kw___private:
Chad Rosier8decdee2012-06-26 22:30:43 +0000649 case tok::kw_private:
John McCall0b7e6782011-03-24 11:26:52 +0000650 DS.getAttributes().addNewInteger(
Chad Rosier8decdee2012-06-26 22:30:43 +0000651 Actions.getASTContext(),
John McCall0b7e6782011-03-24 11:26:52 +0000652 PP.getIdentifierInfo("address_space"), Loc, 0);
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000653 break;
Chad Rosier8decdee2012-06-26 22:30:43 +0000654
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000655 case tok::kw___global:
John McCall0b7e6782011-03-24 11:26:52 +0000656 DS.getAttributes().addNewInteger(
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000657 Actions.getASTContext(),
John McCall0b7e6782011-03-24 11:26:52 +0000658 PP.getIdentifierInfo("address_space"), Loc, LangAS::opencl_global);
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000659 break;
Chad Rosier8decdee2012-06-26 22:30:43 +0000660
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000661 case tok::kw___local:
John McCall0b7e6782011-03-24 11:26:52 +0000662 DS.getAttributes().addNewInteger(
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000663 Actions.getASTContext(),
John McCall0b7e6782011-03-24 11:26:52 +0000664 PP.getIdentifierInfo("address_space"), Loc, LangAS::opencl_local);
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000665 break;
Chad Rosier8decdee2012-06-26 22:30:43 +0000666
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000667 case tok::kw___constant:
John McCall0b7e6782011-03-24 11:26:52 +0000668 DS.getAttributes().addNewInteger(
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000669 Actions.getASTContext(),
John McCall0b7e6782011-03-24 11:26:52 +0000670 PP.getIdentifierInfo("address_space"), Loc, LangAS::opencl_constant);
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000671 break;
Chad Rosier8decdee2012-06-26 22:30:43 +0000672
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000673 case tok::kw___read_only:
John McCall0b7e6782011-03-24 11:26:52 +0000674 DS.getAttributes().addNewInteger(
Chad Rosier8decdee2012-06-26 22:30:43 +0000675 Actions.getASTContext(),
John McCall0b7e6782011-03-24 11:26:52 +0000676 PP.getIdentifierInfo("opencl_image_access"), Loc, CLIA_read_only);
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000677 break;
Chad Rosier8decdee2012-06-26 22:30:43 +0000678
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000679 case tok::kw___write_only:
John McCall0b7e6782011-03-24 11:26:52 +0000680 DS.getAttributes().addNewInteger(
Chad Rosier8decdee2012-06-26 22:30:43 +0000681 Actions.getASTContext(),
John McCall0b7e6782011-03-24 11:26:52 +0000682 PP.getIdentifierInfo("opencl_image_access"), Loc, CLIA_write_only);
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000683 break;
Chad Rosier8decdee2012-06-26 22:30:43 +0000684
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000685 case tok::kw___read_write:
John McCall0b7e6782011-03-24 11:26:52 +0000686 DS.getAttributes().addNewInteger(
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000687 Actions.getASTContext(),
John McCall0b7e6782011-03-24 11:26:52 +0000688 PP.getIdentifierInfo("opencl_image_access"), Loc, CLIA_read_write);
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000689 break;
690 default: break;
691 }
692}
693
Douglas Gregor0a0d2b12011-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 Noblesmithf7ccbad2012-02-05 02:13:05 +0000713 SmallString<512> Buffer;
Douglas Gregor0a0d2b12011-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 Rose3f6f51e2013-02-08 22:30:41 +0000726 while (AfterMajor < ActualLength && isDigit(ThisTokBegin[AfterMajor])) {
Douglas Gregor0a0d2b12011-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 Rose3f6f51e2013-02-08 22:30:41 +0000758 while (AfterMinor < ActualLength && isDigit(ThisTokBegin[AfterMinor])) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000759 Minor = Minor * 10 + ThisTokBegin[AfterMinor] - '0';
760 ++AfterMinor;
761 }
762
763 if (AfterMinor == ActualLength) {
764 ConsumeToken();
Chad Rosier8decdee2012-06-26 22:30:43 +0000765
Douglas Gregor0a0d2b12011-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 Rosier8decdee2012-06-26 22:30:43 +0000772 return VersionTuple(Major, Minor);
Douglas Gregor0a0d2b12011-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 Rosier8decdee2012-06-26 22:30:43 +0000779 return VersionTuple();
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000780 }
781
782 // Parse the subminor version.
783 unsigned AfterSubminor = AfterMinor + 1;
784 unsigned Subminor = 0;
Jordan Rose3f6f51e2013-02-08 22:30:41 +0000785 while (AfterSubminor < ActualLength && isDigit(ThisTokBegin[AfterSubminor])) {
Douglas Gregor0a0d2b12011-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 Jahanian006e42f2011-12-10 00:28:41 +0000802/// 'availability' '(' platform ',' version-arg-list, opt-message')'
Douglas Gregor0a0d2b12011-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 Gregor93a70672012-03-11 04:53:21 +0000814/// 'obsoleted' = version
Douglas Gregorb53e4172011-03-26 03:35:55 +0000815/// 'unavailable'
Fariborz Jahanian006e42f2011-12-10 00:28:41 +0000816/// opt-message:
817/// 'message' '=' <string>
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000818void Parser::ParseAvailabilityAttribute(IdentifierInfo &Availability,
819 SourceLocation AvailabilityLoc,
820 ParsedAttributes &attrs,
821 SourceLocation *endLoc) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000822 enum { Introduced, Deprecated, Obsoleted, Unknown };
823 AvailabilityChange Changes[Unknown];
Fariborz Jahanian006e42f2011-12-10 00:28:41 +0000824 ExprResult MessageExpr;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000825
826 // Opening '('.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000827 BalancedDelimiterTracker T(*this, tok::l_paren);
828 if (T.consumeOpen()) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000829 Diag(Tok, diag::err_expected_lparen);
830 return;
831 }
Douglas Gregor0a0d2b12011-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 Smith8edabd92013-09-03 18:01:40 +0000839 IdentifierLoc *Platform = ParseIdentifierLoc();
Douglas Gregor0a0d2b12011-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 Gregorb53e4172011-03-26 03:35:55 +0000851 Ident_unavailable = PP.getIdentifierInfo("unavailable");
Fariborz Jahanian006e42f2011-12-10 00:28:41 +0000852 Ident_message = PP.getIdentifierInfo("message");
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000853 }
854
855 // Parse the set of introductions/deprecations/removals.
Douglas Gregorb53e4172011-03-26 03:35:55 +0000856 SourceLocation UnavailableLoc;
Douglas Gregor0a0d2b12011-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 Gregorb53e4172011-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 Rosier8decdee2012-06-26 22:30:43 +0000870 }
Douglas Gregorb53e4172011-03-26 03:35:55 +0000871 UnavailableLoc = KeywordLoc;
872
873 if (Tok.isNot(tok::comma))
874 break;
875
876 ConsumeToken();
877 continue;
Chad Rosier8decdee2012-06-26 22:30:43 +0000878 }
879
Douglas Gregor0a0d2b12011-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 Jahanian006e42f2011-12-10 00:28:41 +0000887 if (Keyword == Ident_message) {
888 if (!isTokenStringLiteral()) {
Andy Gibbs97f84612012-11-17 19:16:52 +0000889 Diag(Tok, diag::err_expected_string_literal)
890 << /*Source='availability attribute'*/2;
Fariborz Jahanian006e42f2011-12-10 00:28:41 +0000891 SkipUntil(tok::r_paren);
892 return;
893 }
894 MessageExpr = ParseStringLiteralExpression();
895 break;
896 }
Chad Rosier8decdee2012-06-26 22:30:43 +0000897
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000898 SourceRange VersionRange;
899 VersionTuple Version = ParseVersionTuple(VersionRange);
Chad Rosier8decdee2012-06-26 22:30:43 +0000900
Douglas Gregor0a0d2b12011-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 Rosier8decdee2012-06-26 22:30:43 +0000913 else
Douglas Gregor0a0d2b12011-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 Rosier8decdee2012-06-26 22:30:43 +0000919 << Keyword
Douglas Gregor0a0d2b12011-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 Gregor4a8dfb52011-10-12 16:37:45 +0000939 if (T.consumeClose())
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000940 return;
941
942 if (endLoc)
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000943 *endLoc = T.getCloseLocation();
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000944
Douglas Gregorb53e4172011-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 Gregor0a0d2b12011-03-23 00:50:03 +0000964 // Record this attribute
Chad Rosier8decdee2012-06-26 22:30:43 +0000965 attrs.addNew(&Availability,
966 SourceRange(AvailabilityLoc, T.getCloseLocation()),
Fariborz Jahanianf96708d2012-01-23 23:38:32 +0000967 0, AvailabilityLoc,
Aaron Ballman624421f2013-08-31 01:11:41 +0000968 Platform,
John McCall0b7e6782011-03-24 11:26:52 +0000969 Changes[Introduced],
970 Changes[Deprecated],
Chad Rosier8decdee2012-06-26 22:30:43 +0000971 Changes[Obsoleted],
Fariborz Jahanian006e42f2011-12-10 00:28:41 +0000972 UnavailableLoc, MessageExpr.take(),
Sean Hunt93f95f22012-06-18 16:13:52 +0000973 AttributeList::AS_GNU);
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000974}
975
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000976
Bill Wendlingad017fa2012-12-20 19:22:21 +0000977// Late Parsed Attributes:
Caitlin Sadowskieff98fc2011-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 Hutchinsc24a2332012-02-16 16:50:43 +0000987 Self->ParseLexedAttribute(*this, true, false);
Caitlin Sadowskieff98fc2011-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 Gregorcefc3af2012-04-16 07:05:22 +00001001 // Set or update the scope flags.
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001002 bool AlreadyHasClassScope = Class.TopLevelClass;
Douglas Gregorcefc3af2012-04-16 07:05:22 +00001003 unsigned ScopeFlags = Scope::ClassScope|Scope::DeclScope;
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001004 ParseScope ClassScope(this, ScopeFlags, !AlreadyHasClassScope);
1005 ParseScopeFlags ClassScopeFlags(this, ScopeFlags, AlreadyHasClassScope);
1006
DeLesley Hutchinscf2fa2f2012-04-06 15:10:17 +00001007 // Enter the scope of nested classes
1008 if (!AlreadyHasClassScope)
1009 Actions.ActOnStartDelayedMemberDeclarations(getCurScope(),
1010 Class.TagOrTemplate);
Benjamin Kramer268efba2012-05-17 12:01:52 +00001011 if (!Class.LateParsedDeclarations.empty()) {
Douglas Gregorcefc3af2012-04-16 07:05:22 +00001012 for (unsigned i = 0, ni = Class.LateParsedDeclarations.size(); i < ni; ++i){
1013 Class.LateParsedDeclarations[i]->ParseLexedAttributes();
1014 }
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001015 }
Chad Rosier8decdee2012-06-26 22:30:43 +00001016
DeLesley Hutchinscf2fa2f2012-04-06 15:10:17 +00001017 if (!AlreadyHasClassScope)
1018 Actions.ActOnFinishDelayedMemberDeclarations(getCurScope(),
1019 Class.TagOrTemplate);
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001020}
1021
DeLesley Hutchinsc24a2332012-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 Hutchins161db022012-11-02 21:44:32 +00001026 assert(LAs.parseSoon() &&
1027 "Attribute list should be marked for immediate parsing.");
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001028 for (unsigned i = 0, ni = LAs.size(); i < ni; ++i) {
DeLesley Hutchins95526a42012-08-15 22:41:04 +00001029 if (D)
1030 LAs[i]->addDecl(D);
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001031 ParseLexedAttribute(*LAs[i], EnterScope, OnDefinition);
Benjamin Kramerd306cf72012-04-14 12:44:47 +00001032 delete LAs[i];
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001033 }
1034 LAs.clear();
1035}
1036
1037
Caitlin Sadowskieff98fc2011-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 Rosier8decdee2012-06-26 22:30:43 +00001041/// create an attribute with the arguments filled in. We add this
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001042/// to the Attribute list for the decl.
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001043void Parser::ParseLexedAttribute(LateParsedAttribute &LA,
1044 bool EnterScope, bool OnDefinition) {
Caitlin Sadowskieff98fc2011-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 Kyrtzidisab2d09b2013-03-27 23:58:17 +00001053 ConsumeAnyToken(/*ConsumeCodeCompletionTok=*/true);
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001054
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001055 if (OnDefinition && !IsThreadSafetyAttribute(LA.AttrName.getName())) {
Richard Smithcd8ab512013-01-17 01:30:42 +00001056 // FIXME: Do not warn on C++11 attributes, once we start supporting
1057 // them here.
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001058 Diag(Tok, diag::warn_attribute_on_function_definition)
1059 << LA.AttrName.getName();
1060 }
1061
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001062 ParsedAttributes Attrs(AttrFactory);
1063 SourceLocation endLoc;
1064
DeLesley Hutchinsd30fb9e2012-08-20 21:32:18 +00001065 if (LA.Decls.size() > 0) {
DeLesley Hutchins2287c5e2012-03-02 22:12:59 +00001066 Decl *D = LA.Decls[0];
DeLesley Hutchinsd30fb9e2012-08-20 21:32:18 +00001067 NamedDecl *ND = dyn_cast<NamedDecl>(D);
1068 RecordDecl *RD = dyn_cast_or_null<RecordDecl>(D->getDeclContext());
Caitlin Sadowskied9d84a2011-09-08 17:42:31 +00001069
DeLesley Hutchinsd30fb9e2012-08-20 21:32:18 +00001070 // Allow 'this' within late-parsed attributes.
Richard Smithcafeb942013-06-07 02:33:37 +00001071 Sema::CXXThisScopeRAII ThisScope(Actions, RD, /*TypeQuals=*/0,
1072 ND && ND->isCXXInstanceMember());
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001073
DeLesley Hutchinsd30fb9e2012-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 Hutchins2287c5e2012-03-02 22:12:59 +00001080
DeLesley Hutchinsd30fb9e2012-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 Hutchins2287c5e2012-03-02 22:12:59 +00001086
Michael Han6880f492012-10-03 01:56:22 +00001087 ParseGNUAttributeArgs(&LA.AttrName, LA.AttrNameLoc, Attrs, &endLoc,
Michael Han45bed132012-10-04 16:42:52 +00001088 0, SourceLocation(), AttributeList::AS_GNU);
DeLesley Hutchinsd30fb9e2012-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 Han6880f492012-10-03 01:56:22 +00001100 ParseGNUAttributeArgs(&LA.AttrName, LA.AttrNameLoc, Attrs, &endLoc,
Michael Han45bed132012-10-04 16:42:52 +00001101 0, SourceLocation(), AttributeList::AS_GNU);
DeLesley Hutchins2287c5e2012-03-02 22:12:59 +00001102 }
DeLesley Hutchins7ec419a2012-03-02 22:29:50 +00001103 } else {
1104 Diag(Tok, diag::warn_attribute_no_decl) << LA.AttrName.getName();
Caitlin Sadowskied9d84a2011-09-08 17:42:31 +00001105 }
1106
DeLesley Hutchins2287c5e2012-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 Sadowskieff98fc2011-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 Gregord78ef5b2012-03-08 01:00:17 +00001119 ConsumeAnyToken();
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001120 }
1121}
1122
Caitlin Sadowskib51e0312011-08-09 17:59:31 +00001123/// \brief Wrapper around a case statement checking if AttrName is
1124/// one of the thread safety attributes
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +00001125bool Parser::IsThreadSafetyAttribute(StringRef AttrName) {
Caitlin Sadowskib51e0312011-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 Sadowskieff98fc2011-09-08 17:42:22 +00001164 assert(Tok.is(tok::l_paren) && "Attribute arg list not starting with '('");
Caitlin Sadowskib51e0312011-08-09 17:59:31 +00001165
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001166 BalancedDelimiterTracker T(*this, tok::l_paren);
1167 T.consumeOpen();
Chad Rosier8decdee2012-06-26 22:30:43 +00001168
Aaron Ballman624421f2013-08-31 01:11:41 +00001169 ArgsVector ArgExprs;
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001170 bool ArgExprsOk = true;
Chad Rosier8decdee2012-06-26 22:30:43 +00001171
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001172 // now parse the list of expressions
DeLesley Hutchins4805f152011-12-14 19:36:06 +00001173 while (Tok.isNot(tok::r_paren)) {
DeLesley Hutchinsed4330b2013-02-07 19:01:07 +00001174 EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated);
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001175 ExprResult ArgExpr(ParseAssignmentExpression());
1176 if (ArgExpr.isInvalid()) {
1177 ArgExprsOk = false;
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001178 T.consumeClose();
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001179 break;
1180 } else {
1181 ArgExprs.push_back(ArgExpr.release());
Caitlin Sadowskib51e0312011-08-09 17:59:31 +00001182 }
Caitlin Sadowskieff98fc2011-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 Hutchins23323e02012-01-20 22:50:54 +00001188 if (ArgExprsOk && !T.consumeClose()) {
Aaron Ballman624421f2013-08-31 01:11:41 +00001189 Attrs.addNew(&AttrName, AttrNameLoc, 0, AttrNameLoc, ArgExprs.data(),
1190 ArgExprs.size(), AttributeList::AS_GNU);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +00001191 }
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001192 if (EndLoc)
1193 *EndLoc = T.getCloseLocation();
Caitlin Sadowskib51e0312011-08-09 17:59:31 +00001194}
1195
Dmitri Gribenko0d5a0692012-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 Smith8edabd92013-09-03 18:01:40 +00001210 IdentifierLoc *ArgumentKind = ParseIdentifierLoc();
Dmitri Gribenko0d5a0692012-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 Ballman624421f2013-08-31 01:11:41 +00001250 ArgumentKind, MatchingCType.release(),
1251 LayoutCompatible, MustBeNull,
1252 AttributeList::AS_GNU);
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00001253 }
1254
1255 if (EndLoc)
1256 *EndLoc = T.getCloseLocation();
1257}
1258
Richard Smith6ee326a2012-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 Carruth2c6dbd72012-04-10 16:03:08 +00001290 llvm_unreachable("All cases handled above.");
Richard Smith6ee326a2012-04-10 01:32:12 +00001291}
1292
Richard Smith975d52c2013-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 Smith05321402013-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 McCall7f040a92010-12-24 02:08:15 +00001312void Parser::DiagnoseProhibitedAttributes(ParsedAttributesWithRange &attrs) {
1313 Diag(attrs.Range.getBegin(), diag::err_attributes_not_allowed)
1314 << attrs.Range;
Dawn Perchik52fc3142010-09-03 01:29:35 +00001315}
1316
Michael Hanf64231e2012-11-06 19:34:54 +00001317void Parser::ProhibitCXX11Attributes(ParsedAttributesWithRange &attrs) {
1318 AttributeList *AttrList = attrs.getList();
1319 while (AttrList) {
Richard Smith4e24f0f2013-01-02 12:01:23 +00001320 if (AttrList->isCXX11Attribute()) {
Richard Smithd03de6a2013-01-29 10:02:16 +00001321 Diag(AttrList->getLoc(), diag::err_attribute_not_type_attr)
Michael Hanf64231e2012-11-06 19:34:54 +00001322 << AttrList->getName();
1323 AttrList->setInvalid();
1324 }
1325 AttrList = AttrList->getNext();
1326 }
1327}
1328
Reid Spencer5f016e22007-07-11 17:01:13 +00001329/// ParseDeclaration - Parse a full 'declaration', which consists of
1330/// declaration-specifiers, some number of declarators, and a semicolon.
Chris Lattner97144fc2009-04-02 04:16:50 +00001331/// 'Context' should be a Declarator::TheContext value. This returns the
1332/// location of the semicolon in DeclEnd.
Chris Lattner8f08cb72007-08-25 06:57:03 +00001333///
1334/// declaration: [C99 6.7]
1335/// block-declaration ->
1336/// simple-declaration
1337/// others [FIXME]
Douglas Gregoradcac882008-12-01 23:54:00 +00001338/// [C++] template-declaration
Chris Lattner8f08cb72007-08-25 06:57:03 +00001339/// [C++] namespace-definition
Douglas Gregorf780abc2008-12-30 03:27:21 +00001340/// [C++] using-directive
Douglas Gregord7f37bf2009-06-22 23:06:13 +00001341/// [C++] using-declaration
Richard Smith534986f2012-04-14 00:33:13 +00001342/// [C++11/C11] static_assert-declaration
Chris Lattner8f08cb72007-08-25 06:57:03 +00001343/// others... [FIXME]
1344///
Fariborz Jahanianc5be7b02010-09-28 20:42:35 +00001345Parser::DeclGroupPtrTy Parser::ParseDeclaration(StmtVector &Stmts,
1346 unsigned Context,
Sean Huntbbd37c62009-11-21 08:43:09 +00001347 SourceLocation &DeclEnd,
John McCall7f040a92010-12-24 02:08:15 +00001348 ParsedAttributesWithRange &attrs) {
Argyrios Kyrtzidis36d36802010-06-17 10:52:18 +00001349 ParenBraceBracketBalancer BalancerRAIIObj(*this);
Fariborz Jahaniane8cff362011-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 Rosier8decdee2012-06-26 22:30:43 +00001353
John McCalld226f652010-08-21 09:40:31 +00001354 Decl *SingleDecl = 0;
Richard Smithc89edf52011-07-01 19:46:12 +00001355 Decl *OwnedType = 0;
Chris Lattner8f08cb72007-08-25 06:57:03 +00001356 switch (Tok.getKind()) {
Douglas Gregoradcac882008-12-01 23:54:00 +00001357 case tok::kw_template:
Douglas Gregor1426e532009-05-12 21:31:51 +00001358 case tok::kw_export:
John McCall7f040a92010-12-24 02:08:15 +00001359 ProhibitAttributes(attrs);
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001360 SingleDecl = ParseDeclarationStartingWithTemplate(Context, DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +00001361 break;
Sebastian Redld078e642010-08-27 23:12:46 +00001362 case tok::kw_inline:
Sebastian Redl88e64ca2010-08-31 00:36:45 +00001363 // Could be the start of an inline namespace. Allowed as an ext in C++03.
David Blaikie4e4d0842012-03-11 07:00:24 +00001364 if (getLangOpts().CPlusPlus && NextToken().is(tok::kw_namespace)) {
John McCall7f040a92010-12-24 02:08:15 +00001365 ProhibitAttributes(attrs);
Sebastian Redld078e642010-08-27 23:12:46 +00001366 SourceLocation InlineLoc = ConsumeToken();
1367 SingleDecl = ParseNamespace(Context, DeclEnd, InlineLoc);
1368 break;
1369 }
Chad Rosier8decdee2012-06-26 22:30:43 +00001370 return ParseSimpleDeclaration(Stmts, Context, DeclEnd, attrs,
Fariborz Jahanianc5be7b02010-09-28 20:42:35 +00001371 true);
Chris Lattner8f08cb72007-08-25 06:57:03 +00001372 case tok::kw_namespace:
John McCall7f040a92010-12-24 02:08:15 +00001373 ProhibitAttributes(attrs);
Chris Lattner97144fc2009-04-02 04:16:50 +00001374 SingleDecl = ParseNamespace(Context, DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +00001375 break;
Douglas Gregorf780abc2008-12-30 03:27:21 +00001376 case tok::kw_using:
John McCall78b81052010-11-10 02:40:36 +00001377 SingleDecl = ParseUsingDirectiveOrDeclaration(Context, ParsedTemplateInfo(),
Richard Smithc89edf52011-07-01 19:46:12 +00001378 DeclEnd, attrs, &OwnedType);
Chris Lattner682bf922009-03-29 16:50:03 +00001379 break;
Anders Carlsson511d7ab2009-03-11 16:27:10 +00001380 case tok::kw_static_assert:
Peter Collingbournec6eb44b2011-04-15 00:35:57 +00001381 case tok::kw__Static_assert:
John McCall7f040a92010-12-24 02:08:15 +00001382 ProhibitAttributes(attrs);
Chris Lattner97144fc2009-04-02 04:16:50 +00001383 SingleDecl = ParseStaticAssertDeclaration(DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +00001384 break;
Chris Lattner8f08cb72007-08-25 06:57:03 +00001385 default:
John McCall7f040a92010-12-24 02:08:15 +00001386 return ParseSimpleDeclaration(Stmts, Context, DeclEnd, attrs, true);
Chris Lattner8f08cb72007-08-25 06:57:03 +00001387 }
Chad Rosier8decdee2012-06-26 22:30:43 +00001388
Chris Lattner682bf922009-03-29 16:50:03 +00001389 // This routine returns a DeclGroup, if the thing we parsed only contains a
Richard Smithc89edf52011-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 Lattner8f08cb72007-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] ';'
Sean Hunt2edf0a22012-06-23 05:07:58 +00001397/// [C++11] attribute-specifier-seq decl-specifier-seq[opt]
1398/// init-declarator-list ';'
Chris Lattner8f08cb72007-08-25 06:57:03 +00001399///[C90/C++]init-declarator-list ';' [TODO]
1400/// [OMP] threadprivate-directive [TODO]
Chris Lattnercd147752009-03-29 17:27:48 +00001401///
Sean Hunt2edf0a22012-06-23 05:07:58 +00001402/// for-range-declaration: [C++11 6.5p1: stmt.ranged]
Richard Smithad762fc2011-04-14 22:09:26 +00001403/// attribute-specifier-seq[opt] type-specifier-seq declarator
1404///
Chris Lattnercd147752009-03-29 17:27:48 +00001405/// If RequireSemi is false, this does not check for a ';' at the end of the
Chris Lattner5c5db552010-04-05 18:18:31 +00001406/// declaration. If it is true, it checks for and eats it.
Richard Smithad762fc2011-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.
Sean Hunt2edf0a22012-06-23 05:07:58 +00001411Parser::DeclGroupPtrTy
1412Parser::ParseSimpleDeclaration(StmtVector &Stmts, unsigned Context,
1413 SourceLocation &DeclEnd,
Richard Smith68ea3ae2013-02-22 09:06:26 +00001414 ParsedAttributesWithRange &Attrs,
Sean Hunt2edf0a22012-06-23 05:07:58 +00001415 bool RequireSemi, ForRangeInit *FRI) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001416 // Parse the common declaration-specifiers piece.
John McCall54abf7d2009-11-04 02:18:39 +00001417 ParsingDeclSpec DS(*this);
Douglas Gregor312eadb2011-04-24 05:37:28 +00001418
Douglas Gregor0efc2c12010-01-13 17:31:36 +00001419 ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS_none,
Richard Smith34b41d92011-02-20 03:19:35 +00001420 getDeclSpecContextFromDeclaratorContext(Context));
Abramo Bagnara06284c12012-01-07 10:52:36 +00001421
Reid Spencer5f016e22007-07-11 17:01:13 +00001422 // C99 6.7.2.3p6: Handle "struct-or-union identifier;", "enum { X };"
1423 // declaration-specifiers init-declarator-list[opt] ';'
Chris Lattner04d66662007-10-09 17:33:22 +00001424 if (Tok.is(tok::semi)) {
Richard Smith68ea3ae2013-02-22 09:06:26 +00001425 ProhibitAttributes(Attrs);
Argyrios Kyrtzidis5641b0d2012-05-16 23:49:15 +00001426 DeclEnd = Tok.getLocation();
Chris Lattner5c5db552010-04-05 18:18:31 +00001427 if (RequireSemi) ConsumeToken();
John McCalld226f652010-08-21 09:40:31 +00001428 Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS_none,
Douglas Gregor312eadb2011-04-24 05:37:28 +00001429 DS);
John McCall54abf7d2009-11-04 02:18:39 +00001430 DS.complete(TheDecl);
Chris Lattner682bf922009-03-29 16:50:03 +00001431 return Actions.ConvertDeclToDeclGroup(TheDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +00001432 }
Chad Rosier8decdee2012-06-26 22:30:43 +00001433
Richard Smith68ea3ae2013-02-22 09:06:26 +00001434 DS.takeAttributesFrom(Attrs);
Chad Rosier8decdee2012-06-26 22:30:43 +00001435 return ParseDeclGroup(DS, Context, /*FunctionDefs=*/ false, &DeclEnd, FRI);
John McCalld8ac0572009-11-03 19:26:08 +00001436}
Mike Stump1eb44332009-09-09 15:08:12 +00001437
Richard Smith0706df42011-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 Blaikie4e4d0842012-03-11 07:00:24 +00001456 return getLangOpts().CPlusPlus;
Richard Smith0706df42011-10-19 21:33:05 +00001457
Richard Smith1c94c162012-01-09 22:31:44 +00001458 case tok::l_square: // Might be an attribute on an unnamed bit-field.
Richard Smith80ad52f2013-01-02 11:42:31 +00001459 return Context == Declarator::MemberContext && getLangOpts().CPlusPlus11 &&
Richard Smith1c94c162012-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 Blaikie4e4d0842012-03-11 07:00:24 +00001463 return Context == Declarator::MemberContext || getLangOpts().CPlusPlus;
Richard Smith1c94c162012-01-09 22:31:44 +00001464
Richard Smith0706df42011-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 Smith1c94c162012-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 Blaikie4e4d0842012-03-11 07:00:24 +00001490 (getLangOpts().CPlusPlus && Context == Declarator::FileContext);
Richard Smith1c94c162012-01-09 22:31:44 +00001491
1492 case tok::identifier: // Possible virt-specifier.
Richard Smith4e24f0f2013-01-02 12:01:23 +00001493 return getLangOpts().CPlusPlus11 && isCXX11VirtSpecifier(NextToken());
Richard Smith0706df42011-10-19 21:33:05 +00001494
1495 default:
1496 return false;
1497 }
1498
1499 default:
1500 return false;
1501 }
1502}
1503
Richard Smith994d73f2012-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 Rose94f29f42012-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 Smith994d73f2012-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 Rose94f29f42012-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 Smith994d73f2012-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 McCalld8ac0572009-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 McCall54abf7d2009-11-04 02:18:39 +00001586Parser::DeclGroupPtrTy Parser::ParseDeclGroup(ParsingDeclSpec &DS,
1587 unsigned Context,
John McCalld8ac0572009-11-03 19:26:08 +00001588 bool AllowFunctionDefinitions,
Richard Smithad762fc2011-04-14 22:09:26 +00001589 SourceLocation *DeclEnd,
1590 ForRangeInit *FRI) {
John McCalld8ac0572009-11-03 19:26:08 +00001591 // Parse the first declarator.
John McCall54abf7d2009-11-04 02:18:39 +00001592 ParsingDeclarator D(*this, DS, static_cast<Declarator::TheContext>(Context));
John McCalld8ac0572009-11-03 19:26:08 +00001593 ParseDeclarator(D);
Chris Lattnercd147752009-03-29 17:27:48 +00001594
John McCalld8ac0572009-11-03 19:26:08 +00001595 // Bail out if the first declarator didn't seem well-formed.
1596 if (!D.hasName() && !D.mayOmitIdentifier()) {
Richard Smith994d73f2012-04-11 20:59:20 +00001597 SkipMalformedDecl();
John McCalld8ac0572009-11-03 19:26:08 +00001598 return DeclGroupPtrTy();
Chris Lattner23c4b182009-03-29 17:18:04 +00001599 }
Mike Stump1eb44332009-09-09 15:08:12 +00001600
DeLesley Hutchinsc24a2332012-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 Hutchins161db022012-11-02 21:44:32 +00001603 // These will be parsed in ParseFunctionDefinition or ParseLexedAttrList.
1604 LateParsedAttrList LateParsedAttrs(true);
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001605 if (D.isFunctionDeclarator())
1606 MaybeParseGNUAttributes(D, &LateParsedAttrs);
1607
Chris Lattnerc82daef2010-07-11 22:24:20 +00001608 // Check to see if we have a function *definition* which must have a body.
Douglas Gregorb004a8e2013-04-16 16:01:32 +00001609 if (D.isFunctionDeclarator() &&
Chris Lattnerc82daef2010-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 Jahanianbe1d4ec2012-08-10 15:54:40 +00001613 !isDeclarationAfterDeclarator()) {
Chad Rosier8decdee2012-06-26 22:30:43 +00001614
Douglas Gregorb004a8e2013-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 McCalld8ac0572009-11-03 19:26:08 +00001619
Douglas Gregorb004a8e2013-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 McCalld8ac0572009-11-03 19:26:08 +00001627 }
1628
Douglas Gregorb004a8e2013-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 McCalld8ac0572009-11-03 19:26:08 +00001640 } else {
Douglas Gregorb004a8e2013-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 McCalld8ac0572009-11-03 19:26:08 +00001645 }
1646 }
1647
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001648 if (ParseAsmAttributesAfterDeclarator(D))
Richard Smithad762fc2011-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 Gregor12849d02013-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 Smithad762fc2011-04-14 22:09:26 +00001668 Decl *ThisDecl = Actions.ActOnDeclarator(getCurScope(), D);
Douglas Gregor12849d02013-04-08 20:52:24 +00001669 if (IsForRangeLoop)
1670 Actions.ActOnCXXForRangeDecl(ThisDecl);
Richard Smithad762fc2011-04-14 22:09:26 +00001671 Actions.FinalizeDeclaration(ThisDecl);
John McCall6895a642012-01-27 01:29:43 +00001672 D.complete(ThisDecl);
Rafael Espindola4549d7f2013-07-09 12:05:01 +00001673 return Actions.FinalizeDeclaratorGroup(getCurScope(), DS, ThisDecl);
Richard Smithad762fc2011-04-14 22:09:26 +00001674 }
1675
Chris Lattner5f9e2722011-07-23 10:55:15 +00001676 SmallVector<Decl *, 8> DeclsInGroup;
Richard Smithad762fc2011-04-14 22:09:26 +00001677 Decl *FirstDecl = ParseDeclarationAfterDeclaratorAndAttributes(D);
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001678 if (LateParsedAttrs.size() > 0)
1679 ParseLexedAttributeList(LateParsedAttrs, FirstDecl, true, false);
John McCall54abf7d2009-11-04 02:18:39 +00001680 D.complete(FirstDecl);
John McCalld226f652010-08-21 09:40:31 +00001681 if (FirstDecl)
John McCalld8ac0572009-11-03 19:26:08 +00001682 DeclsInGroup.push_back(FirstDecl);
1683
Richard Smith0706df42011-10-19 21:33:05 +00001684 bool ExpectSemi = Context != Declarator::ForContext;
Fariborz Jahanian6c89eaf2012-07-02 23:37:09 +00001685
John McCalld8ac0572009-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 Smith0706df42011-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 McCalld8ac0572009-11-03 19:26:08 +00001700
1701 // Parse the next declarator.
1702 D.clear();
Richard Smith7984de32012-01-12 23:53:29 +00001703 D.setCommaLoc(CommaLoc);
John McCalld8ac0572009-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 McCall7f040a92010-12-24 02:08:15 +00001712 MaybeParseGNUAttributes(D);
John McCalld8ac0572009-11-03 19:26:08 +00001713
1714 ParseDeclarator(D);
Fariborz Jahanian9baf39d2012-01-13 00:14:12 +00001715 if (!D.isInvalidType()) {
1716 Decl *ThisDecl = ParseDeclarationAfterDeclarator(D);
1717 D.complete(ThisDecl);
1718 if (ThisDecl)
Chad Rosier8decdee2012-06-26 22:30:43 +00001719 DeclsInGroup.push_back(ThisDecl);
Fariborz Jahanian9baf39d2012-01-13 00:14:12 +00001720 }
John McCalld8ac0572009-11-03 19:26:08 +00001721 }
1722
1723 if (DeclEnd)
1724 *DeclEnd = Tok.getLocation();
1725
Richard Smith0706df42011-10-19 21:33:05 +00001726 if (ExpectSemi &&
Chris Lattner8bb21d32012-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 Lattner004659a2010-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 McCalld8ac0572009-11-03 19:26:08 +00001738 }
1739
Rafael Espindola4549d7f2013-07-09 12:05:01 +00001740 return Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup);
Reid Spencer5f016e22007-07-11 17:01:13 +00001741}
1742
Richard Smithad762fc2011-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 Hutchinsc24a2332012-02-16 16:50:43 +00001745bool Parser::ParseAsmAttributesAfterDeclarator(Declarator &D) {
Richard Smithad762fc2011-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 Gregor1426e532009-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.
Reid Spencer5f016e22007-07-11 17:01:13 +00001767///
Reid Spencer5f016e22007-07-11 17:01:13 +00001768/// init-declarator: [C99 6.7]
1769/// declarator
1770/// declarator '=' initializer
1771/// [GNU] declarator simple-asm-expr[opt] attributes[opt]
1772/// [GNU] declarator simple-asm-expr[opt] attributes[opt] '=' initializer
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00001773/// [C++] declarator initializer[opt]
1774///
1775/// [C++] initializer:
1776/// [C++] '=' initializer-clause
1777/// [C++] '(' expression-list ')'
Sebastian Redl50de12f2009-03-24 22:27:57 +00001778/// [C++0x] '=' 'default' [TODO]
1779/// [C++0x] '=' 'delete'
Sebastian Redldbef1bb2011-06-05 12:23:16 +00001780/// [C++0x] braced-init-list
Sebastian Redl50de12f2009-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.
Reid Spencer5f016e22007-07-11 17:01:13 +00001784///
John McCalld226f652010-08-21 09:40:31 +00001785Decl *Parser::ParseDeclarationAfterDeclarator(Declarator &D,
Douglas Gregore542c862009-06-23 23:11:28 +00001786 const ParsedTemplateInfo &TemplateInfo) {
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001787 if (ParseAsmAttributesAfterDeclarator(D))
Richard Smithad762fc2011-04-14 22:09:26 +00001788 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001789
Richard Smithad762fc2011-04-14 22:09:26 +00001790 return ParseDeclarationAfterDeclaratorAndAttributes(D, TemplateInfo);
1791}
Mike Stump1eb44332009-09-09 15:08:12 +00001792
Richard Smithad762fc2011-04-14 22:09:26 +00001793Decl *Parser::ParseDeclarationAfterDeclaratorAndAttributes(Declarator &D,
1794 const ParsedTemplateInfo &TemplateInfo) {
Douglas Gregor1426e532009-05-12 21:31:51 +00001795 // Inform the current actions module that we just parsed this declarator.
John McCalld226f652010-08-21 09:40:31 +00001796 Decl *ThisDecl = 0;
Douglas Gregord5a423b2009-09-25 18:43:00 +00001797 switch (TemplateInfo.Kind) {
1798 case ParsedTemplateInfo::NonTemplate:
Douglas Gregor23c94db2010-07-02 17:43:08 +00001799 ThisDecl = Actions.ActOnDeclarator(getCurScope(), D);
Douglas Gregord5a423b2009-09-25 18:43:00 +00001800 break;
Chad Rosier8decdee2012-06-26 22:30:43 +00001801
Douglas Gregord5a423b2009-09-25 18:43:00 +00001802 case ParsedTemplateInfo::Template:
Larisse Voufoef4579c2013-08-06 01:03:05 +00001803 case ParsedTemplateInfo::ExplicitSpecialization: {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001804 ThisDecl = Actions.ActOnTemplateDeclarator(getCurScope(),
Benjamin Kramer5354e772012-08-23 23:38:35 +00001805 *TemplateInfo.TemplateParams,
Douglas Gregord5a423b2009-09-25 18:43:00 +00001806 D);
Larisse Voufo06935f32013-08-06 03:43:07 +00001807 if (Tok.is(tok::semi) &&
1808 Actions.HandleVariableRedeclaration(ThisDecl, D.getCXXScopeSpec())) {
Douglas Gregord5a423b2009-09-25 18:43:00 +00001809 SkipUntil(tok::semi, true, true);
John McCalld226f652010-08-21 09:40:31 +00001810 return 0;
Douglas Gregord5a423b2009-09-25 18:43:00 +00001811 }
Larisse Voufo25218132013-08-06 07:33:00 +00001812 if (VarTemplateDecl *VT = dyn_cast_or_null<VarTemplateDecl>(ThisDecl))
Larisse Voufoef4579c2013-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 Gregord5a423b2009-09-25 18:43:00 +00001855 break;
1856 }
1857 }
Mike Stump1eb44332009-09-09 15:08:12 +00001858
Richard Smitha2c36462013-04-26 16:15:35 +00001859 bool TypeContainsAuto = D.getDeclSpec().containsPlaceholderType();
Richard Smith34b41d92011-02-20 03:19:35 +00001860
Douglas Gregor1426e532009-05-12 21:31:51 +00001861 // Parse declarator '=' initializer.
Richard Trieud6c7c672012-01-18 22:54:52 +00001862 // If a '==' or '+=' is found, suggest a fixit to '='.
Richard Trieufcaf27e2012-01-19 22:01:51 +00001863 if (isTokenEqualOrEqualTypo()) {
Douglas Gregor1426e532009-05-12 21:31:51 +00001864 ConsumeToken();
Larisse Voufoef4579c2013-08-06 01:03:05 +00001865
Anders Carlsson37bf9d22010-09-24 21:25:25 +00001866 if (Tok.is(tok::kw_delete)) {
Sean Hunte4246a62011-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);
Sean Huntfe2695e2011-05-06 01:42:00 +00001872 } else if (Tok.is(tok::kw_default)) {
Sean Hunte4246a62011-05-12 06:15:49 +00001873 if (D.isFunctionDeclarator())
Sebastian Redlecfcd562012-02-11 23:51:21 +00001874 Diag(ConsumeToken(), diag::err_default_delete_in_multiple_declaration)
1875 << 0 /* default */;
Sean Hunte4246a62011-05-12 06:15:49 +00001876 else
1877 Diag(ConsumeToken(), diag::err_default_special_members);
Douglas Gregor1426e532009-05-12 21:31:51 +00001878 } else {
David Blaikie4e4d0842012-03-11 07:00:24 +00001879 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
John McCall731ad842009-12-19 09:28:58 +00001880 EnterScope(0);
Douglas Gregor23c94db2010-07-02 17:43:08 +00001881 Actions.ActOnCXXEnterDeclInitializer(getCurScope(), ThisDecl);
John McCall731ad842009-12-19 09:28:58 +00001882 }
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00001883
Douglas Gregor5ac3bdb2010-05-30 01:49:25 +00001884 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001885 Actions.CodeCompleteInitializer(getCurScope(), ThisDecl);
Peter Collingbourneec98f2f2012-07-27 12:56:09 +00001886 Actions.FinalizeDeclaration(ThisDecl);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001887 cutOffParsing();
1888 return 0;
Douglas Gregor5ac3bdb2010-05-30 01:49:25 +00001889 }
Chad Rosier8decdee2012-06-26 22:30:43 +00001890
John McCall60d7b3a2010-08-24 06:29:42 +00001891 ExprResult Init(ParseInitializer());
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00001892
David Blaikie4e4d0842012-03-11 07:00:24 +00001893 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001894 Actions.ActOnCXXExitDeclInitializer(getCurScope(), ThisDecl);
John McCall731ad842009-12-19 09:28:58 +00001895 ExitScope();
1896 }
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00001897
Douglas Gregor1426e532009-05-12 21:31:51 +00001898 if (Init.isInvalid()) {
Douglas Gregor00225542010-03-01 18:27:54 +00001899 SkipUntil(tok::comma, true, true);
1900 Actions.ActOnInitializerError(ThisDecl);
1901 } else
Richard Smith34b41d92011-02-20 03:19:35 +00001902 Actions.AddInitializerToDecl(ThisDecl, Init.take(),
1903 /*DirectInit=*/false, TypeContainsAuto);
Douglas Gregor1426e532009-05-12 21:31:51 +00001904 }
1905 } else if (Tok.is(tok::l_paren)) {
1906 // Parse C++ direct initializer: '(' expression-list ')'
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001907 BalancedDelimiterTracker T(*this, tok::l_paren);
1908 T.consumeOpen();
1909
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00001910 ExprVector Exprs;
Douglas Gregor1426e532009-05-12 21:31:51 +00001911 CommaLocsTy CommaLocs;
1912
David Blaikie4e4d0842012-03-11 07:00:24 +00001913 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
Douglas Gregorb4debae2009-12-22 17:47:17 +00001914 EnterScope(0);
Douglas Gregor23c94db2010-07-02 17:43:08 +00001915 Actions.ActOnCXXEnterDeclInitializer(getCurScope(), ThisDecl);
Douglas Gregorb4debae2009-12-22 17:47:17 +00001916 }
1917
Douglas Gregor1426e532009-05-12 21:31:51 +00001918 if (ParseExpressionList(Exprs, CommaLocs)) {
David Blaikie3ea19c82012-10-10 23:15:05 +00001919 Actions.ActOnInitializerError(ThisDecl);
Douglas Gregor1426e532009-05-12 21:31:51 +00001920 SkipUntil(tok::r_paren);
Douglas Gregorb4debae2009-12-22 17:47:17 +00001921
David Blaikie4e4d0842012-03-11 07:00:24 +00001922 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001923 Actions.ActOnCXXExitDeclInitializer(getCurScope(), ThisDecl);
Douglas Gregorb4debae2009-12-22 17:47:17 +00001924 ExitScope();
1925 }
Douglas Gregor1426e532009-05-12 21:31:51 +00001926 } else {
1927 // Match the ')'.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001928 T.consumeClose();
Douglas Gregor1426e532009-05-12 21:31:51 +00001929
1930 assert(!Exprs.empty() && Exprs.size()-1 == CommaLocs.size() &&
1931 "Unexpected number of commas!");
Douglas Gregorb4debae2009-12-22 17:47:17 +00001932
David Blaikie4e4d0842012-03-11 07:00:24 +00001933 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001934 Actions.ActOnCXXExitDeclInitializer(getCurScope(), ThisDecl);
Douglas Gregorb4debae2009-12-22 17:47:17 +00001935 ExitScope();
1936 }
1937
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001938 ExprResult Initializer = Actions.ActOnParenListExpr(T.getOpenLocation(),
1939 T.getCloseLocation(),
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00001940 Exprs);
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001941 Actions.AddInitializerToDecl(ThisDecl, Initializer.take(),
1942 /*DirectInit=*/true, TypeContainsAuto);
Douglas Gregor1426e532009-05-12 21:31:51 +00001943 }
Richard Smith80ad52f2013-01-02 11:42:31 +00001944 } else if (getLangOpts().CPlusPlus11 && Tok.is(tok::l_brace) &&
Fariborz Jahanianb0ed95c2012-07-03 23:22:13 +00001945 (!CurParsedObjCImpl || !D.isFunctionDeclarator())) {
Sebastian Redldbef1bb2011-06-05 12:23:16 +00001946 // Parse C++0x braced-init-list.
Richard Smith7fe62082011-10-15 05:09:34 +00001947 Diag(Tok, diag::warn_cxx98_compat_generalized_initializer_lists);
1948
Sebastian Redldbef1bb2011-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 Gregor1426e532009-05-12 21:31:51 +00001967 } else {
Richard Smith34b41d92011-02-20 03:19:35 +00001968 Actions.ActOnUninitializedDecl(ThisDecl, TypeContainsAuto);
Douglas Gregor1426e532009-05-12 21:31:51 +00001969 }
1970
Richard Smith483b9f32011-02-21 20:05:19 +00001971 Actions.FinalizeDeclaration(ThisDecl);
1972
Douglas Gregor1426e532009-05-12 21:31:51 +00001973 return ThisDecl;
1974}
1975
Reid Spencer5f016e22007-07-11 17:01:13 +00001976/// ParseSpecifierQualifierList
1977/// specifier-qualifier-list:
1978/// type-specifier specifier-qualifier-list[opt]
1979/// type-qualifier specifier-qualifier-list[opt]
1980/// [GNU] attributes specifier-qualifier-list[opt]
1981///
Richard Smith69730c12012-03-12 07:56:15 +00001982void Parser::ParseSpecifierQualifierList(DeclSpec &DS, AccessSpecifier AS,
1983 DeclSpecContext DSC) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001984 /// specifier-qualifier-list is a subset of declaration-specifiers. Just
1985 /// parse declaration-specifiers and complain about extra stuff.
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00001986 /// TODO: diagnose attribute-specifiers and alignment-specifiers.
Richard Smith69730c12012-03-12 07:56:15 +00001987 ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS, DSC);
Mike Stump1eb44332009-09-09 15:08:12 +00001988
Reid Spencer5f016e22007-07-11 17:01:13 +00001989 // Validate declspec for type-name.
1990 unsigned Specs = DS.getParsedSpecifiers();
Richard Smitha971d242012-05-09 20:55:26 +00001991 if ((DSC == DSC_type_specifier || DSC == DSC_trailing) &&
1992 !DS.hasTypeSpecifier()) {
Richard Smith69730c12012-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()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001997 Diag(Tok, diag::err_typename_requires_specqual);
Richard Smith69730c12012-03-12 07:56:15 +00001998 if (!DS.hasTypeSpecifier())
1999 DS.SetTypeSpecError();
2000 }
Mike Stump1eb44332009-09-09 15:08:12 +00002001
Reid Spencer5f016e22007-07-11 17:01:13 +00002002 // Issue diagnostic and remove storage class if present.
2003 if (Specs & DeclSpec::PQ_StorageClassSpecifier) {
2004 if (DS.getStorageClassSpecLoc().isValid())
2005 Diag(DS.getStorageClassSpecLoc(),diag::err_typename_invalid_storageclass);
2006 else
Richard Smithec642442013-04-12 22:46:28 +00002007 Diag(DS.getThreadStorageClassSpecLoc(),
2008 diag::err_typename_invalid_storageclass);
Reid Spencer5f016e22007-07-11 17:01:13 +00002009 DS.ClearStorageClassSpecs();
2010 }
Mike Stump1eb44332009-09-09 15:08:12 +00002011
Reid Spencer5f016e22007-07-11 17:01:13 +00002012 // Issue diagnostic and remove function specfier if present.
2013 if (Specs & DeclSpec::PQ_FunctionSpecifier) {
Douglas Gregorb48fe382008-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);
Reid Spencer5f016e22007-07-11 17:01:13 +00002020 DS.ClearFunctionSpecs();
2021 }
Richard Smith69730c12012-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 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002028}
2029
Chris Lattnerc199ab32009-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 Lattnerb6645dd2009-04-14 21:16:09 +00002041/// int x : 4; // struct-declarator
Chris Lattnerc83c27a2009-04-12 22:29:43 +00002042/// int x { 5}; // C++'0x unified initializers
Chris Lattnerc199ab32009-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 Lattnerb6645dd2009-04-14 21:16:09 +00002051 T.is(tok::kw_asm) || T.is(tok::l_brace) || T.is(tok::colon);
Chris Lattnerc199ab32009-04-12 20:42:31 +00002052}
2053
Chris Lattnere40c2952009-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 Lattnerf4382f52009-04-14 22:17:06 +00002064bool Parser::ParseImplicitInt(DeclSpec &DS, CXXScopeSpec *SS,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00002065 const ParsedTemplateInfo &TemplateInfo,
Michael Han2e397132012-11-26 22:54:45 +00002066 AccessSpecifier AS, DeclSpecContext DSC,
2067 ParsedAttributesWithRange &Attrs) {
Chris Lattnerf4382f52009-04-14 22:17:06 +00002068 assert(Tok.is(tok::identifier) && "should have identifier");
Mike Stump1eb44332009-09-09 15:08:12 +00002069
Chris Lattnere40c2952009-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 Stump1eb44332009-09-09 15:08:12 +00002084
Chris Lattnere40c2952009-04-14 21:34:55 +00002085 // Since we know that this either implicit int (which is rare) or an
Richard Smith827adaf2012-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 Smith58eb3702013-04-30 22:43:51 +00002089 // implicit int as an extension in C99 and C11.
Richard Smitha971d242012-05-09 20:55:26 +00002090 if (DSC != DSC_type_specifier && DSC != DSC_trailing &&
Richard Smith58eb3702013-04-30 22:43:51 +00002091 !getLangOpts().CPlusPlus &&
Richard Smith69730c12012-03-12 07:56:15 +00002092 isValidAfterIdentifierInDeclarator(NextToken())) {
Chris Lattnere40c2952009-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 Stump1eb44332009-09-09 15:08:12 +00002098
Richard Smith827adaf2012-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 Lattnere40c2952009-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 Lattnerf4382f52009-04-14 22:17:06 +00002110 //
2111 // C++ doesn't need this, and isTagName doesn't take SS.
2112 if (SS == 0) {
Argyrios Kyrtzidisb8a9d3b2011-04-21 17:29:47 +00002113 const char *TagName = 0, *FixitTagName = 0;
Chris Lattnerf4382f52009-04-14 22:17:06 +00002114 tok::TokenKind TagKind = tok::unknown;
Mike Stump1eb44332009-09-09 15:08:12 +00002115
Douglas Gregor23c94db2010-07-02 17:43:08 +00002116 switch (Actions.isTagName(*Tok.getIdentifierInfo(), getCurScope())) {
Chris Lattnere40c2952009-04-14 21:34:55 +00002117 default: break;
Argyrios Kyrtzidisb8a9d3b2011-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 Matos6666ed42012-08-31 18:45:21 +00002124 case DeclSpec::TST_interface:
2125 TagName="__interface"; FixitTagName = "__interface ";
2126 TagKind=tok::kw___interface;break;
Argyrios Kyrtzidisb8a9d3b2011-04-21 17:29:47 +00002127 case DeclSpec::TST_class:
2128 TagName="class" ; FixitTagName = "class " ;TagKind=tok::kw_class ;break;
Chris Lattnere40c2952009-04-14 21:34:55 +00002129 }
Mike Stump1eb44332009-09-09 15:08:12 +00002130
Chris Lattnerf4382f52009-04-14 22:17:06 +00002131 if (TagName) {
Kaelyn Uhrainaec2ac62012-04-26 23:36:17 +00002132 IdentifierInfo *TokenName = Tok.getIdentifierInfo();
2133 LookupResult R(Actions, TokenName, SourceLocation(),
2134 Sema::LookupOrdinaryName);
2135
Chris Lattnerf4382f52009-04-14 22:17:06 +00002136 Diag(Loc, diag::err_use_of_tag_name_without_tag)
Kaelyn Uhrainaec2ac62012-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 Uhrain392b3f52012-04-27 18:26:49 +00002143 Diag((*I)->getLocation(), diag::note_decl_hiding_tag_type)
Kaelyn Uhrainaec2ac62012-04-26 23:36:17 +00002144 << TokenName << TagName;
2145 }
Mike Stump1eb44332009-09-09 15:08:12 +00002146
Chris Lattnerf4382f52009-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 Smith69730c12012-03-12 07:56:15 +00002149 ParseEnumSpecifier(Loc, DS, TemplateInfo, AS, DSC_normal);
Chris Lattnerf4382f52009-04-14 22:17:06 +00002150 else
Richard Smith69730c12012-03-12 07:56:15 +00002151 ParseClassSpecifier(TagKind, Loc, DS, TemplateInfo, AS,
Michael Han2e397132012-11-26 22:54:45 +00002152 /*EnteringContext*/ false, DSC_normal, Attrs);
Chris Lattnerf4382f52009-04-14 22:17:06 +00002153 return true;
2154 }
Chris Lattnere40c2952009-04-14 21:34:55 +00002155 }
Mike Stump1eb44332009-09-09 15:08:12 +00002156
Richard Smith8f0a7e72012-05-15 21:29:55 +00002157 // Determine whether this identifier could plausibly be the name of something
Richard Smith7514db22012-05-15 21:42:17 +00002158 // being declared (with a missing type).
Richard Smith8f0a7e72012-05-15 21:29:55 +00002159 if (DSC != DSC_type_specifier && DSC != DSC_trailing &&
2160 (!SS || DSC == DSC_top_level || DSC == DSC_class)) {
Richard Smith827adaf2012-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 Rosier8decdee2012-06-26 22:30:43 +00002201 // This is almost certainly an invalid type name. Let the action emit a
Douglas Gregora786fdb2009-10-13 23:27:22 +00002202 // diagnostic and attempt to recover.
John McCallb3d87482010-08-24 05:47:05 +00002203 ParsedType T;
Kaelyn Uhrain50dc12a2012-06-15 23:45:58 +00002204 IdentifierInfo *II = Tok.getIdentifierInfo();
2205 if (Actions.DiagnoseUnknownTypeName(II, Loc, getCurScope(), SS, T)) {
Douglas Gregora786fdb2009-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 McCallb3d87482010-08-24 05:47:05 +00002213 DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec, DiagID, T);
Douglas Gregora786fdb2009-10-13 23:27:22 +00002214 DS.SetRangeEnd(Tok.getLocation());
2215 ConsumeToken();
Kaelyn Uhrain50dc12a2012-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 Gregora786fdb2009-10-13 23:27:22 +00002221 // There may be other declaration specifiers after this.
2222 return true;
2223 }
Chad Rosier8decdee2012-06-26 22:30:43 +00002224
Douglas Gregora786fdb2009-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 Stump1eb44332009-09-09 15:08:12 +00002232
Douglas Gregora786fdb2009-10-13 23:27:22 +00002233 // Mark this as an error.
Richard Smith69730c12012-03-12 07:56:15 +00002234 DS.SetTypeSpecError();
Chris Lattnere40c2952009-04-14 21:34:55 +00002235 DS.SetRangeEnd(Tok.getLocation());
2236 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00002237
Chris Lattnere40c2952009-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 Gregor0efc2c12010-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 Rosier8decdee2012-06-26 22:30:43 +00002249Parser::DeclSpecContext
Douglas Gregor0efc2c12010-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 Smith6d96d3a2012-03-15 01:02:11 +00002255 if (Context == Declarator::TrailingReturnContext)
2256 return DSC_trailing;
Douglas Gregor0efc2c12010-01-13 17:31:36 +00002257 return DSC_normal;
2258}
2259
Peter Collingbourne82d0b0a2011-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 Kramerffbe9b92011-12-23 17:00:35 +00002265/// [C11] type-id
2266/// [C11] constant-expression
Peter Collingbourne0b64ba92011-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 Collingbourne82d0b0a2011-09-29 18:04:28 +00002272 if (isTypeIdInParens()) {
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002273 SourceLocation TypeLoc = Tok.getLocation();
2274 ParsedType Ty = ParseTypeName().get();
2275 SourceRange TypeRange(Start, Tok.getLocation());
Peter Collingbourne0b64ba92011-10-23 20:07:52 +00002276 ER = Actions.ActOnUnaryExprOrTypeTraitExpr(TypeLoc, UETT_AlignOf, true,
2277 Ty.getAsOpaquePtr(), TypeRange);
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002278 } else
Peter Collingbourne0b64ba92011-10-23 20:07:52 +00002279 ER = ParseConstantExpression();
2280
Richard Smith80ad52f2013-01-02 11:42:31 +00002281 if (getLangOpts().CPlusPlus11 && Tok.is(tok::ellipsis))
Peter Collingbournefe9b2a82011-10-24 17:56:00 +00002282 EllipsisLoc = ConsumeToken();
Peter Collingbourne0b64ba92011-10-23 20:07:52 +00002283
2284 return ER;
Peter Collingbourne82d0b0a2011-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 Kramerffbe9b92011-12-23 17:00:35 +00002291/// [C11] '_Alignas' '(' type-id ')'
2292/// [C11] '_Alignas' '(' constant-expression ')'
Richard Smith33f04a22013-01-29 01:48:07 +00002293/// [C++11] 'alignas' '(' type-id ...[opt] ')'
2294/// [C++11] 'alignas' '(' assignment-expression ...[opt] ')'
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002295void Parser::ParseAlignmentSpecifier(ParsedAttributes &Attrs,
Richard Smithf6565a92013-02-22 08:32:16 +00002296 SourceLocation *EndLoc) {
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002297 assert((Tok.is(tok::kw_alignas) || Tok.is(tok::kw__Alignas)) &&
2298 "Not an alignment-specifier!");
2299
Richard Smith33f04a22013-01-29 01:48:07 +00002300 IdentifierInfo *KWName = Tok.getIdentifierInfo();
2301 SourceLocation KWLoc = ConsumeToken();
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002302
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002303 BalancedDelimiterTracker T(*this, tok::l_paren);
2304 if (T.expectAndConsume(diag::err_expected_lparen))
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002305 return;
2306
Peter Collingbourne0b64ba92011-10-23 20:07:52 +00002307 SourceLocation EllipsisLoc;
2308 ExprResult ArgExpr = ParseAlignArgument(T.getOpenLocation(), EllipsisLoc);
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002309 if (ArgExpr.isInvalid()) {
2310 SkipUntil(tok::r_paren);
2311 return;
2312 }
2313
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002314 T.consumeClose();
Richard Smithf6565a92013-02-22 08:32:16 +00002315 if (EndLoc)
2316 *EndLoc = T.getCloseLocation();
Peter Collingbourne0b64ba92011-10-23 20:07:52 +00002317
Aaron Ballman624421f2013-08-31 01:11:41 +00002318 ArgsVector ArgExprs;
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002319 ArgExprs.push_back(ArgExpr.release());
Aaron Ballman624421f2013-08-31 01:11:41 +00002320 Attrs.addNew(KWName, KWLoc, 0, KWLoc, ArgExprs.data(), 1,
2321 AttributeList::AS_Keyword, EllipsisLoc);
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002322}
2323
Reid Spencer5f016e22007-07-11 17:01:13 +00002324/// ParseDeclarationSpecifiers
2325/// declaration-specifiers: [C99 6.7]
2326/// storage-class-specifier declaration-specifiers[opt]
2327/// type-specifier declaration-specifiers[opt]
Reid Spencer5f016e22007-07-11 17:01:13 +00002328/// [C99] function-specifier declaration-specifiers[opt]
Benjamin Kramerffbe9b92011-12-23 17:00:35 +00002329/// [C11] alignment-specifier declaration-specifiers[opt]
Reid Spencer5f016e22007-07-11 17:01:13 +00002330/// [GNU] attributes declaration-specifiers[opt]
Douglas Gregor8d267c52011-09-09 02:06:17 +00002331/// [Clang] '__module_private__' declaration-specifiers[opt]
Reid Spencer5f016e22007-07-11 17:01:13 +00002332///
2333/// storage-class-specifier: [C99 6.7.1]
2334/// 'typedef'
2335/// 'extern'
2336/// 'static'
2337/// 'auto'
2338/// 'register'
Sebastian Redl669d5d72008-11-14 23:42:31 +00002339/// [C++] 'mutable'
Richard Smithec642442013-04-12 22:46:28 +00002340/// [C++11] 'thread_local'
2341/// [C11] '_Thread_local'
Reid Spencer5f016e22007-07-11 17:01:13 +00002342/// [GNU] '__thread'
Reid Spencer5f016e22007-07-11 17:01:13 +00002343/// function-specifier: [C99 6.7.4]
2344/// [C99] 'inline'
Douglas Gregorb48fe382008-10-31 09:07:45 +00002345/// [C++] 'virtual'
2346/// [C++] 'explicit'
Peter Collingbournef315fa82011-02-14 01:42:53 +00002347/// [OpenCL] '__kernel'
Anders Carlssonf47f7a12009-05-06 04:46:28 +00002348/// 'friend': [C++ dcl.friend]
Sebastian Redl2ac67232009-11-05 15:47:02 +00002349/// 'constexpr': [C++0x dcl.constexpr]
Anders Carlssonf47f7a12009-05-06 04:46:28 +00002350
Reid Spencer5f016e22007-07-11 17:01:13 +00002351///
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +00002352void Parser::ParseDeclarationSpecifiers(DeclSpec &DS,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00002353 const ParsedTemplateInfo &TemplateInfo,
John McCall67d1a672009-08-06 02:15:43 +00002354 AccessSpecifier AS,
DeLesley Hutchins2287c5e2012-03-02 22:12:59 +00002355 DeclSpecContext DSContext,
2356 LateParsedAttrList *LateAttrs) {
Douglas Gregor312eadb2011-04-24 05:37:28 +00002357 if (DS.getSourceRange().isInvalid()) {
2358 DS.SetRangeStart(Tok.getLocation());
2359 DS.SetRangeEnd(Tok.getLocation());
2360 }
Chad Rosier8decdee2012-06-26 22:30:43 +00002361
Douglas Gregorefaa93a2011-11-07 17:33:42 +00002362 bool EnteringContext = (DSContext == DSC_class || DSContext == DSC_top_level);
Sean Hunt2edf0a22012-06-23 05:07:58 +00002363 bool AttrsLastTime = false;
2364 ParsedAttributesWithRange attrs(AttrFactory);
Reid Spencer5f016e22007-07-11 17:01:13 +00002365 while (1) {
John McCallfec54012009-08-03 20:12:06 +00002366 bool isInvalid = false;
Reid Spencer5f016e22007-07-11 17:01:13 +00002367 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +00002368 unsigned DiagID = 0;
2369
Reid Spencer5f016e22007-07-11 17:01:13 +00002370 SourceLocation Loc = Tok.getLocation();
Douglas Gregor12e083c2008-11-07 15:42:26 +00002371
Reid Spencer5f016e22007-07-11 17:01:13 +00002372 switch (Tok.getKind()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002373 default:
Chris Lattnerbce61352008-07-26 00:20:22 +00002374 DoneWithDeclSpec:
Sean Hunt2edf0a22012-06-23 05:07:58 +00002375 if (!AttrsLastTime)
2376 ProhibitAttributes(attrs);
Michael Hanf64231e2012-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
Sean Hunt2edf0a22012-06-23 05:07:58 +00002383 DS.takeAttributesFrom(attrs);
Michael Hanf64231e2012-11-06 19:34:54 +00002384 }
Peter Collingbournef1907682011-09-29 18:03:57 +00002385
Reid Spencer5f016e22007-07-11 17:01:13 +00002386 // If this is not a declaration specifier token, we're done reading decl
2387 // specifiers. First verify that DeclSpec's are consistent.
Douglas Gregor9b3064b2009-04-01 22:41:11 +00002388 DS.Finish(Diags, PP);
Reid Spencer5f016e22007-07-11 17:01:13 +00002389 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002390
Sean Hunt2edf0a22012-06-23 05:07:58 +00002391 case tok::l_square:
2392 case tok::kw_alignas:
Richard Smith672edb02013-02-22 09:15:49 +00002393 if (!getLangOpts().CPlusPlus11 || !isCXX11AttributeSpecifier())
Sean Hunt2edf0a22012-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 Rosier8decdee2012-06-26 22:30:43 +00002405 continue;
Sean Hunt2edf0a22012-06-23 05:07:58 +00002406
Douglas Gregor2ccccb32010-08-23 18:23:48 +00002407 case tok::code_completion: {
John McCallf312b1e2010-08-26 23:41:50 +00002408 Sema::ParserCompletionContext CCC = Sema::PCC_Namespace;
Douglas Gregor2ccccb32010-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 Rosier8decdee2012-06-26 22:30:43 +00002417 = DSContext == DSC_top_level ||
Douglas Gregor2ccccb32010-08-23 18:23:48 +00002418 (DSContext == DSC_class && DS.isFriendSpecified());
2419
Douglas Gregorc7b6d882010-09-16 15:14:18 +00002420 Actions.CodeCompleteDeclSpec(getCurScope(), DS,
Chad Rosier8decdee2012-06-26 22:30:43 +00002421 AllowNonIdentifiers,
Douglas Gregorc7b6d882010-09-16 15:14:18 +00002422 AllowNestedNameSpecifiers);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002423 return cutOffParsing();
Chad Rosier8decdee2012-06-26 22:30:43 +00002424 }
2425
Douglas Gregor68e3c2e2011-02-15 20:33:25 +00002426 if (getCurScope()->getFnParent() || getCurScope()->getBlockParent())
2427 CCC = Sema::PCC_LocalDeclarationSpecifiers;
2428 else if (TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate)
Chad Rosier8decdee2012-06-26 22:30:43 +00002429 CCC = DSContext == DSC_class? Sema::PCC_MemberTemplate
John McCallf312b1e2010-08-26 23:41:50 +00002430 : Sema::PCC_Template;
Douglas Gregor2ccccb32010-08-23 18:23:48 +00002431 else if (DSContext == DSC_class)
John McCallf312b1e2010-08-26 23:41:50 +00002432 CCC = Sema::PCC_Class;
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00002433 else if (CurParsedObjCImpl)
John McCallf312b1e2010-08-26 23:41:50 +00002434 CCC = Sema::PCC_ObjCImplementation;
Chad Rosier8decdee2012-06-26 22:30:43 +00002435
Douglas Gregor2ccccb32010-08-23 18:23:48 +00002436 Actions.CodeCompleteOrdinaryName(getCurScope(), CCC);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002437 return cutOffParsing();
Douglas Gregor2ccccb32010-08-23 18:23:48 +00002438 }
2439
Chris Lattner5e02c472009-01-05 00:07:25 +00002440 case tok::coloncolon: // ::foo::bar
John McCall9ba61662010-02-26 08:45:28 +00002441 // C++ scope specifier. Annotate and loop, or bail out on error.
Eli Friedman5a428202013-08-15 23:59:20 +00002442 if (TryAnnotateCXXScopeToken(EnteringContext)) {
John McCall9ba61662010-02-26 08:45:28 +00002443 if (!DS.hasTypeSpecifier())
2444 DS.SetTypeSpecError();
2445 goto DoneWithDeclSpec;
2446 }
John McCall2e0a7152010-03-01 18:20:46 +00002447 if (Tok.is(tok::coloncolon)) // ::new or ::delete
2448 goto DoneWithDeclSpec;
John McCall9ba61662010-02-26 08:45:28 +00002449 continue;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002450
2451 case tok::annot_cxxscope: {
Richard Smithf63eee72012-05-09 18:56:43 +00002452 if (DS.hasTypeSpecifier() || DS.isTypeAltiVecVector())
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002453 goto DoneWithDeclSpec;
2454
John McCallaa87d332009-12-12 11:40:51 +00002455 CXXScopeSpec SS;
Douglas Gregorc34348a2011-02-24 17:54:50 +00002456 Actions.RestoreNestedNameSpecifierAnnotation(Tok.getAnnotationValue(),
2457 Tok.getAnnotationRange(),
2458 SS);
John McCallaa87d332009-12-12 11:40:51 +00002459
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002460 // We are looking for a qualified typename.
Douglas Gregor9135c722009-03-25 15:40:00 +00002461 Token Next = NextToken();
Mike Stump1eb44332009-09-09 15:08:12 +00002462 if (Next.is(tok::annot_template_id) &&
Douglas Gregor9135c722009-03-25 15:40:00 +00002463 static_cast<TemplateIdAnnotation *>(Next.getAnnotationValue())
Douglas Gregorc45c2322009-03-31 00:43:58 +00002464 ->Kind == TNK_Type_template) {
Douglas Gregor9135c722009-03-25 15:40:00 +00002465 // We have a qualified template-id, e.g., N::A<int>
Douglas Gregor0efc2c12010-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 Rosier8decdee2012-06-26 22:30:43 +00002482 //
Douglas Gregor0efc2c12010-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 Rosier8decdee2012-06-26 22:30:43 +00002485 // reinforced by the NAD status of core issue 635.
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +00002486 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Next);
Dmitri Gribenko1b9e8f72013-02-12 17:27:41 +00002487 if ((DSContext == DSC_top_level || DSContext == DSC_class) &&
John McCallba9d8532010-04-13 06:39:49 +00002488 TemplateId->Name &&
Douglas Gregor23c94db2010-07-02 17:43:08 +00002489 Actions.isCurrentClassName(*TemplateId->Name, getCurScope(), &SS)) {
Douglas Gregor0efc2c12010-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 McCallaa87d332009-12-12 11:40:51 +00002507 DS.getTypeSpecScope() = SS;
2508 ConsumeToken(); // The C++ scope.
Mike Stump1eb44332009-09-09 15:08:12 +00002509 assert(Tok.is(tok::annot_template_id) &&
Douglas Gregor9135c722009-03-25 15:40:00 +00002510 "ParseOptionalCXXScopeSpecifier not working");
Douglas Gregor059101f2011-03-02 00:47:37 +00002511 AnnotateTemplateIdTokenAsType();
Douglas Gregor9135c722009-03-25 15:40:00 +00002512 continue;
2513 }
2514
Douglas Gregor9d7b3532009-09-28 07:26:33 +00002515 if (Next.is(tok::annot_typename)) {
John McCallaa87d332009-12-12 11:40:51 +00002516 DS.getTypeSpecScope() = SS;
2517 ConsumeToken(); // The C++ scope.
John McCallb3d87482010-08-24 05:47:05 +00002518 if (Tok.getAnnotationValue()) {
2519 ParsedType T = getTypeAnnotation(Tok);
Nico Weber253e80b2010-11-22 10:30:56 +00002520 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename,
Chad Rosier8decdee2012-06-26 22:30:43 +00002521 Tok.getAnnotationEndLoc(),
John McCallb3d87482010-08-24 05:47:05 +00002522 PrevSpec, DiagID, T);
Richard Smithb3cd3c02012-09-14 18:27:01 +00002523 if (isInvalid)
2524 break;
John McCallb3d87482010-08-24 05:47:05 +00002525 }
Douglas Gregor9d7b3532009-09-28 07:26:33 +00002526 else
2527 DS.SetTypeSpecError();
2528 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
2529 ConsumeToken(); // The typename
2530 }
2531
Douglas Gregor9135c722009-03-25 15:40:00 +00002532 if (Next.isNot(tok::identifier))
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002533 goto DoneWithDeclSpec;
2534
Douglas Gregor0efc2c12010-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 Gribenko1b9e8f72013-02-12 17:27:41 +00002537 if ((DSContext == DSC_top_level || DSContext == DSC_class) &&
Chad Rosier8decdee2012-06-26 22:30:43 +00002538 Actions.isCurrentClassName(*Next.getIdentifierInfo(), getCurScope(),
Douglas Gregor0efc2c12010-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 Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002552
John McCallb3d87482010-08-24 05:47:05 +00002553 ParsedType TypeRep = Actions.getTypeName(*Next.getIdentifierInfo(),
2554 Next.getLocation(),
Douglas Gregor9e876872011-03-01 18:12:44 +00002555 getCurScope(), &SS,
2556 false, false, ParsedType(),
Abramo Bagnarafad03b72012-01-27 08:46:19 +00002557 /*IsCtorOrDtorName=*/false,
Douglas Gregor9e876872011-03-01 18:12:44 +00002558 /*NonTrivialSourceInfo=*/true);
Douglas Gregor55f6b142009-02-09 18:46:07 +00002559
Chris Lattnerf4382f52009-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 Stump1eb44332009-09-09 15:08:12 +00002563 // typename.
David Blaikie7247c882013-05-15 07:37:26 +00002564 if (!TypeRep) {
Chris Lattnerf4382f52009-04-14 22:17:06 +00002565 ConsumeToken(); // Eat the scope spec so the identifier is current.
Michael Han2e397132012-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 Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002574 goto DoneWithDeclSpec;
Chris Lattnerf4382f52009-04-14 22:17:06 +00002575 }
Mike Stump1eb44332009-09-09 15:08:12 +00002576
John McCallaa87d332009-12-12 11:40:51 +00002577 DS.getTypeSpecScope() = SS;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002578 ConsumeToken(); // The C++ scope.
2579
Douglas Gregor1a51b4a2009-02-09 15:09:02 +00002580 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
John McCallfec54012009-08-03 20:12:06 +00002581 DiagID, TypeRep);
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002582 if (isInvalid)
2583 break;
Mike Stump1eb44332009-09-09 15:08:12 +00002584
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002585 DS.SetRangeEnd(Tok.getLocation());
2586 ConsumeToken(); // The typename.
2587
2588 continue;
2589 }
Mike Stump1eb44332009-09-09 15:08:12 +00002590
Chris Lattner80d0c892009-01-21 19:48:37 +00002591 case tok::annot_typename: {
John McCallb3d87482010-08-24 05:47:05 +00002592 if (Tok.getAnnotationValue()) {
2593 ParsedType T = getTypeAnnotation(Tok);
Nico Weberc43271e2010-11-22 12:50:03 +00002594 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
John McCallb3d87482010-08-24 05:47:05 +00002595 DiagID, T);
2596 } else
Douglas Gregor31a19b62009-04-01 21:51:26 +00002597 DS.SetTypeSpecError();
Chad Rosier8decdee2012-06-26 22:30:43 +00002598
Chris Lattner5c5db552010-04-05 18:18:31 +00002599 if (isInvalid)
2600 break;
2601
Chris Lattner80d0c892009-01-21 19:48:37 +00002602 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
2603 ConsumeToken(); // The typename
Mike Stump1eb44332009-09-09 15:08:12 +00002604
Chris Lattner80d0c892009-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 Rosier8decdee2012-06-26 22:30:43 +00002607 // Objective-C interface.
David Blaikie4e4d0842012-03-11 07:00:24 +00002608 if (Tok.is(tok::less) && getLangOpts().ObjC1)
Douglas Gregor9bd1d8d2010-10-21 23:17:00 +00002609 ParseObjCProtocolQualifiers(DS);
Chad Rosier8decdee2012-06-26 22:30:43 +00002610
Chris Lattner80d0c892009-01-21 19:48:37 +00002611 continue;
2612 }
Mike Stump1eb44332009-09-09 15:08:12 +00002613
Douglas Gregorbfad9152011-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 Rosier8decdee2012-06-26 22:30:43 +00002631
Chris Lattner3bd934a2008-07-26 01:18:38 +00002632 // typedef-name
David Blaikie42d6d0c2011-12-04 05:04:18 +00002633 case tok::kw_decltype:
Chris Lattner3bd934a2008-07-26 01:18:38 +00002634 case tok::identifier: {
Chris Lattner5e02c472009-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 Blaikie4e4d0842012-03-11 07:00:24 +00002637 if (getLangOpts().CPlusPlus) {
Eli Friedman5a428202013-08-15 23:59:20 +00002638 if (TryAnnotateCXXScopeToken(EnteringContext)) {
John McCall9ba61662010-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 Stump1eb44332009-09-09 15:08:12 +00002646
Chris Lattner3bd934a2008-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 Stump1eb44332009-09-09 15:08:12 +00002652
John Thompson82287d12010-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 Smithf63eee72012-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 McCallb3d87482010-08-24 05:47:05 +00002662 ParsedType TypeRep =
2663 Actions.getTypeName(*Tok.getIdentifierInfo(),
2664 Tok.getLocation(), getCurScope());
Douglas Gregor55f6b142009-02-09 18:46:07 +00002665
Chris Lattnerc199ab32009-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 McCallb3d87482010-08-24 05:47:05 +00002668 if (!TypeRep) {
Michael Han2e397132012-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 Lattner3bd934a2008-07-26 01:18:38 +00002677 goto DoneWithDeclSpec;
Chris Lattnerc199ab32009-04-12 20:42:31 +00002678 }
Douglas Gregor55f6b142009-02-09 18:46:07 +00002679
Douglas Gregor0efc2c12010-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 Blaikie4e4d0842012-03-11 07:00:24 +00002682 if (getLangOpts().CPlusPlus && DSContext == DSC_class &&
Douglas Gregor23c94db2010-07-02 17:43:08 +00002683 Actions.isCurrentClassName(*Tok.getIdentifierInfo(), getCurScope()) &&
Douglas Gregor0efc2c12010-01-13 17:31:36 +00002684 isConstructorDeclarator())
Douglas Gregorb48fe382008-10-31 09:07:45 +00002685 goto DoneWithDeclSpec;
2686
Douglas Gregor1a51b4a2009-02-09 15:09:02 +00002687 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
John McCallfec54012009-08-03 20:12:06 +00002688 DiagID, TypeRep);
Chris Lattner3bd934a2008-07-26 01:18:38 +00002689 if (isInvalid)
2690 break;
Mike Stump1eb44332009-09-09 15:08:12 +00002691
Chris Lattner3bd934a2008-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 Rosier8decdee2012-06-26 22:30:43 +00002697 // Objective-C interface.
David Blaikie4e4d0842012-03-11 07:00:24 +00002698 if (Tok.is(tok::less) && getLangOpts().ObjC1)
Douglas Gregor9bd1d8d2010-10-21 23:17:00 +00002699 ParseObjCProtocolQualifiers(DS);
Chad Rosier8decdee2012-06-26 22:30:43 +00002700
Steve Naroff4f9b9f12008-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 Lattner3bd934a2008-07-26 01:18:38 +00002704 }
Douglas Gregor39a8de12009-02-25 19:37:18 +00002705
2706 // type-name
2707 case tok::annot_template_id: {
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +00002708 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregorc45c2322009-03-31 00:43:58 +00002709 if (TemplateId->Kind != TNK_Type_template) {
Douglas Gregor39a8de12009-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 Gregor0efc2c12010-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 Blaikie4e4d0842012-03-11 07:00:24 +00002718 if (getLangOpts().CPlusPlus && DSContext == DSC_class &&
Douglas Gregor23c94db2010-07-02 17:43:08 +00002719 Actions.isCurrentClassName(*TemplateId->Name, getCurScope()) &&
Douglas Gregor0efc2c12010-01-13 17:31:36 +00002720 isConstructorDeclarator())
2721 goto DoneWithDeclSpec;
2722
Douglas Gregor39a8de12009-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 Gregor31a19b62009-04-01 21:51:26 +00002725 AnnotateTemplateIdTokenAsType();
Douglas Gregor39a8de12009-02-25 19:37:18 +00002726 continue;
2727 }
2728
Reid Spencer5f016e22007-07-11 17:01:13 +00002729 // GNU attributes support.
2730 case tok::kw___attribute:
DeLesley Hutchins2287c5e2012-03-02 22:12:59 +00002731 ParseGNUAttributes(DS.getAttributes(), 0, LateAttrs);
Reid Spencer5f016e22007-07-11 17:01:13 +00002732 continue;
Steve Narofff59e17e2008-12-24 20:59:21 +00002733
2734 // Microsoft declspec support.
2735 case tok::kw___declspec:
John McCall7f040a92010-12-24 02:08:15 +00002736 ParseMicrosoftDeclSpec(DS.getAttributes());
Steve Narofff59e17e2008-12-24 20:59:21 +00002737 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00002738
Steve Naroff239f0732008-12-25 14:16:32 +00002739 // Microsoft single token adornments.
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00002740 case tok::kw___forceinline: {
Chad Rosier22aa6902012-12-21 22:24:43 +00002741 isInvalid = DS.setFunctionSpecInline(Loc);
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00002742 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
Richard Smithb3cd3c02012-09-14 18:27:01 +00002743 SourceLocation AttrNameLoc = Tok.getLocation();
Sean Hunt93f95f22012-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 Ballman624421f2013-08-31 01:11:41 +00002746 DS.getAttributes().addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0, 0,
2747 AttributeList::AS_GNU);
Richard Smithb3cd3c02012-09-14 18:27:01 +00002748 break;
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00002749 }
Eli Friedman290eeb02009-06-08 23:27:34 +00002750
Aaron Ballmanaa9df092013-05-22 23:25:32 +00002751 case tok::kw___sptr:
2752 case tok::kw___uptr:
Eli Friedman290eeb02009-06-08 23:27:34 +00002753 case tok::kw___ptr64:
Francois Pichet58fd97a2011-08-25 00:36:46 +00002754 case tok::kw___ptr32:
Steve Naroff86bc6cf2008-12-25 14:41:26 +00002755 case tok::kw___w64:
Steve Naroff239f0732008-12-25 14:16:32 +00002756 case tok::kw___cdecl:
2757 case tok::kw___stdcall:
2758 case tok::kw___fastcall:
Douglas Gregorf813a2c2010-05-18 16:57:00 +00002759 case tok::kw___thiscall:
Francois Pichet3bd9aa42011-08-18 09:59:55 +00002760 case tok::kw___unaligned:
John McCall7f040a92010-12-24 02:08:15 +00002761 ParseMicrosoftTypeAttributes(DS.getAttributes());
Eli Friedman290eeb02009-06-08 23:27:34 +00002762 continue;
2763
Dawn Perchik52fc3142010-09-03 01:29:35 +00002764 // Borland single token adornments.
2765 case tok::kw___pascal:
John McCall7f040a92010-12-24 02:08:15 +00002766 ParseBorlandTypeAttributes(DS.getAttributes());
Dawn Perchik52fc3142010-09-03 01:29:35 +00002767 continue;
2768
Peter Collingbournef315fa82011-02-14 01:42:53 +00002769 // OpenCL single token adornments.
2770 case tok::kw___kernel:
2771 ParseOpenCLAttributes(DS.getAttributes());
2772 continue;
2773
Reid Spencer5f016e22007-07-11 17:01:13 +00002774 // storage-class-specifier
2775 case tok::kw_typedef:
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00002776 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_typedef, Loc,
2777 PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +00002778 break;
2779 case tok::kw_extern:
Richard Smithec642442013-04-12 22:46:28 +00002780 if (DS.getThreadStorageClassSpec() == DeclSpec::TSCS___thread)
Chris Lattner1ab3b962008-11-18 07:48:38 +00002781 Diag(Tok, diag::ext_thread_before) << "extern";
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00002782 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_extern, Loc,
2783 PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +00002784 break;
Steve Naroff8d54bf22007-12-18 00:16:02 +00002785 case tok::kw___private_extern__:
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00002786 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_private_extern,
2787 Loc, PrevSpec, DiagID);
Steve Naroff8d54bf22007-12-18 00:16:02 +00002788 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00002789 case tok::kw_static:
Richard Smithec642442013-04-12 22:46:28 +00002790 if (DS.getThreadStorageClassSpec() == DeclSpec::TSCS___thread)
Chris Lattner1ab3b962008-11-18 07:48:38 +00002791 Diag(Tok, diag::ext_thread_before) << "static";
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00002792 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_static, Loc,
2793 PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +00002794 break;
2795 case tok::kw_auto:
Richard Smith80ad52f2013-01-02 11:42:31 +00002796 if (getLangOpts().CPlusPlus11) {
Fariborz Jahanian12e3ece2011-02-22 23:17:49 +00002797 if (isKnownToBeTypeSpecifier(GetLookAheadToken(1))) {
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00002798 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_auto, Loc,
2799 PrevSpec, DiagID);
Fariborz Jahanian12e3ece2011-02-22 23:17:49 +00002800 if (!isInvalid)
Richard Smith8f4fb192011-09-04 19:54:14 +00002801 Diag(Tok, diag::ext_auto_storage_class)
Fariborz Jahanian12e3ece2011-02-22 23:17:49 +00002802 << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc());
Richard Smith8f4fb192011-09-04 19:54:14 +00002803 } else
Fariborz Jahanian12e3ece2011-02-22 23:17:49 +00002804 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_auto, Loc, PrevSpec,
2805 DiagID);
Richard Smith8f4fb192011-09-04 19:54:14 +00002806 } else
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00002807 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_auto, Loc,
2808 PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +00002809 break;
2810 case tok::kw_register:
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00002811 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_register, Loc,
2812 PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +00002813 break;
Sebastian Redl669d5d72008-11-14 23:42:31 +00002814 case tok::kw_mutable:
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00002815 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_mutable, Loc,
2816 PrevSpec, DiagID);
Sebastian Redl669d5d72008-11-14 23:42:31 +00002817 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00002818 case tok::kw___thread:
Richard Smithec642442013-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);
Reid Spencer5f016e22007-07-11 17:01:13 +00002829 break;
Mike Stump1eb44332009-09-09 15:08:12 +00002830
Reid Spencer5f016e22007-07-11 17:01:13 +00002831 // function-specifier
2832 case tok::kw_inline:
Chad Rosier22aa6902012-12-21 22:24:43 +00002833 isInvalid = DS.setFunctionSpecInline(Loc);
Reid Spencer5f016e22007-07-11 17:01:13 +00002834 break;
Douglas Gregorb48fe382008-10-31 09:07:45 +00002835 case tok::kw_virtual:
Chad Rosier22aa6902012-12-21 22:24:43 +00002836 isInvalid = DS.setFunctionSpecVirtual(Loc);
Douglas Gregorb48fe382008-10-31 09:07:45 +00002837 break;
Douglas Gregorb48fe382008-10-31 09:07:45 +00002838 case tok::kw_explicit:
Chad Rosier22aa6902012-12-21 22:24:43 +00002839 isInvalid = DS.setFunctionSpecExplicit(Loc);
Douglas Gregorb48fe382008-10-31 09:07:45 +00002840 break;
Richard Smithde03c152013-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 Lattner80d0c892009-01-21 19:48:37 +00002846
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002847 // alignment-specifier
2848 case tok::kw__Alignas:
David Blaikie4e4d0842012-03-11 07:00:24 +00002849 if (!getLangOpts().C11)
Jordan Rosef70a8862012-06-30 21:33:57 +00002850 Diag(Tok, diag::ext_c11_alignment) << Tok.getName();
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002851 ParseAlignmentSpecifier(DS.getAttributes());
2852 continue;
2853
Anders Carlssonf47f7a12009-05-06 04:46:28 +00002854 // friend
2855 case tok::kw_friend:
John McCall67d1a672009-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 Carlssonf47f7a12009-05-06 04:46:28 +00002863 break;
Mike Stump1eb44332009-09-09 15:08:12 +00002864
Douglas Gregor8d267c52011-09-09 02:06:17 +00002865 // Modules
2866 case tok::kw___module_private__:
2867 isInvalid = DS.setModulePrivateSpec(Loc, PrevSpec, DiagID);
2868 break;
Chad Rosier8decdee2012-06-26 22:30:43 +00002869
Sebastian Redl2ac67232009-11-05 15:47:02 +00002870 // constexpr
2871 case tok::kw_constexpr:
2872 isInvalid = DS.SetConstexprSpec(Loc, PrevSpec, DiagID);
2873 break;
2874
Chris Lattner80d0c892009-01-21 19:48:37 +00002875 // type-specifier
2876 case tok::kw_short:
John McCallfec54012009-08-03 20:12:06 +00002877 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_short, Loc, PrevSpec,
2878 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002879 break;
2880 case tok::kw_long:
2881 if (DS.getTypeSpecWidth() != DeclSpec::TSW_long)
John McCallfec54012009-08-03 20:12:06 +00002882 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_long, Loc, PrevSpec,
2883 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002884 else
John McCallfec54012009-08-03 20:12:06 +00002885 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_longlong, Loc, PrevSpec,
2886 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002887 break;
Francois Pichet338d7f72011-04-28 01:59:37 +00002888 case tok::kw___int64:
2889 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_longlong, Loc, PrevSpec,
2890 DiagID);
2891 break;
Chris Lattner80d0c892009-01-21 19:48:37 +00002892 case tok::kw_signed:
John McCallfec54012009-08-03 20:12:06 +00002893 isInvalid = DS.SetTypeSpecSign(DeclSpec::TSS_signed, Loc, PrevSpec,
2894 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002895 break;
2896 case tok::kw_unsigned:
John McCallfec54012009-08-03 20:12:06 +00002897 isInvalid = DS.SetTypeSpecSign(DeclSpec::TSS_unsigned, Loc, PrevSpec,
2898 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002899 break;
2900 case tok::kw__Complex:
John McCallfec54012009-08-03 20:12:06 +00002901 isInvalid = DS.SetTypeSpecComplex(DeclSpec::TSC_complex, Loc, PrevSpec,
2902 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002903 break;
2904 case tok::kw__Imaginary:
John McCallfec54012009-08-03 20:12:06 +00002905 isInvalid = DS.SetTypeSpecComplex(DeclSpec::TSC_imaginary, Loc, PrevSpec,
2906 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002907 break;
2908 case tok::kw_void:
John McCallfec54012009-08-03 20:12:06 +00002909 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_void, Loc, PrevSpec,
2910 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002911 break;
2912 case tok::kw_char:
John McCallfec54012009-08-03 20:12:06 +00002913 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char, Loc, PrevSpec,
2914 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002915 break;
2916 case tok::kw_int:
John McCallfec54012009-08-03 20:12:06 +00002917 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, PrevSpec,
2918 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002919 break;
Richard Smith5a5a9712012-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 Lattner80d0c892009-01-21 19:48:37 +00002928 case tok::kw_float:
John McCallfec54012009-08-03 20:12:06 +00002929 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_float, Loc, PrevSpec,
2930 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002931 break;
2932 case tok::kw_double:
John McCallfec54012009-08-03 20:12:06 +00002933 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_double, Loc, PrevSpec,
2934 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002935 break;
2936 case tok::kw_wchar_t:
John McCallfec54012009-08-03 20:12:06 +00002937 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_wchar, Loc, PrevSpec,
2938 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002939 break;
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00002940 case tok::kw_char16_t:
John McCallfec54012009-08-03 20:12:06 +00002941 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char16, Loc, PrevSpec,
2942 DiagID);
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00002943 break;
2944 case tok::kw_char32_t:
John McCallfec54012009-08-03 20:12:06 +00002945 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char32, Loc, PrevSpec,
2946 DiagID);
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00002947 break;
Chris Lattner80d0c892009-01-21 19:48:37 +00002948 case tok::kw_bool:
2949 case tok::kw__Bool:
Argyrios Kyrtzidis4383e182010-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 Jahaniane106a0b2011-04-19 21:42:37 +00002955 // For better error recovery.
2956 Tok.setKind(tok::identifier);
Argyrios Kyrtzidis4383e182010-11-16 18:18:13 +00002957 isInvalid = true;
2958 } else {
2959 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_bool, Loc, PrevSpec,
2960 DiagID);
2961 }
Chris Lattner80d0c892009-01-21 19:48:37 +00002962 break;
2963 case tok::kw__Decimal32:
John McCallfec54012009-08-03 20:12:06 +00002964 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal32, Loc, PrevSpec,
2965 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002966 break;
2967 case tok::kw__Decimal64:
John McCallfec54012009-08-03 20:12:06 +00002968 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal64, Loc, PrevSpec,
2969 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002970 break;
2971 case tok::kw__Decimal128:
John McCallfec54012009-08-03 20:12:06 +00002972 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal128, Loc, PrevSpec,
2973 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002974 break;
John Thompson82287d12010-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 Benyeib13621d2012-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 Benyei21f18c42013-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 Benyeie6b9d802013-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 McCalla5fc4722011-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 Lattner80d0c892009-01-21 19:48:37 +00003017
3018 // class-specifier:
3019 case tok::kw_class:
3020 case tok::kw_struct:
Joao Matos6666ed42012-08-31 18:45:21 +00003021 case tok::kw___interface:
Chris Lattner4c97d762009-04-12 21:49:30 +00003022 case tok::kw_union: {
3023 tok::TokenKind Kind = Tok.getKind();
3024 ConsumeToken();
Michael Han2e397132012-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 Wendlingad017fa2012-12-20 19:22:21 +00003029 ParsedAttributesWithRange Attributes(AttrFactory);
Richard Smith69730c12012-03-12 07:56:15 +00003030 ParseClassSpecifier(Kind, Loc, DS, TemplateInfo, AS,
Bill Wendlingad017fa2012-12-20 19:22:21 +00003031 EnteringContext, DSContext, Attributes);
Michael Han2e397132012-11-26 22:54:45 +00003032
3033 // If there are attributes following class specifier,
3034 // take them over and handle them here.
Bill Wendlingad017fa2012-12-20 19:22:21 +00003035 if (!Attributes.empty()) {
Michael Han2e397132012-11-26 22:54:45 +00003036 AttrsLastTime = true;
Bill Wendlingad017fa2012-12-20 19:22:21 +00003037 attrs.takeAllFrom(Attributes);
Michael Han2e397132012-11-26 22:54:45 +00003038 }
Chris Lattner80d0c892009-01-21 19:48:37 +00003039 continue;
Chris Lattner4c97d762009-04-12 21:49:30 +00003040 }
Chris Lattner80d0c892009-01-21 19:48:37 +00003041
3042 // enum-specifier:
3043 case tok::kw_enum:
Chris Lattner4c97d762009-04-12 21:49:30 +00003044 ConsumeToken();
Richard Smith69730c12012-03-12 07:56:15 +00003045 ParseEnumSpecifier(Loc, DS, TemplateInfo, AS, DSContext);
Chris Lattner80d0c892009-01-21 19:48:37 +00003046 continue;
3047
3048 // cv-qualifier:
3049 case tok::kw_const:
John McCallfec54012009-08-03 20:12:06 +00003050 isInvalid = DS.SetTypeQual(DeclSpec::TQ_const, Loc, PrevSpec, DiagID,
Richard Smithd654f2d2012-10-17 23:31:46 +00003051 getLangOpts());
Chris Lattner80d0c892009-01-21 19:48:37 +00003052 break;
3053 case tok::kw_volatile:
John McCallfec54012009-08-03 20:12:06 +00003054 isInvalid = DS.SetTypeQual(DeclSpec::TQ_volatile, Loc, PrevSpec, DiagID,
Richard Smithd654f2d2012-10-17 23:31:46 +00003055 getLangOpts());
Chris Lattner80d0c892009-01-21 19:48:37 +00003056 break;
3057 case tok::kw_restrict:
John McCallfec54012009-08-03 20:12:06 +00003058 isInvalid = DS.SetTypeQual(DeclSpec::TQ_restrict, Loc, PrevSpec, DiagID,
Richard Smithd654f2d2012-10-17 23:31:46 +00003059 getLangOpts());
Chris Lattner80d0c892009-01-21 19:48:37 +00003060 break;
3061
Douglas Gregord57959a2009-03-27 23:10:48 +00003062 // C++ typename-specifier:
3063 case tok::kw_typename:
John McCall9ba61662010-02-26 08:45:28 +00003064 if (TryAnnotateTypeOrScopeToken()) {
3065 DS.SetTypeSpecError();
3066 goto DoneWithDeclSpec;
3067 }
3068 if (!Tok.is(tok::kw_typename))
Douglas Gregord57959a2009-03-27 23:10:48 +00003069 continue;
3070 break;
3071
Chris Lattner80d0c892009-01-21 19:48:37 +00003072 // GNU typeof support.
3073 case tok::kw_typeof:
3074 ParseTypeofSpecifier(DS);
3075 continue;
3076
David Blaikie42d6d0c2011-12-04 05:04:18 +00003077 case tok::annot_decltype:
Anders Carlsson6fd634f2009-06-24 17:47:40 +00003078 ParseDecltypeSpecifier(DS);
3079 continue;
3080
Sean Huntdb5d44b2011-05-19 05:37:45 +00003081 case tok::kw___underlying_type:
3082 ParseUnderlyingTypeSpecifier(DS);
Eli Friedmanb001de72011-10-06 23:00:33 +00003083 continue;
3084
3085 case tok::kw__Atomic:
Richard Smith4cf4a5e2013-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;
Sean Huntdb5d44b2011-05-19 05:37:45 +00003097
Peter Collingbourne207f4d82011-03-18 22:38:29 +00003098 // OpenCL qualifiers:
Chad Rosier8decdee2012-06-26 22:30:43 +00003099 case tok::kw_private:
David Blaikie4e4d0842012-03-11 07:00:24 +00003100 if (!getLangOpts().OpenCL)
Peter Collingbourne207f4d82011-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 Rosier8decdee2012-06-26 22:30:43 +00003111
Steve Naroffd3ded1f2008-06-05 00:02:44 +00003112 case tok::less:
Chris Lattner3bd934a2008-07-26 01:18:38 +00003113 // GCC ObjC supports types like "<SomeProtocol>" as a synonym for
Chris Lattnerbce61352008-07-26 00:20:22 +00003114 // "id<SomeProtocol>". This is hopelessly old fashioned and dangerous,
3115 // but we support it.
David Blaikie4e4d0842012-03-11 07:00:24 +00003116 if (DS.hasTypeSpecifier() || !getLangOpts().ObjC1)
Chris Lattnerbce61352008-07-26 00:20:22 +00003117 goto DoneWithDeclSpec;
Mike Stump1eb44332009-09-09 15:08:12 +00003118
Douglas Gregor46f936e2010-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 Rosier8decdee2012-06-26 22:30:43 +00003123
Douglas Gregor9bd1d8d2010-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;
Reid Spencer5f016e22007-07-11 17:01:13 +00003127 }
John McCallfec54012009-08-03 20:12:06 +00003128 // If the specifier wasn't legal, issue a diagnostic.
Reid Spencer5f016e22007-07-11 17:01:13 +00003129 if (isInvalid) {
3130 assert(PrevSpec && "Method did not return previous specifier!");
John McCallfec54012009-08-03 20:12:06 +00003131 assert(DiagID);
Chad Rosier8decdee2012-06-26 22:30:43 +00003132
Douglas Gregorae2fb142010-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;
Reid Spencer5f016e22007-07-11 17:01:13 +00003138 }
Fariborz Jahanian12e3ece2011-02-22 23:17:49 +00003139
Chris Lattner81c018d2008-03-13 06:29:04 +00003140 DS.SetRangeEnd(Tok.getLocation());
Fariborz Jahaniane106a0b2011-04-19 21:42:37 +00003141 if (DiagID != diag::err_bool_redeclaration)
3142 ConsumeToken();
Sean Hunt2edf0a22012-06-23 05:07:58 +00003143
3144 AttrsLastTime = false;
Reid Spencer5f016e22007-07-11 17:01:13 +00003145 }
3146}
Douglas Gregoradcac882008-12-01 23:54:00 +00003147
Chris Lattnercd4b83c2007-10-29 04:42:53 +00003148/// ParseStructDeclaration - Parse a struct declaration without the terminating
3149/// semicolon.
3150///
Reid Spencer5f016e22007-07-11 17:01:13 +00003151/// struct-declaration:
Chris Lattnercd4b83c2007-10-29 04:42:53 +00003152/// specifier-qualifier-list struct-declarator-list
Reid Spencer5f016e22007-07-11 17:01:13 +00003153/// [GNU] __extension__ struct-declaration
Chris Lattnercd4b83c2007-10-29 04:42:53 +00003154/// [GNU] specifier-qualifier-list
Reid Spencer5f016e22007-07-11 17:01:13 +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 Lattnere1359422008-04-10 06:46:29 +00003165void Parser::
Eli Friedmanf66a0dd2012-08-08 23:04:35 +00003166ParseStructDeclaration(ParsingDeclSpec &DS, FieldCallback &Fields) {
Chad Rosier8decdee2012-06-26 22:30:43 +00003167
Chris Lattnerc46d1a12008-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 Naroff28a7ca82007-08-20 22:28:22 +00003171 ConsumeToken();
Chris Lattnerc46d1a12008-10-20 06:45:43 +00003172 return ParseStructDeclaration(DS, Fields);
3173 }
Mike Stump1eb44332009-09-09 15:08:12 +00003174
Steve Naroff28a7ca82007-08-20 22:28:22 +00003175 // Parse the common specifier-qualifiers-list piece.
Steve Naroff28a7ca82007-08-20 22:28:22 +00003176 ParseSpecifierQualifierList(DS);
Mike Stump1eb44332009-09-09 15:08:12 +00003177
Douglas Gregor4920f1f2009-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 Lattner04d66662007-10-09 17:33:22 +00003180 if (Tok.is(tok::semi)) {
Eli Friedmanf66a0dd2012-08-08 23:04:35 +00003181 Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS_none,
3182 DS);
3183 DS.complete(TheDecl);
Steve Naroff28a7ca82007-08-20 22:28:22 +00003184 return;
3185 }
3186
3187 // Read struct-declarators until we find the semicolon.
John McCallbdd563e2009-11-03 02:38:08 +00003188 bool FirstDeclarator = true;
Richard Smith7984de32012-01-12 23:53:29 +00003189 SourceLocation CommaLoc;
Steve Naroff28a7ca82007-08-20 22:28:22 +00003190 while (1) {
Eli Friedmanf66a0dd2012-08-08 23:04:35 +00003191 ParsingFieldDeclarator DeclaratorInfo(*this, DS);
Richard Smith7984de32012-01-12 23:53:29 +00003192 DeclaratorInfo.D.setCommaLoc(CommaLoc);
John McCallbdd563e2009-11-03 02:38:08 +00003193
Bill Wendlingad017fa2012-12-20 19:22:21 +00003194 // Attributes are only allowed here on successive declarators.
John McCall7f040a92010-12-24 02:08:15 +00003195 if (!FirstDeclarator)
3196 MaybeParseGNUAttributes(DeclaratorInfo.D);
Mike Stump1eb44332009-09-09 15:08:12 +00003197
Steve Naroff28a7ca82007-08-20 22:28:22 +00003198 /// struct-declarator: declarator
3199 /// struct-declarator: declarator[opt] ':' constant-expression
Chris Lattnera1efc8c2009-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 Lattnere1359422008-04-10 06:46:29 +00003203 ParseDeclarator(DeclaratorInfo.D);
Chris Lattnera1efc8c2009-12-10 01:59:24 +00003204 }
Mike Stump1eb44332009-09-09 15:08:12 +00003205
Chris Lattner04d66662007-10-09 17:33:22 +00003206 if (Tok.is(tok::colon)) {
Steve Naroff28a7ca82007-08-20 22:28:22 +00003207 ConsumeToken();
John McCall60d7b3a2010-08-24 06:29:42 +00003208 ExprResult Res(ParseConstantExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00003209 if (Res.isInvalid())
Steve Naroff28a7ca82007-08-20 22:28:22 +00003210 SkipUntil(tok::semi, true, true);
Chris Lattner60b1e3e2008-04-10 06:15:14 +00003211 else
Sebastian Redleffa8d12008-12-10 00:02:53 +00003212 DeclaratorInfo.BitfieldSize = Res.release();
Steve Naroff28a7ca82007-08-20 22:28:22 +00003213 }
Sebastian Redlab197ba2009-02-09 18:23:29 +00003214
Steve Naroff28a7ca82007-08-20 22:28:22 +00003215 // If attributes exist after the declarator, parse them.
John McCall7f040a92010-12-24 02:08:15 +00003216 MaybeParseGNUAttributes(DeclaratorInfo.D);
Sebastian Redlab197ba2009-02-09 18:23:29 +00003217
John McCallbdd563e2009-11-03 02:38:08 +00003218 // We're done with this declarator; invoke the callback.
Eli Friedman817a8862012-08-08 23:35:12 +00003219 Fields.invoke(DeclaratorInfo);
John McCallbdd563e2009-11-03 02:38:08 +00003220
Steve Naroff28a7ca82007-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 Lattner04d66662007-10-09 17:33:22 +00003223 if (Tok.isNot(tok::comma))
Chris Lattnercd4b83c2007-10-29 04:42:53 +00003224 return;
Sebastian Redlab197ba2009-02-09 18:23:29 +00003225
Steve Naroff28a7ca82007-08-20 22:28:22 +00003226 // Consume the comma.
Richard Smith7984de32012-01-12 23:53:29 +00003227 CommaLoc = ConsumeToken();
Sebastian Redlab197ba2009-02-09 18:23:29 +00003228
John McCallbdd563e2009-11-03 02:38:08 +00003229 FirstDeclarator = false;
Steve Naroff28a7ca82007-08-20 22:28:22 +00003230 }
Steve Naroff28a7ca82007-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 Lattner5a6ddbf2008-06-21 19:39:06 +00003241/// [OBC] '@' 'defs' '(' class-name ')'
Steve Naroff28a7ca82007-08-20 22:28:22 +00003242///
Reid Spencer5f016e22007-07-11 17:01:13 +00003243void Parser::ParseStructUnionBody(SourceLocation RecordLoc,
John McCalld226f652010-08-21 09:40:31 +00003244 unsigned TagType, Decl *TagDecl) {
John McCallf312b1e2010-08-26 23:41:50 +00003245 PrettyDeclStackTraceEntry CrashInfo(Actions, TagDecl, RecordLoc,
3246 "parsing struct/union body");
Andy Gibbsf50f3f72013-04-03 09:31:19 +00003247 assert(!getLangOpts().CPlusPlus && "C++ declarations not supported");
Mike Stump1eb44332009-09-09 15:08:12 +00003248
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00003249 BalancedDelimiterTracker T(*this, tok::l_brace);
3250 if (T.consumeOpen())
3251 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003252
Douglas Gregor3218c4b2009-01-09 22:42:13 +00003253 ParseScope StructScope(this, Scope::ClassScope|Scope::DeclScope);
Douglas Gregor23c94db2010-07-02 17:43:08 +00003254 Actions.ActOnTagStartDefinition(getCurScope(), TagDecl);
Douglas Gregor72de6672009-01-08 20:45:30 +00003255
Chris Lattner5f9e2722011-07-23 10:55:15 +00003256 SmallVector<Decl *, 32> FieldDecls;
Chris Lattnere1359422008-04-10 06:46:29 +00003257
Reid Spencer5f016e22007-07-11 17:01:13 +00003258 // While we still have something to read, read the declarations in the struct.
Chris Lattner04d66662007-10-09 17:33:22 +00003259 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003260 // Each iteration of this loop reads one struct-declaration.
Mike Stump1eb44332009-09-09 15:08:12 +00003261
Reid Spencer5f016e22007-07-11 17:01:13 +00003262 // Check for extraneous top-level semicolon.
Chris Lattner04d66662007-10-09 17:33:22 +00003263 if (Tok.is(tok::semi)) {
Richard Smitheab9d6f2012-07-23 05:45:25 +00003264 ConsumeExtraSemi(InsideStruct, TagType);
Reid Spencer5f016e22007-07-11 17:01:13 +00003265 continue;
3266 }
Chris Lattnere1359422008-04-10 06:46:29 +00003267
Andy Gibbs74b9fa12013-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 Kyrtzidisbd957452013-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 McCallbdd563e2009-11-03 02:38:08 +00003285 if (!Tok.is(tok::at)) {
3286 struct CFieldCallback : FieldCallback {
3287 Parser &P;
John McCalld226f652010-08-21 09:40:31 +00003288 Decl *TagDecl;
Chris Lattner5f9e2722011-07-23 10:55:15 +00003289 SmallVectorImpl<Decl *> &FieldDecls;
John McCallbdd563e2009-11-03 02:38:08 +00003290
John McCalld226f652010-08-21 09:40:31 +00003291 CFieldCallback(Parser &P, Decl *TagDecl,
Chris Lattner5f9e2722011-07-23 10:55:15 +00003292 SmallVectorImpl<Decl *> &FieldDecls) :
John McCallbdd563e2009-11-03 02:38:08 +00003293 P(P), TagDecl(TagDecl), FieldDecls(FieldDecls) {}
3294
Eli Friedmandcdff462012-08-08 23:53:27 +00003295 void invoke(ParsingFieldDeclarator &FD) {
John McCallbdd563e2009-11-03 02:38:08 +00003296 // Install the declarator into the current TagDecl.
John McCalld226f652010-08-21 09:40:31 +00003297 Decl *Field = P.Actions.ActOnField(P.getCurScope(), TagDecl,
John McCall4ba39712009-11-03 21:13:47 +00003298 FD.D.getDeclSpec().getSourceRange().getBegin(),
3299 FD.D, FD.BitfieldSize);
John McCallbdd563e2009-11-03 02:38:08 +00003300 FieldDecls.push_back(Field);
Eli Friedmanf66a0dd2012-08-08 23:04:35 +00003301 FD.complete(Field);
Douglas Gregor91a28862009-08-26 14:27:30 +00003302 }
John McCallbdd563e2009-11-03 02:38:08 +00003303 } Callback(*this, TagDecl, FieldDecls);
3304
Eli Friedmanf66a0dd2012-08-08 23:04:35 +00003305 // Parse all the comma separated declarators.
3306 ParsingDeclSpec DS(*this);
John McCallbdd563e2009-11-03 02:38:08 +00003307 ParseStructDeclaration(DS, Callback);
Chris Lattner5a6ddbf2008-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 Lattner3e156ad2010-02-02 00:37:27 +00003312 SkipUntil(tok::semi, true);
Chris Lattner5a6ddbf2008-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 Lattner3e156ad2010-02-02 00:37:27 +00003319 SkipUntil(tok::semi, true);
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00003320 continue;
3321 }
Chris Lattner5f9e2722011-07-23 10:55:15 +00003322 SmallVector<Decl *, 16> Fields;
Douglas Gregor23c94db2010-07-02 17:43:08 +00003323 Actions.ActOnDefs(getCurScope(), TagDecl, Tok.getLocation(),
Douglas Gregor44b43212008-12-11 16:49:14 +00003324 Tok.getIdentifierInfo(), Fields);
Chris Lattner5a6ddbf2008-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 Stump1eb44332009-09-09 15:08:12 +00003328 }
Reid Spencer5f016e22007-07-11 17:01:13 +00003329
Chris Lattner04d66662007-10-09 17:33:22 +00003330 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003331 ConsumeToken();
Chris Lattner04d66662007-10-09 17:33:22 +00003332 } else if (Tok.is(tok::r_brace)) {
Chris Lattner3e156ad2010-02-02 00:37:27 +00003333 ExpectAndConsume(tok::semi, diag::ext_expected_semi_decl_list);
Reid Spencer5f016e22007-07-11 17:01:13 +00003334 break;
3335 } else {
Chris Lattner3e156ad2010-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 ';'.
Reid Spencer5f016e22007-07-11 17:01:13 +00003338 SkipUntil(tok::r_brace, true, true);
Chris Lattner3e156ad2010-02-02 00:37:27 +00003339 // If we stopped at a ';', eat it.
3340 if (Tok.is(tok::semi)) ConsumeToken();
Reid Spencer5f016e22007-07-11 17:01:13 +00003341 }
3342 }
Mike Stump1eb44332009-09-09 15:08:12 +00003343
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00003344 T.consumeClose();
Mike Stump1eb44332009-09-09 15:08:12 +00003345
John McCall0b7e6782011-03-24 11:26:52 +00003346 ParsedAttributes attrs(AttrFactory);
Reid Spencer5f016e22007-07-11 17:01:13 +00003347 // If attributes exist after struct contents, parse them.
John McCall7f040a92010-12-24 02:08:15 +00003348 MaybeParseGNUAttributes(attrs);
Daniel Dunbar1bfe1c22008-10-03 02:03:53 +00003349
Douglas Gregor23c94db2010-07-02 17:43:08 +00003350 Actions.ActOnFields(getCurScope(),
David Blaikie77b6de02011-09-22 02:58:26 +00003351 RecordLoc, TagDecl, FieldDecls,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00003352 T.getOpenLocation(), T.getCloseLocation(),
John McCall7f040a92010-12-24 02:08:15 +00003353 attrs.getList());
Douglas Gregor72de6672009-01-08 20:45:30 +00003354 StructScope.Exit();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00003355 Actions.ActOnTagFinishDefinition(getCurScope(), TagDecl,
3356 T.getCloseLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00003357}
3358
Reid Spencer5f016e22007-07-11 17:01:13 +00003359/// ParseEnumSpecifier
3360/// enum-specifier: [C99 6.7.2.2]
3361/// 'enum' identifier[opt] '{' enumerator-list '}'
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00003362///[C99/C++]'enum' identifier[opt] '{' enumerator-list ',' '}'
Reid Spencer5f016e22007-07-11 17:01:13 +00003363/// [GNU] 'enum' attributes[opt] identifier[opt] '{' enumerator-list ',' [opt]
3364/// '}' attributes[opt]
Aaron Ballman6454a022012-03-01 04:09:28 +00003365/// [MS] 'enum' __declspec[opt] identifier[opt] '{' enumerator-list ',' [opt]
3366/// '}'
Reid Spencer5f016e22007-07-11 17:01:13 +00003367/// 'enum' identifier
3368/// [GNU] 'enum' attributes[opt] identifier
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00003369///
Richard Smith1af83c42012-03-23 03:33:32 +00003370/// [C++11] enum-head '{' enumerator-list[opt] '}'
3371/// [C++11] enum-head '{' enumerator-list ',' '}'
Douglas Gregor1274ccd2010-10-08 23:50:27 +00003372///
Richard Smith1af83c42012-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 Gregor1274ccd2010-10-08 23:50:27 +00003377///
Richard Smith1af83c42012-03-23 03:33:32 +00003378/// enum-key: [C++11]
Douglas Gregor1274ccd2010-10-08 23:50:27 +00003379/// 'enum'
3380/// 'enum' 'class'
3381/// 'enum' 'struct'
3382///
Richard Smith1af83c42012-03-23 03:33:32 +00003383/// enum-base: [C++11]
Douglas Gregor1274ccd2010-10-08 23:50:27 +00003384/// ':' type-specifier-seq
3385///
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00003386/// [C++] elaborated-type-specifier:
3387/// [C++] 'enum' '::'[opt] nested-name-specifier[opt] identifier
3388///
Chris Lattner4c97d762009-04-12 21:49:30 +00003389void Parser::ParseEnumSpecifier(SourceLocation StartLoc, DeclSpec &DS,
Douglas Gregor9b9edd62010-03-02 17:53:14 +00003390 const ParsedTemplateInfo &TemplateInfo,
Richard Smith69730c12012-03-12 07:56:15 +00003391 AccessSpecifier AS, DeclSpecContext DSC) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003392 // Parse the tag portion of this.
Douglas Gregor374929f2009-09-18 15:37:17 +00003393 if (Tok.is(tok::code_completion)) {
3394 // Code completion for an enum name.
Douglas Gregor23c94db2010-07-02 17:43:08 +00003395 Actions.CodeCompleteTag(getCurScope(), DeclSpec::TST_enum);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00003396 return cutOffParsing();
Douglas Gregor374929f2009-09-18 15:37:17 +00003397 }
John McCall57c13002011-07-06 05:58:41 +00003398
Sean Hunt2edf0a22012-06-23 05:07:58 +00003399 // If attributes exist after tag, parse them.
3400 ParsedAttributesWithRange attrs(AttrFactory);
3401 MaybeParseGNUAttributes(attrs);
Richard Smith4e24f0f2013-01-02 12:01:23 +00003402 MaybeParseCXX11Attributes(attrs);
Sean Hunt2edf0a22012-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 Smithbdad7a22012-01-10 01:33:14 +00003408 SourceLocation ScopedEnumKWLoc;
John McCall57c13002011-07-06 05:58:41 +00003409 bool IsScopedUsingClassTag = false;
3410
John McCall1e12b3d2012-06-23 22:30:04 +00003411 // In C++11, recognize 'enum class' and 'enum struct'.
Richard Trieued5a2922013-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 McCall57c13002011-07-06 05:58:41 +00003415 IsScopedUsingClassTag = Tok.is(tok::kw_class);
Richard Smithbdad7a22012-01-10 01:33:14 +00003416 ScopedEnumKWLoc = ConsumeToken();
Chad Rosier8decdee2012-06-26 22:30:43 +00003417
Bill Wendlingad017fa2012-12-20 19:22:21 +00003418 // Attributes are not allowed between these keywords. Diagnose,
John McCall1e12b3d2012-06-23 22:30:04 +00003419 // but then just treat them like they appeared in the right place.
Sean Hunt2edf0a22012-06-23 05:07:58 +00003420 ProhibitAttributes(attrs);
John McCall1e12b3d2012-06-23 22:30:04 +00003421
3422 // They are allowed afterwards, though.
3423 MaybeParseGNUAttributes(attrs);
Richard Smith4e24f0f2013-01-02 12:01:23 +00003424 MaybeParseCXX11Attributes(attrs);
John McCall1e12b3d2012-06-23 22:30:04 +00003425 while (Tok.is(tok::kw___declspec))
3426 ParseMicrosoftDeclSpec(attrs);
John McCall57c13002011-07-06 05:58:41 +00003427 }
Richard Smith1af83c42012-03-23 03:33:32 +00003428
John McCall13489672012-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 Smith1af83c42012-03-23 03:33:32 +00003439
Richard Smith7796eb52012-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 Smith80ad52f2013-01-02 11:42:31 +00003444 (getLangOpts().CPlusPlus11 || getLangOpts().MicrosoftExt ||
Richard Smith7796eb52012-03-12 08:56:40 +00003445 getLangOpts().ObjC2);
John McCall57c13002011-07-06 05:58:41 +00003446
Abramo Bagnarae4da7a02010-05-19 21:37:53 +00003447 CXXScopeSpec &SS = DS.getTypeSpecScope();
David Blaikie4e4d0842012-03-11 07:00:24 +00003448 if (getLangOpts().CPlusPlus) {
John McCall57c13002011-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 Rosier8decdee2012-06-26 22:30:43 +00003452
3453 if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(),
Richard Smith725fe0e2013-04-01 21:43:41 +00003454 /*EnteringContext=*/true))
John McCall9ba61662010-02-26 08:45:28 +00003455 return;
3456
3457 if (SS.isSet() && Tok.isNot(tok::identifier)) {
Argyrios Kyrtzidiseb83ecd2008-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 Stump1eb44332009-09-09 15:08:12 +00003467
Argyrios Kyrtzidise281b4c2008-09-11 00:21:41 +00003468 // Must have either 'enum name' or 'enum {...}'.
Douglas Gregorb9075602011-02-22 02:55:24 +00003469 if (Tok.isNot(tok::identifier) && Tok.isNot(tok::l_brace) &&
Richard Smith7796eb52012-03-12 08:56:40 +00003470 !(AllowFixedUnderlyingType && Tok.is(tok::colon))) {
Argyrios Kyrtzidise281b4c2008-09-11 00:21:41 +00003471 Diag(Tok, diag::err_expected_ident_lbrace);
Mike Stump1eb44332009-09-09 15:08:12 +00003472
Argyrios Kyrtzidise281b4c2008-09-11 00:21:41 +00003473 // Skip the rest of this declarator, up until the comma or semicolon.
3474 SkipUntil(tok::comma, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00003475 return;
Argyrios Kyrtzidise281b4c2008-09-11 00:21:41 +00003476 }
Mike Stump1eb44332009-09-09 15:08:12 +00003477
Argyrios Kyrtzidise281b4c2008-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 Stump1eb44332009-09-09 15:08:12 +00003485
Richard Smithbdad7a22012-01-10 01:33:14 +00003486 if (!Name && ScopedEnumKWLoc.isValid()) {
Douglas Gregor1274ccd2010-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 Smithbdad7a22012-01-10 01:33:14 +00003490 ScopedEnumKWLoc = SourceLocation();
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +00003491 IsScopedUsingClassTag = false;
Douglas Gregor1274ccd2010-10-08 23:50:27 +00003492 }
3493
John McCall13489672012-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 Smith1af83c42012-03-23 03:33:32 +00003498
Douglas Gregor1274ccd2010-10-08 23:50:27 +00003499 TypeResult BaseType;
3500
Douglas Gregora61b3e72010-12-01 17:42:47 +00003501 // Parse the fixed underlying type.
Richard Smith139be702012-07-02 19:14:01 +00003502 bool CanBeBitfield = getCurScope()->getFlags() & Scope::ClassScope;
Douglas Gregorb9075602011-02-22 02:55:24 +00003503 if (AllowFixedUnderlyingType && Tok.is(tok::colon)) {
Douglas Gregora61b3e72010-12-01 17:42:47 +00003504 bool PossibleBitfield = false;
Richard Smith139be702012-07-02 19:14:01 +00003505 if (CanBeBitfield) {
Douglas Gregora61b3e72010-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 Rosier8decdee2012-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 Gregora61b3e72010-12-01 17:42:47 +00003512 // underlying types anyway.
Richard Smith05766812012-08-18 00:55:03 +00003513 EnterExpressionEvaluationContext Unevaluated(Actions,
3514 Sema::ConstantEvaluated);
Douglas Gregora61b3e72010-12-01 17:42:47 +00003515 TPResult TPR = isExpressionOrTypeSpecifierSimple(NextToken().getKind());
Chad Rosier8decdee2012-06-26 22:30:43 +00003516 // If the next token starts an expression, we know we're parsing a
Douglas Gregora61b3e72010-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 Rosier8decdee2012-06-26 22:30:43 +00003522 // lookahead one more token to see if it's obvious that we have a
Douglas Gregora61b3e72010-12-01 17:42:47 +00003523 // fixed underlying type.
Chad Rosier8decdee2012-06-26 22:30:43 +00003524 else if (TPR == TPResult::False() &&
Douglas Gregora61b3e72010-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 Smithd81e9612012-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 Blaikie4e4d0842012-03-11 07:00:24 +00003543 if ((getLangOpts().CPlusPlus &&
Richard Smithd81e9612012-02-23 01:36:12 +00003544 isCXXDeclarationSpecifier(TPResult::True()) != TPResult::True()) ||
David Blaikie4e4d0842012-03-11 07:00:24 +00003545 (!getLangOpts().CPlusPlus && !isDeclarationSpecifier(true))) {
Douglas Gregora61b3e72010-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 Rosier8decdee2012-06-26 22:30:43 +00003562
Richard Smith80ad52f2013-01-02 11:42:31 +00003563 if (getLangOpts().CPlusPlus11) {
Richard Smith7fe62082011-10-15 05:09:34 +00003564 Diag(StartLoc, diag::warn_cxx98_compat_enum_fixed_underlying_type);
Eli Friedmancef3a7b2012-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 Gregora61b3e72010-12-01 17:42:47 +00003571 }
Douglas Gregor1274ccd2010-10-08 23:50:27 +00003572 }
3573
Richard Smithbdad7a22012-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 Kyrtzidise281b4c2008-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 McCallf312b1e2010-08-26 23:41:50 +00003584 Sema::TagUseKind TUK;
John McCall13489672012-05-07 06:16:58 +00003585 if (!AllowDeclaration) {
Richard Smith7796eb52012-03-12 08:56:40 +00003586 TUK = Sema::TUK_Reference;
John McCall13489672012-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 Smithc9f35172012-06-25 21:37:02 +00003597 } else if (DSC != DSC_type_specifier &&
3598 (Tok.is(tok::semi) ||
Richard Smith139be702012-07-02 19:14:01 +00003599 (Tok.isAtStartOfLine() &&
3600 !isValidAfterTypeSpecifier(CanBeBitfield)))) {
Richard Smithc9f35172012-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 McCall13489672012-05-07 06:16:58 +00003609 } else {
John McCallf312b1e2010-08-26 23:41:50 +00003610 TUK = Sema::TUK_Reference;
John McCall13489672012-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 Smith1af83c42012-03-23 03:33:32 +00003618
3619 MultiTemplateParamsArg TParams;
Douglas Gregor8fc6d232010-05-03 17:48:54 +00003620 if (TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate &&
John McCallf312b1e2010-08-26 23:41:50 +00003621 TUK != Sema::TUK_Reference) {
Richard Smith80ad52f2013-01-02 11:42:31 +00003622 if (!getLangOpts().CPlusPlus11 || !SS.isSet()) {
Richard Smith1af83c42012-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 Gregor8fc6d232010-05-03 17:48:54 +00003639 }
Chad Rosier8decdee2012-06-26 22:30:43 +00003640
Sean Hunt2edf0a22012-06-23 05:07:58 +00003641 if (TUK == Sema::TUK_Reference)
3642 ProhibitAttributes(attrs);
Richard Smith1af83c42012-03-23 03:33:32 +00003643
Douglas Gregorb9075602011-02-22 02:55:24 +00003644 if (!Name && TUK != Sema::TUK_Definition) {
3645 Diag(Tok, diag::err_enumerator_unnamed_no_def);
Richard Smith1af83c42012-03-23 03:33:32 +00003646
Douglas Gregorb9075602011-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 Smith1af83c42012-03-23 03:33:32 +00003651
Douglas Gregor402abb52009-05-28 23:31:59 +00003652 bool Owned = false;
John McCallc4e70192009-09-11 04:59:25 +00003653 bool IsDependent = false;
Douglas Gregor48c89f42010-04-24 16:38:41 +00003654 const char *PrevSpec = 0;
3655 unsigned DiagID;
John McCalld226f652010-08-21 09:40:31 +00003656 Decl *TagDecl = Actions.ActOnTag(getCurScope(), DeclSpec::TST_enum, TUK,
John McCall7f040a92010-12-24 02:08:15 +00003657 StartLoc, SS, Name, NameLoc, attrs.getList(),
Richard Smith1af83c42012-03-23 03:33:32 +00003658 AS, DS.getModulePrivateSpecLoc(), TParams,
Richard Smithbdad7a22012-01-10 01:33:14 +00003659 Owned, IsDependent, ScopedEnumKWLoc,
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +00003660 IsScopedUsingClassTag, BaseType);
Douglas Gregor1274ccd2010-10-08 23:50:27 +00003661
Douglas Gregor48c89f42010-04-24 16:38:41 +00003662 if (IsDependent) {
Chad Rosier8decdee2012-06-26 22:30:43 +00003663 // This enum has a dependent nested-name-specifier. Handle it as a
Douglas Gregor48c89f42010-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 Rosier8decdee2012-06-26 22:30:43 +00003670
Douglas Gregor23c94db2010-07-02 17:43:08 +00003671 TypeResult Type = Actions.ActOnDependentTag(getCurScope(), DeclSpec::TST_enum,
Chad Rosier8decdee2012-06-26 22:30:43 +00003672 TUK, SS, Name, StartLoc,
Douglas Gregor48c89f42010-04-24 16:38:41 +00003673 NameLoc);
3674 if (Type.isInvalid()) {
3675 DS.SetTypeSpecError();
3676 return;
3677 }
Chad Rosier8decdee2012-06-26 22:30:43 +00003678
Abramo Bagnara0daaf322011-03-16 20:16:18 +00003679 if (DS.SetTypeSpecType(DeclSpec::TST_typename, StartLoc,
3680 NameLoc.isValid() ? NameLoc : StartLoc,
3681 PrevSpec, DiagID, Type.get()))
Douglas Gregor48c89f42010-04-24 16:38:41 +00003682 Diag(StartLoc, DiagID) << PrevSpec;
Chad Rosier8decdee2012-06-26 22:30:43 +00003683
Douglas Gregor48c89f42010-04-24 16:38:41 +00003684 return;
3685 }
Mike Stump1eb44332009-09-09 15:08:12 +00003686
John McCalld226f652010-08-21 09:40:31 +00003687 if (!TagDecl) {
Chad Rosier8decdee2012-06-26 22:30:43 +00003688 // The action failed to produce an enumeration tag. If this is a
Douglas Gregor48c89f42010-04-24 16:38:41 +00003689 // definition, consume the entire definition.
Richard Smith7796eb52012-03-12 08:56:40 +00003690 if (Tok.is(tok::l_brace) && TUK != Sema::TUK_Reference) {
Douglas Gregor48c89f42010-04-24 16:38:41 +00003691 ConsumeBrace();
3692 SkipUntil(tok::r_brace);
3693 }
Chad Rosier8decdee2012-06-26 22:30:43 +00003694
Douglas Gregor48c89f42010-04-24 16:38:41 +00003695 DS.SetTypeSpecError();
3696 return;
3697 }
Richard Smithbdad7a22012-01-10 01:33:14 +00003698
Richard Smithc9f35172012-06-25 21:37:02 +00003699 if (Tok.is(tok::l_brace) && TUK != Sema::TUK_Reference)
John McCall13489672012-05-07 06:16:58 +00003700 ParseEnumBody(StartLoc, TagDecl);
Mike Stump1eb44332009-09-09 15:08:12 +00003701
Abramo Bagnara0daaf322011-03-16 20:16:18 +00003702 if (DS.SetTypeSpecType(DeclSpec::TST_enum, StartLoc,
3703 NameLoc.isValid() ? NameLoc : StartLoc,
3704 PrevSpec, DiagID, TagDecl, Owned))
John McCallfec54012009-08-03 20:12:06 +00003705 Diag(StartLoc, DiagID) << PrevSpec;
Reid Spencer5f016e22007-07-11 17:01:13 +00003706}
3707
3708/// 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 McCalld226f652010-08-21 09:40:31 +00003718void Parser::ParseEnumBody(SourceLocation StartLoc, Decl *EnumDecl) {
Douglas Gregor074149e2009-01-05 19:45:36 +00003719 // Enter the scope of the enum body and start the definition.
3720 ParseScope EnumScope(this, Scope::DeclScope);
Douglas Gregor23c94db2010-07-02 17:43:08 +00003721 Actions.ActOnTagStartDefinition(getCurScope(), EnumDecl);
Douglas Gregor074149e2009-01-05 19:45:36 +00003722
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00003723 BalancedDelimiterTracker T(*this, tok::l_brace);
3724 T.consumeOpen();
Mike Stump1eb44332009-09-09 15:08:12 +00003725
Chris Lattner7946dd32007-08-27 17:24:30 +00003726 // C does not allow an empty enumerator-list, C++ does [dcl.enum].
David Blaikie4e4d0842012-03-11 07:00:24 +00003727 if (Tok.is(tok::r_brace) && !getLangOpts().CPlusPlus)
Fariborz Jahanian05115522010-05-28 22:23:22 +00003728 Diag(Tok, diag::error_empty_enum);
Mike Stump1eb44332009-09-09 15:08:12 +00003729
Chris Lattner5f9e2722011-07-23 10:55:15 +00003730 SmallVector<Decl *, 32> EnumConstantDecls;
Reid Spencer5f016e22007-07-11 17:01:13 +00003731
John McCalld226f652010-08-21 09:40:31 +00003732 Decl *LastEnumConstDecl = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00003733
Reid Spencer5f016e22007-07-11 17:01:13 +00003734 // Parse the enumerator-list.
Chris Lattner04d66662007-10-09 17:33:22 +00003735 while (Tok.is(tok::identifier)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003736 IdentifierInfo *Ident = Tok.getIdentifierInfo();
3737 SourceLocation IdentLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00003738
John McCall5b629aa2010-10-22 23:36:17 +00003739 // If attributes exist after the enumerator, parse them.
Sean Hunt2edf0a22012-06-23 05:07:58 +00003740 ParsedAttributesWithRange attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +00003741 MaybeParseGNUAttributes(attrs);
Richard Smith4e24f0f2013-01-02 12:01:23 +00003742 MaybeParseCXX11Attributes(attrs);
Sean Hunt2edf0a22012-06-23 05:07:58 +00003743 ProhibitAttributes(attrs);
John McCall5b629aa2010-10-22 23:36:17 +00003744
Reid Spencer5f016e22007-07-11 17:01:13 +00003745 SourceLocation EqualLoc;
John McCall60d7b3a2010-08-24 06:29:42 +00003746 ExprResult AssignedVal;
John McCall92576642012-05-07 06:16:41 +00003747 ParsingDeclRAIIObject PD(*this, ParsingDeclRAIIObject::NoParent);
Chad Rosier8decdee2012-06-26 22:30:43 +00003748
Chris Lattner04d66662007-10-09 17:33:22 +00003749 if (Tok.is(tok::equal)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003750 EqualLoc = ConsumeToken();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00003751 AssignedVal = ParseConstantExpression();
3752 if (AssignedVal.isInvalid())
Reid Spencer5f016e22007-07-11 17:01:13 +00003753 SkipUntil(tok::comma, tok::r_brace, true, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00003754 }
Mike Stump1eb44332009-09-09 15:08:12 +00003755
Reid Spencer5f016e22007-07-11 17:01:13 +00003756 // Install the enumerator constant into EnumDecl.
John McCalld226f652010-08-21 09:40:31 +00003757 Decl *EnumConstDecl = Actions.ActOnEnumConstant(getCurScope(), EnumDecl,
3758 LastEnumConstDecl,
3759 IdentLoc, Ident,
John McCall7f040a92010-12-24 02:08:15 +00003760 attrs.getList(), EqualLoc,
John McCalld226f652010-08-21 09:40:31 +00003761 AssignedVal.release());
Fariborz Jahanian5a477db2011-12-09 01:15:54 +00003762 PD.complete(EnumConstDecl);
Chad Rosier8decdee2012-06-26 22:30:43 +00003763
Reid Spencer5f016e22007-07-11 17:01:13 +00003764 EnumConstantDecls.push_back(EnumConstDecl);
3765 LastEnumConstDecl = EnumConstDecl;
Mike Stump1eb44332009-09-09 15:08:12 +00003766
Douglas Gregor751f6922010-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 Rosier8decdee2012-06-26 22:30:43 +00003770 Diag(Loc, diag::err_enumerator_list_missing_comma)
Douglas Gregor751f6922010-09-07 14:51:08 +00003771 << FixItHint::CreateInsertion(Loc, ", ");
3772 continue;
3773 }
Chad Rosier8decdee2012-06-26 22:30:43 +00003774
Chris Lattner04d66662007-10-09 17:33:22 +00003775 if (Tok.isNot(tok::comma))
Reid Spencer5f016e22007-07-11 17:01:13 +00003776 break;
3777 SourceLocation CommaLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00003778
Richard Smith7fe62082011-10-15 05:09:34 +00003779 if (Tok.isNot(tok::identifier)) {
Richard Smith80ad52f2013-01-02 11:42:31 +00003780 if (!getLangOpts().C99 && !getLangOpts().CPlusPlus11)
Richard Smitheab9d6f2012-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 Smith7fe62082011-10-15 05:09:34 +00003784 << FixItHint::CreateRemoval(CommaLoc);
Richard Smith80ad52f2013-01-02 11:42:31 +00003785 else if (getLangOpts().CPlusPlus11)
Richard Smith7fe62082011-10-15 05:09:34 +00003786 Diag(CommaLoc, diag::warn_cxx98_compat_enumerator_list_comma)
3787 << FixItHint::CreateRemoval(CommaLoc);
3788 }
Reid Spencer5f016e22007-07-11 17:01:13 +00003789 }
Mike Stump1eb44332009-09-09 15:08:12 +00003790
Reid Spencer5f016e22007-07-11 17:01:13 +00003791 // Eat the }.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00003792 T.consumeClose();
Reid Spencer5f016e22007-07-11 17:01:13 +00003793
Reid Spencer5f016e22007-07-11 17:01:13 +00003794 // If attributes exist after the identifier list, parse them.
John McCall0b7e6782011-03-24 11:26:52 +00003795 ParsedAttributes attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +00003796 MaybeParseGNUAttributes(attrs);
Douglas Gregor72de6672009-01-08 20:45:30 +00003797
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00003798 Actions.ActOnEnumBody(StartLoc, T.getOpenLocation(), T.getCloseLocation(),
Dmitri Gribenko9ff2b422013-04-27 20:23:52 +00003799 EnumDecl, EnumConstantDecls,
3800 getCurScope(),
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00003801 attrs.getList());
Mike Stump1eb44332009-09-09 15:08:12 +00003802
Douglas Gregor72de6672009-01-08 20:45:30 +00003803 EnumScope.Exit();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00003804 Actions.ActOnTagFinishDefinition(getCurScope(), EnumDecl,
3805 T.getCloseLocation());
Richard Smithc9f35172012-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 Smith139be702012-07-02 19:14:01 +00003809 bool CanBeBitfield = getCurScope()->getFlags() & Scope::ClassScope;
3810 if (!isValidAfterTypeSpecifier(CanBeBitfield)) {
Richard Smithc9f35172012-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 }
Reid Spencer5f016e22007-07-11 17:01:13 +00003818}
3819
3820/// isTypeSpecifierQualifier - Return true if the current token could be the
Steve Naroff5f8aa692008-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 Collingbourne207f4d82011-03-18 22:38:29 +00003825
3826 // type-qualifier only in OpenCL
3827 case tok::kw_private:
David Blaikie4e4d0842012-03-11 07:00:24 +00003828 return getLangOpts().OpenCL;
Peter Collingbourne207f4d82011-03-18 22:38:29 +00003829
Steve Naroff5f8aa692008-02-11 23:15:56 +00003830 // type-qualifier
3831 case tok::kw_const:
3832 case tok::kw_volatile:
3833 case tok::kw_restrict:
Peter Collingbourne207f4d82011-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 Naroff5f8aa692008-02-11 23:15:56 +00003841 return true;
3842 }
3843}
3844
Chris Lattnerb3a4e432010-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 Pichet338d7f72011-04-28 01:59:37 +00003854 case tok::kw___int64:
Richard Smith5a5a9712012-04-04 06:24:32 +00003855 case tok::kw___int128:
Chris Lattnerb3a4e432010-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 Korobeynikovaa4a99b2011-10-14 23:23:15 +00003866 case tok::kw_half:
Chris Lattnerb3a4e432010-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 Rosier8decdee2012-06-26 22:30:43 +00003875
Guy Benyeib13621d2012-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 Benyei21f18c42013-02-07 10:55:47 +00003883 case tok::kw_sampler_t:
Guy Benyeie6b9d802013-01-20 12:31:11 +00003884 case tok::kw_event_t:
Guy Benyeib13621d2012-12-18 14:38:23 +00003885
Chris Lattnerb3a4e432010-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 Matos6666ed42012-08-31 18:45:21 +00003889 case tok::kw___interface:
Chris Lattnerb3a4e432010-02-28 18:18:36 +00003890 case tok::kw_union:
3891 // enum-specifier
3892 case tok::kw_enum:
Chad Rosier8decdee2012-06-26 22:30:43 +00003893
Chris Lattnerb3a4e432010-02-28 18:18:36 +00003894 // typedef-name
3895 case tok::annot_typename:
3896 return true;
3897 }
3898}
3899
Steve Naroff5f8aa692008-02-11 23:15:56 +00003900/// isTypeSpecifierQualifier - Return true if the current token could be the
Reid Spencer5f016e22007-07-11 17:01:13 +00003901/// start of a specifier-qualifier-list.
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00003902bool Parser::isTypeSpecifierQualifier() {
Reid Spencer5f016e22007-07-11 17:01:13 +00003903 switch (Tok.getKind()) {
3904 default: return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003905
Chris Lattner166a8fc2009-01-04 23:41:41 +00003906 case tok::identifier: // foo::bar
John Thompson82287d12010-02-05 00:12:22 +00003907 if (TryAltiVecVectorToken())
3908 return true;
3909 // Fall through.
Douglas Gregord57959a2009-03-27 23:10:48 +00003910 case tok::kw_typename: // typename T::type
Chris Lattner166a8fc2009-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 McCall9ba61662010-02-26 08:45:28 +00003914 return true;
3915 if (Tok.is(tok::identifier))
3916 return false;
3917 return isTypeSpecifierQualifier();
Douglas Gregord57959a2009-03-27 23:10:48 +00003918
Chris Lattner166a8fc2009-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 Lattner166a8fc2009-01-04 23:41:41 +00003924 if (TryAnnotateTypeOrScopeToken())
John McCall9ba61662010-02-26 08:45:28 +00003925 return true;
3926 return isTypeSpecifierQualifier();
Mike Stump1eb44332009-09-09 15:08:12 +00003927
Reid Spencer5f016e22007-07-11 17:01:13 +00003928 // GNU attributes support.
3929 case tok::kw___attribute:
Steve Naroffd1861fd2007-07-31 12:34:36 +00003930 // GNU typeof support.
3931 case tok::kw_typeof:
Mike Stump1eb44332009-09-09 15:08:12 +00003932
Reid Spencer5f016e22007-07-11 17:01:13 +00003933 // type-specifiers
3934 case tok::kw_short:
3935 case tok::kw_long:
Francois Pichet338d7f72011-04-28 01:59:37 +00003936 case tok::kw___int64:
Richard Smith5a5a9712012-04-04 06:24:32 +00003937 case tok::kw___int128:
Reid Spencer5f016e22007-07-11 17:01:13 +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 Kyrtzidis64c438a2008-08-09 16:51:54 +00003944 case tok::kw_wchar_t:
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00003945 case tok::kw_char16_t:
3946 case tok::kw_char32_t:
Reid Spencer5f016e22007-07-11 17:01:13 +00003947 case tok::kw_int:
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +00003948 case tok::kw_half:
Reid Spencer5f016e22007-07-11 17:01:13 +00003949 case tok::kw_float:
3950 case tok::kw_double:
Chris Lattner9298d962007-11-15 05:25:19 +00003951 case tok::kw_bool:
Reid Spencer5f016e22007-07-11 17:01:13 +00003952 case tok::kw__Bool:
3953 case tok::kw__Decimal32:
3954 case tok::kw__Decimal64:
3955 case tok::kw__Decimal128:
John Thompson82287d12010-02-05 00:12:22 +00003956 case tok::kw___vector:
Mike Stump1eb44332009-09-09 15:08:12 +00003957
Guy Benyeib13621d2012-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 Benyei21f18c42013-02-07 10:55:47 +00003965 case tok::kw_sampler_t:
Guy Benyeie6b9d802013-01-20 12:31:11 +00003966 case tok::kw_event_t:
Guy Benyeib13621d2012-12-18 14:38:23 +00003967
Chris Lattner99dc9142008-04-13 18:59:07 +00003968 // struct-or-union-specifier (C99) or class-specifier (C++)
3969 case tok::kw_class:
Reid Spencer5f016e22007-07-11 17:01:13 +00003970 case tok::kw_struct:
Joao Matos6666ed42012-08-31 18:45:21 +00003971 case tok::kw___interface:
Reid Spencer5f016e22007-07-11 17:01:13 +00003972 case tok::kw_union:
3973 // enum-specifier
3974 case tok::kw_enum:
Mike Stump1eb44332009-09-09 15:08:12 +00003975
Reid Spencer5f016e22007-07-11 17:01:13 +00003976 // type-qualifier
3977 case tok::kw_const:
3978 case tok::kw_volatile:
3979 case tok::kw_restrict:
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00003980
John McCallb8a8de32012-11-14 00:49:39 +00003981 // Debugger support.
3982 case tok::kw___unknown_anytype:
3983
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00003984 // typedef-name
Chris Lattnerb31757b2009-01-06 05:06:21 +00003985 case tok::annot_typename:
Reid Spencer5f016e22007-07-11 17:01:13 +00003986 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00003987
Chris Lattner7c186be2008-10-20 00:25:30 +00003988 // GNU ObjC bizarre protocol extension: <proto1,proto2> with implicit 'id'.
3989 case tok::less:
David Blaikie4e4d0842012-03-11 07:00:24 +00003990 return getLangOpts().ObjC1;
Mike Stump1eb44332009-09-09 15:08:12 +00003991
Steve Naroff239f0732008-12-25 14:16:32 +00003992 case tok::kw___cdecl:
3993 case tok::kw___stdcall:
3994 case tok::kw___fastcall:
Douglas Gregorf813a2c2010-05-18 16:57:00 +00003995 case tok::kw___thiscall:
Eli Friedman290eeb02009-06-08 23:27:34 +00003996 case tok::kw___w64:
3997 case tok::kw___ptr64:
Francois Pichet58fd97a2011-08-25 00:36:46 +00003998 case tok::kw___ptr32:
Dawn Perchik52fc3142010-09-03 01:29:35 +00003999 case tok::kw___pascal:
Francois Pichet3bd9aa42011-08-18 09:59:55 +00004000 case tok::kw___unaligned:
Peter Collingbourne207f4d82011-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 Friedman290eeb02009-06-08 23:27:34 +00004010 return true;
Peter Collingbourne207f4d82011-03-18 22:38:29 +00004011
4012 case tok::kw_private:
David Blaikie4e4d0842012-03-11 07:00:24 +00004013 return getLangOpts().OpenCL;
Eli Friedmanb001de72011-10-06 23:00:33 +00004014
Richard Smith4cf4a5e2013-03-28 01:55:44 +00004015 // C11 _Atomic
Eli Friedmanb001de72011-10-06 23:00:33 +00004016 case tok::kw__Atomic:
4017 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00004018 }
4019}
4020
4021/// isDeclarationSpecifier() - Return true if the current token is part of a
4022/// declaration specifier.
Douglas Gregor9497a732010-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) {
Reid Spencer5f016e22007-07-11 17:01:13 +00004027 switch (Tok.getKind()) {
4028 default: return false;
Mike Stump1eb44332009-09-09 15:08:12 +00004029
Peter Collingbourne207f4d82011-03-18 22:38:29 +00004030 case tok::kw_private:
David Blaikie4e4d0842012-03-11 07:00:24 +00004031 return getLangOpts().OpenCL;
Peter Collingbourne207f4d82011-03-18 22:38:29 +00004032
Chris Lattner166a8fc2009-01-04 23:41:41 +00004033 case tok::identifier: // foo::bar
Steve Naroff61f72cb2009-03-09 21:12:44 +00004034 // Unfortunate hack to support "Class.factoryMethod" notation.
David Blaikie4e4d0842012-03-11 07:00:24 +00004035 if (getLangOpts().ObjC1 && NextToken().is(tok::period))
Steve Naroff61f72cb2009-03-09 21:12:44 +00004036 return false;
John Thompson82287d12010-02-05 00:12:22 +00004037 if (TryAltiVecVectorToken())
4038 return true;
4039 // Fall through.
David Blaikie42d6d0c2011-12-04 05:04:18 +00004040 case tok::kw_decltype: // decltype(T())::type
Douglas Gregord57959a2009-03-27 23:10:48 +00004041 case tok::kw_typename: // typename T::type
Chris Lattner166a8fc2009-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 McCall9ba61662010-02-26 08:45:28 +00004045 return true;
4046 if (Tok.is(tok::identifier))
4047 return false;
Chad Rosier8decdee2012-06-26 22:30:43 +00004048
Douglas Gregor9497a732010-09-16 01:51:54 +00004049 // If we're in Objective-C and we have an Objective-C class type followed
Chad Rosier8decdee2012-06-26 22:30:43 +00004050 // by an identifier and then either ':' or ']', in a place where an
Douglas Gregor9497a732010-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 Rosier8decdee2012-06-26 22:30:43 +00004054 if (DisambiguatingWithExpression &&
Douglas Gregor9497a732010-09-16 01:51:54 +00004055 isStartOfObjCClassMessageMissingOpenBracket())
4056 return false;
Chad Rosier8decdee2012-06-26 22:30:43 +00004057
John McCall9ba61662010-02-26 08:45:28 +00004058 return isDeclarationSpecifier();
4059
Chris Lattner166a8fc2009-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 Stump1eb44332009-09-09 15:08:12 +00004064
Chris Lattner166a8fc2009-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 McCall9ba61662010-02-26 08:45:28 +00004068 return true;
4069 return isDeclarationSpecifier();
Mike Stump1eb44332009-09-09 15:08:12 +00004070
Reid Spencer5f016e22007-07-11 17:01:13 +00004071 // storage-class-specifier
4072 case tok::kw_typedef:
4073 case tok::kw_extern:
Steve Naroff8d54bf22007-12-18 00:16:02 +00004074 case tok::kw___private_extern__:
Reid Spencer5f016e22007-07-11 17:01:13 +00004075 case tok::kw_static:
4076 case tok::kw_auto:
4077 case tok::kw_register:
4078 case tok::kw___thread:
Richard Smithec642442013-04-12 22:46:28 +00004079 case tok::kw_thread_local:
4080 case tok::kw__Thread_local:
Mike Stump1eb44332009-09-09 15:08:12 +00004081
Douglas Gregor8d267c52011-09-09 02:06:17 +00004082 // Modules
4083 case tok::kw___module_private__:
Chad Rosier8decdee2012-06-26 22:30:43 +00004084
John McCallb8a8de32012-11-14 00:49:39 +00004085 // Debugger support
4086 case tok::kw___unknown_anytype:
4087
Reid Spencer5f016e22007-07-11 17:01:13 +00004088 // type-specifiers
4089 case tok::kw_short:
4090 case tok::kw_long:
Francois Pichet338d7f72011-04-28 01:59:37 +00004091 case tok::kw___int64:
Richard Smith5a5a9712012-04-04 06:24:32 +00004092 case tok::kw___int128:
Reid Spencer5f016e22007-07-11 17:01:13 +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 Kyrtzidis64c438a2008-08-09 16:51:54 +00004099 case tok::kw_wchar_t:
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00004100 case tok::kw_char16_t:
4101 case tok::kw_char32_t:
4102
Reid Spencer5f016e22007-07-11 17:01:13 +00004103 case tok::kw_int:
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +00004104 case tok::kw_half:
Reid Spencer5f016e22007-07-11 17:01:13 +00004105 case tok::kw_float:
4106 case tok::kw_double:
Chris Lattner9298d962007-11-15 05:25:19 +00004107 case tok::kw_bool:
Reid Spencer5f016e22007-07-11 17:01:13 +00004108 case tok::kw__Bool:
4109 case tok::kw__Decimal32:
4110 case tok::kw__Decimal64:
4111 case tok::kw__Decimal128:
John Thompson82287d12010-02-05 00:12:22 +00004112 case tok::kw___vector:
Mike Stump1eb44332009-09-09 15:08:12 +00004113
Guy Benyeib13621d2012-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 Benyei21f18c42013-02-07 10:55:47 +00004121 case tok::kw_sampler_t:
Guy Benyeie6b9d802013-01-20 12:31:11 +00004122 case tok::kw_event_t:
Guy Benyeib13621d2012-12-18 14:38:23 +00004123
Chris Lattner99dc9142008-04-13 18:59:07 +00004124 // struct-or-union-specifier (C99) or class-specifier (C++)
4125 case tok::kw_class:
Reid Spencer5f016e22007-07-11 17:01:13 +00004126 case tok::kw_struct:
4127 case tok::kw_union:
Joao Matos6666ed42012-08-31 18:45:21 +00004128 case tok::kw___interface:
Reid Spencer5f016e22007-07-11 17:01:13 +00004129 // enum-specifier
4130 case tok::kw_enum:
Mike Stump1eb44332009-09-09 15:08:12 +00004131
Reid Spencer5f016e22007-07-11 17:01:13 +00004132 // type-qualifier
4133 case tok::kw_const:
4134 case tok::kw_volatile:
4135 case tok::kw_restrict:
Steve Naroffd1861fd2007-07-31 12:34:36 +00004136
Reid Spencer5f016e22007-07-11 17:01:13 +00004137 // function-specifier
4138 case tok::kw_inline:
Douglas Gregorb48fe382008-10-31 09:07:45 +00004139 case tok::kw_virtual:
4140 case tok::kw_explicit:
Richard Smithde03c152013-01-17 22:16:11 +00004141 case tok::kw__Noreturn:
Chris Lattnerd6c7c182007-08-09 16:40:21 +00004142
Richard Smith4cd81c52013-01-29 09:02:09 +00004143 // alignment-specifier
4144 case tok::kw__Alignas:
4145
Richard Smith53aec2a2012-10-25 00:00:53 +00004146 // friend keyword.
4147 case tok::kw_friend:
4148
Peter Collingbournec6eb44b2011-04-15 00:35:57 +00004149 // static_assert-declaration
4150 case tok::kw__Static_assert:
4151
Chris Lattner1ef08762007-08-09 17:01:07 +00004152 // GNU typeof support.
4153 case tok::kw_typeof:
Mike Stump1eb44332009-09-09 15:08:12 +00004154
Chris Lattner1ef08762007-08-09 17:01:07 +00004155 // GNU attributes.
Chris Lattnerd6c7c182007-08-09 16:40:21 +00004156 case tok::kw___attribute:
Mike Stump1eb44332009-09-09 15:08:12 +00004157
Richard Smith53aec2a2012-10-25 00:00:53 +00004158 // C++11 decltype and constexpr.
David Blaikie42d6d0c2011-12-04 05:04:18 +00004159 case tok::annot_decltype:
Richard Smith53aec2a2012-10-25 00:00:53 +00004160 case tok::kw_constexpr:
Francois Pichete3d49b42011-06-19 08:02:06 +00004161
Richard Smith4cf4a5e2013-03-28 01:55:44 +00004162 // C11 _Atomic
Eli Friedmanb001de72011-10-06 23:00:33 +00004163 case tok::kw__Atomic:
4164 return true;
4165
Chris Lattnerf3948c42008-07-26 03:38:44 +00004166 // GNU ObjC bizarre protocol extension: <proto1,proto2> with implicit 'id'.
4167 case tok::less:
David Blaikie4e4d0842012-03-11 07:00:24 +00004168 return getLangOpts().ObjC1;
Mike Stump1eb44332009-09-09 15:08:12 +00004169
Douglas Gregord9d75e52011-04-27 05:41:15 +00004170 // typedef-name
4171 case tok::annot_typename:
4172 return !DisambiguatingWithExpression ||
4173 !isStartOfObjCClassMessageMissingOpenBracket();
Chad Rosier8decdee2012-06-26 22:30:43 +00004174
Steve Naroff47f52092009-01-06 19:34:12 +00004175 case tok::kw___declspec:
Steve Naroff239f0732008-12-25 14:16:32 +00004176 case tok::kw___cdecl:
4177 case tok::kw___stdcall:
4178 case tok::kw___fastcall:
Douglas Gregorf813a2c2010-05-18 16:57:00 +00004179 case tok::kw___thiscall:
Eli Friedman290eeb02009-06-08 23:27:34 +00004180 case tok::kw___w64:
Aaron Ballmanaa9df092013-05-22 23:25:32 +00004181 case tok::kw___sptr:
4182 case tok::kw___uptr:
Eli Friedman290eeb02009-06-08 23:27:34 +00004183 case tok::kw___ptr64:
Francois Pichet58fd97a2011-08-25 00:36:46 +00004184 case tok::kw___ptr32:
Eli Friedman290eeb02009-06-08 23:27:34 +00004185 case tok::kw___forceinline:
Dawn Perchik52fc3142010-09-03 01:29:35 +00004186 case tok::kw___pascal:
Francois Pichet3bd9aa42011-08-18 09:59:55 +00004187 case tok::kw___unaligned:
Peter Collingbourne207f4d82011-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 Friedman290eeb02009-06-08 23:27:34 +00004197 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00004198 }
4199}
4200
Douglas Gregor0efc2c12010-01-13 17:31:36 +00004201bool Parser::isConstructorDeclarator() {
4202 TentativeParsingAction TPA(*this);
4203
4204 // Parse the C++ scope specifier.
4205 CXXScopeSpec SS;
Chad Rosier8decdee2012-06-26 22:30:43 +00004206 if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(),
Douglas Gregorefaa93a2011-11-07 17:33:42 +00004207 /*EnteringContext=*/true)) {
John McCall9ba61662010-02-26 08:45:28 +00004208 TPA.Revert();
4209 return false;
4210 }
Douglas Gregor0efc2c12010-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 Smith22592862012-03-27 23:05:05 +00004222 // Current class name must be followed by a left parenthesis.
Douglas Gregor0efc2c12010-01-13 17:31:36 +00004223 if (Tok.isNot(tok::l_paren)) {
4224 TPA.Revert();
4225 return false;
4226 }
4227 ConsumeParen();
4228
Richard Smith22592862012-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 Gregor0efc2c12010-01-13 17:31:36 +00004233 TPA.Revert();
4234 return true;
4235 }
4236
4237 // If we need to, enter the specified scope.
4238 DeclaratorScopeObj DeclScopeObj(*this, SS);
Douglas Gregor23c94db2010-07-02 17:43:08 +00004239 if (SS.isSet() && Actions.ShouldEnterDeclaratorScope(getCurScope(), SS))
Douglas Gregor0efc2c12010-01-13 17:31:36 +00004240 DeclScopeObj.EnterDeclaratorScope();
4241
Francois Pichetdfaa5fb2011-01-31 04:54:32 +00004242 // Optionally skip Microsoft attributes.
John McCall0b7e6782011-03-24 11:26:52 +00004243 ParsedAttributes Attrs(AttrFactory);
Francois Pichetdfaa5fb2011-01-31 04:54:32 +00004244 MaybeParseMicrosoftAttributes(Attrs);
4245
Douglas Gregor0efc2c12010-01-13 17:31:36 +00004246 // Check whether the next token(s) are part of a declaration
4247 // specifier, in which case we have the start of a parameter and,
4248 // therefore, we know that this is a constructor.
Richard Smith412e0cc2012-03-27 00:56:56 +00004249 bool IsConstructor = false;
4250 if (isDeclarationSpecifier())
4251 IsConstructor = true;
4252 else if (Tok.is(tok::identifier) ||
4253 (Tok.is(tok::annot_cxxscope) && NextToken().is(tok::identifier))) {
4254 // We've seen "C ( X" or "C ( X::Y", but "X" / "X::Y" is not a type.
4255 // This might be a parenthesized member name, but is more likely to
4256 // be a constructor declaration with an invalid argument type. Keep
4257 // looking.
4258 if (Tok.is(tok::annot_cxxscope))
4259 ConsumeToken();
4260 ConsumeToken();
4261
4262 // If this is not a constructor, we must be parsing a declarator,
Richard Smith5d8388c2012-03-27 01:42:32 +00004263 // which must have one of the following syntactic forms (see the
4264 // grammar extract at the start of ParseDirectDeclarator):
Richard Smith412e0cc2012-03-27 00:56:56 +00004265 switch (Tok.getKind()) {
4266 case tok::l_paren:
4267 // C(X ( int));
4268 case tok::l_square:
4269 // C(X [ 5]);
4270 // C(X [ [attribute]]);
4271 case tok::coloncolon:
4272 // C(X :: Y);
4273 // C(X :: *p);
4274 case tok::r_paren:
4275 // C(X )
4276 // Assume this isn't a constructor, rather than assuming it's a
4277 // constructor with an unnamed parameter of an ill-formed type.
4278 break;
4279
4280 default:
4281 IsConstructor = true;
4282 break;
4283 }
4284 }
4285
Douglas Gregor0efc2c12010-01-13 17:31:36 +00004286 TPA.Revert();
4287 return IsConstructor;
4288}
Reid Spencer5f016e22007-07-11 17:01:13 +00004289
4290/// ParseTypeQualifierListOpt
Dawn Perchik52fc3142010-09-03 01:29:35 +00004291/// type-qualifier-list: [C99 6.7.5]
4292/// type-qualifier
Chad Rosier8decdee2012-06-26 22:30:43 +00004293/// [vendor] attributes
Dawn Perchik52fc3142010-09-03 01:29:35 +00004294/// [ only if VendorAttributesAllowed=true ]
4295/// type-qualifier-list type-qualifier
Chad Rosier8decdee2012-06-26 22:30:43 +00004296/// [vendor] type-qualifier-list attributes
Dawn Perchik52fc3142010-09-03 01:29:35 +00004297/// [ only if VendorAttributesAllowed=true ]
4298/// [C++0x] attribute-specifier[opt] is allowed before cv-qualifier-seq
Richard Smith4e24f0f2013-01-02 12:01:23 +00004299/// [ only if CXX11AttributesAllowed=true ]
Dawn Perchik52fc3142010-09-03 01:29:35 +00004300/// Note: vendor can be GNU, MS, etc.
Reid Spencer5f016e22007-07-11 17:01:13 +00004301///
Dawn Perchik52fc3142010-09-03 01:29:35 +00004302void Parser::ParseTypeQualifierListOpt(DeclSpec &DS,
4303 bool VendorAttributesAllowed,
Richard Smith4cf4a5e2013-03-28 01:55:44 +00004304 bool CXX11AttributesAllowed,
4305 bool AtomicAllowed) {
Richard Smith80ad52f2013-01-02 11:42:31 +00004306 if (getLangOpts().CPlusPlus11 && CXX11AttributesAllowed &&
Richard Smith6ee326a2012-04-10 01:32:12 +00004307 isCXX11AttributeSpecifier()) {
John McCall0b7e6782011-03-24 11:26:52 +00004308 ParsedAttributesWithRange attrs(AttrFactory);
Richard Smithc56298d2012-04-10 03:25:07 +00004309 ParseCXX11Attributes(attrs);
Richard Smith6ee326a2012-04-10 01:32:12 +00004310 DS.takeAttributesFrom(attrs);
Sean Huntbbd37c62009-11-21 08:43:09 +00004311 }
Abramo Bagnara796aa442011-03-12 11:17:06 +00004312
4313 SourceLocation EndLoc;
4314
Reid Spencer5f016e22007-07-11 17:01:13 +00004315 while (1) {
John McCallfec54012009-08-03 20:12:06 +00004316 bool isInvalid = false;
Reid Spencer5f016e22007-07-11 17:01:13 +00004317 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +00004318 unsigned DiagID = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00004319 SourceLocation Loc = Tok.getLocation();
4320
4321 switch (Tok.getKind()) {
Douglas Gregor1a480c42010-08-27 17:35:51 +00004322 case tok::code_completion:
4323 Actions.CodeCompleteTypeQualifiers(DS);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00004324 return cutOffParsing();
Chad Rosier8decdee2012-06-26 22:30:43 +00004325
Reid Spencer5f016e22007-07-11 17:01:13 +00004326 case tok::kw_const:
John McCallfec54012009-08-03 20:12:06 +00004327 isInvalid = DS.SetTypeQual(DeclSpec::TQ_const , Loc, PrevSpec, DiagID,
Richard Smithd654f2d2012-10-17 23:31:46 +00004328 getLangOpts());
Reid Spencer5f016e22007-07-11 17:01:13 +00004329 break;
4330 case tok::kw_volatile:
John McCallfec54012009-08-03 20:12:06 +00004331 isInvalid = DS.SetTypeQual(DeclSpec::TQ_volatile, Loc, PrevSpec, DiagID,
Richard Smithd654f2d2012-10-17 23:31:46 +00004332 getLangOpts());
Reid Spencer5f016e22007-07-11 17:01:13 +00004333 break;
4334 case tok::kw_restrict:
John McCallfec54012009-08-03 20:12:06 +00004335 isInvalid = DS.SetTypeQual(DeclSpec::TQ_restrict, Loc, PrevSpec, DiagID,
Richard Smithd654f2d2012-10-17 23:31:46 +00004336 getLangOpts());
Reid Spencer5f016e22007-07-11 17:01:13 +00004337 break;
Richard Smith4cf4a5e2013-03-28 01:55:44 +00004338 case tok::kw__Atomic:
4339 if (!AtomicAllowed)
4340 goto DoneWithTypeQuals;
4341 isInvalid = DS.SetTypeQual(DeclSpec::TQ_atomic, Loc, PrevSpec, DiagID,
4342 getLangOpts());
4343 break;
Peter Collingbourne207f4d82011-03-18 22:38:29 +00004344
4345 // OpenCL qualifiers:
Chad Rosier8decdee2012-06-26 22:30:43 +00004346 case tok::kw_private:
David Blaikie4e4d0842012-03-11 07:00:24 +00004347 if (!getLangOpts().OpenCL)
Peter Collingbourne207f4d82011-03-18 22:38:29 +00004348 goto DoneWithTypeQuals;
4349 case tok::kw___private:
4350 case tok::kw___global:
4351 case tok::kw___local:
4352 case tok::kw___constant:
4353 case tok::kw___read_only:
4354 case tok::kw___write_only:
4355 case tok::kw___read_write:
4356 ParseOpenCLQualifiers(DS);
4357 break;
4358
Aaron Ballmanaa9df092013-05-22 23:25:32 +00004359 case tok::kw___sptr:
4360 case tok::kw___uptr:
Eli Friedman290eeb02009-06-08 23:27:34 +00004361 case tok::kw___w64:
Steve Naroff86bc6cf2008-12-25 14:41:26 +00004362 case tok::kw___ptr64:
Francois Pichet58fd97a2011-08-25 00:36:46 +00004363 case tok::kw___ptr32:
Steve Naroff239f0732008-12-25 14:16:32 +00004364 case tok::kw___cdecl:
4365 case tok::kw___stdcall:
4366 case tok::kw___fastcall:
Douglas Gregorf813a2c2010-05-18 16:57:00 +00004367 case tok::kw___thiscall:
Francois Pichet3bd9aa42011-08-18 09:59:55 +00004368 case tok::kw___unaligned:
Dawn Perchik52fc3142010-09-03 01:29:35 +00004369 if (VendorAttributesAllowed) {
John McCall7f040a92010-12-24 02:08:15 +00004370 ParseMicrosoftTypeAttributes(DS.getAttributes());
Eli Friedman290eeb02009-06-08 23:27:34 +00004371 continue;
4372 }
4373 goto DoneWithTypeQuals;
Dawn Perchik52fc3142010-09-03 01:29:35 +00004374 case tok::kw___pascal:
4375 if (VendorAttributesAllowed) {
John McCall7f040a92010-12-24 02:08:15 +00004376 ParseBorlandTypeAttributes(DS.getAttributes());
Dawn Perchik52fc3142010-09-03 01:29:35 +00004377 continue;
4378 }
4379 goto DoneWithTypeQuals;
Reid Spencer5f016e22007-07-11 17:01:13 +00004380 case tok::kw___attribute:
Dawn Perchik52fc3142010-09-03 01:29:35 +00004381 if (VendorAttributesAllowed) {
John McCall7f040a92010-12-24 02:08:15 +00004382 ParseGNUAttributes(DS.getAttributes());
Chris Lattner5a69d1c2008-12-18 07:02:59 +00004383 continue; // do *not* consume the next token!
4384 }
4385 // otherwise, FALL THROUGH!
4386 default:
Steve Naroff239f0732008-12-25 14:16:32 +00004387 DoneWithTypeQuals:
Chris Lattner5a69d1c2008-12-18 07:02:59 +00004388 // If this is not a type-qualifier token, we're done reading type
4389 // qualifiers. First verify that DeclSpec's are consistent.
Douglas Gregor9b3064b2009-04-01 22:41:11 +00004390 DS.Finish(Diags, PP);
Abramo Bagnara796aa442011-03-12 11:17:06 +00004391 if (EndLoc.isValid())
4392 DS.SetRangeEnd(EndLoc);
Chris Lattner5a69d1c2008-12-18 07:02:59 +00004393 return;
Reid Spencer5f016e22007-07-11 17:01:13 +00004394 }
Chris Lattnera1fcbad2008-12-18 06:50:14 +00004395
Reid Spencer5f016e22007-07-11 17:01:13 +00004396 // If the specifier combination wasn't legal, issue a diagnostic.
4397 if (isInvalid) {
4398 assert(PrevSpec && "Method did not return previous specifier!");
Chris Lattner1ab3b962008-11-18 07:48:38 +00004399 Diag(Tok, DiagID) << PrevSpec;
Reid Spencer5f016e22007-07-11 17:01:13 +00004400 }
Abramo Bagnara796aa442011-03-12 11:17:06 +00004401 EndLoc = ConsumeToken();
Reid Spencer5f016e22007-07-11 17:01:13 +00004402 }
4403}
4404
4405
4406/// ParseDeclarator - Parse and verify a newly-initialized declarator.
4407///
4408void Parser::ParseDeclarator(Declarator &D) {
4409 /// This implements the 'declarator' production in the C grammar, then checks
4410 /// for well-formedness and issues diagnostics.
Sebastian Redl4c5d3202008-11-21 19:14:01 +00004411 ParseDeclaratorInternal(D, &Parser::ParseDirectDeclarator);
Reid Spencer5f016e22007-07-11 17:01:13 +00004412}
4413
Richard Smith9988f282012-03-29 01:16:42 +00004414static bool isPtrOperatorToken(tok::TokenKind Kind, const LangOptions &Lang) {
4415 if (Kind == tok::star || Kind == tok::caret)
4416 return true;
4417
4418 // We parse rvalue refs in C++03, because otherwise the errors are scary.
4419 if (!Lang.CPlusPlus)
4420 return false;
4421
4422 return Kind == tok::amp || Kind == tok::ampamp;
4423}
4424
Sebastian Redl4c5d3202008-11-21 19:14:01 +00004425/// ParseDeclaratorInternal - Parse a C or C++ declarator. The direct-declarator
4426/// is parsed by the function passed to it. Pass null, and the direct-declarator
4427/// isn't parsed at all, making this function effectively parse the C++
Douglas Gregor2f1bc522008-11-07 20:08:42 +00004428/// ptr-operator production.
4429///
Richard Smith0706df42011-10-19 21:33:05 +00004430/// If the grammar of this construct is extended, matching changes must also be
Richard Smith5d8388c2012-03-27 01:42:32 +00004431/// made to TryParseDeclarator and MightBeDeclarator, and possibly to
4432/// isConstructorDeclarator.
Richard Smith0706df42011-10-19 21:33:05 +00004433///
Sebastian Redlf30208a2009-01-24 21:16:55 +00004434/// declarator: [C99 6.7.5] [C++ 8p4, dcl.decl]
4435/// [C] pointer[opt] direct-declarator
4436/// [C++] direct-declarator
4437/// [C++] ptr-operator declarator
Reid Spencer5f016e22007-07-11 17:01:13 +00004438///
4439/// pointer: [C99 6.7.5]
4440/// '*' type-qualifier-list[opt]
4441/// '*' type-qualifier-list[opt] pointer
4442///
Douglas Gregor2f1bc522008-11-07 20:08:42 +00004443/// ptr-operator:
4444/// '*' cv-qualifier-seq[opt]
4445/// '&'
Sebastian Redl05532f22009-03-15 22:02:01 +00004446/// [C++0x] '&&'
Douglas Gregor2f1bc522008-11-07 20:08:42 +00004447/// [GNU] '&' restrict[opt] attributes[opt]
Sebastian Redl05532f22009-03-15 22:02:01 +00004448/// [GNU?] '&&' restrict[opt] attributes[opt]
Sebastian Redlf30208a2009-01-24 21:16:55 +00004449/// '::'[opt] nested-name-specifier '*' cv-qualifier-seq[opt]
Sebastian Redl4c5d3202008-11-21 19:14:01 +00004450void Parser::ParseDeclaratorInternal(Declarator &D,
4451 DirectDeclParseFunction DirectDeclParser) {
Douglas Gregor91a28862009-08-26 14:27:30 +00004452 if (Diags.hasAllExtensionsSilenced())
4453 D.setExtension();
Chad Rosier8decdee2012-06-26 22:30:43 +00004454
Sebastian Redlf30208a2009-01-24 21:16:55 +00004455 // C++ member pointers start with a '::' or a nested-name.
4456 // Member pointers get special handling, since there's no place for the
4457 // scope spec in the generic path below.
David Blaikie4e4d0842012-03-11 07:00:24 +00004458 if (getLangOpts().CPlusPlus &&
Chris Lattnerf919bfe2009-03-24 17:04:48 +00004459 (Tok.is(tok::coloncolon) || Tok.is(tok::identifier) ||
4460 Tok.is(tok::annot_cxxscope))) {
Douglas Gregorefaa93a2011-11-07 17:33:42 +00004461 bool EnteringContext = D.getContext() == Declarator::FileContext ||
4462 D.getContext() == Declarator::MemberContext;
Sebastian Redlf30208a2009-01-24 21:16:55 +00004463 CXXScopeSpec SS;
Douglas Gregorefaa93a2011-11-07 17:33:42 +00004464 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), EnteringContext);
John McCall9ba61662010-02-26 08:45:28 +00004465
Jeffrey Yasskinedc28772010-04-07 23:29:58 +00004466 if (SS.isNotEmpty()) {
Mike Stump1eb44332009-09-09 15:08:12 +00004467 if (Tok.isNot(tok::star)) {
Sebastian Redlf30208a2009-01-24 21:16:55 +00004468 // The scope spec really belongs to the direct-declarator.
Richard Smith6a502c42013-01-08 22:43:49 +00004469 if (D.mayHaveIdentifier())
4470 D.getCXXScopeSpec() = SS;
4471 else
4472 AnnotateScopeToken(SS, true);
4473
Sebastian Redlf30208a2009-01-24 21:16:55 +00004474 if (DirectDeclParser)
4475 (this->*DirectDeclParser)(D);
4476 return;
4477 }
4478
4479 SourceLocation Loc = ConsumeToken();
Sebastian Redlab197ba2009-02-09 18:23:29 +00004480 D.SetRangeEnd(Loc);
John McCall0b7e6782011-03-24 11:26:52 +00004481 DeclSpec DS(AttrFactory);
Sebastian Redlf30208a2009-01-24 21:16:55 +00004482 ParseTypeQualifierListOpt(DS);
Sebastian Redlab197ba2009-02-09 18:23:29 +00004483 D.ExtendWithDeclSpec(DS);
Sebastian Redlf30208a2009-01-24 21:16:55 +00004484
4485 // Recurse to parse whatever is left.
4486 ParseDeclaratorInternal(D, DirectDeclParser);
4487
4488 // Sema will have to catch (syntactically invalid) pointers into global
4489 // scope. It has to catch pointers into namespace scope anyway.
4490 D.AddTypeInfo(DeclaratorChunk::getMemberPointer(SS,DS.getTypeQualifiers(),
John McCall0b7e6782011-03-24 11:26:52 +00004491 Loc),
4492 DS.getAttributes(),
Sebastian Redlab197ba2009-02-09 18:23:29 +00004493 /* Don't replace range end. */SourceLocation());
Sebastian Redlf30208a2009-01-24 21:16:55 +00004494 return;
4495 }
4496 }
4497
4498 tok::TokenKind Kind = Tok.getKind();
Steve Naroff5618bd42008-08-27 16:04:49 +00004499 // Not a pointer, C++ reference, or block.
Richard Smith9988f282012-03-29 01:16:42 +00004500 if (!isPtrOperatorToken(Kind, getLangOpts())) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +00004501 if (DirectDeclParser)
4502 (this->*DirectDeclParser)(D);
Douglas Gregor2f1bc522008-11-07 20:08:42 +00004503 return;
4504 }
Sebastian Redlf30208a2009-01-24 21:16:55 +00004505
Sebastian Redl05532f22009-03-15 22:02:01 +00004506 // Otherwise, '*' -> pointer, '^' -> block, '&' -> lvalue reference,
4507 // '&&' -> rvalue reference
Sebastian Redl743de1f2009-03-23 00:00:23 +00004508 SourceLocation Loc = ConsumeToken(); // Eat the *, ^, & or &&.
Sebastian Redlab197ba2009-02-09 18:23:29 +00004509 D.SetRangeEnd(Loc);
Reid Spencer5f016e22007-07-11 17:01:13 +00004510
Chris Lattner9af55002009-03-27 04:18:06 +00004511 if (Kind == tok::star || Kind == tok::caret) {
Chris Lattner76549142008-02-21 01:32:26 +00004512 // Is a pointer.
John McCall0b7e6782011-03-24 11:26:52 +00004513 DeclSpec DS(AttrFactory);
Sebastian Redlf30208a2009-01-24 21:16:55 +00004514
Richard Smith6ee326a2012-04-10 01:32:12 +00004515 // FIXME: GNU attributes are not allowed here in a new-type-id.
Reid Spencer5f016e22007-07-11 17:01:13 +00004516 ParseTypeQualifierListOpt(DS);
Sebastian Redlab197ba2009-02-09 18:23:29 +00004517 D.ExtendWithDeclSpec(DS);
Sebastian Redlf30208a2009-01-24 21:16:55 +00004518
Reid Spencer5f016e22007-07-11 17:01:13 +00004519 // Recursively parse the declarator.
Sebastian Redl4c5d3202008-11-21 19:14:01 +00004520 ParseDeclaratorInternal(D, DirectDeclParser);
Steve Naroff5618bd42008-08-27 16:04:49 +00004521 if (Kind == tok::star)
4522 // Remember that we parsed a pointer type, and remember the type-quals.
4523 D.AddTypeInfo(DeclaratorChunk::getPointer(DS.getTypeQualifiers(), Loc,
Chandler Carruthd067c072011-02-23 18:51:59 +00004524 DS.getConstSpecLoc(),
4525 DS.getVolatileSpecLoc(),
John McCall0b7e6782011-03-24 11:26:52 +00004526 DS.getRestrictSpecLoc()),
4527 DS.getAttributes(),
Sebastian Redlab197ba2009-02-09 18:23:29 +00004528 SourceLocation());
Steve Naroff5618bd42008-08-27 16:04:49 +00004529 else
4530 // Remember that we parsed a Block type, and remember the type-quals.
Mike Stump1eb44332009-09-09 15:08:12 +00004531 D.AddTypeInfo(DeclaratorChunk::getBlockPointer(DS.getTypeQualifiers(),
John McCall0b7e6782011-03-24 11:26:52 +00004532 Loc),
4533 DS.getAttributes(),
Sebastian Redlab197ba2009-02-09 18:23:29 +00004534 SourceLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00004535 } else {
4536 // Is a reference
John McCall0b7e6782011-03-24 11:26:52 +00004537 DeclSpec DS(AttrFactory);
Reid Spencer5f016e22007-07-11 17:01:13 +00004538
Sebastian Redl743de1f2009-03-23 00:00:23 +00004539 // Complain about rvalue references in C++03, but then go on and build
4540 // the declarator.
Richard Smith7fe62082011-10-15 05:09:34 +00004541 if (Kind == tok::ampamp)
Richard Smith80ad52f2013-01-02 11:42:31 +00004542 Diag(Loc, getLangOpts().CPlusPlus11 ?
Richard Smith7fe62082011-10-15 05:09:34 +00004543 diag::warn_cxx98_compat_rvalue_reference :
4544 diag::ext_rvalue_reference);
Sebastian Redl743de1f2009-03-23 00:00:23 +00004545
Richard Smith6ee326a2012-04-10 01:32:12 +00004546 // GNU-style and C++11 attributes are allowed here, as is restrict.
4547 ParseTypeQualifierListOpt(DS);
4548 D.ExtendWithDeclSpec(DS);
4549
Reid Spencer5f016e22007-07-11 17:01:13 +00004550 // C++ 8.3.2p1: cv-qualified references are ill-formed except when the
4551 // cv-qualifiers are introduced through the use of a typedef or of a
4552 // template type argument, in which case the cv-qualifiers are ignored.
Reid Spencer5f016e22007-07-11 17:01:13 +00004553 if (DS.getTypeQualifiers() != DeclSpec::TQ_unspecified) {
4554 if (DS.getTypeQualifiers() & DeclSpec::TQ_const)
4555 Diag(DS.getConstSpecLoc(),
Chris Lattner1ab3b962008-11-18 07:48:38 +00004556 diag::err_invalid_reference_qualifier_application) << "const";
Reid Spencer5f016e22007-07-11 17:01:13 +00004557 if (DS.getTypeQualifiers() & DeclSpec::TQ_volatile)
4558 Diag(DS.getVolatileSpecLoc(),
Chris Lattner1ab3b962008-11-18 07:48:38 +00004559 diag::err_invalid_reference_qualifier_application) << "volatile";
Richard Smith4cf4a5e2013-03-28 01:55:44 +00004560 // 'restrict' is permitted as an extension.
4561 if (DS.getTypeQualifiers() & DeclSpec::TQ_atomic)
4562 Diag(DS.getAtomicSpecLoc(),
4563 diag::err_invalid_reference_qualifier_application) << "_Atomic";
Reid Spencer5f016e22007-07-11 17:01:13 +00004564 }
4565
4566 // Recursively parse the declarator.
Sebastian Redl4c5d3202008-11-21 19:14:01 +00004567 ParseDeclaratorInternal(D, DirectDeclParser);
Reid Spencer5f016e22007-07-11 17:01:13 +00004568
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +00004569 if (D.getNumTypeObjects() > 0) {
4570 // C++ [dcl.ref]p4: There shall be no references to references.
4571 DeclaratorChunk& InnerChunk = D.getTypeObject(D.getNumTypeObjects() - 1);
4572 if (InnerChunk.Kind == DeclaratorChunk::Reference) {
Chris Lattnerda83bac2008-11-19 07:37:42 +00004573 if (const IdentifierInfo *II = D.getIdentifier())
4574 Diag(InnerChunk.Loc, diag::err_illegal_decl_reference_to_reference)
4575 << II;
4576 else
4577 Diag(InnerChunk.Loc, diag::err_illegal_decl_reference_to_reference)
4578 << "type name";
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +00004579
Sebastian Redl4c5d3202008-11-21 19:14:01 +00004580 // Once we've complained about the reference-to-reference, we
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +00004581 // can go ahead and build the (technically ill-formed)
4582 // declarator: reference collapsing will take care of it.
4583 }
4584 }
4585
Richard Smith4cf4a5e2013-03-28 01:55:44 +00004586 // Remember that we parsed a reference type.
Chris Lattner76549142008-02-21 01:32:26 +00004587 D.AddTypeInfo(DeclaratorChunk::getReference(DS.getTypeQualifiers(), Loc,
Sebastian Redl05532f22009-03-15 22:02:01 +00004588 Kind == tok::amp),
John McCall0b7e6782011-03-24 11:26:52 +00004589 DS.getAttributes(),
Sebastian Redlab197ba2009-02-09 18:23:29 +00004590 SourceLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00004591 }
4592}
4593
Richard Smith9988f282012-03-29 01:16:42 +00004594static void diagnoseMisplacedEllipsis(Parser &P, Declarator &D,
4595 SourceLocation EllipsisLoc) {
4596 if (EllipsisLoc.isValid()) {
4597 FixItHint Insertion;
4598 if (!D.getEllipsisLoc().isValid()) {
4599 Insertion = FixItHint::CreateInsertion(D.getIdentifierLoc(), "...");
4600 D.setEllipsisLoc(EllipsisLoc);
4601 }
4602 P.Diag(EllipsisLoc, diag::err_misplaced_ellipsis_in_declaration)
4603 << FixItHint::CreateRemoval(EllipsisLoc) << Insertion << !D.hasName();
4604 }
4605}
4606
Reid Spencer5f016e22007-07-11 17:01:13 +00004607/// ParseDirectDeclarator
4608/// direct-declarator: [C99 6.7.5]
Douglas Gregor42a552f2008-11-05 20:51:48 +00004609/// [C99] identifier
Reid Spencer5f016e22007-07-11 17:01:13 +00004610/// '(' declarator ')'
4611/// [GNU] '(' attributes declarator ')'
4612/// [C90] direct-declarator '[' constant-expression[opt] ']'
4613/// [C99] direct-declarator '[' type-qual-list[opt] assignment-expr[opt] ']'
4614/// [C99] direct-declarator '[' 'static' type-qual-list[opt] assign-expr ']'
4615/// [C99] direct-declarator '[' type-qual-list 'static' assignment-expr ']'
4616/// [C99] direct-declarator '[' type-qual-list[opt] '*' ']'
Richard Smith6ee326a2012-04-10 01:32:12 +00004617/// [C++11] direct-declarator '[' constant-expression[opt] ']'
4618/// attribute-specifier-seq[opt]
Reid Spencer5f016e22007-07-11 17:01:13 +00004619/// direct-declarator '(' parameter-type-list ')'
4620/// direct-declarator '(' identifier-list[opt] ')'
4621/// [GNU] direct-declarator '(' parameter-forward-declarations
4622/// parameter-type-list[opt] ')'
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00004623/// [C++] direct-declarator '(' parameter-declaration-clause ')'
4624/// cv-qualifier-seq[opt] exception-specification[opt]
Richard Smith6ee326a2012-04-10 01:32:12 +00004625/// [C++11] direct-declarator '(' parameter-declaration-clause ')'
4626/// attribute-specifier-seq[opt] cv-qualifier-seq[opt]
4627/// ref-qualifier[opt] exception-specification[opt]
Douglas Gregorb48fe382008-10-31 09:07:45 +00004628/// [C++] declarator-id
Richard Smith6ee326a2012-04-10 01:32:12 +00004629/// [C++11] declarator-id attribute-specifier-seq[opt]
Douglas Gregor42a552f2008-11-05 20:51:48 +00004630///
4631/// declarator-id: [C++ 8]
Douglas Gregora8bc8c92010-12-23 22:44:42 +00004632/// '...'[opt] id-expression
Douglas Gregor42a552f2008-11-05 20:51:48 +00004633/// '::'[opt] nested-name-specifier[opt] type-name
4634///
4635/// id-expression: [C++ 5.1]
4636/// unqualified-id
Douglas Gregordb422df2009-09-25 21:45:23 +00004637/// qualified-id
Douglas Gregor42a552f2008-11-05 20:51:48 +00004638///
4639/// unqualified-id: [C++ 5.1]
Mike Stump1eb44332009-09-09 15:08:12 +00004640/// identifier
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00004641/// operator-function-id
Douglas Gregordb422df2009-09-25 21:45:23 +00004642/// conversion-function-id
Mike Stump1eb44332009-09-09 15:08:12 +00004643/// '~' class-name
Douglas Gregor39a8de12009-02-25 19:37:18 +00004644/// template-id
Argyrios Kyrtzidisc7ed9c62008-11-07 22:02:30 +00004645///
Richard Smith5d8388c2012-03-27 01:42:32 +00004646/// Note, any additional constructs added here may need corresponding changes
4647/// in isConstructorDeclarator.
Reid Spencer5f016e22007-07-11 17:01:13 +00004648void Parser::ParseDirectDeclarator(Declarator &D) {
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00004649 DeclaratorScopeObj DeclScopeObj(*this, D.getCXXScopeSpec());
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00004650
David Blaikie4e4d0842012-03-11 07:00:24 +00004651 if (getLangOpts().CPlusPlus && D.mayHaveIdentifier()) {
Douglas Gregor3f9a0562009-11-03 01:35:08 +00004652 // ParseDeclaratorInternal might already have parsed the scope.
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00004653 if (D.getCXXScopeSpec().isEmpty()) {
Douglas Gregorefaa93a2011-11-07 17:33:42 +00004654 bool EnteringContext = D.getContext() == Declarator::FileContext ||
4655 D.getContext() == Declarator::MemberContext;
Chad Rosier8decdee2012-06-26 22:30:43 +00004656 ParseOptionalCXXScopeSpecifier(D.getCXXScopeSpec(), ParsedType(),
Douglas Gregorefaa93a2011-11-07 17:33:42 +00004657 EnteringContext);
John McCall9ba61662010-02-26 08:45:28 +00004658 }
4659
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00004660 if (D.getCXXScopeSpec().isValid()) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00004661 if (Actions.ShouldEnterDeclaratorScope(getCurScope(), D.getCXXScopeSpec()))
John McCalle7e278b2009-12-11 20:04:54 +00004662 // Change the declaration context for name lookup, until this function
4663 // is exited (and the declarator has been parsed).
4664 DeclScopeObj.EnterDeclaratorScope();
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00004665 }
4666
Douglas Gregora8bc8c92010-12-23 22:44:42 +00004667 // C++0x [dcl.fct]p14:
4668 // There is a syntactic ambiguity when an ellipsis occurs at the end
Chad Rosier8decdee2012-06-26 22:30:43 +00004669 // of a parameter-declaration-clause without a preceding comma. In
4670 // this case, the ellipsis is parsed as part of the
4671 // abstract-declarator if the type of the parameter names a template
Douglas Gregora8bc8c92010-12-23 22:44:42 +00004672 // parameter pack that has not been expanded; otherwise, it is parsed
4673 // as part of the parameter-declaration-clause.
Richard Smith9988f282012-03-29 01:16:42 +00004674 if (Tok.is(tok::ellipsis) && D.getCXXScopeSpec().isEmpty() &&
Douglas Gregora8bc8c92010-12-23 22:44:42 +00004675 !((D.getContext() == Declarator::PrototypeContext ||
4676 D.getContext() == Declarator::BlockLiteralContext) &&
Douglas Gregora8bc8c92010-12-23 22:44:42 +00004677 NextToken().is(tok::r_paren) &&
Richard Smith30f2a742013-02-20 20:19:27 +00004678 !D.hasGroupingParens() &&
Richard Smith9988f282012-03-29 01:16:42 +00004679 !Actions.containsUnexpandedParameterPacks(D))) {
4680 SourceLocation EllipsisLoc = ConsumeToken();
4681 if (isPtrOperatorToken(Tok.getKind(), getLangOpts())) {
4682 // The ellipsis was put in the wrong place. Recover, and explain to
4683 // the user what they should have done.
4684 ParseDeclarator(D);
4685 diagnoseMisplacedEllipsis(*this, D, EllipsisLoc);
4686 return;
4687 } else
4688 D.setEllipsisLoc(EllipsisLoc);
4689
4690 // The ellipsis can't be followed by a parenthesized declarator. We
4691 // check for that in ParseParenDeclarator, after we have disambiguated
4692 // the l_paren token.
4693 }
4694
Douglas Gregor3f9a0562009-11-03 01:35:08 +00004695 if (Tok.is(tok::identifier) || Tok.is(tok::kw_operator) ||
4696 Tok.is(tok::annot_template_id) || Tok.is(tok::tilde)) {
4697 // We found something that indicates the start of an unqualified-id.
4698 // Parse that unqualified-id.
John McCallba9d8532010-04-13 06:39:49 +00004699 bool AllowConstructorName;
4700 if (D.getDeclSpec().hasTypeSpecifier())
4701 AllowConstructorName = false;
4702 else if (D.getCXXScopeSpec().isSet())
4703 AllowConstructorName =
4704 (D.getContext() == Declarator::FileContext ||
Dmitri Gribenko1b9e8f72013-02-12 17:27:41 +00004705 D.getContext() == Declarator::MemberContext);
John McCallba9d8532010-04-13 06:39:49 +00004706 else
4707 AllowConstructorName = (D.getContext() == Declarator::MemberContext);
4708
Abramo Bagnarae4b92762012-01-27 09:46:47 +00004709 SourceLocation TemplateKWLoc;
Chad Rosier8decdee2012-06-26 22:30:43 +00004710 if (ParseUnqualifiedId(D.getCXXScopeSpec(),
4711 /*EnteringContext=*/true,
4712 /*AllowDestructorName=*/true,
Douglas Gregor0efc2c12010-01-13 17:31:36 +00004713 AllowConstructorName,
John McCallb3d87482010-08-24 05:47:05 +00004714 ParsedType(),
Abramo Bagnarae4b92762012-01-27 09:46:47 +00004715 TemplateKWLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00004716 D.getName()) ||
4717 // Once we're past the identifier, if the scope was bad, mark the
4718 // whole declarator bad.
4719 D.getCXXScopeSpec().isInvalid()) {
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00004720 D.SetIdentifier(0, Tok.getLocation());
4721 D.setInvalidType(true);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00004722 } else {
4723 // Parsed the unqualified-id; update range information and move along.
4724 if (D.getSourceRange().getBegin().isInvalid())
4725 D.SetRangeBegin(D.getName().getSourceRange().getBegin());
4726 D.SetRangeEnd(D.getName().getSourceRange().getEnd());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00004727 }
Douglas Gregor3f9a0562009-11-03 01:35:08 +00004728 goto PastIdentifier;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00004729 }
Douglas Gregor3f9a0562009-11-03 01:35:08 +00004730 } else if (Tok.is(tok::identifier) && D.mayHaveIdentifier()) {
David Blaikie4e4d0842012-03-11 07:00:24 +00004731 assert(!getLangOpts().CPlusPlus &&
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00004732 "There's a C++-specific check for tok::identifier above");
4733 assert(Tok.getIdentifierInfo() && "Not an identifier?");
4734 D.SetIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
4735 ConsumeToken();
Douglas Gregor3f9a0562009-11-03 01:35:08 +00004736 goto PastIdentifier;
Richard Smitha38253c2013-07-11 05:10:21 +00004737 } else if (Tok.is(tok::identifier) && D.diagnoseIdentifier()) {
4738 Diag(Tok.getLocation(), diag::err_unexpected_unqualified_id)
4739 << FixItHint::CreateRemoval(Tok.getLocation());
4740 D.SetIdentifier(0, Tok.getLocation());
4741 ConsumeToken();
4742 goto PastIdentifier;
Douglas Gregor3f9a0562009-11-03 01:35:08 +00004743 }
Richard Smith9988f282012-03-29 01:16:42 +00004744
Douglas Gregor3f9a0562009-11-03 01:35:08 +00004745 if (Tok.is(tok::l_paren)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00004746 // direct-declarator: '(' declarator ')'
4747 // direct-declarator: '(' attributes declarator ')'
4748 // Example: 'char (*X)' or 'int (*XX)(void)'
4749 ParseParenDeclarator(D);
Douglas Gregor0efc2c12010-01-13 17:31:36 +00004750
4751 // If the declarator was parenthesized, we entered the declarator
4752 // scope when parsing the parenthesized declarator, then exited
4753 // the scope already. Re-enter the scope, if we need to.
4754 if (D.getCXXScopeSpec().isSet()) {
Fariborz Jahanian46877cd2010-08-17 23:50:37 +00004755 // If there was an error parsing parenthesized declarator, declarator
Richard Smith9988f282012-03-29 01:16:42 +00004756 // scope may have been entered before. Don't do it again.
Fariborz Jahanian46877cd2010-08-17 23:50:37 +00004757 if (!D.isInvalidType() &&
4758 Actions.ShouldEnterDeclaratorScope(getCurScope(), D.getCXXScopeSpec()))
Douglas Gregor0efc2c12010-01-13 17:31:36 +00004759 // Change the declaration context for name lookup, until this function
4760 // is exited (and the declarator has been parsed).
Fariborz Jahanian46877cd2010-08-17 23:50:37 +00004761 DeclScopeObj.EnterDeclaratorScope();
Douglas Gregor0efc2c12010-01-13 17:31:36 +00004762 }
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00004763 } else if (D.mayOmitIdentifier()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00004764 // This could be something simple like "int" (in which case the declarator
4765 // portion is empty), if an abstract-declarator is allowed.
4766 D.SetIdentifier(0, Tok.getLocation());
Richard Smith30f2a742013-02-20 20:19:27 +00004767
4768 // The grammar for abstract-pack-declarator does not allow grouping parens.
4769 // FIXME: Revisit this once core issue 1488 is resolved.
4770 if (D.hasEllipsis() && D.hasGroupingParens())
4771 Diag(PP.getLocForEndOfToken(D.getEllipsisLoc()),
4772 diag::ext_abstract_pack_declarator_parens);
Reid Spencer5f016e22007-07-11 17:01:13 +00004773 } else {
David Blaikiee75d9cf2012-06-29 22:03:56 +00004774 if (Tok.getKind() == tok::annot_pragma_parser_crash)
David Blaikie377da4c2012-08-21 18:56:49 +00004775 LLVM_BUILTIN_TRAP;
Douglas Gregore950d4b2009-03-06 23:28:18 +00004776 if (D.getContext() == Declarator::MemberContext)
4777 Diag(Tok, diag::err_expected_member_name_or_semi)
4778 << D.getDeclSpec().getSourceRange();
Richard Trieudb55c04c2013-01-26 02:31:38 +00004779 else if (getLangOpts().CPlusPlus) {
4780 if (Tok.is(tok::period) || Tok.is(tok::arrow))
4781 Diag(Tok, diag::err_invalid_operator_on_type) << Tok.is(tok::arrow);
4782 else
4783 Diag(Tok, diag::err_expected_unqualified_id) << getLangOpts().CPlusPlus;
4784 } else
Chris Lattner1ab3b962008-11-18 07:48:38 +00004785 Diag(Tok, diag::err_expected_ident_lparen);
Reid Spencer5f016e22007-07-11 17:01:13 +00004786 D.SetIdentifier(0, Tok.getLocation());
Chris Lattner1f6f54b2008-11-11 06:13:16 +00004787 D.setInvalidType(true);
Reid Spencer5f016e22007-07-11 17:01:13 +00004788 }
Mike Stump1eb44332009-09-09 15:08:12 +00004789
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00004790 PastIdentifier:
Reid Spencer5f016e22007-07-11 17:01:13 +00004791 assert(D.isPastIdentifier() &&
4792 "Haven't past the location of the identifier yet?");
Mike Stump1eb44332009-09-09 15:08:12 +00004793
Richard Smith6ee326a2012-04-10 01:32:12 +00004794 // Don't parse attributes unless we have parsed an unparenthesized name.
4795 if (D.hasName() && !D.getNumTypeObjects())
Richard Smith4e24f0f2013-01-02 12:01:23 +00004796 MaybeParseCXX11Attributes(D);
Sean Huntbbd37c62009-11-21 08:43:09 +00004797
Reid Spencer5f016e22007-07-11 17:01:13 +00004798 while (1) {
Chris Lattner04d66662007-10-09 17:33:22 +00004799 if (Tok.is(tok::l_paren)) {
David Blaikie42d6d0c2011-12-04 05:04:18 +00004800 // Enter function-declaration scope, limiting any declarators to the
4801 // function prototype scope, including parameter declarators.
4802 ParseScope PrototypeScope(this,
Richard Smith3a2b7a12013-01-28 22:42:45 +00004803 Scope::FunctionPrototypeScope|Scope::DeclScope|
4804 (D.isFunctionDeclaratorAFunctionDeclaration()
4805 ? Scope::FunctionDeclarationScope : 0));
4806
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00004807 // The paren may be part of a C++ direct initializer, eg. "int x(1);".
4808 // In such a case, check if we actually have a function declarator; if it
4809 // is not, the declarator has been fully parsed.
Richard Smithb9c62612012-07-30 21:30:52 +00004810 bool IsAmbiguous = false;
Richard Smith05766812012-08-18 00:55:03 +00004811 if (getLangOpts().CPlusPlus && D.mayBeFollowedByCXXDirectInit()) {
4812 // The name of the declarator, if any, is tentatively declared within
4813 // a possible direct initializer.
4814 TentativelyDeclaredIdentifiers.push_back(D.getIdentifier());
4815 bool IsFunctionDecl = isCXXFunctionDeclarator(&IsAmbiguous);
4816 TentativelyDeclaredIdentifiers.pop_back();
4817 if (!IsFunctionDecl)
4818 break;
4819 }
John McCall0b7e6782011-03-24 11:26:52 +00004820 ParsedAttributes attrs(AttrFactory);
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004821 BalancedDelimiterTracker T(*this, tok::l_paren);
4822 T.consumeOpen();
Richard Smithb9c62612012-07-30 21:30:52 +00004823 ParseFunctionDeclarator(D, attrs, T, IsAmbiguous);
David Blaikie42d6d0c2011-12-04 05:04:18 +00004824 PrototypeScope.Exit();
Chris Lattner04d66662007-10-09 17:33:22 +00004825 } else if (Tok.is(tok::l_square)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00004826 ParseBracketDeclarator(D);
4827 } else {
4828 break;
4829 }
4830 }
Chad Rosier8decdee2012-06-26 22:30:43 +00004831}
Reid Spencer5f016e22007-07-11 17:01:13 +00004832
Chris Lattneref4715c2008-04-06 05:45:57 +00004833/// ParseParenDeclarator - We parsed the declarator D up to a paren. This is
4834/// only called before the identifier, so these are most likely just grouping
Mike Stump1eb44332009-09-09 15:08:12 +00004835/// parens for precedence. If we find that these are actually function
Chris Lattneref4715c2008-04-06 05:45:57 +00004836/// parameter parens in an abstract-declarator, we call ParseFunctionDeclarator.
4837///
4838/// direct-declarator:
4839/// '(' declarator ')'
4840/// [GNU] '(' attributes declarator ')'
Chris Lattner7399ee02008-10-20 02:05:46 +00004841/// direct-declarator '(' parameter-type-list ')'
4842/// direct-declarator '(' identifier-list[opt] ')'
4843/// [GNU] direct-declarator '(' parameter-forward-declarations
4844/// parameter-type-list[opt] ')'
Chris Lattneref4715c2008-04-06 05:45:57 +00004845///
4846void Parser::ParseParenDeclarator(Declarator &D) {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004847 BalancedDelimiterTracker T(*this, tok::l_paren);
4848 T.consumeOpen();
4849
Chris Lattneref4715c2008-04-06 05:45:57 +00004850 assert(!D.isPastIdentifier() && "Should be called before passing identifier");
Mike Stump1eb44332009-09-09 15:08:12 +00004851
Chris Lattner7399ee02008-10-20 02:05:46 +00004852 // Eat any attributes before we look at whether this is a grouping or function
4853 // declarator paren. If this is a grouping paren, the attribute applies to
4854 // the type being built up, for example:
4855 // int (__attribute__(()) *x)(long y)
4856 // If this ends up not being a grouping paren, the attribute applies to the
4857 // first argument, for example:
4858 // int (__attribute__(()) int x)
4859 // In either case, we need to eat any attributes to be able to determine what
4860 // sort of paren this is.
4861 //
John McCall0b7e6782011-03-24 11:26:52 +00004862 ParsedAttributes attrs(AttrFactory);
Chris Lattner7399ee02008-10-20 02:05:46 +00004863 bool RequiresArg = false;
4864 if (Tok.is(tok::kw___attribute)) {
John McCall7f040a92010-12-24 02:08:15 +00004865 ParseGNUAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +00004866
Chris Lattner7399ee02008-10-20 02:05:46 +00004867 // We require that the argument list (if this is a non-grouping paren) be
4868 // present even if the attribute list was empty.
4869 RequiresArg = true;
4870 }
Chad Rosier9cab1c92012-12-21 21:22:20 +00004871
Steve Naroff239f0732008-12-25 14:16:32 +00004872 // Eat any Microsoft extensions.
Chad Rosier9cab1c92012-12-21 21:22:20 +00004873 ParseMicrosoftTypeAttributes(attrs);
4874
Dawn Perchik52fc3142010-09-03 01:29:35 +00004875 // Eat any Borland extensions.
Ted Kremenek8113ecf2010-11-10 05:59:39 +00004876 if (Tok.is(tok::kw___pascal))
John McCall7f040a92010-12-24 02:08:15 +00004877 ParseBorlandTypeAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +00004878
Chris Lattneref4715c2008-04-06 05:45:57 +00004879 // If we haven't past the identifier yet (or where the identifier would be
4880 // stored, if this is an abstract declarator), then this is probably just
4881 // grouping parens. However, if this could be an abstract-declarator, then
4882 // this could also be the start of function arguments (consider 'void()').
4883 bool isGrouping;
Mike Stump1eb44332009-09-09 15:08:12 +00004884
Chris Lattneref4715c2008-04-06 05:45:57 +00004885 if (!D.mayOmitIdentifier()) {
4886 // If this can't be an abstract-declarator, this *must* be a grouping
4887 // paren, because we haven't seen the identifier yet.
4888 isGrouping = true;
4889 } else if (Tok.is(tok::r_paren) || // 'int()' is a function.
Richard Smith22592862012-03-27 23:05:05 +00004890 (getLangOpts().CPlusPlus && Tok.is(tok::ellipsis) &&
4891 NextToken().is(tok::r_paren)) || // C++ int(...)
Richard Smith6ce48a72012-04-11 04:01:28 +00004892 isDeclarationSpecifier() || // 'int(int)' is a function.
4893 isCXX11AttributeSpecifier()) { // 'int([[]]int)' is a function.
Chris Lattneref4715c2008-04-06 05:45:57 +00004894 // This handles C99 6.7.5.3p11: in "typedef int X; void foo(X)", X is
4895 // considered to be a type, not a K&R identifier-list.
4896 isGrouping = false;
4897 } else {
4898 // Otherwise, this is a grouping paren, e.g. 'int (*X)' or 'int(X)'.
4899 isGrouping = true;
4900 }
Mike Stump1eb44332009-09-09 15:08:12 +00004901
Chris Lattneref4715c2008-04-06 05:45:57 +00004902 // If this is a grouping paren, handle:
4903 // direct-declarator: '(' declarator ')'
4904 // direct-declarator: '(' attributes declarator ')'
4905 if (isGrouping) {
Richard Smith9988f282012-03-29 01:16:42 +00004906 SourceLocation EllipsisLoc = D.getEllipsisLoc();
4907 D.setEllipsisLoc(SourceLocation());
4908
Argyrios Kyrtzidis3f2a8a02008-10-07 10:21:57 +00004909 bool hadGroupingParens = D.hasGroupingParens();
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00004910 D.setGroupingParens(true);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00004911 ParseDeclaratorInternal(D, &Parser::ParseDirectDeclarator);
Chris Lattneref4715c2008-04-06 05:45:57 +00004912 // Match the ')'.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004913 T.consumeClose();
Chad Rosier8decdee2012-06-26 22:30:43 +00004914 D.AddTypeInfo(DeclaratorChunk::getParen(T.getOpenLocation(),
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004915 T.getCloseLocation()),
4916 attrs, T.getCloseLocation());
Argyrios Kyrtzidis3f2a8a02008-10-07 10:21:57 +00004917
4918 D.setGroupingParens(hadGroupingParens);
Richard Smith9988f282012-03-29 01:16:42 +00004919
4920 // An ellipsis cannot be placed outside parentheses.
4921 if (EllipsisLoc.isValid())
4922 diagnoseMisplacedEllipsis(*this, D, EllipsisLoc);
4923
Chris Lattneref4715c2008-04-06 05:45:57 +00004924 return;
4925 }
Mike Stump1eb44332009-09-09 15:08:12 +00004926
Chris Lattneref4715c2008-04-06 05:45:57 +00004927 // Okay, if this wasn't a grouping paren, it must be the start of a function
4928 // argument list. Recognize that this declarator will never have an
Chris Lattner7399ee02008-10-20 02:05:46 +00004929 // identifier (and remember where it would have been), then call into
4930 // ParseFunctionDeclarator to handle of argument list.
Chris Lattneref4715c2008-04-06 05:45:57 +00004931 D.SetIdentifier(0, Tok.getLocation());
4932
David Blaikie42d6d0c2011-12-04 05:04:18 +00004933 // Enter function-declaration scope, limiting any declarators to the
4934 // function prototype scope, including parameter declarators.
4935 ParseScope PrototypeScope(this,
Richard Smith3a2b7a12013-01-28 22:42:45 +00004936 Scope::FunctionPrototypeScope | Scope::DeclScope |
4937 (D.isFunctionDeclaratorAFunctionDeclaration()
4938 ? Scope::FunctionDeclarationScope : 0));
Richard Smithb9c62612012-07-30 21:30:52 +00004939 ParseFunctionDeclarator(D, attrs, T, false, RequiresArg);
David Blaikie42d6d0c2011-12-04 05:04:18 +00004940 PrototypeScope.Exit();
Chris Lattneref4715c2008-04-06 05:45:57 +00004941}
4942
4943/// ParseFunctionDeclarator - We are after the identifier and have parsed the
4944/// declarator D up to a paren, which indicates that we are parsing function
4945/// arguments.
Reid Spencer5f016e22007-07-11 17:01:13 +00004946///
Richard Smith6ee326a2012-04-10 01:32:12 +00004947/// If FirstArgAttrs is non-null, then the caller parsed those arguments
4948/// immediately after the open paren - they should be considered to be the
4949/// first argument of a parameter.
Chris Lattner7399ee02008-10-20 02:05:46 +00004950///
Richard Smith6ee326a2012-04-10 01:32:12 +00004951/// If RequiresArg is true, then the first argument of the function is required
4952/// to be present and required to not be an identifier list.
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004953///
Richard Smith6ee326a2012-04-10 01:32:12 +00004954/// For C++, after the parameter-list, it also parses the cv-qualifier-seq[opt],
4955/// (C++11) ref-qualifier[opt], exception-specification[opt],
4956/// (C++11) attribute-specifier-seq[opt], and (C++11) trailing-return-type[opt].
4957///
4958/// [C++11] exception-specification:
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004959/// dynamic-exception-specification
4960/// noexcept-specification
4961///
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004962void Parser::ParseFunctionDeclarator(Declarator &D,
Richard Smith6ee326a2012-04-10 01:32:12 +00004963 ParsedAttributes &FirstArgAttrs,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004964 BalancedDelimiterTracker &Tracker,
Richard Smithb9c62612012-07-30 21:30:52 +00004965 bool IsAmbiguous,
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004966 bool RequiresArg) {
Chad Rosier8decdee2012-06-26 22:30:43 +00004967 assert(getCurScope()->isFunctionPrototypeScope() &&
David Blaikie42d6d0c2011-12-04 05:04:18 +00004968 "Should call from a Function scope");
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004969 // lparen is already consumed!
4970 assert(D.isPastIdentifier() && "Should not call before identifier!");
4971
4972 // This should be true when the function has typed arguments.
4973 // Otherwise, it is treated as a K&R-style function.
4974 bool HasProto = false;
4975 // Build up an array of information about the parsed arguments.
Chris Lattner5f9e2722011-07-23 10:55:15 +00004976 SmallVector<DeclaratorChunk::ParamInfo, 16> ParamInfo;
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004977 // Remember where we see an ellipsis, if any.
4978 SourceLocation EllipsisLoc;
4979
4980 DeclSpec DS(AttrFactory);
4981 bool RefQualifierIsLValueRef = true;
4982 SourceLocation RefQualifierLoc;
Douglas Gregor43f51032011-10-19 06:04:55 +00004983 SourceLocation ConstQualifierLoc;
4984 SourceLocation VolatileQualifierLoc;
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004985 ExceptionSpecificationType ESpecType = EST_None;
4986 SourceRange ESpecRange;
Chris Lattner5f9e2722011-07-23 10:55:15 +00004987 SmallVector<ParsedType, 2> DynamicExceptions;
4988 SmallVector<SourceRange, 2> DynamicExceptionRanges;
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004989 ExprResult NoexceptExpr;
Richard Smith6ee326a2012-04-10 01:32:12 +00004990 ParsedAttributes FnAttrs(AttrFactory);
Richard Smith54655be2012-06-12 01:51:59 +00004991 TypeResult TrailingReturnType;
Richard Smith6ee326a2012-04-10 01:32:12 +00004992
James Molloy16f1f712012-02-29 10:24:19 +00004993 Actions.ActOnStartFunctionDeclarator();
Manuel Klimek152b4e42013-08-22 12:12:24 +00004994
Abramo Bagnaraac8ea052012-10-15 21:05:46 +00004995 /* LocalEndLoc is the end location for the local FunctionTypeLoc.
4996 EndLoc is the end location for the function declarator.
4997 They differ for trailing return types. */
4998 SourceLocation StartLoc, LocalEndLoc, EndLoc;
Abramo Bagnara59c0a812012-10-04 21:42:10 +00004999 SourceLocation LParenLoc, RParenLoc;
5000 LParenLoc = Tracker.getOpenLocation();
5001 StartLoc = LParenLoc;
5002
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005003 if (isFunctionDeclaratorIdentifierList()) {
5004 if (RequiresArg)
5005 Diag(Tok, diag::err_argument_required_after_attribute);
5006
5007 ParseFunctionDeclaratorIdentifierList(D, ParamInfo);
5008
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005009 Tracker.consumeClose();
Abramo Bagnara59c0a812012-10-04 21:42:10 +00005010 RParenLoc = Tracker.getCloseLocation();
Abramo Bagnaraac8ea052012-10-15 21:05:46 +00005011 LocalEndLoc = RParenLoc;
Abramo Bagnara59c0a812012-10-04 21:42:10 +00005012 EndLoc = RParenLoc;
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005013 } else {
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005014 if (Tok.isNot(tok::r_paren))
Manuel Klimek152b4e42013-08-22 12:12:24 +00005015 ParseParameterDeclarationClause(D, FirstArgAttrs, ParamInfo, EllipsisLoc);
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005016 else if (RequiresArg)
5017 Diag(Tok, diag::err_argument_required_after_attribute);
5018
David Blaikie4e4d0842012-03-11 07:00:24 +00005019 HasProto = ParamInfo.size() || getLangOpts().CPlusPlus;
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005020
5021 // If we have the closing ')', eat it.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005022 Tracker.consumeClose();
Abramo Bagnara59c0a812012-10-04 21:42:10 +00005023 RParenLoc = Tracker.getCloseLocation();
Abramo Bagnaraac8ea052012-10-15 21:05:46 +00005024 LocalEndLoc = RParenLoc;
Abramo Bagnara59c0a812012-10-04 21:42:10 +00005025 EndLoc = RParenLoc;
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005026
David Blaikie4e4d0842012-03-11 07:00:24 +00005027 if (getLangOpts().CPlusPlus) {
Richard Smith6ee326a2012-04-10 01:32:12 +00005028 // FIXME: Accept these components in any order, and produce fixits to
5029 // correct the order if the user gets it wrong. Ideally we should deal
5030 // with the virt-specifier-seq and pure-specifier in the same way.
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005031
5032 // Parse cv-qualifier-seq[opt].
Richard Smith4cf4a5e2013-03-28 01:55:44 +00005033 ParseTypeQualifierListOpt(DS, /*VendorAttributesAllowed*/ false,
5034 /*CXX11AttributesAllowed*/ false,
5035 /*AtomicAllowed*/ false);
Richard Smith6ee326a2012-04-10 01:32:12 +00005036 if (!DS.getSourceRange().getEnd().isInvalid()) {
5037 EndLoc = DS.getSourceRange().getEnd();
5038 ConstQualifierLoc = DS.getConstSpecLoc();
5039 VolatileQualifierLoc = DS.getVolatileSpecLoc();
5040 }
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005041
5042 // Parse ref-qualifier[opt].
5043 if (Tok.is(tok::amp) || Tok.is(tok::ampamp)) {
Richard Smith80ad52f2013-01-02 11:42:31 +00005044 Diag(Tok, getLangOpts().CPlusPlus11 ?
Richard Smith7fe62082011-10-15 05:09:34 +00005045 diag::warn_cxx98_compat_ref_qualifier :
5046 diag::ext_ref_qualifier);
Richard Smith6ee326a2012-04-10 01:32:12 +00005047
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005048 RefQualifierIsLValueRef = Tok.is(tok::amp);
5049 RefQualifierLoc = ConsumeToken();
5050 EndLoc = RefQualifierLoc;
5051 }
5052
Douglas Gregorcefc3af2012-04-16 07:05:22 +00005053 // C++11 [expr.prim.general]p3:
Chad Rosier8decdee2012-06-26 22:30:43 +00005054 // If a declaration declares a member function or member function
5055 // template of a class X, the expression this is a prvalue of type
Douglas Gregorcefc3af2012-04-16 07:05:22 +00005056 // "pointer to cv-qualifier-seq X" between the optional cv-qualifer-seq
Chad Rosier8decdee2012-06-26 22:30:43 +00005057 // and the end of the function-definition, member-declarator, or
Douglas Gregorcefc3af2012-04-16 07:05:22 +00005058 // declarator.
Richard Smithd9227792013-03-15 00:41:52 +00005059 // FIXME: currently, "static" case isn't handled correctly.
Chad Rosier8decdee2012-06-26 22:30:43 +00005060 bool IsCXX11MemberFunction =
Richard Smith80ad52f2013-01-02 11:42:31 +00005061 getLangOpts().CPlusPlus11 &&
Richard Smithd9227792013-03-15 00:41:52 +00005062 (D.getContext() == Declarator::MemberContext
5063 ? !D.getDeclSpec().isFriendSpecified()
5064 : D.getContext() == Declarator::FileContext &&
5065 D.getCXXScopeSpec().isValid() &&
5066 Actions.CurContext->isRecord());
Douglas Gregorcefc3af2012-04-16 07:05:22 +00005067 Sema::CXXThisScopeRAII ThisScope(Actions,
5068 dyn_cast<CXXRecordDecl>(Actions.CurContext),
Richard Smith7b19cb12013-01-14 01:55:13 +00005069 DS.getTypeQualifiers() |
Richard Smith84046262013-04-21 01:08:50 +00005070 (D.getDeclSpec().isConstexprSpecified() &&
5071 !getLangOpts().CPlusPlus1y
Richard Smith7b19cb12013-01-14 01:55:13 +00005072 ? Qualifiers::Const : 0),
Douglas Gregorcefc3af2012-04-16 07:05:22 +00005073 IsCXX11MemberFunction);
Richard Smitha058fd42012-05-02 22:22:32 +00005074
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005075 // Parse exception-specification[opt].
Richard Smitha058fd42012-05-02 22:22:32 +00005076 ESpecType = tryParseExceptionSpecification(ESpecRange,
Douglas Gregor74e2fc32012-04-16 18:27:27 +00005077 DynamicExceptions,
5078 DynamicExceptionRanges,
Richard Smitha058fd42012-05-02 22:22:32 +00005079 NoexceptExpr);
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005080 if (ESpecType != EST_None)
5081 EndLoc = ESpecRange.getEnd();
5082
Richard Smith6ee326a2012-04-10 01:32:12 +00005083 // Parse attribute-specifier-seq[opt]. Per DR 979 and DR 1297, this goes
5084 // after the exception-specification.
Richard Smith4e24f0f2013-01-02 12:01:23 +00005085 MaybeParseCXX11Attributes(FnAttrs);
Richard Smith6ee326a2012-04-10 01:32:12 +00005086
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005087 // Parse trailing-return-type[opt].
Abramo Bagnaraac8ea052012-10-15 21:05:46 +00005088 LocalEndLoc = EndLoc;
Richard Smith80ad52f2013-01-02 11:42:31 +00005089 if (getLangOpts().CPlusPlus11 && Tok.is(tok::arrow)) {
Richard Smith7fe62082011-10-15 05:09:34 +00005090 Diag(Tok, diag::warn_cxx98_compat_trailing_return_type);
Abramo Bagnara59c0a812012-10-04 21:42:10 +00005091 if (D.getDeclSpec().getTypeSpecType() == TST_auto)
5092 StartLoc = D.getDeclSpec().getTypeSpecTypeLoc();
Abramo Bagnaraac8ea052012-10-15 21:05:46 +00005093 LocalEndLoc = Tok.getLocation();
Douglas Gregorae7902c2011-08-04 15:30:47 +00005094 SourceRange Range;
Richard Smith54655be2012-06-12 01:51:59 +00005095 TrailingReturnType = ParseTrailingReturnType(Range);
Abramo Bagnaraac8ea052012-10-15 21:05:46 +00005096 EndLoc = Range.getEnd();
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005097 }
5098 }
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005099 }
5100
5101 // Remember that we parsed a function type, and remember the attributes.
5102 D.AddTypeInfo(DeclaratorChunk::getFunction(HasProto,
Abramo Bagnara59c0a812012-10-04 21:42:10 +00005103 IsAmbiguous,
5104 LParenLoc,
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005105 ParamInfo.data(), ParamInfo.size(),
Abramo Bagnara59c0a812012-10-04 21:42:10 +00005106 EllipsisLoc, RParenLoc,
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005107 DS.getTypeQualifiers(),
5108 RefQualifierIsLValueRef,
Douglas Gregor43f51032011-10-19 06:04:55 +00005109 RefQualifierLoc, ConstQualifierLoc,
5110 VolatileQualifierLoc,
Douglas Gregor90ebed02011-07-13 21:47:47 +00005111 /*MutableLoc=*/SourceLocation(),
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005112 ESpecType, ESpecRange.getBegin(),
5113 DynamicExceptions.data(),
5114 DynamicExceptionRanges.data(),
5115 DynamicExceptions.size(),
5116 NoexceptExpr.isUsable() ?
5117 NoexceptExpr.get() : 0,
Abramo Bagnaraac8ea052012-10-15 21:05:46 +00005118 StartLoc, LocalEndLoc, D,
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005119 TrailingReturnType),
Richard Smith6ee326a2012-04-10 01:32:12 +00005120 FnAttrs, EndLoc);
James Molloy16f1f712012-02-29 10:24:19 +00005121
5122 Actions.ActOnEndFunctionDeclarator();
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005123}
5124
5125/// isFunctionDeclaratorIdentifierList - This parameter list may have an
5126/// identifier list form for a K&R-style function: void foo(a,b,c)
5127///
5128/// Note that identifier-lists are only allowed for normal declarators, not for
5129/// abstract-declarators.
5130bool Parser::isFunctionDeclaratorIdentifierList() {
David Blaikie4e4d0842012-03-11 07:00:24 +00005131 return !getLangOpts().CPlusPlus
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005132 && Tok.is(tok::identifier)
5133 && !TryAltiVecVectorToken()
5134 // K&R identifier lists can't have typedefs as identifiers, per C99
5135 // 6.7.5.3p11.
5136 && (TryAnnotateTypeOrScopeToken() || !Tok.is(tok::annot_typename))
5137 // Identifier lists follow a really simple grammar: the identifiers can
5138 // be followed *only* by a ", identifier" or ")". However, K&R
5139 // identifier lists are really rare in the brave new modern world, and
5140 // it is very common for someone to typo a type in a non-K&R style
5141 // list. If we are presented with something like: "void foo(intptr x,
5142 // float y)", we don't want to start parsing the function declarator as
5143 // though it is a K&R style declarator just because intptr is an
5144 // invalid type.
5145 //
5146 // To handle this, we check to see if the token after the first
5147 // identifier is a "," or ")". Only then do we parse it as an
5148 // identifier list.
5149 && (NextToken().is(tok::comma) || NextToken().is(tok::r_paren));
5150}
5151
5152/// ParseFunctionDeclaratorIdentifierList - While parsing a function declarator
5153/// we found a K&R-style identifier list instead of a typed parameter list.
5154///
5155/// After returning, ParamInfo will hold the parsed parameters.
5156///
5157/// identifier-list: [C99 6.7.5]
5158/// identifier
5159/// identifier-list ',' identifier
5160///
5161void Parser::ParseFunctionDeclaratorIdentifierList(
5162 Declarator &D,
Craig Topper6b9240e2013-07-05 19:34:19 +00005163 SmallVectorImpl<DeclaratorChunk::ParamInfo> &ParamInfo) {
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005164 // If there was no identifier specified for the declarator, either we are in
5165 // an abstract-declarator, or we are in a parameter declarator which was found
5166 // to be abstract. In abstract-declarators, identifier lists are not valid:
5167 // diagnose this.
5168 if (!D.getIdentifier())
5169 Diag(Tok, diag::ext_ident_list_in_param);
5170
5171 // Maintain an efficient lookup of params we have seen so far.
5172 llvm::SmallSet<const IdentifierInfo*, 16> ParamsSoFar;
5173
5174 while (1) {
5175 // If this isn't an identifier, report the error and skip until ')'.
5176 if (Tok.isNot(tok::identifier)) {
5177 Diag(Tok, diag::err_expected_ident);
5178 SkipUntil(tok::r_paren, /*StopAtSemi=*/true, /*DontConsume=*/true);
5179 // Forget we parsed anything.
5180 ParamInfo.clear();
5181 return;
5182 }
5183
5184 IdentifierInfo *ParmII = Tok.getIdentifierInfo();
5185
5186 // Reject 'typedef int y; int test(x, y)', but continue parsing.
5187 if (Actions.getTypeName(*ParmII, Tok.getLocation(), getCurScope()))
5188 Diag(Tok, diag::err_unexpected_typedef_ident) << ParmII;
5189
5190 // Verify that the argument identifier has not already been mentioned.
5191 if (!ParamsSoFar.insert(ParmII)) {
5192 Diag(Tok, diag::err_param_redefinition) << ParmII;
5193 } else {
5194 // Remember this identifier in ParamInfo.
5195 ParamInfo.push_back(DeclaratorChunk::ParamInfo(ParmII,
5196 Tok.getLocation(),
5197 0));
5198 }
5199
5200 // Eat the identifier.
5201 ConsumeToken();
5202
5203 // The list continues if we see a comma.
5204 if (Tok.isNot(tok::comma))
5205 break;
5206 ConsumeToken();
5207 }
5208}
5209
5210/// ParseParameterDeclarationClause - Parse a (possibly empty) parameter-list
5211/// after the opening parenthesis. This function will not parse a K&R-style
5212/// identifier list.
5213///
Richard Smith6ce48a72012-04-11 04:01:28 +00005214/// D is the declarator being parsed. If FirstArgAttrs is non-null, then the
5215/// caller parsed those arguments immediately after the open paren - they should
5216/// be considered to be part of the first parameter.
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005217///
5218/// After returning, ParamInfo will hold the parsed parameters. EllipsisLoc will
5219/// be the location of the ellipsis, if any was parsed.
5220///
Reid Spencer5f016e22007-07-11 17:01:13 +00005221/// parameter-type-list: [C99 6.7.5]
5222/// parameter-list
5223/// parameter-list ',' '...'
Douglas Gregored5d6512009-09-22 21:41:40 +00005224/// [C++] parameter-list '...'
Reid Spencer5f016e22007-07-11 17:01:13 +00005225///
5226/// parameter-list: [C99 6.7.5]
5227/// parameter-declaration
5228/// parameter-list ',' parameter-declaration
5229///
5230/// parameter-declaration: [C99 6.7.5]
5231/// declaration-specifiers declarator
Chris Lattner04421082008-04-08 04:40:51 +00005232/// [C++] declaration-specifiers declarator '=' assignment-expression
Sebastian Redl84407ba2012-03-14 15:54:00 +00005233/// [C++11] initializer-clause
Reid Spencer5f016e22007-07-11 17:01:13 +00005234/// [GNU] declaration-specifiers declarator attributes
Sebastian Redl50de12f2009-03-24 22:27:57 +00005235/// declaration-specifiers abstract-declarator[opt]
5236/// [C++] declaration-specifiers abstract-declarator[opt]
Chris Lattner8123a952008-04-10 02:22:51 +00005237/// '=' assignment-expression
Reid Spencer5f016e22007-07-11 17:01:13 +00005238/// [GNU] declaration-specifiers abstract-declarator[opt] attributes
Richard Smith6ce48a72012-04-11 04:01:28 +00005239/// [C++11] attribute-specifier-seq parameter-declaration
Reid Spencer5f016e22007-07-11 17:01:13 +00005240///
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005241void Parser::ParseParameterDeclarationClause(
5242 Declarator &D,
Richard Smith6ce48a72012-04-11 04:01:28 +00005243 ParsedAttributes &FirstArgAttrs,
Craig Topper6b9240e2013-07-05 19:34:19 +00005244 SmallVectorImpl<DeclaratorChunk::ParamInfo> &ParamInfo,
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005245 SourceLocation &EllipsisLoc) {
Manuel Klimek152b4e42013-08-22 12:12:24 +00005246
Chris Lattnerf97409f2008-04-06 06:57:35 +00005247 while (1) {
5248 if (Tok.is(tok::ellipsis)) {
Richard Smith6ce48a72012-04-11 04:01:28 +00005249 // FIXME: Issue a diagnostic if we parsed an attribute-specifier-seq
5250 // before deciding this was a parameter-declaration-clause.
Douglas Gregor965acbb2009-02-18 07:07:28 +00005251 EllipsisLoc = ConsumeToken(); // Consume the ellipsis.
Chris Lattnerf97409f2008-04-06 06:57:35 +00005252 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00005253 }
Mike Stump1eb44332009-09-09 15:08:12 +00005254
Chris Lattnerf97409f2008-04-06 06:57:35 +00005255 // Parse the declaration-specifiers.
John McCall54abf7d2009-11-04 02:18:39 +00005256 // Just use the ParsingDeclaration "scope" of the declarator.
John McCall0b7e6782011-03-24 11:26:52 +00005257 DeclSpec DS(AttrFactory);
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005258
Richard Smith6ce48a72012-04-11 04:01:28 +00005259 // Parse any C++11 attributes.
Richard Smith4e24f0f2013-01-02 12:01:23 +00005260 MaybeParseCXX11Attributes(DS.getAttributes());
Richard Smith6ce48a72012-04-11 04:01:28 +00005261
John McCall7f040a92010-12-24 02:08:15 +00005262 // Skip any Microsoft attributes before a param.
Chad Rosier16f90bf2012-12-20 20:37:53 +00005263 MaybeParseMicrosoftAttributes(DS.getAttributes());
John McCall7f040a92010-12-24 02:08:15 +00005264
5265 SourceLocation DSStart = Tok.getLocation();
Chris Lattner7399ee02008-10-20 02:05:46 +00005266
5267 // If the caller parsed attributes for the first argument, add them now.
John McCall7f040a92010-12-24 02:08:15 +00005268 // Take them so that we only apply the attributes to the first parameter.
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005269 // FIXME: If we can leave the attributes in the token stream somehow, we can
Richard Smith6ce48a72012-04-11 04:01:28 +00005270 // get rid of a parameter (FirstArgAttrs) and this statement. It might be
5271 // too much hassle.
5272 DS.takeAttributesFrom(FirstArgAttrs);
John McCall7f040a92010-12-24 02:08:15 +00005273
Chris Lattnere64c5492009-02-27 18:38:20 +00005274 ParseDeclarationSpecifiers(DS);
Mike Stump1eb44332009-09-09 15:08:12 +00005275
Manuel Klimek152b4e42013-08-22 12:12:24 +00005276 // Parse the declarator. This is "PrototypeContext", because we must
5277 // accept either 'declarator' or 'abstract-declarator' here.
5278 Declarator ParmDecl(DS, Declarator::PrototypeContext);
5279 ParseDeclarator(ParmDecl);
Chris Lattnerf97409f2008-04-06 06:57:35 +00005280
5281 // Parse GNU attributes, if present.
Manuel Klimek152b4e42013-08-22 12:12:24 +00005282 MaybeParseGNUAttributes(ParmDecl);
Mike Stump1eb44332009-09-09 15:08:12 +00005283
Chris Lattnerf97409f2008-04-06 06:57:35 +00005284 // Remember this parsed parameter in ParamInfo.
Manuel Klimek152b4e42013-08-22 12:12:24 +00005285 IdentifierInfo *ParmII = ParmDecl.getIdentifier();
Mike Stump1eb44332009-09-09 15:08:12 +00005286
Douglas Gregor72b505b2008-12-16 21:30:33 +00005287 // DefArgToks is used when the parsing of default arguments needs
5288 // to be delayed.
5289 CachedTokens *DefArgToks = 0;
5290
Chris Lattnerf97409f2008-04-06 06:57:35 +00005291 // If no parameter was specified, verify that *something* was specified,
5292 // otherwise we have a missing type and identifier.
Manuel Klimek152b4e42013-08-22 12:12:24 +00005293 if (DS.isEmpty() && ParmDecl.getIdentifier() == 0 &&
5294 ParmDecl.getNumTypeObjects() == 0) {
Chris Lattnerf97409f2008-04-06 06:57:35 +00005295 // Completely missing, emit error.
5296 Diag(DSStart, diag::err_missing_param);
5297 } else {
5298 // Otherwise, we have something. Add it and let semantic analysis try
5299 // to grok it and add the result to the ParamInfo we are building.
Mike Stump1eb44332009-09-09 15:08:12 +00005300
Chris Lattnerf97409f2008-04-06 06:57:35 +00005301 // Inform the actions module about the parameter declarator, so it gets
5302 // added to the current scope.
Manuel Klimek152b4e42013-08-22 12:12:24 +00005303 Decl *Param = Actions.ActOnParamDeclarator(getCurScope(), ParmDecl);
5304
Chris Lattner04421082008-04-08 04:40:51 +00005305 // Parse the default argument, if any. We parse the default
5306 // arguments in all dialects; the semantic analysis in
5307 // ActOnParamDefaultArgument will reject the default argument in
5308 // C.
5309 if (Tok.is(tok::equal)) {
Douglas Gregor61366e92008-12-24 00:01:03 +00005310 SourceLocation EqualLoc = Tok.getLocation();
5311
Chris Lattner04421082008-04-08 04:40:51 +00005312 // Parse the default argument
Douglas Gregor72b505b2008-12-16 21:30:33 +00005313 if (D.getContext() == Declarator::MemberContext) {
5314 // If we're inside a class definition, cache the tokens
5315 // corresponding to the default argument. We'll actually parse
5316 // them when we see the end of the class definition.
Douglas Gregor72b505b2008-12-16 21:30:33 +00005317 // FIXME: Can we use a smart pointer for Toks?
5318 DefArgToks = new CachedTokens;
5319
Mike Stump1eb44332009-09-09 15:08:12 +00005320 if (!ConsumeAndStoreUntil(tok::comma, tok::r_paren, *DefArgToks,
Argyrios Kyrtzidis14b91622010-04-23 21:20:12 +00005321 /*StopAtSemi=*/true,
5322 /*ConsumeFinalToken=*/false)) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00005323 delete DefArgToks;
5324 DefArgToks = 0;
Douglas Gregor61366e92008-12-24 00:01:03 +00005325 Actions.ActOnParamDefaultArgumentError(Param);
Argyrios Kyrtzidis2b602ad2010-08-06 09:47:24 +00005326 } else {
5327 // Mark the end of the default argument so that we know when to
5328 // stop when we parse it later on.
5329 Token DefArgEnd;
5330 DefArgEnd.startToken();
5331 DefArgEnd.setKind(tok::cxx_defaultarg_end);
5332 DefArgEnd.setLocation(Tok.getLocation());
5333 DefArgToks->push_back(DefArgEnd);
Mike Stump1eb44332009-09-09 15:08:12 +00005334 Actions.ActOnParamUnparsedDefaultArgument(Param, EqualLoc,
Anders Carlsson5e300d12009-06-12 16:51:40 +00005335 (*DefArgToks)[1].getLocation());
Argyrios Kyrtzidis2b602ad2010-08-06 09:47:24 +00005336 }
Chris Lattner04421082008-04-08 04:40:51 +00005337 } else {
Douglas Gregor72b505b2008-12-16 21:30:33 +00005338 // Consume the '='.
Douglas Gregor61366e92008-12-24 00:01:03 +00005339 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00005340
Chad Rosier8decdee2012-06-26 22:30:43 +00005341 // The argument isn't actually potentially evaluated unless it is
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00005342 // used.
5343 EnterExpressionEvaluationContext Eval(Actions,
Douglas Gregorccc1b5e2012-02-21 00:37:24 +00005344 Sema::PotentiallyEvaluatedIfUsed,
5345 Param);
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00005346
Sebastian Redl84407ba2012-03-14 15:54:00 +00005347 ExprResult DefArgResult;
Richard Smith80ad52f2013-01-02 11:42:31 +00005348 if (getLangOpts().CPlusPlus11 && Tok.is(tok::l_brace)) {
Sebastian Redl3e280b52012-03-18 22:25:45 +00005349 Diag(Tok, diag::warn_cxx98_compat_generalized_initializer_lists);
Sebastian Redl84407ba2012-03-14 15:54:00 +00005350 DefArgResult = ParseBraceInitializer();
Sebastian Redl3e280b52012-03-18 22:25:45 +00005351 } else
Sebastian Redl84407ba2012-03-14 15:54:00 +00005352 DefArgResult = ParseAssignmentExpression();
Douglas Gregor72b505b2008-12-16 21:30:33 +00005353 if (DefArgResult.isInvalid()) {
5354 Actions.ActOnParamDefaultArgumentError(Param);
5355 SkipUntil(tok::comma, tok::r_paren, true, true);
5356 } else {
5357 // Inform the actions module about the default argument
5358 Actions.ActOnParamDefaultArgument(Param, EqualLoc,
John McCall9ae2f072010-08-23 23:25:46 +00005359 DefArgResult.take());
Douglas Gregor72b505b2008-12-16 21:30:33 +00005360 }
Chris Lattner04421082008-04-08 04:40:51 +00005361 }
5362 }
Mike Stump1eb44332009-09-09 15:08:12 +00005363
5364 ParamInfo.push_back(DeclaratorChunk::ParamInfo(ParmII,
Manuel Klimek152b4e42013-08-22 12:12:24 +00005365 ParmDecl.getIdentifierLoc(), Param,
5366 DefArgToks));
Chris Lattnerf97409f2008-04-06 06:57:35 +00005367 }
5368
5369 // If the next token is a comma, consume it and keep reading arguments.
Douglas Gregored5d6512009-09-22 21:41:40 +00005370 if (Tok.isNot(tok::comma)) {
5371 if (Tok.is(tok::ellipsis)) {
Douglas Gregored5d6512009-09-22 21:41:40 +00005372 EllipsisLoc = ConsumeToken(); // Consume the ellipsis.
Chad Rosier8decdee2012-06-26 22:30:43 +00005373
David Blaikie4e4d0842012-03-11 07:00:24 +00005374 if (!getLangOpts().CPlusPlus) {
Douglas Gregored5d6512009-09-22 21:41:40 +00005375 // We have ellipsis without a preceding ',', which is ill-formed
5376 // in C. Complain and provide the fix.
5377 Diag(EllipsisLoc, diag::err_missing_comma_before_ellipsis)
Douglas Gregor849b2432010-03-31 17:46:05 +00005378 << FixItHint::CreateInsertion(EllipsisLoc, ", ");
Douglas Gregored5d6512009-09-22 21:41:40 +00005379 }
5380 }
Chad Rosier8decdee2012-06-26 22:30:43 +00005381
Douglas Gregored5d6512009-09-22 21:41:40 +00005382 break;
5383 }
Mike Stump1eb44332009-09-09 15:08:12 +00005384
Chris Lattnerf97409f2008-04-06 06:57:35 +00005385 // Consume the comma.
5386 ConsumeToken();
Reid Spencer5f016e22007-07-11 17:01:13 +00005387 }
Mike Stump1eb44332009-09-09 15:08:12 +00005388
Chris Lattner66d28652008-04-06 06:34:08 +00005389}
Chris Lattneref4715c2008-04-06 05:45:57 +00005390
Reid Spencer5f016e22007-07-11 17:01:13 +00005391/// [C90] direct-declarator '[' constant-expression[opt] ']'
5392/// [C99] direct-declarator '[' type-qual-list[opt] assignment-expr[opt] ']'
5393/// [C99] direct-declarator '[' 'static' type-qual-list[opt] assign-expr ']'
5394/// [C99] direct-declarator '[' type-qual-list 'static' assignment-expr ']'
5395/// [C99] direct-declarator '[' type-qual-list[opt] '*' ']'
Richard Smith6ee326a2012-04-10 01:32:12 +00005396/// [C++11] direct-declarator '[' constant-expression[opt] ']'
5397/// attribute-specifier-seq[opt]
Reid Spencer5f016e22007-07-11 17:01:13 +00005398void Parser::ParseBracketDeclarator(Declarator &D) {
Richard Smith6ee326a2012-04-10 01:32:12 +00005399 if (CheckProhibitedCXX11Attribute())
5400 return;
5401
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005402 BalancedDelimiterTracker T(*this, tok::l_square);
5403 T.consumeOpen();
Mike Stump1eb44332009-09-09 15:08:12 +00005404
Chris Lattner378c7e42008-12-18 07:27:21 +00005405 // C array syntax has many features, but by-far the most common is [] and [4].
5406 // This code does a fast path to handle some of the most obvious cases.
5407 if (Tok.getKind() == tok::r_square) {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005408 T.consumeClose();
John McCall0b7e6782011-03-24 11:26:52 +00005409 ParsedAttributes attrs(AttrFactory);
Richard Smith4e24f0f2013-01-02 12:01:23 +00005410 MaybeParseCXX11Attributes(attrs);
Chad Rosier8decdee2012-06-26 22:30:43 +00005411
Chris Lattner378c7e42008-12-18 07:27:21 +00005412 // Remember that we parsed the empty array type.
John McCall60d7b3a2010-08-24 06:29:42 +00005413 ExprResult NumElements;
John McCall0b7e6782011-03-24 11:26:52 +00005414 D.AddTypeInfo(DeclaratorChunk::getArray(0, false, false, 0,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005415 T.getOpenLocation(),
5416 T.getCloseLocation()),
5417 attrs, T.getCloseLocation());
Chris Lattner378c7e42008-12-18 07:27:21 +00005418 return;
5419 } else if (Tok.getKind() == tok::numeric_constant &&
5420 GetLookAheadToken(1).is(tok::r_square)) {
5421 // [4] is very common. Parse the numeric constant expression.
Richard Smith36f5cfe2012-03-09 08:00:36 +00005422 ExprResult ExprRes(Actions.ActOnNumericConstant(Tok, getCurScope()));
Chris Lattner378c7e42008-12-18 07:27:21 +00005423 ConsumeToken();
5424
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005425 T.consumeClose();
John McCall0b7e6782011-03-24 11:26:52 +00005426 ParsedAttributes attrs(AttrFactory);
Richard Smith4e24f0f2013-01-02 12:01:23 +00005427 MaybeParseCXX11Attributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +00005428
Chris Lattner378c7e42008-12-18 07:27:21 +00005429 // Remember that we parsed a array type, and remember its features.
Nikola Smiljanicebf0fa82013-01-11 08:33:05 +00005430 D.AddTypeInfo(DeclaratorChunk::getArray(0, false, false,
John McCall7f040a92010-12-24 02:08:15 +00005431 ExprRes.release(),
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005432 T.getOpenLocation(),
5433 T.getCloseLocation()),
5434 attrs, T.getCloseLocation());
Chris Lattner378c7e42008-12-18 07:27:21 +00005435 return;
5436 }
Mike Stump1eb44332009-09-09 15:08:12 +00005437
Reid Spencer5f016e22007-07-11 17:01:13 +00005438 // If valid, this location is the position where we read the 'static' keyword.
5439 SourceLocation StaticLoc;
Chris Lattner04d66662007-10-09 17:33:22 +00005440 if (Tok.is(tok::kw_static))
Reid Spencer5f016e22007-07-11 17:01:13 +00005441 StaticLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00005442
Reid Spencer5f016e22007-07-11 17:01:13 +00005443 // If there is a type-qualifier-list, read it now.
Chris Lattnera1fcbad2008-12-18 06:50:14 +00005444 // Type qualifiers in an array subscript are a C99 feature.
John McCall0b7e6782011-03-24 11:26:52 +00005445 DeclSpec DS(AttrFactory);
Chris Lattner5a69d1c2008-12-18 07:02:59 +00005446 ParseTypeQualifierListOpt(DS, false /*no attributes*/);
Mike Stump1eb44332009-09-09 15:08:12 +00005447
Reid Spencer5f016e22007-07-11 17:01:13 +00005448 // If we haven't already read 'static', check to see if there is one after the
5449 // type-qualifier-list.
Chris Lattner04d66662007-10-09 17:33:22 +00005450 if (!StaticLoc.isValid() && Tok.is(tok::kw_static))
Reid Spencer5f016e22007-07-11 17:01:13 +00005451 StaticLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00005452
Reid Spencer5f016e22007-07-11 17:01:13 +00005453 // Handle "direct-declarator [ type-qual-list[opt] * ]".
5454 bool isStar = false;
John McCall60d7b3a2010-08-24 06:29:42 +00005455 ExprResult NumElements;
Mike Stump1eb44332009-09-09 15:08:12 +00005456
Chris Lattner5dcc6ce2008-04-06 05:26:30 +00005457 // Handle the case where we have '[*]' as the array size. However, a leading
5458 // star could be the start of an expression, for example 'X[*p + 4]'. Verify
Sylvestre Ledrubed28ac2012-07-23 08:59:39 +00005459 // the token after the star is a ']'. Since stars in arrays are
Chris Lattner5dcc6ce2008-04-06 05:26:30 +00005460 // infrequent, use of lookahead is not costly here.
5461 if (Tok.is(tok::star) && GetLookAheadToken(1).is(tok::r_square)) {
Chris Lattnera711dd02008-04-06 05:27:21 +00005462 ConsumeToken(); // Eat the '*'.
Reid Spencer5f016e22007-07-11 17:01:13 +00005463
Chris Lattnera1fcbad2008-12-18 06:50:14 +00005464 if (StaticLoc.isValid()) {
Chris Lattner5dcc6ce2008-04-06 05:26:30 +00005465 Diag(StaticLoc, diag::err_unspecified_vla_size_with_static);
Chris Lattnera1fcbad2008-12-18 06:50:14 +00005466 StaticLoc = SourceLocation(); // Drop the static.
5467 }
Chris Lattner5dcc6ce2008-04-06 05:26:30 +00005468 isStar = true;
Chris Lattner04d66662007-10-09 17:33:22 +00005469 } else if (Tok.isNot(tok::r_square)) {
Chris Lattner378c7e42008-12-18 07:27:21 +00005470 // Note, in C89, this production uses the constant-expr production instead
5471 // of assignment-expr. The only difference is that assignment-expr allows
5472 // things like '=' and '*='. Sema rejects these in C89 mode because they
5473 // are not i-c-e's, so we don't need to distinguish between the two here.
Mike Stump1eb44332009-09-09 15:08:12 +00005474
Douglas Gregore0762c92009-06-19 23:52:42 +00005475 // Parse the constant-expression or assignment-expression now (depending
5476 // on dialect).
David Blaikie4e4d0842012-03-11 07:00:24 +00005477 if (getLangOpts().CPlusPlus) {
Douglas Gregore0762c92009-06-19 23:52:42 +00005478 NumElements = ParseConstantExpression();
Eli Friedman71b8fb52012-01-21 01:01:51 +00005479 } else {
5480 EnterExpressionEvaluationContext Unevaluated(Actions,
5481 Sema::ConstantEvaluated);
Douglas Gregore0762c92009-06-19 23:52:42 +00005482 NumElements = ParseAssignmentExpression();
Eli Friedman71b8fb52012-01-21 01:01:51 +00005483 }
Reid Spencer5f016e22007-07-11 17:01:13 +00005484 }
Mike Stump1eb44332009-09-09 15:08:12 +00005485
Reid Spencer5f016e22007-07-11 17:01:13 +00005486 // If there was an error parsing the assignment-expression, recover.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00005487 if (NumElements.isInvalid()) {
Chris Lattner5cb10d32009-04-24 22:30:50 +00005488 D.setInvalidType(true);
Reid Spencer5f016e22007-07-11 17:01:13 +00005489 // If the expression was invalid, skip it.
5490 SkipUntil(tok::r_square);
5491 return;
5492 }
Sebastian Redlab197ba2009-02-09 18:23:29 +00005493
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005494 T.consumeClose();
Sebastian Redlab197ba2009-02-09 18:23:29 +00005495
John McCall0b7e6782011-03-24 11:26:52 +00005496 ParsedAttributes attrs(AttrFactory);
Richard Smith4e24f0f2013-01-02 12:01:23 +00005497 MaybeParseCXX11Attributes(attrs);
Sean Huntbbd37c62009-11-21 08:43:09 +00005498
Chris Lattner378c7e42008-12-18 07:27:21 +00005499 // Remember that we parsed a array type, and remember its features.
John McCall0b7e6782011-03-24 11:26:52 +00005500 D.AddTypeInfo(DeclaratorChunk::getArray(DS.getTypeQualifiers(),
Reid Spencer5f016e22007-07-11 17:01:13 +00005501 StaticLoc.isValid(), isStar,
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00005502 NumElements.release(),
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005503 T.getOpenLocation(),
5504 T.getCloseLocation()),
5505 attrs, T.getCloseLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00005506}
5507
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00005508/// [GNU] typeof-specifier:
5509/// typeof ( expressions )
5510/// typeof ( type-name )
5511/// [GNU/C++] typeof unary-expression
Steve Naroffd1861fd2007-07-31 12:34:36 +00005512///
5513void Parser::ParseTypeofSpecifier(DeclSpec &DS) {
Chris Lattner04d66662007-10-09 17:33:22 +00005514 assert(Tok.is(tok::kw_typeof) && "Not a typeof specifier");
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00005515 Token OpTok = Tok;
Steve Naroffd1861fd2007-07-31 12:34:36 +00005516 SourceLocation StartLoc = ConsumeToken();
5517
John McCallcfb708c2010-01-13 20:03:27 +00005518 const bool hasParens = Tok.is(tok::l_paren);
5519
Eli Friedman80bfa3d2012-09-26 04:34:21 +00005520 EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated,
5521 Sema::ReuseLambdaContextDecl);
Eli Friedman71b8fb52012-01-21 01:01:51 +00005522
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00005523 bool isCastExpr;
John McCallb3d87482010-08-24 05:47:05 +00005524 ParsedType CastTy;
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00005525 SourceRange CastRange;
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00005526 ExprResult Operand = ParseExprAfterUnaryExprOrTypeTrait(OpTok, isCastExpr,
5527 CastTy, CastRange);
John McCallcfb708c2010-01-13 20:03:27 +00005528 if (hasParens)
5529 DS.setTypeofParensRange(CastRange);
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00005530
5531 if (CastRange.getEnd().isInvalid())
Argyrios Kyrtzidis64096252009-05-22 10:22:18 +00005532 // FIXME: Not accurate, the range gets one token more than it should.
5533 DS.SetRangeEnd(Tok.getLocation());
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00005534 else
5535 DS.SetRangeEnd(CastRange.getEnd());
Mike Stump1eb44332009-09-09 15:08:12 +00005536
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00005537 if (isCastExpr) {
5538 if (!CastTy) {
5539 DS.SetTypeSpecError();
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00005540 return;
Douglas Gregor809070a2009-02-18 17:45:20 +00005541 }
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00005542
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00005543 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +00005544 unsigned DiagID;
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00005545 // Check for duplicate type specifiers (e.g. "int typeof(int)").
5546 if (DS.SetTypeSpecType(DeclSpec::TST_typeofType, StartLoc, PrevSpec,
John McCallfec54012009-08-03 20:12:06 +00005547 DiagID, CastTy))
5548 Diag(StartLoc, DiagID) << PrevSpec;
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00005549 return;
Argyrios Kyrtzidis64096252009-05-22 10:22:18 +00005550 }
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00005551
Argyrios Kyrtzidis64096252009-05-22 10:22:18 +00005552 // If we get here, the operand to the typeof was an expresion.
5553 if (Operand.isInvalid()) {
5554 DS.SetTypeSpecError();
Steve Naroff9dfa7b42007-08-02 02:53:48 +00005555 return;
Steve Naroffd1861fd2007-07-31 12:34:36 +00005556 }
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00005557
Eli Friedman71b8fb52012-01-21 01:01:51 +00005558 // We might need to transform the operand if it is potentially evaluated.
5559 Operand = Actions.HandleExprEvaluationContextForTypeof(Operand.get());
5560 if (Operand.isInvalid()) {
5561 DS.SetTypeSpecError();
5562 return;
5563 }
5564
Argyrios Kyrtzidis64096252009-05-22 10:22:18 +00005565 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +00005566 unsigned DiagID;
Argyrios Kyrtzidis64096252009-05-22 10:22:18 +00005567 // Check for duplicate type specifiers (e.g. "int typeof(int)").
5568 if (DS.SetTypeSpecType(DeclSpec::TST_typeofExpr, StartLoc, PrevSpec,
John McCallb3d87482010-08-24 05:47:05 +00005569 DiagID, Operand.get()))
John McCallfec54012009-08-03 20:12:06 +00005570 Diag(StartLoc, DiagID) << PrevSpec;
Steve Naroffd1861fd2007-07-31 12:34:36 +00005571}
Chris Lattner1b492422010-02-28 18:33:55 +00005572
Benjamin Kramerffbe9b92011-12-23 17:00:35 +00005573/// [C11] atomic-specifier:
Eli Friedmanb001de72011-10-06 23:00:33 +00005574/// _Atomic ( type-name )
5575///
5576void Parser::ParseAtomicSpecifier(DeclSpec &DS) {
Richard Smith4cf4a5e2013-03-28 01:55:44 +00005577 assert(Tok.is(tok::kw__Atomic) && NextToken().is(tok::l_paren) &&
5578 "Not an atomic specifier");
Eli Friedmanb001de72011-10-06 23:00:33 +00005579
5580 SourceLocation StartLoc = ConsumeToken();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005581 BalancedDelimiterTracker T(*this, tok::l_paren);
Richard Smith4cf4a5e2013-03-28 01:55:44 +00005582 if (T.consumeOpen())
Eli Friedmanb001de72011-10-06 23:00:33 +00005583 return;
Eli Friedmanb001de72011-10-06 23:00:33 +00005584
5585 TypeResult Result = ParseTypeName();
5586 if (Result.isInvalid()) {
5587 SkipUntil(tok::r_paren);
5588 return;
5589 }
5590
5591 // Match the ')'
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005592 T.consumeClose();
Eli Friedmanb001de72011-10-06 23:00:33 +00005593
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005594 if (T.getCloseLocation().isInvalid())
Eli Friedmanb001de72011-10-06 23:00:33 +00005595 return;
5596
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005597 DS.setTypeofParensRange(T.getRange());
5598 DS.SetRangeEnd(T.getCloseLocation());
Eli Friedmanb001de72011-10-06 23:00:33 +00005599
5600 const char *PrevSpec = 0;
5601 unsigned DiagID;
5602 if (DS.SetTypeSpecType(DeclSpec::TST_atomic, StartLoc, PrevSpec,
5603 DiagID, Result.release()))
5604 Diag(StartLoc, DiagID) << PrevSpec;
5605}
5606
Chris Lattner1b492422010-02-28 18:33:55 +00005607
5608/// TryAltiVecVectorTokenOutOfLine - Out of line body that should only be called
5609/// from TryAltiVecVectorToken.
5610bool Parser::TryAltiVecVectorTokenOutOfLine() {
5611 Token Next = NextToken();
5612 switch (Next.getKind()) {
5613 default: return false;
5614 case tok::kw_short:
5615 case tok::kw_long:
5616 case tok::kw_signed:
5617 case tok::kw_unsigned:
5618 case tok::kw_void:
5619 case tok::kw_char:
5620 case tok::kw_int:
5621 case tok::kw_float:
5622 case tok::kw_double:
5623 case tok::kw_bool:
5624 case tok::kw___pixel:
5625 Tok.setKind(tok::kw___vector);
5626 return true;
5627 case tok::identifier:
5628 if (Next.getIdentifierInfo() == Ident_pixel) {
5629 Tok.setKind(tok::kw___vector);
5630 return true;
5631 }
Bill Schmidt3e3d20b2013-07-03 20:54:09 +00005632 if (Next.getIdentifierInfo() == Ident_bool) {
5633 Tok.setKind(tok::kw___vector);
5634 return true;
5635 }
Chris Lattner1b492422010-02-28 18:33:55 +00005636 return false;
5637 }
5638}
5639
5640bool Parser::TryAltiVecTokenOutOfLine(DeclSpec &DS, SourceLocation Loc,
5641 const char *&PrevSpec, unsigned &DiagID,
5642 bool &isInvalid) {
5643 if (Tok.getIdentifierInfo() == Ident_vector) {
5644 Token Next = NextToken();
5645 switch (Next.getKind()) {
5646 case tok::kw_short:
5647 case tok::kw_long:
5648 case tok::kw_signed:
5649 case tok::kw_unsigned:
5650 case tok::kw_void:
5651 case tok::kw_char:
5652 case tok::kw_int:
5653 case tok::kw_float:
5654 case tok::kw_double:
5655 case tok::kw_bool:
5656 case tok::kw___pixel:
5657 isInvalid = DS.SetTypeAltiVecVector(true, Loc, PrevSpec, DiagID);
5658 return true;
5659 case tok::identifier:
5660 if (Next.getIdentifierInfo() == Ident_pixel) {
5661 isInvalid = DS.SetTypeAltiVecVector(true, Loc, PrevSpec, DiagID);
5662 return true;
5663 }
Bill Schmidt3e3d20b2013-07-03 20:54:09 +00005664 if (Next.getIdentifierInfo() == Ident_bool) {
5665 isInvalid = DS.SetTypeAltiVecVector(true, Loc, PrevSpec, DiagID);
5666 return true;
5667 }
Chris Lattner1b492422010-02-28 18:33:55 +00005668 break;
5669 default:
5670 break;
5671 }
Douglas Gregora8f031f2010-06-16 15:28:57 +00005672 } else if ((Tok.getIdentifierInfo() == Ident_pixel) &&
Chris Lattner1b492422010-02-28 18:33:55 +00005673 DS.isTypeAltiVecVector()) {
5674 isInvalid = DS.SetTypeAltiVecPixel(true, Loc, PrevSpec, DiagID);
5675 return true;
Bill Schmidt3e3d20b2013-07-03 20:54:09 +00005676 } else if ((Tok.getIdentifierInfo() == Ident_bool) &&
5677 DS.isTypeAltiVecVector()) {
5678 isInvalid = DS.SetTypeAltiVecBool(true, Loc, PrevSpec, DiagID);
5679 return true;
Chris Lattner1b492422010-02-28 18:33:55 +00005680 }
5681 return false;
5682}