blob: 8f4afdf9034c080b35c7db40c2fc9b5e7254f751 [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"
Stephen Hines651f13c2014-04-23 16:59:28 -070016#include "clang/AST/ASTContext.h"
Larisse Voufo7c64ef02013-06-21 00:08:46 +000017#include "clang/AST/DeclTemplate.h"
Benjamin Kramer9852f582012-12-01 16:35:25 +000018#include "clang/Basic/AddressSpaces.h"
Stephen Hines651f13c2014-04-23 16:59:28 -070019#include "clang/Basic/Attributes.h"
Jordan Rose3f6f51e2013-02-08 22:30:41 +000020#include "clang/Basic/CharInfo.h"
Stephen Hines651f13c2014-04-23 16:59:28 -070021#include "clang/Basic/TargetInfo.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000022#include "clang/Parse/ParseDiagnostic.h"
Kaelyn Uhrainaec2ac62012-04-26 23:36:17 +000023#include "clang/Sema/Lookup.h"
John McCall19510852010-08-20 18:27:03 +000024#include "clang/Sema/ParsedTemplate.h"
John McCallf312b1e2010-08-26 23:41:50 +000025#include "clang/Sema/PrettyDeclStackTrace.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000026#include "clang/Sema/Scope.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000027#include "llvm/ADT/SmallSet.h"
Benjamin Kramer8fe83e12012-02-04 13:45:25 +000028#include "llvm/ADT/SmallString.h"
Caitlin Sadowskib51e0312011-08-09 17:59:31 +000029#include "llvm/ADT/StringSwitch.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000030using namespace clang;
31
32//===----------------------------------------------------------------------===//
33// C99 6.7: Declarations.
34//===----------------------------------------------------------------------===//
35
36/// ParseTypeName
37/// type-name: [C99 6.7.6]
38/// specifier-qualifier-list abstract-declarator[opt]
Sebastian Redl4c5d3202008-11-21 19:14:01 +000039///
40/// Called type-id in C++.
Douglas Gregor683a81f2011-01-31 16:09:46 +000041TypeResult Parser::ParseTypeName(SourceRange *Range,
John McCallf85e1932011-06-15 23:02:42 +000042 Declarator::TheContext Context,
Richard Smithc89edf52011-07-01 19:46:12 +000043 AccessSpecifier AS,
Richard Smith6b3d3e52013-02-20 19:22:51 +000044 Decl **OwnedType,
45 ParsedAttributes *Attrs) {
Richard Smith6d96d3a2012-03-15 01:02:11 +000046 DeclSpecContext DSC = getDeclSpecContextFromDeclaratorContext(Context);
Richard Smitha971d242012-05-09 20:55:26 +000047 if (DSC == DSC_normal)
48 DSC = DSC_type_specifier;
Richard Smith7796eb52012-03-12 08:56:40 +000049
Reid Spencer5f016e22007-07-11 17:01:13 +000050 // Parse the common declaration-specifiers piece.
John McCall0b7e6782011-03-24 11:26:52 +000051 DeclSpec DS(AttrFactory);
Richard Smith6b3d3e52013-02-20 19:22:51 +000052 if (Attrs)
53 DS.addAttributes(Attrs->getList());
Richard Smith7796eb52012-03-12 08:56:40 +000054 ParseSpecifierQualifierList(DS, AS, DSC);
Richard Smithc89edf52011-07-01 19:46:12 +000055 if (OwnedType)
Stephen Hines6bcf27b2014-05-29 04:14:42 -070056 *OwnedType = DS.isTypeSpecOwned() ? DS.getRepAsDecl() : nullptr;
Sebastian Redlef65f062009-05-29 18:02:33 +000057
Reid Spencer5f016e22007-07-11 17:01:13 +000058 // Parse the abstract-declarator, if present.
Douglas Gregor683a81f2011-01-31 16:09:46 +000059 Declarator DeclaratorInfo(DS, Context);
Reid Spencer5f016e22007-07-11 17:01:13 +000060 ParseDeclarator(DeclaratorInfo);
Sebastian Redlef65f062009-05-29 18:02:33 +000061 if (Range)
62 *Range = DeclaratorInfo.getSourceRange();
63
Chris Lattnereaaebc72009-04-25 08:06:05 +000064 if (DeclaratorInfo.isInvalidType())
Douglas Gregor809070a2009-02-18 17:45:20 +000065 return true;
66
Douglas Gregor23c94db2010-07-02 17:43:08 +000067 return Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
Reid Spencer5f016e22007-07-11 17:01:13 +000068}
69
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +000070
71/// isAttributeLateParsed - Return true if the attribute has arguments that
72/// require late parsing.
73static bool isAttributeLateParsed(const IdentifierInfo &II) {
Stephen Hines651f13c2014-04-23 16:59:28 -070074#define CLANG_ATTR_LATE_PARSED_LIST
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +000075 return llvm::StringSwitch<bool>(II.getName())
Stephen Hines651f13c2014-04-23 16:59:28 -070076#include "clang/Parse/AttrParserStringSwitches.inc"
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +000077 .Default(false);
Stephen Hines651f13c2014-04-23 16:59:28 -070078#undef CLANG_ATTR_LATE_PARSED_LIST
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +000079}
80
Sean Huntbbd37c62009-11-21 08:43:09 +000081/// ParseGNUAttributes - Parse a non-empty attributes list.
Reid Spencer5f016e22007-07-11 17:01:13 +000082///
83/// [GNU] attributes:
84/// attribute
85/// attributes attribute
86///
87/// [GNU] attribute:
88/// '__attribute__' '(' '(' attribute-list ')' ')'
89///
90/// [GNU] attribute-list:
91/// attrib
92/// attribute_list ',' attrib
93///
94/// [GNU] attrib:
95/// empty
96/// attrib-name
97/// attrib-name '(' identifier ')'
98/// attrib-name '(' identifier ',' nonempty-expr-list ')'
99/// attrib-name '(' argument-expression-list [C99 6.5.2] ')'
100///
101/// [GNU] attrib-name:
102/// identifier
103/// typespec
104/// typequal
105/// storageclass
Mike Stump1eb44332009-09-09 15:08:12 +0000106///
Richard Smith4c6c4112013-09-03 18:57:36 +0000107/// Whether an attribute takes an 'identifier' is determined by the
108/// attrib-name. GCC's behavior here is not worth imitating:
Reid Spencer5f016e22007-07-11 17:01:13 +0000109///
Richard Smith4c6c4112013-09-03 18:57:36 +0000110/// * In C mode, if the attribute argument list starts with an identifier
111/// followed by a ',' or an ')', and the identifier doesn't resolve to
112/// a type, it is parsed as an identifier. If the attribute actually
113/// wanted an expression, it's out of luck (but it turns out that no
114/// attributes work that way, because C constant expressions are very
115/// limited).
116/// * In C++ mode, if the attribute argument list starts with an identifier,
117/// and the attribute *wants* an identifier, it is parsed as an identifier.
118/// At block scope, any additional tokens between the identifier and the
119/// ',' or ')' are ignored, otherwise they produce a parse error.
Richard Smithfe0a0fb2011-10-17 21:20:17 +0000120///
Richard Smith4c6c4112013-09-03 18:57:36 +0000121/// We follow the C++ model, but don't allow junk after the identifier.
John McCall7f040a92010-12-24 02:08:15 +0000122void Parser::ParseGNUAttributes(ParsedAttributes &attrs,
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000123 SourceLocation *endLoc,
Stephen Hines651f13c2014-04-23 16:59:28 -0700124 LateParsedAttrList *LateAttrs,
125 Declarator *D) {
Sean Huntbbd37c62009-11-21 08:43:09 +0000126 assert(Tok.is(tok::kw___attribute) && "Not a GNU attribute list!");
Mike Stump1eb44332009-09-09 15:08:12 +0000127
Chris Lattner04d66662007-10-09 17:33:22 +0000128 while (Tok.is(tok::kw___attribute)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000129 ConsumeToken();
130 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after,
131 "attribute")) {
Alexey Bataev8fe24752013-11-18 08:17:37 +0000132 SkipUntil(tok::r_paren, StopAtSemi); // skip until ) or ;
John McCall7f040a92010-12-24 02:08:15 +0000133 return;
Reid Spencer5f016e22007-07-11 17:01:13 +0000134 }
135 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after, "(")) {
Alexey Bataev8fe24752013-11-18 08:17:37 +0000136 SkipUntil(tok::r_paren, StopAtSemi); // skip until ) or ;
John McCall7f040a92010-12-24 02:08:15 +0000137 return;
Reid Spencer5f016e22007-07-11 17:01:13 +0000138 }
139 // Parse the attribute-list. e.g. __attribute__(( weak, alias("__f") ))
Stephen Hines651f13c2014-04-23 16:59:28 -0700140 while (true) {
141 // Allow empty/non-empty attributes. ((__vector_size__(16),,,,))
142 if (TryConsumeToken(tok::comma))
Reid Spencer5f016e22007-07-11 17:01:13 +0000143 continue;
Stephen Hines651f13c2014-04-23 16:59:28 -0700144
145 // Expect an identifier or declaration specifier (const, int, etc.)
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700146 if (Tok.isAnnotation())
147 break;
148 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
149 if (!AttrName)
Stephen Hines651f13c2014-04-23 16:59:28 -0700150 break;
151
Reid Spencer5f016e22007-07-11 17:01:13 +0000152 SourceLocation AttrNameLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000153
Stephen Hines651f13c2014-04-23 16:59:28 -0700154 if (Tok.isNot(tok::l_paren)) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700155 attrs.addNew(AttrName, AttrNameLoc, nullptr, AttrNameLoc, nullptr, 0,
Aaron Ballman624421f2013-08-31 01:11:41 +0000156 AttributeList::AS_GNU);
Stephen Hines651f13c2014-04-23 16:59:28 -0700157 continue;
Reid Spencer5f016e22007-07-11 17:01:13 +0000158 }
Stephen Hines651f13c2014-04-23 16:59:28 -0700159
160 // Handle "parameterized" attributes
161 if (!LateAttrs || !isAttributeLateParsed(*AttrName)) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700162 ParseGNUAttributeArgs(AttrName, AttrNameLoc, attrs, endLoc, nullptr,
Stephen Hines651f13c2014-04-23 16:59:28 -0700163 SourceLocation(), AttributeList::AS_GNU, D);
164 continue;
165 }
166
167 // Handle attributes with arguments that require late parsing.
168 LateParsedAttribute *LA =
169 new LateParsedAttribute(this, *AttrName, AttrNameLoc);
170 LateAttrs->push_back(LA);
171
172 // Attributes in a class are parsed at the end of the class, along
173 // with other late-parsed declarations.
174 if (!ClassStack.empty() && !LateAttrs->parseSoon())
175 getCurrentClass().LateParsedDeclarations.push_back(LA);
176
177 // consume everything up to and including the matching right parens
178 ConsumeAndStoreUntil(tok::r_paren, LA->Toks, true, false);
179
180 Token Eof;
181 Eof.startToken();
182 Eof.setLocation(Tok.getLocation());
183 LA->Toks.push_back(Eof);
Reid Spencer5f016e22007-07-11 17:01:13 +0000184 }
Stephen Hines651f13c2014-04-23 16:59:28 -0700185
186 if (ExpectAndConsume(tok::r_paren))
Alexey Bataev8fe24752013-11-18 08:17:37 +0000187 SkipUntil(tok::r_paren, StopAtSemi);
Sean Huntbbd37c62009-11-21 08:43:09 +0000188 SourceLocation Loc = Tok.getLocation();
Stephen Hines651f13c2014-04-23 16:59:28 -0700189 if (ExpectAndConsume(tok::r_paren))
Alexey Bataev8fe24752013-11-18 08:17:37 +0000190 SkipUntil(tok::r_paren, StopAtSemi);
John McCall7f040a92010-12-24 02:08:15 +0000191 if (endLoc)
192 *endLoc = Loc;
Reid Spencer5f016e22007-07-11 17:01:13 +0000193 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000194}
195
Aaron Ballman9feedb82013-11-04 12:55:56 +0000196/// \brief Normalizes an attribute name by dropping prefixed and suffixed __.
197static StringRef normalizeAttrName(StringRef Name) {
Richard Smithd92aa2d2013-10-24 01:07:54 +0000198 if (Name.size() >= 4 && Name.startswith("__") && Name.endswith("__"))
199 Name = Name.drop_front(2).drop_back(2);
Aaron Ballman9feedb82013-11-04 12:55:56 +0000200 return Name;
201}
202
203/// \brief Determine whether the given attribute has an identifier argument.
204static bool attributeHasIdentifierArg(const IdentifierInfo &II) {
Stephen Hines651f13c2014-04-23 16:59:28 -0700205#define CLANG_ATTR_IDENTIFIER_ARG_LIST
Aaron Ballman9feedb82013-11-04 12:55:56 +0000206 return llvm::StringSwitch<bool>(normalizeAttrName(II.getName()))
Stephen Hines651f13c2014-04-23 16:59:28 -0700207#include "clang/Parse/AttrParserStringSwitches.inc"
Douglas Gregor92eb7d82013-05-02 23:25:32 +0000208 .Default(false);
Stephen Hines651f13c2014-04-23 16:59:28 -0700209#undef CLANG_ATTR_IDENTIFIER_ARG_LIST
Douglas Gregor92eb7d82013-05-02 23:25:32 +0000210}
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000211
Aaron Ballman9feedb82013-11-04 12:55:56 +0000212/// \brief Determine whether the given attribute parses a type argument.
213static bool attributeIsTypeArgAttr(const IdentifierInfo &II) {
Stephen Hines651f13c2014-04-23 16:59:28 -0700214#define CLANG_ATTR_TYPE_ARG_LIST
Aaron Ballman9feedb82013-11-04 12:55:56 +0000215 return llvm::StringSwitch<bool>(normalizeAttrName(II.getName()))
Stephen Hines651f13c2014-04-23 16:59:28 -0700216#include "clang/Parse/AttrParserStringSwitches.inc"
Aaron Ballman9feedb82013-11-04 12:55:56 +0000217 .Default(false);
Stephen Hines651f13c2014-04-23 16:59:28 -0700218#undef CLANG_ATTR_TYPE_ARG_LIST
219}
220
221/// \brief Determine whether the given attribute requires parsing its arguments
222/// in an unevaluated context or not.
223static bool attributeParsedArgsUnevaluated(const IdentifierInfo &II) {
224#define CLANG_ATTR_ARG_CONTEXT_LIST
225 return llvm::StringSwitch<bool>(normalizeAttrName(II.getName()))
226#include "clang/Parse/AttrParserStringSwitches.inc"
227 .Default(false);
228#undef CLANG_ATTR_ARG_CONTEXT_LIST
Aaron Ballman9feedb82013-11-04 12:55:56 +0000229}
230
Richard Smith8edabd92013-09-03 18:01:40 +0000231IdentifierLoc *Parser::ParseIdentifierLoc() {
232 assert(Tok.is(tok::identifier) && "expected an identifier");
233 IdentifierLoc *IL = IdentifierLoc::create(Actions.Context,
234 Tok.getLocation(),
235 Tok.getIdentifierInfo());
236 ConsumeToken();
237 return IL;
238}
239
Richard Smithd386fef2013-10-31 01:56:18 +0000240void Parser::ParseAttributeWithTypeArg(IdentifierInfo &AttrName,
241 SourceLocation AttrNameLoc,
242 ParsedAttributes &Attrs,
Stephen Hines176edba2014-12-01 14:53:08 -0800243 SourceLocation *EndLoc,
244 IdentifierInfo *ScopeName,
245 SourceLocation ScopeLoc,
246 AttributeList::Syntax Syntax) {
Richard Smithd386fef2013-10-31 01:56:18 +0000247 BalancedDelimiterTracker Parens(*this, tok::l_paren);
248 Parens.consumeOpen();
249
250 TypeResult T;
251 if (Tok.isNot(tok::r_paren))
252 T = ParseTypeName();
253
254 if (Parens.consumeClose())
255 return;
256
257 if (T.isInvalid())
258 return;
259
260 if (T.isUsable())
261 Attrs.addNewTypeAttr(&AttrName,
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700262 SourceRange(AttrNameLoc, Parens.getCloseLocation()),
Stephen Hines176edba2014-12-01 14:53:08 -0800263 ScopeName, ScopeLoc, T.get(), Syntax);
Richard Smithd386fef2013-10-31 01:56:18 +0000264 else
265 Attrs.addNew(&AttrName, SourceRange(AttrNameLoc, Parens.getCloseLocation()),
Stephen Hines176edba2014-12-01 14:53:08 -0800266 ScopeName, ScopeLoc, nullptr, 0, Syntax);
Richard Smithd386fef2013-10-31 01:56:18 +0000267}
268
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700269unsigned Parser::ParseAttributeArgsCommon(
Stephen Hines651f13c2014-04-23 16:59:28 -0700270 IdentifierInfo *AttrName, SourceLocation AttrNameLoc,
271 ParsedAttributes &Attrs, SourceLocation *EndLoc, IdentifierInfo *ScopeName,
272 SourceLocation ScopeLoc, AttributeList::Syntax Syntax) {
Richard Smithd92aa2d2013-10-24 01:07:54 +0000273 // Ignore the left paren location for now.
274 ConsumeParen();
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000275
Aaron Ballman624421f2013-08-31 01:11:41 +0000276 ArgsVector ArgExprs;
Richard Smithd386fef2013-10-31 01:56:18 +0000277 if (Tok.is(tok::identifier)) {
Richard Smithd92aa2d2013-10-24 01:07:54 +0000278 // If this attribute wants an 'identifier' argument, make it so.
Richard Smithd386fef2013-10-31 01:56:18 +0000279 bool IsIdentifierArg = attributeHasIdentifierArg(*AttrName);
Stephen Hines651f13c2014-04-23 16:59:28 -0700280 AttributeList::Kind AttrKind =
281 AttributeList::getKind(AttrName, ScopeName, Syntax);
Richard Smithd92aa2d2013-10-24 01:07:54 +0000282
283 // If we don't know how to parse this attribute, but this is the only
284 // token in this argument, assume it's meant to be an identifier.
Bill Wendling307c92e2013-12-05 18:35:37 +0000285 if (AttrKind == AttributeList::UnknownAttribute ||
286 AttrKind == AttributeList::IgnoredAttribute) {
Richard Smithd92aa2d2013-10-24 01:07:54 +0000287 const Token &Next = NextToken();
Richard Smithd386fef2013-10-31 01:56:18 +0000288 IsIdentifierArg = Next.is(tok::r_paren) || Next.is(tok::comma);
Richard Smithd92aa2d2013-10-24 01:07:54 +0000289 }
Richard Smithfe0a0fb2011-10-17 21:20:17 +0000290
Richard Smithd386fef2013-10-31 01:56:18 +0000291 if (IsIdentifierArg)
292 ArgExprs.push_back(ParseIdentifierLoc());
Richard Smithfe0a0fb2011-10-17 21:20:17 +0000293 }
294
Richard Smithd386fef2013-10-31 01:56:18 +0000295 if (!ArgExprs.empty() ? Tok.is(tok::comma) : Tok.isNot(tok::r_paren)) {
Richard Smithfe0a0fb2011-10-17 21:20:17 +0000296 // Eat the comma.
Aaron Ballman624421f2013-08-31 01:11:41 +0000297 if (!ArgExprs.empty())
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000298 ConsumeToken();
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000299
Richard Smithfe0a0fb2011-10-17 21:20:17 +0000300 // Parse the non-empty comma-separated list of expressions.
Stephen Hines651f13c2014-04-23 16:59:28 -0700301 do {
302 std::unique_ptr<EnterExpressionEvaluationContext> Unevaluated;
303 if (attributeParsedArgsUnevaluated(*AttrName))
304 Unevaluated.reset(
305 new EnterExpressionEvaluationContext(Actions, Sema::Unevaluated));
306
Stephen Hines176edba2014-12-01 14:53:08 -0800307 ExprResult ArgExpr(
308 Actions.CorrectDelayedTyposInExpr(ParseAssignmentExpression()));
Richard Smithfe0a0fb2011-10-17 21:20:17 +0000309 if (ArgExpr.isInvalid()) {
Alexey Bataev8fe24752013-11-18 08:17:37 +0000310 SkipUntil(tok::r_paren, StopAtSemi);
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700311 return 0;
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000312 }
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700313 ArgExprs.push_back(ArgExpr.get());
Stephen Hines651f13c2014-04-23 16:59:28 -0700314 // Eat the comma, move to the next argument
315 } while (TryConsumeToken(tok::comma));
Fariborz Jahanian7a81e412011-10-18 17:11:10 +0000316 }
Richard Smithfe0a0fb2011-10-17 21:20:17 +0000317
318 SourceLocation RParen = Tok.getLocation();
Stephen Hines651f13c2014-04-23 16:59:28 -0700319 if (!ExpectAndConsume(tok::r_paren)) {
Michael Han45bed132012-10-04 16:42:52 +0000320 SourceLocation AttrLoc = ScopeLoc.isValid() ? ScopeLoc : AttrNameLoc;
Richard Smithd386fef2013-10-31 01:56:18 +0000321 Attrs.addNew(AttrName, SourceRange(AttrLoc, RParen), ScopeName, ScopeLoc,
322 ArgExprs.data(), ArgExprs.size(), Syntax);
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000323 }
Stephen Hines651f13c2014-04-23 16:59:28 -0700324
325 if (EndLoc)
326 *EndLoc = RParen;
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700327
328 return static_cast<unsigned>(ArgExprs.size());
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000329}
330
Stephen Hines651f13c2014-04-23 16:59:28 -0700331/// Parse the arguments to a parameterized GNU attribute or
332/// a C++11 attribute in "gnu" namespace.
333void Parser::ParseGNUAttributeArgs(IdentifierInfo *AttrName,
334 SourceLocation AttrNameLoc,
335 ParsedAttributes &Attrs,
336 SourceLocation *EndLoc,
337 IdentifierInfo *ScopeName,
338 SourceLocation ScopeLoc,
339 AttributeList::Syntax Syntax,
340 Declarator *D) {
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000341
Stephen Hines651f13c2014-04-23 16:59:28 -0700342 assert(Tok.is(tok::l_paren) && "Attribute arg list not starting with '('");
343
344 AttributeList::Kind AttrKind =
345 AttributeList::getKind(AttrName, ScopeName, Syntax);
346
Stephen Hines651f13c2014-04-23 16:59:28 -0700347 if (AttrKind == AttributeList::AT_Availability) {
Stephen Hines176edba2014-12-01 14:53:08 -0800348 ParseAvailabilityAttribute(*AttrName, AttrNameLoc, Attrs, EndLoc, ScopeName,
349 ScopeLoc, Syntax);
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000350 return;
Stephen Hines176edba2014-12-01 14:53:08 -0800351 } else if (AttrKind == AttributeList::AT_ObjCBridgeRelated) {
352 ParseObjCBridgeRelatedAttribute(*AttrName, AttrNameLoc, Attrs, EndLoc,
353 ScopeName, ScopeLoc, Syntax);
Stephen Hines651f13c2014-04-23 16:59:28 -0700354 return;
Stephen Hines176edba2014-12-01 14:53:08 -0800355 } else if (AttrKind == AttributeList::AT_TypeTagForDatatype) {
356 ParseTypeTagForDatatypeAttribute(*AttrName, AttrNameLoc, Attrs, EndLoc,
357 ScopeName, ScopeLoc, Syntax);
Stephen Hines651f13c2014-04-23 16:59:28 -0700358 return;
Stephen Hines176edba2014-12-01 14:53:08 -0800359 } else if (attributeIsTypeArgAttr(*AttrName)) {
360 ParseAttributeWithTypeArg(*AttrName, AttrNameLoc, Attrs, EndLoc, ScopeName,
361 ScopeLoc, Syntax);
Stephen Hines651f13c2014-04-23 16:59:28 -0700362 return;
363 }
364
365 // These may refer to the function arguments, but need to be parsed early to
366 // participate in determining whether it's a redeclaration.
367 std::unique_ptr<ParseScope> PrototypeScope;
368 if (AttrName->isStr("enable_if") && D && D->isFunctionDeclarator()) {
369 DeclaratorChunk::FunctionTypeInfo FTI = D->getFunctionTypeInfo();
370 PrototypeScope.reset(new ParseScope(this, Scope::FunctionPrototypeScope |
371 Scope::FunctionDeclarationScope |
372 Scope::DeclScope));
373 for (unsigned i = 0; i != FTI.NumParams; ++i) {
374 ParmVarDecl *Param = cast<ParmVarDecl>(FTI.Params[i].Param);
375 Actions.ActOnReenterCXXMethodParameter(getCurScope(), Param);
376 }
377 }
378
379 ParseAttributeArgsCommon(AttrName, AttrNameLoc, Attrs, EndLoc, ScopeName,
380 ScopeLoc, Syntax);
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000381}
382
Stephen Hines651f13c2014-04-23 16:59:28 -0700383bool Parser::ParseMicrosoftDeclSpecArgs(IdentifierInfo *AttrName,
384 SourceLocation AttrNameLoc,
385 ParsedAttributes &Attrs) {
386 // If the attribute isn't known, we will not attempt to parse any
387 // arguments.
388 if (!hasAttribute(AttrSyntax::Declspec, nullptr, AttrName,
389 getTargetInfo().getTriple(), getLangOpts())) {
390 // Eat the left paren, then skip to the ending right paren.
391 ConsumeParen();
392 SkipUntil(tok::r_paren);
393 return false;
394 }
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000395
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700396 SourceLocation OpenParenLoc = Tok.getLocation();
397
Stephen Hines651f13c2014-04-23 16:59:28 -0700398 if (AttrName->getName() == "property") {
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000399 // The property declspec is more complex in that it can take one or two
Chad Rosier8decdee2012-06-26 22:30:43 +0000400 // assignment expressions as a parameter, but the lhs of the assignment
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000401 // must be named get or put.
Stephen Hines651f13c2014-04-23 16:59:28 -0700402
John McCall76da55d2013-04-16 07:28:30 +0000403 BalancedDelimiterTracker T(*this, tok::l_paren);
404 T.expectAndConsume(diag::err_expected_lparen_after,
Stephen Hines651f13c2014-04-23 16:59:28 -0700405 AttrName->getNameStart(), tok::r_paren);
John McCall76da55d2013-04-16 07:28:30 +0000406
407 enum AccessorKind {
408 AK_Invalid = -1,
Stephen Hines651f13c2014-04-23 16:59:28 -0700409 AK_Put = 0,
410 AK_Get = 1 // indices into AccessorNames
John McCall76da55d2013-04-16 07:28:30 +0000411 };
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700412 IdentifierInfo *AccessorNames[] = {nullptr, nullptr};
John McCall76da55d2013-04-16 07:28:30 +0000413 bool HasInvalidAccessor = false;
414
415 // Parse the accessor specifications.
416 while (true) {
417 // Stop if this doesn't look like an accessor spec.
418 if (!Tok.is(tok::identifier)) {
419 // If the user wrote a completely empty list, use a special diagnostic.
420 if (Tok.is(tok::r_paren) && !HasInvalidAccessor &&
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700421 AccessorNames[AK_Put] == nullptr &&
422 AccessorNames[AK_Get] == nullptr) {
Stephen Hines651f13c2014-04-23 16:59:28 -0700423 Diag(AttrNameLoc, diag::err_ms_property_no_getter_or_putter);
John McCall76da55d2013-04-16 07:28:30 +0000424 break;
425 }
426
427 Diag(Tok.getLocation(), diag::err_ms_property_unknown_accessor);
428 break;
429 }
430
431 AccessorKind Kind;
432 SourceLocation KindLoc = Tok.getLocation();
433 StringRef KindStr = Tok.getIdentifierInfo()->getName();
434 if (KindStr == "get") {
435 Kind = AK_Get;
436 } else if (KindStr == "put") {
437 Kind = AK_Put;
438
Stephen Hines651f13c2014-04-23 16:59:28 -0700439 // Recover from the common mistake of using 'set' instead of 'put'.
John McCall76da55d2013-04-16 07:28:30 +0000440 } else if (KindStr == "set") {
441 Diag(KindLoc, diag::err_ms_property_has_set_accessor)
Stephen Hines651f13c2014-04-23 16:59:28 -0700442 << FixItHint::CreateReplacement(KindLoc, "put");
John McCall76da55d2013-04-16 07:28:30 +0000443 Kind = AK_Put;
444
Stephen Hines651f13c2014-04-23 16:59:28 -0700445 // Handle the mistake of forgetting the accessor kind by skipping
446 // this accessor.
John McCall76da55d2013-04-16 07:28:30 +0000447 } else if (NextToken().is(tok::comma) || NextToken().is(tok::r_paren)) {
448 Diag(KindLoc, diag::err_ms_property_missing_accessor_kind);
449 ConsumeToken();
450 HasInvalidAccessor = true;
451 goto next_property_accessor;
452
Stephen Hines651f13c2014-04-23 16:59:28 -0700453 // Otherwise, complain about the unknown accessor kind.
John McCall76da55d2013-04-16 07:28:30 +0000454 } else {
455 Diag(KindLoc, diag::err_ms_property_unknown_accessor);
456 HasInvalidAccessor = true;
457 Kind = AK_Invalid;
458
459 // Try to keep parsing unless it doesn't look like an accessor spec.
Stephen Hines651f13c2014-04-23 16:59:28 -0700460 if (!NextToken().is(tok::equal))
461 break;
John McCall76da55d2013-04-16 07:28:30 +0000462 }
463
464 // Consume the identifier.
465 ConsumeToken();
466
467 // Consume the '='.
Stephen Hines651f13c2014-04-23 16:59:28 -0700468 if (!TryConsumeToken(tok::equal)) {
John McCall76da55d2013-04-16 07:28:30 +0000469 Diag(Tok.getLocation(), diag::err_ms_property_expected_equal)
Stephen Hines651f13c2014-04-23 16:59:28 -0700470 << KindStr;
John McCall76da55d2013-04-16 07:28:30 +0000471 break;
472 }
473
474 // Expect the method name.
475 if (!Tok.is(tok::identifier)) {
476 Diag(Tok.getLocation(), diag::err_ms_property_expected_accessor_name);
477 break;
478 }
479
480 if (Kind == AK_Invalid) {
481 // Just drop invalid accessors.
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700482 } else if (AccessorNames[Kind] != nullptr) {
John McCall76da55d2013-04-16 07:28:30 +0000483 // Complain about the repeated accessor, ignore it, and keep parsing.
484 Diag(KindLoc, diag::err_ms_property_duplicate_accessor) << KindStr;
485 } else {
486 AccessorNames[Kind] = Tok.getIdentifierInfo();
487 }
488 ConsumeToken();
489
490 next_property_accessor:
491 // Keep processing accessors until we run out.
Stephen Hines651f13c2014-04-23 16:59:28 -0700492 if (TryConsumeToken(tok::comma))
John McCall76da55d2013-04-16 07:28:30 +0000493 continue;
494
495 // If we run into the ')', stop without consuming it.
Stephen Hines651f13c2014-04-23 16:59:28 -0700496 if (Tok.is(tok::r_paren))
John McCall76da55d2013-04-16 07:28:30 +0000497 break;
Stephen Hines651f13c2014-04-23 16:59:28 -0700498
499 Diag(Tok.getLocation(), diag::err_ms_property_expected_comma_or_rparen);
500 break;
John McCall76da55d2013-04-16 07:28:30 +0000501 }
502
503 // Only add the property attribute if it was well-formed.
Stephen Hines651f13c2014-04-23 16:59:28 -0700504 if (!HasInvalidAccessor)
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700505 Attrs.addNewPropertyAttr(AttrName, AttrNameLoc, nullptr, SourceLocation(),
John McCall76da55d2013-04-16 07:28:30 +0000506 AccessorNames[AK_Get], AccessorNames[AK_Put],
507 AttributeList::AS_Declspec);
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000508 T.skipToEnd();
Stephen Hines651f13c2014-04-23 16:59:28 -0700509 return !HasInvalidAccessor;
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000510 }
Stephen Hines651f13c2014-04-23 16:59:28 -0700511
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700512 unsigned NumArgs =
513 ParseAttributeArgsCommon(AttrName, AttrNameLoc, Attrs, nullptr, nullptr,
514 SourceLocation(), AttributeList::AS_Declspec);
515
516 // If this attribute's args were parsed, and it was expected to have
517 // arguments but none were provided, emit a diagnostic.
518 const AttributeList *Attr = Attrs.getList();
519 if (Attr && Attr->getMaxArgs() && !NumArgs) {
520 Diag(OpenParenLoc, diag::err_attribute_requires_arguments) << AttrName;
521 return false;
522 }
Stephen Hines651f13c2014-04-23 16:59:28 -0700523 return true;
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000524}
525
Eli Friedmana23b4852009-06-08 07:21:15 +0000526/// [MS] decl-specifier:
527/// __declspec ( extended-decl-modifier-seq )
528///
529/// [MS] extended-decl-modifier-seq:
530/// extended-decl-modifier[opt]
531/// extended-decl-modifier extended-decl-modifier-seq
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000532void Parser::ParseMicrosoftDeclSpec(ParsedAttributes &Attrs) {
Steve Narofff59e17e2008-12-24 20:59:21 +0000533 assert(Tok.is(tok::kw___declspec) && "Not a declspec!");
Eli Friedmana23b4852009-06-08 07:21:15 +0000534
Steve Narofff59e17e2008-12-24 20:59:21 +0000535 ConsumeToken();
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000536 BalancedDelimiterTracker T(*this, tok::l_paren);
Chad Rosier8decdee2012-06-26 22:30:43 +0000537 if (T.expectAndConsume(diag::err_expected_lparen_after, "__declspec",
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000538 tok::r_paren))
John McCall7f040a92010-12-24 02:08:15 +0000539 return;
Jakob Stoklund Olesen35329362012-06-19 21:48:43 +0000540
Chad Rosier8decdee2012-06-26 22:30:43 +0000541 // An empty declspec is perfectly legal and should not warn. Additionally,
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000542 // you can specify multiple attributes per declspec.
Stephen Hines651f13c2014-04-23 16:59:28 -0700543 while (Tok.isNot(tok::r_paren)) {
544 // Attribute not present.
545 if (TryConsumeToken(tok::comma))
546 continue;
547
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000548 // We expect either a well-known identifier or a generic string. Anything
549 // else is a malformed declspec.
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -0700550 bool IsString = Tok.getKind() == tok::string_literal;
Chad Rosier8decdee2012-06-26 22:30:43 +0000551 if (!IsString && Tok.getKind() != tok::identifier &&
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000552 Tok.getKind() != tok::kw_restrict) {
553 Diag(Tok, diag::err_ms_declspec_type);
554 T.skipToEnd();
555 return;
Jakob Stoklund Olesen35329362012-06-19 21:48:43 +0000556 }
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000557
558 IdentifierInfo *AttrName;
559 SourceLocation AttrNameLoc;
560 if (IsString) {
561 SmallString<8> StrBuffer;
562 bool Invalid = false;
563 StringRef Str = PP.getSpelling(Tok, StrBuffer, &Invalid);
564 if (Invalid) {
565 T.skipToEnd();
566 return;
Jakob Stoklund Olesen35329362012-06-19 21:48:43 +0000567 }
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000568 AttrName = PP.getIdentifierInfo(Str);
569 AttrNameLoc = ConsumeStringToken();
Jakob Stoklund Olesen35329362012-06-19 21:48:43 +0000570 } else {
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000571 AttrName = Tok.getIdentifierInfo();
572 AttrNameLoc = ConsumeToken();
Jakob Stoklund Olesen35329362012-06-19 21:48:43 +0000573 }
Chad Rosier8decdee2012-06-26 22:30:43 +0000574
Stephen Hines651f13c2014-04-23 16:59:28 -0700575 bool AttrHandled = false;
576
577 // Parse attribute arguments.
578 if (Tok.is(tok::l_paren))
579 AttrHandled = ParseMicrosoftDeclSpecArgs(AttrName, AttrNameLoc, Attrs);
580 else if (AttrName->getName() == "property")
581 // The property attribute must have an argument list.
582 Diag(Tok.getLocation(), diag::err_expected_lparen_after)
583 << AttrName->getName();
584
585 if (!AttrHandled)
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700586 Attrs.addNew(AttrName, AttrNameLoc, nullptr, AttrNameLoc, nullptr, 0,
Aaron Ballman624421f2013-08-31 01:11:41 +0000587 AttributeList::AS_Declspec);
Jakob Stoklund Olesen35329362012-06-19 21:48:43 +0000588 }
Aaron Ballmanfc685ac2012-06-19 22:09:27 +0000589 T.consumeClose();
Eli Friedman290eeb02009-06-08 23:27:34 +0000590}
591
John McCall7f040a92010-12-24 02:08:15 +0000592void Parser::ParseMicrosoftTypeAttributes(ParsedAttributes &attrs) {
Eli Friedman290eeb02009-06-08 23:27:34 +0000593 // Treat these like attributes
Stephen Hines176edba2014-12-01 14:53:08 -0800594 while (true) {
595 switch (Tok.getKind()) {
596 case tok::kw___fastcall:
597 case tok::kw___stdcall:
598 case tok::kw___thiscall:
599 case tok::kw___cdecl:
600 case tok::kw___vectorcall:
601 case tok::kw___ptr64:
602 case tok::kw___w64:
603 case tok::kw___ptr32:
604 case tok::kw___unaligned:
605 case tok::kw___sptr:
606 case tok::kw___uptr: {
607 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
608 SourceLocation AttrNameLoc = ConsumeToken();
609 attrs.addNew(AttrName, AttrNameLoc, nullptr, AttrNameLoc, nullptr, 0,
610 AttributeList::AS_Keyword);
611 break;
612 }
613 default:
614 return;
615 }
Eli Friedman290eeb02009-06-08 23:27:34 +0000616 }
Steve Narofff59e17e2008-12-24 20:59:21 +0000617}
618
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700619void Parser::DiagnoseAndSkipExtendedMicrosoftTypeAttributes() {
620 SourceLocation StartLoc = Tok.getLocation();
621 SourceLocation EndLoc = SkipExtendedMicrosoftTypeAttributes();
622
623 if (EndLoc.isValid()) {
624 SourceRange Range(StartLoc, EndLoc);
625 Diag(StartLoc, diag::warn_microsoft_qualifiers_ignored) << Range;
626 }
627}
628
629SourceLocation Parser::SkipExtendedMicrosoftTypeAttributes() {
630 SourceLocation EndLoc;
631
632 while (true) {
633 switch (Tok.getKind()) {
634 case tok::kw_const:
635 case tok::kw_volatile:
636 case tok::kw___fastcall:
637 case tok::kw___stdcall:
638 case tok::kw___thiscall:
639 case tok::kw___cdecl:
640 case tok::kw___vectorcall:
641 case tok::kw___ptr32:
642 case tok::kw___ptr64:
643 case tok::kw___w64:
644 case tok::kw___unaligned:
645 case tok::kw___sptr:
646 case tok::kw___uptr:
647 EndLoc = ConsumeToken();
648 break;
649 default:
650 return EndLoc;
651 }
652 }
653}
654
John McCall7f040a92010-12-24 02:08:15 +0000655void Parser::ParseBorlandTypeAttributes(ParsedAttributes &attrs) {
Dawn Perchik52fc3142010-09-03 01:29:35 +0000656 // Treat these like attributes
657 while (Tok.is(tok::kw___pascal)) {
658 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
659 SourceLocation AttrNameLoc = ConsumeToken();
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700660 attrs.addNew(AttrName, AttrNameLoc, nullptr, AttrNameLoc, nullptr, 0,
Aaron Ballman624421f2013-08-31 01:11:41 +0000661 AttributeList::AS_Keyword);
Dawn Perchik52fc3142010-09-03 01:29:35 +0000662 }
John McCall7f040a92010-12-24 02:08:15 +0000663}
664
Peter Collingbournef315fa82011-02-14 01:42:53 +0000665void Parser::ParseOpenCLAttributes(ParsedAttributes &attrs) {
666 // Treat these like attributes
667 while (Tok.is(tok::kw___kernel)) {
Richard Smith5cd532c2013-01-29 01:24:26 +0000668 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
Peter Collingbournef315fa82011-02-14 01:42:53 +0000669 SourceLocation AttrNameLoc = ConsumeToken();
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700670 attrs.addNew(AttrName, AttrNameLoc, nullptr, AttrNameLoc, nullptr, 0,
Aaron Ballman624421f2013-08-31 01:11:41 +0000671 AttributeList::AS_Keyword);
Peter Collingbournef315fa82011-02-14 01:42:53 +0000672 }
673}
674
Stephen Hines651f13c2014-04-23 16:59:28 -0700675void Parser::ParseOpenCLQualifiers(ParsedAttributes &Attrs) {
676 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
677 SourceLocation AttrNameLoc = Tok.getLocation();
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700678 Attrs.addNew(AttrName, AttrNameLoc, nullptr, AttrNameLoc, nullptr, 0,
Stephen Hines651f13c2014-04-23 16:59:28 -0700679 AttributeList::AS_Keyword);
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000680}
681
Stephen Hines176edba2014-12-01 14:53:08 -0800682static bool VersionNumberSeparator(const char Separator) {
683 return (Separator == '.' || Separator == '_');
684}
685
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000686/// \brief Parse a version number.
687///
688/// version:
689/// simple-integer
690/// simple-integer ',' simple-integer
691/// simple-integer ',' simple-integer ',' simple-integer
692VersionTuple Parser::ParseVersionTuple(SourceRange &Range) {
693 Range = Tok.getLocation();
694
695 if (!Tok.is(tok::numeric_constant)) {
696 Diag(Tok, diag::err_expected_version);
Alexey Bataev8fe24752013-11-18 08:17:37 +0000697 SkipUntil(tok::comma, tok::r_paren,
698 StopAtSemi | StopBeforeMatch | StopAtCodeCompletion);
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000699 return VersionTuple();
700 }
701
702 // Parse the major (and possibly minor and subminor) versions, which
703 // are stored in the numeric constant. We utilize a quirk of the
704 // lexer, which is that it handles something like 1.2.3 as a single
705 // numeric constant, rather than two separate tokens.
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000706 SmallString<512> Buffer;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000707 Buffer.resize(Tok.getLength()+1);
708 const char *ThisTokBegin = &Buffer[0];
709
710 // Get the spelling of the token, which eliminates trigraphs, etc.
711 bool Invalid = false;
712 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin, &Invalid);
713 if (Invalid)
714 return VersionTuple();
715
716 // Parse the major version.
717 unsigned AfterMajor = 0;
718 unsigned Major = 0;
Jordan Rose3f6f51e2013-02-08 22:30:41 +0000719 while (AfterMajor < ActualLength && isDigit(ThisTokBegin[AfterMajor])) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000720 Major = Major * 10 + ThisTokBegin[AfterMajor] - '0';
721 ++AfterMajor;
722 }
723
724 if (AfterMajor == 0) {
725 Diag(Tok, diag::err_expected_version);
Alexey Bataev8fe24752013-11-18 08:17:37 +0000726 SkipUntil(tok::comma, tok::r_paren,
727 StopAtSemi | StopBeforeMatch | StopAtCodeCompletion);
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000728 return VersionTuple();
729 }
730
731 if (AfterMajor == ActualLength) {
732 ConsumeToken();
733
734 // We only had a single version component.
735 if (Major == 0) {
736 Diag(Tok, diag::err_zero_version);
737 return VersionTuple();
738 }
739
740 return VersionTuple(Major);
741 }
742
Stephen Hines176edba2014-12-01 14:53:08 -0800743 const char AfterMajorSeparator = ThisTokBegin[AfterMajor];
744 if (!VersionNumberSeparator(AfterMajorSeparator)
745 || (AfterMajor + 1 == ActualLength)) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000746 Diag(Tok, diag::err_expected_version);
Alexey Bataev8fe24752013-11-18 08:17:37 +0000747 SkipUntil(tok::comma, tok::r_paren,
748 StopAtSemi | StopBeforeMatch | StopAtCodeCompletion);
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000749 return VersionTuple();
750 }
751
752 // Parse the minor version.
753 unsigned AfterMinor = AfterMajor + 1;
754 unsigned Minor = 0;
Jordan Rose3f6f51e2013-02-08 22:30:41 +0000755 while (AfterMinor < ActualLength && isDigit(ThisTokBegin[AfterMinor])) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000756 Minor = Minor * 10 + ThisTokBegin[AfterMinor] - '0';
757 ++AfterMinor;
758 }
759
760 if (AfterMinor == ActualLength) {
761 ConsumeToken();
Chad Rosier8decdee2012-06-26 22:30:43 +0000762
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000763 // We had major.minor.
764 if (Major == 0 && Minor == 0) {
765 Diag(Tok, diag::err_zero_version);
766 return VersionTuple();
767 }
768
Stephen Hines176edba2014-12-01 14:53:08 -0800769 return VersionTuple(Major, Minor, (AfterMajorSeparator == '_'));
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000770 }
771
Stephen Hines176edba2014-12-01 14:53:08 -0800772 const char AfterMinorSeparator = ThisTokBegin[AfterMinor];
773 // If what follows is not a '.' or '_', we have a problem.
774 if (!VersionNumberSeparator(AfterMinorSeparator)) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000775 Diag(Tok, diag::err_expected_version);
Alexey Bataev8fe24752013-11-18 08:17:37 +0000776 SkipUntil(tok::comma, tok::r_paren,
777 StopAtSemi | StopBeforeMatch | StopAtCodeCompletion);
Chad Rosier8decdee2012-06-26 22:30:43 +0000778 return VersionTuple();
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000779 }
Stephen Hines176edba2014-12-01 14:53:08 -0800780
781 // Warn if separators, be it '.' or '_', do not match.
782 if (AfterMajorSeparator != AfterMinorSeparator)
783 Diag(Tok, diag::warn_expected_consistent_version_separator);
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000784
785 // Parse the subminor version.
786 unsigned AfterSubminor = AfterMinor + 1;
787 unsigned Subminor = 0;
Jordan Rose3f6f51e2013-02-08 22:30:41 +0000788 while (AfterSubminor < ActualLength && isDigit(ThisTokBegin[AfterSubminor])) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000789 Subminor = Subminor * 10 + ThisTokBegin[AfterSubminor] - '0';
790 ++AfterSubminor;
791 }
792
793 if (AfterSubminor != ActualLength) {
794 Diag(Tok, diag::err_expected_version);
Alexey Bataev8fe24752013-11-18 08:17:37 +0000795 SkipUntil(tok::comma, tok::r_paren,
796 StopAtSemi | StopBeforeMatch | StopAtCodeCompletion);
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000797 return VersionTuple();
798 }
799 ConsumeToken();
Stephen Hines176edba2014-12-01 14:53:08 -0800800 return VersionTuple(Major, Minor, Subminor, (AfterMajorSeparator == '_'));
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000801}
802
803/// \brief Parse the contents of the "availability" attribute.
804///
805/// availability-attribute:
Fariborz Jahanian006e42f2011-12-10 00:28:41 +0000806/// 'availability' '(' platform ',' version-arg-list, opt-message')'
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000807///
808/// platform:
809/// identifier
810///
811/// version-arg-list:
812/// version-arg
813/// version-arg ',' version-arg-list
814///
815/// version-arg:
816/// 'introduced' '=' version
817/// 'deprecated' '=' version
Douglas Gregor93a70672012-03-11 04:53:21 +0000818/// 'obsoleted' = version
Douglas Gregorb53e4172011-03-26 03:35:55 +0000819/// 'unavailable'
Fariborz Jahanian006e42f2011-12-10 00:28:41 +0000820/// opt-message:
821/// 'message' '=' <string>
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000822void Parser::ParseAvailabilityAttribute(IdentifierInfo &Availability,
823 SourceLocation AvailabilityLoc,
824 ParsedAttributes &attrs,
Stephen Hines176edba2014-12-01 14:53:08 -0800825 SourceLocation *endLoc,
826 IdentifierInfo *ScopeName,
827 SourceLocation ScopeLoc,
828 AttributeList::Syntax Syntax) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000829 enum { Introduced, Deprecated, Obsoleted, Unknown };
830 AvailabilityChange Changes[Unknown];
Fariborz Jahanian006e42f2011-12-10 00:28:41 +0000831 ExprResult MessageExpr;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000832
833 // Opening '('.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000834 BalancedDelimiterTracker T(*this, tok::l_paren);
835 if (T.consumeOpen()) {
Stephen Hines651f13c2014-04-23 16:59:28 -0700836 Diag(Tok, diag::err_expected) << tok::l_paren;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000837 return;
838 }
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000839
840 // Parse the platform name,
841 if (Tok.isNot(tok::identifier)) {
842 Diag(Tok, diag::err_availability_expected_platform);
Alexey Bataev8fe24752013-11-18 08:17:37 +0000843 SkipUntil(tok::r_paren, StopAtSemi);
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000844 return;
845 }
Richard Smith8edabd92013-09-03 18:01:40 +0000846 IdentifierLoc *Platform = ParseIdentifierLoc();
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000847
848 // Parse the ',' following the platform name.
Stephen Hines651f13c2014-04-23 16:59:28 -0700849 if (ExpectAndConsume(tok::comma)) {
850 SkipUntil(tok::r_paren, StopAtSemi);
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000851 return;
Stephen Hines651f13c2014-04-23 16:59:28 -0700852 }
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000853
854 // If we haven't grabbed the pointers for the identifiers
855 // "introduced", "deprecated", and "obsoleted", do so now.
856 if (!Ident_introduced) {
857 Ident_introduced = PP.getIdentifierInfo("introduced");
858 Ident_deprecated = PP.getIdentifierInfo("deprecated");
859 Ident_obsoleted = PP.getIdentifierInfo("obsoleted");
Douglas Gregorb53e4172011-03-26 03:35:55 +0000860 Ident_unavailable = PP.getIdentifierInfo("unavailable");
Fariborz Jahanian006e42f2011-12-10 00:28:41 +0000861 Ident_message = PP.getIdentifierInfo("message");
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000862 }
863
864 // Parse the set of introductions/deprecations/removals.
Douglas Gregorb53e4172011-03-26 03:35:55 +0000865 SourceLocation UnavailableLoc;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000866 do {
867 if (Tok.isNot(tok::identifier)) {
868 Diag(Tok, diag::err_availability_expected_change);
Alexey Bataev8fe24752013-11-18 08:17:37 +0000869 SkipUntil(tok::r_paren, StopAtSemi);
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000870 return;
871 }
872 IdentifierInfo *Keyword = Tok.getIdentifierInfo();
873 SourceLocation KeywordLoc = ConsumeToken();
874
Douglas Gregorb53e4172011-03-26 03:35:55 +0000875 if (Keyword == Ident_unavailable) {
876 if (UnavailableLoc.isValid()) {
877 Diag(KeywordLoc, diag::err_availability_redundant)
878 << Keyword << SourceRange(UnavailableLoc);
Chad Rosier8decdee2012-06-26 22:30:43 +0000879 }
Douglas Gregorb53e4172011-03-26 03:35:55 +0000880 UnavailableLoc = KeywordLoc;
Douglas Gregorb53e4172011-03-26 03:35:55 +0000881 continue;
Chad Rosier8decdee2012-06-26 22:30:43 +0000882 }
883
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000884 if (Tok.isNot(tok::equal)) {
Stephen Hines651f13c2014-04-23 16:59:28 -0700885 Diag(Tok, diag::err_expected_after) << Keyword << tok::equal;
Alexey Bataev8fe24752013-11-18 08:17:37 +0000886 SkipUntil(tok::r_paren, StopAtSemi);
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000887 return;
888 }
889 ConsumeToken();
Fariborz Jahanian006e42f2011-12-10 00:28:41 +0000890 if (Keyword == Ident_message) {
Stephen Hines176edba2014-12-01 14:53:08 -0800891 if (Tok.isNot(tok::string_literal)) {
Andy Gibbs97f84612012-11-17 19:16:52 +0000892 Diag(Tok, diag::err_expected_string_literal)
893 << /*Source='availability attribute'*/2;
Alexey Bataev8fe24752013-11-18 08:17:37 +0000894 SkipUntil(tok::r_paren, StopAtSemi);
Fariborz Jahanian006e42f2011-12-10 00:28:41 +0000895 return;
896 }
897 MessageExpr = ParseStringLiteralExpression();
Stephen Hines176edba2014-12-01 14:53:08 -0800898 // Also reject wide string literals.
899 if (StringLiteral *MessageStringLiteral =
900 cast_or_null<StringLiteral>(MessageExpr.get())) {
901 if (MessageStringLiteral->getCharByteWidth() != 1) {
902 Diag(MessageStringLiteral->getSourceRange().getBegin(),
903 diag::err_expected_string_literal)
904 << /*Source='availability attribute'*/ 2;
905 SkipUntil(tok::r_paren, StopAtSemi);
906 return;
907 }
908 }
Fariborz Jahanian006e42f2011-12-10 00:28:41 +0000909 break;
910 }
Chad Rosier8decdee2012-06-26 22:30:43 +0000911
Stephen Hines176edba2014-12-01 14:53:08 -0800912 // Special handling of 'NA' only when applied to introduced or
913 // deprecated.
914 if ((Keyword == Ident_introduced || Keyword == Ident_deprecated) &&
915 Tok.is(tok::identifier)) {
916 IdentifierInfo *NA = Tok.getIdentifierInfo();
917 if (NA->getName() == "NA") {
918 ConsumeToken();
919 if (Keyword == Ident_introduced)
920 UnavailableLoc = KeywordLoc;
921 continue;
922 }
923 }
924
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000925 SourceRange VersionRange;
926 VersionTuple Version = ParseVersionTuple(VersionRange);
Chad Rosier8decdee2012-06-26 22:30:43 +0000927
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000928 if (Version.empty()) {
Alexey Bataev8fe24752013-11-18 08:17:37 +0000929 SkipUntil(tok::r_paren, StopAtSemi);
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000930 return;
931 }
932
933 unsigned Index;
934 if (Keyword == Ident_introduced)
935 Index = Introduced;
936 else if (Keyword == Ident_deprecated)
937 Index = Deprecated;
938 else if (Keyword == Ident_obsoleted)
939 Index = Obsoleted;
Chad Rosier8decdee2012-06-26 22:30:43 +0000940 else
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000941 Index = Unknown;
942
943 if (Index < Unknown) {
944 if (!Changes[Index].KeywordLoc.isInvalid()) {
945 Diag(KeywordLoc, diag::err_availability_redundant)
Chad Rosier8decdee2012-06-26 22:30:43 +0000946 << Keyword
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000947 << SourceRange(Changes[Index].KeywordLoc,
948 Changes[Index].VersionRange.getEnd());
949 }
950
951 Changes[Index].KeywordLoc = KeywordLoc;
952 Changes[Index].Version = Version;
953 Changes[Index].VersionRange = VersionRange;
954 } else {
955 Diag(KeywordLoc, diag::err_availability_unknown_change)
956 << Keyword << VersionRange;
957 }
958
Stephen Hines651f13c2014-04-23 16:59:28 -0700959 } while (TryConsumeToken(tok::comma));
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000960
961 // Closing ')'.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000962 if (T.consumeClose())
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000963 return;
964
965 if (endLoc)
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000966 *endLoc = T.getCloseLocation();
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000967
Douglas Gregorb53e4172011-03-26 03:35:55 +0000968 // The 'unavailable' availability cannot be combined with any other
969 // availability changes. Make sure that hasn't happened.
970 if (UnavailableLoc.isValid()) {
971 bool Complained = false;
972 for (unsigned Index = Introduced; Index != Unknown; ++Index) {
973 if (Changes[Index].KeywordLoc.isValid()) {
974 if (!Complained) {
975 Diag(UnavailableLoc, diag::warn_availability_and_unavailable)
976 << SourceRange(Changes[Index].KeywordLoc,
977 Changes[Index].VersionRange.getEnd());
978 Complained = true;
979 }
980
981 // Clear out the availability.
982 Changes[Index] = AvailabilityChange();
983 }
984 }
985 }
986
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000987 // Record this attribute
Chad Rosier8decdee2012-06-26 22:30:43 +0000988 attrs.addNew(&Availability,
989 SourceRange(AvailabilityLoc, T.getCloseLocation()),
Stephen Hines176edba2014-12-01 14:53:08 -0800990 ScopeName, ScopeLoc,
Aaron Ballman624421f2013-08-31 01:11:41 +0000991 Platform,
John McCall0b7e6782011-03-24 11:26:52 +0000992 Changes[Introduced],
993 Changes[Deprecated],
Chad Rosier8decdee2012-06-26 22:30:43 +0000994 Changes[Obsoleted],
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700995 UnavailableLoc, MessageExpr.get(),
Stephen Hines176edba2014-12-01 14:53:08 -0800996 Syntax);
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000997}
998
Stephen Hines651f13c2014-04-23 16:59:28 -0700999/// \brief Parse the contents of the "objc_bridge_related" attribute.
1000/// objc_bridge_related '(' related_class ',' opt-class_method ',' opt-instance_method ')'
1001/// related_class:
1002/// Identifier
1003///
1004/// opt-class_method:
1005/// Identifier: | <empty>
1006///
1007/// opt-instance_method:
1008/// Identifier | <empty>
1009///
1010void Parser::ParseObjCBridgeRelatedAttribute(IdentifierInfo &ObjCBridgeRelated,
1011 SourceLocation ObjCBridgeRelatedLoc,
1012 ParsedAttributes &attrs,
Stephen Hines176edba2014-12-01 14:53:08 -08001013 SourceLocation *endLoc,
1014 IdentifierInfo *ScopeName,
1015 SourceLocation ScopeLoc,
1016 AttributeList::Syntax Syntax) {
Stephen Hines651f13c2014-04-23 16:59:28 -07001017 // Opening '('.
1018 BalancedDelimiterTracker T(*this, tok::l_paren);
1019 if (T.consumeOpen()) {
1020 Diag(Tok, diag::err_expected) << tok::l_paren;
1021 return;
1022 }
1023
1024 // Parse the related class name.
1025 if (Tok.isNot(tok::identifier)) {
1026 Diag(Tok, diag::err_objcbridge_related_expected_related_class);
1027 SkipUntil(tok::r_paren, StopAtSemi);
1028 return;
1029 }
1030 IdentifierLoc *RelatedClass = ParseIdentifierLoc();
1031 if (ExpectAndConsume(tok::comma)) {
1032 SkipUntil(tok::r_paren, StopAtSemi);
1033 return;
1034 }
1035
1036 // Parse optional class method name.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001037 IdentifierLoc *ClassMethod = nullptr;
Stephen Hines651f13c2014-04-23 16:59:28 -07001038 if (Tok.is(tok::identifier)) {
1039 ClassMethod = ParseIdentifierLoc();
1040 if (!TryConsumeToken(tok::colon)) {
1041 Diag(Tok, diag::err_objcbridge_related_selector_name);
1042 SkipUntil(tok::r_paren, StopAtSemi);
1043 return;
1044 }
1045 }
1046 if (!TryConsumeToken(tok::comma)) {
1047 if (Tok.is(tok::colon))
1048 Diag(Tok, diag::err_objcbridge_related_selector_name);
1049 else
1050 Diag(Tok, diag::err_expected) << tok::comma;
1051 SkipUntil(tok::r_paren, StopAtSemi);
1052 return;
1053 }
1054
1055 // Parse optional instance method name.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001056 IdentifierLoc *InstanceMethod = nullptr;
Stephen Hines651f13c2014-04-23 16:59:28 -07001057 if (Tok.is(tok::identifier))
1058 InstanceMethod = ParseIdentifierLoc();
1059 else if (Tok.isNot(tok::r_paren)) {
1060 Diag(Tok, diag::err_expected) << tok::r_paren;
1061 SkipUntil(tok::r_paren, StopAtSemi);
1062 return;
1063 }
1064
1065 // Closing ')'.
1066 if (T.consumeClose())
1067 return;
1068
1069 if (endLoc)
1070 *endLoc = T.getCloseLocation();
1071
1072 // Record this attribute
1073 attrs.addNew(&ObjCBridgeRelated,
1074 SourceRange(ObjCBridgeRelatedLoc, T.getCloseLocation()),
Stephen Hines176edba2014-12-01 14:53:08 -08001075 ScopeName, ScopeLoc,
Stephen Hines651f13c2014-04-23 16:59:28 -07001076 RelatedClass,
1077 ClassMethod,
1078 InstanceMethod,
Stephen Hines176edba2014-12-01 14:53:08 -08001079 Syntax);
Stephen Hines651f13c2014-04-23 16:59:28 -07001080}
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001081
Bill Wendlingad017fa2012-12-20 19:22:21 +00001082// Late Parsed Attributes:
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001083// See other examples of late parsing in lib/Parse/ParseCXXInlineMethods
1084
1085void Parser::LateParsedDeclaration::ParseLexedAttributes() {}
1086
1087void Parser::LateParsedClass::ParseLexedAttributes() {
1088 Self->ParseLexedAttributes(*Class);
1089}
1090
1091void Parser::LateParsedAttribute::ParseLexedAttributes() {
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001092 Self->ParseLexedAttribute(*this, true, false);
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001093}
1094
1095/// Wrapper class which calls ParseLexedAttribute, after setting up the
1096/// scope appropriately.
1097void Parser::ParseLexedAttributes(ParsingClass &Class) {
1098 // Deal with templates
1099 // FIXME: Test cases to make sure this does the right thing for templates.
1100 bool HasTemplateScope = !Class.TopLevelClass && Class.TemplateScope;
1101 ParseScope ClassTemplateScope(this, Scope::TemplateParamScope,
1102 HasTemplateScope);
1103 if (HasTemplateScope)
1104 Actions.ActOnReenterTemplateScope(getCurScope(), Class.TagOrTemplate);
1105
Douglas Gregorcefc3af2012-04-16 07:05:22 +00001106 // Set or update the scope flags.
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001107 bool AlreadyHasClassScope = Class.TopLevelClass;
Douglas Gregorcefc3af2012-04-16 07:05:22 +00001108 unsigned ScopeFlags = Scope::ClassScope|Scope::DeclScope;
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001109 ParseScope ClassScope(this, ScopeFlags, !AlreadyHasClassScope);
1110 ParseScopeFlags ClassScopeFlags(this, ScopeFlags, AlreadyHasClassScope);
1111
DeLesley Hutchinscf2fa2f2012-04-06 15:10:17 +00001112 // Enter the scope of nested classes
1113 if (!AlreadyHasClassScope)
1114 Actions.ActOnStartDelayedMemberDeclarations(getCurScope(),
1115 Class.TagOrTemplate);
Benjamin Kramer268efba2012-05-17 12:01:52 +00001116 if (!Class.LateParsedDeclarations.empty()) {
Douglas Gregorcefc3af2012-04-16 07:05:22 +00001117 for (unsigned i = 0, ni = Class.LateParsedDeclarations.size(); i < ni; ++i){
1118 Class.LateParsedDeclarations[i]->ParseLexedAttributes();
1119 }
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001120 }
Chad Rosier8decdee2012-06-26 22:30:43 +00001121
DeLesley Hutchinscf2fa2f2012-04-06 15:10:17 +00001122 if (!AlreadyHasClassScope)
1123 Actions.ActOnFinishDelayedMemberDeclarations(getCurScope(),
1124 Class.TagOrTemplate);
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001125}
1126
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001127
1128/// \brief Parse all attributes in LAs, and attach them to Decl D.
1129void Parser::ParseLexedAttributeList(LateParsedAttrList &LAs, Decl *D,
1130 bool EnterScope, bool OnDefinition) {
DeLesley Hutchins161db022012-11-02 21:44:32 +00001131 assert(LAs.parseSoon() &&
1132 "Attribute list should be marked for immediate parsing.");
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001133 for (unsigned i = 0, ni = LAs.size(); i < ni; ++i) {
DeLesley Hutchins95526a42012-08-15 22:41:04 +00001134 if (D)
1135 LAs[i]->addDecl(D);
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001136 ParseLexedAttribute(*LAs[i], EnterScope, OnDefinition);
Benjamin Kramerd306cf72012-04-14 12:44:47 +00001137 delete LAs[i];
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001138 }
1139 LAs.clear();
1140}
1141
1142
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001143/// \brief Finish parsing an attribute for which parsing was delayed.
1144/// This will be called at the end of parsing a class declaration
1145/// for each LateParsedAttribute. We consume the saved tokens and
Chad Rosier8decdee2012-06-26 22:30:43 +00001146/// create an attribute with the arguments filled in. We add this
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001147/// to the Attribute list for the decl.
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001148void Parser::ParseLexedAttribute(LateParsedAttribute &LA,
1149 bool EnterScope, bool OnDefinition) {
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001150 // Create a fake EOF so that attribute parsing won't go off the end of the
1151 // attribute.
1152 Token AttrEnd;
1153 AttrEnd.startToken();
1154 AttrEnd.setKind(tok::eof);
1155 AttrEnd.setLocation(Tok.getLocation());
1156 AttrEnd.setEofData(LA.Toks.data());
1157 LA.Toks.push_back(AttrEnd);
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001158
1159 // Append the current token at the end of the new token stream so that it
1160 // doesn't get lost.
1161 LA.Toks.push_back(Tok);
1162 PP.EnterTokenStream(LA.Toks.data(), LA.Toks.size(), true, false);
1163 // Consume the previously pushed token.
Argyrios Kyrtzidisab2d09b2013-03-27 23:58:17 +00001164 ConsumeAnyToken(/*ConsumeCodeCompletionTok=*/true);
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001165
1166 ParsedAttributes Attrs(AttrFactory);
1167 SourceLocation endLoc;
1168
DeLesley Hutchinsd30fb9e2012-08-20 21:32:18 +00001169 if (LA.Decls.size() > 0) {
DeLesley Hutchins2287c5e2012-03-02 22:12:59 +00001170 Decl *D = LA.Decls[0];
DeLesley Hutchinsd30fb9e2012-08-20 21:32:18 +00001171 NamedDecl *ND = dyn_cast<NamedDecl>(D);
1172 RecordDecl *RD = dyn_cast_or_null<RecordDecl>(D->getDeclContext());
Caitlin Sadowskied9d84a2011-09-08 17:42:31 +00001173
DeLesley Hutchinsd30fb9e2012-08-20 21:32:18 +00001174 // Allow 'this' within late-parsed attributes.
Richard Smithcafeb942013-06-07 02:33:37 +00001175 Sema::CXXThisScopeRAII ThisScope(Actions, RD, /*TypeQuals=*/0,
1176 ND && ND->isCXXInstanceMember());
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001177
DeLesley Hutchinsd30fb9e2012-08-20 21:32:18 +00001178 if (LA.Decls.size() == 1) {
1179 // If the Decl is templatized, add template parameters to scope.
1180 bool HasTemplateScope = EnterScope && D->isTemplateDecl();
1181 ParseScope TempScope(this, Scope::TemplateParamScope, HasTemplateScope);
1182 if (HasTemplateScope)
1183 Actions.ActOnReenterTemplateScope(Actions.CurScope, D);
DeLesley Hutchins2287c5e2012-03-02 22:12:59 +00001184
DeLesley Hutchinsd30fb9e2012-08-20 21:32:18 +00001185 // If the Decl is on a function, add function parameters to the scope.
1186 bool HasFunScope = EnterScope && D->isFunctionOrFunctionTemplate();
1187 ParseScope FnScope(this, Scope::FnScope|Scope::DeclScope, HasFunScope);
1188 if (HasFunScope)
1189 Actions.ActOnReenterFunctionContext(Actions.CurScope, D);
DeLesley Hutchins2287c5e2012-03-02 22:12:59 +00001190
Michael Han6880f492012-10-03 01:56:22 +00001191 ParseGNUAttributeArgs(&LA.AttrName, LA.AttrNameLoc, Attrs, &endLoc,
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001192 nullptr, SourceLocation(), AttributeList::AS_GNU,
1193 nullptr);
DeLesley Hutchinsd30fb9e2012-08-20 21:32:18 +00001194
1195 if (HasFunScope) {
1196 Actions.ActOnExitFunctionContext();
1197 FnScope.Exit(); // Pop scope, and remove Decls from IdResolver
1198 }
1199 if (HasTemplateScope) {
1200 TempScope.Exit();
1201 }
1202 } else {
1203 // If there are multiple decls, then the decl cannot be within the
1204 // function scope.
Michael Han6880f492012-10-03 01:56:22 +00001205 ParseGNUAttributeArgs(&LA.AttrName, LA.AttrNameLoc, Attrs, &endLoc,
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001206 nullptr, SourceLocation(), AttributeList::AS_GNU,
1207 nullptr);
DeLesley Hutchins2287c5e2012-03-02 22:12:59 +00001208 }
DeLesley Hutchins7ec419a2012-03-02 22:29:50 +00001209 } else {
1210 Diag(Tok, diag::warn_attribute_no_decl) << LA.AttrName.getName();
Caitlin Sadowskied9d84a2011-09-08 17:42:31 +00001211 }
1212
Stephen Hines651f13c2014-04-23 16:59:28 -07001213 const AttributeList *AL = Attrs.getList();
1214 if (OnDefinition && AL && !AL->isCXX11Attribute() &&
1215 AL->isKnownToGCC())
1216 Diag(Tok, diag::warn_attribute_on_function_definition)
1217 << &LA.AttrName;
1218
1219 for (unsigned i = 0, ni = LA.Decls.size(); i < ni; ++i)
DeLesley Hutchins2287c5e2012-03-02 22:12:59 +00001220 Actions.ActOnFinishDelayedAttribute(getCurScope(), LA.Decls[i], Attrs);
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001221
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001222 // Due to a parsing error, we either went over the cached tokens or
1223 // there are still cached tokens left, so we skip the leftover tokens.
1224 while (Tok.isNot(tok::eof))
1225 ConsumeAnyToken();
1226
1227 if (Tok.is(tok::eof) && Tok.getEofData() == AttrEnd.getEofData())
1228 ConsumeAnyToken();
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001229}
1230
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00001231void Parser::ParseTypeTagForDatatypeAttribute(IdentifierInfo &AttrName,
1232 SourceLocation AttrNameLoc,
1233 ParsedAttributes &Attrs,
Stephen Hines176edba2014-12-01 14:53:08 -08001234 SourceLocation *EndLoc,
1235 IdentifierInfo *ScopeName,
1236 SourceLocation ScopeLoc,
1237 AttributeList::Syntax Syntax) {
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00001238 assert(Tok.is(tok::l_paren) && "Attribute arg list not starting with '('");
1239
1240 BalancedDelimiterTracker T(*this, tok::l_paren);
1241 T.consumeOpen();
1242
1243 if (Tok.isNot(tok::identifier)) {
Stephen Hines651f13c2014-04-23 16:59:28 -07001244 Diag(Tok, diag::err_expected) << tok::identifier;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00001245 T.skipToEnd();
1246 return;
1247 }
Richard Smith8edabd92013-09-03 18:01:40 +00001248 IdentifierLoc *ArgumentKind = ParseIdentifierLoc();
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00001249
Stephen Hines651f13c2014-04-23 16:59:28 -07001250 if (ExpectAndConsume(tok::comma)) {
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00001251 T.skipToEnd();
1252 return;
1253 }
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00001254
1255 SourceRange MatchingCTypeRange;
1256 TypeResult MatchingCType = ParseTypeName(&MatchingCTypeRange);
1257 if (MatchingCType.isInvalid()) {
1258 T.skipToEnd();
1259 return;
1260 }
1261
1262 bool LayoutCompatible = false;
1263 bool MustBeNull = false;
Stephen Hines651f13c2014-04-23 16:59:28 -07001264 while (TryConsumeToken(tok::comma)) {
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00001265 if (Tok.isNot(tok::identifier)) {
Stephen Hines651f13c2014-04-23 16:59:28 -07001266 Diag(Tok, diag::err_expected) << tok::identifier;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00001267 T.skipToEnd();
1268 return;
1269 }
1270 IdentifierInfo *Flag = Tok.getIdentifierInfo();
1271 if (Flag->isStr("layout_compatible"))
1272 LayoutCompatible = true;
1273 else if (Flag->isStr("must_be_null"))
1274 MustBeNull = true;
1275 else {
1276 Diag(Tok, diag::err_type_safety_unknown_flag) << Flag;
1277 T.skipToEnd();
1278 return;
1279 }
1280 ConsumeToken(); // consume flag
1281 }
1282
1283 if (!T.consumeClose()) {
Stephen Hines176edba2014-12-01 14:53:08 -08001284 Attrs.addNewTypeTagForDatatype(&AttrName, AttrNameLoc, ScopeName, ScopeLoc,
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001285 ArgumentKind, MatchingCType.get(),
Stephen Hines176edba2014-12-01 14:53:08 -08001286 LayoutCompatible, MustBeNull, Syntax);
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00001287 }
1288
1289 if (EndLoc)
1290 *EndLoc = T.getCloseLocation();
1291}
1292
Richard Smith6ee326a2012-04-10 01:32:12 +00001293/// DiagnoseProhibitedCXX11Attribute - We have found the opening square brackets
1294/// of a C++11 attribute-specifier in a location where an attribute is not
1295/// permitted. By C++11 [dcl.attr.grammar]p6, this is ill-formed. Diagnose this
1296/// situation.
1297///
1298/// \return \c true if we skipped an attribute-like chunk of tokens, \c false if
1299/// this doesn't appear to actually be an attribute-specifier, and the caller
1300/// should try to parse it.
1301bool Parser::DiagnoseProhibitedCXX11Attribute() {
1302 assert(Tok.is(tok::l_square) && NextToken().is(tok::l_square));
1303
1304 switch (isCXX11AttributeSpecifier(/*Disambiguate*/true)) {
1305 case CAK_NotAttributeSpecifier:
1306 // No diagnostic: we're in Obj-C++11 and this is not actually an attribute.
1307 return false;
1308
1309 case CAK_InvalidAttributeSpecifier:
1310 Diag(Tok.getLocation(), diag::err_l_square_l_square_not_attribute);
1311 return false;
1312
1313 case CAK_AttributeSpecifier:
1314 // Parse and discard the attributes.
1315 SourceLocation BeginLoc = ConsumeBracket();
1316 ConsumeBracket();
Alexey Bataev8fe24752013-11-18 08:17:37 +00001317 SkipUntil(tok::r_square);
Richard Smith6ee326a2012-04-10 01:32:12 +00001318 assert(Tok.is(tok::r_square) && "isCXX11AttributeSpecifier lied");
1319 SourceLocation EndLoc = ConsumeBracket();
1320 Diag(BeginLoc, diag::err_attributes_not_allowed)
1321 << SourceRange(BeginLoc, EndLoc);
1322 return true;
1323 }
Chandler Carruth2c6dbd72012-04-10 16:03:08 +00001324 llvm_unreachable("All cases handled above.");
Richard Smith6ee326a2012-04-10 01:32:12 +00001325}
1326
Richard Smith975d52c2013-02-20 01:17:14 +00001327/// \brief We have found the opening square brackets of a C++11
1328/// attribute-specifier in a location where an attribute is not permitted, but
1329/// we know where the attributes ought to be written. Parse them anyway, and
1330/// provide a fixit moving them to the right place.
Richard Smith05321402013-02-19 23:47:15 +00001331void Parser::DiagnoseMisplacedCXX11Attribute(ParsedAttributesWithRange &Attrs,
1332 SourceLocation CorrectLocation) {
1333 assert((Tok.is(tok::l_square) && NextToken().is(tok::l_square)) ||
1334 Tok.is(tok::kw_alignas));
1335
1336 // Consume the attributes.
1337 SourceLocation Loc = Tok.getLocation();
1338 ParseCXX11Attributes(Attrs);
1339 CharSourceRange AttrRange(SourceRange(Loc, Attrs.Range.getEnd()), true);
1340
1341 Diag(Loc, diag::err_attributes_not_allowed)
1342 << FixItHint::CreateInsertionFromRange(CorrectLocation, AttrRange)
1343 << FixItHint::CreateRemoval(AttrRange);
1344}
1345
John McCall7f040a92010-12-24 02:08:15 +00001346void Parser::DiagnoseProhibitedAttributes(ParsedAttributesWithRange &attrs) {
1347 Diag(attrs.Range.getBegin(), diag::err_attributes_not_allowed)
1348 << attrs.Range;
Dawn Perchik52fc3142010-09-03 01:29:35 +00001349}
1350
Michael Hanf64231e2012-11-06 19:34:54 +00001351void Parser::ProhibitCXX11Attributes(ParsedAttributesWithRange &attrs) {
1352 AttributeList *AttrList = attrs.getList();
1353 while (AttrList) {
Richard Smith4e24f0f2013-01-02 12:01:23 +00001354 if (AttrList->isCXX11Attribute()) {
Richard Smithd03de6a2013-01-29 10:02:16 +00001355 Diag(AttrList->getLoc(), diag::err_attribute_not_type_attr)
Michael Hanf64231e2012-11-06 19:34:54 +00001356 << AttrList->getName();
1357 AttrList->setInvalid();
1358 }
1359 AttrList = AttrList->getNext();
1360 }
1361}
1362
Reid Spencer5f016e22007-07-11 17:01:13 +00001363/// ParseDeclaration - Parse a full 'declaration', which consists of
1364/// declaration-specifiers, some number of declarators, and a semicolon.
Chris Lattner97144fc2009-04-02 04:16:50 +00001365/// 'Context' should be a Declarator::TheContext value. This returns the
1366/// location of the semicolon in DeclEnd.
Chris Lattner8f08cb72007-08-25 06:57:03 +00001367///
1368/// declaration: [C99 6.7]
1369/// block-declaration ->
1370/// simple-declaration
1371/// others [FIXME]
Douglas Gregoradcac882008-12-01 23:54:00 +00001372/// [C++] template-declaration
Chris Lattner8f08cb72007-08-25 06:57:03 +00001373/// [C++] namespace-definition
Douglas Gregorf780abc2008-12-30 03:27:21 +00001374/// [C++] using-directive
Douglas Gregord7f37bf2009-06-22 23:06:13 +00001375/// [C++] using-declaration
Richard Smith534986f2012-04-14 00:33:13 +00001376/// [C++11/C11] static_assert-declaration
Chris Lattner8f08cb72007-08-25 06:57:03 +00001377/// others... [FIXME]
1378///
Stephen Hines176edba2014-12-01 14:53:08 -08001379Parser::DeclGroupPtrTy Parser::ParseDeclaration(unsigned Context,
Sean Huntbbd37c62009-11-21 08:43:09 +00001380 SourceLocation &DeclEnd,
John McCall7f040a92010-12-24 02:08:15 +00001381 ParsedAttributesWithRange &attrs) {
Argyrios Kyrtzidis36d36802010-06-17 10:52:18 +00001382 ParenBraceBracketBalancer BalancerRAIIObj(*this);
Fariborz Jahaniane8cff362011-08-30 17:10:52 +00001383 // Must temporarily exit the objective-c container scope for
1384 // parsing c none objective-c decls.
1385 ObjCDeclContextSwitch ObjCDC(*this);
Chad Rosier8decdee2012-06-26 22:30:43 +00001386
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001387 Decl *SingleDecl = nullptr;
1388 Decl *OwnedType = nullptr;
Chris Lattner8f08cb72007-08-25 06:57:03 +00001389 switch (Tok.getKind()) {
Douglas Gregoradcac882008-12-01 23:54:00 +00001390 case tok::kw_template:
Douglas Gregor1426e532009-05-12 21:31:51 +00001391 case tok::kw_export:
John McCall7f040a92010-12-24 02:08:15 +00001392 ProhibitAttributes(attrs);
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001393 SingleDecl = ParseDeclarationStartingWithTemplate(Context, DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +00001394 break;
Sebastian Redld078e642010-08-27 23:12:46 +00001395 case tok::kw_inline:
Sebastian Redl88e64ca2010-08-31 00:36:45 +00001396 // Could be the start of an inline namespace. Allowed as an ext in C++03.
David Blaikie4e4d0842012-03-11 07:00:24 +00001397 if (getLangOpts().CPlusPlus && NextToken().is(tok::kw_namespace)) {
John McCall7f040a92010-12-24 02:08:15 +00001398 ProhibitAttributes(attrs);
Sebastian Redld078e642010-08-27 23:12:46 +00001399 SourceLocation InlineLoc = ConsumeToken();
1400 SingleDecl = ParseNamespace(Context, DeclEnd, InlineLoc);
1401 break;
1402 }
Stephen Hines176edba2014-12-01 14:53:08 -08001403 return ParseSimpleDeclaration(Context, DeclEnd, attrs,
Fariborz Jahanianc5be7b02010-09-28 20:42:35 +00001404 true);
Chris Lattner8f08cb72007-08-25 06:57:03 +00001405 case tok::kw_namespace:
John McCall7f040a92010-12-24 02:08:15 +00001406 ProhibitAttributes(attrs);
Chris Lattner97144fc2009-04-02 04:16:50 +00001407 SingleDecl = ParseNamespace(Context, DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +00001408 break;
Douglas Gregorf780abc2008-12-30 03:27:21 +00001409 case tok::kw_using:
John McCall78b81052010-11-10 02:40:36 +00001410 SingleDecl = ParseUsingDirectiveOrDeclaration(Context, ParsedTemplateInfo(),
Richard Smithc89edf52011-07-01 19:46:12 +00001411 DeclEnd, attrs, &OwnedType);
Chris Lattner682bf922009-03-29 16:50:03 +00001412 break;
Anders Carlsson511d7ab2009-03-11 16:27:10 +00001413 case tok::kw_static_assert:
Peter Collingbournec6eb44b2011-04-15 00:35:57 +00001414 case tok::kw__Static_assert:
John McCall7f040a92010-12-24 02:08:15 +00001415 ProhibitAttributes(attrs);
Chris Lattner97144fc2009-04-02 04:16:50 +00001416 SingleDecl = ParseStaticAssertDeclaration(DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +00001417 break;
Chris Lattner8f08cb72007-08-25 06:57:03 +00001418 default:
Stephen Hines176edba2014-12-01 14:53:08 -08001419 return ParseSimpleDeclaration(Context, DeclEnd, attrs, true);
Chris Lattner8f08cb72007-08-25 06:57:03 +00001420 }
Chad Rosier8decdee2012-06-26 22:30:43 +00001421
Chris Lattner682bf922009-03-29 16:50:03 +00001422 // This routine returns a DeclGroup, if the thing we parsed only contains a
Richard Smithc89edf52011-07-01 19:46:12 +00001423 // single decl, convert it now. Alias declarations can also declare a type;
1424 // include that too if it is present.
1425 return Actions.ConvertDeclToDeclGroup(SingleDecl, OwnedType);
Chris Lattner8f08cb72007-08-25 06:57:03 +00001426}
1427
1428/// simple-declaration: [C99 6.7: declaration] [C++ 7p1: dcl.dcl]
1429/// declaration-specifiers init-declarator-list[opt] ';'
Sean Hunt2edf0a22012-06-23 05:07:58 +00001430/// [C++11] attribute-specifier-seq decl-specifier-seq[opt]
1431/// init-declarator-list ';'
Chris Lattner8f08cb72007-08-25 06:57:03 +00001432///[C90/C++]init-declarator-list ';' [TODO]
1433/// [OMP] threadprivate-directive [TODO]
Chris Lattnercd147752009-03-29 17:27:48 +00001434///
Sean Hunt2edf0a22012-06-23 05:07:58 +00001435/// for-range-declaration: [C++11 6.5p1: stmt.ranged]
Richard Smithad762fc2011-04-14 22:09:26 +00001436/// attribute-specifier-seq[opt] type-specifier-seq declarator
1437///
Chris Lattnercd147752009-03-29 17:27:48 +00001438/// If RequireSemi is false, this does not check for a ';' at the end of the
Chris Lattner5c5db552010-04-05 18:18:31 +00001439/// declaration. If it is true, it checks for and eats it.
Richard Smithad762fc2011-04-14 22:09:26 +00001440///
1441/// If FRI is non-null, we might be parsing a for-range-declaration instead
1442/// of a simple-declaration. If we find that we are, we also parse the
1443/// for-range-initializer, and place it here.
Sean Hunt2edf0a22012-06-23 05:07:58 +00001444Parser::DeclGroupPtrTy
Stephen Hines176edba2014-12-01 14:53:08 -08001445Parser::ParseSimpleDeclaration(unsigned Context,
Sean Hunt2edf0a22012-06-23 05:07:58 +00001446 SourceLocation &DeclEnd,
Richard Smith68ea3ae2013-02-22 09:06:26 +00001447 ParsedAttributesWithRange &Attrs,
Sean Hunt2edf0a22012-06-23 05:07:58 +00001448 bool RequireSemi, ForRangeInit *FRI) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001449 // Parse the common declaration-specifiers piece.
John McCall54abf7d2009-11-04 02:18:39 +00001450 ParsingDeclSpec DS(*this);
Douglas Gregor312eadb2011-04-24 05:37:28 +00001451
Bill Wendlingf0cc19f2013-11-19 22:56:43 +00001452 DeclSpecContext DSContext = getDeclSpecContextFromDeclaratorContext(Context);
1453 ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS_none, DSContext);
1454
1455 // If we had a free-standing type definition with a missing semicolon, we
1456 // may get this far before the problem becomes obvious.
1457 if (DS.hasTagDefinition() &&
1458 DiagnoseMissingSemiAfterTagDefinition(DS, AS_none, DSContext))
1459 return DeclGroupPtrTy();
Abramo Bagnara06284c12012-01-07 10:52:36 +00001460
Reid Spencer5f016e22007-07-11 17:01:13 +00001461 // C99 6.7.2.3p6: Handle "struct-or-union identifier;", "enum { X };"
1462 // declaration-specifiers init-declarator-list[opt] ';'
Chris Lattner04d66662007-10-09 17:33:22 +00001463 if (Tok.is(tok::semi)) {
Richard Smith68ea3ae2013-02-22 09:06:26 +00001464 ProhibitAttributes(Attrs);
Argyrios Kyrtzidis5641b0d2012-05-16 23:49:15 +00001465 DeclEnd = Tok.getLocation();
Chris Lattner5c5db552010-04-05 18:18:31 +00001466 if (RequireSemi) ConsumeToken();
John McCalld226f652010-08-21 09:40:31 +00001467 Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS_none,
Douglas Gregor312eadb2011-04-24 05:37:28 +00001468 DS);
John McCall54abf7d2009-11-04 02:18:39 +00001469 DS.complete(TheDecl);
Chris Lattner682bf922009-03-29 16:50:03 +00001470 return Actions.ConvertDeclToDeclGroup(TheDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +00001471 }
Chad Rosier8decdee2012-06-26 22:30:43 +00001472
Richard Smith68ea3ae2013-02-22 09:06:26 +00001473 DS.takeAttributesFrom(Attrs);
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001474 return ParseDeclGroup(DS, Context, &DeclEnd, FRI);
John McCalld8ac0572009-11-03 19:26:08 +00001475}
Mike Stump1eb44332009-09-09 15:08:12 +00001476
Richard Smith0706df42011-10-19 21:33:05 +00001477/// Returns true if this might be the start of a declarator, or a common typo
1478/// for a declarator.
1479bool Parser::MightBeDeclarator(unsigned Context) {
1480 switch (Tok.getKind()) {
1481 case tok::annot_cxxscope:
1482 case tok::annot_template_id:
1483 case tok::caret:
1484 case tok::code_completion:
1485 case tok::coloncolon:
1486 case tok::ellipsis:
1487 case tok::kw___attribute:
1488 case tok::kw_operator:
1489 case tok::l_paren:
1490 case tok::star:
1491 return true;
1492
1493 case tok::amp:
1494 case tok::ampamp:
David Blaikie4e4d0842012-03-11 07:00:24 +00001495 return getLangOpts().CPlusPlus;
Richard Smith0706df42011-10-19 21:33:05 +00001496
Richard Smith1c94c162012-01-09 22:31:44 +00001497 case tok::l_square: // Might be an attribute on an unnamed bit-field.
Richard Smith80ad52f2013-01-02 11:42:31 +00001498 return Context == Declarator::MemberContext && getLangOpts().CPlusPlus11 &&
Richard Smith1c94c162012-01-09 22:31:44 +00001499 NextToken().is(tok::l_square);
1500
1501 case tok::colon: // Might be a typo for '::' or an unnamed bit-field.
David Blaikie4e4d0842012-03-11 07:00:24 +00001502 return Context == Declarator::MemberContext || getLangOpts().CPlusPlus;
Richard Smith1c94c162012-01-09 22:31:44 +00001503
Richard Smith0706df42011-10-19 21:33:05 +00001504 case tok::identifier:
1505 switch (NextToken().getKind()) {
1506 case tok::code_completion:
1507 case tok::coloncolon:
1508 case tok::comma:
1509 case tok::equal:
1510 case tok::equalequal: // Might be a typo for '='.
1511 case tok::kw_alignas:
1512 case tok::kw_asm:
1513 case tok::kw___attribute:
1514 case tok::l_brace:
1515 case tok::l_paren:
1516 case tok::l_square:
1517 case tok::less:
1518 case tok::r_brace:
1519 case tok::r_paren:
1520 case tok::r_square:
1521 case tok::semi:
1522 return true;
1523
1524 case tok::colon:
1525 // At namespace scope, 'identifier:' is probably a typo for 'identifier::'
Richard Smith1c94c162012-01-09 22:31:44 +00001526 // and in block scope it's probably a label. Inside a class definition,
1527 // this is a bit-field.
1528 return Context == Declarator::MemberContext ||
David Blaikie4e4d0842012-03-11 07:00:24 +00001529 (getLangOpts().CPlusPlus && Context == Declarator::FileContext);
Richard Smith1c94c162012-01-09 22:31:44 +00001530
1531 case tok::identifier: // Possible virt-specifier.
Richard Smith4e24f0f2013-01-02 12:01:23 +00001532 return getLangOpts().CPlusPlus11 && isCXX11VirtSpecifier(NextToken());
Richard Smith0706df42011-10-19 21:33:05 +00001533
1534 default:
1535 return false;
1536 }
1537
1538 default:
1539 return false;
1540 }
1541}
1542
Richard Smith994d73f2012-04-11 20:59:20 +00001543/// Skip until we reach something which seems like a sensible place to pick
1544/// up parsing after a malformed declaration. This will sometimes stop sooner
1545/// than SkipUntil(tok::r_brace) would, but will never stop later.
1546void Parser::SkipMalformedDecl() {
1547 while (true) {
1548 switch (Tok.getKind()) {
1549 case tok::l_brace:
1550 // Skip until matching }, then stop. We've probably skipped over
1551 // a malformed class or function definition or similar.
1552 ConsumeBrace();
Alexey Bataev8fe24752013-11-18 08:17:37 +00001553 SkipUntil(tok::r_brace);
Richard Smith994d73f2012-04-11 20:59:20 +00001554 if (Tok.is(tok::comma) || Tok.is(tok::l_brace) || Tok.is(tok::kw_try)) {
1555 // This declaration isn't over yet. Keep skipping.
1556 continue;
1557 }
Stephen Hines651f13c2014-04-23 16:59:28 -07001558 TryConsumeToken(tok::semi);
Richard Smith994d73f2012-04-11 20:59:20 +00001559 return;
1560
1561 case tok::l_square:
1562 ConsumeBracket();
Alexey Bataev8fe24752013-11-18 08:17:37 +00001563 SkipUntil(tok::r_square);
Richard Smith994d73f2012-04-11 20:59:20 +00001564 continue;
1565
1566 case tok::l_paren:
1567 ConsumeParen();
Alexey Bataev8fe24752013-11-18 08:17:37 +00001568 SkipUntil(tok::r_paren);
Richard Smith994d73f2012-04-11 20:59:20 +00001569 continue;
1570
1571 case tok::r_brace:
1572 return;
1573
1574 case tok::semi:
1575 ConsumeToken();
1576 return;
1577
1578 case tok::kw_inline:
1579 // 'inline namespace' at the start of a line is almost certainly
Jordan Rose94f29f42012-07-09 16:54:53 +00001580 // a good place to pick back up parsing, except in an Objective-C
1581 // @interface context.
1582 if (Tok.isAtStartOfLine() && NextToken().is(tok::kw_namespace) &&
1583 (!ParsingInObjCContainer || CurParsedObjCImpl))
Richard Smith994d73f2012-04-11 20:59:20 +00001584 return;
1585 break;
1586
1587 case tok::kw_namespace:
1588 // 'namespace' at the start of a line is almost certainly a good
Jordan Rose94f29f42012-07-09 16:54:53 +00001589 // place to pick back up parsing, except in an Objective-C
1590 // @interface context.
1591 if (Tok.isAtStartOfLine() &&
1592 (!ParsingInObjCContainer || CurParsedObjCImpl))
1593 return;
1594 break;
1595
1596 case tok::at:
1597 // @end is very much like } in Objective-C contexts.
1598 if (NextToken().isObjCAtKeyword(tok::objc_end) &&
1599 ParsingInObjCContainer)
1600 return;
1601 break;
1602
1603 case tok::minus:
1604 case tok::plus:
1605 // - and + probably start new method declarations in Objective-C contexts.
1606 if (Tok.isAtStartOfLine() && ParsingInObjCContainer)
Richard Smith994d73f2012-04-11 20:59:20 +00001607 return;
1608 break;
1609
1610 case tok::eof:
Stephen Hines651f13c2014-04-23 16:59:28 -07001611 case tok::annot_module_begin:
1612 case tok::annot_module_end:
1613 case tok::annot_module_include:
Richard Smith994d73f2012-04-11 20:59:20 +00001614 return;
1615
1616 default:
1617 break;
1618 }
1619
1620 ConsumeAnyToken();
1621 }
1622}
1623
John McCalld8ac0572009-11-03 19:26:08 +00001624/// ParseDeclGroup - Having concluded that this is either a function
1625/// definition or a group of object declarations, actually parse the
1626/// result.
John McCall54abf7d2009-11-04 02:18:39 +00001627Parser::DeclGroupPtrTy Parser::ParseDeclGroup(ParsingDeclSpec &DS,
1628 unsigned Context,
Richard Smithad762fc2011-04-14 22:09:26 +00001629 SourceLocation *DeclEnd,
1630 ForRangeInit *FRI) {
John McCalld8ac0572009-11-03 19:26:08 +00001631 // Parse the first declarator.
John McCall54abf7d2009-11-04 02:18:39 +00001632 ParsingDeclarator D(*this, DS, static_cast<Declarator::TheContext>(Context));
John McCalld8ac0572009-11-03 19:26:08 +00001633 ParseDeclarator(D);
Chris Lattnercd147752009-03-29 17:27:48 +00001634
John McCalld8ac0572009-11-03 19:26:08 +00001635 // Bail out if the first declarator didn't seem well-formed.
1636 if (!D.hasName() && !D.mayOmitIdentifier()) {
Richard Smith994d73f2012-04-11 20:59:20 +00001637 SkipMalformedDecl();
John McCalld8ac0572009-11-03 19:26:08 +00001638 return DeclGroupPtrTy();
Chris Lattner23c4b182009-03-29 17:18:04 +00001639 }
Mike Stump1eb44332009-09-09 15:08:12 +00001640
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001641 // Save late-parsed attributes for now; they need to be parsed in the
1642 // appropriate function scope after the function Decl has been constructed.
DeLesley Hutchins161db022012-11-02 21:44:32 +00001643 // These will be parsed in ParseFunctionDefinition or ParseLexedAttrList.
1644 LateParsedAttrList LateParsedAttrs(true);
Stephen Hines176edba2014-12-01 14:53:08 -08001645 if (D.isFunctionDeclarator()) {
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001646 MaybeParseGNUAttributes(D, &LateParsedAttrs);
1647
Stephen Hines176edba2014-12-01 14:53:08 -08001648 // The _Noreturn keyword can't appear here, unlike the GNU noreturn
1649 // attribute. If we find the keyword here, tell the user to put it
1650 // at the start instead.
1651 if (Tok.is(tok::kw__Noreturn)) {
1652 SourceLocation Loc = ConsumeToken();
1653 const char *PrevSpec;
1654 unsigned DiagID;
1655
1656 // We can offer a fixit if it's valid to mark this function as _Noreturn
1657 // and we don't have any other declarators in this declaration.
1658 bool Fixit = !DS.setFunctionSpecNoreturn(Loc, PrevSpec, DiagID);
1659 MaybeParseGNUAttributes(D, &LateParsedAttrs);
1660 Fixit &= Tok.is(tok::semi) || Tok.is(tok::l_brace) || Tok.is(tok::kw_try);
1661
1662 Diag(Loc, diag::err_c11_noreturn_misplaced)
1663 << (Fixit ? FixItHint::CreateRemoval(Loc) : FixItHint())
1664 << (Fixit ? FixItHint::CreateInsertion(D.getLocStart(), "_Noreturn ")
1665 : FixItHint());
1666 }
1667 }
1668
Chris Lattnerc82daef2010-07-11 22:24:20 +00001669 // Check to see if we have a function *definition* which must have a body.
Douglas Gregorb004a8e2013-04-16 16:01:32 +00001670 if (D.isFunctionDeclarator() &&
Chris Lattnerc82daef2010-07-11 22:24:20 +00001671 // Look at the next token to make sure that this isn't a function
1672 // declaration. We have to check this because __attribute__ might be the
1673 // start of a function definition in GCC-extended K&R C.
Fariborz Jahanianbe1d4ec2012-08-10 15:54:40 +00001674 !isDeclarationAfterDeclarator()) {
Chad Rosier8decdee2012-06-26 22:30:43 +00001675
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001676 // Function definitions are only allowed at file scope and in C++ classes.
1677 // The C++ inline method definition case is handled elsewhere, so we only
1678 // need to handle the file scope definition case.
1679 if (Context == Declarator::FileContext) {
Douglas Gregorb004a8e2013-04-16 16:01:32 +00001680 if (isStartOfFunctionDefinition(D)) {
1681 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
1682 Diag(Tok, diag::err_function_declared_typedef);
John McCalld8ac0572009-11-03 19:26:08 +00001683
Douglas Gregorb004a8e2013-04-16 16:01:32 +00001684 // Recover by treating the 'typedef' as spurious.
1685 DS.ClearStorageClassSpecs();
1686 }
1687
1688 Decl *TheDecl =
1689 ParseFunctionDefinition(D, ParsedTemplateInfo(), &LateParsedAttrs);
1690 return Actions.ConvertDeclToDeclGroup(TheDecl);
John McCalld8ac0572009-11-03 19:26:08 +00001691 }
1692
Douglas Gregorb004a8e2013-04-16 16:01:32 +00001693 if (isDeclarationSpecifier()) {
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001694 // If there is an invalid declaration specifier right after the
1695 // function prototype, then we must be in a missing semicolon case
1696 // where this isn't actually a body. Just fall through into the code
1697 // that handles it as a prototype, and let the top-level code handle
1698 // the erroneous declspec where it would otherwise expect a comma or
1699 // semicolon.
Douglas Gregorb004a8e2013-04-16 16:01:32 +00001700 } else {
1701 Diag(Tok, diag::err_expected_fn_body);
1702 SkipUntil(tok::semi);
1703 return DeclGroupPtrTy();
1704 }
John McCalld8ac0572009-11-03 19:26:08 +00001705 } else {
Douglas Gregorb004a8e2013-04-16 16:01:32 +00001706 if (Tok.is(tok::l_brace)) {
1707 Diag(Tok, diag::err_function_definition_not_allowed);
Stephen Hines651f13c2014-04-23 16:59:28 -07001708 SkipMalformedDecl();
1709 return DeclGroupPtrTy();
Douglas Gregorb004a8e2013-04-16 16:01:32 +00001710 }
John McCalld8ac0572009-11-03 19:26:08 +00001711 }
1712 }
1713
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001714 if (ParseAsmAttributesAfterDeclarator(D))
Richard Smithad762fc2011-04-14 22:09:26 +00001715 return DeclGroupPtrTy();
1716
1717 // C++0x [stmt.iter]p1: Check if we have a for-range-declarator. If so, we
1718 // must parse and analyze the for-range-initializer before the declaration is
1719 // analyzed.
Douglas Gregor12849d02013-04-08 20:52:24 +00001720 //
1721 // Handle the Objective-C for-in loop variable similarly, although we
1722 // don't need to parse the container in advance.
1723 if (FRI && (Tok.is(tok::colon) || isTokIdentifier_in())) {
1724 bool IsForRangeLoop = false;
Stephen Hines651f13c2014-04-23 16:59:28 -07001725 if (TryConsumeToken(tok::colon, FRI->ColonLoc)) {
Douglas Gregor12849d02013-04-08 20:52:24 +00001726 IsForRangeLoop = true;
Douglas Gregor12849d02013-04-08 20:52:24 +00001727 if (Tok.is(tok::l_brace))
1728 FRI->RangeExpr = ParseBraceInitializer();
1729 else
1730 FRI->RangeExpr = ParseExpression();
1731 }
1732
Richard Smithad762fc2011-04-14 22:09:26 +00001733 Decl *ThisDecl = Actions.ActOnDeclarator(getCurScope(), D);
Douglas Gregor12849d02013-04-08 20:52:24 +00001734 if (IsForRangeLoop)
1735 Actions.ActOnCXXForRangeDecl(ThisDecl);
Richard Smithad762fc2011-04-14 22:09:26 +00001736 Actions.FinalizeDeclaration(ThisDecl);
John McCall6895a642012-01-27 01:29:43 +00001737 D.complete(ThisDecl);
Rafael Espindola4549d7f2013-07-09 12:05:01 +00001738 return Actions.FinalizeDeclaratorGroup(getCurScope(), DS, ThisDecl);
Richard Smithad762fc2011-04-14 22:09:26 +00001739 }
1740
Chris Lattner5f9e2722011-07-23 10:55:15 +00001741 SmallVector<Decl *, 8> DeclsInGroup;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001742 Decl *FirstDecl = ParseDeclarationAfterDeclaratorAndAttributes(
1743 D, ParsedTemplateInfo(), FRI);
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001744 if (LateParsedAttrs.size() > 0)
1745 ParseLexedAttributeList(LateParsedAttrs, FirstDecl, true, false);
John McCall54abf7d2009-11-04 02:18:39 +00001746 D.complete(FirstDecl);
John McCalld226f652010-08-21 09:40:31 +00001747 if (FirstDecl)
John McCalld8ac0572009-11-03 19:26:08 +00001748 DeclsInGroup.push_back(FirstDecl);
1749
Richard Smith0706df42011-10-19 21:33:05 +00001750 bool ExpectSemi = Context != Declarator::ForContext;
Fariborz Jahanian6c89eaf2012-07-02 23:37:09 +00001751
John McCalld8ac0572009-11-03 19:26:08 +00001752 // If we don't have a comma, it is either the end of the list (a ';') or an
1753 // error, bail out.
Stephen Hines651f13c2014-04-23 16:59:28 -07001754 SourceLocation CommaLoc;
1755 while (TryConsumeToken(tok::comma, CommaLoc)) {
Richard Smith0706df42011-10-19 21:33:05 +00001756 if (Tok.isAtStartOfLine() && ExpectSemi && !MightBeDeclarator(Context)) {
1757 // This comma was followed by a line-break and something which can't be
1758 // the start of a declarator. The comma was probably a typo for a
1759 // semicolon.
1760 Diag(CommaLoc, diag::err_expected_semi_declaration)
1761 << FixItHint::CreateReplacement(CommaLoc, ";");
1762 ExpectSemi = false;
1763 break;
1764 }
John McCalld8ac0572009-11-03 19:26:08 +00001765
1766 // Parse the next declarator.
1767 D.clear();
Richard Smith7984de32012-01-12 23:53:29 +00001768 D.setCommaLoc(CommaLoc);
John McCalld8ac0572009-11-03 19:26:08 +00001769
1770 // Accept attributes in an init-declarator. In the first declarator in a
1771 // declaration, these would be part of the declspec. In subsequent
1772 // declarators, they become part of the declarator itself, so that they
1773 // don't apply to declarators after *this* one. Examples:
1774 // short __attribute__((common)) var; -> declspec
1775 // short var __attribute__((common)); -> declarator
1776 // short x, __attribute__((common)) var; -> declarator
John McCall7f040a92010-12-24 02:08:15 +00001777 MaybeParseGNUAttributes(D);
John McCalld8ac0572009-11-03 19:26:08 +00001778
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001779 // MSVC parses but ignores qualifiers after the comma as an extension.
1780 if (getLangOpts().MicrosoftExt)
1781 DiagnoseAndSkipExtendedMicrosoftTypeAttributes();
1782
John McCalld8ac0572009-11-03 19:26:08 +00001783 ParseDeclarator(D);
Fariborz Jahanian9baf39d2012-01-13 00:14:12 +00001784 if (!D.isInvalidType()) {
1785 Decl *ThisDecl = ParseDeclarationAfterDeclarator(D);
1786 D.complete(ThisDecl);
1787 if (ThisDecl)
Chad Rosier8decdee2012-06-26 22:30:43 +00001788 DeclsInGroup.push_back(ThisDecl);
Fariborz Jahanian9baf39d2012-01-13 00:14:12 +00001789 }
John McCalld8ac0572009-11-03 19:26:08 +00001790 }
1791
1792 if (DeclEnd)
1793 *DeclEnd = Tok.getLocation();
1794
Richard Smith0706df42011-10-19 21:33:05 +00001795 if (ExpectSemi &&
Chris Lattner8bb21d32012-04-28 16:12:17 +00001796 ExpectAndConsumeSemi(Context == Declarator::FileContext
1797 ? diag::err_invalid_token_after_toplevel_declarator
1798 : diag::err_expected_semi_declaration)) {
Chris Lattner004659a2010-07-11 22:42:07 +00001799 // Okay, there was no semicolon and one was expected. If we see a
1800 // declaration specifier, just assume it was missing and continue parsing.
1801 // Otherwise things are very confused and we skip to recover.
1802 if (!isDeclarationSpecifier()) {
Alexey Bataev8fe24752013-11-18 08:17:37 +00001803 SkipUntil(tok::r_brace, StopAtSemi | StopBeforeMatch);
Stephen Hines651f13c2014-04-23 16:59:28 -07001804 TryConsumeToken(tok::semi);
Chris Lattner004659a2010-07-11 22:42:07 +00001805 }
John McCalld8ac0572009-11-03 19:26:08 +00001806 }
1807
Rafael Espindola4549d7f2013-07-09 12:05:01 +00001808 return Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup);
Reid Spencer5f016e22007-07-11 17:01:13 +00001809}
1810
Richard Smithad762fc2011-04-14 22:09:26 +00001811/// Parse an optional simple-asm-expr and attributes, and attach them to a
1812/// declarator. Returns true on an error.
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001813bool Parser::ParseAsmAttributesAfterDeclarator(Declarator &D) {
Richard Smithad762fc2011-04-14 22:09:26 +00001814 // If a simple-asm-expr is present, parse it.
1815 if (Tok.is(tok::kw_asm)) {
1816 SourceLocation Loc;
1817 ExprResult AsmLabel(ParseSimpleAsm(&Loc));
1818 if (AsmLabel.isInvalid()) {
Alexey Bataev8fe24752013-11-18 08:17:37 +00001819 SkipUntil(tok::semi, StopBeforeMatch);
Richard Smithad762fc2011-04-14 22:09:26 +00001820 return true;
1821 }
1822
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001823 D.setAsmLabel(AsmLabel.get());
Richard Smithad762fc2011-04-14 22:09:26 +00001824 D.SetRangeEnd(Loc);
1825 }
1826
1827 MaybeParseGNUAttributes(D);
1828 return false;
1829}
1830
Douglas Gregor1426e532009-05-12 21:31:51 +00001831/// \brief Parse 'declaration' after parsing 'declaration-specifiers
1832/// declarator'. This method parses the remainder of the declaration
1833/// (including any attributes or initializer, among other things) and
1834/// finalizes the declaration.
Reid Spencer5f016e22007-07-11 17:01:13 +00001835///
Reid Spencer5f016e22007-07-11 17:01:13 +00001836/// init-declarator: [C99 6.7]
1837/// declarator
1838/// declarator '=' initializer
1839/// [GNU] declarator simple-asm-expr[opt] attributes[opt]
1840/// [GNU] declarator simple-asm-expr[opt] attributes[opt] '=' initializer
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00001841/// [C++] declarator initializer[opt]
1842///
1843/// [C++] initializer:
1844/// [C++] '=' initializer-clause
1845/// [C++] '(' expression-list ')'
Sebastian Redl50de12f2009-03-24 22:27:57 +00001846/// [C++0x] '=' 'default' [TODO]
1847/// [C++0x] '=' 'delete'
Sebastian Redldbef1bb2011-06-05 12:23:16 +00001848/// [C++0x] braced-init-list
Sebastian Redl50de12f2009-03-24 22:27:57 +00001849///
1850/// According to the standard grammar, =default and =delete are function
1851/// definitions, but that definitely doesn't fit with the parser here.
Reid Spencer5f016e22007-07-11 17:01:13 +00001852///
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001853Decl *Parser::ParseDeclarationAfterDeclarator(
1854 Declarator &D, const ParsedTemplateInfo &TemplateInfo) {
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001855 if (ParseAsmAttributesAfterDeclarator(D))
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001856 return nullptr;
Mike Stump1eb44332009-09-09 15:08:12 +00001857
Richard Smithad762fc2011-04-14 22:09:26 +00001858 return ParseDeclarationAfterDeclaratorAndAttributes(D, TemplateInfo);
1859}
Mike Stump1eb44332009-09-09 15:08:12 +00001860
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001861Decl *Parser::ParseDeclarationAfterDeclaratorAndAttributes(
1862 Declarator &D, const ParsedTemplateInfo &TemplateInfo, ForRangeInit *FRI) {
Douglas Gregor1426e532009-05-12 21:31:51 +00001863 // Inform the current actions module that we just parsed this declarator.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001864 Decl *ThisDecl = nullptr;
Douglas Gregord5a423b2009-09-25 18:43:00 +00001865 switch (TemplateInfo.Kind) {
1866 case ParsedTemplateInfo::NonTemplate:
Douglas Gregor23c94db2010-07-02 17:43:08 +00001867 ThisDecl = Actions.ActOnDeclarator(getCurScope(), D);
Douglas Gregord5a423b2009-09-25 18:43:00 +00001868 break;
Chad Rosier8decdee2012-06-26 22:30:43 +00001869
Douglas Gregord5a423b2009-09-25 18:43:00 +00001870 case ParsedTemplateInfo::Template:
Larisse Voufoef4579c2013-08-06 01:03:05 +00001871 case ParsedTemplateInfo::ExplicitSpecialization: {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001872 ThisDecl = Actions.ActOnTemplateDeclarator(getCurScope(),
Benjamin Kramer5354e772012-08-23 23:38:35 +00001873 *TemplateInfo.TemplateParams,
Douglas Gregord5a423b2009-09-25 18:43:00 +00001874 D);
Larisse Voufo25218132013-08-06 07:33:00 +00001875 if (VarTemplateDecl *VT = dyn_cast_or_null<VarTemplateDecl>(ThisDecl))
Larisse Voufoef4579c2013-08-06 01:03:05 +00001876 // Re-direct this decl to refer to the templated decl so that we can
1877 // initialize it.
1878 ThisDecl = VT->getTemplatedDecl();
1879 break;
1880 }
1881 case ParsedTemplateInfo::ExplicitInstantiation: {
1882 if (Tok.is(tok::semi)) {
1883 DeclResult ThisRes = Actions.ActOnExplicitInstantiation(
1884 getCurScope(), TemplateInfo.ExternLoc, TemplateInfo.TemplateLoc, D);
1885 if (ThisRes.isInvalid()) {
Alexey Bataev8fe24752013-11-18 08:17:37 +00001886 SkipUntil(tok::semi, StopBeforeMatch);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001887 return nullptr;
Larisse Voufoef4579c2013-08-06 01:03:05 +00001888 }
1889 ThisDecl = ThisRes.get();
1890 } else {
1891 // FIXME: This check should be for a variable template instantiation only.
1892
1893 // Check that this is a valid instantiation
1894 if (D.getName().getKind() != UnqualifiedId::IK_TemplateId) {
1895 // If the declarator-id is not a template-id, issue a diagnostic and
1896 // recover by ignoring the 'template' keyword.
1897 Diag(Tok, diag::err_template_defn_explicit_instantiation)
1898 << 2 << FixItHint::CreateRemoval(TemplateInfo.TemplateLoc);
1899 ThisDecl = Actions.ActOnDeclarator(getCurScope(), D);
1900 } else {
1901 SourceLocation LAngleLoc =
1902 PP.getLocForEndOfToken(TemplateInfo.TemplateLoc);
1903 Diag(D.getIdentifierLoc(),
1904 diag::err_explicit_instantiation_with_definition)
1905 << SourceRange(TemplateInfo.TemplateLoc)
1906 << FixItHint::CreateInsertion(LAngleLoc, "<>");
1907
1908 // Recover as if it were an explicit specialization.
1909 TemplateParameterLists FakedParamLists;
1910 FakedParamLists.push_back(Actions.ActOnTemplateParameterList(
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001911 0, SourceLocation(), TemplateInfo.TemplateLoc, LAngleLoc, nullptr,
1912 0, LAngleLoc));
Larisse Voufoef4579c2013-08-06 01:03:05 +00001913
1914 ThisDecl =
1915 Actions.ActOnTemplateDeclarator(getCurScope(), FakedParamLists, D);
1916 }
1917 }
Douglas Gregord5a423b2009-09-25 18:43:00 +00001918 break;
1919 }
1920 }
Mike Stump1eb44332009-09-09 15:08:12 +00001921
Richard Smitha2c36462013-04-26 16:15:35 +00001922 bool TypeContainsAuto = D.getDeclSpec().containsPlaceholderType();
Richard Smith34b41d92011-02-20 03:19:35 +00001923
Douglas Gregor1426e532009-05-12 21:31:51 +00001924 // Parse declarator '=' initializer.
Richard Trieud6c7c672012-01-18 22:54:52 +00001925 // If a '==' or '+=' is found, suggest a fixit to '='.
Richard Trieufcaf27e2012-01-19 22:01:51 +00001926 if (isTokenEqualOrEqualTypo()) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001927 SourceLocation EqualLoc = ConsumeToken();
Larisse Voufoef4579c2013-08-06 01:03:05 +00001928
Anders Carlsson37bf9d22010-09-24 21:25:25 +00001929 if (Tok.is(tok::kw_delete)) {
Sean Hunte4246a62011-05-12 06:15:49 +00001930 if (D.isFunctionDeclarator())
1931 Diag(ConsumeToken(), diag::err_default_delete_in_multiple_declaration)
1932 << 1 /* delete */;
1933 else
1934 Diag(ConsumeToken(), diag::err_deleted_non_function);
Sean Huntfe2695e2011-05-06 01:42:00 +00001935 } else if (Tok.is(tok::kw_default)) {
Sean Hunte4246a62011-05-12 06:15:49 +00001936 if (D.isFunctionDeclarator())
Sebastian Redlecfcd562012-02-11 23:51:21 +00001937 Diag(ConsumeToken(), diag::err_default_delete_in_multiple_declaration)
1938 << 0 /* default */;
Sean Hunte4246a62011-05-12 06:15:49 +00001939 else
1940 Diag(ConsumeToken(), diag::err_default_special_members);
Douglas Gregor1426e532009-05-12 21:31:51 +00001941 } else {
David Blaikie4e4d0842012-03-11 07:00:24 +00001942 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
John McCall731ad842009-12-19 09:28:58 +00001943 EnterScope(0);
Douglas Gregor23c94db2010-07-02 17:43:08 +00001944 Actions.ActOnCXXEnterDeclInitializer(getCurScope(), ThisDecl);
John McCall731ad842009-12-19 09:28:58 +00001945 }
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00001946
Douglas Gregor5ac3bdb2010-05-30 01:49:25 +00001947 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001948 Actions.CodeCompleteInitializer(getCurScope(), ThisDecl);
Peter Collingbourneec98f2f2012-07-27 12:56:09 +00001949 Actions.FinalizeDeclaration(ThisDecl);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001950 cutOffParsing();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001951 return nullptr;
Douglas Gregor5ac3bdb2010-05-30 01:49:25 +00001952 }
Chad Rosier8decdee2012-06-26 22:30:43 +00001953
John McCall60d7b3a2010-08-24 06:29:42 +00001954 ExprResult Init(ParseInitializer());
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00001955
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001956 // If this is the only decl in (possibly) range based for statement,
1957 // our best guess is that the user meant ':' instead of '='.
1958 if (Tok.is(tok::r_paren) && FRI && D.isFirstDeclarator()) {
1959 Diag(EqualLoc, diag::err_single_decl_assign_in_for_range)
1960 << FixItHint::CreateReplacement(EqualLoc, ":");
1961 // We are trying to stop parser from looking for ';' in this for
1962 // statement, therefore preventing spurious errors to be issued.
1963 FRI->ColonLoc = EqualLoc;
1964 Init = ExprError();
1965 FRI->RangeExpr = Init;
1966 }
1967
David Blaikie4e4d0842012-03-11 07:00:24 +00001968 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001969 Actions.ActOnCXXExitDeclInitializer(getCurScope(), ThisDecl);
John McCall731ad842009-12-19 09:28:58 +00001970 ExitScope();
1971 }
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00001972
Douglas Gregor1426e532009-05-12 21:31:51 +00001973 if (Init.isInvalid()) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001974 SmallVector<tok::TokenKind, 2> StopTokens;
1975 StopTokens.push_back(tok::comma);
1976 if (D.getContext() == Declarator::ForContext)
1977 StopTokens.push_back(tok::r_paren);
1978 SkipUntil(StopTokens, StopAtSemi | StopBeforeMatch);
Douglas Gregor00225542010-03-01 18:27:54 +00001979 Actions.ActOnInitializerError(ThisDecl);
1980 } else
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001981 Actions.AddInitializerToDecl(ThisDecl, Init.get(),
Richard Smith34b41d92011-02-20 03:19:35 +00001982 /*DirectInit=*/false, TypeContainsAuto);
Douglas Gregor1426e532009-05-12 21:31:51 +00001983 }
1984 } else if (Tok.is(tok::l_paren)) {
1985 // Parse C++ direct initializer: '(' expression-list ')'
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001986 BalancedDelimiterTracker T(*this, tok::l_paren);
1987 T.consumeOpen();
1988
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00001989 ExprVector Exprs;
Douglas Gregor1426e532009-05-12 21:31:51 +00001990 CommaLocsTy CommaLocs;
1991
David Blaikie4e4d0842012-03-11 07:00:24 +00001992 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
Douglas Gregorb4debae2009-12-22 17:47:17 +00001993 EnterScope(0);
Douglas Gregor23c94db2010-07-02 17:43:08 +00001994 Actions.ActOnCXXEnterDeclInitializer(getCurScope(), ThisDecl);
Douglas Gregorb4debae2009-12-22 17:47:17 +00001995 }
1996
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001997 if (ParseExpressionList(Exprs, CommaLocs, [&] {
1998 Actions.CodeCompleteConstructor(getCurScope(),
1999 cast<VarDecl>(ThisDecl)->getType()->getCanonicalTypeInternal(),
2000 ThisDecl->getLocation(), Exprs);
2001 })) {
David Blaikie3ea19c82012-10-10 23:15:05 +00002002 Actions.ActOnInitializerError(ThisDecl);
Alexey Bataev8fe24752013-11-18 08:17:37 +00002003 SkipUntil(tok::r_paren, StopAtSemi);
Douglas Gregorb4debae2009-12-22 17:47:17 +00002004
David Blaikie4e4d0842012-03-11 07:00:24 +00002005 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00002006 Actions.ActOnCXXExitDeclInitializer(getCurScope(), ThisDecl);
Douglas Gregorb4debae2009-12-22 17:47:17 +00002007 ExitScope();
2008 }
Douglas Gregor1426e532009-05-12 21:31:51 +00002009 } else {
2010 // Match the ')'.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002011 T.consumeClose();
Douglas Gregor1426e532009-05-12 21:31:51 +00002012
2013 assert(!Exprs.empty() && Exprs.size()-1 == CommaLocs.size() &&
2014 "Unexpected number of commas!");
Douglas Gregorb4debae2009-12-22 17:47:17 +00002015
David Blaikie4e4d0842012-03-11 07:00:24 +00002016 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00002017 Actions.ActOnCXXExitDeclInitializer(getCurScope(), ThisDecl);
Douglas Gregorb4debae2009-12-22 17:47:17 +00002018 ExitScope();
2019 }
2020
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002021 ExprResult Initializer = Actions.ActOnParenListExpr(T.getOpenLocation(),
2022 T.getCloseLocation(),
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002023 Exprs);
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002024 Actions.AddInitializerToDecl(ThisDecl, Initializer.get(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002025 /*DirectInit=*/true, TypeContainsAuto);
Douglas Gregor1426e532009-05-12 21:31:51 +00002026 }
Richard Smith80ad52f2013-01-02 11:42:31 +00002027 } else if (getLangOpts().CPlusPlus11 && Tok.is(tok::l_brace) &&
Fariborz Jahanianb0ed95c2012-07-03 23:22:13 +00002028 (!CurParsedObjCImpl || !D.isFunctionDeclarator())) {
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002029 // Parse C++0x braced-init-list.
Richard Smith7fe62082011-10-15 05:09:34 +00002030 Diag(Tok, diag::warn_cxx98_compat_generalized_initializer_lists);
2031
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002032 if (D.getCXXScopeSpec().isSet()) {
2033 EnterScope(0);
2034 Actions.ActOnCXXEnterDeclInitializer(getCurScope(), ThisDecl);
2035 }
2036
2037 ExprResult Init(ParseBraceInitializer());
2038
2039 if (D.getCXXScopeSpec().isSet()) {
2040 Actions.ActOnCXXExitDeclInitializer(getCurScope(), ThisDecl);
2041 ExitScope();
2042 }
2043
2044 if (Init.isInvalid()) {
2045 Actions.ActOnInitializerError(ThisDecl);
2046 } else
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002047 Actions.AddInitializerToDecl(ThisDecl, Init.get(),
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002048 /*DirectInit=*/true, TypeContainsAuto);
2049
Douglas Gregor1426e532009-05-12 21:31:51 +00002050 } else {
Richard Smith34b41d92011-02-20 03:19:35 +00002051 Actions.ActOnUninitializedDecl(ThisDecl, TypeContainsAuto);
Douglas Gregor1426e532009-05-12 21:31:51 +00002052 }
2053
Richard Smith483b9f32011-02-21 20:05:19 +00002054 Actions.FinalizeDeclaration(ThisDecl);
2055
Douglas Gregor1426e532009-05-12 21:31:51 +00002056 return ThisDecl;
2057}
2058
Reid Spencer5f016e22007-07-11 17:01:13 +00002059/// ParseSpecifierQualifierList
2060/// specifier-qualifier-list:
2061/// type-specifier specifier-qualifier-list[opt]
2062/// type-qualifier specifier-qualifier-list[opt]
2063/// [GNU] attributes specifier-qualifier-list[opt]
2064///
Richard Smith69730c12012-03-12 07:56:15 +00002065void Parser::ParseSpecifierQualifierList(DeclSpec &DS, AccessSpecifier AS,
2066 DeclSpecContext DSC) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002067 /// specifier-qualifier-list is a subset of declaration-specifiers. Just
2068 /// parse declaration-specifiers and complain about extra stuff.
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002069 /// TODO: diagnose attribute-specifiers and alignment-specifiers.
Richard Smith69730c12012-03-12 07:56:15 +00002070 ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS, DSC);
Mike Stump1eb44332009-09-09 15:08:12 +00002071
Reid Spencer5f016e22007-07-11 17:01:13 +00002072 // Validate declspec for type-name.
2073 unsigned Specs = DS.getParsedSpecifiers();
Stephen Hines651f13c2014-04-23 16:59:28 -07002074 if (isTypeSpecifier(DSC) && !DS.hasTypeSpecifier()) {
Richard Smith69730c12012-03-12 07:56:15 +00002075 Diag(Tok, diag::err_expected_type);
2076 DS.SetTypeSpecError();
2077 } else if (Specs == DeclSpec::PQ_None && !DS.getNumProtocolQualifiers() &&
2078 !DS.hasAttributes()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002079 Diag(Tok, diag::err_typename_requires_specqual);
Richard Smith69730c12012-03-12 07:56:15 +00002080 if (!DS.hasTypeSpecifier())
2081 DS.SetTypeSpecError();
2082 }
Mike Stump1eb44332009-09-09 15:08:12 +00002083
Reid Spencer5f016e22007-07-11 17:01:13 +00002084 // Issue diagnostic and remove storage class if present.
2085 if (Specs & DeclSpec::PQ_StorageClassSpecifier) {
2086 if (DS.getStorageClassSpecLoc().isValid())
2087 Diag(DS.getStorageClassSpecLoc(),diag::err_typename_invalid_storageclass);
2088 else
Richard Smithec642442013-04-12 22:46:28 +00002089 Diag(DS.getThreadStorageClassSpecLoc(),
2090 diag::err_typename_invalid_storageclass);
Reid Spencer5f016e22007-07-11 17:01:13 +00002091 DS.ClearStorageClassSpecs();
2092 }
Mike Stump1eb44332009-09-09 15:08:12 +00002093
Reid Spencer5f016e22007-07-11 17:01:13 +00002094 // Issue diagnostic and remove function specfier if present.
2095 if (Specs & DeclSpec::PQ_FunctionSpecifier) {
Douglas Gregorb48fe382008-10-31 09:07:45 +00002096 if (DS.isInlineSpecified())
2097 Diag(DS.getInlineSpecLoc(), diag::err_typename_invalid_functionspec);
2098 if (DS.isVirtualSpecified())
2099 Diag(DS.getVirtualSpecLoc(), diag::err_typename_invalid_functionspec);
2100 if (DS.isExplicitSpecified())
2101 Diag(DS.getExplicitSpecLoc(), diag::err_typename_invalid_functionspec);
Reid Spencer5f016e22007-07-11 17:01:13 +00002102 DS.ClearFunctionSpecs();
2103 }
Richard Smith69730c12012-03-12 07:56:15 +00002104
2105 // Issue diagnostic and remove constexpr specfier if present.
2106 if (DS.isConstexprSpecified()) {
2107 Diag(DS.getConstexprSpecLoc(), diag::err_typename_invalid_constexpr);
2108 DS.ClearConstexprSpec();
2109 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002110}
2111
Chris Lattnerc199ab32009-04-12 20:42:31 +00002112/// isValidAfterIdentifierInDeclaratorAfterDeclSpec - Return true if the
2113/// specified token is valid after the identifier in a declarator which
2114/// immediately follows the declspec. For example, these things are valid:
2115///
2116/// int x [ 4]; // direct-declarator
2117/// int x ( int y); // direct-declarator
2118/// int(int x ) // direct-declarator
2119/// int x ; // simple-declaration
2120/// int x = 17; // init-declarator-list
2121/// int x , y; // init-declarator-list
2122/// int x __asm__ ("foo"); // init-declarator-list
Chris Lattnerb6645dd2009-04-14 21:16:09 +00002123/// int x : 4; // struct-declarator
Chris Lattnerc83c27a2009-04-12 22:29:43 +00002124/// int x { 5}; // C++'0x unified initializers
Chris Lattnerc199ab32009-04-12 20:42:31 +00002125///
2126/// This is not, because 'x' does not immediately follow the declspec (though
2127/// ')' happens to be valid anyway).
2128/// int (x)
2129///
2130static bool isValidAfterIdentifierInDeclarator(const Token &T) {
2131 return T.is(tok::l_square) || T.is(tok::l_paren) || T.is(tok::r_paren) ||
2132 T.is(tok::semi) || T.is(tok::comma) || T.is(tok::equal) ||
Chris Lattnerb6645dd2009-04-14 21:16:09 +00002133 T.is(tok::kw_asm) || T.is(tok::l_brace) || T.is(tok::colon);
Chris Lattnerc199ab32009-04-12 20:42:31 +00002134}
2135
Chris Lattnere40c2952009-04-14 21:34:55 +00002136
2137/// ParseImplicitInt - This method is called when we have an non-typename
2138/// identifier in a declspec (which normally terminates the decl spec) when
2139/// the declspec has no type specifier. In this case, the declspec is either
2140/// malformed or is "implicit int" (in K&R and C89).
2141///
2142/// This method handles diagnosing this prettily and returns false if the
2143/// declspec is done being processed. If it recovers and thinks there may be
2144/// other pieces of declspec after it, it returns true.
2145///
Chris Lattnerf4382f52009-04-14 22:17:06 +00002146bool Parser::ParseImplicitInt(DeclSpec &DS, CXXScopeSpec *SS,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00002147 const ParsedTemplateInfo &TemplateInfo,
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002148 AccessSpecifier AS, DeclSpecContext DSC,
Michael Han2e397132012-11-26 22:54:45 +00002149 ParsedAttributesWithRange &Attrs) {
Chris Lattnerf4382f52009-04-14 22:17:06 +00002150 assert(Tok.is(tok::identifier) && "should have identifier");
Mike Stump1eb44332009-09-09 15:08:12 +00002151
Chris Lattnere40c2952009-04-14 21:34:55 +00002152 SourceLocation Loc = Tok.getLocation();
2153 // If we see an identifier that is not a type name, we normally would
2154 // parse it as the identifer being declared. However, when a typename
2155 // is typo'd or the definition is not included, this will incorrectly
2156 // parse the typename as the identifier name and fall over misparsing
2157 // later parts of the diagnostic.
2158 //
2159 // As such, we try to do some look-ahead in cases where this would
2160 // otherwise be an "implicit-int" case to see if this is invalid. For
2161 // example: "static foo_t x = 4;" In this case, if we parsed foo_t as
2162 // an identifier with implicit int, we'd get a parse error because the
2163 // next token is obviously invalid for a type. Parse these as a case
2164 // with an invalid type specifier.
2165 assert(!DS.hasTypeSpecifier() && "Type specifier checked above");
Mike Stump1eb44332009-09-09 15:08:12 +00002166
Chris Lattnere40c2952009-04-14 21:34:55 +00002167 // Since we know that this either implicit int (which is rare) or an
Richard Smith827adaf2012-05-15 21:01:51 +00002168 // error, do lookahead to try to do better recovery. This never applies
2169 // within a type specifier. Outside of C++, we allow this even if the
2170 // language doesn't "officially" support implicit int -- we support
Richard Smith58eb3702013-04-30 22:43:51 +00002171 // implicit int as an extension in C99 and C11.
Stephen Hines651f13c2014-04-23 16:59:28 -07002172 if (!isTypeSpecifier(DSC) && !getLangOpts().CPlusPlus &&
Richard Smith69730c12012-03-12 07:56:15 +00002173 isValidAfterIdentifierInDeclarator(NextToken())) {
Chris Lattnere40c2952009-04-14 21:34:55 +00002174 // If this token is valid for implicit int, e.g. "static x = 4", then
2175 // we just avoid eating the identifier, so it will be parsed as the
2176 // identifier in the declarator.
2177 return false;
2178 }
Mike Stump1eb44332009-09-09 15:08:12 +00002179
Richard Smith827adaf2012-05-15 21:01:51 +00002180 if (getLangOpts().CPlusPlus &&
2181 DS.getStorageClassSpec() == DeclSpec::SCS_auto) {
2182 // Don't require a type specifier if we have the 'auto' storage class
2183 // specifier in C++98 -- we'll promote it to a type specifier.
Richard Smithb79b17b2013-10-15 00:00:26 +00002184 if (SS)
2185 AnnotateScopeToken(*SS, /*IsNewAnnotation*/false);
Richard Smith827adaf2012-05-15 21:01:51 +00002186 return false;
2187 }
2188
Chris Lattnere40c2952009-04-14 21:34:55 +00002189 // Otherwise, if we don't consume this token, we are going to emit an
2190 // error anyway. Try to recover from various common problems. Check
2191 // to see if this was a reference to a tag name without a tag specified.
2192 // This is a common problem in C (saying 'foo' instead of 'struct foo').
Chris Lattnerf4382f52009-04-14 22:17:06 +00002193 //
2194 // C++ doesn't need this, and isTagName doesn't take SS.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002195 if (SS == nullptr) {
2196 const char *TagName = nullptr, *FixitTagName = nullptr;
Chris Lattnerf4382f52009-04-14 22:17:06 +00002197 tok::TokenKind TagKind = tok::unknown;
Mike Stump1eb44332009-09-09 15:08:12 +00002198
Douglas Gregor23c94db2010-07-02 17:43:08 +00002199 switch (Actions.isTagName(*Tok.getIdentifierInfo(), getCurScope())) {
Chris Lattnere40c2952009-04-14 21:34:55 +00002200 default: break;
Argyrios Kyrtzidisb8a9d3b2011-04-21 17:29:47 +00002201 case DeclSpec::TST_enum:
2202 TagName="enum" ; FixitTagName = "enum " ; TagKind=tok::kw_enum ;break;
2203 case DeclSpec::TST_union:
2204 TagName="union" ; FixitTagName = "union " ;TagKind=tok::kw_union ;break;
2205 case DeclSpec::TST_struct:
2206 TagName="struct"; FixitTagName = "struct ";TagKind=tok::kw_struct;break;
Joao Matos6666ed42012-08-31 18:45:21 +00002207 case DeclSpec::TST_interface:
2208 TagName="__interface"; FixitTagName = "__interface ";
2209 TagKind=tok::kw___interface;break;
Argyrios Kyrtzidisb8a9d3b2011-04-21 17:29:47 +00002210 case DeclSpec::TST_class:
2211 TagName="class" ; FixitTagName = "class " ;TagKind=tok::kw_class ;break;
Chris Lattnere40c2952009-04-14 21:34:55 +00002212 }
Mike Stump1eb44332009-09-09 15:08:12 +00002213
Chris Lattnerf4382f52009-04-14 22:17:06 +00002214 if (TagName) {
Kaelyn Uhrainaec2ac62012-04-26 23:36:17 +00002215 IdentifierInfo *TokenName = Tok.getIdentifierInfo();
2216 LookupResult R(Actions, TokenName, SourceLocation(),
2217 Sema::LookupOrdinaryName);
2218
Chris Lattnerf4382f52009-04-14 22:17:06 +00002219 Diag(Loc, diag::err_use_of_tag_name_without_tag)
Kaelyn Uhrainaec2ac62012-04-26 23:36:17 +00002220 << TokenName << TagName << getLangOpts().CPlusPlus
2221 << FixItHint::CreateInsertion(Tok.getLocation(), FixitTagName);
2222
2223 if (Actions.LookupParsedName(R, getCurScope(), SS)) {
2224 for (LookupResult::iterator I = R.begin(), IEnd = R.end();
2225 I != IEnd; ++I)
Kaelyn Uhrain392b3f52012-04-27 18:26:49 +00002226 Diag((*I)->getLocation(), diag::note_decl_hiding_tag_type)
Kaelyn Uhrainaec2ac62012-04-26 23:36:17 +00002227 << TokenName << TagName;
2228 }
Mike Stump1eb44332009-09-09 15:08:12 +00002229
Chris Lattnerf4382f52009-04-14 22:17:06 +00002230 // Parse this as a tag as if the missing tag were present.
2231 if (TagKind == tok::kw_enum)
Richard Smith69730c12012-03-12 07:56:15 +00002232 ParseEnumSpecifier(Loc, DS, TemplateInfo, AS, DSC_normal);
Chris Lattnerf4382f52009-04-14 22:17:06 +00002233 else
Richard Smith69730c12012-03-12 07:56:15 +00002234 ParseClassSpecifier(TagKind, Loc, DS, TemplateInfo, AS,
Michael Han2e397132012-11-26 22:54:45 +00002235 /*EnteringContext*/ false, DSC_normal, Attrs);
Chris Lattnerf4382f52009-04-14 22:17:06 +00002236 return true;
2237 }
Chris Lattnere40c2952009-04-14 21:34:55 +00002238 }
Mike Stump1eb44332009-09-09 15:08:12 +00002239
Richard Smith8f0a7e72012-05-15 21:29:55 +00002240 // Determine whether this identifier could plausibly be the name of something
Richard Smith7514db22012-05-15 21:42:17 +00002241 // being declared (with a missing type).
Stephen Hines651f13c2014-04-23 16:59:28 -07002242 if (!isTypeSpecifier(DSC) &&
Richard Smith8f0a7e72012-05-15 21:29:55 +00002243 (!SS || DSC == DSC_top_level || DSC == DSC_class)) {
Richard Smith827adaf2012-05-15 21:01:51 +00002244 // Look ahead to the next token to try to figure out what this declaration
2245 // was supposed to be.
2246 switch (NextToken().getKind()) {
Richard Smith827adaf2012-05-15 21:01:51 +00002247 case tok::l_paren: {
2248 // static x(4); // 'x' is not a type
2249 // x(int n); // 'x' is not a type
2250 // x (*p)[]; // 'x' is a type
2251 //
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002252 // Since we're in an error case, we can afford to perform a tentative
2253 // parse to determine which case we're in.
Richard Smith827adaf2012-05-15 21:01:51 +00002254 TentativeParsingAction PA(*this);
2255 ConsumeToken();
2256 TPResult TPR = TryParseDeclarator(/*mayBeAbstract*/false);
2257 PA.Revert();
Richard Smithb79b17b2013-10-15 00:00:26 +00002258
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002259 if (TPR != TPResult::False) {
Richard Smithb79b17b2013-10-15 00:00:26 +00002260 // The identifier is followed by a parenthesized declarator.
2261 // It's supposed to be a type.
2262 break;
2263 }
2264
2265 // If we're in a context where we could be declaring a constructor,
2266 // check whether this is a constructor declaration with a bogus name.
2267 if (DSC == DSC_class || (DSC == DSC_top_level && SS)) {
2268 IdentifierInfo *II = Tok.getIdentifierInfo();
2269 if (Actions.isCurrentClassNameTypo(II, SS)) {
2270 Diag(Loc, diag::err_constructor_bad_name)
2271 << Tok.getIdentifierInfo() << II
2272 << FixItHint::CreateReplacement(Tok.getLocation(), II->getName());
2273 Tok.setIdentifierInfo(II);
2274 }
2275 }
2276 // Fall through.
Richard Smith827adaf2012-05-15 21:01:51 +00002277 }
Richard Smithb79b17b2013-10-15 00:00:26 +00002278 case tok::comma:
2279 case tok::equal:
2280 case tok::kw_asm:
2281 case tok::l_brace:
2282 case tok::l_square:
2283 case tok::semi:
2284 // This looks like a variable or function declaration. The type is
2285 // probably missing. We're done parsing decl-specifiers.
2286 if (SS)
2287 AnnotateScopeToken(*SS, /*IsNewAnnotation*/false);
2288 return false;
Richard Smith827adaf2012-05-15 21:01:51 +00002289
2290 default:
2291 // This is probably supposed to be a type. This includes cases like:
2292 // int f(itn);
2293 // struct S { unsinged : 4; };
2294 break;
2295 }
2296 }
2297
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002298 // This is almost certainly an invalid type name. Let Sema emit a diagnostic
2299 // and attempt to recover.
John McCallb3d87482010-08-24 05:47:05 +00002300 ParsedType T;
Kaelyn Uhrain50dc12a2012-06-15 23:45:58 +00002301 IdentifierInfo *II = Tok.getIdentifierInfo();
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002302 Actions.DiagnoseUnknownTypeName(II, Loc, getCurScope(), SS, T,
2303 getLangOpts().CPlusPlus &&
2304 NextToken().is(tok::less));
2305 if (T) {
2306 // The action has suggested that the type T could be used. Set that as
2307 // the type in the declaration specifiers, consume the would-be type
2308 // name token, and we're done.
2309 const char *PrevSpec;
2310 unsigned DiagID;
2311 DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec, DiagID, T,
2312 Actions.getASTContext().getPrintingPolicy());
2313 DS.SetRangeEnd(Tok.getLocation());
2314 ConsumeToken();
2315 // There may be other declaration specifiers after this.
2316 return true;
2317 } else if (II != Tok.getIdentifierInfo()) {
2318 // If no type was suggested, the correction is to a keyword
2319 Tok.setKind(II->getTokenID());
2320 // There may be other declaration specifiers after this.
2321 return true;
Douglas Gregora786fdb2009-10-13 23:27:22 +00002322 }
Mike Stump1eb44332009-09-09 15:08:12 +00002323
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002324 // Otherwise, the action had no suggestion for us. Mark this as an error.
Richard Smith69730c12012-03-12 07:56:15 +00002325 DS.SetTypeSpecError();
Chris Lattnere40c2952009-04-14 21:34:55 +00002326 DS.SetRangeEnd(Tok.getLocation());
2327 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00002328
Chris Lattnere40c2952009-04-14 21:34:55 +00002329 // TODO: Could inject an invalid typedef decl in an enclosing scope to
2330 // avoid rippling error messages on subsequent uses of the same type,
2331 // could be useful if #include was forgotten.
2332 return false;
2333}
2334
Douglas Gregor0efc2c12010-01-13 17:31:36 +00002335/// \brief Determine the declaration specifier context from the declarator
2336/// context.
2337///
2338/// \param Context the declarator context, which is one of the
2339/// Declarator::TheContext enumerator values.
Chad Rosier8decdee2012-06-26 22:30:43 +00002340Parser::DeclSpecContext
Douglas Gregor0efc2c12010-01-13 17:31:36 +00002341Parser::getDeclSpecContextFromDeclaratorContext(unsigned Context) {
2342 if (Context == Declarator::MemberContext)
2343 return DSC_class;
2344 if (Context == Declarator::FileContext)
2345 return DSC_top_level;
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002346 if (Context == Declarator::TemplateTypeArgContext)
2347 return DSC_template_type_arg;
Richard Smith6d96d3a2012-03-15 01:02:11 +00002348 if (Context == Declarator::TrailingReturnContext)
2349 return DSC_trailing;
Stephen Hines651f13c2014-04-23 16:59:28 -07002350 if (Context == Declarator::AliasDeclContext ||
2351 Context == Declarator::AliasTemplateContext)
2352 return DSC_alias_declaration;
Douglas Gregor0efc2c12010-01-13 17:31:36 +00002353 return DSC_normal;
2354}
2355
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002356/// ParseAlignArgument - Parse the argument to an alignment-specifier.
2357///
2358/// FIXME: Simply returns an alignof() expression if the argument is a
2359/// type. Ideally, the type should be propagated directly into Sema.
2360///
Benjamin Kramerffbe9b92011-12-23 17:00:35 +00002361/// [C11] type-id
2362/// [C11] constant-expression
Peter Collingbourne0b64ba92011-10-23 20:07:52 +00002363/// [C++0x] type-id ...[opt]
2364/// [C++0x] assignment-expression ...[opt]
2365ExprResult Parser::ParseAlignArgument(SourceLocation Start,
2366 SourceLocation &EllipsisLoc) {
2367 ExprResult ER;
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002368 if (isTypeIdInParens()) {
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002369 SourceLocation TypeLoc = Tok.getLocation();
2370 ParsedType Ty = ParseTypeName().get();
2371 SourceRange TypeRange(Start, Tok.getLocation());
Peter Collingbourne0b64ba92011-10-23 20:07:52 +00002372 ER = Actions.ActOnUnaryExprOrTypeTraitExpr(TypeLoc, UETT_AlignOf, true,
2373 Ty.getAsOpaquePtr(), TypeRange);
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002374 } else
Peter Collingbourne0b64ba92011-10-23 20:07:52 +00002375 ER = ParseConstantExpression();
2376
Stephen Hines651f13c2014-04-23 16:59:28 -07002377 if (getLangOpts().CPlusPlus11)
2378 TryConsumeToken(tok::ellipsis, EllipsisLoc);
Peter Collingbourne0b64ba92011-10-23 20:07:52 +00002379
2380 return ER;
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002381}
2382
2383/// ParseAlignmentSpecifier - Parse an alignment-specifier, and add the
2384/// attribute to Attrs.
2385///
2386/// alignment-specifier:
Benjamin Kramerffbe9b92011-12-23 17:00:35 +00002387/// [C11] '_Alignas' '(' type-id ')'
2388/// [C11] '_Alignas' '(' constant-expression ')'
Richard Smith33f04a22013-01-29 01:48:07 +00002389/// [C++11] 'alignas' '(' type-id ...[opt] ')'
2390/// [C++11] 'alignas' '(' assignment-expression ...[opt] ')'
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002391void Parser::ParseAlignmentSpecifier(ParsedAttributes &Attrs,
Richard Smithf6565a92013-02-22 08:32:16 +00002392 SourceLocation *EndLoc) {
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002393 assert((Tok.is(tok::kw_alignas) || Tok.is(tok::kw__Alignas)) &&
2394 "Not an alignment-specifier!");
2395
Richard Smith33f04a22013-01-29 01:48:07 +00002396 IdentifierInfo *KWName = Tok.getIdentifierInfo();
2397 SourceLocation KWLoc = ConsumeToken();
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002398
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002399 BalancedDelimiterTracker T(*this, tok::l_paren);
Stephen Hines651f13c2014-04-23 16:59:28 -07002400 if (T.expectAndConsume())
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002401 return;
2402
Peter Collingbourne0b64ba92011-10-23 20:07:52 +00002403 SourceLocation EllipsisLoc;
2404 ExprResult ArgExpr = ParseAlignArgument(T.getOpenLocation(), EllipsisLoc);
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002405 if (ArgExpr.isInvalid()) {
Alexey Bataev8fe24752013-11-18 08:17:37 +00002406 T.skipToEnd();
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002407 return;
2408 }
2409
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002410 T.consumeClose();
Richard Smithf6565a92013-02-22 08:32:16 +00002411 if (EndLoc)
2412 *EndLoc = T.getCloseLocation();
Peter Collingbourne0b64ba92011-10-23 20:07:52 +00002413
Aaron Ballman624421f2013-08-31 01:11:41 +00002414 ArgsVector ArgExprs;
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002415 ArgExprs.push_back(ArgExpr.get());
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002416 Attrs.addNew(KWName, KWLoc, nullptr, KWLoc, ArgExprs.data(), 1,
Aaron Ballman624421f2013-08-31 01:11:41 +00002417 AttributeList::AS_Keyword, EllipsisLoc);
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002418}
2419
Bill Wendlingf0cc19f2013-11-19 22:56:43 +00002420/// Determine whether we're looking at something that might be a declarator
2421/// in a simple-declaration. If it can't possibly be a declarator, maybe
2422/// diagnose a missing semicolon after a prior tag definition in the decl
2423/// specifier.
2424///
2425/// \return \c true if an error occurred and this can't be any kind of
2426/// declaration.
2427bool
2428Parser::DiagnoseMissingSemiAfterTagDefinition(DeclSpec &DS, AccessSpecifier AS,
2429 DeclSpecContext DSContext,
2430 LateParsedAttrList *LateAttrs) {
2431 assert(DS.hasTagDefinition() && "shouldn't call this");
2432
2433 bool EnteringContext = (DSContext == DSC_class || DSContext == DSC_top_level);
Bill Wendlingf0cc19f2013-11-19 22:56:43 +00002434
2435 if (getLangOpts().CPlusPlus &&
2436 (Tok.is(tok::identifier) || Tok.is(tok::coloncolon) ||
2437 Tok.is(tok::kw_decltype) || Tok.is(tok::annot_template_id)) &&
2438 TryAnnotateCXXScopeToken(EnteringContext)) {
2439 SkipMalformedDecl();
2440 return true;
2441 }
2442
Stephen Hines651f13c2014-04-23 16:59:28 -07002443 bool HasScope = Tok.is(tok::annot_cxxscope);
2444 // Make a copy in case GetLookAheadToken invalidates the result of NextToken.
2445 Token AfterScope = HasScope ? NextToken() : Tok;
2446
Bill Wendlingf0cc19f2013-11-19 22:56:43 +00002447 // Determine whether the following tokens could possibly be a
2448 // declarator.
Stephen Hines651f13c2014-04-23 16:59:28 -07002449 bool MightBeDeclarator = true;
2450 if (Tok.is(tok::kw_typename) || Tok.is(tok::annot_typename)) {
2451 // A declarator-id can't start with 'typename'.
2452 MightBeDeclarator = false;
2453 } else if (AfterScope.is(tok::annot_template_id)) {
2454 // If we have a type expressed as a template-id, this cannot be a
2455 // declarator-id (such a type cannot be redeclared in a simple-declaration).
2456 TemplateIdAnnotation *Annot =
2457 static_cast<TemplateIdAnnotation *>(AfterScope.getAnnotationValue());
2458 if (Annot->Kind == TNK_Type_template)
2459 MightBeDeclarator = false;
2460 } else if (AfterScope.is(tok::identifier)) {
2461 const Token &Next = HasScope ? GetLookAheadToken(2) : NextToken();
2462
Bill Wendlingf0cc19f2013-11-19 22:56:43 +00002463 // These tokens cannot come after the declarator-id in a
2464 // simple-declaration, and are likely to come after a type-specifier.
Stephen Hines651f13c2014-04-23 16:59:28 -07002465 if (Next.is(tok::star) || Next.is(tok::amp) || Next.is(tok::ampamp) ||
2466 Next.is(tok::identifier) || Next.is(tok::annot_cxxscope) ||
2467 Next.is(tok::coloncolon)) {
2468 // Missing a semicolon.
2469 MightBeDeclarator = false;
2470 } else if (HasScope) {
2471 // If the declarator-id has a scope specifier, it must redeclare a
2472 // previously-declared entity. If that's a type (and this is not a
2473 // typedef), that's an error.
2474 CXXScopeSpec SS;
2475 Actions.RestoreNestedNameSpecifierAnnotation(
2476 Tok.getAnnotationValue(), Tok.getAnnotationRange(), SS);
2477 IdentifierInfo *Name = AfterScope.getIdentifierInfo();
2478 Sema::NameClassification Classification = Actions.ClassifyName(
2479 getCurScope(), SS, Name, AfterScope.getLocation(), Next,
2480 /*IsAddressOfOperand*/false);
2481 switch (Classification.getKind()) {
2482 case Sema::NC_Error:
2483 SkipMalformedDecl();
2484 return true;
Bill Wendlingf0cc19f2013-11-19 22:56:43 +00002485
Stephen Hines651f13c2014-04-23 16:59:28 -07002486 case Sema::NC_Keyword:
2487 case Sema::NC_NestedNameSpecifier:
2488 llvm_unreachable("typo correction and nested name specifiers not "
2489 "possible here");
Bill Wendlingf0cc19f2013-11-19 22:56:43 +00002490
Stephen Hines651f13c2014-04-23 16:59:28 -07002491 case Sema::NC_Type:
2492 case Sema::NC_TypeTemplate:
2493 // Not a previously-declared non-type entity.
2494 MightBeDeclarator = false;
2495 break;
Bill Wendlingf0cc19f2013-11-19 22:56:43 +00002496
Stephen Hines651f13c2014-04-23 16:59:28 -07002497 case Sema::NC_Unknown:
2498 case Sema::NC_Expression:
2499 case Sema::NC_VarTemplate:
2500 case Sema::NC_FunctionTemplate:
2501 // Might be a redeclaration of a prior entity.
2502 break;
2503 }
Bill Wendlingf0cc19f2013-11-19 22:56:43 +00002504 }
Bill Wendlingf0cc19f2013-11-19 22:56:43 +00002505 }
2506
Stephen Hines651f13c2014-04-23 16:59:28 -07002507 if (MightBeDeclarator)
Bill Wendlingf0cc19f2013-11-19 22:56:43 +00002508 return false;
2509
Stephen Hines651f13c2014-04-23 16:59:28 -07002510 const PrintingPolicy &PPol = Actions.getASTContext().getPrintingPolicy();
Bill Wendlingf0cc19f2013-11-19 22:56:43 +00002511 Diag(PP.getLocForEndOfToken(DS.getRepAsDecl()->getLocEnd()),
Stephen Hines651f13c2014-04-23 16:59:28 -07002512 diag::err_expected_after)
2513 << DeclSpec::getSpecifierName(DS.getTypeSpecType(), PPol) << tok::semi;
Bill Wendlingf0cc19f2013-11-19 22:56:43 +00002514
2515 // Try to recover from the typo, by dropping the tag definition and parsing
2516 // the problematic tokens as a type.
2517 //
2518 // FIXME: Split the DeclSpec into pieces for the standalone
2519 // declaration and pieces for the following declaration, instead
2520 // of assuming that all the other pieces attach to new declaration,
2521 // and call ParsedFreeStandingDeclSpec as appropriate.
2522 DS.ClearTypeSpecType();
2523 ParsedTemplateInfo NotATemplate;
2524 ParseDeclarationSpecifiers(DS, NotATemplate, AS, DSContext, LateAttrs);
2525 return false;
2526}
2527
Reid Spencer5f016e22007-07-11 17:01:13 +00002528/// ParseDeclarationSpecifiers
2529/// declaration-specifiers: [C99 6.7]
2530/// storage-class-specifier declaration-specifiers[opt]
2531/// type-specifier declaration-specifiers[opt]
Reid Spencer5f016e22007-07-11 17:01:13 +00002532/// [C99] function-specifier declaration-specifiers[opt]
Benjamin Kramerffbe9b92011-12-23 17:00:35 +00002533/// [C11] alignment-specifier declaration-specifiers[opt]
Reid Spencer5f016e22007-07-11 17:01:13 +00002534/// [GNU] attributes declaration-specifiers[opt]
Douglas Gregor8d267c52011-09-09 02:06:17 +00002535/// [Clang] '__module_private__' declaration-specifiers[opt]
Reid Spencer5f016e22007-07-11 17:01:13 +00002536///
2537/// storage-class-specifier: [C99 6.7.1]
2538/// 'typedef'
2539/// 'extern'
2540/// 'static'
2541/// 'auto'
2542/// 'register'
Sebastian Redl669d5d72008-11-14 23:42:31 +00002543/// [C++] 'mutable'
Richard Smithec642442013-04-12 22:46:28 +00002544/// [C++11] 'thread_local'
2545/// [C11] '_Thread_local'
Reid Spencer5f016e22007-07-11 17:01:13 +00002546/// [GNU] '__thread'
Reid Spencer5f016e22007-07-11 17:01:13 +00002547/// function-specifier: [C99 6.7.4]
2548/// [C99] 'inline'
Douglas Gregorb48fe382008-10-31 09:07:45 +00002549/// [C++] 'virtual'
2550/// [C++] 'explicit'
Peter Collingbournef315fa82011-02-14 01:42:53 +00002551/// [OpenCL] '__kernel'
Anders Carlssonf47f7a12009-05-06 04:46:28 +00002552/// 'friend': [C++ dcl.friend]
Sebastian Redl2ac67232009-11-05 15:47:02 +00002553/// 'constexpr': [C++0x dcl.constexpr]
Anders Carlssonf47f7a12009-05-06 04:46:28 +00002554
Reid Spencer5f016e22007-07-11 17:01:13 +00002555///
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +00002556void Parser::ParseDeclarationSpecifiers(DeclSpec &DS,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00002557 const ParsedTemplateInfo &TemplateInfo,
John McCall67d1a672009-08-06 02:15:43 +00002558 AccessSpecifier AS,
DeLesley Hutchins2287c5e2012-03-02 22:12:59 +00002559 DeclSpecContext DSContext,
2560 LateParsedAttrList *LateAttrs) {
Douglas Gregor312eadb2011-04-24 05:37:28 +00002561 if (DS.getSourceRange().isInvalid()) {
Stephen Hines176edba2014-12-01 14:53:08 -08002562 // Start the range at the current token but make the end of the range
2563 // invalid. This will make the entire range invalid unless we successfully
2564 // consume a token.
Douglas Gregor312eadb2011-04-24 05:37:28 +00002565 DS.SetRangeStart(Tok.getLocation());
Stephen Hines176edba2014-12-01 14:53:08 -08002566 DS.SetRangeEnd(SourceLocation());
Douglas Gregor312eadb2011-04-24 05:37:28 +00002567 }
Chad Rosier8decdee2012-06-26 22:30:43 +00002568
Douglas Gregorefaa93a2011-11-07 17:33:42 +00002569 bool EnteringContext = (DSContext == DSC_class || DSContext == DSC_top_level);
Sean Hunt2edf0a22012-06-23 05:07:58 +00002570 bool AttrsLastTime = false;
2571 ParsedAttributesWithRange attrs(AttrFactory);
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -07002572 // We use Sema's policy to get bool macros right.
2573 const PrintingPolicy &Policy = Actions.getPrintingPolicy();
Reid Spencer5f016e22007-07-11 17:01:13 +00002574 while (1) {
John McCallfec54012009-08-03 20:12:06 +00002575 bool isInvalid = false;
Stephen Hines0e2c34f2015-03-23 12:09:02 -07002576 bool isStorageClass = false;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002577 const char *PrevSpec = nullptr;
John McCallfec54012009-08-03 20:12:06 +00002578 unsigned DiagID = 0;
2579
Reid Spencer5f016e22007-07-11 17:01:13 +00002580 SourceLocation Loc = Tok.getLocation();
Douglas Gregor12e083c2008-11-07 15:42:26 +00002581
Reid Spencer5f016e22007-07-11 17:01:13 +00002582 switch (Tok.getKind()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002583 default:
Chris Lattnerbce61352008-07-26 00:20:22 +00002584 DoneWithDeclSpec:
Sean Hunt2edf0a22012-06-23 05:07:58 +00002585 if (!AttrsLastTime)
2586 ProhibitAttributes(attrs);
Michael Hanf64231e2012-11-06 19:34:54 +00002587 else {
2588 // Reject C++11 attributes that appertain to decl specifiers as
2589 // we don't support any C++11 attributes that appertain to decl
2590 // specifiers. This also conforms to what g++ 4.8 is doing.
2591 ProhibitCXX11Attributes(attrs);
2592
Sean Hunt2edf0a22012-06-23 05:07:58 +00002593 DS.takeAttributesFrom(attrs);
Michael Hanf64231e2012-11-06 19:34:54 +00002594 }
Peter Collingbournef1907682011-09-29 18:03:57 +00002595
Reid Spencer5f016e22007-07-11 17:01:13 +00002596 // If this is not a declaration specifier token, we're done reading decl
2597 // specifiers. First verify that DeclSpec's are consistent.
Stephen Hines651f13c2014-04-23 16:59:28 -07002598 DS.Finish(Diags, PP, Policy);
Reid Spencer5f016e22007-07-11 17:01:13 +00002599 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002600
Sean Hunt2edf0a22012-06-23 05:07:58 +00002601 case tok::l_square:
2602 case tok::kw_alignas:
Richard Smith672edb02013-02-22 09:15:49 +00002603 if (!getLangOpts().CPlusPlus11 || !isCXX11AttributeSpecifier())
Sean Hunt2edf0a22012-06-23 05:07:58 +00002604 goto DoneWithDeclSpec;
2605
2606 ProhibitAttributes(attrs);
2607 // FIXME: It would be good to recover by accepting the attributes,
2608 // but attempting to do that now would cause serious
2609 // madness in terms of diagnostics.
2610 attrs.clear();
2611 attrs.Range = SourceRange();
2612
2613 ParseCXX11Attributes(attrs);
2614 AttrsLastTime = true;
Chad Rosier8decdee2012-06-26 22:30:43 +00002615 continue;
Sean Hunt2edf0a22012-06-23 05:07:58 +00002616
Douglas Gregor2ccccb32010-08-23 18:23:48 +00002617 case tok::code_completion: {
John McCallf312b1e2010-08-26 23:41:50 +00002618 Sema::ParserCompletionContext CCC = Sema::PCC_Namespace;
Douglas Gregor2ccccb32010-08-23 18:23:48 +00002619 if (DS.hasTypeSpecifier()) {
2620 bool AllowNonIdentifiers
2621 = (getCurScope()->getFlags() & (Scope::ControlScope |
2622 Scope::BlockScope |
2623 Scope::TemplateParamScope |
2624 Scope::FunctionPrototypeScope |
2625 Scope::AtCatchScope)) == 0;
2626 bool AllowNestedNameSpecifiers
Chad Rosier8decdee2012-06-26 22:30:43 +00002627 = DSContext == DSC_top_level ||
Douglas Gregor2ccccb32010-08-23 18:23:48 +00002628 (DSContext == DSC_class && DS.isFriendSpecified());
2629
Douglas Gregorc7b6d882010-09-16 15:14:18 +00002630 Actions.CodeCompleteDeclSpec(getCurScope(), DS,
Chad Rosier8decdee2012-06-26 22:30:43 +00002631 AllowNonIdentifiers,
Douglas Gregorc7b6d882010-09-16 15:14:18 +00002632 AllowNestedNameSpecifiers);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002633 return cutOffParsing();
Chad Rosier8decdee2012-06-26 22:30:43 +00002634 }
2635
Douglas Gregor68e3c2e2011-02-15 20:33:25 +00002636 if (getCurScope()->getFnParent() || getCurScope()->getBlockParent())
2637 CCC = Sema::PCC_LocalDeclarationSpecifiers;
2638 else if (TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate)
Chad Rosier8decdee2012-06-26 22:30:43 +00002639 CCC = DSContext == DSC_class? Sema::PCC_MemberTemplate
John McCallf312b1e2010-08-26 23:41:50 +00002640 : Sema::PCC_Template;
Douglas Gregor2ccccb32010-08-23 18:23:48 +00002641 else if (DSContext == DSC_class)
John McCallf312b1e2010-08-26 23:41:50 +00002642 CCC = Sema::PCC_Class;
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00002643 else if (CurParsedObjCImpl)
John McCallf312b1e2010-08-26 23:41:50 +00002644 CCC = Sema::PCC_ObjCImplementation;
Chad Rosier8decdee2012-06-26 22:30:43 +00002645
Douglas Gregor2ccccb32010-08-23 18:23:48 +00002646 Actions.CodeCompleteOrdinaryName(getCurScope(), CCC);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002647 return cutOffParsing();
Douglas Gregor2ccccb32010-08-23 18:23:48 +00002648 }
2649
Chris Lattner5e02c472009-01-05 00:07:25 +00002650 case tok::coloncolon: // ::foo::bar
John McCall9ba61662010-02-26 08:45:28 +00002651 // C++ scope specifier. Annotate and loop, or bail out on error.
Eli Friedman5a428202013-08-15 23:59:20 +00002652 if (TryAnnotateCXXScopeToken(EnteringContext)) {
John McCall9ba61662010-02-26 08:45:28 +00002653 if (!DS.hasTypeSpecifier())
2654 DS.SetTypeSpecError();
2655 goto DoneWithDeclSpec;
2656 }
John McCall2e0a7152010-03-01 18:20:46 +00002657 if (Tok.is(tok::coloncolon)) // ::new or ::delete
2658 goto DoneWithDeclSpec;
John McCall9ba61662010-02-26 08:45:28 +00002659 continue;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002660
2661 case tok::annot_cxxscope: {
Richard Smithf63eee72012-05-09 18:56:43 +00002662 if (DS.hasTypeSpecifier() || DS.isTypeAltiVecVector())
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002663 goto DoneWithDeclSpec;
2664
John McCallaa87d332009-12-12 11:40:51 +00002665 CXXScopeSpec SS;
Douglas Gregorc34348a2011-02-24 17:54:50 +00002666 Actions.RestoreNestedNameSpecifierAnnotation(Tok.getAnnotationValue(),
2667 Tok.getAnnotationRange(),
2668 SS);
John McCallaa87d332009-12-12 11:40:51 +00002669
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002670 // We are looking for a qualified typename.
Douglas Gregor9135c722009-03-25 15:40:00 +00002671 Token Next = NextToken();
Mike Stump1eb44332009-09-09 15:08:12 +00002672 if (Next.is(tok::annot_template_id) &&
Douglas Gregor9135c722009-03-25 15:40:00 +00002673 static_cast<TemplateIdAnnotation *>(Next.getAnnotationValue())
Douglas Gregorc45c2322009-03-31 00:43:58 +00002674 ->Kind == TNK_Type_template) {
Douglas Gregor9135c722009-03-25 15:40:00 +00002675 // We have a qualified template-id, e.g., N::A<int>
Douglas Gregor0efc2c12010-01-13 17:31:36 +00002676
2677 // C++ [class.qual]p2:
2678 // In a lookup in which the constructor is an acceptable lookup
2679 // result and the nested-name-specifier nominates a class C:
2680 //
2681 // - if the name specified after the
2682 // nested-name-specifier, when looked up in C, is the
2683 // injected-class-name of C (Clause 9), or
2684 //
2685 // - if the name specified after the nested-name-specifier
2686 // is the same as the identifier or the
2687 // simple-template-id's template-name in the last
2688 // component of the nested-name-specifier,
2689 //
2690 // the name is instead considered to name the constructor of
2691 // class C.
Chad Rosier8decdee2012-06-26 22:30:43 +00002692 //
Douglas Gregor0efc2c12010-01-13 17:31:36 +00002693 // Thus, if the template-name is actually the constructor
2694 // name, then the code is ill-formed; this interpretation is
Chad Rosier8decdee2012-06-26 22:30:43 +00002695 // reinforced by the NAD status of core issue 635.
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +00002696 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Next);
Dmitri Gribenko1b9e8f72013-02-12 17:27:41 +00002697 if ((DSContext == DSC_top_level || DSContext == DSC_class) &&
John McCallba9d8532010-04-13 06:39:49 +00002698 TemplateId->Name &&
Douglas Gregor23c94db2010-07-02 17:43:08 +00002699 Actions.isCurrentClassName(*TemplateId->Name, getCurScope(), &SS)) {
Stephen Hines651f13c2014-04-23 16:59:28 -07002700 if (isConstructorDeclarator(/*Unqualified*/false)) {
Douglas Gregor0efc2c12010-01-13 17:31:36 +00002701 // The user meant this to be an out-of-line constructor
2702 // definition, but template arguments are not allowed
2703 // there. Just allow this as a constructor; we'll
2704 // complain about it later.
2705 goto DoneWithDeclSpec;
2706 }
2707
2708 // The user meant this to name a type, but it actually names
2709 // a constructor with some extraneous template
2710 // arguments. Complain, then parse it as a type as the user
2711 // intended.
2712 Diag(TemplateId->TemplateNameLoc,
2713 diag::err_out_of_line_template_id_names_constructor)
2714 << TemplateId->Name;
2715 }
2716
John McCallaa87d332009-12-12 11:40:51 +00002717 DS.getTypeSpecScope() = SS;
2718 ConsumeToken(); // The C++ scope.
Mike Stump1eb44332009-09-09 15:08:12 +00002719 assert(Tok.is(tok::annot_template_id) &&
Douglas Gregor9135c722009-03-25 15:40:00 +00002720 "ParseOptionalCXXScopeSpecifier not working");
Douglas Gregor059101f2011-03-02 00:47:37 +00002721 AnnotateTemplateIdTokenAsType();
Douglas Gregor9135c722009-03-25 15:40:00 +00002722 continue;
2723 }
2724
Douglas Gregor9d7b3532009-09-28 07:26:33 +00002725 if (Next.is(tok::annot_typename)) {
John McCallaa87d332009-12-12 11:40:51 +00002726 DS.getTypeSpecScope() = SS;
2727 ConsumeToken(); // The C++ scope.
John McCallb3d87482010-08-24 05:47:05 +00002728 if (Tok.getAnnotationValue()) {
2729 ParsedType T = getTypeAnnotation(Tok);
Nico Weber253e80b2010-11-22 10:30:56 +00002730 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename,
Chad Rosier8decdee2012-06-26 22:30:43 +00002731 Tok.getAnnotationEndLoc(),
Stephen Hines651f13c2014-04-23 16:59:28 -07002732 PrevSpec, DiagID, T, Policy);
Richard Smithb3cd3c02012-09-14 18:27:01 +00002733 if (isInvalid)
2734 break;
John McCallb3d87482010-08-24 05:47:05 +00002735 }
Douglas Gregor9d7b3532009-09-28 07:26:33 +00002736 else
2737 DS.SetTypeSpecError();
2738 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
2739 ConsumeToken(); // The typename
2740 }
2741
Douglas Gregor9135c722009-03-25 15:40:00 +00002742 if (Next.isNot(tok::identifier))
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002743 goto DoneWithDeclSpec;
2744
Douglas Gregor0efc2c12010-01-13 17:31:36 +00002745 // If we're in a context where the identifier could be a class name,
2746 // check whether this is a constructor declaration.
Dmitri Gribenko1b9e8f72013-02-12 17:27:41 +00002747 if ((DSContext == DSC_top_level || DSContext == DSC_class) &&
Chad Rosier8decdee2012-06-26 22:30:43 +00002748 Actions.isCurrentClassName(*Next.getIdentifierInfo(), getCurScope(),
Douglas Gregor0efc2c12010-01-13 17:31:36 +00002749 &SS)) {
Stephen Hines651f13c2014-04-23 16:59:28 -07002750 if (isConstructorDeclarator(/*Unqualified*/false))
Douglas Gregor0efc2c12010-01-13 17:31:36 +00002751 goto DoneWithDeclSpec;
2752
2753 // As noted in C++ [class.qual]p2 (cited above), when the name
2754 // of the class is qualified in a context where it could name
2755 // a constructor, its a constructor name. However, we've
2756 // looked at the declarator, and the user probably meant this
2757 // to be a type. Complain that it isn't supposed to be treated
2758 // as a type, then proceed to parse it as a type.
2759 Diag(Next.getLocation(), diag::err_out_of_line_type_names_constructor)
2760 << Next.getIdentifierInfo();
2761 }
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002762
John McCallb3d87482010-08-24 05:47:05 +00002763 ParsedType TypeRep = Actions.getTypeName(*Next.getIdentifierInfo(),
2764 Next.getLocation(),
Douglas Gregor9e876872011-03-01 18:12:44 +00002765 getCurScope(), &SS,
2766 false, false, ParsedType(),
Abramo Bagnarafad03b72012-01-27 08:46:19 +00002767 /*IsCtorOrDtorName=*/false,
Douglas Gregor9e876872011-03-01 18:12:44 +00002768 /*NonTrivialSourceInfo=*/true);
Douglas Gregor55f6b142009-02-09 18:46:07 +00002769
Chris Lattnerf4382f52009-04-14 22:17:06 +00002770 // If the referenced identifier is not a type, then this declspec is
2771 // erroneous: We already checked about that it has no type specifier, and
2772 // C++ doesn't have implicit int. Diagnose it as a typo w.r.t. to the
Mike Stump1eb44332009-09-09 15:08:12 +00002773 // typename.
David Blaikie7247c882013-05-15 07:37:26 +00002774 if (!TypeRep) {
Chris Lattnerf4382f52009-04-14 22:17:06 +00002775 ConsumeToken(); // Eat the scope spec so the identifier is current.
Michael Han2e397132012-11-26 22:54:45 +00002776 ParsedAttributesWithRange Attrs(AttrFactory);
2777 if (ParseImplicitInt(DS, &SS, TemplateInfo, AS, DSContext, Attrs)) {
2778 if (!Attrs.empty()) {
2779 AttrsLastTime = true;
2780 attrs.takeAllFrom(Attrs);
2781 }
2782 continue;
2783 }
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002784 goto DoneWithDeclSpec;
Chris Lattnerf4382f52009-04-14 22:17:06 +00002785 }
Mike Stump1eb44332009-09-09 15:08:12 +00002786
John McCallaa87d332009-12-12 11:40:51 +00002787 DS.getTypeSpecScope() = SS;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002788 ConsumeToken(); // The C++ scope.
2789
Douglas Gregor1a51b4a2009-02-09 15:09:02 +00002790 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
Stephen Hines651f13c2014-04-23 16:59:28 -07002791 DiagID, TypeRep, Policy);
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002792 if (isInvalid)
2793 break;
Mike Stump1eb44332009-09-09 15:08:12 +00002794
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002795 DS.SetRangeEnd(Tok.getLocation());
2796 ConsumeToken(); // The typename.
2797
2798 continue;
2799 }
Mike Stump1eb44332009-09-09 15:08:12 +00002800
Chris Lattner80d0c892009-01-21 19:48:37 +00002801 case tok::annot_typename: {
Bill Wendlingf0cc19f2013-11-19 22:56:43 +00002802 // If we've previously seen a tag definition, we were almost surely
2803 // missing a semicolon after it.
2804 if (DS.hasTypeSpecifier() && DS.hasTagDefinition())
2805 goto DoneWithDeclSpec;
2806
John McCallb3d87482010-08-24 05:47:05 +00002807 if (Tok.getAnnotationValue()) {
2808 ParsedType T = getTypeAnnotation(Tok);
Nico Weberc43271e2010-11-22 12:50:03 +00002809 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
Stephen Hines651f13c2014-04-23 16:59:28 -07002810 DiagID, T, Policy);
John McCallb3d87482010-08-24 05:47:05 +00002811 } else
Douglas Gregor31a19b62009-04-01 21:51:26 +00002812 DS.SetTypeSpecError();
Chad Rosier8decdee2012-06-26 22:30:43 +00002813
Chris Lattner5c5db552010-04-05 18:18:31 +00002814 if (isInvalid)
2815 break;
2816
Chris Lattner80d0c892009-01-21 19:48:37 +00002817 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
2818 ConsumeToken(); // The typename
Mike Stump1eb44332009-09-09 15:08:12 +00002819
Chris Lattner80d0c892009-01-21 19:48:37 +00002820 // Objective-C supports syntax of the form 'id<proto1,proto2>' where 'id'
2821 // is a specific typedef and 'itf<proto1,proto2>' where 'itf' is an
Chad Rosier8decdee2012-06-26 22:30:43 +00002822 // Objective-C interface.
David Blaikie4e4d0842012-03-11 07:00:24 +00002823 if (Tok.is(tok::less) && getLangOpts().ObjC1)
Douglas Gregor9bd1d8d2010-10-21 23:17:00 +00002824 ParseObjCProtocolQualifiers(DS);
Chad Rosier8decdee2012-06-26 22:30:43 +00002825
Chris Lattner80d0c892009-01-21 19:48:37 +00002826 continue;
2827 }
Mike Stump1eb44332009-09-09 15:08:12 +00002828
Douglas Gregorbfad9152011-04-28 15:48:45 +00002829 case tok::kw___is_signed:
2830 // GNU libstdc++ 4.4 uses __is_signed as an identifier, but Clang
2831 // typically treats it as a trait. If we see __is_signed as it appears
2832 // in libstdc++, e.g.,
2833 //
2834 // static const bool __is_signed;
2835 //
2836 // then treat __is_signed as an identifier rather than as a keyword.
2837 if (DS.getTypeSpecType() == TST_bool &&
2838 DS.getTypeQualifiers() == DeclSpec::TQ_const &&
Bill Wendling03e463e2013-12-16 02:32:55 +00002839 DS.getStorageClassSpec() == DeclSpec::SCS_static)
2840 TryKeywordIdentFallback(true);
Douglas Gregorbfad9152011-04-28 15:48:45 +00002841
2842 // We're done with the declaration-specifiers.
2843 goto DoneWithDeclSpec;
Chad Rosier8decdee2012-06-26 22:30:43 +00002844
Chris Lattner3bd934a2008-07-26 01:18:38 +00002845 // typedef-name
Stephen Hines176edba2014-12-01 14:53:08 -08002846 case tok::kw___super:
David Blaikie42d6d0c2011-12-04 05:04:18 +00002847 case tok::kw_decltype:
Chris Lattner3bd934a2008-07-26 01:18:38 +00002848 case tok::identifier: {
2849 // This identifier can only be a typedef name if we haven't already seen
2850 // a type-specifier. Without this check we misparse:
2851 // typedef int X; struct Y { short X; }; as 'short int'.
2852 if (DS.hasTypeSpecifier())
2853 goto DoneWithDeclSpec;
Mike Stump1eb44332009-09-09 15:08:12 +00002854
Stephen Hines176edba2014-12-01 14:53:08 -08002855 // In C++, check to see if this is a scope specifier like foo::bar::, if
2856 // so handle it as such. This is important for ctor parsing.
2857 if (getLangOpts().CPlusPlus) {
2858 if (TryAnnotateCXXScopeToken(EnteringContext)) {
2859 DS.SetTypeSpecError();
2860 goto DoneWithDeclSpec;
2861 }
2862 if (!Tok.is(tok::identifier))
2863 continue;
2864 }
2865
John Thompson82287d12010-02-05 00:12:22 +00002866 // Check for need to substitute AltiVec keyword tokens.
2867 if (TryAltiVecToken(DS, Loc, PrevSpec, DiagID, isInvalid))
2868 break;
2869
Richard Smithf63eee72012-05-09 18:56:43 +00002870 // [AltiVec] 2.2: [If the 'vector' specifier is used] The syntax does not
2871 // allow the use of a typedef name as a type specifier.
2872 if (DS.isTypeAltiVecVector())
2873 goto DoneWithDeclSpec;
2874
John McCallb3d87482010-08-24 05:47:05 +00002875 ParsedType TypeRep =
2876 Actions.getTypeName(*Tok.getIdentifierInfo(),
2877 Tok.getLocation(), getCurScope());
Douglas Gregor55f6b142009-02-09 18:46:07 +00002878
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002879 // MSVC: If we weren't able to parse a default template argument, and it's
Stephen Hines0e2c34f2015-03-23 12:09:02 -07002880 // just a simple identifier, create a DependentNameType. This will allow
2881 // us to defer the name lookup to template instantiation time, as long we
2882 // forge a NestedNameSpecifier for the current context.
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002883 if (!TypeRep && DSContext == DSC_template_type_arg &&
2884 getLangOpts().MSVCCompat && getCurScope()->isTemplateParamScope()) {
2885 TypeRep = Actions.ActOnDelayedDefaultTemplateArg(
2886 *Tok.getIdentifierInfo(), Tok.getLocation());
2887 }
2888
Chris Lattnerc199ab32009-04-12 20:42:31 +00002889 // If this is not a typedef name, don't parse it as part of the declspec,
2890 // it must be an implicit int or an error.
John McCallb3d87482010-08-24 05:47:05 +00002891 if (!TypeRep) {
Michael Han2e397132012-11-26 22:54:45 +00002892 ParsedAttributesWithRange Attrs(AttrFactory);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002893 if (ParseImplicitInt(DS, nullptr, TemplateInfo, AS, DSContext, Attrs)) {
Michael Han2e397132012-11-26 22:54:45 +00002894 if (!Attrs.empty()) {
2895 AttrsLastTime = true;
2896 attrs.takeAllFrom(Attrs);
2897 }
2898 continue;
2899 }
Chris Lattner3bd934a2008-07-26 01:18:38 +00002900 goto DoneWithDeclSpec;
Chris Lattnerc199ab32009-04-12 20:42:31 +00002901 }
Douglas Gregor55f6b142009-02-09 18:46:07 +00002902
Douglas Gregor0efc2c12010-01-13 17:31:36 +00002903 // If we're in a context where the identifier could be a class name,
2904 // check whether this is a constructor declaration.
David Blaikie4e4d0842012-03-11 07:00:24 +00002905 if (getLangOpts().CPlusPlus && DSContext == DSC_class &&
Douglas Gregor23c94db2010-07-02 17:43:08 +00002906 Actions.isCurrentClassName(*Tok.getIdentifierInfo(), getCurScope()) &&
Stephen Hines651f13c2014-04-23 16:59:28 -07002907 isConstructorDeclarator(/*Unqualified*/true))
Douglas Gregorb48fe382008-10-31 09:07:45 +00002908 goto DoneWithDeclSpec;
2909
Douglas Gregor1a51b4a2009-02-09 15:09:02 +00002910 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
Stephen Hines651f13c2014-04-23 16:59:28 -07002911 DiagID, TypeRep, Policy);
Chris Lattner3bd934a2008-07-26 01:18:38 +00002912 if (isInvalid)
2913 break;
Mike Stump1eb44332009-09-09 15:08:12 +00002914
Chris Lattner3bd934a2008-07-26 01:18:38 +00002915 DS.SetRangeEnd(Tok.getLocation());
2916 ConsumeToken(); // The identifier
2917
2918 // Objective-C supports syntax of the form 'id<proto1,proto2>' where 'id'
2919 // is a specific typedef and 'itf<proto1,proto2>' where 'itf' is an
Chad Rosier8decdee2012-06-26 22:30:43 +00002920 // Objective-C interface.
David Blaikie4e4d0842012-03-11 07:00:24 +00002921 if (Tok.is(tok::less) && getLangOpts().ObjC1)
Douglas Gregor9bd1d8d2010-10-21 23:17:00 +00002922 ParseObjCProtocolQualifiers(DS);
Chad Rosier8decdee2012-06-26 22:30:43 +00002923
Steve Naroff4f9b9f12008-09-22 10:28:57 +00002924 // Need to support trailing type qualifiers (e.g. "id<p> const").
2925 // If a type specifier follows, it will be diagnosed elsewhere.
2926 continue;
Chris Lattner3bd934a2008-07-26 01:18:38 +00002927 }
Douglas Gregor39a8de12009-02-25 19:37:18 +00002928
2929 // type-name
2930 case tok::annot_template_id: {
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +00002931 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregorc45c2322009-03-31 00:43:58 +00002932 if (TemplateId->Kind != TNK_Type_template) {
Douglas Gregor39a8de12009-02-25 19:37:18 +00002933 // This template-id does not refer to a type name, so we're
2934 // done with the type-specifiers.
2935 goto DoneWithDeclSpec;
2936 }
2937
Douglas Gregor0efc2c12010-01-13 17:31:36 +00002938 // If we're in a context where the template-id could be a
2939 // constructor name or specialization, check whether this is a
2940 // constructor declaration.
David Blaikie4e4d0842012-03-11 07:00:24 +00002941 if (getLangOpts().CPlusPlus && DSContext == DSC_class &&
Douglas Gregor23c94db2010-07-02 17:43:08 +00002942 Actions.isCurrentClassName(*TemplateId->Name, getCurScope()) &&
Stephen Hines651f13c2014-04-23 16:59:28 -07002943 isConstructorDeclarator(TemplateId->SS.isEmpty()))
Douglas Gregor0efc2c12010-01-13 17:31:36 +00002944 goto DoneWithDeclSpec;
2945
Douglas Gregor39a8de12009-02-25 19:37:18 +00002946 // Turn the template-id annotation token into a type annotation
2947 // token, then try again to parse it as a type-specifier.
Douglas Gregor31a19b62009-04-01 21:51:26 +00002948 AnnotateTemplateIdTokenAsType();
Douglas Gregor39a8de12009-02-25 19:37:18 +00002949 continue;
2950 }
2951
Reid Spencer5f016e22007-07-11 17:01:13 +00002952 // GNU attributes support.
2953 case tok::kw___attribute:
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002954 ParseGNUAttributes(DS.getAttributes(), nullptr, LateAttrs);
Reid Spencer5f016e22007-07-11 17:01:13 +00002955 continue;
Steve Narofff59e17e2008-12-24 20:59:21 +00002956
2957 // Microsoft declspec support.
2958 case tok::kw___declspec:
John McCall7f040a92010-12-24 02:08:15 +00002959 ParseMicrosoftDeclSpec(DS.getAttributes());
Steve Narofff59e17e2008-12-24 20:59:21 +00002960 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00002961
Steve Naroff239f0732008-12-25 14:16:32 +00002962 // Microsoft single token adornments.
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00002963 case tok::kw___forceinline: {
Serge Pavlovd1fa81c2013-11-13 06:57:53 +00002964 isInvalid = DS.setFunctionSpecForceInline(Loc, PrevSpec, DiagID);
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00002965 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
Richard Smithb3cd3c02012-09-14 18:27:01 +00002966 SourceLocation AttrNameLoc = Tok.getLocation();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002967 DS.getAttributes().addNew(AttrName, AttrNameLoc, nullptr, AttrNameLoc,
2968 nullptr, 0, AttributeList::AS_Keyword);
Richard Smithb3cd3c02012-09-14 18:27:01 +00002969 break;
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00002970 }
Eli Friedman290eeb02009-06-08 23:27:34 +00002971
Aaron Ballmanaa9df092013-05-22 23:25:32 +00002972 case tok::kw___sptr:
2973 case tok::kw___uptr:
Eli Friedman290eeb02009-06-08 23:27:34 +00002974 case tok::kw___ptr64:
Francois Pichet58fd97a2011-08-25 00:36:46 +00002975 case tok::kw___ptr32:
Steve Naroff86bc6cf2008-12-25 14:41:26 +00002976 case tok::kw___w64:
Steve Naroff239f0732008-12-25 14:16:32 +00002977 case tok::kw___cdecl:
2978 case tok::kw___stdcall:
2979 case tok::kw___fastcall:
Douglas Gregorf813a2c2010-05-18 16:57:00 +00002980 case tok::kw___thiscall:
Stephen Hines176edba2014-12-01 14:53:08 -08002981 case tok::kw___vectorcall:
Francois Pichet3bd9aa42011-08-18 09:59:55 +00002982 case tok::kw___unaligned:
John McCall7f040a92010-12-24 02:08:15 +00002983 ParseMicrosoftTypeAttributes(DS.getAttributes());
Eli Friedman290eeb02009-06-08 23:27:34 +00002984 continue;
2985
Dawn Perchik52fc3142010-09-03 01:29:35 +00002986 // Borland single token adornments.
2987 case tok::kw___pascal:
John McCall7f040a92010-12-24 02:08:15 +00002988 ParseBorlandTypeAttributes(DS.getAttributes());
Dawn Perchik52fc3142010-09-03 01:29:35 +00002989 continue;
2990
Peter Collingbournef315fa82011-02-14 01:42:53 +00002991 // OpenCL single token adornments.
2992 case tok::kw___kernel:
2993 ParseOpenCLAttributes(DS.getAttributes());
2994 continue;
2995
Reid Spencer5f016e22007-07-11 17:01:13 +00002996 // storage-class-specifier
2997 case tok::kw_typedef:
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00002998 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_typedef, Loc,
Stephen Hines651f13c2014-04-23 16:59:28 -07002999 PrevSpec, DiagID, Policy);
Stephen Hines0e2c34f2015-03-23 12:09:02 -07003000 isStorageClass = true;
Reid Spencer5f016e22007-07-11 17:01:13 +00003001 break;
3002 case tok::kw_extern:
Richard Smithec642442013-04-12 22:46:28 +00003003 if (DS.getThreadStorageClassSpec() == DeclSpec::TSCS___thread)
Chris Lattner1ab3b962008-11-18 07:48:38 +00003004 Diag(Tok, diag::ext_thread_before) << "extern";
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00003005 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_extern, Loc,
Stephen Hines651f13c2014-04-23 16:59:28 -07003006 PrevSpec, DiagID, Policy);
Stephen Hines0e2c34f2015-03-23 12:09:02 -07003007 isStorageClass = true;
Reid Spencer5f016e22007-07-11 17:01:13 +00003008 break;
Steve Naroff8d54bf22007-12-18 00:16:02 +00003009 case tok::kw___private_extern__:
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00003010 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_private_extern,
Stephen Hines651f13c2014-04-23 16:59:28 -07003011 Loc, PrevSpec, DiagID, Policy);
Stephen Hines0e2c34f2015-03-23 12:09:02 -07003012 isStorageClass = true;
Steve Naroff8d54bf22007-12-18 00:16:02 +00003013 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00003014 case tok::kw_static:
Richard Smithec642442013-04-12 22:46:28 +00003015 if (DS.getThreadStorageClassSpec() == DeclSpec::TSCS___thread)
Chris Lattner1ab3b962008-11-18 07:48:38 +00003016 Diag(Tok, diag::ext_thread_before) << "static";
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00003017 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_static, Loc,
Stephen Hines651f13c2014-04-23 16:59:28 -07003018 PrevSpec, DiagID, Policy);
Stephen Hines0e2c34f2015-03-23 12:09:02 -07003019 isStorageClass = true;
Reid Spencer5f016e22007-07-11 17:01:13 +00003020 break;
3021 case tok::kw_auto:
Richard Smith80ad52f2013-01-02 11:42:31 +00003022 if (getLangOpts().CPlusPlus11) {
Fariborz Jahanian12e3ece2011-02-22 23:17:49 +00003023 if (isKnownToBeTypeSpecifier(GetLookAheadToken(1))) {
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00003024 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_auto, Loc,
Stephen Hines651f13c2014-04-23 16:59:28 -07003025 PrevSpec, DiagID, Policy);
Fariborz Jahanian12e3ece2011-02-22 23:17:49 +00003026 if (!isInvalid)
Richard Smith8f4fb192011-09-04 19:54:14 +00003027 Diag(Tok, diag::ext_auto_storage_class)
Fariborz Jahanian12e3ece2011-02-22 23:17:49 +00003028 << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc());
Richard Smith8f4fb192011-09-04 19:54:14 +00003029 } else
Fariborz Jahanian12e3ece2011-02-22 23:17:49 +00003030 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_auto, Loc, PrevSpec,
Stephen Hines651f13c2014-04-23 16:59:28 -07003031 DiagID, Policy);
Richard Smith8f4fb192011-09-04 19:54:14 +00003032 } else
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00003033 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_auto, Loc,
Stephen Hines651f13c2014-04-23 16:59:28 -07003034 PrevSpec, DiagID, Policy);
Stephen Hines0e2c34f2015-03-23 12:09:02 -07003035 isStorageClass = true;
Reid Spencer5f016e22007-07-11 17:01:13 +00003036 break;
3037 case tok::kw_register:
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00003038 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_register, Loc,
Stephen Hines651f13c2014-04-23 16:59:28 -07003039 PrevSpec, DiagID, Policy);
Stephen Hines0e2c34f2015-03-23 12:09:02 -07003040 isStorageClass = true;
Reid Spencer5f016e22007-07-11 17:01:13 +00003041 break;
Sebastian Redl669d5d72008-11-14 23:42:31 +00003042 case tok::kw_mutable:
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00003043 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_mutable, Loc,
Stephen Hines651f13c2014-04-23 16:59:28 -07003044 PrevSpec, DiagID, Policy);
Stephen Hines0e2c34f2015-03-23 12:09:02 -07003045 isStorageClass = true;
Sebastian Redl669d5d72008-11-14 23:42:31 +00003046 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00003047 case tok::kw___thread:
Richard Smithec642442013-04-12 22:46:28 +00003048 isInvalid = DS.SetStorageClassSpecThread(DeclSpec::TSCS___thread, Loc,
3049 PrevSpec, DiagID);
Stephen Hines0e2c34f2015-03-23 12:09:02 -07003050 isStorageClass = true;
Richard Smithec642442013-04-12 22:46:28 +00003051 break;
3052 case tok::kw_thread_local:
3053 isInvalid = DS.SetStorageClassSpecThread(DeclSpec::TSCS_thread_local, Loc,
3054 PrevSpec, DiagID);
3055 break;
3056 case tok::kw__Thread_local:
3057 isInvalid = DS.SetStorageClassSpecThread(DeclSpec::TSCS__Thread_local,
3058 Loc, PrevSpec, DiagID);
Stephen Hines0e2c34f2015-03-23 12:09:02 -07003059 isStorageClass = true;
Reid Spencer5f016e22007-07-11 17:01:13 +00003060 break;
Mike Stump1eb44332009-09-09 15:08:12 +00003061
Reid Spencer5f016e22007-07-11 17:01:13 +00003062 // function-specifier
3063 case tok::kw_inline:
Serge Pavlovd1fa81c2013-11-13 06:57:53 +00003064 isInvalid = DS.setFunctionSpecInline(Loc, PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +00003065 break;
Douglas Gregorb48fe382008-10-31 09:07:45 +00003066 case tok::kw_virtual:
Serge Pavlovd1fa81c2013-11-13 06:57:53 +00003067 isInvalid = DS.setFunctionSpecVirtual(Loc, PrevSpec, DiagID);
Douglas Gregorb48fe382008-10-31 09:07:45 +00003068 break;
Douglas Gregorb48fe382008-10-31 09:07:45 +00003069 case tok::kw_explicit:
Serge Pavlovd1fa81c2013-11-13 06:57:53 +00003070 isInvalid = DS.setFunctionSpecExplicit(Loc, PrevSpec, DiagID);
Douglas Gregorb48fe382008-10-31 09:07:45 +00003071 break;
Richard Smithde03c152013-01-17 22:16:11 +00003072 case tok::kw__Noreturn:
3073 if (!getLangOpts().C11)
3074 Diag(Loc, diag::ext_c11_noreturn);
Serge Pavlovd1fa81c2013-11-13 06:57:53 +00003075 isInvalid = DS.setFunctionSpecNoreturn(Loc, PrevSpec, DiagID);
Richard Smithde03c152013-01-17 22:16:11 +00003076 break;
Chris Lattner80d0c892009-01-21 19:48:37 +00003077
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00003078 // alignment-specifier
3079 case tok::kw__Alignas:
David Blaikie4e4d0842012-03-11 07:00:24 +00003080 if (!getLangOpts().C11)
Jordan Rosef70a8862012-06-30 21:33:57 +00003081 Diag(Tok, diag::ext_c11_alignment) << Tok.getName();
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00003082 ParseAlignmentSpecifier(DS.getAttributes());
3083 continue;
3084
Anders Carlssonf47f7a12009-05-06 04:46:28 +00003085 // friend
3086 case tok::kw_friend:
John McCall67d1a672009-08-06 02:15:43 +00003087 if (DSContext == DSC_class)
3088 isInvalid = DS.SetFriendSpec(Loc, PrevSpec, DiagID);
3089 else {
3090 PrevSpec = ""; // not actually used by the diagnostic
3091 DiagID = diag::err_friend_invalid_in_context;
3092 isInvalid = true;
3093 }
Anders Carlssonf47f7a12009-05-06 04:46:28 +00003094 break;
Mike Stump1eb44332009-09-09 15:08:12 +00003095
Douglas Gregor8d267c52011-09-09 02:06:17 +00003096 // Modules
3097 case tok::kw___module_private__:
3098 isInvalid = DS.setModulePrivateSpec(Loc, PrevSpec, DiagID);
3099 break;
Chad Rosier8decdee2012-06-26 22:30:43 +00003100
Sebastian Redl2ac67232009-11-05 15:47:02 +00003101 // constexpr
3102 case tok::kw_constexpr:
3103 isInvalid = DS.SetConstexprSpec(Loc, PrevSpec, DiagID);
3104 break;
3105
Chris Lattner80d0c892009-01-21 19:48:37 +00003106 // type-specifier
3107 case tok::kw_short:
John McCallfec54012009-08-03 20:12:06 +00003108 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_short, Loc, PrevSpec,
Stephen Hines651f13c2014-04-23 16:59:28 -07003109 DiagID, Policy);
Chris Lattner80d0c892009-01-21 19:48:37 +00003110 break;
3111 case tok::kw_long:
3112 if (DS.getTypeSpecWidth() != DeclSpec::TSW_long)
John McCallfec54012009-08-03 20:12:06 +00003113 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_long, Loc, PrevSpec,
Stephen Hines651f13c2014-04-23 16:59:28 -07003114 DiagID, Policy);
Chris Lattner80d0c892009-01-21 19:48:37 +00003115 else
John McCallfec54012009-08-03 20:12:06 +00003116 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_longlong, Loc, PrevSpec,
Stephen Hines651f13c2014-04-23 16:59:28 -07003117 DiagID, Policy);
Chris Lattner80d0c892009-01-21 19:48:37 +00003118 break;
Francois Pichet338d7f72011-04-28 01:59:37 +00003119 case tok::kw___int64:
3120 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_longlong, Loc, PrevSpec,
Stephen Hines651f13c2014-04-23 16:59:28 -07003121 DiagID, Policy);
Francois Pichet338d7f72011-04-28 01:59:37 +00003122 break;
Chris Lattner80d0c892009-01-21 19:48:37 +00003123 case tok::kw_signed:
John McCallfec54012009-08-03 20:12:06 +00003124 isInvalid = DS.SetTypeSpecSign(DeclSpec::TSS_signed, Loc, PrevSpec,
3125 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00003126 break;
3127 case tok::kw_unsigned:
John McCallfec54012009-08-03 20:12:06 +00003128 isInvalid = DS.SetTypeSpecSign(DeclSpec::TSS_unsigned, Loc, PrevSpec,
3129 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00003130 break;
3131 case tok::kw__Complex:
John McCallfec54012009-08-03 20:12:06 +00003132 isInvalid = DS.SetTypeSpecComplex(DeclSpec::TSC_complex, Loc, PrevSpec,
3133 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00003134 break;
3135 case tok::kw__Imaginary:
John McCallfec54012009-08-03 20:12:06 +00003136 isInvalid = DS.SetTypeSpecComplex(DeclSpec::TSC_imaginary, Loc, PrevSpec,
3137 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00003138 break;
3139 case tok::kw_void:
John McCallfec54012009-08-03 20:12:06 +00003140 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_void, Loc, PrevSpec,
Stephen Hines651f13c2014-04-23 16:59:28 -07003141 DiagID, Policy);
Chris Lattner80d0c892009-01-21 19:48:37 +00003142 break;
3143 case tok::kw_char:
John McCallfec54012009-08-03 20:12:06 +00003144 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char, Loc, PrevSpec,
Stephen Hines651f13c2014-04-23 16:59:28 -07003145 DiagID, Policy);
Chris Lattner80d0c892009-01-21 19:48:37 +00003146 break;
3147 case tok::kw_int:
John McCallfec54012009-08-03 20:12:06 +00003148 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, PrevSpec,
Stephen Hines651f13c2014-04-23 16:59:28 -07003149 DiagID, Policy);
Chris Lattner80d0c892009-01-21 19:48:37 +00003150 break;
Richard Smith5a5a9712012-04-04 06:24:32 +00003151 case tok::kw___int128:
3152 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_int128, Loc, PrevSpec,
Stephen Hines651f13c2014-04-23 16:59:28 -07003153 DiagID, Policy);
Richard Smith5a5a9712012-04-04 06:24:32 +00003154 break;
3155 case tok::kw_half:
3156 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_half, Loc, PrevSpec,
Stephen Hines651f13c2014-04-23 16:59:28 -07003157 DiagID, Policy);
Richard Smith5a5a9712012-04-04 06:24:32 +00003158 break;
Chris Lattner80d0c892009-01-21 19:48:37 +00003159 case tok::kw_float:
John McCallfec54012009-08-03 20:12:06 +00003160 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_float, Loc, PrevSpec,
Stephen Hines651f13c2014-04-23 16:59:28 -07003161 DiagID, Policy);
Chris Lattner80d0c892009-01-21 19:48:37 +00003162 break;
3163 case tok::kw_double:
John McCallfec54012009-08-03 20:12:06 +00003164 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_double, Loc, PrevSpec,
Stephen Hines651f13c2014-04-23 16:59:28 -07003165 DiagID, Policy);
Chris Lattner80d0c892009-01-21 19:48:37 +00003166 break;
3167 case tok::kw_wchar_t:
John McCallfec54012009-08-03 20:12:06 +00003168 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_wchar, Loc, PrevSpec,
Stephen Hines651f13c2014-04-23 16:59:28 -07003169 DiagID, Policy);
Chris Lattner80d0c892009-01-21 19:48:37 +00003170 break;
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00003171 case tok::kw_char16_t:
John McCallfec54012009-08-03 20:12:06 +00003172 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char16, Loc, PrevSpec,
Stephen Hines651f13c2014-04-23 16:59:28 -07003173 DiagID, Policy);
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00003174 break;
3175 case tok::kw_char32_t:
John McCallfec54012009-08-03 20:12:06 +00003176 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char32, Loc, PrevSpec,
Stephen Hines651f13c2014-04-23 16:59:28 -07003177 DiagID, Policy);
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00003178 break;
Chris Lattner80d0c892009-01-21 19:48:37 +00003179 case tok::kw_bool:
3180 case tok::kw__Bool:
Argyrios Kyrtzidis4383e182010-11-16 18:18:13 +00003181 if (Tok.is(tok::kw_bool) &&
3182 DS.getTypeSpecType() != DeclSpec::TST_unspecified &&
3183 DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
3184 PrevSpec = ""; // Not used by the diagnostic.
3185 DiagID = diag::err_bool_redeclaration;
Fariborz Jahaniane106a0b2011-04-19 21:42:37 +00003186 // For better error recovery.
3187 Tok.setKind(tok::identifier);
Argyrios Kyrtzidis4383e182010-11-16 18:18:13 +00003188 isInvalid = true;
3189 } else {
3190 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_bool, Loc, PrevSpec,
Stephen Hines651f13c2014-04-23 16:59:28 -07003191 DiagID, Policy);
Argyrios Kyrtzidis4383e182010-11-16 18:18:13 +00003192 }
Chris Lattner80d0c892009-01-21 19:48:37 +00003193 break;
3194 case tok::kw__Decimal32:
John McCallfec54012009-08-03 20:12:06 +00003195 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal32, Loc, PrevSpec,
Stephen Hines651f13c2014-04-23 16:59:28 -07003196 DiagID, Policy);
Chris Lattner80d0c892009-01-21 19:48:37 +00003197 break;
3198 case tok::kw__Decimal64:
John McCallfec54012009-08-03 20:12:06 +00003199 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal64, Loc, PrevSpec,
Stephen Hines651f13c2014-04-23 16:59:28 -07003200 DiagID, Policy);
Chris Lattner80d0c892009-01-21 19:48:37 +00003201 break;
3202 case tok::kw__Decimal128:
John McCallfec54012009-08-03 20:12:06 +00003203 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal128, Loc, PrevSpec,
Stephen Hines651f13c2014-04-23 16:59:28 -07003204 DiagID, Policy);
Chris Lattner80d0c892009-01-21 19:48:37 +00003205 break;
John Thompson82287d12010-02-05 00:12:22 +00003206 case tok::kw___vector:
Stephen Hines651f13c2014-04-23 16:59:28 -07003207 isInvalid = DS.SetTypeAltiVecVector(true, Loc, PrevSpec, DiagID, Policy);
John Thompson82287d12010-02-05 00:12:22 +00003208 break;
3209 case tok::kw___pixel:
Stephen Hines651f13c2014-04-23 16:59:28 -07003210 isInvalid = DS.SetTypeAltiVecPixel(true, Loc, PrevSpec, DiagID, Policy);
Guy Benyeie6b9d802013-01-20 12:31:11 +00003211 break;
Stephen Hines0e2c34f2015-03-23 12:09:02 -07003212 case tok::kw___bool:
3213 isInvalid = DS.SetTypeAltiVecBool(true, Loc, PrevSpec, DiagID, Policy);
3214 break;
John McCalla5fc4722011-04-09 22:50:59 +00003215 case tok::kw___unknown_anytype:
3216 isInvalid = DS.SetTypeSpecType(TST_unknown_anytype, Loc,
Stephen Hines651f13c2014-04-23 16:59:28 -07003217 PrevSpec, DiagID, Policy);
John McCalla5fc4722011-04-09 22:50:59 +00003218 break;
Chris Lattner80d0c892009-01-21 19:48:37 +00003219
3220 // class-specifier:
3221 case tok::kw_class:
3222 case tok::kw_struct:
Joao Matos6666ed42012-08-31 18:45:21 +00003223 case tok::kw___interface:
Chris Lattner4c97d762009-04-12 21:49:30 +00003224 case tok::kw_union: {
3225 tok::TokenKind Kind = Tok.getKind();
3226 ConsumeToken();
Michael Han2e397132012-11-26 22:54:45 +00003227
3228 // These are attributes following class specifiers.
3229 // To produce better diagnostic, we parse them when
3230 // parsing class specifier.
Bill Wendlingad017fa2012-12-20 19:22:21 +00003231 ParsedAttributesWithRange Attributes(AttrFactory);
Richard Smith69730c12012-03-12 07:56:15 +00003232 ParseClassSpecifier(Kind, Loc, DS, TemplateInfo, AS,
Bill Wendlingad017fa2012-12-20 19:22:21 +00003233 EnteringContext, DSContext, Attributes);
Michael Han2e397132012-11-26 22:54:45 +00003234
3235 // If there are attributes following class specifier,
3236 // take them over and handle them here.
Bill Wendlingad017fa2012-12-20 19:22:21 +00003237 if (!Attributes.empty()) {
Michael Han2e397132012-11-26 22:54:45 +00003238 AttrsLastTime = true;
Bill Wendlingad017fa2012-12-20 19:22:21 +00003239 attrs.takeAllFrom(Attributes);
Michael Han2e397132012-11-26 22:54:45 +00003240 }
Chris Lattner80d0c892009-01-21 19:48:37 +00003241 continue;
Chris Lattner4c97d762009-04-12 21:49:30 +00003242 }
Chris Lattner80d0c892009-01-21 19:48:37 +00003243
3244 // enum-specifier:
3245 case tok::kw_enum:
Chris Lattner4c97d762009-04-12 21:49:30 +00003246 ConsumeToken();
Richard Smith69730c12012-03-12 07:56:15 +00003247 ParseEnumSpecifier(Loc, DS, TemplateInfo, AS, DSContext);
Chris Lattner80d0c892009-01-21 19:48:37 +00003248 continue;
3249
3250 // cv-qualifier:
3251 case tok::kw_const:
John McCallfec54012009-08-03 20:12:06 +00003252 isInvalid = DS.SetTypeQual(DeclSpec::TQ_const, Loc, PrevSpec, DiagID,
Richard Smithd654f2d2012-10-17 23:31:46 +00003253 getLangOpts());
Chris Lattner80d0c892009-01-21 19:48:37 +00003254 break;
3255 case tok::kw_volatile:
John McCallfec54012009-08-03 20:12:06 +00003256 isInvalid = DS.SetTypeQual(DeclSpec::TQ_volatile, Loc, PrevSpec, DiagID,
Richard Smithd654f2d2012-10-17 23:31:46 +00003257 getLangOpts());
Chris Lattner80d0c892009-01-21 19:48:37 +00003258 break;
3259 case tok::kw_restrict:
John McCallfec54012009-08-03 20:12:06 +00003260 isInvalid = DS.SetTypeQual(DeclSpec::TQ_restrict, Loc, PrevSpec, DiagID,
Richard Smithd654f2d2012-10-17 23:31:46 +00003261 getLangOpts());
Chris Lattner80d0c892009-01-21 19:48:37 +00003262 break;
3263
Douglas Gregord57959a2009-03-27 23:10:48 +00003264 // C++ typename-specifier:
3265 case tok::kw_typename:
John McCall9ba61662010-02-26 08:45:28 +00003266 if (TryAnnotateTypeOrScopeToken()) {
3267 DS.SetTypeSpecError();
3268 goto DoneWithDeclSpec;
3269 }
3270 if (!Tok.is(tok::kw_typename))
Douglas Gregord57959a2009-03-27 23:10:48 +00003271 continue;
3272 break;
3273
Chris Lattner80d0c892009-01-21 19:48:37 +00003274 // GNU typeof support.
3275 case tok::kw_typeof:
3276 ParseTypeofSpecifier(DS);
3277 continue;
3278
David Blaikie42d6d0c2011-12-04 05:04:18 +00003279 case tok::annot_decltype:
Anders Carlsson6fd634f2009-06-24 17:47:40 +00003280 ParseDecltypeSpecifier(DS);
3281 continue;
3282
Sean Huntdb5d44b2011-05-19 05:37:45 +00003283 case tok::kw___underlying_type:
3284 ParseUnderlyingTypeSpecifier(DS);
Eli Friedmanb001de72011-10-06 23:00:33 +00003285 continue;
3286
3287 case tok::kw__Atomic:
Richard Smith4cf4a5e2013-03-28 01:55:44 +00003288 // C11 6.7.2.4/4:
3289 // If the _Atomic keyword is immediately followed by a left parenthesis,
3290 // it is interpreted as a type specifier (with a type name), not as a
3291 // type qualifier.
3292 if (NextToken().is(tok::l_paren)) {
3293 ParseAtomicSpecifier(DS);
3294 continue;
3295 }
3296 isInvalid = DS.SetTypeQual(DeclSpec::TQ_atomic, Loc, PrevSpec, DiagID,
3297 getLangOpts());
3298 break;
Sean Huntdb5d44b2011-05-19 05:37:45 +00003299
Peter Collingbourne207f4d82011-03-18 22:38:29 +00003300 // OpenCL qualifiers:
Stephen Hines0e2c34f2015-03-23 12:09:02 -07003301 case tok::kw___generic:
3302 // generic address space is introduced only in OpenCL v2.0
3303 // see OpenCL C Spec v2.0 s6.5.5
3304 if (Actions.getLangOpts().OpenCLVersion < 200) {
3305 DiagID = diag::err_opencl_unknown_type_specifier;
3306 PrevSpec = Tok.getIdentifierInfo()->getNameStart();
3307 isInvalid = true;
3308 break;
3309 };
Peter Collingbourne207f4d82011-03-18 22:38:29 +00003310 case tok::kw___private:
3311 case tok::kw___global:
3312 case tok::kw___local:
3313 case tok::kw___constant:
3314 case tok::kw___read_only:
3315 case tok::kw___write_only:
3316 case tok::kw___read_write:
Stephen Hines651f13c2014-04-23 16:59:28 -07003317 ParseOpenCLQualifiers(DS.getAttributes());
Peter Collingbourne207f4d82011-03-18 22:38:29 +00003318 break;
Chad Rosier8decdee2012-06-26 22:30:43 +00003319
Steve Naroffd3ded1f2008-06-05 00:02:44 +00003320 case tok::less:
Chris Lattner3bd934a2008-07-26 01:18:38 +00003321 // GCC ObjC supports types like "<SomeProtocol>" as a synonym for
Chris Lattnerbce61352008-07-26 00:20:22 +00003322 // "id<SomeProtocol>". This is hopelessly old fashioned and dangerous,
3323 // but we support it.
David Blaikie4e4d0842012-03-11 07:00:24 +00003324 if (DS.hasTypeSpecifier() || !getLangOpts().ObjC1)
Chris Lattnerbce61352008-07-26 00:20:22 +00003325 goto DoneWithDeclSpec;
Mike Stump1eb44332009-09-09 15:08:12 +00003326
Douglas Gregor46f936e2010-11-19 17:10:50 +00003327 if (!ParseObjCProtocolQualifiers(DS))
3328 Diag(Loc, diag::warn_objc_protocol_qualifier_missing_id)
3329 << FixItHint::CreateInsertion(Loc, "id")
3330 << SourceRange(Loc, DS.getSourceRange().getEnd());
Chad Rosier8decdee2012-06-26 22:30:43 +00003331
Douglas Gregor9bd1d8d2010-10-21 23:17:00 +00003332 // Need to support trailing type qualifiers (e.g. "id<p> const").
3333 // If a type specifier follows, it will be diagnosed elsewhere.
3334 continue;
Reid Spencer5f016e22007-07-11 17:01:13 +00003335 }
John McCallfec54012009-08-03 20:12:06 +00003336 // If the specifier wasn't legal, issue a diagnostic.
Reid Spencer5f016e22007-07-11 17:01:13 +00003337 if (isInvalid) {
3338 assert(PrevSpec && "Method did not return previous specifier!");
John McCallfec54012009-08-03 20:12:06 +00003339 assert(DiagID);
Chad Rosier8decdee2012-06-26 22:30:43 +00003340
Douglas Gregorae2fb142010-08-23 14:34:43 +00003341 if (DiagID == diag::ext_duplicate_declspec)
3342 Diag(Tok, DiagID)
3343 << PrevSpec << FixItHint::CreateRemoval(Tok.getLocation());
Stephen Hines0e2c34f2015-03-23 12:09:02 -07003344 else if (DiagID == diag::err_opencl_unknown_type_specifier)
3345 Diag(Tok, DiagID) << PrevSpec << isStorageClass;
Douglas Gregorae2fb142010-08-23 14:34:43 +00003346 else
3347 Diag(Tok, DiagID) << PrevSpec;
Reid Spencer5f016e22007-07-11 17:01:13 +00003348 }
Fariborz Jahanian12e3ece2011-02-22 23:17:49 +00003349
Chris Lattner81c018d2008-03-13 06:29:04 +00003350 DS.SetRangeEnd(Tok.getLocation());
Fariborz Jahaniane106a0b2011-04-19 21:42:37 +00003351 if (DiagID != diag::err_bool_redeclaration)
3352 ConsumeToken();
Sean Hunt2edf0a22012-06-23 05:07:58 +00003353
3354 AttrsLastTime = false;
Reid Spencer5f016e22007-07-11 17:01:13 +00003355 }
3356}
Douglas Gregoradcac882008-12-01 23:54:00 +00003357
Chris Lattnercd4b83c2007-10-29 04:42:53 +00003358/// ParseStructDeclaration - Parse a struct declaration without the terminating
3359/// semicolon.
3360///
Reid Spencer5f016e22007-07-11 17:01:13 +00003361/// struct-declaration:
Chris Lattnercd4b83c2007-10-29 04:42:53 +00003362/// specifier-qualifier-list struct-declarator-list
Reid Spencer5f016e22007-07-11 17:01:13 +00003363/// [GNU] __extension__ struct-declaration
Chris Lattnercd4b83c2007-10-29 04:42:53 +00003364/// [GNU] specifier-qualifier-list
Reid Spencer5f016e22007-07-11 17:01:13 +00003365/// struct-declarator-list:
3366/// struct-declarator
3367/// struct-declarator-list ',' struct-declarator
3368/// [GNU] struct-declarator-list ',' attributes[opt] struct-declarator
3369/// struct-declarator:
3370/// declarator
3371/// [GNU] declarator attributes[opt]
3372/// declarator[opt] ':' constant-expression
3373/// [GNU] declarator[opt] ':' constant-expression attributes[opt]
3374///
Stephen Hines176edba2014-12-01 14:53:08 -08003375void Parser::ParseStructDeclaration(
3376 ParsingDeclSpec &DS,
3377 llvm::function_ref<void(ParsingFieldDeclarator &)> FieldsCallback) {
Chad Rosier8decdee2012-06-26 22:30:43 +00003378
Chris Lattnerc46d1a12008-10-20 06:45:43 +00003379 if (Tok.is(tok::kw___extension__)) {
3380 // __extension__ silences extension warnings in the subexpression.
3381 ExtensionRAIIObject O(Diags); // Use RAII to do this.
Steve Naroff28a7ca82007-08-20 22:28:22 +00003382 ConsumeToken();
Stephen Hines176edba2014-12-01 14:53:08 -08003383 return ParseStructDeclaration(DS, FieldsCallback);
Chris Lattnerc46d1a12008-10-20 06:45:43 +00003384 }
Mike Stump1eb44332009-09-09 15:08:12 +00003385
Steve Naroff28a7ca82007-08-20 22:28:22 +00003386 // Parse the common specifier-qualifiers-list piece.
Steve Naroff28a7ca82007-08-20 22:28:22 +00003387 ParseSpecifierQualifierList(DS);
Mike Stump1eb44332009-09-09 15:08:12 +00003388
Douglas Gregor4920f1f2009-01-12 22:49:06 +00003389 // If there are no declarators, this is a free-standing declaration
3390 // specifier. Let the actions module cope with it.
Chris Lattner04d66662007-10-09 17:33:22 +00003391 if (Tok.is(tok::semi)) {
Eli Friedmanf66a0dd2012-08-08 23:04:35 +00003392 Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS_none,
3393 DS);
3394 DS.complete(TheDecl);
Steve Naroff28a7ca82007-08-20 22:28:22 +00003395 return;
3396 }
3397
3398 // Read struct-declarators until we find the semicolon.
John McCallbdd563e2009-11-03 02:38:08 +00003399 bool FirstDeclarator = true;
Richard Smith7984de32012-01-12 23:53:29 +00003400 SourceLocation CommaLoc;
Steve Naroff28a7ca82007-08-20 22:28:22 +00003401 while (1) {
Eli Friedmanf66a0dd2012-08-08 23:04:35 +00003402 ParsingFieldDeclarator DeclaratorInfo(*this, DS);
Richard Smith7984de32012-01-12 23:53:29 +00003403 DeclaratorInfo.D.setCommaLoc(CommaLoc);
John McCallbdd563e2009-11-03 02:38:08 +00003404
Bill Wendlingad017fa2012-12-20 19:22:21 +00003405 // Attributes are only allowed here on successive declarators.
John McCall7f040a92010-12-24 02:08:15 +00003406 if (!FirstDeclarator)
3407 MaybeParseGNUAttributes(DeclaratorInfo.D);
Mike Stump1eb44332009-09-09 15:08:12 +00003408
Steve Naroff28a7ca82007-08-20 22:28:22 +00003409 /// struct-declarator: declarator
3410 /// struct-declarator: declarator[opt] ':' constant-expression
Chris Lattnera1efc8c2009-12-10 01:59:24 +00003411 if (Tok.isNot(tok::colon)) {
3412 // Don't parse FOO:BAR as if it were a typo for FOO::BAR.
3413 ColonProtectionRAIIObject X(*this);
Chris Lattnere1359422008-04-10 06:46:29 +00003414 ParseDeclarator(DeclaratorInfo.D);
Stephen Hines176edba2014-12-01 14:53:08 -08003415 } else
3416 DeclaratorInfo.D.SetIdentifier(nullptr, Tok.getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00003417
Stephen Hines651f13c2014-04-23 16:59:28 -07003418 if (TryConsumeToken(tok::colon)) {
John McCall60d7b3a2010-08-24 06:29:42 +00003419 ExprResult Res(ParseConstantExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00003420 if (Res.isInvalid())
Alexey Bataev8fe24752013-11-18 08:17:37 +00003421 SkipUntil(tok::semi, StopBeforeMatch);
Chris Lattner60b1e3e2008-04-10 06:15:14 +00003422 else
Stephen Hinesc568f1e2014-07-21 00:47:37 -07003423 DeclaratorInfo.BitfieldSize = Res.get();
Steve Naroff28a7ca82007-08-20 22:28:22 +00003424 }
Sebastian Redlab197ba2009-02-09 18:23:29 +00003425
Steve Naroff28a7ca82007-08-20 22:28:22 +00003426 // If attributes exist after the declarator, parse them.
John McCall7f040a92010-12-24 02:08:15 +00003427 MaybeParseGNUAttributes(DeclaratorInfo.D);
Sebastian Redlab197ba2009-02-09 18:23:29 +00003428
John McCallbdd563e2009-11-03 02:38:08 +00003429 // We're done with this declarator; invoke the callback.
Stephen Hines176edba2014-12-01 14:53:08 -08003430 FieldsCallback(DeclaratorInfo);
John McCallbdd563e2009-11-03 02:38:08 +00003431
Steve Naroff28a7ca82007-08-20 22:28:22 +00003432 // If we don't have a comma, it is either the end of the list (a ';')
3433 // or an error, bail out.
Stephen Hines651f13c2014-04-23 16:59:28 -07003434 if (!TryConsumeToken(tok::comma, CommaLoc))
Chris Lattnercd4b83c2007-10-29 04:42:53 +00003435 return;
Sebastian Redlab197ba2009-02-09 18:23:29 +00003436
John McCallbdd563e2009-11-03 02:38:08 +00003437 FirstDeclarator = false;
Steve Naroff28a7ca82007-08-20 22:28:22 +00003438 }
Steve Naroff28a7ca82007-08-20 22:28:22 +00003439}
3440
3441/// ParseStructUnionBody
3442/// struct-contents:
3443/// struct-declaration-list
3444/// [EXT] empty
3445/// [GNU] "struct-declaration-list" without terminatoring ';'
3446/// struct-declaration-list:
3447/// struct-declaration
3448/// struct-declaration-list struct-declaration
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00003449/// [OBC] '@' 'defs' '(' class-name ')'
Steve Naroff28a7ca82007-08-20 22:28:22 +00003450///
Reid Spencer5f016e22007-07-11 17:01:13 +00003451void Parser::ParseStructUnionBody(SourceLocation RecordLoc,
John McCalld226f652010-08-21 09:40:31 +00003452 unsigned TagType, Decl *TagDecl) {
John McCallf312b1e2010-08-26 23:41:50 +00003453 PrettyDeclStackTraceEntry CrashInfo(Actions, TagDecl, RecordLoc,
3454 "parsing struct/union body");
Andy Gibbsf50f3f72013-04-03 09:31:19 +00003455 assert(!getLangOpts().CPlusPlus && "C++ declarations not supported");
Mike Stump1eb44332009-09-09 15:08:12 +00003456
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00003457 BalancedDelimiterTracker T(*this, tok::l_brace);
3458 if (T.consumeOpen())
3459 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003460
Douglas Gregor3218c4b2009-01-09 22:42:13 +00003461 ParseScope StructScope(this, Scope::ClassScope|Scope::DeclScope);
Douglas Gregor23c94db2010-07-02 17:43:08 +00003462 Actions.ActOnTagStartDefinition(getCurScope(), TagDecl);
Douglas Gregor72de6672009-01-08 20:45:30 +00003463
Chris Lattner5f9e2722011-07-23 10:55:15 +00003464 SmallVector<Decl *, 32> FieldDecls;
Chris Lattnere1359422008-04-10 06:46:29 +00003465
Reid Spencer5f016e22007-07-11 17:01:13 +00003466 // While we still have something to read, read the declarations in the struct.
Stephen Hines651f13c2014-04-23 16:59:28 -07003467 while (Tok.isNot(tok::r_brace) && !isEofOrEom()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003468 // Each iteration of this loop reads one struct-declaration.
Mike Stump1eb44332009-09-09 15:08:12 +00003469
Reid Spencer5f016e22007-07-11 17:01:13 +00003470 // Check for extraneous top-level semicolon.
Chris Lattner04d66662007-10-09 17:33:22 +00003471 if (Tok.is(tok::semi)) {
Richard Smitheab9d6f2012-07-23 05:45:25 +00003472 ConsumeExtraSemi(InsideStruct, TagType);
Reid Spencer5f016e22007-07-11 17:01:13 +00003473 continue;
3474 }
Chris Lattnere1359422008-04-10 06:46:29 +00003475
Andy Gibbs74b9fa12013-04-03 09:46:04 +00003476 // Parse _Static_assert declaration.
3477 if (Tok.is(tok::kw__Static_assert)) {
3478 SourceLocation DeclEnd;
3479 ParseStaticAssertDeclaration(DeclEnd);
3480 continue;
3481 }
3482
Argyrios Kyrtzidisbd957452013-04-18 01:42:35 +00003483 if (Tok.is(tok::annot_pragma_pack)) {
3484 HandlePragmaPack();
3485 continue;
3486 }
3487
3488 if (Tok.is(tok::annot_pragma_align)) {
3489 HandlePragmaAlign();
3490 continue;
3491 }
3492
John McCallbdd563e2009-11-03 02:38:08 +00003493 if (!Tok.is(tok::at)) {
Stephen Hines176edba2014-12-01 14:53:08 -08003494 auto CFieldCallback = [&](ParsingFieldDeclarator &FD) {
3495 // Install the declarator into the current TagDecl.
3496 Decl *Field =
3497 Actions.ActOnField(getCurScope(), TagDecl,
3498 FD.D.getDeclSpec().getSourceRange().getBegin(),
3499 FD.D, FD.BitfieldSize);
3500 FieldDecls.push_back(Field);
3501 FD.complete(Field);
3502 };
John McCallbdd563e2009-11-03 02:38:08 +00003503
Eli Friedmanf66a0dd2012-08-08 23:04:35 +00003504 // Parse all the comma separated declarators.
3505 ParsingDeclSpec DS(*this);
Stephen Hines176edba2014-12-01 14:53:08 -08003506 ParseStructDeclaration(DS, CFieldCallback);
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00003507 } else { // Handle @defs
3508 ConsumeToken();
3509 if (!Tok.isObjCAtKeyword(tok::objc_defs)) {
3510 Diag(Tok, diag::err_unexpected_at);
Alexey Bataev8fe24752013-11-18 08:17:37 +00003511 SkipUntil(tok::semi);
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00003512 continue;
3513 }
3514 ConsumeToken();
Stephen Hines651f13c2014-04-23 16:59:28 -07003515 ExpectAndConsume(tok::l_paren);
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00003516 if (!Tok.is(tok::identifier)) {
Stephen Hines651f13c2014-04-23 16:59:28 -07003517 Diag(Tok, diag::err_expected) << tok::identifier;
Alexey Bataev8fe24752013-11-18 08:17:37 +00003518 SkipUntil(tok::semi);
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00003519 continue;
3520 }
Chris Lattner5f9e2722011-07-23 10:55:15 +00003521 SmallVector<Decl *, 16> Fields;
Douglas Gregor23c94db2010-07-02 17:43:08 +00003522 Actions.ActOnDefs(getCurScope(), TagDecl, Tok.getLocation(),
Douglas Gregor44b43212008-12-11 16:49:14 +00003523 Tok.getIdentifierInfo(), Fields);
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00003524 FieldDecls.insert(FieldDecls.end(), Fields.begin(), Fields.end());
3525 ConsumeToken();
Stephen Hines651f13c2014-04-23 16:59:28 -07003526 ExpectAndConsume(tok::r_paren);
Mike Stump1eb44332009-09-09 15:08:12 +00003527 }
Reid Spencer5f016e22007-07-11 17:01:13 +00003528
Stephen Hines651f13c2014-04-23 16:59:28 -07003529 if (TryConsumeToken(tok::semi))
3530 continue;
3531
3532 if (Tok.is(tok::r_brace)) {
Chris Lattner3e156ad2010-02-02 00:37:27 +00003533 ExpectAndConsume(tok::semi, diag::ext_expected_semi_decl_list);
Reid Spencer5f016e22007-07-11 17:01:13 +00003534 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00003535 }
Stephen Hines651f13c2014-04-23 16:59:28 -07003536
3537 ExpectAndConsume(tok::semi, diag::err_expected_semi_decl_list);
3538 // Skip to end of block or statement to avoid ext-warning on extra ';'.
3539 SkipUntil(tok::r_brace, StopAtSemi | StopBeforeMatch);
3540 // If we stopped at a ';', eat it.
3541 TryConsumeToken(tok::semi);
Reid Spencer5f016e22007-07-11 17:01:13 +00003542 }
Mike Stump1eb44332009-09-09 15:08:12 +00003543
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00003544 T.consumeClose();
Mike Stump1eb44332009-09-09 15:08:12 +00003545
John McCall0b7e6782011-03-24 11:26:52 +00003546 ParsedAttributes attrs(AttrFactory);
Reid Spencer5f016e22007-07-11 17:01:13 +00003547 // If attributes exist after struct contents, parse them.
John McCall7f040a92010-12-24 02:08:15 +00003548 MaybeParseGNUAttributes(attrs);
Daniel Dunbar1bfe1c22008-10-03 02:03:53 +00003549
Douglas Gregor23c94db2010-07-02 17:43:08 +00003550 Actions.ActOnFields(getCurScope(),
David Blaikie77b6de02011-09-22 02:58:26 +00003551 RecordLoc, TagDecl, FieldDecls,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00003552 T.getOpenLocation(), T.getCloseLocation(),
John McCall7f040a92010-12-24 02:08:15 +00003553 attrs.getList());
Douglas Gregor72de6672009-01-08 20:45:30 +00003554 StructScope.Exit();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00003555 Actions.ActOnTagFinishDefinition(getCurScope(), TagDecl,
3556 T.getCloseLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00003557}
3558
Reid Spencer5f016e22007-07-11 17:01:13 +00003559/// ParseEnumSpecifier
3560/// enum-specifier: [C99 6.7.2.2]
3561/// 'enum' identifier[opt] '{' enumerator-list '}'
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00003562///[C99/C++]'enum' identifier[opt] '{' enumerator-list ',' '}'
Reid Spencer5f016e22007-07-11 17:01:13 +00003563/// [GNU] 'enum' attributes[opt] identifier[opt] '{' enumerator-list ',' [opt]
3564/// '}' attributes[opt]
Aaron Ballman6454a022012-03-01 04:09:28 +00003565/// [MS] 'enum' __declspec[opt] identifier[opt] '{' enumerator-list ',' [opt]
3566/// '}'
Reid Spencer5f016e22007-07-11 17:01:13 +00003567/// 'enum' identifier
3568/// [GNU] 'enum' attributes[opt] identifier
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00003569///
Richard Smith1af83c42012-03-23 03:33:32 +00003570/// [C++11] enum-head '{' enumerator-list[opt] '}'
3571/// [C++11] enum-head '{' enumerator-list ',' '}'
Douglas Gregor1274ccd2010-10-08 23:50:27 +00003572///
Richard Smith1af83c42012-03-23 03:33:32 +00003573/// enum-head: [C++11]
3574/// enum-key attribute-specifier-seq[opt] identifier[opt] enum-base[opt]
3575/// enum-key attribute-specifier-seq[opt] nested-name-specifier
3576/// identifier enum-base[opt]
Douglas Gregor1274ccd2010-10-08 23:50:27 +00003577///
Richard Smith1af83c42012-03-23 03:33:32 +00003578/// enum-key: [C++11]
Douglas Gregor1274ccd2010-10-08 23:50:27 +00003579/// 'enum'
3580/// 'enum' 'class'
3581/// 'enum' 'struct'
3582///
Richard Smith1af83c42012-03-23 03:33:32 +00003583/// enum-base: [C++11]
Douglas Gregor1274ccd2010-10-08 23:50:27 +00003584/// ':' type-specifier-seq
3585///
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00003586/// [C++] elaborated-type-specifier:
3587/// [C++] 'enum' '::'[opt] nested-name-specifier[opt] identifier
3588///
Chris Lattner4c97d762009-04-12 21:49:30 +00003589void Parser::ParseEnumSpecifier(SourceLocation StartLoc, DeclSpec &DS,
Douglas Gregor9b9edd62010-03-02 17:53:14 +00003590 const ParsedTemplateInfo &TemplateInfo,
Richard Smith69730c12012-03-12 07:56:15 +00003591 AccessSpecifier AS, DeclSpecContext DSC) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003592 // Parse the tag portion of this.
Douglas Gregor374929f2009-09-18 15:37:17 +00003593 if (Tok.is(tok::code_completion)) {
3594 // Code completion for an enum name.
Douglas Gregor23c94db2010-07-02 17:43:08 +00003595 Actions.CodeCompleteTag(getCurScope(), DeclSpec::TST_enum);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00003596 return cutOffParsing();
Douglas Gregor374929f2009-09-18 15:37:17 +00003597 }
John McCall57c13002011-07-06 05:58:41 +00003598
Sean Hunt2edf0a22012-06-23 05:07:58 +00003599 // If attributes exist after tag, parse them.
3600 ParsedAttributesWithRange attrs(AttrFactory);
3601 MaybeParseGNUAttributes(attrs);
Richard Smith4e24f0f2013-01-02 12:01:23 +00003602 MaybeParseCXX11Attributes(attrs);
Sean Hunt2edf0a22012-06-23 05:07:58 +00003603
3604 // If declspecs exist after tag, parse them.
3605 while (Tok.is(tok::kw___declspec))
3606 ParseMicrosoftDeclSpec(attrs);
3607
Richard Smithbdad7a22012-01-10 01:33:14 +00003608 SourceLocation ScopedEnumKWLoc;
John McCall57c13002011-07-06 05:58:41 +00003609 bool IsScopedUsingClassTag = false;
3610
John McCall1e12b3d2012-06-23 22:30:04 +00003611 // In C++11, recognize 'enum class' and 'enum struct'.
Richard Trieued5a2922013-04-23 02:47:36 +00003612 if (Tok.is(tok::kw_class) || Tok.is(tok::kw_struct)) {
3613 Diag(Tok, getLangOpts().CPlusPlus11 ? diag::warn_cxx98_compat_scoped_enum
3614 : diag::ext_scoped_enum);
John McCall57c13002011-07-06 05:58:41 +00003615 IsScopedUsingClassTag = Tok.is(tok::kw_class);
Richard Smithbdad7a22012-01-10 01:33:14 +00003616 ScopedEnumKWLoc = ConsumeToken();
Chad Rosier8decdee2012-06-26 22:30:43 +00003617
Bill Wendlingad017fa2012-12-20 19:22:21 +00003618 // Attributes are not allowed between these keywords. Diagnose,
John McCall1e12b3d2012-06-23 22:30:04 +00003619 // but then just treat them like they appeared in the right place.
Sean Hunt2edf0a22012-06-23 05:07:58 +00003620 ProhibitAttributes(attrs);
John McCall1e12b3d2012-06-23 22:30:04 +00003621
3622 // They are allowed afterwards, though.
3623 MaybeParseGNUAttributes(attrs);
Richard Smith4e24f0f2013-01-02 12:01:23 +00003624 MaybeParseCXX11Attributes(attrs);
John McCall1e12b3d2012-06-23 22:30:04 +00003625 while (Tok.is(tok::kw___declspec))
3626 ParseMicrosoftDeclSpec(attrs);
John McCall57c13002011-07-06 05:58:41 +00003627 }
Richard Smith1af83c42012-03-23 03:33:32 +00003628
John McCall13489672012-05-07 06:16:58 +00003629 // C++11 [temp.explicit]p12:
3630 // The usual access controls do not apply to names used to specify
3631 // explicit instantiations.
3632 // We extend this to also cover explicit specializations. Note that
3633 // we don't suppress if this turns out to be an elaborated type
3634 // specifier.
3635 bool shouldDelayDiagsInTag =
3636 (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation ||
3637 TemplateInfo.Kind == ParsedTemplateInfo::ExplicitSpecialization);
3638 SuppressAccessChecks diagsFromTag(*this, shouldDelayDiagsInTag);
Richard Smith1af83c42012-03-23 03:33:32 +00003639
Richard Smith7796eb52012-03-12 08:56:40 +00003640 // Enum definitions should not be parsed in a trailing-return-type.
3641 bool AllowDeclaration = DSC != DSC_trailing;
3642
3643 bool AllowFixedUnderlyingType = AllowDeclaration &&
Richard Smith80ad52f2013-01-02 11:42:31 +00003644 (getLangOpts().CPlusPlus11 || getLangOpts().MicrosoftExt ||
Richard Smith7796eb52012-03-12 08:56:40 +00003645 getLangOpts().ObjC2);
John McCall57c13002011-07-06 05:58:41 +00003646
Abramo Bagnarae4da7a02010-05-19 21:37:53 +00003647 CXXScopeSpec &SS = DS.getTypeSpecScope();
David Blaikie4e4d0842012-03-11 07:00:24 +00003648 if (getLangOpts().CPlusPlus) {
John McCall57c13002011-07-06 05:58:41 +00003649 // "enum foo : bar;" is not a potential typo for "enum foo::bar;"
3650 // if a fixed underlying type is allowed.
3651 ColonProtectionRAIIObject X(*this, AllowFixedUnderlyingType);
Chad Rosier8decdee2012-06-26 22:30:43 +00003652
Stephen Hines0e2c34f2015-03-23 12:09:02 -07003653 CXXScopeSpec Spec;
3654 if (ParseOptionalCXXScopeSpecifier(Spec, ParsedType(),
Richard Smith725fe0e2013-04-01 21:43:41 +00003655 /*EnteringContext=*/true))
John McCall9ba61662010-02-26 08:45:28 +00003656 return;
3657
Stephen Hines0e2c34f2015-03-23 12:09:02 -07003658 if (Spec.isSet() && Tok.isNot(tok::identifier)) {
Stephen Hines651f13c2014-04-23 16:59:28 -07003659 Diag(Tok, diag::err_expected) << tok::identifier;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00003660 if (Tok.isNot(tok::l_brace)) {
3661 // Has no name and is not a definition.
3662 // Skip the rest of this declarator, up until the comma or semicolon.
Alexey Bataev8fe24752013-11-18 08:17:37 +00003663 SkipUntil(tok::comma, StopAtSemi);
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00003664 return;
3665 }
3666 }
Stephen Hines0e2c34f2015-03-23 12:09:02 -07003667
3668 SS = Spec;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00003669 }
Mike Stump1eb44332009-09-09 15:08:12 +00003670
Argyrios Kyrtzidise281b4c2008-09-11 00:21:41 +00003671 // Must have either 'enum name' or 'enum {...}'.
Douglas Gregorb9075602011-02-22 02:55:24 +00003672 if (Tok.isNot(tok::identifier) && Tok.isNot(tok::l_brace) &&
Richard Smith7796eb52012-03-12 08:56:40 +00003673 !(AllowFixedUnderlyingType && Tok.is(tok::colon))) {
Stephen Hines651f13c2014-04-23 16:59:28 -07003674 Diag(Tok, diag::err_expected_either) << tok::identifier << tok::l_brace;
Mike Stump1eb44332009-09-09 15:08:12 +00003675
Argyrios Kyrtzidise281b4c2008-09-11 00:21:41 +00003676 // Skip the rest of this declarator, up until the comma or semicolon.
Alexey Bataev8fe24752013-11-18 08:17:37 +00003677 SkipUntil(tok::comma, StopAtSemi);
Reid Spencer5f016e22007-07-11 17:01:13 +00003678 return;
Argyrios Kyrtzidise281b4c2008-09-11 00:21:41 +00003679 }
Mike Stump1eb44332009-09-09 15:08:12 +00003680
Argyrios Kyrtzidise281b4c2008-09-11 00:21:41 +00003681 // If an identifier is present, consume and remember it.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003682 IdentifierInfo *Name = nullptr;
Argyrios Kyrtzidise281b4c2008-09-11 00:21:41 +00003683 SourceLocation NameLoc;
3684 if (Tok.is(tok::identifier)) {
3685 Name = Tok.getIdentifierInfo();
3686 NameLoc = ConsumeToken();
3687 }
Mike Stump1eb44332009-09-09 15:08:12 +00003688
Richard Smithbdad7a22012-01-10 01:33:14 +00003689 if (!Name && ScopedEnumKWLoc.isValid()) {
Douglas Gregor1274ccd2010-10-08 23:50:27 +00003690 // C++0x 7.2p2: The optional identifier shall not be omitted in the
3691 // declaration of a scoped enumeration.
3692 Diag(Tok, diag::err_scoped_enum_missing_identifier);
Richard Smithbdad7a22012-01-10 01:33:14 +00003693 ScopedEnumKWLoc = SourceLocation();
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +00003694 IsScopedUsingClassTag = false;
Douglas Gregor1274ccd2010-10-08 23:50:27 +00003695 }
3696
John McCall13489672012-05-07 06:16:58 +00003697 // Okay, end the suppression area. We'll decide whether to emit the
3698 // diagnostics in a second.
3699 if (shouldDelayDiagsInTag)
3700 diagsFromTag.done();
Richard Smith1af83c42012-03-23 03:33:32 +00003701
Douglas Gregor1274ccd2010-10-08 23:50:27 +00003702 TypeResult BaseType;
3703
Douglas Gregora61b3e72010-12-01 17:42:47 +00003704 // Parse the fixed underlying type.
Richard Smith139be702012-07-02 19:14:01 +00003705 bool CanBeBitfield = getCurScope()->getFlags() & Scope::ClassScope;
Douglas Gregorb9075602011-02-22 02:55:24 +00003706 if (AllowFixedUnderlyingType && Tok.is(tok::colon)) {
Douglas Gregora61b3e72010-12-01 17:42:47 +00003707 bool PossibleBitfield = false;
Richard Smith139be702012-07-02 19:14:01 +00003708 if (CanBeBitfield) {
Douglas Gregora61b3e72010-12-01 17:42:47 +00003709 // If we're in class scope, this can either be an enum declaration with
3710 // an underlying type, or a declaration of a bitfield member. We try to
3711 // use a simple disambiguation scheme first to catch the common cases
Chad Rosier8decdee2012-06-26 22:30:43 +00003712 // (integer literal, sizeof); if it's still ambiguous, we then consider
3713 // anything that's a simple-type-specifier followed by '(' as an
3714 // expression. This suffices because function types are not valid
Douglas Gregora61b3e72010-12-01 17:42:47 +00003715 // underlying types anyway.
Richard Smith05766812012-08-18 00:55:03 +00003716 EnterExpressionEvaluationContext Unevaluated(Actions,
3717 Sema::ConstantEvaluated);
Douglas Gregora61b3e72010-12-01 17:42:47 +00003718 TPResult TPR = isExpressionOrTypeSpecifierSimple(NextToken().getKind());
Chad Rosier8decdee2012-06-26 22:30:43 +00003719 // If the next token starts an expression, we know we're parsing a
Douglas Gregora61b3e72010-12-01 17:42:47 +00003720 // bit-field. This is the common case.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003721 if (TPR == TPResult::True)
Douglas Gregora61b3e72010-12-01 17:42:47 +00003722 PossibleBitfield = true;
3723 // If the next token starts a type-specifier-seq, it may be either a
3724 // a fixed underlying type or the start of a function-style cast in C++;
Chad Rosier8decdee2012-06-26 22:30:43 +00003725 // lookahead one more token to see if it's obvious that we have a
Douglas Gregora61b3e72010-12-01 17:42:47 +00003726 // fixed underlying type.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003727 else if (TPR == TPResult::False &&
Douglas Gregora61b3e72010-12-01 17:42:47 +00003728 GetLookAheadToken(2).getKind() == tok::semi) {
3729 // Consume the ':'.
3730 ConsumeToken();
3731 } else {
3732 // We have the start of a type-specifier-seq, so we have to perform
3733 // tentative parsing to determine whether we have an expression or a
3734 // type.
3735 TentativeParsingAction TPA(*this);
3736
3737 // Consume the ':'.
3738 ConsumeToken();
Richard Smithd81e9612012-02-23 01:36:12 +00003739
3740 // If we see a type specifier followed by an open-brace, we have an
3741 // ambiguity between an underlying type and a C++11 braced
3742 // function-style cast. Resolve this by always treating it as an
3743 // underlying type.
3744 // FIXME: The standard is not entirely clear on how to disambiguate in
3745 // this case.
David Blaikie4e4d0842012-03-11 07:00:24 +00003746 if ((getLangOpts().CPlusPlus &&
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003747 isCXXDeclarationSpecifier(TPResult::True) != TPResult::True) ||
David Blaikie4e4d0842012-03-11 07:00:24 +00003748 (!getLangOpts().CPlusPlus && !isDeclarationSpecifier(true))) {
Douglas Gregora61b3e72010-12-01 17:42:47 +00003749 // We'll parse this as a bitfield later.
3750 PossibleBitfield = true;
3751 TPA.Revert();
3752 } else {
3753 // We have a type-specifier-seq.
3754 TPA.Commit();
3755 }
3756 }
3757 } else {
3758 // Consume the ':'.
3759 ConsumeToken();
3760 }
3761
3762 if (!PossibleBitfield) {
3763 SourceRange Range;
3764 BaseType = ParseTypeName(&Range);
Chad Rosier8decdee2012-06-26 22:30:43 +00003765
Richard Smith80ad52f2013-01-02 11:42:31 +00003766 if (getLangOpts().CPlusPlus11) {
Richard Smith7fe62082011-10-15 05:09:34 +00003767 Diag(StartLoc, diag::warn_cxx98_compat_enum_fixed_underlying_type);
Eli Friedmancef3a7b2012-11-02 01:34:28 +00003768 } else if (!getLangOpts().ObjC2) {
3769 if (getLangOpts().CPlusPlus)
3770 Diag(StartLoc, diag::ext_cxx11_enum_fixed_underlying_type) << Range;
3771 else
3772 Diag(StartLoc, diag::ext_c_enum_fixed_underlying_type) << Range;
3773 }
Douglas Gregora61b3e72010-12-01 17:42:47 +00003774 }
Douglas Gregor1274ccd2010-10-08 23:50:27 +00003775 }
3776
Richard Smithbdad7a22012-01-10 01:33:14 +00003777 // There are four options here. If we have 'friend enum foo;' then this is a
3778 // friend declaration, and cannot have an accompanying definition. If we have
3779 // 'enum foo;', then this is a forward declaration. If we have
3780 // 'enum foo {...' then this is a definition. Otherwise we have something
3781 // like 'enum foo xyz', a reference.
Argyrios Kyrtzidise281b4c2008-09-11 00:21:41 +00003782 //
3783 // This is needed to handle stuff like this right (C99 6.7.2.3p11):
3784 // enum foo {..}; void bar() { enum foo; } <- new foo in bar.
3785 // enum foo {..}; void bar() { enum foo x; } <- use of old foo.
3786 //
John McCallf312b1e2010-08-26 23:41:50 +00003787 Sema::TagUseKind TUK;
John McCall13489672012-05-07 06:16:58 +00003788 if (!AllowDeclaration) {
Richard Smith7796eb52012-03-12 08:56:40 +00003789 TUK = Sema::TUK_Reference;
John McCall13489672012-05-07 06:16:58 +00003790 } else if (Tok.is(tok::l_brace)) {
3791 if (DS.isFriendSpecified()) {
3792 Diag(Tok.getLocation(), diag::err_friend_decl_defines_type)
3793 << SourceRange(DS.getFriendSpecLoc());
3794 ConsumeBrace();
Alexey Bataev8fe24752013-11-18 08:17:37 +00003795 SkipUntil(tok::r_brace, StopAtSemi);
John McCall13489672012-05-07 06:16:58 +00003796 TUK = Sema::TUK_Friend;
3797 } else {
3798 TUK = Sema::TUK_Definition;
3799 }
Stephen Hines651f13c2014-04-23 16:59:28 -07003800 } else if (!isTypeSpecifier(DSC) &&
Richard Smithc9f35172012-06-25 21:37:02 +00003801 (Tok.is(tok::semi) ||
Richard Smith139be702012-07-02 19:14:01 +00003802 (Tok.isAtStartOfLine() &&
3803 !isValidAfterTypeSpecifier(CanBeBitfield)))) {
Richard Smithc9f35172012-06-25 21:37:02 +00003804 TUK = DS.isFriendSpecified() ? Sema::TUK_Friend : Sema::TUK_Declaration;
3805 if (Tok.isNot(tok::semi)) {
3806 // A semicolon was missing after this declaration. Diagnose and recover.
Stephen Hines651f13c2014-04-23 16:59:28 -07003807 ExpectAndConsume(tok::semi, diag::err_expected_after, "enum");
Richard Smithc9f35172012-06-25 21:37:02 +00003808 PP.EnterToken(Tok);
3809 Tok.setKind(tok::semi);
3810 }
John McCall13489672012-05-07 06:16:58 +00003811 } else {
John McCallf312b1e2010-08-26 23:41:50 +00003812 TUK = Sema::TUK_Reference;
John McCall13489672012-05-07 06:16:58 +00003813 }
3814
3815 // If this is an elaborated type specifier, and we delayed
3816 // diagnostics before, just merge them into the current pool.
3817 if (TUK == Sema::TUK_Reference && shouldDelayDiagsInTag) {
3818 diagsFromTag.redelay();
3819 }
Richard Smith1af83c42012-03-23 03:33:32 +00003820
3821 MultiTemplateParamsArg TParams;
Douglas Gregor8fc6d232010-05-03 17:48:54 +00003822 if (TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate &&
John McCallf312b1e2010-08-26 23:41:50 +00003823 TUK != Sema::TUK_Reference) {
Richard Smith80ad52f2013-01-02 11:42:31 +00003824 if (!getLangOpts().CPlusPlus11 || !SS.isSet()) {
Richard Smith1af83c42012-03-23 03:33:32 +00003825 // Skip the rest of this declarator, up until the comma or semicolon.
3826 Diag(Tok, diag::err_enum_template);
Alexey Bataev8fe24752013-11-18 08:17:37 +00003827 SkipUntil(tok::comma, StopAtSemi);
Richard Smith1af83c42012-03-23 03:33:32 +00003828 return;
3829 }
3830
3831 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation) {
3832 // Enumerations can't be explicitly instantiated.
3833 DS.SetTypeSpecError();
3834 Diag(StartLoc, diag::err_explicit_instantiation_enum);
3835 return;
3836 }
3837
3838 assert(TemplateInfo.TemplateParams && "no template parameters");
3839 TParams = MultiTemplateParamsArg(TemplateInfo.TemplateParams->data(),
3840 TemplateInfo.TemplateParams->size());
Douglas Gregor8fc6d232010-05-03 17:48:54 +00003841 }
Chad Rosier8decdee2012-06-26 22:30:43 +00003842
Sean Hunt2edf0a22012-06-23 05:07:58 +00003843 if (TUK == Sema::TUK_Reference)
3844 ProhibitAttributes(attrs);
Richard Smith1af83c42012-03-23 03:33:32 +00003845
Douglas Gregorb9075602011-02-22 02:55:24 +00003846 if (!Name && TUK != Sema::TUK_Definition) {
3847 Diag(Tok, diag::err_enumerator_unnamed_no_def);
Richard Smith1af83c42012-03-23 03:33:32 +00003848
Douglas Gregorb9075602011-02-22 02:55:24 +00003849 // Skip the rest of this declarator, up until the comma or semicolon.
Alexey Bataev8fe24752013-11-18 08:17:37 +00003850 SkipUntil(tok::comma, StopAtSemi);
Douglas Gregorb9075602011-02-22 02:55:24 +00003851 return;
3852 }
Richard Smith1af83c42012-03-23 03:33:32 +00003853
Douglas Gregor402abb52009-05-28 23:31:59 +00003854 bool Owned = false;
John McCallc4e70192009-09-11 04:59:25 +00003855 bool IsDependent = false;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003856 const char *PrevSpec = nullptr;
Douglas Gregor48c89f42010-04-24 16:38:41 +00003857 unsigned DiagID;
John McCalld226f652010-08-21 09:40:31 +00003858 Decl *TagDecl = Actions.ActOnTag(getCurScope(), DeclSpec::TST_enum, TUK,
John McCall7f040a92010-12-24 02:08:15 +00003859 StartLoc, SS, Name, NameLoc, attrs.getList(),
Richard Smith1af83c42012-03-23 03:33:32 +00003860 AS, DS.getModulePrivateSpecLoc(), TParams,
Richard Smithbdad7a22012-01-10 01:33:14 +00003861 Owned, IsDependent, ScopedEnumKWLoc,
Stephen Hines651f13c2014-04-23 16:59:28 -07003862 IsScopedUsingClassTag, BaseType,
3863 DSC == DSC_type_specifier);
Douglas Gregor1274ccd2010-10-08 23:50:27 +00003864
Douglas Gregor48c89f42010-04-24 16:38:41 +00003865 if (IsDependent) {
Chad Rosier8decdee2012-06-26 22:30:43 +00003866 // This enum has a dependent nested-name-specifier. Handle it as a
Douglas Gregor48c89f42010-04-24 16:38:41 +00003867 // dependent tag.
3868 if (!Name) {
3869 DS.SetTypeSpecError();
3870 Diag(Tok, diag::err_expected_type_name_after_typename);
3871 return;
3872 }
Chad Rosier8decdee2012-06-26 22:30:43 +00003873
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003874 TypeResult Type = Actions.ActOnDependentTag(
3875 getCurScope(), DeclSpec::TST_enum, TUK, SS, Name, StartLoc, NameLoc);
Douglas Gregor48c89f42010-04-24 16:38:41 +00003876 if (Type.isInvalid()) {
3877 DS.SetTypeSpecError();
3878 return;
3879 }
Chad Rosier8decdee2012-06-26 22:30:43 +00003880
Abramo Bagnara0daaf322011-03-16 20:16:18 +00003881 if (DS.SetTypeSpecType(DeclSpec::TST_typename, StartLoc,
3882 NameLoc.isValid() ? NameLoc : StartLoc,
Stephen Hines651f13c2014-04-23 16:59:28 -07003883 PrevSpec, DiagID, Type.get(),
3884 Actions.getASTContext().getPrintingPolicy()))
Douglas Gregor48c89f42010-04-24 16:38:41 +00003885 Diag(StartLoc, DiagID) << PrevSpec;
Chad Rosier8decdee2012-06-26 22:30:43 +00003886
Douglas Gregor48c89f42010-04-24 16:38:41 +00003887 return;
3888 }
Mike Stump1eb44332009-09-09 15:08:12 +00003889
John McCalld226f652010-08-21 09:40:31 +00003890 if (!TagDecl) {
Chad Rosier8decdee2012-06-26 22:30:43 +00003891 // The action failed to produce an enumeration tag. If this is a
Douglas Gregor48c89f42010-04-24 16:38:41 +00003892 // definition, consume the entire definition.
Richard Smith7796eb52012-03-12 08:56:40 +00003893 if (Tok.is(tok::l_brace) && TUK != Sema::TUK_Reference) {
Douglas Gregor48c89f42010-04-24 16:38:41 +00003894 ConsumeBrace();
Alexey Bataev8fe24752013-11-18 08:17:37 +00003895 SkipUntil(tok::r_brace, StopAtSemi);
Douglas Gregor48c89f42010-04-24 16:38:41 +00003896 }
Chad Rosier8decdee2012-06-26 22:30:43 +00003897
Douglas Gregor48c89f42010-04-24 16:38:41 +00003898 DS.SetTypeSpecError();
3899 return;
3900 }
Richard Smithbdad7a22012-01-10 01:33:14 +00003901
Richard Smithc9f35172012-06-25 21:37:02 +00003902 if (Tok.is(tok::l_brace) && TUK != Sema::TUK_Reference)
John McCall13489672012-05-07 06:16:58 +00003903 ParseEnumBody(StartLoc, TagDecl);
Mike Stump1eb44332009-09-09 15:08:12 +00003904
Abramo Bagnara0daaf322011-03-16 20:16:18 +00003905 if (DS.SetTypeSpecType(DeclSpec::TST_enum, StartLoc,
3906 NameLoc.isValid() ? NameLoc : StartLoc,
Stephen Hines651f13c2014-04-23 16:59:28 -07003907 PrevSpec, DiagID, TagDecl, Owned,
3908 Actions.getASTContext().getPrintingPolicy()))
John McCallfec54012009-08-03 20:12:06 +00003909 Diag(StartLoc, DiagID) << PrevSpec;
Reid Spencer5f016e22007-07-11 17:01:13 +00003910}
3911
3912/// ParseEnumBody - Parse a {} enclosed enumerator-list.
3913/// enumerator-list:
3914/// enumerator
3915/// enumerator-list ',' enumerator
3916/// enumerator:
Stephen Hines176edba2014-12-01 14:53:08 -08003917/// enumeration-constant attributes[opt]
3918/// enumeration-constant attributes[opt] '=' constant-expression
Reid Spencer5f016e22007-07-11 17:01:13 +00003919/// enumeration-constant:
3920/// identifier
3921///
John McCalld226f652010-08-21 09:40:31 +00003922void Parser::ParseEnumBody(SourceLocation StartLoc, Decl *EnumDecl) {
Douglas Gregor074149e2009-01-05 19:45:36 +00003923 // Enter the scope of the enum body and start the definition.
Stephen Hinesc568f1e2014-07-21 00:47:37 -07003924 ParseScope EnumScope(this, Scope::DeclScope | Scope::EnumScope);
Douglas Gregor23c94db2010-07-02 17:43:08 +00003925 Actions.ActOnTagStartDefinition(getCurScope(), EnumDecl);
Douglas Gregor074149e2009-01-05 19:45:36 +00003926
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00003927 BalancedDelimiterTracker T(*this, tok::l_brace);
3928 T.consumeOpen();
Mike Stump1eb44332009-09-09 15:08:12 +00003929
Chris Lattner7946dd32007-08-27 17:24:30 +00003930 // C does not allow an empty enumerator-list, C++ does [dcl.enum].
David Blaikie4e4d0842012-03-11 07:00:24 +00003931 if (Tok.is(tok::r_brace) && !getLangOpts().CPlusPlus)
Fariborz Jahanian05115522010-05-28 22:23:22 +00003932 Diag(Tok, diag::error_empty_enum);
Mike Stump1eb44332009-09-09 15:08:12 +00003933
Chris Lattner5f9e2722011-07-23 10:55:15 +00003934 SmallVector<Decl *, 32> EnumConstantDecls;
Reid Spencer5f016e22007-07-11 17:01:13 +00003935
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003936 Decl *LastEnumConstDecl = nullptr;
Mike Stump1eb44332009-09-09 15:08:12 +00003937
Reid Spencer5f016e22007-07-11 17:01:13 +00003938 // Parse the enumerator-list.
Stephen Hines651f13c2014-04-23 16:59:28 -07003939 while (Tok.isNot(tok::r_brace)) {
3940 // Parse enumerator. If failed, try skipping till the start of the next
3941 // enumerator definition.
3942 if (Tok.isNot(tok::identifier)) {
3943 Diag(Tok.getLocation(), diag::err_expected) << tok::identifier;
3944 if (SkipUntil(tok::comma, tok::r_brace, StopBeforeMatch) &&
3945 TryConsumeToken(tok::comma))
3946 continue;
3947 break;
3948 }
Reid Spencer5f016e22007-07-11 17:01:13 +00003949 IdentifierInfo *Ident = Tok.getIdentifierInfo();
3950 SourceLocation IdentLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00003951
John McCall5b629aa2010-10-22 23:36:17 +00003952 // If attributes exist after the enumerator, parse them.
Sean Hunt2edf0a22012-06-23 05:07:58 +00003953 ParsedAttributesWithRange attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +00003954 MaybeParseGNUAttributes(attrs);
Stephen Hines176edba2014-12-01 14:53:08 -08003955 ProhibitAttributes(attrs); // GNU-style attributes are prohibited.
3956 if (getLangOpts().CPlusPlus11 && isCXX11AttributeSpecifier()) {
3957 if (!getLangOpts().CPlusPlus1z)
3958 Diag(Tok.getLocation(), diag::warn_cxx14_compat_attribute)
3959 << 1 /*enumerator*/;
3960 ParseCXX11Attributes(attrs);
3961 }
John McCall5b629aa2010-10-22 23:36:17 +00003962
Reid Spencer5f016e22007-07-11 17:01:13 +00003963 SourceLocation EqualLoc;
John McCall60d7b3a2010-08-24 06:29:42 +00003964 ExprResult AssignedVal;
John McCall92576642012-05-07 06:16:41 +00003965 ParsingDeclRAIIObject PD(*this, ParsingDeclRAIIObject::NoParent);
Chad Rosier8decdee2012-06-26 22:30:43 +00003966
Stephen Hines651f13c2014-04-23 16:59:28 -07003967 if (TryConsumeToken(tok::equal, EqualLoc)) {
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00003968 AssignedVal = ParseConstantExpression();
3969 if (AssignedVal.isInvalid())
Stephen Hines651f13c2014-04-23 16:59:28 -07003970 SkipUntil(tok::comma, tok::r_brace, StopBeforeMatch);
Reid Spencer5f016e22007-07-11 17:01:13 +00003971 }
Mike Stump1eb44332009-09-09 15:08:12 +00003972
Reid Spencer5f016e22007-07-11 17:01:13 +00003973 // Install the enumerator constant into EnumDecl.
John McCalld226f652010-08-21 09:40:31 +00003974 Decl *EnumConstDecl = Actions.ActOnEnumConstant(getCurScope(), EnumDecl,
3975 LastEnumConstDecl,
3976 IdentLoc, Ident,
John McCall7f040a92010-12-24 02:08:15 +00003977 attrs.getList(), EqualLoc,
Stephen Hinesc568f1e2014-07-21 00:47:37 -07003978 AssignedVal.get());
Fariborz Jahanian5a477db2011-12-09 01:15:54 +00003979 PD.complete(EnumConstDecl);
Chad Rosier8decdee2012-06-26 22:30:43 +00003980
Reid Spencer5f016e22007-07-11 17:01:13 +00003981 EnumConstantDecls.push_back(EnumConstDecl);
3982 LastEnumConstDecl = EnumConstDecl;
Mike Stump1eb44332009-09-09 15:08:12 +00003983
Douglas Gregor751f6922010-09-07 14:51:08 +00003984 if (Tok.is(tok::identifier)) {
3985 // We're missing a comma between enumerators.
3986 SourceLocation Loc = PP.getLocForEndOfToken(PrevTokLocation);
Chad Rosier8decdee2012-06-26 22:30:43 +00003987 Diag(Loc, diag::err_enumerator_list_missing_comma)
Douglas Gregor751f6922010-09-07 14:51:08 +00003988 << FixItHint::CreateInsertion(Loc, ", ");
3989 continue;
3990 }
Chad Rosier8decdee2012-06-26 22:30:43 +00003991
Stephen Hines651f13c2014-04-23 16:59:28 -07003992 // Emumerator definition must be finished, only comma or r_brace are
3993 // allowed here.
3994 SourceLocation CommaLoc;
3995 if (Tok.isNot(tok::r_brace) && !TryConsumeToken(tok::comma, CommaLoc)) {
3996 if (EqualLoc.isValid())
3997 Diag(Tok.getLocation(), diag::err_expected_either) << tok::r_brace
3998 << tok::comma;
3999 else
4000 Diag(Tok.getLocation(), diag::err_expected_end_of_enumerator);
4001 if (SkipUntil(tok::comma, tok::r_brace, StopBeforeMatch)) {
4002 if (TryConsumeToken(tok::comma, CommaLoc))
4003 continue;
4004 } else {
4005 break;
4006 }
4007 }
Mike Stump1eb44332009-09-09 15:08:12 +00004008
Stephen Hines651f13c2014-04-23 16:59:28 -07004009 // If comma is followed by r_brace, emit appropriate warning.
4010 if (Tok.is(tok::r_brace) && CommaLoc.isValid()) {
Richard Smith80ad52f2013-01-02 11:42:31 +00004011 if (!getLangOpts().C99 && !getLangOpts().CPlusPlus11)
Richard Smitheab9d6f2012-07-23 05:45:25 +00004012 Diag(CommaLoc, getLangOpts().CPlusPlus ?
4013 diag::ext_enumerator_list_comma_cxx :
4014 diag::ext_enumerator_list_comma_c)
Richard Smith7fe62082011-10-15 05:09:34 +00004015 << FixItHint::CreateRemoval(CommaLoc);
Richard Smith80ad52f2013-01-02 11:42:31 +00004016 else if (getLangOpts().CPlusPlus11)
Richard Smith7fe62082011-10-15 05:09:34 +00004017 Diag(CommaLoc, diag::warn_cxx98_compat_enumerator_list_comma)
4018 << FixItHint::CreateRemoval(CommaLoc);
Stephen Hines651f13c2014-04-23 16:59:28 -07004019 break;
Richard Smith7fe62082011-10-15 05:09:34 +00004020 }
Reid Spencer5f016e22007-07-11 17:01:13 +00004021 }
Mike Stump1eb44332009-09-09 15:08:12 +00004022
Reid Spencer5f016e22007-07-11 17:01:13 +00004023 // Eat the }.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004024 T.consumeClose();
Reid Spencer5f016e22007-07-11 17:01:13 +00004025
Reid Spencer5f016e22007-07-11 17:01:13 +00004026 // If attributes exist after the identifier list, parse them.
John McCall0b7e6782011-03-24 11:26:52 +00004027 ParsedAttributes attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +00004028 MaybeParseGNUAttributes(attrs);
Douglas Gregor72de6672009-01-08 20:45:30 +00004029
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004030 Actions.ActOnEnumBody(StartLoc, T.getOpenLocation(), T.getCloseLocation(),
Dmitri Gribenko9ff2b422013-04-27 20:23:52 +00004031 EnumDecl, EnumConstantDecls,
4032 getCurScope(),
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004033 attrs.getList());
Mike Stump1eb44332009-09-09 15:08:12 +00004034
Douglas Gregor72de6672009-01-08 20:45:30 +00004035 EnumScope.Exit();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004036 Actions.ActOnTagFinishDefinition(getCurScope(), EnumDecl,
4037 T.getCloseLocation());
Richard Smithc9f35172012-06-25 21:37:02 +00004038
4039 // The next token must be valid after an enum definition. If not, a ';'
4040 // was probably forgotten.
Richard Smith139be702012-07-02 19:14:01 +00004041 bool CanBeBitfield = getCurScope()->getFlags() & Scope::ClassScope;
4042 if (!isValidAfterTypeSpecifier(CanBeBitfield)) {
Stephen Hines651f13c2014-04-23 16:59:28 -07004043 ExpectAndConsume(tok::semi, diag::err_expected_after, "enum");
Richard Smithc9f35172012-06-25 21:37:02 +00004044 // Push this token back into the preprocessor and change our current token
4045 // to ';' so that the rest of the code recovers as though there were an
4046 // ';' after the definition.
4047 PP.EnterToken(Tok);
4048 Tok.setKind(tok::semi);
4049 }
Reid Spencer5f016e22007-07-11 17:01:13 +00004050}
4051
4052/// isTypeSpecifierQualifier - Return true if the current token could be the
Steve Naroff5f8aa692008-02-11 23:15:56 +00004053/// start of a type-qualifier-list.
4054bool Parser::isTypeQualifier() const {
4055 switch (Tok.getKind()) {
4056 default: return false;
Stephen Hines651f13c2014-04-23 16:59:28 -07004057 // type-qualifier
Steve Naroff5f8aa692008-02-11 23:15:56 +00004058 case tok::kw_const:
4059 case tok::kw_volatile:
4060 case tok::kw_restrict:
Peter Collingbourne207f4d82011-03-18 22:38:29 +00004061 case tok::kw___private:
4062 case tok::kw___local:
4063 case tok::kw___global:
4064 case tok::kw___constant:
Stephen Hines0e2c34f2015-03-23 12:09:02 -07004065 case tok::kw___generic:
Peter Collingbourne207f4d82011-03-18 22:38:29 +00004066 case tok::kw___read_only:
4067 case tok::kw___read_write:
4068 case tok::kw___write_only:
Steve Naroff5f8aa692008-02-11 23:15:56 +00004069 return true;
4070 }
4071}
4072
Chris Lattnerb3a4e432010-02-28 18:18:36 +00004073/// isKnownToBeTypeSpecifier - Return true if we know that the specified token
4074/// is definitely a type-specifier. Return false if it isn't part of a type
4075/// specifier or if we're not sure.
4076bool Parser::isKnownToBeTypeSpecifier(const Token &Tok) const {
4077 switch (Tok.getKind()) {
4078 default: return false;
4079 // type-specifiers
4080 case tok::kw_short:
4081 case tok::kw_long:
Francois Pichet338d7f72011-04-28 01:59:37 +00004082 case tok::kw___int64:
Richard Smith5a5a9712012-04-04 06:24:32 +00004083 case tok::kw___int128:
Chris Lattnerb3a4e432010-02-28 18:18:36 +00004084 case tok::kw_signed:
4085 case tok::kw_unsigned:
4086 case tok::kw__Complex:
4087 case tok::kw__Imaginary:
4088 case tok::kw_void:
4089 case tok::kw_char:
4090 case tok::kw_wchar_t:
4091 case tok::kw_char16_t:
4092 case tok::kw_char32_t:
4093 case tok::kw_int:
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +00004094 case tok::kw_half:
Chris Lattnerb3a4e432010-02-28 18:18:36 +00004095 case tok::kw_float:
4096 case tok::kw_double:
4097 case tok::kw_bool:
4098 case tok::kw__Bool:
4099 case tok::kw__Decimal32:
4100 case tok::kw__Decimal64:
4101 case tok::kw__Decimal128:
4102 case tok::kw___vector:
Chad Rosier8decdee2012-06-26 22:30:43 +00004103
Chris Lattnerb3a4e432010-02-28 18:18:36 +00004104 // struct-or-union-specifier (C99) or class-specifier (C++)
4105 case tok::kw_class:
4106 case tok::kw_struct:
Joao Matos6666ed42012-08-31 18:45:21 +00004107 case tok::kw___interface:
Chris Lattnerb3a4e432010-02-28 18:18:36 +00004108 case tok::kw_union:
4109 // enum-specifier
4110 case tok::kw_enum:
Chad Rosier8decdee2012-06-26 22:30:43 +00004111
Chris Lattnerb3a4e432010-02-28 18:18:36 +00004112 // typedef-name
4113 case tok::annot_typename:
4114 return true;
4115 }
4116}
4117
Steve Naroff5f8aa692008-02-11 23:15:56 +00004118/// isTypeSpecifierQualifier - Return true if the current token could be the
Reid Spencer5f016e22007-07-11 17:01:13 +00004119/// start of a specifier-qualifier-list.
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00004120bool Parser::isTypeSpecifierQualifier() {
Reid Spencer5f016e22007-07-11 17:01:13 +00004121 switch (Tok.getKind()) {
4122 default: return false;
Mike Stump1eb44332009-09-09 15:08:12 +00004123
Chris Lattner166a8fc2009-01-04 23:41:41 +00004124 case tok::identifier: // foo::bar
John Thompson82287d12010-02-05 00:12:22 +00004125 if (TryAltiVecVectorToken())
4126 return true;
4127 // Fall through.
Douglas Gregord57959a2009-03-27 23:10:48 +00004128 case tok::kw_typename: // typename T::type
Chris Lattner166a8fc2009-01-04 23:41:41 +00004129 // Annotate typenames and C++ scope specifiers. If we get one, just
4130 // recurse to handle whatever we get.
4131 if (TryAnnotateTypeOrScopeToken())
John McCall9ba61662010-02-26 08:45:28 +00004132 return true;
4133 if (Tok.is(tok::identifier))
4134 return false;
4135 return isTypeSpecifierQualifier();
Douglas Gregord57959a2009-03-27 23:10:48 +00004136
Chris Lattner166a8fc2009-01-04 23:41:41 +00004137 case tok::coloncolon: // ::foo::bar
4138 if (NextToken().is(tok::kw_new) || // ::new
4139 NextToken().is(tok::kw_delete)) // ::delete
4140 return false;
4141
Chris Lattner166a8fc2009-01-04 23:41:41 +00004142 if (TryAnnotateTypeOrScopeToken())
John McCall9ba61662010-02-26 08:45:28 +00004143 return true;
4144 return isTypeSpecifierQualifier();
Mike Stump1eb44332009-09-09 15:08:12 +00004145
Reid Spencer5f016e22007-07-11 17:01:13 +00004146 // GNU attributes support.
4147 case tok::kw___attribute:
Steve Naroffd1861fd2007-07-31 12:34:36 +00004148 // GNU typeof support.
4149 case tok::kw_typeof:
Mike Stump1eb44332009-09-09 15:08:12 +00004150
Reid Spencer5f016e22007-07-11 17:01:13 +00004151 // type-specifiers
4152 case tok::kw_short:
4153 case tok::kw_long:
Francois Pichet338d7f72011-04-28 01:59:37 +00004154 case tok::kw___int64:
Richard Smith5a5a9712012-04-04 06:24:32 +00004155 case tok::kw___int128:
Reid Spencer5f016e22007-07-11 17:01:13 +00004156 case tok::kw_signed:
4157 case tok::kw_unsigned:
4158 case tok::kw__Complex:
4159 case tok::kw__Imaginary:
4160 case tok::kw_void:
4161 case tok::kw_char:
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +00004162 case tok::kw_wchar_t:
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00004163 case tok::kw_char16_t:
4164 case tok::kw_char32_t:
Reid Spencer5f016e22007-07-11 17:01:13 +00004165 case tok::kw_int:
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +00004166 case tok::kw_half:
Reid Spencer5f016e22007-07-11 17:01:13 +00004167 case tok::kw_float:
4168 case tok::kw_double:
Chris Lattner9298d962007-11-15 05:25:19 +00004169 case tok::kw_bool:
Reid Spencer5f016e22007-07-11 17:01:13 +00004170 case tok::kw__Bool:
4171 case tok::kw__Decimal32:
4172 case tok::kw__Decimal64:
4173 case tok::kw__Decimal128:
John Thompson82287d12010-02-05 00:12:22 +00004174 case tok::kw___vector:
Mike Stump1eb44332009-09-09 15:08:12 +00004175
Chris Lattner99dc9142008-04-13 18:59:07 +00004176 // struct-or-union-specifier (C99) or class-specifier (C++)
4177 case tok::kw_class:
Reid Spencer5f016e22007-07-11 17:01:13 +00004178 case tok::kw_struct:
Joao Matos6666ed42012-08-31 18:45:21 +00004179 case tok::kw___interface:
Reid Spencer5f016e22007-07-11 17:01:13 +00004180 case tok::kw_union:
4181 // enum-specifier
4182 case tok::kw_enum:
Mike Stump1eb44332009-09-09 15:08:12 +00004183
Reid Spencer5f016e22007-07-11 17:01:13 +00004184 // type-qualifier
4185 case tok::kw_const:
4186 case tok::kw_volatile:
4187 case tok::kw_restrict:
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00004188
John McCallb8a8de32012-11-14 00:49:39 +00004189 // Debugger support.
4190 case tok::kw___unknown_anytype:
4191
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00004192 // typedef-name
Chris Lattnerb31757b2009-01-06 05:06:21 +00004193 case tok::annot_typename:
Reid Spencer5f016e22007-07-11 17:01:13 +00004194 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00004195
Chris Lattner7c186be2008-10-20 00:25:30 +00004196 // GNU ObjC bizarre protocol extension: <proto1,proto2> with implicit 'id'.
4197 case tok::less:
David Blaikie4e4d0842012-03-11 07:00:24 +00004198 return getLangOpts().ObjC1;
Mike Stump1eb44332009-09-09 15:08:12 +00004199
Steve Naroff239f0732008-12-25 14:16:32 +00004200 case tok::kw___cdecl:
4201 case tok::kw___stdcall:
4202 case tok::kw___fastcall:
Douglas Gregorf813a2c2010-05-18 16:57:00 +00004203 case tok::kw___thiscall:
Stephen Hines176edba2014-12-01 14:53:08 -08004204 case tok::kw___vectorcall:
Eli Friedman290eeb02009-06-08 23:27:34 +00004205 case tok::kw___w64:
4206 case tok::kw___ptr64:
Francois Pichet58fd97a2011-08-25 00:36:46 +00004207 case tok::kw___ptr32:
Dawn Perchik52fc3142010-09-03 01:29:35 +00004208 case tok::kw___pascal:
Francois Pichet3bd9aa42011-08-18 09:59:55 +00004209 case tok::kw___unaligned:
Peter Collingbourne207f4d82011-03-18 22:38:29 +00004210
4211 case tok::kw___private:
4212 case tok::kw___local:
4213 case tok::kw___global:
4214 case tok::kw___constant:
Stephen Hines0e2c34f2015-03-23 12:09:02 -07004215 case tok::kw___generic:
Peter Collingbourne207f4d82011-03-18 22:38:29 +00004216 case tok::kw___read_only:
4217 case tok::kw___read_write:
4218 case tok::kw___write_only:
4219
Eli Friedman290eeb02009-06-08 23:27:34 +00004220 return true;
Peter Collingbourne207f4d82011-03-18 22:38:29 +00004221
Richard Smith4cf4a5e2013-03-28 01:55:44 +00004222 // C11 _Atomic
Eli Friedmanb001de72011-10-06 23:00:33 +00004223 case tok::kw__Atomic:
4224 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00004225 }
4226}
4227
4228/// isDeclarationSpecifier() - Return true if the current token is part of a
4229/// declaration specifier.
Douglas Gregor9497a732010-09-16 01:51:54 +00004230///
4231/// \param DisambiguatingWithExpression True to indicate that the purpose of
4232/// this check is to disambiguate between an expression and a declaration.
4233bool Parser::isDeclarationSpecifier(bool DisambiguatingWithExpression) {
Reid Spencer5f016e22007-07-11 17:01:13 +00004234 switch (Tok.getKind()) {
4235 default: return false;
Mike Stump1eb44332009-09-09 15:08:12 +00004236
Chris Lattner166a8fc2009-01-04 23:41:41 +00004237 case tok::identifier: // foo::bar
Steve Naroff61f72cb2009-03-09 21:12:44 +00004238 // Unfortunate hack to support "Class.factoryMethod" notation.
David Blaikie4e4d0842012-03-11 07:00:24 +00004239 if (getLangOpts().ObjC1 && NextToken().is(tok::period))
Steve Naroff61f72cb2009-03-09 21:12:44 +00004240 return false;
John Thompson82287d12010-02-05 00:12:22 +00004241 if (TryAltiVecVectorToken())
4242 return true;
4243 // Fall through.
David Blaikie42d6d0c2011-12-04 05:04:18 +00004244 case tok::kw_decltype: // decltype(T())::type
Douglas Gregord57959a2009-03-27 23:10:48 +00004245 case tok::kw_typename: // typename T::type
Chris Lattner166a8fc2009-01-04 23:41:41 +00004246 // Annotate typenames and C++ scope specifiers. If we get one, just
4247 // recurse to handle whatever we get.
4248 if (TryAnnotateTypeOrScopeToken())
John McCall9ba61662010-02-26 08:45:28 +00004249 return true;
4250 if (Tok.is(tok::identifier))
4251 return false;
Chad Rosier8decdee2012-06-26 22:30:43 +00004252
Douglas Gregor9497a732010-09-16 01:51:54 +00004253 // If we're in Objective-C and we have an Objective-C class type followed
Chad Rosier8decdee2012-06-26 22:30:43 +00004254 // by an identifier and then either ':' or ']', in a place where an
Douglas Gregor9497a732010-09-16 01:51:54 +00004255 // expression is permitted, then this is probably a class message send
4256 // missing the initial '['. In this case, we won't consider this to be
4257 // the start of a declaration.
Chad Rosier8decdee2012-06-26 22:30:43 +00004258 if (DisambiguatingWithExpression &&
Douglas Gregor9497a732010-09-16 01:51:54 +00004259 isStartOfObjCClassMessageMissingOpenBracket())
4260 return false;
Chad Rosier8decdee2012-06-26 22:30:43 +00004261
John McCall9ba61662010-02-26 08:45:28 +00004262 return isDeclarationSpecifier();
4263
Chris Lattner166a8fc2009-01-04 23:41:41 +00004264 case tok::coloncolon: // ::foo::bar
4265 if (NextToken().is(tok::kw_new) || // ::new
4266 NextToken().is(tok::kw_delete)) // ::delete
4267 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00004268
Chris Lattner166a8fc2009-01-04 23:41:41 +00004269 // Annotate typenames and C++ scope specifiers. If we get one, just
4270 // recurse to handle whatever we get.
4271 if (TryAnnotateTypeOrScopeToken())
John McCall9ba61662010-02-26 08:45:28 +00004272 return true;
4273 return isDeclarationSpecifier();
Mike Stump1eb44332009-09-09 15:08:12 +00004274
Reid Spencer5f016e22007-07-11 17:01:13 +00004275 // storage-class-specifier
4276 case tok::kw_typedef:
4277 case tok::kw_extern:
Steve Naroff8d54bf22007-12-18 00:16:02 +00004278 case tok::kw___private_extern__:
Reid Spencer5f016e22007-07-11 17:01:13 +00004279 case tok::kw_static:
4280 case tok::kw_auto:
4281 case tok::kw_register:
4282 case tok::kw___thread:
Richard Smithec642442013-04-12 22:46:28 +00004283 case tok::kw_thread_local:
4284 case tok::kw__Thread_local:
Mike Stump1eb44332009-09-09 15:08:12 +00004285
Douglas Gregor8d267c52011-09-09 02:06:17 +00004286 // Modules
4287 case tok::kw___module_private__:
Chad Rosier8decdee2012-06-26 22:30:43 +00004288
John McCallb8a8de32012-11-14 00:49:39 +00004289 // Debugger support
4290 case tok::kw___unknown_anytype:
4291
Reid Spencer5f016e22007-07-11 17:01:13 +00004292 // type-specifiers
4293 case tok::kw_short:
4294 case tok::kw_long:
Francois Pichet338d7f72011-04-28 01:59:37 +00004295 case tok::kw___int64:
Richard Smith5a5a9712012-04-04 06:24:32 +00004296 case tok::kw___int128:
Reid Spencer5f016e22007-07-11 17:01:13 +00004297 case tok::kw_signed:
4298 case tok::kw_unsigned:
4299 case tok::kw__Complex:
4300 case tok::kw__Imaginary:
4301 case tok::kw_void:
4302 case tok::kw_char:
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +00004303 case tok::kw_wchar_t:
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00004304 case tok::kw_char16_t:
4305 case tok::kw_char32_t:
4306
Reid Spencer5f016e22007-07-11 17:01:13 +00004307 case tok::kw_int:
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +00004308 case tok::kw_half:
Reid Spencer5f016e22007-07-11 17:01:13 +00004309 case tok::kw_float:
4310 case tok::kw_double:
Chris Lattner9298d962007-11-15 05:25:19 +00004311 case tok::kw_bool:
Reid Spencer5f016e22007-07-11 17:01:13 +00004312 case tok::kw__Bool:
4313 case tok::kw__Decimal32:
4314 case tok::kw__Decimal64:
4315 case tok::kw__Decimal128:
John Thompson82287d12010-02-05 00:12:22 +00004316 case tok::kw___vector:
Mike Stump1eb44332009-09-09 15:08:12 +00004317
Chris Lattner99dc9142008-04-13 18:59:07 +00004318 // struct-or-union-specifier (C99) or class-specifier (C++)
4319 case tok::kw_class:
Reid Spencer5f016e22007-07-11 17:01:13 +00004320 case tok::kw_struct:
4321 case tok::kw_union:
Joao Matos6666ed42012-08-31 18:45:21 +00004322 case tok::kw___interface:
Reid Spencer5f016e22007-07-11 17:01:13 +00004323 // enum-specifier
4324 case tok::kw_enum:
Mike Stump1eb44332009-09-09 15:08:12 +00004325
Reid Spencer5f016e22007-07-11 17:01:13 +00004326 // type-qualifier
4327 case tok::kw_const:
4328 case tok::kw_volatile:
4329 case tok::kw_restrict:
Steve Naroffd1861fd2007-07-31 12:34:36 +00004330
Reid Spencer5f016e22007-07-11 17:01:13 +00004331 // function-specifier
4332 case tok::kw_inline:
Douglas Gregorb48fe382008-10-31 09:07:45 +00004333 case tok::kw_virtual:
4334 case tok::kw_explicit:
Richard Smithde03c152013-01-17 22:16:11 +00004335 case tok::kw__Noreturn:
Chris Lattnerd6c7c182007-08-09 16:40:21 +00004336
Richard Smith4cd81c52013-01-29 09:02:09 +00004337 // alignment-specifier
4338 case tok::kw__Alignas:
4339
Richard Smith53aec2a2012-10-25 00:00:53 +00004340 // friend keyword.
4341 case tok::kw_friend:
4342
Peter Collingbournec6eb44b2011-04-15 00:35:57 +00004343 // static_assert-declaration
4344 case tok::kw__Static_assert:
4345
Chris Lattner1ef08762007-08-09 17:01:07 +00004346 // GNU typeof support.
4347 case tok::kw_typeof:
Mike Stump1eb44332009-09-09 15:08:12 +00004348
Chris Lattner1ef08762007-08-09 17:01:07 +00004349 // GNU attributes.
Chris Lattnerd6c7c182007-08-09 16:40:21 +00004350 case tok::kw___attribute:
Mike Stump1eb44332009-09-09 15:08:12 +00004351
Richard Smith53aec2a2012-10-25 00:00:53 +00004352 // C++11 decltype and constexpr.
David Blaikie42d6d0c2011-12-04 05:04:18 +00004353 case tok::annot_decltype:
Richard Smith53aec2a2012-10-25 00:00:53 +00004354 case tok::kw_constexpr:
Francois Pichete3d49b42011-06-19 08:02:06 +00004355
Richard Smith4cf4a5e2013-03-28 01:55:44 +00004356 // C11 _Atomic
Eli Friedmanb001de72011-10-06 23:00:33 +00004357 case tok::kw__Atomic:
4358 return true;
4359
Chris Lattnerf3948c42008-07-26 03:38:44 +00004360 // GNU ObjC bizarre protocol extension: <proto1,proto2> with implicit 'id'.
4361 case tok::less:
David Blaikie4e4d0842012-03-11 07:00:24 +00004362 return getLangOpts().ObjC1;
Mike Stump1eb44332009-09-09 15:08:12 +00004363
Douglas Gregord9d75e52011-04-27 05:41:15 +00004364 // typedef-name
4365 case tok::annot_typename:
4366 return !DisambiguatingWithExpression ||
4367 !isStartOfObjCClassMessageMissingOpenBracket();
Chad Rosier8decdee2012-06-26 22:30:43 +00004368
Steve Naroff47f52092009-01-06 19:34:12 +00004369 case tok::kw___declspec:
Steve Naroff239f0732008-12-25 14:16:32 +00004370 case tok::kw___cdecl:
4371 case tok::kw___stdcall:
4372 case tok::kw___fastcall:
Douglas Gregorf813a2c2010-05-18 16:57:00 +00004373 case tok::kw___thiscall:
Stephen Hines176edba2014-12-01 14:53:08 -08004374 case tok::kw___vectorcall:
Eli Friedman290eeb02009-06-08 23:27:34 +00004375 case tok::kw___w64:
Aaron Ballmanaa9df092013-05-22 23:25:32 +00004376 case tok::kw___sptr:
4377 case tok::kw___uptr:
Eli Friedman290eeb02009-06-08 23:27:34 +00004378 case tok::kw___ptr64:
Francois Pichet58fd97a2011-08-25 00:36:46 +00004379 case tok::kw___ptr32:
Eli Friedman290eeb02009-06-08 23:27:34 +00004380 case tok::kw___forceinline:
Dawn Perchik52fc3142010-09-03 01:29:35 +00004381 case tok::kw___pascal:
Francois Pichet3bd9aa42011-08-18 09:59:55 +00004382 case tok::kw___unaligned:
Peter Collingbourne207f4d82011-03-18 22:38:29 +00004383
4384 case tok::kw___private:
4385 case tok::kw___local:
4386 case tok::kw___global:
4387 case tok::kw___constant:
Stephen Hines0e2c34f2015-03-23 12:09:02 -07004388 case tok::kw___generic:
Peter Collingbourne207f4d82011-03-18 22:38:29 +00004389 case tok::kw___read_only:
4390 case tok::kw___read_write:
4391 case tok::kw___write_only:
4392
Eli Friedman290eeb02009-06-08 23:27:34 +00004393 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00004394 }
4395}
4396
Stephen Hines651f13c2014-04-23 16:59:28 -07004397bool Parser::isConstructorDeclarator(bool IsUnqualified) {
Douglas Gregor0efc2c12010-01-13 17:31:36 +00004398 TentativeParsingAction TPA(*this);
4399
4400 // Parse the C++ scope specifier.
4401 CXXScopeSpec SS;
Chad Rosier8decdee2012-06-26 22:30:43 +00004402 if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(),
Douglas Gregorefaa93a2011-11-07 17:33:42 +00004403 /*EnteringContext=*/true)) {
John McCall9ba61662010-02-26 08:45:28 +00004404 TPA.Revert();
4405 return false;
4406 }
Douglas Gregor0efc2c12010-01-13 17:31:36 +00004407
4408 // Parse the constructor name.
4409 if (Tok.is(tok::identifier) || Tok.is(tok::annot_template_id)) {
4410 // We already know that we have a constructor name; just consume
4411 // the token.
4412 ConsumeToken();
4413 } else {
4414 TPA.Revert();
4415 return false;
4416 }
4417
Richard Smith22592862012-03-27 23:05:05 +00004418 // Current class name must be followed by a left parenthesis.
Douglas Gregor0efc2c12010-01-13 17:31:36 +00004419 if (Tok.isNot(tok::l_paren)) {
4420 TPA.Revert();
4421 return false;
4422 }
4423 ConsumeParen();
4424
Richard Smith22592862012-03-27 23:05:05 +00004425 // A right parenthesis, or ellipsis followed by a right parenthesis signals
4426 // that we have a constructor.
4427 if (Tok.is(tok::r_paren) ||
4428 (Tok.is(tok::ellipsis) && NextToken().is(tok::r_paren))) {
Douglas Gregor0efc2c12010-01-13 17:31:36 +00004429 TPA.Revert();
4430 return true;
4431 }
4432
Richard Smith9ec28912013-09-06 00:12:20 +00004433 // A C++11 attribute here signals that we have a constructor, and is an
4434 // attribute on the first constructor parameter.
4435 if (getLangOpts().CPlusPlus11 &&
4436 isCXX11AttributeSpecifier(/*Disambiguate*/ false,
4437 /*OuterMightBeMessageSend*/ true)) {
4438 TPA.Revert();
4439 return true;
4440 }
4441
Douglas Gregor0efc2c12010-01-13 17:31:36 +00004442 // If we need to, enter the specified scope.
4443 DeclaratorScopeObj DeclScopeObj(*this, SS);
Douglas Gregor23c94db2010-07-02 17:43:08 +00004444 if (SS.isSet() && Actions.ShouldEnterDeclaratorScope(getCurScope(), SS))
Douglas Gregor0efc2c12010-01-13 17:31:36 +00004445 DeclScopeObj.EnterDeclaratorScope();
4446
Francois Pichetdfaa5fb2011-01-31 04:54:32 +00004447 // Optionally skip Microsoft attributes.
John McCall0b7e6782011-03-24 11:26:52 +00004448 ParsedAttributes Attrs(AttrFactory);
Francois Pichetdfaa5fb2011-01-31 04:54:32 +00004449 MaybeParseMicrosoftAttributes(Attrs);
4450
Douglas Gregor0efc2c12010-01-13 17:31:36 +00004451 // Check whether the next token(s) are part of a declaration
4452 // specifier, in which case we have the start of a parameter and,
4453 // therefore, we know that this is a constructor.
Richard Smith412e0cc2012-03-27 00:56:56 +00004454 bool IsConstructor = false;
4455 if (isDeclarationSpecifier())
4456 IsConstructor = true;
4457 else if (Tok.is(tok::identifier) ||
4458 (Tok.is(tok::annot_cxxscope) && NextToken().is(tok::identifier))) {
4459 // We've seen "C ( X" or "C ( X::Y", but "X" / "X::Y" is not a type.
4460 // This might be a parenthesized member name, but is more likely to
4461 // be a constructor declaration with an invalid argument type. Keep
4462 // looking.
4463 if (Tok.is(tok::annot_cxxscope))
4464 ConsumeToken();
4465 ConsumeToken();
4466
4467 // If this is not a constructor, we must be parsing a declarator,
Richard Smith5d8388c2012-03-27 01:42:32 +00004468 // which must have one of the following syntactic forms (see the
4469 // grammar extract at the start of ParseDirectDeclarator):
Richard Smith412e0cc2012-03-27 00:56:56 +00004470 switch (Tok.getKind()) {
4471 case tok::l_paren:
4472 // C(X ( int));
4473 case tok::l_square:
4474 // C(X [ 5]);
4475 // C(X [ [attribute]]);
4476 case tok::coloncolon:
4477 // C(X :: Y);
4478 // C(X :: *p);
Richard Smith412e0cc2012-03-27 00:56:56 +00004479 // Assume this isn't a constructor, rather than assuming it's a
4480 // constructor with an unnamed parameter of an ill-formed type.
4481 break;
4482
Stephen Hines651f13c2014-04-23 16:59:28 -07004483 case tok::r_paren:
4484 // C(X )
4485 if (NextToken().is(tok::colon) || NextToken().is(tok::kw_try)) {
4486 // Assume these were meant to be constructors:
4487 // C(X) : (the name of a bit-field cannot be parenthesized).
4488 // C(X) try (this is otherwise ill-formed).
4489 IsConstructor = true;
4490 }
4491 if (NextToken().is(tok::semi) || NextToken().is(tok::l_brace)) {
4492 // If we have a constructor name within the class definition,
4493 // assume these were meant to be constructors:
4494 // C(X) {
4495 // C(X) ;
4496 // ... because otherwise we would be declaring a non-static data
4497 // member that is ill-formed because it's of the same type as its
4498 // surrounding class.
4499 //
4500 // FIXME: We can actually do this whether or not the name is qualified,
4501 // because if it is qualified in this context it must be being used as
4502 // a constructor name. However, we do not implement that rule correctly
4503 // currently, so we're somewhat conservative here.
4504 IsConstructor = IsUnqualified;
4505 }
4506 break;
4507
Richard Smith412e0cc2012-03-27 00:56:56 +00004508 default:
4509 IsConstructor = true;
4510 break;
4511 }
4512 }
4513
Douglas Gregor0efc2c12010-01-13 17:31:36 +00004514 TPA.Revert();
4515 return IsConstructor;
4516}
Reid Spencer5f016e22007-07-11 17:01:13 +00004517
4518/// ParseTypeQualifierListOpt
Dawn Perchik52fc3142010-09-03 01:29:35 +00004519/// type-qualifier-list: [C99 6.7.5]
4520/// type-qualifier
Chad Rosier8decdee2012-06-26 22:30:43 +00004521/// [vendor] attributes
Stephen Hines176edba2014-12-01 14:53:08 -08004522/// [ only if AttrReqs & AR_VendorAttributesParsed ]
Dawn Perchik52fc3142010-09-03 01:29:35 +00004523/// type-qualifier-list type-qualifier
Chad Rosier8decdee2012-06-26 22:30:43 +00004524/// [vendor] type-qualifier-list attributes
Stephen Hines176edba2014-12-01 14:53:08 -08004525/// [ only if AttrReqs & AR_VendorAttributesParsed ]
Dawn Perchik52fc3142010-09-03 01:29:35 +00004526/// [C++0x] attribute-specifier[opt] is allowed before cv-qualifier-seq
Stephen Hines176edba2014-12-01 14:53:08 -08004527/// [ only if AttReqs & AR_CXX11AttributesParsed ]
4528/// Note: vendor can be GNU, MS, etc and can be explicitly controlled via
4529/// AttrRequirements bitmask values.
4530void Parser::ParseTypeQualifierListOpt(DeclSpec &DS, unsigned AttrReqs,
Bill Wendling7f3ec662013-11-26 04:10:07 +00004531 bool AtomicAllowed,
4532 bool IdentifierRequired) {
Stephen Hines176edba2014-12-01 14:53:08 -08004533 if (getLangOpts().CPlusPlus11 && (AttrReqs & AR_CXX11AttributesParsed) &&
Richard Smith6ee326a2012-04-10 01:32:12 +00004534 isCXX11AttributeSpecifier()) {
John McCall0b7e6782011-03-24 11:26:52 +00004535 ParsedAttributesWithRange attrs(AttrFactory);
Richard Smithc56298d2012-04-10 03:25:07 +00004536 ParseCXX11Attributes(attrs);
Richard Smith6ee326a2012-04-10 01:32:12 +00004537 DS.takeAttributesFrom(attrs);
Sean Huntbbd37c62009-11-21 08:43:09 +00004538 }
Abramo Bagnara796aa442011-03-12 11:17:06 +00004539
4540 SourceLocation EndLoc;
4541
Reid Spencer5f016e22007-07-11 17:01:13 +00004542 while (1) {
John McCallfec54012009-08-03 20:12:06 +00004543 bool isInvalid = false;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07004544 const char *PrevSpec = nullptr;
John McCallfec54012009-08-03 20:12:06 +00004545 unsigned DiagID = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00004546 SourceLocation Loc = Tok.getLocation();
4547
4548 switch (Tok.getKind()) {
Douglas Gregor1a480c42010-08-27 17:35:51 +00004549 case tok::code_completion:
4550 Actions.CodeCompleteTypeQualifiers(DS);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00004551 return cutOffParsing();
Chad Rosier8decdee2012-06-26 22:30:43 +00004552
Reid Spencer5f016e22007-07-11 17:01:13 +00004553 case tok::kw_const:
John McCallfec54012009-08-03 20:12:06 +00004554 isInvalid = DS.SetTypeQual(DeclSpec::TQ_const , Loc, PrevSpec, DiagID,
Richard Smithd654f2d2012-10-17 23:31:46 +00004555 getLangOpts());
Reid Spencer5f016e22007-07-11 17:01:13 +00004556 break;
4557 case tok::kw_volatile:
John McCallfec54012009-08-03 20:12:06 +00004558 isInvalid = DS.SetTypeQual(DeclSpec::TQ_volatile, Loc, PrevSpec, DiagID,
Richard Smithd654f2d2012-10-17 23:31:46 +00004559 getLangOpts());
Reid Spencer5f016e22007-07-11 17:01:13 +00004560 break;
4561 case tok::kw_restrict:
John McCallfec54012009-08-03 20:12:06 +00004562 isInvalid = DS.SetTypeQual(DeclSpec::TQ_restrict, Loc, PrevSpec, DiagID,
Richard Smithd654f2d2012-10-17 23:31:46 +00004563 getLangOpts());
Reid Spencer5f016e22007-07-11 17:01:13 +00004564 break;
Richard Smith4cf4a5e2013-03-28 01:55:44 +00004565 case tok::kw__Atomic:
4566 if (!AtomicAllowed)
4567 goto DoneWithTypeQuals;
4568 isInvalid = DS.SetTypeQual(DeclSpec::TQ_atomic, Loc, PrevSpec, DiagID,
4569 getLangOpts());
4570 break;
Peter Collingbourne207f4d82011-03-18 22:38:29 +00004571
4572 // OpenCL qualifiers:
Peter Collingbourne207f4d82011-03-18 22:38:29 +00004573 case tok::kw___private:
4574 case tok::kw___global:
4575 case tok::kw___local:
4576 case tok::kw___constant:
Stephen Hines0e2c34f2015-03-23 12:09:02 -07004577 case tok::kw___generic:
Peter Collingbourne207f4d82011-03-18 22:38:29 +00004578 case tok::kw___read_only:
4579 case tok::kw___write_only:
4580 case tok::kw___read_write:
Stephen Hines651f13c2014-04-23 16:59:28 -07004581 ParseOpenCLQualifiers(DS.getAttributes());
Peter Collingbourne207f4d82011-03-18 22:38:29 +00004582 break;
4583
Aaron Ballmanaa9df092013-05-22 23:25:32 +00004584 case tok::kw___uptr:
Bill Wendling7f3ec662013-11-26 04:10:07 +00004585 // GNU libc headers in C mode use '__uptr' as an identifer which conflicts
4586 // with the MS modifier keyword.
Stephen Hines176edba2014-12-01 14:53:08 -08004587 if ((AttrReqs & AR_DeclspecAttributesParsed) && !getLangOpts().CPlusPlus &&
Bill Wendling03e463e2013-12-16 02:32:55 +00004588 IdentifierRequired && DS.isEmpty() && NextToken().is(tok::semi)) {
4589 if (TryKeywordIdentFallback(false))
4590 continue;
Bill Wendling7f3ec662013-11-26 04:10:07 +00004591 }
4592 case tok::kw___sptr:
Eli Friedman290eeb02009-06-08 23:27:34 +00004593 case tok::kw___w64:
Steve Naroff86bc6cf2008-12-25 14:41:26 +00004594 case tok::kw___ptr64:
Francois Pichet58fd97a2011-08-25 00:36:46 +00004595 case tok::kw___ptr32:
Steve Naroff239f0732008-12-25 14:16:32 +00004596 case tok::kw___cdecl:
4597 case tok::kw___stdcall:
4598 case tok::kw___fastcall:
Douglas Gregorf813a2c2010-05-18 16:57:00 +00004599 case tok::kw___thiscall:
Stephen Hines176edba2014-12-01 14:53:08 -08004600 case tok::kw___vectorcall:
Francois Pichet3bd9aa42011-08-18 09:59:55 +00004601 case tok::kw___unaligned:
Stephen Hines176edba2014-12-01 14:53:08 -08004602 if (AttrReqs & AR_DeclspecAttributesParsed) {
John McCall7f040a92010-12-24 02:08:15 +00004603 ParseMicrosoftTypeAttributes(DS.getAttributes());
Eli Friedman290eeb02009-06-08 23:27:34 +00004604 continue;
4605 }
4606 goto DoneWithTypeQuals;
Dawn Perchik52fc3142010-09-03 01:29:35 +00004607 case tok::kw___pascal:
Stephen Hines176edba2014-12-01 14:53:08 -08004608 if (AttrReqs & AR_VendorAttributesParsed) {
John McCall7f040a92010-12-24 02:08:15 +00004609 ParseBorlandTypeAttributes(DS.getAttributes());
Dawn Perchik52fc3142010-09-03 01:29:35 +00004610 continue;
4611 }
4612 goto DoneWithTypeQuals;
Reid Spencer5f016e22007-07-11 17:01:13 +00004613 case tok::kw___attribute:
Stephen Hines176edba2014-12-01 14:53:08 -08004614 if (AttrReqs & AR_GNUAttributesParsedAndRejected)
4615 // When GNU attributes are expressly forbidden, diagnose their usage.
4616 Diag(Tok, diag::err_attributes_not_allowed);
4617
4618 // Parse the attributes even if they are rejected to ensure that error
4619 // recovery is graceful.
4620 if (AttrReqs & AR_GNUAttributesParsed ||
4621 AttrReqs & AR_GNUAttributesParsedAndRejected) {
John McCall7f040a92010-12-24 02:08:15 +00004622 ParseGNUAttributes(DS.getAttributes());
Chris Lattner5a69d1c2008-12-18 07:02:59 +00004623 continue; // do *not* consume the next token!
4624 }
4625 // otherwise, FALL THROUGH!
4626 default:
Steve Naroff239f0732008-12-25 14:16:32 +00004627 DoneWithTypeQuals:
Chris Lattner5a69d1c2008-12-18 07:02:59 +00004628 // If this is not a type-qualifier token, we're done reading type
4629 // qualifiers. First verify that DeclSpec's are consistent.
Stephen Hines651f13c2014-04-23 16:59:28 -07004630 DS.Finish(Diags, PP, Actions.getASTContext().getPrintingPolicy());
Abramo Bagnara796aa442011-03-12 11:17:06 +00004631 if (EndLoc.isValid())
4632 DS.SetRangeEnd(EndLoc);
Chris Lattner5a69d1c2008-12-18 07:02:59 +00004633 return;
Reid Spencer5f016e22007-07-11 17:01:13 +00004634 }
Chris Lattnera1fcbad2008-12-18 06:50:14 +00004635
Reid Spencer5f016e22007-07-11 17:01:13 +00004636 // If the specifier combination wasn't legal, issue a diagnostic.
4637 if (isInvalid) {
4638 assert(PrevSpec && "Method did not return previous specifier!");
Chris Lattner1ab3b962008-11-18 07:48:38 +00004639 Diag(Tok, DiagID) << PrevSpec;
Reid Spencer5f016e22007-07-11 17:01:13 +00004640 }
Abramo Bagnara796aa442011-03-12 11:17:06 +00004641 EndLoc = ConsumeToken();
Reid Spencer5f016e22007-07-11 17:01:13 +00004642 }
4643}
4644
4645
4646/// ParseDeclarator - Parse and verify a newly-initialized declarator.
4647///
4648void Parser::ParseDeclarator(Declarator &D) {
4649 /// This implements the 'declarator' production in the C grammar, then checks
4650 /// for well-formedness and issues diagnostics.
Sebastian Redl4c5d3202008-11-21 19:14:01 +00004651 ParseDeclaratorInternal(D, &Parser::ParseDirectDeclarator);
Reid Spencer5f016e22007-07-11 17:01:13 +00004652}
4653
Stephen Hines176edba2014-12-01 14:53:08 -08004654static bool isPtrOperatorToken(tok::TokenKind Kind, const LangOptions &Lang,
4655 unsigned TheContext) {
Richard Smith9988f282012-03-29 01:16:42 +00004656 if (Kind == tok::star || Kind == tok::caret)
4657 return true;
4658
Richard Smith9988f282012-03-29 01:16:42 +00004659 if (!Lang.CPlusPlus)
4660 return false;
4661
Stephen Hines176edba2014-12-01 14:53:08 -08004662 if (Kind == tok::amp)
4663 return true;
4664
4665 // We parse rvalue refs in C++03, because otherwise the errors are scary.
4666 // But we must not parse them in conversion-type-ids and new-type-ids, since
4667 // those can be legitimately followed by a && operator.
4668 // (The same thing can in theory happen after a trailing-return-type, but
4669 // since those are a C++11 feature, there is no rejects-valid issue there.)
4670 if (Kind == tok::ampamp)
4671 return Lang.CPlusPlus11 || (TheContext != Declarator::ConversionIdContext &&
4672 TheContext != Declarator::CXXNewContext);
4673
4674 return false;
Richard Smith9988f282012-03-29 01:16:42 +00004675}
4676
Sebastian Redl4c5d3202008-11-21 19:14:01 +00004677/// ParseDeclaratorInternal - Parse a C or C++ declarator. The direct-declarator
4678/// is parsed by the function passed to it. Pass null, and the direct-declarator
4679/// isn't parsed at all, making this function effectively parse the C++
Douglas Gregor2f1bc522008-11-07 20:08:42 +00004680/// ptr-operator production.
4681///
Richard Smith0706df42011-10-19 21:33:05 +00004682/// If the grammar of this construct is extended, matching changes must also be
Richard Smith5d8388c2012-03-27 01:42:32 +00004683/// made to TryParseDeclarator and MightBeDeclarator, and possibly to
4684/// isConstructorDeclarator.
Richard Smith0706df42011-10-19 21:33:05 +00004685///
Sebastian Redlf30208a2009-01-24 21:16:55 +00004686/// declarator: [C99 6.7.5] [C++ 8p4, dcl.decl]
4687/// [C] pointer[opt] direct-declarator
4688/// [C++] direct-declarator
4689/// [C++] ptr-operator declarator
Reid Spencer5f016e22007-07-11 17:01:13 +00004690///
4691/// pointer: [C99 6.7.5]
4692/// '*' type-qualifier-list[opt]
4693/// '*' type-qualifier-list[opt] pointer
4694///
Douglas Gregor2f1bc522008-11-07 20:08:42 +00004695/// ptr-operator:
4696/// '*' cv-qualifier-seq[opt]
4697/// '&'
Sebastian Redl05532f22009-03-15 22:02:01 +00004698/// [C++0x] '&&'
Douglas Gregor2f1bc522008-11-07 20:08:42 +00004699/// [GNU] '&' restrict[opt] attributes[opt]
Sebastian Redl05532f22009-03-15 22:02:01 +00004700/// [GNU?] '&&' restrict[opt] attributes[opt]
Sebastian Redlf30208a2009-01-24 21:16:55 +00004701/// '::'[opt] nested-name-specifier '*' cv-qualifier-seq[opt]
Sebastian Redl4c5d3202008-11-21 19:14:01 +00004702void Parser::ParseDeclaratorInternal(Declarator &D,
4703 DirectDeclParseFunction DirectDeclParser) {
Douglas Gregor91a28862009-08-26 14:27:30 +00004704 if (Diags.hasAllExtensionsSilenced())
4705 D.setExtension();
Chad Rosier8decdee2012-06-26 22:30:43 +00004706
Sebastian Redlf30208a2009-01-24 21:16:55 +00004707 // C++ member pointers start with a '::' or a nested-name.
4708 // Member pointers get special handling, since there's no place for the
4709 // scope spec in the generic path below.
David Blaikie4e4d0842012-03-11 07:00:24 +00004710 if (getLangOpts().CPlusPlus &&
Stephen Hines176edba2014-12-01 14:53:08 -08004711 (Tok.is(tok::coloncolon) ||
4712 (Tok.is(tok::identifier) &&
4713 (NextToken().is(tok::coloncolon) || NextToken().is(tok::less))) ||
Chris Lattnerf919bfe2009-03-24 17:04:48 +00004714 Tok.is(tok::annot_cxxscope))) {
Douglas Gregorefaa93a2011-11-07 17:33:42 +00004715 bool EnteringContext = D.getContext() == Declarator::FileContext ||
4716 D.getContext() == Declarator::MemberContext;
Sebastian Redlf30208a2009-01-24 21:16:55 +00004717 CXXScopeSpec SS;
Douglas Gregorefaa93a2011-11-07 17:33:42 +00004718 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), EnteringContext);
John McCall9ba61662010-02-26 08:45:28 +00004719
Jeffrey Yasskinedc28772010-04-07 23:29:58 +00004720 if (SS.isNotEmpty()) {
Mike Stump1eb44332009-09-09 15:08:12 +00004721 if (Tok.isNot(tok::star)) {
Sebastian Redlf30208a2009-01-24 21:16:55 +00004722 // The scope spec really belongs to the direct-declarator.
Richard Smith6a502c42013-01-08 22:43:49 +00004723 if (D.mayHaveIdentifier())
4724 D.getCXXScopeSpec() = SS;
4725 else
4726 AnnotateScopeToken(SS, true);
4727
Sebastian Redlf30208a2009-01-24 21:16:55 +00004728 if (DirectDeclParser)
4729 (this->*DirectDeclParser)(D);
4730 return;
4731 }
4732
4733 SourceLocation Loc = ConsumeToken();
Sebastian Redlab197ba2009-02-09 18:23:29 +00004734 D.SetRangeEnd(Loc);
John McCall0b7e6782011-03-24 11:26:52 +00004735 DeclSpec DS(AttrFactory);
Sebastian Redlf30208a2009-01-24 21:16:55 +00004736 ParseTypeQualifierListOpt(DS);
Sebastian Redlab197ba2009-02-09 18:23:29 +00004737 D.ExtendWithDeclSpec(DS);
Sebastian Redlf30208a2009-01-24 21:16:55 +00004738
4739 // Recurse to parse whatever is left.
4740 ParseDeclaratorInternal(D, DirectDeclParser);
4741
4742 // Sema will have to catch (syntactically invalid) pointers into global
4743 // scope. It has to catch pointers into namespace scope anyway.
4744 D.AddTypeInfo(DeclaratorChunk::getMemberPointer(SS,DS.getTypeQualifiers(),
Stephen Hines0e2c34f2015-03-23 12:09:02 -07004745 DS.getLocEnd()),
John McCall0b7e6782011-03-24 11:26:52 +00004746 DS.getAttributes(),
Sebastian Redlab197ba2009-02-09 18:23:29 +00004747 /* Don't replace range end. */SourceLocation());
Sebastian Redlf30208a2009-01-24 21:16:55 +00004748 return;
4749 }
4750 }
4751
4752 tok::TokenKind Kind = Tok.getKind();
Steve Naroff5618bd42008-08-27 16:04:49 +00004753 // Not a pointer, C++ reference, or block.
Stephen Hines176edba2014-12-01 14:53:08 -08004754 if (!isPtrOperatorToken(Kind, getLangOpts(), D.getContext())) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +00004755 if (DirectDeclParser)
4756 (this->*DirectDeclParser)(D);
Douglas Gregor2f1bc522008-11-07 20:08:42 +00004757 return;
4758 }
Sebastian Redlf30208a2009-01-24 21:16:55 +00004759
Sebastian Redl05532f22009-03-15 22:02:01 +00004760 // Otherwise, '*' -> pointer, '^' -> block, '&' -> lvalue reference,
4761 // '&&' -> rvalue reference
Sebastian Redl743de1f2009-03-23 00:00:23 +00004762 SourceLocation Loc = ConsumeToken(); // Eat the *, ^, & or &&.
Sebastian Redlab197ba2009-02-09 18:23:29 +00004763 D.SetRangeEnd(Loc);
Reid Spencer5f016e22007-07-11 17:01:13 +00004764
Chris Lattner9af55002009-03-27 04:18:06 +00004765 if (Kind == tok::star || Kind == tok::caret) {
Chris Lattner76549142008-02-21 01:32:26 +00004766 // Is a pointer.
John McCall0b7e6782011-03-24 11:26:52 +00004767 DeclSpec DS(AttrFactory);
Sebastian Redlf30208a2009-01-24 21:16:55 +00004768
Stephen Hines176edba2014-12-01 14:53:08 -08004769 // GNU attributes are not allowed here in a new-type-id, but Declspec and
4770 // C++11 attributes are allowed.
4771 unsigned Reqs = AR_CXX11AttributesParsed | AR_DeclspecAttributesParsed |
4772 ((D.getContext() != Declarator::CXXNewContext)
4773 ? AR_GNUAttributesParsed
4774 : AR_GNUAttributesParsedAndRejected);
4775 ParseTypeQualifierListOpt(DS, Reqs, true, !D.mayOmitIdentifier());
Sebastian Redlab197ba2009-02-09 18:23:29 +00004776 D.ExtendWithDeclSpec(DS);
Sebastian Redlf30208a2009-01-24 21:16:55 +00004777
Reid Spencer5f016e22007-07-11 17:01:13 +00004778 // Recursively parse the declarator.
Sebastian Redl4c5d3202008-11-21 19:14:01 +00004779 ParseDeclaratorInternal(D, DirectDeclParser);
Steve Naroff5618bd42008-08-27 16:04:49 +00004780 if (Kind == tok::star)
4781 // Remember that we parsed a pointer type, and remember the type-quals.
4782 D.AddTypeInfo(DeclaratorChunk::getPointer(DS.getTypeQualifiers(), Loc,
Chandler Carruthd067c072011-02-23 18:51:59 +00004783 DS.getConstSpecLoc(),
4784 DS.getVolatileSpecLoc(),
Pirama Arumuga Nainar33337ca2015-05-06 11:48:57 -07004785 DS.getRestrictSpecLoc(),
4786 DS.getAtomicSpecLoc()),
John McCall0b7e6782011-03-24 11:26:52 +00004787 DS.getAttributes(),
Sebastian Redlab197ba2009-02-09 18:23:29 +00004788 SourceLocation());
Steve Naroff5618bd42008-08-27 16:04:49 +00004789 else
4790 // Remember that we parsed a Block type, and remember the type-quals.
Mike Stump1eb44332009-09-09 15:08:12 +00004791 D.AddTypeInfo(DeclaratorChunk::getBlockPointer(DS.getTypeQualifiers(),
John McCall0b7e6782011-03-24 11:26:52 +00004792 Loc),
4793 DS.getAttributes(),
Sebastian Redlab197ba2009-02-09 18:23:29 +00004794 SourceLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00004795 } else {
4796 // Is a reference
John McCall0b7e6782011-03-24 11:26:52 +00004797 DeclSpec DS(AttrFactory);
Reid Spencer5f016e22007-07-11 17:01:13 +00004798
Sebastian Redl743de1f2009-03-23 00:00:23 +00004799 // Complain about rvalue references in C++03, but then go on and build
4800 // the declarator.
Richard Smith7fe62082011-10-15 05:09:34 +00004801 if (Kind == tok::ampamp)
Richard Smith80ad52f2013-01-02 11:42:31 +00004802 Diag(Loc, getLangOpts().CPlusPlus11 ?
Richard Smith7fe62082011-10-15 05:09:34 +00004803 diag::warn_cxx98_compat_rvalue_reference :
4804 diag::ext_rvalue_reference);
Sebastian Redl743de1f2009-03-23 00:00:23 +00004805
Richard Smith6ee326a2012-04-10 01:32:12 +00004806 // GNU-style and C++11 attributes are allowed here, as is restrict.
4807 ParseTypeQualifierListOpt(DS);
4808 D.ExtendWithDeclSpec(DS);
4809
Reid Spencer5f016e22007-07-11 17:01:13 +00004810 // C++ 8.3.2p1: cv-qualified references are ill-formed except when the
4811 // cv-qualifiers are introduced through the use of a typedef or of a
4812 // template type argument, in which case the cv-qualifiers are ignored.
Reid Spencer5f016e22007-07-11 17:01:13 +00004813 if (DS.getTypeQualifiers() != DeclSpec::TQ_unspecified) {
4814 if (DS.getTypeQualifiers() & DeclSpec::TQ_const)
4815 Diag(DS.getConstSpecLoc(),
Chris Lattner1ab3b962008-11-18 07:48:38 +00004816 diag::err_invalid_reference_qualifier_application) << "const";
Reid Spencer5f016e22007-07-11 17:01:13 +00004817 if (DS.getTypeQualifiers() & DeclSpec::TQ_volatile)
4818 Diag(DS.getVolatileSpecLoc(),
Chris Lattner1ab3b962008-11-18 07:48:38 +00004819 diag::err_invalid_reference_qualifier_application) << "volatile";
Richard Smith4cf4a5e2013-03-28 01:55:44 +00004820 // 'restrict' is permitted as an extension.
4821 if (DS.getTypeQualifiers() & DeclSpec::TQ_atomic)
4822 Diag(DS.getAtomicSpecLoc(),
4823 diag::err_invalid_reference_qualifier_application) << "_Atomic";
Reid Spencer5f016e22007-07-11 17:01:13 +00004824 }
4825
4826 // Recursively parse the declarator.
Sebastian Redl4c5d3202008-11-21 19:14:01 +00004827 ParseDeclaratorInternal(D, DirectDeclParser);
Reid Spencer5f016e22007-07-11 17:01:13 +00004828
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +00004829 if (D.getNumTypeObjects() > 0) {
4830 // C++ [dcl.ref]p4: There shall be no references to references.
4831 DeclaratorChunk& InnerChunk = D.getTypeObject(D.getNumTypeObjects() - 1);
4832 if (InnerChunk.Kind == DeclaratorChunk::Reference) {
Chris Lattnerda83bac2008-11-19 07:37:42 +00004833 if (const IdentifierInfo *II = D.getIdentifier())
4834 Diag(InnerChunk.Loc, diag::err_illegal_decl_reference_to_reference)
4835 << II;
4836 else
4837 Diag(InnerChunk.Loc, diag::err_illegal_decl_reference_to_reference)
4838 << "type name";
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +00004839
Sebastian Redl4c5d3202008-11-21 19:14:01 +00004840 // Once we've complained about the reference-to-reference, we
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +00004841 // can go ahead and build the (technically ill-formed)
4842 // declarator: reference collapsing will take care of it.
4843 }
4844 }
4845
Richard Smith4cf4a5e2013-03-28 01:55:44 +00004846 // Remember that we parsed a reference type.
Chris Lattner76549142008-02-21 01:32:26 +00004847 D.AddTypeInfo(DeclaratorChunk::getReference(DS.getTypeQualifiers(), Loc,
Sebastian Redl05532f22009-03-15 22:02:01 +00004848 Kind == tok::amp),
John McCall0b7e6782011-03-24 11:26:52 +00004849 DS.getAttributes(),
Sebastian Redlab197ba2009-02-09 18:23:29 +00004850 SourceLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00004851 }
4852}
4853
Stephen Hinesc568f1e2014-07-21 00:47:37 -07004854// When correcting from misplaced brackets before the identifier, the location
4855// is saved inside the declarator so that other diagnostic messages can use
4856// them. This extracts and returns that location, or returns the provided
4857// location if a stored location does not exist.
4858static SourceLocation getMissingDeclaratorIdLoc(Declarator &D,
4859 SourceLocation Loc) {
4860 if (D.getName().StartLocation.isInvalid() &&
4861 D.getName().EndLocation.isValid())
4862 return D.getName().EndLocation;
4863
4864 return Loc;
Richard Smith9988f282012-03-29 01:16:42 +00004865}
4866
Reid Spencer5f016e22007-07-11 17:01:13 +00004867/// ParseDirectDeclarator
4868/// direct-declarator: [C99 6.7.5]
Douglas Gregor42a552f2008-11-05 20:51:48 +00004869/// [C99] identifier
Reid Spencer5f016e22007-07-11 17:01:13 +00004870/// '(' declarator ')'
4871/// [GNU] '(' attributes declarator ')'
4872/// [C90] direct-declarator '[' constant-expression[opt] ']'
4873/// [C99] direct-declarator '[' type-qual-list[opt] assignment-expr[opt] ']'
4874/// [C99] direct-declarator '[' 'static' type-qual-list[opt] assign-expr ']'
4875/// [C99] direct-declarator '[' type-qual-list 'static' assignment-expr ']'
4876/// [C99] direct-declarator '[' type-qual-list[opt] '*' ']'
Richard Smith6ee326a2012-04-10 01:32:12 +00004877/// [C++11] direct-declarator '[' constant-expression[opt] ']'
4878/// attribute-specifier-seq[opt]
Reid Spencer5f016e22007-07-11 17:01:13 +00004879/// direct-declarator '(' parameter-type-list ')'
4880/// direct-declarator '(' identifier-list[opt] ')'
4881/// [GNU] direct-declarator '(' parameter-forward-declarations
4882/// parameter-type-list[opt] ')'
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00004883/// [C++] direct-declarator '(' parameter-declaration-clause ')'
4884/// cv-qualifier-seq[opt] exception-specification[opt]
Richard Smith6ee326a2012-04-10 01:32:12 +00004885/// [C++11] direct-declarator '(' parameter-declaration-clause ')'
4886/// attribute-specifier-seq[opt] cv-qualifier-seq[opt]
4887/// ref-qualifier[opt] exception-specification[opt]
Douglas Gregorb48fe382008-10-31 09:07:45 +00004888/// [C++] declarator-id
Richard Smith6ee326a2012-04-10 01:32:12 +00004889/// [C++11] declarator-id attribute-specifier-seq[opt]
Douglas Gregor42a552f2008-11-05 20:51:48 +00004890///
4891/// declarator-id: [C++ 8]
Douglas Gregora8bc8c92010-12-23 22:44:42 +00004892/// '...'[opt] id-expression
Douglas Gregor42a552f2008-11-05 20:51:48 +00004893/// '::'[opt] nested-name-specifier[opt] type-name
4894///
4895/// id-expression: [C++ 5.1]
4896/// unqualified-id
Douglas Gregordb422df2009-09-25 21:45:23 +00004897/// qualified-id
Douglas Gregor42a552f2008-11-05 20:51:48 +00004898///
4899/// unqualified-id: [C++ 5.1]
Mike Stump1eb44332009-09-09 15:08:12 +00004900/// identifier
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00004901/// operator-function-id
Douglas Gregordb422df2009-09-25 21:45:23 +00004902/// conversion-function-id
Mike Stump1eb44332009-09-09 15:08:12 +00004903/// '~' class-name
Douglas Gregor39a8de12009-02-25 19:37:18 +00004904/// template-id
Argyrios Kyrtzidisc7ed9c62008-11-07 22:02:30 +00004905///
Richard Smith5d8388c2012-03-27 01:42:32 +00004906/// Note, any additional constructs added here may need corresponding changes
4907/// in isConstructorDeclarator.
Reid Spencer5f016e22007-07-11 17:01:13 +00004908void Parser::ParseDirectDeclarator(Declarator &D) {
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00004909 DeclaratorScopeObj DeclScopeObj(*this, D.getCXXScopeSpec());
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00004910
David Blaikie4e4d0842012-03-11 07:00:24 +00004911 if (getLangOpts().CPlusPlus && D.mayHaveIdentifier()) {
Stephen Hines176edba2014-12-01 14:53:08 -08004912 // Don't parse FOO:BAR as if it were a typo for FOO::BAR inside a class, in
4913 // this context it is a bitfield. Also in range-based for statement colon
4914 // may delimit for-range-declaration.
4915 ColonProtectionRAIIObject X(*this,
4916 D.getContext() == Declarator::MemberContext ||
4917 (D.getContext() == Declarator::ForContext &&
4918 getLangOpts().CPlusPlus11));
4919
Douglas Gregor3f9a0562009-11-03 01:35:08 +00004920 // ParseDeclaratorInternal might already have parsed the scope.
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00004921 if (D.getCXXScopeSpec().isEmpty()) {
Douglas Gregorefaa93a2011-11-07 17:33:42 +00004922 bool EnteringContext = D.getContext() == Declarator::FileContext ||
4923 D.getContext() == Declarator::MemberContext;
Chad Rosier8decdee2012-06-26 22:30:43 +00004924 ParseOptionalCXXScopeSpecifier(D.getCXXScopeSpec(), ParsedType(),
Douglas Gregorefaa93a2011-11-07 17:33:42 +00004925 EnteringContext);
John McCall9ba61662010-02-26 08:45:28 +00004926 }
4927
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00004928 if (D.getCXXScopeSpec().isValid()) {
Stephen Hines0e2c34f2015-03-23 12:09:02 -07004929 if (Actions.ShouldEnterDeclaratorScope(getCurScope(),
4930 D.getCXXScopeSpec()))
John McCalle7e278b2009-12-11 20:04:54 +00004931 // Change the declaration context for name lookup, until this function
4932 // is exited (and the declarator has been parsed).
4933 DeclScopeObj.EnterDeclaratorScope();
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00004934 }
4935
Douglas Gregora8bc8c92010-12-23 22:44:42 +00004936 // C++0x [dcl.fct]p14:
Stephen Hines0e2c34f2015-03-23 12:09:02 -07004937 // There is a syntactic ambiguity when an ellipsis occurs at the end of a
4938 // parameter-declaration-clause without a preceding comma. In this case,
4939 // the ellipsis is parsed as part of the abstract-declarator if the type
4940 // of the parameter either names a template parameter pack that has not
4941 // been expanded or contains auto; otherwise, it is parsed as part of the
4942 // parameter-declaration-clause.
Richard Smith9988f282012-03-29 01:16:42 +00004943 if (Tok.is(tok::ellipsis) && D.getCXXScopeSpec().isEmpty() &&
Douglas Gregora8bc8c92010-12-23 22:44:42 +00004944 !((D.getContext() == Declarator::PrototypeContext ||
Faisal Valifad9e132013-09-26 19:54:12 +00004945 D.getContext() == Declarator::LambdaExprParameterContext ||
Douglas Gregora8bc8c92010-12-23 22:44:42 +00004946 D.getContext() == Declarator::BlockLiteralContext) &&
Douglas Gregora8bc8c92010-12-23 22:44:42 +00004947 NextToken().is(tok::r_paren) &&
Richard Smith30f2a742013-02-20 20:19:27 +00004948 !D.hasGroupingParens() &&
Stephen Hines0e2c34f2015-03-23 12:09:02 -07004949 !Actions.containsUnexpandedParameterPacks(D) &&
4950 D.getDeclSpec().getTypeSpecType() != TST_auto)) {
Richard Smith9988f282012-03-29 01:16:42 +00004951 SourceLocation EllipsisLoc = ConsumeToken();
Stephen Hines176edba2014-12-01 14:53:08 -08004952 if (isPtrOperatorToken(Tok.getKind(), getLangOpts(), D.getContext())) {
Richard Smith9988f282012-03-29 01:16:42 +00004953 // The ellipsis was put in the wrong place. Recover, and explain to
4954 // the user what they should have done.
4955 ParseDeclarator(D);
Stephen Hinesc568f1e2014-07-21 00:47:37 -07004956 if (EllipsisLoc.isValid())
4957 DiagnoseMisplacedEllipsisInDeclarator(EllipsisLoc, D);
Richard Smith9988f282012-03-29 01:16:42 +00004958 return;
4959 } else
4960 D.setEllipsisLoc(EllipsisLoc);
4961
4962 // The ellipsis can't be followed by a parenthesized declarator. We
4963 // check for that in ParseParenDeclarator, after we have disambiguated
4964 // the l_paren token.
4965 }
4966
Douglas Gregor3f9a0562009-11-03 01:35:08 +00004967 if (Tok.is(tok::identifier) || Tok.is(tok::kw_operator) ||
4968 Tok.is(tok::annot_template_id) || Tok.is(tok::tilde)) {
4969 // We found something that indicates the start of an unqualified-id.
4970 // Parse that unqualified-id.
John McCallba9d8532010-04-13 06:39:49 +00004971 bool AllowConstructorName;
4972 if (D.getDeclSpec().hasTypeSpecifier())
4973 AllowConstructorName = false;
4974 else if (D.getCXXScopeSpec().isSet())
4975 AllowConstructorName =
4976 (D.getContext() == Declarator::FileContext ||
Dmitri Gribenko1b9e8f72013-02-12 17:27:41 +00004977 D.getContext() == Declarator::MemberContext);
John McCallba9d8532010-04-13 06:39:49 +00004978 else
4979 AllowConstructorName = (D.getContext() == Declarator::MemberContext);
4980
Abramo Bagnarae4b92762012-01-27 09:46:47 +00004981 SourceLocation TemplateKWLoc;
Stephen Hines0e2c34f2015-03-23 12:09:02 -07004982 bool HadScope = D.getCXXScopeSpec().isValid();
Chad Rosier8decdee2012-06-26 22:30:43 +00004983 if (ParseUnqualifiedId(D.getCXXScopeSpec(),
4984 /*EnteringContext=*/true,
4985 /*AllowDestructorName=*/true,
Douglas Gregor0efc2c12010-01-13 17:31:36 +00004986 AllowConstructorName,
John McCallb3d87482010-08-24 05:47:05 +00004987 ParsedType(),
Abramo Bagnarae4b92762012-01-27 09:46:47 +00004988 TemplateKWLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00004989 D.getName()) ||
4990 // Once we're past the identifier, if the scope was bad, mark the
4991 // whole declarator bad.
4992 D.getCXXScopeSpec().isInvalid()) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07004993 D.SetIdentifier(nullptr, Tok.getLocation());
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00004994 D.setInvalidType(true);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00004995 } else {
Stephen Hines0e2c34f2015-03-23 12:09:02 -07004996 // ParseUnqualifiedId might have parsed a scope specifier during error
4997 // recovery. If it did so, enter that scope.
4998 if (!HadScope && D.getCXXScopeSpec().isValid() &&
4999 Actions.ShouldEnterDeclaratorScope(getCurScope(),
5000 D.getCXXScopeSpec()))
5001 DeclScopeObj.EnterDeclaratorScope();
5002
Douglas Gregor3f9a0562009-11-03 01:35:08 +00005003 // Parsed the unqualified-id; update range information and move along.
5004 if (D.getSourceRange().getBegin().isInvalid())
5005 D.SetRangeBegin(D.getName().getSourceRange().getBegin());
5006 D.SetRangeEnd(D.getName().getSourceRange().getEnd());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005007 }
Douglas Gregor3f9a0562009-11-03 01:35:08 +00005008 goto PastIdentifier;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005009 }
Douglas Gregor3f9a0562009-11-03 01:35:08 +00005010 } else if (Tok.is(tok::identifier) && D.mayHaveIdentifier()) {
David Blaikie4e4d0842012-03-11 07:00:24 +00005011 assert(!getLangOpts().CPlusPlus &&
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00005012 "There's a C++-specific check for tok::identifier above");
5013 assert(Tok.getIdentifierInfo() && "Not an identifier?");
5014 D.SetIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
Stephen Hines6bcf27b2014-05-29 04:14:42 -07005015 D.SetRangeEnd(Tok.getLocation());
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00005016 ConsumeToken();
Douglas Gregor3f9a0562009-11-03 01:35:08 +00005017 goto PastIdentifier;
Richard Smitha38253c2013-07-11 05:10:21 +00005018 } else if (Tok.is(tok::identifier) && D.diagnoseIdentifier()) {
Richard Smith8d1ab8a2013-10-13 22:12:28 +00005019 // A virt-specifier isn't treated as an identifier if it appears after a
5020 // trailing-return-type.
5021 if (D.getContext() != Declarator::TrailingReturnContext ||
5022 !isCXX11VirtSpecifier(Tok)) {
5023 Diag(Tok.getLocation(), diag::err_unexpected_unqualified_id)
5024 << FixItHint::CreateRemoval(Tok.getLocation());
Stephen Hines6bcf27b2014-05-29 04:14:42 -07005025 D.SetIdentifier(nullptr, Tok.getLocation());
Richard Smith8d1ab8a2013-10-13 22:12:28 +00005026 ConsumeToken();
5027 goto PastIdentifier;
5028 }
Douglas Gregor3f9a0562009-11-03 01:35:08 +00005029 }
Richard Smith9988f282012-03-29 01:16:42 +00005030
Douglas Gregor3f9a0562009-11-03 01:35:08 +00005031 if (Tok.is(tok::l_paren)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00005032 // direct-declarator: '(' declarator ')'
5033 // direct-declarator: '(' attributes declarator ')'
5034 // Example: 'char (*X)' or 'int (*XX)(void)'
5035 ParseParenDeclarator(D);
Douglas Gregor0efc2c12010-01-13 17:31:36 +00005036
5037 // If the declarator was parenthesized, we entered the declarator
5038 // scope when parsing the parenthesized declarator, then exited
5039 // the scope already. Re-enter the scope, if we need to.
5040 if (D.getCXXScopeSpec().isSet()) {
Fariborz Jahanian46877cd2010-08-17 23:50:37 +00005041 // If there was an error parsing parenthesized declarator, declarator
Richard Smith9988f282012-03-29 01:16:42 +00005042 // scope may have been entered before. Don't do it again.
Fariborz Jahanian46877cd2010-08-17 23:50:37 +00005043 if (!D.isInvalidType() &&
Stephen Hines0e2c34f2015-03-23 12:09:02 -07005044 Actions.ShouldEnterDeclaratorScope(getCurScope(),
5045 D.getCXXScopeSpec()))
Douglas Gregor0efc2c12010-01-13 17:31:36 +00005046 // Change the declaration context for name lookup, until this function
5047 // is exited (and the declarator has been parsed).
Fariborz Jahanian46877cd2010-08-17 23:50:37 +00005048 DeclScopeObj.EnterDeclaratorScope();
Douglas Gregor0efc2c12010-01-13 17:31:36 +00005049 }
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00005050 } else if (D.mayOmitIdentifier()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00005051 // This could be something simple like "int" (in which case the declarator
5052 // portion is empty), if an abstract-declarator is allowed.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07005053 D.SetIdentifier(nullptr, Tok.getLocation());
Richard Smith30f2a742013-02-20 20:19:27 +00005054
5055 // The grammar for abstract-pack-declarator does not allow grouping parens.
5056 // FIXME: Revisit this once core issue 1488 is resolved.
5057 if (D.hasEllipsis() && D.hasGroupingParens())
5058 Diag(PP.getLocForEndOfToken(D.getEllipsisLoc()),
5059 diag::ext_abstract_pack_declarator_parens);
Reid Spencer5f016e22007-07-11 17:01:13 +00005060 } else {
David Blaikiee75d9cf2012-06-29 22:03:56 +00005061 if (Tok.getKind() == tok::annot_pragma_parser_crash)
David Blaikie377da4c2012-08-21 18:56:49 +00005062 LLVM_BUILTIN_TRAP;
Stephen Hinesc568f1e2014-07-21 00:47:37 -07005063 if (Tok.is(tok::l_square))
5064 return ParseMisplacedBracketDeclarator(D);
5065 if (D.getContext() == Declarator::MemberContext) {
5066 Diag(getMissingDeclaratorIdLoc(D, Tok.getLocation()),
5067 diag::err_expected_member_name_or_semi)
Stephen Hines6bcf27b2014-05-29 04:14:42 -07005068 << (D.getDeclSpec().isEmpty() ? SourceRange()
5069 : D.getDeclSpec().getSourceRange());
Stephen Hinesc568f1e2014-07-21 00:47:37 -07005070 } else if (getLangOpts().CPlusPlus) {
Richard Trieudb55c04c2013-01-26 02:31:38 +00005071 if (Tok.is(tok::period) || Tok.is(tok::arrow))
5072 Diag(Tok, diag::err_invalid_operator_on_type) << Tok.is(tok::arrow);
Richard Trieuefb288c2013-09-05 02:31:33 +00005073 else {
5074 SourceLocation Loc = D.getCXXScopeSpec().getEndLoc();
5075 if (Tok.isAtStartOfLine() && Loc.isValid())
5076 Diag(PP.getLocForEndOfToken(Loc), diag::err_expected_unqualified_id)
5077 << getLangOpts().CPlusPlus;
5078 else
Stephen Hinesc568f1e2014-07-21 00:47:37 -07005079 Diag(getMissingDeclaratorIdLoc(D, Tok.getLocation()),
5080 diag::err_expected_unqualified_id)
Richard Trieuefb288c2013-09-05 02:31:33 +00005081 << getLangOpts().CPlusPlus;
5082 }
Stephen Hinesc568f1e2014-07-21 00:47:37 -07005083 } else {
5084 Diag(getMissingDeclaratorIdLoc(D, Tok.getLocation()),
5085 diag::err_expected_either)
5086 << tok::identifier << tok::l_paren;
5087 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -07005088 D.SetIdentifier(nullptr, Tok.getLocation());
Chris Lattner1f6f54b2008-11-11 06:13:16 +00005089 D.setInvalidType(true);
Reid Spencer5f016e22007-07-11 17:01:13 +00005090 }
Mike Stump1eb44332009-09-09 15:08:12 +00005091
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00005092 PastIdentifier:
Reid Spencer5f016e22007-07-11 17:01:13 +00005093 assert(D.isPastIdentifier() &&
5094 "Haven't past the location of the identifier yet?");
Mike Stump1eb44332009-09-09 15:08:12 +00005095
Richard Smith6ee326a2012-04-10 01:32:12 +00005096 // Don't parse attributes unless we have parsed an unparenthesized name.
5097 if (D.hasName() && !D.getNumTypeObjects())
Richard Smith4e24f0f2013-01-02 12:01:23 +00005098 MaybeParseCXX11Attributes(D);
Sean Huntbbd37c62009-11-21 08:43:09 +00005099
Reid Spencer5f016e22007-07-11 17:01:13 +00005100 while (1) {
Chris Lattner04d66662007-10-09 17:33:22 +00005101 if (Tok.is(tok::l_paren)) {
David Blaikie42d6d0c2011-12-04 05:04:18 +00005102 // Enter function-declaration scope, limiting any declarators to the
5103 // function prototype scope, including parameter declarators.
5104 ParseScope PrototypeScope(this,
Richard Smith3a2b7a12013-01-28 22:42:45 +00005105 Scope::FunctionPrototypeScope|Scope::DeclScope|
5106 (D.isFunctionDeclaratorAFunctionDeclaration()
5107 ? Scope::FunctionDeclarationScope : 0));
5108
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005109 // The paren may be part of a C++ direct initializer, eg. "int x(1);".
5110 // In such a case, check if we actually have a function declarator; if it
5111 // is not, the declarator has been fully parsed.
Richard Smithb9c62612012-07-30 21:30:52 +00005112 bool IsAmbiguous = false;
Richard Smith05766812012-08-18 00:55:03 +00005113 if (getLangOpts().CPlusPlus && D.mayBeFollowedByCXXDirectInit()) {
5114 // The name of the declarator, if any, is tentatively declared within
5115 // a possible direct initializer.
5116 TentativelyDeclaredIdentifiers.push_back(D.getIdentifier());
5117 bool IsFunctionDecl = isCXXFunctionDeclarator(&IsAmbiguous);
5118 TentativelyDeclaredIdentifiers.pop_back();
5119 if (!IsFunctionDecl)
5120 break;
5121 }
John McCall0b7e6782011-03-24 11:26:52 +00005122 ParsedAttributes attrs(AttrFactory);
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005123 BalancedDelimiterTracker T(*this, tok::l_paren);
5124 T.consumeOpen();
Richard Smithb9c62612012-07-30 21:30:52 +00005125 ParseFunctionDeclarator(D, attrs, T, IsAmbiguous);
David Blaikie42d6d0c2011-12-04 05:04:18 +00005126 PrototypeScope.Exit();
Chris Lattner04d66662007-10-09 17:33:22 +00005127 } else if (Tok.is(tok::l_square)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00005128 ParseBracketDeclarator(D);
5129 } else {
5130 break;
5131 }
5132 }
Chad Rosier8decdee2012-06-26 22:30:43 +00005133}
Reid Spencer5f016e22007-07-11 17:01:13 +00005134
Chris Lattneref4715c2008-04-06 05:45:57 +00005135/// ParseParenDeclarator - We parsed the declarator D up to a paren. This is
5136/// only called before the identifier, so these are most likely just grouping
Mike Stump1eb44332009-09-09 15:08:12 +00005137/// parens for precedence. If we find that these are actually function
Chris Lattneref4715c2008-04-06 05:45:57 +00005138/// parameter parens in an abstract-declarator, we call ParseFunctionDeclarator.
5139///
5140/// direct-declarator:
5141/// '(' declarator ')'
5142/// [GNU] '(' attributes declarator ')'
Chris Lattner7399ee02008-10-20 02:05:46 +00005143/// direct-declarator '(' parameter-type-list ')'
5144/// direct-declarator '(' identifier-list[opt] ')'
5145/// [GNU] direct-declarator '(' parameter-forward-declarations
5146/// parameter-type-list[opt] ')'
Chris Lattneref4715c2008-04-06 05:45:57 +00005147///
5148void Parser::ParseParenDeclarator(Declarator &D) {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005149 BalancedDelimiterTracker T(*this, tok::l_paren);
5150 T.consumeOpen();
5151
Chris Lattneref4715c2008-04-06 05:45:57 +00005152 assert(!D.isPastIdentifier() && "Should be called before passing identifier");
Mike Stump1eb44332009-09-09 15:08:12 +00005153
Chris Lattner7399ee02008-10-20 02:05:46 +00005154 // Eat any attributes before we look at whether this is a grouping or function
5155 // declarator paren. If this is a grouping paren, the attribute applies to
5156 // the type being built up, for example:
5157 // int (__attribute__(()) *x)(long y)
5158 // If this ends up not being a grouping paren, the attribute applies to the
5159 // first argument, for example:
5160 // int (__attribute__(()) int x)
5161 // In either case, we need to eat any attributes to be able to determine what
5162 // sort of paren this is.
5163 //
John McCall0b7e6782011-03-24 11:26:52 +00005164 ParsedAttributes attrs(AttrFactory);
Chris Lattner7399ee02008-10-20 02:05:46 +00005165 bool RequiresArg = false;
5166 if (Tok.is(tok::kw___attribute)) {
John McCall7f040a92010-12-24 02:08:15 +00005167 ParseGNUAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +00005168
Chris Lattner7399ee02008-10-20 02:05:46 +00005169 // We require that the argument list (if this is a non-grouping paren) be
5170 // present even if the attribute list was empty.
5171 RequiresArg = true;
5172 }
Chad Rosier9cab1c92012-12-21 21:22:20 +00005173
Steve Naroff239f0732008-12-25 14:16:32 +00005174 // Eat any Microsoft extensions.
Chad Rosier9cab1c92012-12-21 21:22:20 +00005175 ParseMicrosoftTypeAttributes(attrs);
5176
Dawn Perchik52fc3142010-09-03 01:29:35 +00005177 // Eat any Borland extensions.
Ted Kremenek8113ecf2010-11-10 05:59:39 +00005178 if (Tok.is(tok::kw___pascal))
John McCall7f040a92010-12-24 02:08:15 +00005179 ParseBorlandTypeAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +00005180
Chris Lattneref4715c2008-04-06 05:45:57 +00005181 // If we haven't past the identifier yet (or where the identifier would be
5182 // stored, if this is an abstract declarator), then this is probably just
5183 // grouping parens. However, if this could be an abstract-declarator, then
5184 // this could also be the start of function arguments (consider 'void()').
5185 bool isGrouping;
Mike Stump1eb44332009-09-09 15:08:12 +00005186
Chris Lattneref4715c2008-04-06 05:45:57 +00005187 if (!D.mayOmitIdentifier()) {
5188 // If this can't be an abstract-declarator, this *must* be a grouping
5189 // paren, because we haven't seen the identifier yet.
5190 isGrouping = true;
5191 } else if (Tok.is(tok::r_paren) || // 'int()' is a function.
Richard Smith22592862012-03-27 23:05:05 +00005192 (getLangOpts().CPlusPlus && Tok.is(tok::ellipsis) &&
5193 NextToken().is(tok::r_paren)) || // C++ int(...)
Richard Smith6ce48a72012-04-11 04:01:28 +00005194 isDeclarationSpecifier() || // 'int(int)' is a function.
5195 isCXX11AttributeSpecifier()) { // 'int([[]]int)' is a function.
Chris Lattneref4715c2008-04-06 05:45:57 +00005196 // This handles C99 6.7.5.3p11: in "typedef int X; void foo(X)", X is
5197 // considered to be a type, not a K&R identifier-list.
5198 isGrouping = false;
5199 } else {
5200 // Otherwise, this is a grouping paren, e.g. 'int (*X)' or 'int(X)'.
5201 isGrouping = true;
5202 }
Mike Stump1eb44332009-09-09 15:08:12 +00005203
Chris Lattneref4715c2008-04-06 05:45:57 +00005204 // If this is a grouping paren, handle:
5205 // direct-declarator: '(' declarator ')'
5206 // direct-declarator: '(' attributes declarator ')'
5207 if (isGrouping) {
Richard Smith9988f282012-03-29 01:16:42 +00005208 SourceLocation EllipsisLoc = D.getEllipsisLoc();
5209 D.setEllipsisLoc(SourceLocation());
5210
Argyrios Kyrtzidis3f2a8a02008-10-07 10:21:57 +00005211 bool hadGroupingParens = D.hasGroupingParens();
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005212 D.setGroupingParens(true);
Sebastian Redl4c5d3202008-11-21 19:14:01 +00005213 ParseDeclaratorInternal(D, &Parser::ParseDirectDeclarator);
Chris Lattneref4715c2008-04-06 05:45:57 +00005214 // Match the ')'.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005215 T.consumeClose();
Chad Rosier8decdee2012-06-26 22:30:43 +00005216 D.AddTypeInfo(DeclaratorChunk::getParen(T.getOpenLocation(),
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005217 T.getCloseLocation()),
5218 attrs, T.getCloseLocation());
Argyrios Kyrtzidis3f2a8a02008-10-07 10:21:57 +00005219
5220 D.setGroupingParens(hadGroupingParens);
Richard Smith9988f282012-03-29 01:16:42 +00005221
5222 // An ellipsis cannot be placed outside parentheses.
5223 if (EllipsisLoc.isValid())
Stephen Hinesc568f1e2014-07-21 00:47:37 -07005224 DiagnoseMisplacedEllipsisInDeclarator(EllipsisLoc, D);
Richard Smith9988f282012-03-29 01:16:42 +00005225
Chris Lattneref4715c2008-04-06 05:45:57 +00005226 return;
5227 }
Mike Stump1eb44332009-09-09 15:08:12 +00005228
Chris Lattneref4715c2008-04-06 05:45:57 +00005229 // Okay, if this wasn't a grouping paren, it must be the start of a function
5230 // argument list. Recognize that this declarator will never have an
Chris Lattner7399ee02008-10-20 02:05:46 +00005231 // identifier (and remember where it would have been), then call into
5232 // ParseFunctionDeclarator to handle of argument list.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07005233 D.SetIdentifier(nullptr, Tok.getLocation());
Chris Lattneref4715c2008-04-06 05:45:57 +00005234
David Blaikie42d6d0c2011-12-04 05:04:18 +00005235 // Enter function-declaration scope, limiting any declarators to the
5236 // function prototype scope, including parameter declarators.
5237 ParseScope PrototypeScope(this,
Richard Smith3a2b7a12013-01-28 22:42:45 +00005238 Scope::FunctionPrototypeScope | Scope::DeclScope |
5239 (D.isFunctionDeclaratorAFunctionDeclaration()
5240 ? Scope::FunctionDeclarationScope : 0));
Richard Smithb9c62612012-07-30 21:30:52 +00005241 ParseFunctionDeclarator(D, attrs, T, false, RequiresArg);
David Blaikie42d6d0c2011-12-04 05:04:18 +00005242 PrototypeScope.Exit();
Chris Lattneref4715c2008-04-06 05:45:57 +00005243}
5244
5245/// ParseFunctionDeclarator - We are after the identifier and have parsed the
5246/// declarator D up to a paren, which indicates that we are parsing function
5247/// arguments.
Reid Spencer5f016e22007-07-11 17:01:13 +00005248///
Richard Smith6ee326a2012-04-10 01:32:12 +00005249/// If FirstArgAttrs is non-null, then the caller parsed those arguments
5250/// immediately after the open paren - they should be considered to be the
5251/// first argument of a parameter.
Chris Lattner7399ee02008-10-20 02:05:46 +00005252///
Richard Smith6ee326a2012-04-10 01:32:12 +00005253/// If RequiresArg is true, then the first argument of the function is required
5254/// to be present and required to not be an identifier list.
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005255///
Richard Smith6ee326a2012-04-10 01:32:12 +00005256/// For C++, after the parameter-list, it also parses the cv-qualifier-seq[opt],
5257/// (C++11) ref-qualifier[opt], exception-specification[opt],
5258/// (C++11) attribute-specifier-seq[opt], and (C++11) trailing-return-type[opt].
5259///
5260/// [C++11] exception-specification:
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005261/// dynamic-exception-specification
5262/// noexcept-specification
5263///
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005264void Parser::ParseFunctionDeclarator(Declarator &D,
Richard Smith6ee326a2012-04-10 01:32:12 +00005265 ParsedAttributes &FirstArgAttrs,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005266 BalancedDelimiterTracker &Tracker,
Richard Smithb9c62612012-07-30 21:30:52 +00005267 bool IsAmbiguous,
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005268 bool RequiresArg) {
Chad Rosier8decdee2012-06-26 22:30:43 +00005269 assert(getCurScope()->isFunctionPrototypeScope() &&
David Blaikie42d6d0c2011-12-04 05:04:18 +00005270 "Should call from a Function scope");
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005271 // lparen is already consumed!
5272 assert(D.isPastIdentifier() && "Should not call before identifier!");
5273
5274 // This should be true when the function has typed arguments.
5275 // Otherwise, it is treated as a K&R-style function.
5276 bool HasProto = false;
5277 // Build up an array of information about the parsed arguments.
Chris Lattner5f9e2722011-07-23 10:55:15 +00005278 SmallVector<DeclaratorChunk::ParamInfo, 16> ParamInfo;
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005279 // Remember where we see an ellipsis, if any.
5280 SourceLocation EllipsisLoc;
5281
5282 DeclSpec DS(AttrFactory);
5283 bool RefQualifierIsLValueRef = true;
5284 SourceLocation RefQualifierLoc;
Douglas Gregor43f51032011-10-19 06:04:55 +00005285 SourceLocation ConstQualifierLoc;
5286 SourceLocation VolatileQualifierLoc;
Stephen Hines176edba2014-12-01 14:53:08 -08005287 SourceLocation RestrictQualifierLoc;
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005288 ExceptionSpecificationType ESpecType = EST_None;
5289 SourceRange ESpecRange;
Chris Lattner5f9e2722011-07-23 10:55:15 +00005290 SmallVector<ParsedType, 2> DynamicExceptions;
5291 SmallVector<SourceRange, 2> DynamicExceptionRanges;
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005292 ExprResult NoexceptExpr;
Stephen Hines176edba2014-12-01 14:53:08 -08005293 CachedTokens *ExceptionSpecTokens = 0;
Richard Smith6ee326a2012-04-10 01:32:12 +00005294 ParsedAttributes FnAttrs(AttrFactory);
Richard Smith54655be2012-06-12 01:51:59 +00005295 TypeResult TrailingReturnType;
Richard Smith6ee326a2012-04-10 01:32:12 +00005296
Abramo Bagnaraac8ea052012-10-15 21:05:46 +00005297 /* LocalEndLoc is the end location for the local FunctionTypeLoc.
5298 EndLoc is the end location for the function declarator.
5299 They differ for trailing return types. */
5300 SourceLocation StartLoc, LocalEndLoc, EndLoc;
Abramo Bagnara59c0a812012-10-04 21:42:10 +00005301 SourceLocation LParenLoc, RParenLoc;
5302 LParenLoc = Tracker.getOpenLocation();
5303 StartLoc = LParenLoc;
5304
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005305 if (isFunctionDeclaratorIdentifierList()) {
5306 if (RequiresArg)
5307 Diag(Tok, diag::err_argument_required_after_attribute);
5308
5309 ParseFunctionDeclaratorIdentifierList(D, ParamInfo);
5310
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005311 Tracker.consumeClose();
Abramo Bagnara59c0a812012-10-04 21:42:10 +00005312 RParenLoc = Tracker.getCloseLocation();
Abramo Bagnaraac8ea052012-10-15 21:05:46 +00005313 LocalEndLoc = RParenLoc;
Abramo Bagnara59c0a812012-10-04 21:42:10 +00005314 EndLoc = RParenLoc;
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005315 } else {
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005316 if (Tok.isNot(tok::r_paren))
Faisal Valifad9e132013-09-26 19:54:12 +00005317 ParseParameterDeclarationClause(D, FirstArgAttrs, ParamInfo,
5318 EllipsisLoc);
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005319 else if (RequiresArg)
5320 Diag(Tok, diag::err_argument_required_after_attribute);
5321
David Blaikie4e4d0842012-03-11 07:00:24 +00005322 HasProto = ParamInfo.size() || getLangOpts().CPlusPlus;
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005323
5324 // If we have the closing ')', eat it.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005325 Tracker.consumeClose();
Abramo Bagnara59c0a812012-10-04 21:42:10 +00005326 RParenLoc = Tracker.getCloseLocation();
Abramo Bagnaraac8ea052012-10-15 21:05:46 +00005327 LocalEndLoc = RParenLoc;
Abramo Bagnara59c0a812012-10-04 21:42:10 +00005328 EndLoc = RParenLoc;
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005329
David Blaikie4e4d0842012-03-11 07:00:24 +00005330 if (getLangOpts().CPlusPlus) {
Richard Smith6ee326a2012-04-10 01:32:12 +00005331 // FIXME: Accept these components in any order, and produce fixits to
5332 // correct the order if the user gets it wrong. Ideally we should deal
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -07005333 // with the pure-specifier in the same way.
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005334
5335 // Parse cv-qualifier-seq[opt].
Stephen Hines176edba2014-12-01 14:53:08 -08005336 ParseTypeQualifierListOpt(DS, AR_NoAttributesParsed,
Richard Smith4cf4a5e2013-03-28 01:55:44 +00005337 /*AtomicAllowed*/ false);
Richard Smith6ee326a2012-04-10 01:32:12 +00005338 if (!DS.getSourceRange().getEnd().isInvalid()) {
5339 EndLoc = DS.getSourceRange().getEnd();
5340 ConstQualifierLoc = DS.getConstSpecLoc();
5341 VolatileQualifierLoc = DS.getVolatileSpecLoc();
Stephen Hines176edba2014-12-01 14:53:08 -08005342 RestrictQualifierLoc = DS.getRestrictSpecLoc();
Richard Smith6ee326a2012-04-10 01:32:12 +00005343 }
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005344
5345 // Parse ref-qualifier[opt].
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -07005346 if (ParseRefQualifier(RefQualifierIsLValueRef, RefQualifierLoc))
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005347 EndLoc = RefQualifierLoc;
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005348
Douglas Gregorcefc3af2012-04-16 07:05:22 +00005349 // C++11 [expr.prim.general]p3:
Chad Rosier8decdee2012-06-26 22:30:43 +00005350 // If a declaration declares a member function or member function
5351 // template of a class X, the expression this is a prvalue of type
Douglas Gregorcefc3af2012-04-16 07:05:22 +00005352 // "pointer to cv-qualifier-seq X" between the optional cv-qualifer-seq
Chad Rosier8decdee2012-06-26 22:30:43 +00005353 // and the end of the function-definition, member-declarator, or
Douglas Gregorcefc3af2012-04-16 07:05:22 +00005354 // declarator.
Richard Smithd9227792013-03-15 00:41:52 +00005355 // FIXME: currently, "static" case isn't handled correctly.
Chad Rosier8decdee2012-06-26 22:30:43 +00005356 bool IsCXX11MemberFunction =
Richard Smith80ad52f2013-01-02 11:42:31 +00005357 getLangOpts().CPlusPlus11 &&
Stephen Hines651f13c2014-04-23 16:59:28 -07005358 D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
Richard Smithd9227792013-03-15 00:41:52 +00005359 (D.getContext() == Declarator::MemberContext
5360 ? !D.getDeclSpec().isFriendSpecified()
5361 : D.getContext() == Declarator::FileContext &&
5362 D.getCXXScopeSpec().isValid() &&
5363 Actions.CurContext->isRecord());
Douglas Gregorcefc3af2012-04-16 07:05:22 +00005364 Sema::CXXThisScopeRAII ThisScope(Actions,
5365 dyn_cast<CXXRecordDecl>(Actions.CurContext),
Richard Smith7b19cb12013-01-14 01:55:13 +00005366 DS.getTypeQualifiers() |
Richard Smith84046262013-04-21 01:08:50 +00005367 (D.getDeclSpec().isConstexprSpecified() &&
Stephen Hines176edba2014-12-01 14:53:08 -08005368 !getLangOpts().CPlusPlus14
Richard Smith7b19cb12013-01-14 01:55:13 +00005369 ? Qualifiers::Const : 0),
Douglas Gregorcefc3af2012-04-16 07:05:22 +00005370 IsCXX11MemberFunction);
Richard Smitha058fd42012-05-02 22:22:32 +00005371
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005372 // Parse exception-specification[opt].
Stephen Hines176edba2014-12-01 14:53:08 -08005373 bool Delayed = D.isFirstDeclarationOfMember() &&
5374 D.isFunctionDeclaratorAFunctionDeclaration();
5375 if (Delayed && Actions.isLibstdcxxEagerExceptionSpecHack(D) &&
5376 GetLookAheadToken(0).is(tok::kw_noexcept) &&
5377 GetLookAheadToken(1).is(tok::l_paren) &&
5378 GetLookAheadToken(2).is(tok::kw_noexcept) &&
5379 GetLookAheadToken(3).is(tok::l_paren) &&
5380 GetLookAheadToken(4).is(tok::identifier) &&
5381 GetLookAheadToken(4).getIdentifierInfo()->isStr("swap")) {
5382 // HACK: We've got an exception-specification
5383 // noexcept(noexcept(swap(...)))
5384 // or
5385 // noexcept(noexcept(swap(...)) && noexcept(swap(...)))
5386 // on a 'swap' member function. This is a libstdc++ bug; the lookup
5387 // for 'swap' will only find the function we're currently declaring,
5388 // whereas it expects to find a non-member swap through ADL. Turn off
5389 // delayed parsing to give it a chance to find what it expects.
5390 Delayed = false;
5391 }
5392 ESpecType = tryParseExceptionSpecification(Delayed,
5393 ESpecRange,
Douglas Gregor74e2fc32012-04-16 18:27:27 +00005394 DynamicExceptions,
5395 DynamicExceptionRanges,
Stephen Hines176edba2014-12-01 14:53:08 -08005396 NoexceptExpr,
5397 ExceptionSpecTokens);
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005398 if (ESpecType != EST_None)
5399 EndLoc = ESpecRange.getEnd();
5400
Richard Smith6ee326a2012-04-10 01:32:12 +00005401 // Parse attribute-specifier-seq[opt]. Per DR 979 and DR 1297, this goes
5402 // after the exception-specification.
Richard Smith4e24f0f2013-01-02 12:01:23 +00005403 MaybeParseCXX11Attributes(FnAttrs);
Richard Smith6ee326a2012-04-10 01:32:12 +00005404
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005405 // Parse trailing-return-type[opt].
Abramo Bagnaraac8ea052012-10-15 21:05:46 +00005406 LocalEndLoc = EndLoc;
Richard Smith80ad52f2013-01-02 11:42:31 +00005407 if (getLangOpts().CPlusPlus11 && Tok.is(tok::arrow)) {
Richard Smith7fe62082011-10-15 05:09:34 +00005408 Diag(Tok, diag::warn_cxx98_compat_trailing_return_type);
Abramo Bagnara59c0a812012-10-04 21:42:10 +00005409 if (D.getDeclSpec().getTypeSpecType() == TST_auto)
5410 StartLoc = D.getDeclSpec().getTypeSpecTypeLoc();
Abramo Bagnaraac8ea052012-10-15 21:05:46 +00005411 LocalEndLoc = Tok.getLocation();
Douglas Gregorae7902c2011-08-04 15:30:47 +00005412 SourceRange Range;
Richard Smith54655be2012-06-12 01:51:59 +00005413 TrailingReturnType = ParseTrailingReturnType(Range);
Abramo Bagnaraac8ea052012-10-15 21:05:46 +00005414 EndLoc = Range.getEnd();
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005415 }
5416 }
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005417 }
5418
5419 // Remember that we parsed a function type, and remember the attributes.
5420 D.AddTypeInfo(DeclaratorChunk::getFunction(HasProto,
Abramo Bagnara59c0a812012-10-04 21:42:10 +00005421 IsAmbiguous,
5422 LParenLoc,
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005423 ParamInfo.data(), ParamInfo.size(),
Abramo Bagnara59c0a812012-10-04 21:42:10 +00005424 EllipsisLoc, RParenLoc,
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005425 DS.getTypeQualifiers(),
5426 RefQualifierIsLValueRef,
Douglas Gregor43f51032011-10-19 06:04:55 +00005427 RefQualifierLoc, ConstQualifierLoc,
5428 VolatileQualifierLoc,
Stephen Hines176edba2014-12-01 14:53:08 -08005429 RestrictQualifierLoc,
Douglas Gregor90ebed02011-07-13 21:47:47 +00005430 /*MutableLoc=*/SourceLocation(),
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005431 ESpecType, ESpecRange.getBegin(),
5432 DynamicExceptions.data(),
5433 DynamicExceptionRanges.data(),
5434 DynamicExceptions.size(),
5435 NoexceptExpr.isUsable() ?
Stephen Hines6bcf27b2014-05-29 04:14:42 -07005436 NoexceptExpr.get() : nullptr,
Stephen Hines176edba2014-12-01 14:53:08 -08005437 ExceptionSpecTokens,
Abramo Bagnaraac8ea052012-10-15 21:05:46 +00005438 StartLoc, LocalEndLoc, D,
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005439 TrailingReturnType),
Richard Smith6ee326a2012-04-10 01:32:12 +00005440 FnAttrs, EndLoc);
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005441}
5442
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -07005443/// ParseRefQualifier - Parses a member function ref-qualifier. Returns
5444/// true if a ref-qualifier is found.
5445bool Parser::ParseRefQualifier(bool &RefQualifierIsLValueRef,
5446 SourceLocation &RefQualifierLoc) {
5447 if (Tok.is(tok::amp) || Tok.is(tok::ampamp)) {
5448 Diag(Tok, getLangOpts().CPlusPlus11 ?
5449 diag::warn_cxx98_compat_ref_qualifier :
5450 diag::ext_ref_qualifier);
5451
5452 RefQualifierIsLValueRef = Tok.is(tok::amp);
5453 RefQualifierLoc = ConsumeToken();
5454 return true;
5455 }
5456 return false;
5457}
5458
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005459/// isFunctionDeclaratorIdentifierList - This parameter list may have an
5460/// identifier list form for a K&R-style function: void foo(a,b,c)
5461///
5462/// Note that identifier-lists are only allowed for normal declarators, not for
5463/// abstract-declarators.
5464bool Parser::isFunctionDeclaratorIdentifierList() {
David Blaikie4e4d0842012-03-11 07:00:24 +00005465 return !getLangOpts().CPlusPlus
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005466 && Tok.is(tok::identifier)
5467 && !TryAltiVecVectorToken()
5468 // K&R identifier lists can't have typedefs as identifiers, per C99
5469 // 6.7.5.3p11.
5470 && (TryAnnotateTypeOrScopeToken() || !Tok.is(tok::annot_typename))
5471 // Identifier lists follow a really simple grammar: the identifiers can
5472 // be followed *only* by a ", identifier" or ")". However, K&R
5473 // identifier lists are really rare in the brave new modern world, and
5474 // it is very common for someone to typo a type in a non-K&R style
5475 // list. If we are presented with something like: "void foo(intptr x,
5476 // float y)", we don't want to start parsing the function declarator as
5477 // though it is a K&R style declarator just because intptr is an
5478 // invalid type.
5479 //
5480 // To handle this, we check to see if the token after the first
5481 // identifier is a "," or ")". Only then do we parse it as an
5482 // identifier list.
5483 && (NextToken().is(tok::comma) || NextToken().is(tok::r_paren));
5484}
5485
5486/// ParseFunctionDeclaratorIdentifierList - While parsing a function declarator
5487/// we found a K&R-style identifier list instead of a typed parameter list.
5488///
5489/// After returning, ParamInfo will hold the parsed parameters.
5490///
5491/// identifier-list: [C99 6.7.5]
5492/// identifier
5493/// identifier-list ',' identifier
5494///
5495void Parser::ParseFunctionDeclaratorIdentifierList(
5496 Declarator &D,
Craig Topper6b9240e2013-07-05 19:34:19 +00005497 SmallVectorImpl<DeclaratorChunk::ParamInfo> &ParamInfo) {
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005498 // If there was no identifier specified for the declarator, either we are in
5499 // an abstract-declarator, or we are in a parameter declarator which was found
5500 // to be abstract. In abstract-declarators, identifier lists are not valid:
5501 // diagnose this.
5502 if (!D.getIdentifier())
5503 Diag(Tok, diag::ext_ident_list_in_param);
5504
5505 // Maintain an efficient lookup of params we have seen so far.
5506 llvm::SmallSet<const IdentifierInfo*, 16> ParamsSoFar;
5507
Stephen Hines651f13c2014-04-23 16:59:28 -07005508 do {
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005509 // If this isn't an identifier, report the error and skip until ')'.
5510 if (Tok.isNot(tok::identifier)) {
Stephen Hines651f13c2014-04-23 16:59:28 -07005511 Diag(Tok, diag::err_expected) << tok::identifier;
Alexey Bataev8fe24752013-11-18 08:17:37 +00005512 SkipUntil(tok::r_paren, StopAtSemi | StopBeforeMatch);
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005513 // Forget we parsed anything.
5514 ParamInfo.clear();
5515 return;
5516 }
5517
5518 IdentifierInfo *ParmII = Tok.getIdentifierInfo();
5519
5520 // Reject 'typedef int y; int test(x, y)', but continue parsing.
5521 if (Actions.getTypeName(*ParmII, Tok.getLocation(), getCurScope()))
5522 Diag(Tok, diag::err_unexpected_typedef_ident) << ParmII;
5523
5524 // Verify that the argument identifier has not already been mentioned.
Stephen Hines176edba2014-12-01 14:53:08 -08005525 if (!ParamsSoFar.insert(ParmII).second) {
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005526 Diag(Tok, diag::err_param_redefinition) << ParmII;
5527 } else {
5528 // Remember this identifier in ParamInfo.
5529 ParamInfo.push_back(DeclaratorChunk::ParamInfo(ParmII,
5530 Tok.getLocation(),
Stephen Hines6bcf27b2014-05-29 04:14:42 -07005531 nullptr));
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005532 }
5533
5534 // Eat the identifier.
5535 ConsumeToken();
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005536 // The list continues if we see a comma.
Stephen Hines651f13c2014-04-23 16:59:28 -07005537 } while (TryConsumeToken(tok::comma));
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005538}
5539
5540/// ParseParameterDeclarationClause - Parse a (possibly empty) parameter-list
5541/// after the opening parenthesis. This function will not parse a K&R-style
5542/// identifier list.
5543///
Richard Smith6ce48a72012-04-11 04:01:28 +00005544/// D is the declarator being parsed. If FirstArgAttrs is non-null, then the
5545/// caller parsed those arguments immediately after the open paren - they should
5546/// be considered to be part of the first parameter.
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005547///
5548/// After returning, ParamInfo will hold the parsed parameters. EllipsisLoc will
5549/// be the location of the ellipsis, if any was parsed.
5550///
Reid Spencer5f016e22007-07-11 17:01:13 +00005551/// parameter-type-list: [C99 6.7.5]
5552/// parameter-list
5553/// parameter-list ',' '...'
Douglas Gregored5d6512009-09-22 21:41:40 +00005554/// [C++] parameter-list '...'
Reid Spencer5f016e22007-07-11 17:01:13 +00005555///
5556/// parameter-list: [C99 6.7.5]
5557/// parameter-declaration
5558/// parameter-list ',' parameter-declaration
5559///
5560/// parameter-declaration: [C99 6.7.5]
5561/// declaration-specifiers declarator
Chris Lattner04421082008-04-08 04:40:51 +00005562/// [C++] declaration-specifiers declarator '=' assignment-expression
Sebastian Redl84407ba2012-03-14 15:54:00 +00005563/// [C++11] initializer-clause
Reid Spencer5f016e22007-07-11 17:01:13 +00005564/// [GNU] declaration-specifiers declarator attributes
Sebastian Redl50de12f2009-03-24 22:27:57 +00005565/// declaration-specifiers abstract-declarator[opt]
5566/// [C++] declaration-specifiers abstract-declarator[opt]
Chris Lattner8123a952008-04-10 02:22:51 +00005567/// '=' assignment-expression
Reid Spencer5f016e22007-07-11 17:01:13 +00005568/// [GNU] declaration-specifiers abstract-declarator[opt] attributes
Richard Smith6ce48a72012-04-11 04:01:28 +00005569/// [C++11] attribute-specifier-seq parameter-declaration
Reid Spencer5f016e22007-07-11 17:01:13 +00005570///
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005571void Parser::ParseParameterDeclarationClause(
5572 Declarator &D,
Richard Smith6ce48a72012-04-11 04:01:28 +00005573 ParsedAttributes &FirstArgAttrs,
Craig Topper6b9240e2013-07-05 19:34:19 +00005574 SmallVectorImpl<DeclaratorChunk::ParamInfo> &ParamInfo,
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005575 SourceLocation &EllipsisLoc) {
Stephen Hines651f13c2014-04-23 16:59:28 -07005576 do {
5577 // FIXME: Issue a diagnostic if we parsed an attribute-specifier-seq
5578 // before deciding this was a parameter-declaration-clause.
5579 if (TryConsumeToken(tok::ellipsis, EllipsisLoc))
Chris Lattnerf97409f2008-04-06 06:57:35 +00005580 break;
Mike Stump1eb44332009-09-09 15:08:12 +00005581
Chris Lattnerf97409f2008-04-06 06:57:35 +00005582 // Parse the declaration-specifiers.
John McCall54abf7d2009-11-04 02:18:39 +00005583 // Just use the ParsingDeclaration "scope" of the declarator.
John McCall0b7e6782011-03-24 11:26:52 +00005584 DeclSpec DS(AttrFactory);
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005585
Richard Smith6ce48a72012-04-11 04:01:28 +00005586 // Parse any C++11 attributes.
Richard Smith4e24f0f2013-01-02 12:01:23 +00005587 MaybeParseCXX11Attributes(DS.getAttributes());
Richard Smith6ce48a72012-04-11 04:01:28 +00005588
John McCall7f040a92010-12-24 02:08:15 +00005589 // Skip any Microsoft attributes before a param.
Chad Rosier16f90bf2012-12-20 20:37:53 +00005590 MaybeParseMicrosoftAttributes(DS.getAttributes());
John McCall7f040a92010-12-24 02:08:15 +00005591
5592 SourceLocation DSStart = Tok.getLocation();
Chris Lattner7399ee02008-10-20 02:05:46 +00005593
5594 // If the caller parsed attributes for the first argument, add them now.
John McCall7f040a92010-12-24 02:08:15 +00005595 // Take them so that we only apply the attributes to the first parameter.
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00005596 // FIXME: If we can leave the attributes in the token stream somehow, we can
Richard Smith6ce48a72012-04-11 04:01:28 +00005597 // get rid of a parameter (FirstArgAttrs) and this statement. It might be
5598 // too much hassle.
5599 DS.takeAttributesFrom(FirstArgAttrs);
John McCall7f040a92010-12-24 02:08:15 +00005600
Chris Lattnere64c5492009-02-27 18:38:20 +00005601 ParseDeclarationSpecifiers(DS);
Mike Stump1eb44332009-09-09 15:08:12 +00005602
Faisal Valifad9e132013-09-26 19:54:12 +00005603
5604 // Parse the declarator. This is "PrototypeContext" or
5605 // "LambdaExprParameterContext", because we must accept either
5606 // 'declarator' or 'abstract-declarator' here.
5607 Declarator ParmDeclarator(DS,
5608 D.getContext() == Declarator::LambdaExprContext ?
5609 Declarator::LambdaExprParameterContext :
5610 Declarator::PrototypeContext);
5611 ParseDeclarator(ParmDeclarator);
Chris Lattnerf97409f2008-04-06 06:57:35 +00005612
5613 // Parse GNU attributes, if present.
Faisal Valifad9e132013-09-26 19:54:12 +00005614 MaybeParseGNUAttributes(ParmDeclarator);
Mike Stump1eb44332009-09-09 15:08:12 +00005615
Chris Lattnerf97409f2008-04-06 06:57:35 +00005616 // Remember this parsed parameter in ParamInfo.
Faisal Valifad9e132013-09-26 19:54:12 +00005617 IdentifierInfo *ParmII = ParmDeclarator.getIdentifier();
Mike Stump1eb44332009-09-09 15:08:12 +00005618
Douglas Gregor72b505b2008-12-16 21:30:33 +00005619 // DefArgToks is used when the parsing of default arguments needs
5620 // to be delayed.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07005621 CachedTokens *DefArgToks = nullptr;
Douglas Gregor72b505b2008-12-16 21:30:33 +00005622
Chris Lattnerf97409f2008-04-06 06:57:35 +00005623 // If no parameter was specified, verify that *something* was specified,
5624 // otherwise we have a missing type and identifier.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07005625 if (DS.isEmpty() && ParmDeclarator.getIdentifier() == nullptr &&
Faisal Valifad9e132013-09-26 19:54:12 +00005626 ParmDeclarator.getNumTypeObjects() == 0) {
Chris Lattnerf97409f2008-04-06 06:57:35 +00005627 // Completely missing, emit error.
5628 Diag(DSStart, diag::err_missing_param);
5629 } else {
5630 // Otherwise, we have something. Add it and let semantic analysis try
5631 // to grok it and add the result to the ParamInfo we are building.
Mike Stump1eb44332009-09-09 15:08:12 +00005632
Stephen Hines176edba2014-12-01 14:53:08 -08005633 // Last chance to recover from a misplaced ellipsis in an attempted
5634 // parameter pack declaration.
5635 if (Tok.is(tok::ellipsis) &&
5636 (NextToken().isNot(tok::r_paren) ||
5637 (!ParmDeclarator.getEllipsisLoc().isValid() &&
5638 !Actions.isUnexpandedParameterPackPermitted())) &&
5639 Actions.containsUnexpandedParameterPacks(ParmDeclarator))
5640 DiagnoseMisplacedEllipsisInDeclarator(ConsumeToken(), ParmDeclarator);
5641
Chris Lattnerf97409f2008-04-06 06:57:35 +00005642 // Inform the actions module about the parameter declarator, so it gets
5643 // added to the current scope.
Stephen Hines176edba2014-12-01 14:53:08 -08005644 Decl *Param = Actions.ActOnParamDeclarator(getCurScope(), ParmDeclarator);
Chris Lattner04421082008-04-08 04:40:51 +00005645 // Parse the default argument, if any. We parse the default
5646 // arguments in all dialects; the semantic analysis in
5647 // ActOnParamDefaultArgument will reject the default argument in
5648 // C.
5649 if (Tok.is(tok::equal)) {
Douglas Gregor61366e92008-12-24 00:01:03 +00005650 SourceLocation EqualLoc = Tok.getLocation();
5651
Chris Lattner04421082008-04-08 04:40:51 +00005652 // Parse the default argument
Douglas Gregor72b505b2008-12-16 21:30:33 +00005653 if (D.getContext() == Declarator::MemberContext) {
5654 // If we're inside a class definition, cache the tokens
5655 // corresponding to the default argument. We'll actually parse
5656 // them when we see the end of the class definition.
Douglas Gregor72b505b2008-12-16 21:30:33 +00005657 // FIXME: Can we use a smart pointer for Toks?
5658 DefArgToks = new CachedTokens;
5659
Stephen Hines0e2c34f2015-03-23 12:09:02 -07005660 SourceLocation ArgStartLoc = NextToken().getLocation();
Richard Smith9bd3cdc2013-09-12 23:28:08 +00005661 if (!ConsumeAndStoreInitializer(*DefArgToks, CIK_DefaultArgument)) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00005662 delete DefArgToks;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07005663 DefArgToks = nullptr;
Stephen Hines176edba2014-12-01 14:53:08 -08005664 Actions.ActOnParamDefaultArgumentError(Param, EqualLoc);
Argyrios Kyrtzidis2b602ad2010-08-06 09:47:24 +00005665 } else {
Mike Stump1eb44332009-09-09 15:08:12 +00005666 Actions.ActOnParamUnparsedDefaultArgument(Param, EqualLoc,
Stephen Hines0e2c34f2015-03-23 12:09:02 -07005667 ArgStartLoc);
Argyrios Kyrtzidis2b602ad2010-08-06 09:47:24 +00005668 }
Chris Lattner04421082008-04-08 04:40:51 +00005669 } else {
Douglas Gregor72b505b2008-12-16 21:30:33 +00005670 // Consume the '='.
Douglas Gregor61366e92008-12-24 00:01:03 +00005671 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00005672
Chad Rosier8decdee2012-06-26 22:30:43 +00005673 // The argument isn't actually potentially evaluated unless it is
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00005674 // used.
5675 EnterExpressionEvaluationContext Eval(Actions,
Douglas Gregorccc1b5e2012-02-21 00:37:24 +00005676 Sema::PotentiallyEvaluatedIfUsed,
5677 Param);
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00005678
Sebastian Redl84407ba2012-03-14 15:54:00 +00005679 ExprResult DefArgResult;
Richard Smith80ad52f2013-01-02 11:42:31 +00005680 if (getLangOpts().CPlusPlus11 && Tok.is(tok::l_brace)) {
Sebastian Redl3e280b52012-03-18 22:25:45 +00005681 Diag(Tok, diag::warn_cxx98_compat_generalized_initializer_lists);
Sebastian Redl84407ba2012-03-14 15:54:00 +00005682 DefArgResult = ParseBraceInitializer();
Sebastian Redl3e280b52012-03-18 22:25:45 +00005683 } else
Sebastian Redl84407ba2012-03-14 15:54:00 +00005684 DefArgResult = ParseAssignmentExpression();
Stephen Hines176edba2014-12-01 14:53:08 -08005685 DefArgResult = Actions.CorrectDelayedTyposInExpr(DefArgResult);
Douglas Gregor72b505b2008-12-16 21:30:33 +00005686 if (DefArgResult.isInvalid()) {
Stephen Hines176edba2014-12-01 14:53:08 -08005687 Actions.ActOnParamDefaultArgumentError(Param, EqualLoc);
Alexey Bataev8fe24752013-11-18 08:17:37 +00005688 SkipUntil(tok::comma, tok::r_paren, StopAtSemi | StopBeforeMatch);
Douglas Gregor72b505b2008-12-16 21:30:33 +00005689 } else {
5690 // Inform the actions module about the default argument
5691 Actions.ActOnParamDefaultArgument(Param, EqualLoc,
Stephen Hinesc568f1e2014-07-21 00:47:37 -07005692 DefArgResult.get());
Douglas Gregor72b505b2008-12-16 21:30:33 +00005693 }
Chris Lattner04421082008-04-08 04:40:51 +00005694 }
5695 }
Mike Stump1eb44332009-09-09 15:08:12 +00005696
5697 ParamInfo.push_back(DeclaratorChunk::ParamInfo(ParmII,
Faisal Valifad9e132013-09-26 19:54:12 +00005698 ParmDeclarator.getIdentifierLoc(),
5699 Param, DefArgToks));
Chris Lattnerf97409f2008-04-06 06:57:35 +00005700 }
5701
Stephen Hines176edba2014-12-01 14:53:08 -08005702 if (TryConsumeToken(tok::ellipsis, EllipsisLoc)) {
5703 if (!getLangOpts().CPlusPlus) {
5704 // We have ellipsis without a preceding ',', which is ill-formed
5705 // in C. Complain and provide the fix.
5706 Diag(EllipsisLoc, diag::err_missing_comma_before_ellipsis)
5707 << FixItHint::CreateInsertion(EllipsisLoc, ", ");
5708 } else if (ParmDeclarator.getEllipsisLoc().isValid() ||
5709 Actions.containsUnexpandedParameterPacks(ParmDeclarator)) {
5710 // It looks like this was supposed to be a parameter pack. Warn and
5711 // point out where the ellipsis should have gone.
5712 SourceLocation ParmEllipsis = ParmDeclarator.getEllipsisLoc();
5713 Diag(EllipsisLoc, diag::warn_misplaced_ellipsis_vararg)
5714 << ParmEllipsis.isValid() << ParmEllipsis;
5715 if (ParmEllipsis.isValid()) {
5716 Diag(ParmEllipsis,
5717 diag::note_misplaced_ellipsis_vararg_existing_ellipsis);
5718 } else {
5719 Diag(ParmDeclarator.getIdentifierLoc(),
5720 diag::note_misplaced_ellipsis_vararg_add_ellipsis)
5721 << FixItHint::CreateInsertion(ParmDeclarator.getIdentifierLoc(),
5722 "...")
5723 << !ParmDeclarator.hasName();
5724 }
5725 Diag(EllipsisLoc, diag::note_misplaced_ellipsis_vararg_add_comma)
Stephen Hines651f13c2014-04-23 16:59:28 -07005726 << FixItHint::CreateInsertion(EllipsisLoc, ", ");
Stephen Hines176edba2014-12-01 14:53:08 -08005727 }
5728
5729 // We can't have any more parameters after an ellipsis.
Douglas Gregored5d6512009-09-22 21:41:40 +00005730 break;
5731 }
Mike Stump1eb44332009-09-09 15:08:12 +00005732
Stephen Hines651f13c2014-04-23 16:59:28 -07005733 // If the next token is a comma, consume it and keep reading arguments.
5734 } while (TryConsumeToken(tok::comma));
Chris Lattner66d28652008-04-06 06:34:08 +00005735}
Chris Lattneref4715c2008-04-06 05:45:57 +00005736
Reid Spencer5f016e22007-07-11 17:01:13 +00005737/// [C90] direct-declarator '[' constant-expression[opt] ']'
5738/// [C99] direct-declarator '[' type-qual-list[opt] assignment-expr[opt] ']'
5739/// [C99] direct-declarator '[' 'static' type-qual-list[opt] assign-expr ']'
5740/// [C99] direct-declarator '[' type-qual-list 'static' assignment-expr ']'
5741/// [C99] direct-declarator '[' type-qual-list[opt] '*' ']'
Richard Smith6ee326a2012-04-10 01:32:12 +00005742/// [C++11] direct-declarator '[' constant-expression[opt] ']'
5743/// attribute-specifier-seq[opt]
Reid Spencer5f016e22007-07-11 17:01:13 +00005744void Parser::ParseBracketDeclarator(Declarator &D) {
Richard Smith6ee326a2012-04-10 01:32:12 +00005745 if (CheckProhibitedCXX11Attribute())
5746 return;
5747
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005748 BalancedDelimiterTracker T(*this, tok::l_square);
5749 T.consumeOpen();
Mike Stump1eb44332009-09-09 15:08:12 +00005750
Chris Lattner378c7e42008-12-18 07:27:21 +00005751 // C array syntax has many features, but by-far the most common is [] and [4].
5752 // This code does a fast path to handle some of the most obvious cases.
5753 if (Tok.getKind() == tok::r_square) {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005754 T.consumeClose();
John McCall0b7e6782011-03-24 11:26:52 +00005755 ParsedAttributes attrs(AttrFactory);
Richard Smith4e24f0f2013-01-02 12:01:23 +00005756 MaybeParseCXX11Attributes(attrs);
Chad Rosier8decdee2012-06-26 22:30:43 +00005757
Chris Lattner378c7e42008-12-18 07:27:21 +00005758 // Remember that we parsed the empty array type.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07005759 D.AddTypeInfo(DeclaratorChunk::getArray(0, false, false, nullptr,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005760 T.getOpenLocation(),
5761 T.getCloseLocation()),
5762 attrs, T.getCloseLocation());
Chris Lattner378c7e42008-12-18 07:27:21 +00005763 return;
5764 } else if (Tok.getKind() == tok::numeric_constant &&
5765 GetLookAheadToken(1).is(tok::r_square)) {
5766 // [4] is very common. Parse the numeric constant expression.
Richard Smith36f5cfe2012-03-09 08:00:36 +00005767 ExprResult ExprRes(Actions.ActOnNumericConstant(Tok, getCurScope()));
Chris Lattner378c7e42008-12-18 07:27:21 +00005768 ConsumeToken();
5769
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005770 T.consumeClose();
John McCall0b7e6782011-03-24 11:26:52 +00005771 ParsedAttributes attrs(AttrFactory);
Richard Smith4e24f0f2013-01-02 12:01:23 +00005772 MaybeParseCXX11Attributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +00005773
Chris Lattner378c7e42008-12-18 07:27:21 +00005774 // Remember that we parsed a array type, and remember its features.
Nikola Smiljanicebf0fa82013-01-11 08:33:05 +00005775 D.AddTypeInfo(DeclaratorChunk::getArray(0, false, false,
Stephen Hinesc568f1e2014-07-21 00:47:37 -07005776 ExprRes.get(),
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005777 T.getOpenLocation(),
5778 T.getCloseLocation()),
5779 attrs, T.getCloseLocation());
Chris Lattner378c7e42008-12-18 07:27:21 +00005780 return;
5781 }
Mike Stump1eb44332009-09-09 15:08:12 +00005782
Reid Spencer5f016e22007-07-11 17:01:13 +00005783 // If valid, this location is the position where we read the 'static' keyword.
5784 SourceLocation StaticLoc;
Stephen Hines651f13c2014-04-23 16:59:28 -07005785 TryConsumeToken(tok::kw_static, StaticLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00005786
Reid Spencer5f016e22007-07-11 17:01:13 +00005787 // If there is a type-qualifier-list, read it now.
Chris Lattnera1fcbad2008-12-18 06:50:14 +00005788 // Type qualifiers in an array subscript are a C99 feature.
John McCall0b7e6782011-03-24 11:26:52 +00005789 DeclSpec DS(AttrFactory);
Stephen Hines176edba2014-12-01 14:53:08 -08005790 ParseTypeQualifierListOpt(DS, AR_CXX11AttributesParsed);
Mike Stump1eb44332009-09-09 15:08:12 +00005791
Reid Spencer5f016e22007-07-11 17:01:13 +00005792 // If we haven't already read 'static', check to see if there is one after the
5793 // type-qualifier-list.
Stephen Hines651f13c2014-04-23 16:59:28 -07005794 if (!StaticLoc.isValid())
5795 TryConsumeToken(tok::kw_static, StaticLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00005796
Reid Spencer5f016e22007-07-11 17:01:13 +00005797 // Handle "direct-declarator [ type-qual-list[opt] * ]".
5798 bool isStar = false;
John McCall60d7b3a2010-08-24 06:29:42 +00005799 ExprResult NumElements;
Mike Stump1eb44332009-09-09 15:08:12 +00005800
Chris Lattner5dcc6ce2008-04-06 05:26:30 +00005801 // Handle the case where we have '[*]' as the array size. However, a leading
5802 // star could be the start of an expression, for example 'X[*p + 4]'. Verify
Sylvestre Ledrubed28ac2012-07-23 08:59:39 +00005803 // the token after the star is a ']'. Since stars in arrays are
Chris Lattner5dcc6ce2008-04-06 05:26:30 +00005804 // infrequent, use of lookahead is not costly here.
5805 if (Tok.is(tok::star) && GetLookAheadToken(1).is(tok::r_square)) {
Chris Lattnera711dd02008-04-06 05:27:21 +00005806 ConsumeToken(); // Eat the '*'.
Reid Spencer5f016e22007-07-11 17:01:13 +00005807
Chris Lattnera1fcbad2008-12-18 06:50:14 +00005808 if (StaticLoc.isValid()) {
Chris Lattner5dcc6ce2008-04-06 05:26:30 +00005809 Diag(StaticLoc, diag::err_unspecified_vla_size_with_static);
Chris Lattnera1fcbad2008-12-18 06:50:14 +00005810 StaticLoc = SourceLocation(); // Drop the static.
5811 }
Chris Lattner5dcc6ce2008-04-06 05:26:30 +00005812 isStar = true;
Chris Lattner04d66662007-10-09 17:33:22 +00005813 } else if (Tok.isNot(tok::r_square)) {
Chris Lattner378c7e42008-12-18 07:27:21 +00005814 // Note, in C89, this production uses the constant-expr production instead
5815 // of assignment-expr. The only difference is that assignment-expr allows
5816 // things like '=' and '*='. Sema rejects these in C89 mode because they
5817 // are not i-c-e's, so we don't need to distinguish between the two here.
Mike Stump1eb44332009-09-09 15:08:12 +00005818
Douglas Gregore0762c92009-06-19 23:52:42 +00005819 // Parse the constant-expression or assignment-expression now (depending
5820 // on dialect).
David Blaikie4e4d0842012-03-11 07:00:24 +00005821 if (getLangOpts().CPlusPlus) {
Douglas Gregore0762c92009-06-19 23:52:42 +00005822 NumElements = ParseConstantExpression();
Eli Friedman71b8fb52012-01-21 01:01:51 +00005823 } else {
5824 EnterExpressionEvaluationContext Unevaluated(Actions,
5825 Sema::ConstantEvaluated);
Stephen Hines0e2c34f2015-03-23 12:09:02 -07005826 NumElements =
5827 Actions.CorrectDelayedTyposInExpr(ParseAssignmentExpression());
Eli Friedman71b8fb52012-01-21 01:01:51 +00005828 }
Stephen Hines176edba2014-12-01 14:53:08 -08005829 } else {
5830 if (StaticLoc.isValid()) {
5831 Diag(StaticLoc, diag::err_unspecified_size_with_static);
5832 StaticLoc = SourceLocation(); // Drop the static.
5833 }
Reid Spencer5f016e22007-07-11 17:01:13 +00005834 }
Mike Stump1eb44332009-09-09 15:08:12 +00005835
Reid Spencer5f016e22007-07-11 17:01:13 +00005836 // If there was an error parsing the assignment-expression, recover.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00005837 if (NumElements.isInvalid()) {
Chris Lattner5cb10d32009-04-24 22:30:50 +00005838 D.setInvalidType(true);
Reid Spencer5f016e22007-07-11 17:01:13 +00005839 // If the expression was invalid, skip it.
Alexey Bataev8fe24752013-11-18 08:17:37 +00005840 SkipUntil(tok::r_square, StopAtSemi);
Reid Spencer5f016e22007-07-11 17:01:13 +00005841 return;
5842 }
Sebastian Redlab197ba2009-02-09 18:23:29 +00005843
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005844 T.consumeClose();
Sebastian Redlab197ba2009-02-09 18:23:29 +00005845
John McCall0b7e6782011-03-24 11:26:52 +00005846 ParsedAttributes attrs(AttrFactory);
Richard Smith4e24f0f2013-01-02 12:01:23 +00005847 MaybeParseCXX11Attributes(attrs);
Sean Huntbbd37c62009-11-21 08:43:09 +00005848
Chris Lattner378c7e42008-12-18 07:27:21 +00005849 // Remember that we parsed a array type, and remember its features.
John McCall0b7e6782011-03-24 11:26:52 +00005850 D.AddTypeInfo(DeclaratorChunk::getArray(DS.getTypeQualifiers(),
Reid Spencer5f016e22007-07-11 17:01:13 +00005851 StaticLoc.isValid(), isStar,
Stephen Hinesc568f1e2014-07-21 00:47:37 -07005852 NumElements.get(),
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00005853 T.getOpenLocation(),
5854 T.getCloseLocation()),
5855 attrs, T.getCloseLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00005856}
5857
Stephen Hinesc568f1e2014-07-21 00:47:37 -07005858/// Diagnose brackets before an identifier.
5859void Parser::ParseMisplacedBracketDeclarator(Declarator &D) {
5860 assert(Tok.is(tok::l_square) && "Missing opening bracket");
5861 assert(!D.mayOmitIdentifier() && "Declarator cannot omit identifier");
5862
5863 SourceLocation StartBracketLoc = Tok.getLocation();
5864 Declarator TempDeclarator(D.getDeclSpec(), D.getContext());
5865
5866 while (Tok.is(tok::l_square)) {
5867 ParseBracketDeclarator(TempDeclarator);
5868 }
5869
5870 // Stuff the location of the start of the brackets into the Declarator.
5871 // The diagnostics from ParseDirectDeclarator will make more sense if
5872 // they use this location instead.
5873 if (Tok.is(tok::semi))
5874 D.getName().EndLocation = StartBracketLoc;
5875
5876 SourceLocation SuggestParenLoc = Tok.getLocation();
5877
5878 // Now that the brackets are removed, try parsing the declarator again.
5879 ParseDeclaratorInternal(D, &Parser::ParseDirectDeclarator);
5880
5881 // Something went wrong parsing the brackets, in which case,
5882 // ParseBracketDeclarator has emitted an error, and we don't need to emit
5883 // one here.
5884 if (TempDeclarator.getNumTypeObjects() == 0)
5885 return;
5886
5887 // Determine if parens will need to be suggested in the diagnostic.
5888 bool NeedParens = false;
5889 if (D.getNumTypeObjects() != 0) {
5890 switch (D.getTypeObject(D.getNumTypeObjects() - 1).Kind) {
5891 case DeclaratorChunk::Pointer:
5892 case DeclaratorChunk::Reference:
5893 case DeclaratorChunk::BlockPointer:
5894 case DeclaratorChunk::MemberPointer:
5895 NeedParens = true;
5896 break;
5897 case DeclaratorChunk::Array:
5898 case DeclaratorChunk::Function:
5899 case DeclaratorChunk::Paren:
5900 break;
5901 }
5902 }
5903
5904 if (NeedParens) {
5905 // Create a DeclaratorChunk for the inserted parens.
5906 ParsedAttributes attrs(AttrFactory);
5907 SourceLocation EndLoc = PP.getLocForEndOfToken(D.getLocEnd());
5908 D.AddTypeInfo(DeclaratorChunk::getParen(SuggestParenLoc, EndLoc), attrs,
5909 SourceLocation());
5910 }
5911
5912 // Adding back the bracket info to the end of the Declarator.
5913 for (unsigned i = 0, e = TempDeclarator.getNumTypeObjects(); i < e; ++i) {
5914 const DeclaratorChunk &Chunk = TempDeclarator.getTypeObject(i);
5915 ParsedAttributes attrs(AttrFactory);
5916 attrs.set(Chunk.Common.AttrList);
5917 D.AddTypeInfo(Chunk, attrs, SourceLocation());
5918 }
5919
5920 // The missing identifier would have been diagnosed in ParseDirectDeclarator.
5921 // If parentheses are required, always suggest them.
5922 if (!D.getIdentifier() && !NeedParens)
5923 return;
5924
5925 SourceLocation EndBracketLoc = TempDeclarator.getLocEnd();
5926
5927 // Generate the move bracket error message.
5928 SourceRange BracketRange(StartBracketLoc, EndBracketLoc);
5929 SourceLocation EndLoc = PP.getLocForEndOfToken(D.getLocEnd());
5930
5931 if (NeedParens) {
5932 Diag(EndLoc, diag::err_brackets_go_after_unqualified_id)
5933 << getLangOpts().CPlusPlus
5934 << FixItHint::CreateInsertion(SuggestParenLoc, "(")
5935 << FixItHint::CreateInsertion(EndLoc, ")")
5936 << FixItHint::CreateInsertionFromRange(
5937 EndLoc, CharSourceRange(BracketRange, true))
5938 << FixItHint::CreateRemoval(BracketRange);
5939 } else {
5940 Diag(EndLoc, diag::err_brackets_go_after_unqualified_id)
5941 << getLangOpts().CPlusPlus
5942 << FixItHint::CreateInsertionFromRange(
5943 EndLoc, CharSourceRange(BracketRange, true))
5944 << FixItHint::CreateRemoval(BracketRange);
5945 }
5946}
5947
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00005948/// [GNU] typeof-specifier:
5949/// typeof ( expressions )
5950/// typeof ( type-name )
5951/// [GNU/C++] typeof unary-expression
Steve Naroffd1861fd2007-07-31 12:34:36 +00005952///
5953void Parser::ParseTypeofSpecifier(DeclSpec &DS) {
Chris Lattner04d66662007-10-09 17:33:22 +00005954 assert(Tok.is(tok::kw_typeof) && "Not a typeof specifier");
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00005955 Token OpTok = Tok;
Steve Naroffd1861fd2007-07-31 12:34:36 +00005956 SourceLocation StartLoc = ConsumeToken();
5957
John McCallcfb708c2010-01-13 20:03:27 +00005958 const bool hasParens = Tok.is(tok::l_paren);
5959
Eli Friedman80bfa3d2012-09-26 04:34:21 +00005960 EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated,
5961 Sema::ReuseLambdaContextDecl);
Eli Friedman71b8fb52012-01-21 01:01:51 +00005962
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00005963 bool isCastExpr;
John McCallb3d87482010-08-24 05:47:05 +00005964 ParsedType CastTy;
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00005965 SourceRange CastRange;
Stephen Hines0e2c34f2015-03-23 12:09:02 -07005966 ExprResult Operand = Actions.CorrectDelayedTyposInExpr(
5967 ParseExprAfterUnaryExprOrTypeTrait(OpTok, isCastExpr, CastTy, CastRange));
John McCallcfb708c2010-01-13 20:03:27 +00005968 if (hasParens)
5969 DS.setTypeofParensRange(CastRange);
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00005970
5971 if (CastRange.getEnd().isInvalid())
Argyrios Kyrtzidis64096252009-05-22 10:22:18 +00005972 // FIXME: Not accurate, the range gets one token more than it should.
5973 DS.SetRangeEnd(Tok.getLocation());
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00005974 else
5975 DS.SetRangeEnd(CastRange.getEnd());
Mike Stump1eb44332009-09-09 15:08:12 +00005976
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00005977 if (isCastExpr) {
5978 if (!CastTy) {
5979 DS.SetTypeSpecError();
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00005980 return;
Douglas Gregor809070a2009-02-18 17:45:20 +00005981 }
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00005982
Stephen Hines6bcf27b2014-05-29 04:14:42 -07005983 const char *PrevSpec = nullptr;
John McCallfec54012009-08-03 20:12:06 +00005984 unsigned DiagID;
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00005985 // Check for duplicate type specifiers (e.g. "int typeof(int)").
5986 if (DS.SetTypeSpecType(DeclSpec::TST_typeofType, StartLoc, PrevSpec,
Stephen Hines651f13c2014-04-23 16:59:28 -07005987 DiagID, CastTy,
5988 Actions.getASTContext().getPrintingPolicy()))
John McCallfec54012009-08-03 20:12:06 +00005989 Diag(StartLoc, DiagID) << PrevSpec;
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00005990 return;
Argyrios Kyrtzidis64096252009-05-22 10:22:18 +00005991 }
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00005992
Argyrios Kyrtzidis64096252009-05-22 10:22:18 +00005993 // If we get here, the operand to the typeof was an expresion.
5994 if (Operand.isInvalid()) {
5995 DS.SetTypeSpecError();
Steve Naroff9dfa7b42007-08-02 02:53:48 +00005996 return;
Steve Naroffd1861fd2007-07-31 12:34:36 +00005997 }
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00005998
Eli Friedman71b8fb52012-01-21 01:01:51 +00005999 // We might need to transform the operand if it is potentially evaluated.
6000 Operand = Actions.HandleExprEvaluationContextForTypeof(Operand.get());
6001 if (Operand.isInvalid()) {
6002 DS.SetTypeSpecError();
6003 return;
6004 }
6005
Stephen Hines6bcf27b2014-05-29 04:14:42 -07006006 const char *PrevSpec = nullptr;
John McCallfec54012009-08-03 20:12:06 +00006007 unsigned DiagID;
Argyrios Kyrtzidis64096252009-05-22 10:22:18 +00006008 // Check for duplicate type specifiers (e.g. "int typeof(int)").
6009 if (DS.SetTypeSpecType(DeclSpec::TST_typeofExpr, StartLoc, PrevSpec,
Stephen Hines651f13c2014-04-23 16:59:28 -07006010 DiagID, Operand.get(),
6011 Actions.getASTContext().getPrintingPolicy()))
John McCallfec54012009-08-03 20:12:06 +00006012 Diag(StartLoc, DiagID) << PrevSpec;
Steve Naroffd1861fd2007-07-31 12:34:36 +00006013}
Chris Lattner1b492422010-02-28 18:33:55 +00006014
Benjamin Kramerffbe9b92011-12-23 17:00:35 +00006015/// [C11] atomic-specifier:
Eli Friedmanb001de72011-10-06 23:00:33 +00006016/// _Atomic ( type-name )
6017///
6018void Parser::ParseAtomicSpecifier(DeclSpec &DS) {
Richard Smith4cf4a5e2013-03-28 01:55:44 +00006019 assert(Tok.is(tok::kw__Atomic) && NextToken().is(tok::l_paren) &&
6020 "Not an atomic specifier");
Eli Friedmanb001de72011-10-06 23:00:33 +00006021
6022 SourceLocation StartLoc = ConsumeToken();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00006023 BalancedDelimiterTracker T(*this, tok::l_paren);
Richard Smith4cf4a5e2013-03-28 01:55:44 +00006024 if (T.consumeOpen())
Eli Friedmanb001de72011-10-06 23:00:33 +00006025 return;
Eli Friedmanb001de72011-10-06 23:00:33 +00006026
6027 TypeResult Result = ParseTypeName();
6028 if (Result.isInvalid()) {
Alexey Bataev8fe24752013-11-18 08:17:37 +00006029 SkipUntil(tok::r_paren, StopAtSemi);
Eli Friedmanb001de72011-10-06 23:00:33 +00006030 return;
6031 }
6032
6033 // Match the ')'
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00006034 T.consumeClose();
Eli Friedmanb001de72011-10-06 23:00:33 +00006035
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00006036 if (T.getCloseLocation().isInvalid())
Eli Friedmanb001de72011-10-06 23:00:33 +00006037 return;
6038
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00006039 DS.setTypeofParensRange(T.getRange());
6040 DS.SetRangeEnd(T.getCloseLocation());
Eli Friedmanb001de72011-10-06 23:00:33 +00006041
Stephen Hines6bcf27b2014-05-29 04:14:42 -07006042 const char *PrevSpec = nullptr;
Eli Friedmanb001de72011-10-06 23:00:33 +00006043 unsigned DiagID;
6044 if (DS.SetTypeSpecType(DeclSpec::TST_atomic, StartLoc, PrevSpec,
Stephen Hinesc568f1e2014-07-21 00:47:37 -07006045 DiagID, Result.get(),
Stephen Hines651f13c2014-04-23 16:59:28 -07006046 Actions.getASTContext().getPrintingPolicy()))
Eli Friedmanb001de72011-10-06 23:00:33 +00006047 Diag(StartLoc, DiagID) << PrevSpec;
6048}
6049
Chris Lattner1b492422010-02-28 18:33:55 +00006050
6051/// TryAltiVecVectorTokenOutOfLine - Out of line body that should only be called
6052/// from TryAltiVecVectorToken.
6053bool Parser::TryAltiVecVectorTokenOutOfLine() {
6054 Token Next = NextToken();
6055 switch (Next.getKind()) {
6056 default: return false;
6057 case tok::kw_short:
6058 case tok::kw_long:
6059 case tok::kw_signed:
6060 case tok::kw_unsigned:
6061 case tok::kw_void:
6062 case tok::kw_char:
6063 case tok::kw_int:
6064 case tok::kw_float:
6065 case tok::kw_double:
6066 case tok::kw_bool:
Stephen Hines0e2c34f2015-03-23 12:09:02 -07006067 case tok::kw___bool:
Chris Lattner1b492422010-02-28 18:33:55 +00006068 case tok::kw___pixel:
6069 Tok.setKind(tok::kw___vector);
6070 return true;
6071 case tok::identifier:
6072 if (Next.getIdentifierInfo() == Ident_pixel) {
6073 Tok.setKind(tok::kw___vector);
6074 return true;
6075 }
Bill Schmidt3e3d20b2013-07-03 20:54:09 +00006076 if (Next.getIdentifierInfo() == Ident_bool) {
6077 Tok.setKind(tok::kw___vector);
6078 return true;
6079 }
Chris Lattner1b492422010-02-28 18:33:55 +00006080 return false;
6081 }
6082}
6083
6084bool Parser::TryAltiVecTokenOutOfLine(DeclSpec &DS, SourceLocation Loc,
6085 const char *&PrevSpec, unsigned &DiagID,
6086 bool &isInvalid) {
Stephen Hines651f13c2014-04-23 16:59:28 -07006087 const PrintingPolicy &Policy = Actions.getASTContext().getPrintingPolicy();
Chris Lattner1b492422010-02-28 18:33:55 +00006088 if (Tok.getIdentifierInfo() == Ident_vector) {
6089 Token Next = NextToken();
6090 switch (Next.getKind()) {
6091 case tok::kw_short:
6092 case tok::kw_long:
6093 case tok::kw_signed:
6094 case tok::kw_unsigned:
6095 case tok::kw_void:
6096 case tok::kw_char:
6097 case tok::kw_int:
6098 case tok::kw_float:
6099 case tok::kw_double:
6100 case tok::kw_bool:
Stephen Hines0e2c34f2015-03-23 12:09:02 -07006101 case tok::kw___bool:
Chris Lattner1b492422010-02-28 18:33:55 +00006102 case tok::kw___pixel:
Stephen Hines651f13c2014-04-23 16:59:28 -07006103 isInvalid = DS.SetTypeAltiVecVector(true, Loc, PrevSpec, DiagID, Policy);
Chris Lattner1b492422010-02-28 18:33:55 +00006104 return true;
6105 case tok::identifier:
6106 if (Next.getIdentifierInfo() == Ident_pixel) {
Stephen Hines651f13c2014-04-23 16:59:28 -07006107 isInvalid = DS.SetTypeAltiVecVector(true, Loc, PrevSpec, DiagID,Policy);
Chris Lattner1b492422010-02-28 18:33:55 +00006108 return true;
6109 }
Bill Schmidt3e3d20b2013-07-03 20:54:09 +00006110 if (Next.getIdentifierInfo() == Ident_bool) {
Stephen Hines651f13c2014-04-23 16:59:28 -07006111 isInvalid = DS.SetTypeAltiVecVector(true, Loc, PrevSpec, DiagID,Policy);
Bill Schmidt3e3d20b2013-07-03 20:54:09 +00006112 return true;
6113 }
Chris Lattner1b492422010-02-28 18:33:55 +00006114 break;
6115 default:
6116 break;
6117 }
Douglas Gregora8f031f2010-06-16 15:28:57 +00006118 } else if ((Tok.getIdentifierInfo() == Ident_pixel) &&
Chris Lattner1b492422010-02-28 18:33:55 +00006119 DS.isTypeAltiVecVector()) {
Stephen Hines651f13c2014-04-23 16:59:28 -07006120 isInvalid = DS.SetTypeAltiVecPixel(true, Loc, PrevSpec, DiagID, Policy);
Chris Lattner1b492422010-02-28 18:33:55 +00006121 return true;
Bill Schmidt3e3d20b2013-07-03 20:54:09 +00006122 } else if ((Tok.getIdentifierInfo() == Ident_bool) &&
6123 DS.isTypeAltiVecVector()) {
Stephen Hines651f13c2014-04-23 16:59:28 -07006124 isInvalid = DS.SetTypeAltiVecBool(true, Loc, PrevSpec, DiagID, Policy);
Bill Schmidt3e3d20b2013-07-03 20:54:09 +00006125 return true;
Chris Lattner1b492422010-02-28 18:33:55 +00006126 }
6127 return false;
6128}