blob: 12866b91272bb86739f168553fd53174736dc6ce [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"
Chris Lattner500d3292009-01-29 05:15:15 +000015#include "clang/Parse/ParseDiagnostic.h"
Peter Collingbourne207f4d82011-03-18 22:38:29 +000016#include "clang/Basic/OpenCL.h"
John McCall19510852010-08-20 18:27:03 +000017#include "clang/Sema/Scope.h"
18#include "clang/Sema/ParsedTemplate.h"
John McCallf312b1e2010-08-26 23:41:50 +000019#include "clang/Sema/PrettyDeclStackTrace.h"
Chris Lattnerd167ca02009-12-10 00:21:05 +000020#include "RAIIObjectsForParser.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000021#include "llvm/ADT/SmallSet.h"
Benjamin Kramer8fe83e12012-02-04 13:45:25 +000022#include "llvm/ADT/SmallString.h"
Caitlin Sadowskib51e0312011-08-09 17:59:31 +000023#include "llvm/ADT/StringSwitch.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000024using namespace clang;
25
26//===----------------------------------------------------------------------===//
27// C99 6.7: Declarations.
28//===----------------------------------------------------------------------===//
29
30/// ParseTypeName
31/// type-name: [C99 6.7.6]
32/// specifier-qualifier-list abstract-declarator[opt]
Sebastian Redl4c5d3202008-11-21 19:14:01 +000033///
34/// Called type-id in C++.
Douglas Gregor683a81f2011-01-31 16:09:46 +000035TypeResult Parser::ParseTypeName(SourceRange *Range,
John McCallf85e1932011-06-15 23:02:42 +000036 Declarator::TheContext Context,
Richard Smithc89edf52011-07-01 19:46:12 +000037 AccessSpecifier AS,
38 Decl **OwnedType) {
Reid Spencer5f016e22007-07-11 17:01:13 +000039 // Parse the common declaration-specifiers piece.
John McCall0b7e6782011-03-24 11:26:52 +000040 DeclSpec DS(AttrFactory);
Richard Smithc89edf52011-07-01 19:46:12 +000041 ParseSpecifierQualifierList(DS, AS);
42 if (OwnedType)
43 *OwnedType = DS.isTypeSpecOwned() ? DS.getRepAsDecl() : 0;
Sebastian Redlef65f062009-05-29 18:02:33 +000044
Reid Spencer5f016e22007-07-11 17:01:13 +000045 // Parse the abstract-declarator, if present.
Douglas Gregor683a81f2011-01-31 16:09:46 +000046 Declarator DeclaratorInfo(DS, Context);
Reid Spencer5f016e22007-07-11 17:01:13 +000047 ParseDeclarator(DeclaratorInfo);
Sebastian Redlef65f062009-05-29 18:02:33 +000048 if (Range)
49 *Range = DeclaratorInfo.getSourceRange();
50
Chris Lattnereaaebc72009-04-25 08:06:05 +000051 if (DeclaratorInfo.isInvalidType())
Douglas Gregor809070a2009-02-18 17:45:20 +000052 return true;
53
Douglas Gregor23c94db2010-07-02 17:43:08 +000054 return Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
Reid Spencer5f016e22007-07-11 17:01:13 +000055}
56
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +000057
58/// isAttributeLateParsed - Return true if the attribute has arguments that
59/// require late parsing.
60static bool isAttributeLateParsed(const IdentifierInfo &II) {
61 return llvm::StringSwitch<bool>(II.getName())
62#include "clang/Parse/AttrLateParsed.inc"
63 .Default(false);
64}
65
66
Sean Huntbbd37c62009-11-21 08:43:09 +000067/// ParseGNUAttributes - Parse a non-empty attributes list.
Reid Spencer5f016e22007-07-11 17:01:13 +000068///
69/// [GNU] attributes:
70/// attribute
71/// attributes attribute
72///
73/// [GNU] attribute:
74/// '__attribute__' '(' '(' attribute-list ')' ')'
75///
76/// [GNU] attribute-list:
77/// attrib
78/// attribute_list ',' attrib
79///
80/// [GNU] attrib:
81/// empty
82/// attrib-name
83/// attrib-name '(' identifier ')'
84/// attrib-name '(' identifier ',' nonempty-expr-list ')'
85/// attrib-name '(' argument-expression-list [C99 6.5.2] ')'
86///
87/// [GNU] attrib-name:
88/// identifier
89/// typespec
90/// typequal
91/// storageclass
Mike Stump1eb44332009-09-09 15:08:12 +000092///
Reid Spencer5f016e22007-07-11 17:01:13 +000093/// FIXME: The GCC grammar/code for this construct implies we need two
Mike Stump1eb44332009-09-09 15:08:12 +000094/// token lookahead. Comment from gcc: "If they start with an identifier
95/// which is followed by a comma or close parenthesis, then the arguments
Reid Spencer5f016e22007-07-11 17:01:13 +000096/// start with that identifier; otherwise they are an expression list."
97///
Richard Smithfe0a0fb2011-10-17 21:20:17 +000098/// GCC does not require the ',' between attribs in an attribute-list.
99///
Reid Spencer5f016e22007-07-11 17:01:13 +0000100/// At the moment, I am not doing 2 token lookahead. I am also unaware of
101/// any attributes that don't work (based on my limited testing). Most
102/// attributes are very simple in practice. Until we find a bug, I don't see
103/// a pressing need to implement the 2 token lookahead.
104
John McCall7f040a92010-12-24 02:08:15 +0000105void Parser::ParseGNUAttributes(ParsedAttributes &attrs,
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000106 SourceLocation *endLoc,
107 LateParsedAttrList *LateAttrs) {
Sean Huntbbd37c62009-11-21 08:43:09 +0000108 assert(Tok.is(tok::kw___attribute) && "Not a GNU attribute list!");
Mike Stump1eb44332009-09-09 15:08:12 +0000109
Chris Lattner04d66662007-10-09 17:33:22 +0000110 while (Tok.is(tok::kw___attribute)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000111 ConsumeToken();
112 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after,
113 "attribute")) {
114 SkipUntil(tok::r_paren, true); // skip until ) or ;
John McCall7f040a92010-12-24 02:08:15 +0000115 return;
Reid Spencer5f016e22007-07-11 17:01:13 +0000116 }
117 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after, "(")) {
118 SkipUntil(tok::r_paren, true); // skip until ) or ;
John McCall7f040a92010-12-24 02:08:15 +0000119 return;
Reid Spencer5f016e22007-07-11 17:01:13 +0000120 }
121 // Parse the attribute-list. e.g. __attribute__(( weak, alias("__f") ))
Chris Lattner04d66662007-10-09 17:33:22 +0000122 while (Tok.is(tok::identifier) || isDeclarationSpecifier() ||
123 Tok.is(tok::comma)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000124 if (Tok.is(tok::comma)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000125 // allows for empty/non-empty attributes. ((__vector_size__(16),,,,))
126 ConsumeToken();
127 continue;
128 }
129 // we have an identifier or declaration specifier (const, int, etc.)
130 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
131 SourceLocation AttrNameLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000132
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000133 if (Tok.is(tok::l_paren)) {
134 // handle "parameterized" attributes
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +0000135 if (LateAttrs && isAttributeLateParsed(*AttrName)) {
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000136 LateParsedAttribute *LA =
137 new LateParsedAttribute(this, *AttrName, AttrNameLoc);
138 LateAttrs->push_back(LA);
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +0000139
140 // Attributes in a class are parsed at the end of the class, along
141 // with other late-parsed declarations.
142 if (!ClassStack.empty())
143 getCurrentClass().LateParsedDeclarations.push_back(LA);
Mike Stump1eb44332009-09-09 15:08:12 +0000144
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000145 // consume everything up to and including the matching right parens
146 ConsumeAndStoreUntil(tok::r_paren, LA->Toks, true, false);
Mike Stump1eb44332009-09-09 15:08:12 +0000147
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000148 Token Eof;
149 Eof.startToken();
150 Eof.setLocation(Tok.getLocation());
151 LA->Toks.push_back(Eof);
152 } else {
153 ParseGNUAttributeArgs(AttrName, AttrNameLoc, attrs, endLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000154 }
155 } else {
John McCall0b7e6782011-03-24 11:26:52 +0000156 attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc,
157 0, SourceLocation(), 0, 0);
Reid Spencer5f016e22007-07-11 17:01:13 +0000158 }
159 }
160 if (ExpectAndConsume(tok::r_paren, diag::err_expected_rparen))
Reid Spencer5f016e22007-07-11 17:01:13 +0000161 SkipUntil(tok::r_paren, false);
Sean Huntbbd37c62009-11-21 08:43:09 +0000162 SourceLocation Loc = Tok.getLocation();
Sebastian Redlab197ba2009-02-09 18:23:29 +0000163 if (ExpectAndConsume(tok::r_paren, diag::err_expected_rparen)) {
164 SkipUntil(tok::r_paren, false);
165 }
John McCall7f040a92010-12-24 02:08:15 +0000166 if (endLoc)
167 *endLoc = Loc;
Reid Spencer5f016e22007-07-11 17:01:13 +0000168 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000169}
170
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000171
172/// Parse the arguments to a parameterized GNU attribute
173void Parser::ParseGNUAttributeArgs(IdentifierInfo *AttrName,
174 SourceLocation AttrNameLoc,
175 ParsedAttributes &Attrs,
176 SourceLocation *EndLoc) {
177
178 assert(Tok.is(tok::l_paren) && "Attribute arg list not starting with '('");
179
180 // Availability attributes have their own grammar.
181 if (AttrName->isStr("availability")) {
182 ParseAvailabilityAttribute(*AttrName, AttrNameLoc, Attrs, EndLoc);
183 return;
184 }
185 // Thread safety attributes fit into the FIXME case above, so we
186 // just parse the arguments as a list of expressions
187 if (IsThreadSafetyAttribute(AttrName->getName())) {
188 ParseThreadSafetyAttribute(*AttrName, AttrNameLoc, Attrs, EndLoc);
189 return;
190 }
191
192 ConsumeParen(); // ignore the left paren loc for now
193
Richard Smithfe0a0fb2011-10-17 21:20:17 +0000194 IdentifierInfo *ParmName = 0;
195 SourceLocation ParmLoc;
196 bool BuiltinType = false;
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000197
Richard Smithfe0a0fb2011-10-17 21:20:17 +0000198 switch (Tok.getKind()) {
199 case tok::kw_char:
200 case tok::kw_wchar_t:
201 case tok::kw_char16_t:
202 case tok::kw_char32_t:
203 case tok::kw_bool:
204 case tok::kw_short:
205 case tok::kw_int:
206 case tok::kw_long:
207 case tok::kw___int64:
208 case tok::kw_signed:
209 case tok::kw_unsigned:
210 case tok::kw_float:
211 case tok::kw_double:
212 case tok::kw_void:
213 case tok::kw_typeof:
214 // __attribute__(( vec_type_hint(char) ))
215 // FIXME: Don't just discard the builtin type token.
216 ConsumeToken();
217 BuiltinType = true;
218 break;
219
220 case tok::identifier:
221 ParmName = Tok.getIdentifierInfo();
222 ParmLoc = ConsumeToken();
223 break;
224
225 default:
226 break;
227 }
228
229 ExprVector ArgExprs(Actions);
230
231 if (!BuiltinType &&
232 (ParmLoc.isValid() ? Tok.is(tok::comma) : Tok.isNot(tok::r_paren))) {
233 // Eat the comma.
234 if (ParmLoc.isValid())
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000235 ConsumeToken();
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000236
Richard Smithfe0a0fb2011-10-17 21:20:17 +0000237 // Parse the non-empty comma-separated list of expressions.
238 while (1) {
239 ExprResult ArgExpr(ParseAssignmentExpression());
240 if (ArgExpr.isInvalid()) {
241 SkipUntil(tok::r_paren);
242 return;
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000243 }
Richard Smithfe0a0fb2011-10-17 21:20:17 +0000244 ArgExprs.push_back(ArgExpr.release());
245 if (Tok.isNot(tok::comma))
246 break;
247 ConsumeToken(); // Eat the comma, move to the next argument
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000248 }
Richard Smithfe0a0fb2011-10-17 21:20:17 +0000249 }
Fariborz Jahanian7a81e412011-10-18 17:11:10 +0000250 else if (Tok.is(tok::less) && AttrName->isStr("iboutletcollection")) {
251 if (!ExpectAndConsume(tok::less, diag::err_expected_less_after, "<",
252 tok::greater)) {
Fariborz Jahanianb2243432011-10-18 23:13:50 +0000253 while (Tok.is(tok::identifier)) {
254 ConsumeToken();
255 if (Tok.is(tok::greater))
256 break;
257 if (Tok.is(tok::comma)) {
258 ConsumeToken();
259 continue;
260 }
261 }
262 if (Tok.isNot(tok::greater))
263 Diag(Tok, diag::err_iboutletcollection_with_protocol);
Fariborz Jahanian7a81e412011-10-18 17:11:10 +0000264 SkipUntil(tok::r_paren, false, true); // skip until ')'
265 }
266 }
Richard Smithfe0a0fb2011-10-17 21:20:17 +0000267
268 SourceLocation RParen = Tok.getLocation();
269 if (!ExpectAndConsume(tok::r_paren, diag::err_expected_rparen)) {
270 AttributeList *attr =
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +0000271 Attrs.addNew(AttrName, SourceRange(AttrNameLoc, RParen), 0, AttrNameLoc,
Richard Smithfe0a0fb2011-10-17 21:20:17 +0000272 ParmName, ParmLoc, ArgExprs.take(), ArgExprs.size());
Michael Hane53ac8a2012-03-07 00:12:16 +0000273 if (BuiltinType && attr->getKind() == AttributeList::AT_iboutletcollection)
Richard Smithfe0a0fb2011-10-17 21:20:17 +0000274 Diag(Tok, diag::err_iboutletcollection_builtintype);
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000275 }
276}
277
278
Eli Friedmana23b4852009-06-08 07:21:15 +0000279/// ParseMicrosoftDeclSpec - Parse an __declspec construct
280///
281/// [MS] decl-specifier:
282/// __declspec ( extended-decl-modifier-seq )
283///
284/// [MS] extended-decl-modifier-seq:
285/// extended-decl-modifier[opt]
286/// extended-decl-modifier extended-decl-modifier-seq
287
John McCall7f040a92010-12-24 02:08:15 +0000288void Parser::ParseMicrosoftDeclSpec(ParsedAttributes &attrs) {
Steve Narofff59e17e2008-12-24 20:59:21 +0000289 assert(Tok.is(tok::kw___declspec) && "Not a declspec!");
Eli Friedmana23b4852009-06-08 07:21:15 +0000290
Steve Narofff59e17e2008-12-24 20:59:21 +0000291 ConsumeToken();
Eli Friedmana23b4852009-06-08 07:21:15 +0000292 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after,
293 "declspec")) {
294 SkipUntil(tok::r_paren, true); // skip until ) or ;
John McCall7f040a92010-12-24 02:08:15 +0000295 return;
Eli Friedmana23b4852009-06-08 07:21:15 +0000296 }
Francois Pichet373197b2011-05-07 19:04:49 +0000297
Eli Friedman290eeb02009-06-08 23:27:34 +0000298 while (Tok.getIdentifierInfo()) {
Eli Friedmana23b4852009-06-08 07:21:15 +0000299 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
300 SourceLocation AttrNameLoc = ConsumeToken();
Francois Pichet373197b2011-05-07 19:04:49 +0000301
302 // FIXME: Remove this when we have proper __declspec(property()) support.
303 // Just skip everything inside property().
304 if (AttrName->getName() == "property") {
305 ConsumeParen();
306 SkipUntil(tok::r_paren);
307 }
Eli Friedmana23b4852009-06-08 07:21:15 +0000308 if (Tok.is(tok::l_paren)) {
309 ConsumeParen();
310 // FIXME: This doesn't parse __declspec(property(get=get_func_name))
311 // correctly.
John McCall60d7b3a2010-08-24 06:29:42 +0000312 ExprResult ArgExpr(ParseAssignmentExpression());
Eli Friedmana23b4852009-06-08 07:21:15 +0000313 if (!ArgExpr.isInvalid()) {
John McCallca0408f2010-08-23 06:44:23 +0000314 Expr *ExprList = ArgExpr.take();
John McCall0b7e6782011-03-24 11:26:52 +0000315 attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0,
316 SourceLocation(), &ExprList, 1, true);
Eli Friedmana23b4852009-06-08 07:21:15 +0000317 }
318 if (ExpectAndConsume(tok::r_paren, diag::err_expected_rparen))
319 SkipUntil(tok::r_paren, false);
320 } else {
John McCall0b7e6782011-03-24 11:26:52 +0000321 attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc,
322 0, SourceLocation(), 0, 0, true);
Eli Friedmana23b4852009-06-08 07:21:15 +0000323 }
324 }
325 if (ExpectAndConsume(tok::r_paren, diag::err_expected_rparen))
326 SkipUntil(tok::r_paren, false);
John McCall7f040a92010-12-24 02:08:15 +0000327 return;
Eli Friedman290eeb02009-06-08 23:27:34 +0000328}
329
John McCall7f040a92010-12-24 02:08:15 +0000330void Parser::ParseMicrosoftTypeAttributes(ParsedAttributes &attrs) {
Eli Friedman290eeb02009-06-08 23:27:34 +0000331 // Treat these like attributes
332 // FIXME: Allow Sema to distinguish between these and real attributes!
333 while (Tok.is(tok::kw___fastcall) || Tok.is(tok::kw___stdcall) ||
Douglas Gregorf813a2c2010-05-18 16:57:00 +0000334 Tok.is(tok::kw___thiscall) || Tok.is(tok::kw___cdecl) ||
Francois Pichet3bd9aa42011-08-18 09:59:55 +0000335 Tok.is(tok::kw___ptr64) || Tok.is(tok::kw___w64) ||
Francois Pichet58fd97a2011-08-25 00:36:46 +0000336 Tok.is(tok::kw___ptr32) ||
Francois Pichet3bd9aa42011-08-18 09:59:55 +0000337 Tok.is(tok::kw___unaligned)) {
Eli Friedman290eeb02009-06-08 23:27:34 +0000338 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
339 SourceLocation AttrNameLoc = ConsumeToken();
Francois Pichet58fd97a2011-08-25 00:36:46 +0000340 if (Tok.is(tok::kw___ptr64) || Tok.is(tok::kw___w64) ||
341 Tok.is(tok::kw___ptr32))
Eli Friedman290eeb02009-06-08 23:27:34 +0000342 // FIXME: Support these properly!
343 continue;
John McCall0b7e6782011-03-24 11:26:52 +0000344 attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0,
345 SourceLocation(), 0, 0, true);
Eli Friedman290eeb02009-06-08 23:27:34 +0000346 }
Steve Narofff59e17e2008-12-24 20:59:21 +0000347}
348
John McCall7f040a92010-12-24 02:08:15 +0000349void Parser::ParseBorlandTypeAttributes(ParsedAttributes &attrs) {
Dawn Perchik52fc3142010-09-03 01:29:35 +0000350 // Treat these like attributes
351 while (Tok.is(tok::kw___pascal)) {
352 IdentifierInfo *AttrName = Tok.getIdentifierInfo();
353 SourceLocation AttrNameLoc = ConsumeToken();
John McCall0b7e6782011-03-24 11:26:52 +0000354 attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0,
355 SourceLocation(), 0, 0, true);
Dawn Perchik52fc3142010-09-03 01:29:35 +0000356 }
John McCall7f040a92010-12-24 02:08:15 +0000357}
358
Peter Collingbournef315fa82011-02-14 01:42:53 +0000359void Parser::ParseOpenCLAttributes(ParsedAttributes &attrs) {
360 // Treat these like attributes
361 while (Tok.is(tok::kw___kernel)) {
362 SourceLocation AttrNameLoc = ConsumeToken();
John McCall0b7e6782011-03-24 11:26:52 +0000363 attrs.addNew(PP.getIdentifierInfo("opencl_kernel_function"),
364 AttrNameLoc, 0, AttrNameLoc, 0,
365 SourceLocation(), 0, 0, false);
Peter Collingbournef315fa82011-02-14 01:42:53 +0000366 }
367}
368
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000369void Parser::ParseOpenCLQualifiers(DeclSpec &DS) {
370 SourceLocation Loc = Tok.getLocation();
371 switch(Tok.getKind()) {
372 // OpenCL qualifiers:
373 case tok::kw___private:
374 case tok::kw_private:
John McCall0b7e6782011-03-24 11:26:52 +0000375 DS.getAttributes().addNewInteger(
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000376 Actions.getASTContext(),
John McCall0b7e6782011-03-24 11:26:52 +0000377 PP.getIdentifierInfo("address_space"), Loc, 0);
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000378 break;
379
380 case tok::kw___global:
John McCall0b7e6782011-03-24 11:26:52 +0000381 DS.getAttributes().addNewInteger(
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000382 Actions.getASTContext(),
John McCall0b7e6782011-03-24 11:26:52 +0000383 PP.getIdentifierInfo("address_space"), Loc, LangAS::opencl_global);
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000384 break;
385
386 case tok::kw___local:
John McCall0b7e6782011-03-24 11:26:52 +0000387 DS.getAttributes().addNewInteger(
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000388 Actions.getASTContext(),
John McCall0b7e6782011-03-24 11:26:52 +0000389 PP.getIdentifierInfo("address_space"), Loc, LangAS::opencl_local);
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000390 break;
391
392 case tok::kw___constant:
John McCall0b7e6782011-03-24 11:26:52 +0000393 DS.getAttributes().addNewInteger(
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000394 Actions.getASTContext(),
John McCall0b7e6782011-03-24 11:26:52 +0000395 PP.getIdentifierInfo("address_space"), Loc, LangAS::opencl_constant);
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000396 break;
397
398 case tok::kw___read_only:
John McCall0b7e6782011-03-24 11:26:52 +0000399 DS.getAttributes().addNewInteger(
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000400 Actions.getASTContext(),
John McCall0b7e6782011-03-24 11:26:52 +0000401 PP.getIdentifierInfo("opencl_image_access"), Loc, CLIA_read_only);
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000402 break;
403
404 case tok::kw___write_only:
John McCall0b7e6782011-03-24 11:26:52 +0000405 DS.getAttributes().addNewInteger(
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000406 Actions.getASTContext(),
John McCall0b7e6782011-03-24 11:26:52 +0000407 PP.getIdentifierInfo("opencl_image_access"), Loc, CLIA_write_only);
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000408 break;
409
410 case tok::kw___read_write:
John McCall0b7e6782011-03-24 11:26:52 +0000411 DS.getAttributes().addNewInteger(
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000412 Actions.getASTContext(),
John McCall0b7e6782011-03-24 11:26:52 +0000413 PP.getIdentifierInfo("opencl_image_access"), Loc, CLIA_read_write);
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000414 break;
415 default: break;
416 }
417}
418
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000419/// \brief Parse a version number.
420///
421/// version:
422/// simple-integer
423/// simple-integer ',' simple-integer
424/// simple-integer ',' simple-integer ',' simple-integer
425VersionTuple Parser::ParseVersionTuple(SourceRange &Range) {
426 Range = Tok.getLocation();
427
428 if (!Tok.is(tok::numeric_constant)) {
429 Diag(Tok, diag::err_expected_version);
430 SkipUntil(tok::comma, tok::r_paren, true, true, true);
431 return VersionTuple();
432 }
433
434 // Parse the major (and possibly minor and subminor) versions, which
435 // are stored in the numeric constant. We utilize a quirk of the
436 // lexer, which is that it handles something like 1.2.3 as a single
437 // numeric constant, rather than two separate tokens.
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000438 SmallString<512> Buffer;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000439 Buffer.resize(Tok.getLength()+1);
440 const char *ThisTokBegin = &Buffer[0];
441
442 // Get the spelling of the token, which eliminates trigraphs, etc.
443 bool Invalid = false;
444 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin, &Invalid);
445 if (Invalid)
446 return VersionTuple();
447
448 // Parse the major version.
449 unsigned AfterMajor = 0;
450 unsigned Major = 0;
451 while (AfterMajor < ActualLength && isdigit(ThisTokBegin[AfterMajor])) {
452 Major = Major * 10 + ThisTokBegin[AfterMajor] - '0';
453 ++AfterMajor;
454 }
455
456 if (AfterMajor == 0) {
457 Diag(Tok, diag::err_expected_version);
458 SkipUntil(tok::comma, tok::r_paren, true, true, true);
459 return VersionTuple();
460 }
461
462 if (AfterMajor == ActualLength) {
463 ConsumeToken();
464
465 // We only had a single version component.
466 if (Major == 0) {
467 Diag(Tok, diag::err_zero_version);
468 return VersionTuple();
469 }
470
471 return VersionTuple(Major);
472 }
473
474 if (ThisTokBegin[AfterMajor] != '.' || (AfterMajor + 1 == ActualLength)) {
475 Diag(Tok, diag::err_expected_version);
476 SkipUntil(tok::comma, tok::r_paren, true, true, true);
477 return VersionTuple();
478 }
479
480 // Parse the minor version.
481 unsigned AfterMinor = AfterMajor + 1;
482 unsigned Minor = 0;
483 while (AfterMinor < ActualLength && isdigit(ThisTokBegin[AfterMinor])) {
484 Minor = Minor * 10 + ThisTokBegin[AfterMinor] - '0';
485 ++AfterMinor;
486 }
487
488 if (AfterMinor == ActualLength) {
489 ConsumeToken();
490
491 // We had major.minor.
492 if (Major == 0 && Minor == 0) {
493 Diag(Tok, diag::err_zero_version);
494 return VersionTuple();
495 }
496
497 return VersionTuple(Major, Minor);
498 }
499
500 // If what follows is not a '.', we have a problem.
501 if (ThisTokBegin[AfterMinor] != '.') {
502 Diag(Tok, diag::err_expected_version);
503 SkipUntil(tok::comma, tok::r_paren, true, true, true);
504 return VersionTuple();
505 }
506
507 // Parse the subminor version.
508 unsigned AfterSubminor = AfterMinor + 1;
509 unsigned Subminor = 0;
510 while (AfterSubminor < ActualLength && isdigit(ThisTokBegin[AfterSubminor])) {
511 Subminor = Subminor * 10 + ThisTokBegin[AfterSubminor] - '0';
512 ++AfterSubminor;
513 }
514
515 if (AfterSubminor != ActualLength) {
516 Diag(Tok, diag::err_expected_version);
517 SkipUntil(tok::comma, tok::r_paren, true, true, true);
518 return VersionTuple();
519 }
520 ConsumeToken();
521 return VersionTuple(Major, Minor, Subminor);
522}
523
524/// \brief Parse the contents of the "availability" attribute.
525///
526/// availability-attribute:
Fariborz Jahanian006e42f2011-12-10 00:28:41 +0000527/// 'availability' '(' platform ',' version-arg-list, opt-message')'
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000528///
529/// platform:
530/// identifier
531///
532/// version-arg-list:
533/// version-arg
534/// version-arg ',' version-arg-list
535///
536/// version-arg:
537/// 'introduced' '=' version
538/// 'deprecated' '=' version
Douglas Gregor93a70672012-03-11 04:53:21 +0000539/// 'obsoleted' = version
Douglas Gregorb53e4172011-03-26 03:35:55 +0000540/// 'unavailable'
Fariborz Jahanian006e42f2011-12-10 00:28:41 +0000541/// opt-message:
542/// 'message' '=' <string>
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000543void Parser::ParseAvailabilityAttribute(IdentifierInfo &Availability,
544 SourceLocation AvailabilityLoc,
545 ParsedAttributes &attrs,
546 SourceLocation *endLoc) {
547 SourceLocation PlatformLoc;
548 IdentifierInfo *Platform = 0;
549
550 enum { Introduced, Deprecated, Obsoleted, Unknown };
551 AvailabilityChange Changes[Unknown];
Fariborz Jahanian006e42f2011-12-10 00:28:41 +0000552 ExprResult MessageExpr;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000553
554 // Opening '('.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000555 BalancedDelimiterTracker T(*this, tok::l_paren);
556 if (T.consumeOpen()) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000557 Diag(Tok, diag::err_expected_lparen);
558 return;
559 }
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000560
561 // Parse the platform name,
562 if (Tok.isNot(tok::identifier)) {
563 Diag(Tok, diag::err_availability_expected_platform);
564 SkipUntil(tok::r_paren);
565 return;
566 }
567 Platform = Tok.getIdentifierInfo();
568 PlatformLoc = ConsumeToken();
569
570 // Parse the ',' following the platform name.
571 if (ExpectAndConsume(tok::comma, diag::err_expected_comma, "", tok::r_paren))
572 return;
573
574 // If we haven't grabbed the pointers for the identifiers
575 // "introduced", "deprecated", and "obsoleted", do so now.
576 if (!Ident_introduced) {
577 Ident_introduced = PP.getIdentifierInfo("introduced");
578 Ident_deprecated = PP.getIdentifierInfo("deprecated");
579 Ident_obsoleted = PP.getIdentifierInfo("obsoleted");
Douglas Gregorb53e4172011-03-26 03:35:55 +0000580 Ident_unavailable = PP.getIdentifierInfo("unavailable");
Fariborz Jahanian006e42f2011-12-10 00:28:41 +0000581 Ident_message = PP.getIdentifierInfo("message");
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000582 }
583
584 // Parse the set of introductions/deprecations/removals.
Douglas Gregorb53e4172011-03-26 03:35:55 +0000585 SourceLocation UnavailableLoc;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000586 do {
587 if (Tok.isNot(tok::identifier)) {
588 Diag(Tok, diag::err_availability_expected_change);
589 SkipUntil(tok::r_paren);
590 return;
591 }
592 IdentifierInfo *Keyword = Tok.getIdentifierInfo();
593 SourceLocation KeywordLoc = ConsumeToken();
594
Douglas Gregorb53e4172011-03-26 03:35:55 +0000595 if (Keyword == Ident_unavailable) {
596 if (UnavailableLoc.isValid()) {
597 Diag(KeywordLoc, diag::err_availability_redundant)
598 << Keyword << SourceRange(UnavailableLoc);
599 }
600 UnavailableLoc = KeywordLoc;
601
602 if (Tok.isNot(tok::comma))
603 break;
604
605 ConsumeToken();
606 continue;
607 }
Fariborz Jahanian006e42f2011-12-10 00:28:41 +0000608
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000609 if (Tok.isNot(tok::equal)) {
610 Diag(Tok, diag::err_expected_equal_after)
611 << Keyword;
612 SkipUntil(tok::r_paren);
613 return;
614 }
615 ConsumeToken();
Fariborz Jahanian006e42f2011-12-10 00:28:41 +0000616 if (Keyword == Ident_message) {
617 if (!isTokenStringLiteral()) {
618 Diag(Tok, diag::err_expected_string_literal);
619 SkipUntil(tok::r_paren);
620 return;
621 }
622 MessageExpr = ParseStringLiteralExpression();
623 break;
624 }
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000625
626 SourceRange VersionRange;
627 VersionTuple Version = ParseVersionTuple(VersionRange);
628
629 if (Version.empty()) {
630 SkipUntil(tok::r_paren);
631 return;
632 }
633
634 unsigned Index;
635 if (Keyword == Ident_introduced)
636 Index = Introduced;
637 else if (Keyword == Ident_deprecated)
638 Index = Deprecated;
639 else if (Keyword == Ident_obsoleted)
640 Index = Obsoleted;
641 else
642 Index = Unknown;
643
644 if (Index < Unknown) {
645 if (!Changes[Index].KeywordLoc.isInvalid()) {
646 Diag(KeywordLoc, diag::err_availability_redundant)
647 << Keyword
648 << SourceRange(Changes[Index].KeywordLoc,
649 Changes[Index].VersionRange.getEnd());
650 }
651
652 Changes[Index].KeywordLoc = KeywordLoc;
653 Changes[Index].Version = Version;
654 Changes[Index].VersionRange = VersionRange;
655 } else {
656 Diag(KeywordLoc, diag::err_availability_unknown_change)
657 << Keyword << VersionRange;
658 }
659
660 if (Tok.isNot(tok::comma))
661 break;
662
663 ConsumeToken();
664 } while (true);
665
666 // Closing ')'.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000667 if (T.consumeClose())
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000668 return;
669
670 if (endLoc)
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000671 *endLoc = T.getCloseLocation();
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000672
Douglas Gregorb53e4172011-03-26 03:35:55 +0000673 // The 'unavailable' availability cannot be combined with any other
674 // availability changes. Make sure that hasn't happened.
675 if (UnavailableLoc.isValid()) {
676 bool Complained = false;
677 for (unsigned Index = Introduced; Index != Unknown; ++Index) {
678 if (Changes[Index].KeywordLoc.isValid()) {
679 if (!Complained) {
680 Diag(UnavailableLoc, diag::warn_availability_and_unavailable)
681 << SourceRange(Changes[Index].KeywordLoc,
682 Changes[Index].VersionRange.getEnd());
683 Complained = true;
684 }
685
686 // Clear out the availability.
687 Changes[Index] = AvailabilityChange();
688 }
689 }
690 }
691
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000692 // Record this attribute
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000693 attrs.addNew(&Availability,
694 SourceRange(AvailabilityLoc, T.getCloseLocation()),
Fariborz Jahanianf96708d2012-01-23 23:38:32 +0000695 0, AvailabilityLoc,
John McCall0b7e6782011-03-24 11:26:52 +0000696 Platform, PlatformLoc,
697 Changes[Introduced],
698 Changes[Deprecated],
Douglas Gregorb53e4172011-03-26 03:35:55 +0000699 Changes[Obsoleted],
Fariborz Jahanian006e42f2011-12-10 00:28:41 +0000700 UnavailableLoc, MessageExpr.take(),
701 false, false);
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000702}
703
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000704
705// Late Parsed Attributes:
706// See other examples of late parsing in lib/Parse/ParseCXXInlineMethods
707
708void Parser::LateParsedDeclaration::ParseLexedAttributes() {}
709
710void Parser::LateParsedClass::ParseLexedAttributes() {
711 Self->ParseLexedAttributes(*Class);
712}
713
714void Parser::LateParsedAttribute::ParseLexedAttributes() {
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +0000715 Self->ParseLexedAttribute(*this, true, false);
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000716}
717
718/// Wrapper class which calls ParseLexedAttribute, after setting up the
719/// scope appropriately.
720void Parser::ParseLexedAttributes(ParsingClass &Class) {
721 // Deal with templates
722 // FIXME: Test cases to make sure this does the right thing for templates.
723 bool HasTemplateScope = !Class.TopLevelClass && Class.TemplateScope;
724 ParseScope ClassTemplateScope(this, Scope::TemplateParamScope,
725 HasTemplateScope);
726 if (HasTemplateScope)
727 Actions.ActOnReenterTemplateScope(getCurScope(), Class.TagOrTemplate);
728
729 // Set or update the scope flags to include Scope::ThisScope.
730 bool AlreadyHasClassScope = Class.TopLevelClass;
731 unsigned ScopeFlags = Scope::ClassScope|Scope::DeclScope|Scope::ThisScope;
732 ParseScope ClassScope(this, ScopeFlags, !AlreadyHasClassScope);
733 ParseScopeFlags ClassScopeFlags(this, ScopeFlags, AlreadyHasClassScope);
734
735 for (unsigned i = 0, ni = Class.LateParsedDeclarations.size(); i < ni; ++i) {
736 Class.LateParsedDeclarations[i]->ParseLexedAttributes();
737 }
738}
739
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +0000740
741/// \brief Parse all attributes in LAs, and attach them to Decl D.
742void Parser::ParseLexedAttributeList(LateParsedAttrList &LAs, Decl *D,
743 bool EnterScope, bool OnDefinition) {
744 for (unsigned i = 0, ni = LAs.size(); i < ni; ++i) {
DeLesley Hutchins2287c5e2012-03-02 22:12:59 +0000745 LAs[i]->addDecl(D);
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +0000746 ParseLexedAttribute(*LAs[i], EnterScope, OnDefinition);
747 }
748 LAs.clear();
749}
750
751
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000752/// \brief Finish parsing an attribute for which parsing was delayed.
753/// This will be called at the end of parsing a class declaration
754/// for each LateParsedAttribute. We consume the saved tokens and
755/// create an attribute with the arguments filled in. We add this
756/// to the Attribute list for the decl.
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +0000757void Parser::ParseLexedAttribute(LateParsedAttribute &LA,
758 bool EnterScope, bool OnDefinition) {
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000759 // Save the current token position.
760 SourceLocation OrigLoc = Tok.getLocation();
761
762 // Append the current token at the end of the new token stream so that it
763 // doesn't get lost.
764 LA.Toks.push_back(Tok);
765 PP.EnterTokenStream(LA.Toks.data(), LA.Toks.size(), true, false);
766 // Consume the previously pushed token.
767 ConsumeAnyToken();
768
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +0000769 if (OnDefinition && !IsThreadSafetyAttribute(LA.AttrName.getName())) {
770 Diag(Tok, diag::warn_attribute_on_function_definition)
771 << LA.AttrName.getName();
772 }
773
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000774 ParsedAttributes Attrs(AttrFactory);
775 SourceLocation endLoc;
776
DeLesley Hutchins2287c5e2012-03-02 22:12:59 +0000777 if (LA.Decls.size() == 1) {
778 Decl *D = LA.Decls[0];
Caitlin Sadowskied9d84a2011-09-08 17:42:31 +0000779
DeLesley Hutchins2287c5e2012-03-02 22:12:59 +0000780 // If the Decl is templatized, add template parameters to scope.
781 bool HasTemplateScope = EnterScope && D->isTemplateDecl();
782 ParseScope TempScope(this, Scope::TemplateParamScope, HasTemplateScope);
783 if (HasTemplateScope)
784 Actions.ActOnReenterTemplateScope(Actions.CurScope, D);
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000785
DeLesley Hutchins2287c5e2012-03-02 22:12:59 +0000786 // If the Decl is on a function, add function parameters to the scope.
787 bool HasFunctionScope = EnterScope && D->isFunctionOrFunctionTemplate();
788 ParseScope FnScope(this, Scope::FnScope|Scope::DeclScope, HasFunctionScope);
789 if (HasFunctionScope)
790 Actions.ActOnReenterFunctionContext(Actions.CurScope, D);
791
792 ParseGNUAttributeArgs(&LA.AttrName, LA.AttrNameLoc, Attrs, &endLoc);
793
794 if (HasFunctionScope) {
795 Actions.ActOnExitFunctionContext();
796 FnScope.Exit(); // Pop scope, and remove Decls from IdResolver
797 }
798 if (HasTemplateScope) {
799 TempScope.Exit();
800 }
DeLesley Hutchins7ec419a2012-03-02 22:29:50 +0000801 } else if (LA.Decls.size() > 0) {
DeLesley Hutchins2287c5e2012-03-02 22:12:59 +0000802 // If there are multiple decls, then the decl cannot be within the
803 // function scope.
804 ParseGNUAttributeArgs(&LA.AttrName, LA.AttrNameLoc, Attrs, &endLoc);
DeLesley Hutchins7ec419a2012-03-02 22:29:50 +0000805 } else {
806 Diag(Tok, diag::warn_attribute_no_decl) << LA.AttrName.getName();
Caitlin Sadowskied9d84a2011-09-08 17:42:31 +0000807 }
808
DeLesley Hutchins2287c5e2012-03-02 22:12:59 +0000809 for (unsigned i = 0, ni = LA.Decls.size(); i < ni; ++i) {
810 Actions.ActOnFinishDelayedAttribute(getCurScope(), LA.Decls[i], Attrs);
811 }
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000812
813 if (Tok.getLocation() != OrigLoc) {
814 // Due to a parsing error, we either went over the cached tokens or
815 // there are still cached tokens left, so we skip the leftover tokens.
816 // Since this is an uncommon situation that should be avoided, use the
817 // expensive isBeforeInTranslationUnit call.
818 if (PP.getSourceManager().isBeforeInTranslationUnit(Tok.getLocation(),
819 OrigLoc))
820 while (Tok.getLocation() != OrigLoc && Tok.isNot(tok::eof))
Douglas Gregord78ef5b2012-03-08 01:00:17 +0000821 ConsumeAnyToken();
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000822 }
823}
824
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000825/// \brief Wrapper around a case statement checking if AttrName is
826/// one of the thread safety attributes
827bool Parser::IsThreadSafetyAttribute(llvm::StringRef AttrName){
828 return llvm::StringSwitch<bool>(AttrName)
829 .Case("guarded_by", true)
830 .Case("guarded_var", true)
831 .Case("pt_guarded_by", true)
832 .Case("pt_guarded_var", true)
833 .Case("lockable", true)
834 .Case("scoped_lockable", true)
835 .Case("no_thread_safety_analysis", true)
836 .Case("acquired_after", true)
837 .Case("acquired_before", true)
838 .Case("exclusive_lock_function", true)
839 .Case("shared_lock_function", true)
840 .Case("exclusive_trylock_function", true)
841 .Case("shared_trylock_function", true)
842 .Case("unlock_function", true)
843 .Case("lock_returned", true)
844 .Case("locks_excluded", true)
845 .Case("exclusive_locks_required", true)
846 .Case("shared_locks_required", true)
847 .Default(false);
848}
849
850/// \brief Parse the contents of thread safety attributes. These
851/// should always be parsed as an expression list.
852///
853/// We need to special case the parsing due to the fact that if the first token
854/// of the first argument is an identifier, the main parse loop will store
855/// that token as a "parameter" and the rest of
856/// the arguments will be added to a list of "arguments". However,
857/// subsequent tokens in the first argument are lost. We instead parse each
858/// argument as an expression and add all arguments to the list of "arguments".
859/// In future, we will take advantage of this special case to also
860/// deal with some argument scoping issues here (for example, referring to a
861/// function parameter in the attribute on that function).
862void Parser::ParseThreadSafetyAttribute(IdentifierInfo &AttrName,
863 SourceLocation AttrNameLoc,
864 ParsedAttributes &Attrs,
865 SourceLocation *EndLoc) {
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000866 assert(Tok.is(tok::l_paren) && "Attribute arg list not starting with '('");
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000867
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000868 BalancedDelimiterTracker T(*this, tok::l_paren);
869 T.consumeOpen();
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000870
871 ExprVector ArgExprs(Actions);
872 bool ArgExprsOk = true;
873
874 // now parse the list of expressions
DeLesley Hutchins4805f152011-12-14 19:36:06 +0000875 while (Tok.isNot(tok::r_paren)) {
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000876 ExprResult ArgExpr(ParseAssignmentExpression());
877 if (ArgExpr.isInvalid()) {
878 ArgExprsOk = false;
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000879 T.consumeClose();
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000880 break;
881 } else {
882 ArgExprs.push_back(ArgExpr.release());
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000883 }
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000884 if (Tok.isNot(tok::comma))
885 break;
886 ConsumeToken(); // Eat the comma, move to the next argument
887 }
888 // Match the ')'.
DeLesley Hutchins23323e02012-01-20 22:50:54 +0000889 if (ArgExprsOk && !T.consumeClose()) {
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +0000890 Attrs.addNew(&AttrName, AttrNameLoc, 0, AttrNameLoc, 0, SourceLocation(),
891 ArgExprs.take(), ArgExprs.size());
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000892 }
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000893 if (EndLoc)
894 *EndLoc = T.getCloseLocation();
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000895}
896
John McCall7f040a92010-12-24 02:08:15 +0000897void Parser::DiagnoseProhibitedAttributes(ParsedAttributesWithRange &attrs) {
898 Diag(attrs.Range.getBegin(), diag::err_attributes_not_allowed)
899 << attrs.Range;
Dawn Perchik52fc3142010-09-03 01:29:35 +0000900}
901
Reid Spencer5f016e22007-07-11 17:01:13 +0000902/// ParseDeclaration - Parse a full 'declaration', which consists of
903/// declaration-specifiers, some number of declarators, and a semicolon.
Chris Lattner97144fc2009-04-02 04:16:50 +0000904/// 'Context' should be a Declarator::TheContext value. This returns the
905/// location of the semicolon in DeclEnd.
Chris Lattner8f08cb72007-08-25 06:57:03 +0000906///
907/// declaration: [C99 6.7]
908/// block-declaration ->
909/// simple-declaration
910/// others [FIXME]
Douglas Gregoradcac882008-12-01 23:54:00 +0000911/// [C++] template-declaration
Chris Lattner8f08cb72007-08-25 06:57:03 +0000912/// [C++] namespace-definition
Douglas Gregorf780abc2008-12-30 03:27:21 +0000913/// [C++] using-directive
Douglas Gregord7f37bf2009-06-22 23:06:13 +0000914/// [C++] using-declaration
Benjamin Kramerffbe9b92011-12-23 17:00:35 +0000915/// [C++0x/C11] static_assert-declaration
Chris Lattner8f08cb72007-08-25 06:57:03 +0000916/// others... [FIXME]
917///
Fariborz Jahanianc5be7b02010-09-28 20:42:35 +0000918Parser::DeclGroupPtrTy Parser::ParseDeclaration(StmtVector &Stmts,
919 unsigned Context,
Sean Huntbbd37c62009-11-21 08:43:09 +0000920 SourceLocation &DeclEnd,
John McCall7f040a92010-12-24 02:08:15 +0000921 ParsedAttributesWithRange &attrs) {
Argyrios Kyrtzidis36d36802010-06-17 10:52:18 +0000922 ParenBraceBracketBalancer BalancerRAIIObj(*this);
Fariborz Jahaniane8cff362011-08-30 17:10:52 +0000923 // Must temporarily exit the objective-c container scope for
924 // parsing c none objective-c decls.
925 ObjCDeclContextSwitch ObjCDC(*this);
Argyrios Kyrtzidis36d36802010-06-17 10:52:18 +0000926
John McCalld226f652010-08-21 09:40:31 +0000927 Decl *SingleDecl = 0;
Richard Smithc89edf52011-07-01 19:46:12 +0000928 Decl *OwnedType = 0;
Chris Lattner8f08cb72007-08-25 06:57:03 +0000929 switch (Tok.getKind()) {
Douglas Gregoradcac882008-12-01 23:54:00 +0000930 case tok::kw_template:
Douglas Gregor1426e532009-05-12 21:31:51 +0000931 case tok::kw_export:
John McCall7f040a92010-12-24 02:08:15 +0000932 ProhibitAttributes(attrs);
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000933 SingleDecl = ParseDeclarationStartingWithTemplate(Context, DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +0000934 break;
Sebastian Redld078e642010-08-27 23:12:46 +0000935 case tok::kw_inline:
Sebastian Redl88e64ca2010-08-31 00:36:45 +0000936 // Could be the start of an inline namespace. Allowed as an ext in C++03.
David Blaikie4e4d0842012-03-11 07:00:24 +0000937 if (getLangOpts().CPlusPlus && NextToken().is(tok::kw_namespace)) {
John McCall7f040a92010-12-24 02:08:15 +0000938 ProhibitAttributes(attrs);
Sebastian Redld078e642010-08-27 23:12:46 +0000939 SourceLocation InlineLoc = ConsumeToken();
940 SingleDecl = ParseNamespace(Context, DeclEnd, InlineLoc);
941 break;
942 }
John McCall7f040a92010-12-24 02:08:15 +0000943 return ParseSimpleDeclaration(Stmts, Context, DeclEnd, attrs,
Fariborz Jahanianc5be7b02010-09-28 20:42:35 +0000944 true);
Chris Lattner8f08cb72007-08-25 06:57:03 +0000945 case tok::kw_namespace:
John McCall7f040a92010-12-24 02:08:15 +0000946 ProhibitAttributes(attrs);
Chris Lattner97144fc2009-04-02 04:16:50 +0000947 SingleDecl = ParseNamespace(Context, DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +0000948 break;
Douglas Gregorf780abc2008-12-30 03:27:21 +0000949 case tok::kw_using:
John McCall78b81052010-11-10 02:40:36 +0000950 SingleDecl = ParseUsingDirectiveOrDeclaration(Context, ParsedTemplateInfo(),
Richard Smithc89edf52011-07-01 19:46:12 +0000951 DeclEnd, attrs, &OwnedType);
Chris Lattner682bf922009-03-29 16:50:03 +0000952 break;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000953 case tok::kw_static_assert:
Peter Collingbournec6eb44b2011-04-15 00:35:57 +0000954 case tok::kw__Static_assert:
John McCall7f040a92010-12-24 02:08:15 +0000955 ProhibitAttributes(attrs);
Chris Lattner97144fc2009-04-02 04:16:50 +0000956 SingleDecl = ParseStaticAssertDeclaration(DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +0000957 break;
Chris Lattner8f08cb72007-08-25 06:57:03 +0000958 default:
John McCall7f040a92010-12-24 02:08:15 +0000959 return ParseSimpleDeclaration(Stmts, Context, DeclEnd, attrs, true);
Chris Lattner8f08cb72007-08-25 06:57:03 +0000960 }
Sean Huntbbd37c62009-11-21 08:43:09 +0000961
Chris Lattner682bf922009-03-29 16:50:03 +0000962 // This routine returns a DeclGroup, if the thing we parsed only contains a
Richard Smithc89edf52011-07-01 19:46:12 +0000963 // single decl, convert it now. Alias declarations can also declare a type;
964 // include that too if it is present.
965 return Actions.ConvertDeclToDeclGroup(SingleDecl, OwnedType);
Chris Lattner8f08cb72007-08-25 06:57:03 +0000966}
967
968/// simple-declaration: [C99 6.7: declaration] [C++ 7p1: dcl.dcl]
969/// declaration-specifiers init-declarator-list[opt] ';'
970///[C90/C++]init-declarator-list ';' [TODO]
971/// [OMP] threadprivate-directive [TODO]
Chris Lattnercd147752009-03-29 17:27:48 +0000972///
Richard Smithad762fc2011-04-14 22:09:26 +0000973/// for-range-declaration: [C++0x 6.5p1: stmt.ranged]
974/// attribute-specifier-seq[opt] type-specifier-seq declarator
975///
Chris Lattnercd147752009-03-29 17:27:48 +0000976/// If RequireSemi is false, this does not check for a ';' at the end of the
Chris Lattner5c5db552010-04-05 18:18:31 +0000977/// declaration. If it is true, it checks for and eats it.
Richard Smithad762fc2011-04-14 22:09:26 +0000978///
979/// If FRI is non-null, we might be parsing a for-range-declaration instead
980/// of a simple-declaration. If we find that we are, we also parse the
981/// for-range-initializer, and place it here.
Fariborz Jahanianc5be7b02010-09-28 20:42:35 +0000982Parser::DeclGroupPtrTy Parser::ParseSimpleDeclaration(StmtVector &Stmts,
983 unsigned Context,
Sean Huntbbd37c62009-11-21 08:43:09 +0000984 SourceLocation &DeclEnd,
John McCall7f040a92010-12-24 02:08:15 +0000985 ParsedAttributes &attrs,
Richard Smithad762fc2011-04-14 22:09:26 +0000986 bool RequireSemi,
987 ForRangeInit *FRI) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000988 // Parse the common declaration-specifiers piece.
John McCall54abf7d2009-11-04 02:18:39 +0000989 ParsingDeclSpec DS(*this);
John McCall7f040a92010-12-24 02:08:15 +0000990 DS.takeAttributesFrom(attrs);
Douglas Gregor312eadb2011-04-24 05:37:28 +0000991
Douglas Gregor0efc2c12010-01-13 17:31:36 +0000992 ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS_none,
Richard Smith34b41d92011-02-20 03:19:35 +0000993 getDeclSpecContextFromDeclaratorContext(Context));
Abramo Bagnara06284c12012-01-07 10:52:36 +0000994
Reid Spencer5f016e22007-07-11 17:01:13 +0000995 // C99 6.7.2.3p6: Handle "struct-or-union identifier;", "enum { X };"
996 // declaration-specifiers init-declarator-list[opt] ';'
Chris Lattner04d66662007-10-09 17:33:22 +0000997 if (Tok.is(tok::semi)) {
Chris Lattner5c5db552010-04-05 18:18:31 +0000998 if (RequireSemi) ConsumeToken();
John McCalld226f652010-08-21 09:40:31 +0000999 Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS_none,
Douglas Gregor312eadb2011-04-24 05:37:28 +00001000 DS);
John McCall54abf7d2009-11-04 02:18:39 +00001001 DS.complete(TheDecl);
Chris Lattner682bf922009-03-29 16:50:03 +00001002 return Actions.ConvertDeclToDeclGroup(TheDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +00001003 }
Douglas Gregor312eadb2011-04-24 05:37:28 +00001004
1005 return ParseDeclGroup(DS, Context, /*FunctionDefs=*/ false, &DeclEnd, FRI);
John McCalld8ac0572009-11-03 19:26:08 +00001006}
Mike Stump1eb44332009-09-09 15:08:12 +00001007
Richard Smith0706df42011-10-19 21:33:05 +00001008/// Returns true if this might be the start of a declarator, or a common typo
1009/// for a declarator.
1010bool Parser::MightBeDeclarator(unsigned Context) {
1011 switch (Tok.getKind()) {
1012 case tok::annot_cxxscope:
1013 case tok::annot_template_id:
1014 case tok::caret:
1015 case tok::code_completion:
1016 case tok::coloncolon:
1017 case tok::ellipsis:
1018 case tok::kw___attribute:
1019 case tok::kw_operator:
1020 case tok::l_paren:
1021 case tok::star:
1022 return true;
1023
1024 case tok::amp:
1025 case tok::ampamp:
David Blaikie4e4d0842012-03-11 07:00:24 +00001026 return getLangOpts().CPlusPlus;
Richard Smith0706df42011-10-19 21:33:05 +00001027
Richard Smith1c94c162012-01-09 22:31:44 +00001028 case tok::l_square: // Might be an attribute on an unnamed bit-field.
David Blaikie4e4d0842012-03-11 07:00:24 +00001029 return Context == Declarator::MemberContext && getLangOpts().CPlusPlus0x &&
Richard Smith1c94c162012-01-09 22:31:44 +00001030 NextToken().is(tok::l_square);
1031
1032 case tok::colon: // Might be a typo for '::' or an unnamed bit-field.
David Blaikie4e4d0842012-03-11 07:00:24 +00001033 return Context == Declarator::MemberContext || getLangOpts().CPlusPlus;
Richard Smith1c94c162012-01-09 22:31:44 +00001034
Richard Smith0706df42011-10-19 21:33:05 +00001035 case tok::identifier:
1036 switch (NextToken().getKind()) {
1037 case tok::code_completion:
1038 case tok::coloncolon:
1039 case tok::comma:
1040 case tok::equal:
1041 case tok::equalequal: // Might be a typo for '='.
1042 case tok::kw_alignas:
1043 case tok::kw_asm:
1044 case tok::kw___attribute:
1045 case tok::l_brace:
1046 case tok::l_paren:
1047 case tok::l_square:
1048 case tok::less:
1049 case tok::r_brace:
1050 case tok::r_paren:
1051 case tok::r_square:
1052 case tok::semi:
1053 return true;
1054
1055 case tok::colon:
1056 // At namespace scope, 'identifier:' is probably a typo for 'identifier::'
Richard Smith1c94c162012-01-09 22:31:44 +00001057 // and in block scope it's probably a label. Inside a class definition,
1058 // this is a bit-field.
1059 return Context == Declarator::MemberContext ||
David Blaikie4e4d0842012-03-11 07:00:24 +00001060 (getLangOpts().CPlusPlus && Context == Declarator::FileContext);
Richard Smith1c94c162012-01-09 22:31:44 +00001061
1062 case tok::identifier: // Possible virt-specifier.
David Blaikie4e4d0842012-03-11 07:00:24 +00001063 return getLangOpts().CPlusPlus0x && isCXX0XVirtSpecifier(NextToken());
Richard Smith0706df42011-10-19 21:33:05 +00001064
1065 default:
1066 return false;
1067 }
1068
1069 default:
1070 return false;
1071 }
1072}
1073
John McCalld8ac0572009-11-03 19:26:08 +00001074/// ParseDeclGroup - Having concluded that this is either a function
1075/// definition or a group of object declarations, actually parse the
1076/// result.
John McCall54abf7d2009-11-04 02:18:39 +00001077Parser::DeclGroupPtrTy Parser::ParseDeclGroup(ParsingDeclSpec &DS,
1078 unsigned Context,
John McCalld8ac0572009-11-03 19:26:08 +00001079 bool AllowFunctionDefinitions,
Richard Smithad762fc2011-04-14 22:09:26 +00001080 SourceLocation *DeclEnd,
1081 ForRangeInit *FRI) {
John McCalld8ac0572009-11-03 19:26:08 +00001082 // Parse the first declarator.
John McCall54abf7d2009-11-04 02:18:39 +00001083 ParsingDeclarator D(*this, DS, static_cast<Declarator::TheContext>(Context));
John McCalld8ac0572009-11-03 19:26:08 +00001084 ParseDeclarator(D);
Chris Lattnercd147752009-03-29 17:27:48 +00001085
John McCalld8ac0572009-11-03 19:26:08 +00001086 // Bail out if the first declarator didn't seem well-formed.
1087 if (!D.hasName() && !D.mayOmitIdentifier()) {
1088 // Skip until ; or }.
1089 SkipUntil(tok::r_brace, true, true);
1090 if (Tok.is(tok::semi))
1091 ConsumeToken();
1092 return DeclGroupPtrTy();
Chris Lattner23c4b182009-03-29 17:18:04 +00001093 }
Mike Stump1eb44332009-09-09 15:08:12 +00001094
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001095 // Save late-parsed attributes for now; they need to be parsed in the
1096 // appropriate function scope after the function Decl has been constructed.
1097 LateParsedAttrList LateParsedAttrs;
1098 if (D.isFunctionDeclarator())
1099 MaybeParseGNUAttributes(D, &LateParsedAttrs);
1100
Chris Lattnerc82daef2010-07-11 22:24:20 +00001101 // Check to see if we have a function *definition* which must have a body.
1102 if (AllowFunctionDefinitions && D.isFunctionDeclarator() &&
1103 // Look at the next token to make sure that this isn't a function
1104 // declaration. We have to check this because __attribute__ might be the
1105 // start of a function definition in GCC-extended K&R C.
1106 !isDeclarationAfterDeclarator()) {
Richard Smith58196dc2011-11-30 23:45:35 +00001107
Chris Lattner004659a2010-07-11 22:42:07 +00001108 if (isStartOfFunctionDefinition(D)) {
John McCalld8ac0572009-11-03 19:26:08 +00001109 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
1110 Diag(Tok, diag::err_function_declared_typedef);
1111
1112 // Recover by treating the 'typedef' as spurious.
1113 DS.ClearStorageClassSpecs();
1114 }
1115
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001116 Decl *TheDecl =
1117 ParseFunctionDefinition(D, ParsedTemplateInfo(), &LateParsedAttrs);
John McCalld8ac0572009-11-03 19:26:08 +00001118 return Actions.ConvertDeclToDeclGroup(TheDecl);
Chris Lattner004659a2010-07-11 22:42:07 +00001119 }
1120
1121 if (isDeclarationSpecifier()) {
1122 // If there is an invalid declaration specifier right after the function
1123 // prototype, then we must be in a missing semicolon case where this isn't
1124 // actually a body. Just fall through into the code that handles it as a
1125 // prototype, and let the top-level code handle the erroneous declspec
1126 // where it would otherwise expect a comma or semicolon.
John McCalld8ac0572009-11-03 19:26:08 +00001127 } else {
1128 Diag(Tok, diag::err_expected_fn_body);
1129 SkipUntil(tok::semi);
1130 return DeclGroupPtrTy();
1131 }
1132 }
1133
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001134 if (ParseAsmAttributesAfterDeclarator(D))
Richard Smithad762fc2011-04-14 22:09:26 +00001135 return DeclGroupPtrTy();
1136
1137 // C++0x [stmt.iter]p1: Check if we have a for-range-declarator. If so, we
1138 // must parse and analyze the for-range-initializer before the declaration is
1139 // analyzed.
1140 if (FRI && Tok.is(tok::colon)) {
1141 FRI->ColonLoc = ConsumeToken();
Sebastian Redldbef1bb2011-06-05 12:23:16 +00001142 if (Tok.is(tok::l_brace))
1143 FRI->RangeExpr = ParseBraceInitializer();
1144 else
1145 FRI->RangeExpr = ParseExpression();
Richard Smithad762fc2011-04-14 22:09:26 +00001146 Decl *ThisDecl = Actions.ActOnDeclarator(getCurScope(), D);
1147 Actions.ActOnCXXForRangeDecl(ThisDecl);
1148 Actions.FinalizeDeclaration(ThisDecl);
John McCall6895a642012-01-27 01:29:43 +00001149 D.complete(ThisDecl);
Richard Smithad762fc2011-04-14 22:09:26 +00001150 return Actions.FinalizeDeclaratorGroup(getCurScope(), DS, &ThisDecl, 1);
1151 }
1152
Chris Lattner5f9e2722011-07-23 10:55:15 +00001153 SmallVector<Decl *, 8> DeclsInGroup;
Richard Smithad762fc2011-04-14 22:09:26 +00001154 Decl *FirstDecl = ParseDeclarationAfterDeclaratorAndAttributes(D);
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001155 if (LateParsedAttrs.size() > 0)
1156 ParseLexedAttributeList(LateParsedAttrs, FirstDecl, true, false);
John McCall54abf7d2009-11-04 02:18:39 +00001157 D.complete(FirstDecl);
John McCalld226f652010-08-21 09:40:31 +00001158 if (FirstDecl)
John McCalld8ac0572009-11-03 19:26:08 +00001159 DeclsInGroup.push_back(FirstDecl);
1160
Richard Smith0706df42011-10-19 21:33:05 +00001161 bool ExpectSemi = Context != Declarator::ForContext;
1162
John McCalld8ac0572009-11-03 19:26:08 +00001163 // If we don't have a comma, it is either the end of the list (a ';') or an
1164 // error, bail out.
1165 while (Tok.is(tok::comma)) {
Richard Smith0706df42011-10-19 21:33:05 +00001166 SourceLocation CommaLoc = ConsumeToken();
1167
1168 if (Tok.isAtStartOfLine() && ExpectSemi && !MightBeDeclarator(Context)) {
1169 // This comma was followed by a line-break and something which can't be
1170 // the start of a declarator. The comma was probably a typo for a
1171 // semicolon.
1172 Diag(CommaLoc, diag::err_expected_semi_declaration)
1173 << FixItHint::CreateReplacement(CommaLoc, ";");
1174 ExpectSemi = false;
1175 break;
1176 }
John McCalld8ac0572009-11-03 19:26:08 +00001177
1178 // Parse the next declarator.
1179 D.clear();
Richard Smith7984de32012-01-12 23:53:29 +00001180 D.setCommaLoc(CommaLoc);
John McCalld8ac0572009-11-03 19:26:08 +00001181
1182 // Accept attributes in an init-declarator. In the first declarator in a
1183 // declaration, these would be part of the declspec. In subsequent
1184 // declarators, they become part of the declarator itself, so that they
1185 // don't apply to declarators after *this* one. Examples:
1186 // short __attribute__((common)) var; -> declspec
1187 // short var __attribute__((common)); -> declarator
1188 // short x, __attribute__((common)) var; -> declarator
John McCall7f040a92010-12-24 02:08:15 +00001189 MaybeParseGNUAttributes(D);
John McCalld8ac0572009-11-03 19:26:08 +00001190
1191 ParseDeclarator(D);
Fariborz Jahanian9baf39d2012-01-13 00:14:12 +00001192 if (!D.isInvalidType()) {
1193 Decl *ThisDecl = ParseDeclarationAfterDeclarator(D);
1194 D.complete(ThisDecl);
1195 if (ThisDecl)
1196 DeclsInGroup.push_back(ThisDecl);
1197 }
John McCalld8ac0572009-11-03 19:26:08 +00001198 }
1199
1200 if (DeclEnd)
1201 *DeclEnd = Tok.getLocation();
1202
Richard Smith0706df42011-10-19 21:33:05 +00001203 if (ExpectSemi &&
John McCalld8ac0572009-11-03 19:26:08 +00001204 ExpectAndConsume(tok::semi,
1205 Context == Declarator::FileContext
1206 ? diag::err_invalid_token_after_toplevel_declarator
1207 : diag::err_expected_semi_declaration)) {
Chris Lattner004659a2010-07-11 22:42:07 +00001208 // Okay, there was no semicolon and one was expected. If we see a
1209 // declaration specifier, just assume it was missing and continue parsing.
1210 // Otherwise things are very confused and we skip to recover.
1211 if (!isDeclarationSpecifier()) {
1212 SkipUntil(tok::r_brace, true, true);
1213 if (Tok.is(tok::semi))
1214 ConsumeToken();
1215 }
John McCalld8ac0572009-11-03 19:26:08 +00001216 }
1217
Douglas Gregor23c94db2010-07-02 17:43:08 +00001218 return Actions.FinalizeDeclaratorGroup(getCurScope(), DS,
John McCalld8ac0572009-11-03 19:26:08 +00001219 DeclsInGroup.data(),
1220 DeclsInGroup.size());
Reid Spencer5f016e22007-07-11 17:01:13 +00001221}
1222
Richard Smithad762fc2011-04-14 22:09:26 +00001223/// Parse an optional simple-asm-expr and attributes, and attach them to a
1224/// declarator. Returns true on an error.
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001225bool Parser::ParseAsmAttributesAfterDeclarator(Declarator &D) {
Richard Smithad762fc2011-04-14 22:09:26 +00001226 // If a simple-asm-expr is present, parse it.
1227 if (Tok.is(tok::kw_asm)) {
1228 SourceLocation Loc;
1229 ExprResult AsmLabel(ParseSimpleAsm(&Loc));
1230 if (AsmLabel.isInvalid()) {
1231 SkipUntil(tok::semi, true, true);
1232 return true;
1233 }
1234
1235 D.setAsmLabel(AsmLabel.release());
1236 D.SetRangeEnd(Loc);
1237 }
1238
1239 MaybeParseGNUAttributes(D);
1240 return false;
1241}
1242
Douglas Gregor1426e532009-05-12 21:31:51 +00001243/// \brief Parse 'declaration' after parsing 'declaration-specifiers
1244/// declarator'. This method parses the remainder of the declaration
1245/// (including any attributes or initializer, among other things) and
1246/// finalizes the declaration.
Reid Spencer5f016e22007-07-11 17:01:13 +00001247///
Reid Spencer5f016e22007-07-11 17:01:13 +00001248/// init-declarator: [C99 6.7]
1249/// declarator
1250/// declarator '=' initializer
1251/// [GNU] declarator simple-asm-expr[opt] attributes[opt]
1252/// [GNU] declarator simple-asm-expr[opt] attributes[opt] '=' initializer
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00001253/// [C++] declarator initializer[opt]
1254///
1255/// [C++] initializer:
1256/// [C++] '=' initializer-clause
1257/// [C++] '(' expression-list ')'
Sebastian Redl50de12f2009-03-24 22:27:57 +00001258/// [C++0x] '=' 'default' [TODO]
1259/// [C++0x] '=' 'delete'
Sebastian Redldbef1bb2011-06-05 12:23:16 +00001260/// [C++0x] braced-init-list
Sebastian Redl50de12f2009-03-24 22:27:57 +00001261///
1262/// According to the standard grammar, =default and =delete are function
1263/// definitions, but that definitely doesn't fit with the parser here.
Reid Spencer5f016e22007-07-11 17:01:13 +00001264///
John McCalld226f652010-08-21 09:40:31 +00001265Decl *Parser::ParseDeclarationAfterDeclarator(Declarator &D,
Douglas Gregore542c862009-06-23 23:11:28 +00001266 const ParsedTemplateInfo &TemplateInfo) {
DeLesley Hutchinsc24a2332012-02-16 16:50:43 +00001267 if (ParseAsmAttributesAfterDeclarator(D))
Richard Smithad762fc2011-04-14 22:09:26 +00001268 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001269
Richard Smithad762fc2011-04-14 22:09:26 +00001270 return ParseDeclarationAfterDeclaratorAndAttributes(D, TemplateInfo);
1271}
Mike Stump1eb44332009-09-09 15:08:12 +00001272
Richard Smithad762fc2011-04-14 22:09:26 +00001273Decl *Parser::ParseDeclarationAfterDeclaratorAndAttributes(Declarator &D,
1274 const ParsedTemplateInfo &TemplateInfo) {
Douglas Gregor1426e532009-05-12 21:31:51 +00001275 // Inform the current actions module that we just parsed this declarator.
John McCalld226f652010-08-21 09:40:31 +00001276 Decl *ThisDecl = 0;
Douglas Gregord5a423b2009-09-25 18:43:00 +00001277 switch (TemplateInfo.Kind) {
1278 case ParsedTemplateInfo::NonTemplate:
Douglas Gregor23c94db2010-07-02 17:43:08 +00001279 ThisDecl = Actions.ActOnDeclarator(getCurScope(), D);
Douglas Gregord5a423b2009-09-25 18:43:00 +00001280 break;
1281
1282 case ParsedTemplateInfo::Template:
1283 case ParsedTemplateInfo::ExplicitSpecialization:
Douglas Gregor23c94db2010-07-02 17:43:08 +00001284 ThisDecl = Actions.ActOnTemplateDeclarator(getCurScope(),
John McCallf312b1e2010-08-26 23:41:50 +00001285 MultiTemplateParamsArg(Actions,
Douglas Gregore542c862009-06-23 23:11:28 +00001286 TemplateInfo.TemplateParams->data(),
1287 TemplateInfo.TemplateParams->size()),
Douglas Gregord5a423b2009-09-25 18:43:00 +00001288 D);
1289 break;
1290
1291 case ParsedTemplateInfo::ExplicitInstantiation: {
John McCalld226f652010-08-21 09:40:31 +00001292 DeclResult ThisRes
Douglas Gregor23c94db2010-07-02 17:43:08 +00001293 = Actions.ActOnExplicitInstantiation(getCurScope(),
Douglas Gregord5a423b2009-09-25 18:43:00 +00001294 TemplateInfo.ExternLoc,
1295 TemplateInfo.TemplateLoc,
1296 D);
1297 if (ThisRes.isInvalid()) {
1298 SkipUntil(tok::semi, true, true);
John McCalld226f652010-08-21 09:40:31 +00001299 return 0;
Douglas Gregord5a423b2009-09-25 18:43:00 +00001300 }
1301
1302 ThisDecl = ThisRes.get();
1303 break;
1304 }
1305 }
Mike Stump1eb44332009-09-09 15:08:12 +00001306
Richard Smith34b41d92011-02-20 03:19:35 +00001307 bool TypeContainsAuto =
1308 D.getDeclSpec().getTypeSpecType() == DeclSpec::TST_auto;
1309
Douglas Gregor1426e532009-05-12 21:31:51 +00001310 // Parse declarator '=' initializer.
Richard Trieud6c7c672012-01-18 22:54:52 +00001311 // If a '==' or '+=' is found, suggest a fixit to '='.
Richard Trieufcaf27e2012-01-19 22:01:51 +00001312 if (isTokenEqualOrEqualTypo()) {
Douglas Gregor1426e532009-05-12 21:31:51 +00001313 ConsumeToken();
Anders Carlsson37bf9d22010-09-24 21:25:25 +00001314 if (Tok.is(tok::kw_delete)) {
Sean Hunte4246a62011-05-12 06:15:49 +00001315 if (D.isFunctionDeclarator())
1316 Diag(ConsumeToken(), diag::err_default_delete_in_multiple_declaration)
1317 << 1 /* delete */;
1318 else
1319 Diag(ConsumeToken(), diag::err_deleted_non_function);
Sean Huntfe2695e2011-05-06 01:42:00 +00001320 } else if (Tok.is(tok::kw_default)) {
Sean Hunte4246a62011-05-12 06:15:49 +00001321 if (D.isFunctionDeclarator())
Sebastian Redlecfcd562012-02-11 23:51:21 +00001322 Diag(ConsumeToken(), diag::err_default_delete_in_multiple_declaration)
1323 << 0 /* default */;
Sean Hunte4246a62011-05-12 06:15:49 +00001324 else
1325 Diag(ConsumeToken(), diag::err_default_special_members);
Douglas Gregor1426e532009-05-12 21:31:51 +00001326 } else {
David Blaikie4e4d0842012-03-11 07:00:24 +00001327 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
John McCall731ad842009-12-19 09:28:58 +00001328 EnterScope(0);
Douglas Gregor23c94db2010-07-02 17:43:08 +00001329 Actions.ActOnCXXEnterDeclInitializer(getCurScope(), ThisDecl);
John McCall731ad842009-12-19 09:28:58 +00001330 }
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00001331
Douglas Gregor5ac3bdb2010-05-30 01:49:25 +00001332 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001333 Actions.CodeCompleteInitializer(getCurScope(), ThisDecl);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001334 cutOffParsing();
1335 return 0;
Douglas Gregor5ac3bdb2010-05-30 01:49:25 +00001336 }
1337
John McCall60d7b3a2010-08-24 06:29:42 +00001338 ExprResult Init(ParseInitializer());
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00001339
David Blaikie4e4d0842012-03-11 07:00:24 +00001340 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001341 Actions.ActOnCXXExitDeclInitializer(getCurScope(), ThisDecl);
John McCall731ad842009-12-19 09:28:58 +00001342 ExitScope();
1343 }
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00001344
Douglas Gregor1426e532009-05-12 21:31:51 +00001345 if (Init.isInvalid()) {
Douglas Gregor00225542010-03-01 18:27:54 +00001346 SkipUntil(tok::comma, true, true);
1347 Actions.ActOnInitializerError(ThisDecl);
1348 } else
Richard Smith34b41d92011-02-20 03:19:35 +00001349 Actions.AddInitializerToDecl(ThisDecl, Init.take(),
1350 /*DirectInit=*/false, TypeContainsAuto);
Douglas Gregor1426e532009-05-12 21:31:51 +00001351 }
1352 } else if (Tok.is(tok::l_paren)) {
1353 // Parse C++ direct initializer: '(' expression-list ')'
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001354 BalancedDelimiterTracker T(*this, tok::l_paren);
1355 T.consumeOpen();
1356
Douglas Gregor1426e532009-05-12 21:31:51 +00001357 ExprVector Exprs(Actions);
1358 CommaLocsTy CommaLocs;
1359
David Blaikie4e4d0842012-03-11 07:00:24 +00001360 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
Douglas Gregorb4debae2009-12-22 17:47:17 +00001361 EnterScope(0);
Douglas Gregor23c94db2010-07-02 17:43:08 +00001362 Actions.ActOnCXXEnterDeclInitializer(getCurScope(), ThisDecl);
Douglas Gregorb4debae2009-12-22 17:47:17 +00001363 }
1364
Douglas Gregor1426e532009-05-12 21:31:51 +00001365 if (ParseExpressionList(Exprs, CommaLocs)) {
1366 SkipUntil(tok::r_paren);
Douglas Gregorb4debae2009-12-22 17:47:17 +00001367
David Blaikie4e4d0842012-03-11 07:00:24 +00001368 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001369 Actions.ActOnCXXExitDeclInitializer(getCurScope(), ThisDecl);
Douglas Gregorb4debae2009-12-22 17:47:17 +00001370 ExitScope();
1371 }
Douglas Gregor1426e532009-05-12 21:31:51 +00001372 } else {
1373 // Match the ')'.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001374 T.consumeClose();
Douglas Gregor1426e532009-05-12 21:31:51 +00001375
1376 assert(!Exprs.empty() && Exprs.size()-1 == CommaLocs.size() &&
1377 "Unexpected number of commas!");
Douglas Gregorb4debae2009-12-22 17:47:17 +00001378
David Blaikie4e4d0842012-03-11 07:00:24 +00001379 if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001380 Actions.ActOnCXXExitDeclInitializer(getCurScope(), ThisDecl);
Douglas Gregorb4debae2009-12-22 17:47:17 +00001381 ExitScope();
1382 }
1383
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001384 ExprResult Initializer = Actions.ActOnParenListExpr(T.getOpenLocation(),
1385 T.getCloseLocation(),
1386 move_arg(Exprs));
1387 Actions.AddInitializerToDecl(ThisDecl, Initializer.take(),
1388 /*DirectInit=*/true, TypeContainsAuto);
Douglas Gregor1426e532009-05-12 21:31:51 +00001389 }
David Blaikie4e4d0842012-03-11 07:00:24 +00001390 } else if (getLangOpts().CPlusPlus0x && Tok.is(tok::l_brace)) {
Sebastian Redldbef1bb2011-06-05 12:23:16 +00001391 // Parse C++0x braced-init-list.
Richard Smith7fe62082011-10-15 05:09:34 +00001392 Diag(Tok, diag::warn_cxx98_compat_generalized_initializer_lists);
1393
Sebastian Redldbef1bb2011-06-05 12:23:16 +00001394 if (D.getCXXScopeSpec().isSet()) {
1395 EnterScope(0);
1396 Actions.ActOnCXXEnterDeclInitializer(getCurScope(), ThisDecl);
1397 }
1398
1399 ExprResult Init(ParseBraceInitializer());
1400
1401 if (D.getCXXScopeSpec().isSet()) {
1402 Actions.ActOnCXXExitDeclInitializer(getCurScope(), ThisDecl);
1403 ExitScope();
1404 }
1405
1406 if (Init.isInvalid()) {
1407 Actions.ActOnInitializerError(ThisDecl);
1408 } else
1409 Actions.AddInitializerToDecl(ThisDecl, Init.take(),
1410 /*DirectInit=*/true, TypeContainsAuto);
1411
Douglas Gregor1426e532009-05-12 21:31:51 +00001412 } else {
Richard Smith34b41d92011-02-20 03:19:35 +00001413 Actions.ActOnUninitializedDecl(ThisDecl, TypeContainsAuto);
Douglas Gregor1426e532009-05-12 21:31:51 +00001414 }
1415
Richard Smith483b9f32011-02-21 20:05:19 +00001416 Actions.FinalizeDeclaration(ThisDecl);
1417
Douglas Gregor1426e532009-05-12 21:31:51 +00001418 return ThisDecl;
1419}
1420
Reid Spencer5f016e22007-07-11 17:01:13 +00001421/// ParseSpecifierQualifierList
1422/// specifier-qualifier-list:
1423/// type-specifier specifier-qualifier-list[opt]
1424/// type-qualifier specifier-qualifier-list[opt]
1425/// [GNU] attributes specifier-qualifier-list[opt]
1426///
Richard Smithc89edf52011-07-01 19:46:12 +00001427void Parser::ParseSpecifierQualifierList(DeclSpec &DS, AccessSpecifier AS) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001428 /// specifier-qualifier-list is a subset of declaration-specifiers. Just
1429 /// parse declaration-specifiers and complain about extra stuff.
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00001430 /// TODO: diagnose attribute-specifiers and alignment-specifiers.
Richard Smithc89edf52011-07-01 19:46:12 +00001431 ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS);
Mike Stump1eb44332009-09-09 15:08:12 +00001432
Reid Spencer5f016e22007-07-11 17:01:13 +00001433 // Validate declspec for type-name.
1434 unsigned Specs = DS.getParsedSpecifiers();
Chris Lattnerb6645dd2009-04-14 21:16:09 +00001435 if (Specs == DeclSpec::PQ_None && !DS.getNumProtocolQualifiers() &&
John McCall7f040a92010-12-24 02:08:15 +00001436 !DS.hasAttributes())
Reid Spencer5f016e22007-07-11 17:01:13 +00001437 Diag(Tok, diag::err_typename_requires_specqual);
Mike Stump1eb44332009-09-09 15:08:12 +00001438
Reid Spencer5f016e22007-07-11 17:01:13 +00001439 // Issue diagnostic and remove storage class if present.
1440 if (Specs & DeclSpec::PQ_StorageClassSpecifier) {
1441 if (DS.getStorageClassSpecLoc().isValid())
1442 Diag(DS.getStorageClassSpecLoc(),diag::err_typename_invalid_storageclass);
1443 else
1444 Diag(DS.getThreadSpecLoc(), diag::err_typename_invalid_storageclass);
1445 DS.ClearStorageClassSpecs();
1446 }
Mike Stump1eb44332009-09-09 15:08:12 +00001447
Reid Spencer5f016e22007-07-11 17:01:13 +00001448 // Issue diagnostic and remove function specfier if present.
1449 if (Specs & DeclSpec::PQ_FunctionSpecifier) {
Douglas Gregorb48fe382008-10-31 09:07:45 +00001450 if (DS.isInlineSpecified())
1451 Diag(DS.getInlineSpecLoc(), diag::err_typename_invalid_functionspec);
1452 if (DS.isVirtualSpecified())
1453 Diag(DS.getVirtualSpecLoc(), diag::err_typename_invalid_functionspec);
1454 if (DS.isExplicitSpecified())
1455 Diag(DS.getExplicitSpecLoc(), diag::err_typename_invalid_functionspec);
Reid Spencer5f016e22007-07-11 17:01:13 +00001456 DS.ClearFunctionSpecs();
1457 }
1458}
1459
Chris Lattnerc199ab32009-04-12 20:42:31 +00001460/// isValidAfterIdentifierInDeclaratorAfterDeclSpec - Return true if the
1461/// specified token is valid after the identifier in a declarator which
1462/// immediately follows the declspec. For example, these things are valid:
1463///
1464/// int x [ 4]; // direct-declarator
1465/// int x ( int y); // direct-declarator
1466/// int(int x ) // direct-declarator
1467/// int x ; // simple-declaration
1468/// int x = 17; // init-declarator-list
1469/// int x , y; // init-declarator-list
1470/// int x __asm__ ("foo"); // init-declarator-list
Chris Lattnerb6645dd2009-04-14 21:16:09 +00001471/// int x : 4; // struct-declarator
Chris Lattnerc83c27a2009-04-12 22:29:43 +00001472/// int x { 5}; // C++'0x unified initializers
Chris Lattnerc199ab32009-04-12 20:42:31 +00001473///
1474/// This is not, because 'x' does not immediately follow the declspec (though
1475/// ')' happens to be valid anyway).
1476/// int (x)
1477///
1478static bool isValidAfterIdentifierInDeclarator(const Token &T) {
1479 return T.is(tok::l_square) || T.is(tok::l_paren) || T.is(tok::r_paren) ||
1480 T.is(tok::semi) || T.is(tok::comma) || T.is(tok::equal) ||
Chris Lattnerb6645dd2009-04-14 21:16:09 +00001481 T.is(tok::kw_asm) || T.is(tok::l_brace) || T.is(tok::colon);
Chris Lattnerc199ab32009-04-12 20:42:31 +00001482}
1483
Chris Lattnere40c2952009-04-14 21:34:55 +00001484
1485/// ParseImplicitInt - This method is called when we have an non-typename
1486/// identifier in a declspec (which normally terminates the decl spec) when
1487/// the declspec has no type specifier. In this case, the declspec is either
1488/// malformed or is "implicit int" (in K&R and C89).
1489///
1490/// This method handles diagnosing this prettily and returns false if the
1491/// declspec is done being processed. If it recovers and thinks there may be
1492/// other pieces of declspec after it, it returns true.
1493///
Chris Lattnerf4382f52009-04-14 22:17:06 +00001494bool Parser::ParseImplicitInt(DeclSpec &DS, CXXScopeSpec *SS,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001495 const ParsedTemplateInfo &TemplateInfo,
Chris Lattnere40c2952009-04-14 21:34:55 +00001496 AccessSpecifier AS) {
Chris Lattnerf4382f52009-04-14 22:17:06 +00001497 assert(Tok.is(tok::identifier) && "should have identifier");
Mike Stump1eb44332009-09-09 15:08:12 +00001498
Chris Lattnere40c2952009-04-14 21:34:55 +00001499 SourceLocation Loc = Tok.getLocation();
1500 // If we see an identifier that is not a type name, we normally would
1501 // parse it as the identifer being declared. However, when a typename
1502 // is typo'd or the definition is not included, this will incorrectly
1503 // parse the typename as the identifier name and fall over misparsing
1504 // later parts of the diagnostic.
1505 //
1506 // As such, we try to do some look-ahead in cases where this would
1507 // otherwise be an "implicit-int" case to see if this is invalid. For
1508 // example: "static foo_t x = 4;" In this case, if we parsed foo_t as
1509 // an identifier with implicit int, we'd get a parse error because the
1510 // next token is obviously invalid for a type. Parse these as a case
1511 // with an invalid type specifier.
1512 assert(!DS.hasTypeSpecifier() && "Type specifier checked above");
Mike Stump1eb44332009-09-09 15:08:12 +00001513
Chris Lattnere40c2952009-04-14 21:34:55 +00001514 // Since we know that this either implicit int (which is rare) or an
1515 // error, we'd do lookahead to try to do better recovery.
1516 if (isValidAfterIdentifierInDeclarator(NextToken())) {
1517 // If this token is valid for implicit int, e.g. "static x = 4", then
1518 // we just avoid eating the identifier, so it will be parsed as the
1519 // identifier in the declarator.
1520 return false;
1521 }
Mike Stump1eb44332009-09-09 15:08:12 +00001522
Chris Lattnere40c2952009-04-14 21:34:55 +00001523 // Otherwise, if we don't consume this token, we are going to emit an
1524 // error anyway. Try to recover from various common problems. Check
1525 // to see if this was a reference to a tag name without a tag specified.
1526 // This is a common problem in C (saying 'foo' instead of 'struct foo').
Chris Lattnerf4382f52009-04-14 22:17:06 +00001527 //
1528 // C++ doesn't need this, and isTagName doesn't take SS.
1529 if (SS == 0) {
Argyrios Kyrtzidisb8a9d3b2011-04-21 17:29:47 +00001530 const char *TagName = 0, *FixitTagName = 0;
Chris Lattnerf4382f52009-04-14 22:17:06 +00001531 tok::TokenKind TagKind = tok::unknown;
Mike Stump1eb44332009-09-09 15:08:12 +00001532
Douglas Gregor23c94db2010-07-02 17:43:08 +00001533 switch (Actions.isTagName(*Tok.getIdentifierInfo(), getCurScope())) {
Chris Lattnere40c2952009-04-14 21:34:55 +00001534 default: break;
Argyrios Kyrtzidisb8a9d3b2011-04-21 17:29:47 +00001535 case DeclSpec::TST_enum:
1536 TagName="enum" ; FixitTagName = "enum " ; TagKind=tok::kw_enum ;break;
1537 case DeclSpec::TST_union:
1538 TagName="union" ; FixitTagName = "union " ;TagKind=tok::kw_union ;break;
1539 case DeclSpec::TST_struct:
1540 TagName="struct"; FixitTagName = "struct ";TagKind=tok::kw_struct;break;
1541 case DeclSpec::TST_class:
1542 TagName="class" ; FixitTagName = "class " ;TagKind=tok::kw_class ;break;
Chris Lattnere40c2952009-04-14 21:34:55 +00001543 }
Mike Stump1eb44332009-09-09 15:08:12 +00001544
Chris Lattnerf4382f52009-04-14 22:17:06 +00001545 if (TagName) {
1546 Diag(Loc, diag::err_use_of_tag_name_without_tag)
David Blaikie4e4d0842012-03-11 07:00:24 +00001547 << Tok.getIdentifierInfo() << TagName << getLangOpts().CPlusPlus
Argyrios Kyrtzidisb8a9d3b2011-04-21 17:29:47 +00001548 << FixItHint::CreateInsertion(Tok.getLocation(),FixitTagName);
Mike Stump1eb44332009-09-09 15:08:12 +00001549
Chris Lattnerf4382f52009-04-14 22:17:06 +00001550 // Parse this as a tag as if the missing tag were present.
1551 if (TagKind == tok::kw_enum)
Douglas Gregor9b9edd62010-03-02 17:53:14 +00001552 ParseEnumSpecifier(Loc, DS, TemplateInfo, AS);
Chris Lattnerf4382f52009-04-14 22:17:06 +00001553 else
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001554 ParseClassSpecifier(TagKind, Loc, DS, TemplateInfo, AS);
Chris Lattnerf4382f52009-04-14 22:17:06 +00001555 return true;
1556 }
Chris Lattnere40c2952009-04-14 21:34:55 +00001557 }
Mike Stump1eb44332009-09-09 15:08:12 +00001558
Douglas Gregora786fdb2009-10-13 23:27:22 +00001559 // This is almost certainly an invalid type name. Let the action emit a
1560 // diagnostic and attempt to recover.
John McCallb3d87482010-08-24 05:47:05 +00001561 ParsedType T;
Douglas Gregora786fdb2009-10-13 23:27:22 +00001562 if (Actions.DiagnoseUnknownTypeName(*Tok.getIdentifierInfo(), Loc,
Douglas Gregor23c94db2010-07-02 17:43:08 +00001563 getCurScope(), SS, T)) {
Douglas Gregora786fdb2009-10-13 23:27:22 +00001564 // The action emitted a diagnostic, so we don't have to.
1565 if (T) {
1566 // The action has suggested that the type T could be used. Set that as
1567 // the type in the declaration specifiers, consume the would-be type
1568 // name token, and we're done.
1569 const char *PrevSpec;
1570 unsigned DiagID;
John McCallb3d87482010-08-24 05:47:05 +00001571 DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec, DiagID, T);
Douglas Gregora786fdb2009-10-13 23:27:22 +00001572 DS.SetRangeEnd(Tok.getLocation());
1573 ConsumeToken();
1574
1575 // There may be other declaration specifiers after this.
1576 return true;
1577 }
1578
1579 // Fall through; the action had no suggestion for us.
1580 } else {
1581 // The action did not emit a diagnostic, so emit one now.
1582 SourceRange R;
1583 if (SS) R = SS->getRange();
1584 Diag(Loc, diag::err_unknown_typename) << Tok.getIdentifierInfo() << R;
1585 }
Mike Stump1eb44332009-09-09 15:08:12 +00001586
Douglas Gregora786fdb2009-10-13 23:27:22 +00001587 // Mark this as an error.
Chris Lattnere40c2952009-04-14 21:34:55 +00001588 const char *PrevSpec;
John McCallfec54012009-08-03 20:12:06 +00001589 unsigned DiagID;
1590 DS.SetTypeSpecType(DeclSpec::TST_error, Loc, PrevSpec, DiagID);
Chris Lattnere40c2952009-04-14 21:34:55 +00001591 DS.SetRangeEnd(Tok.getLocation());
1592 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001593
Chris Lattnere40c2952009-04-14 21:34:55 +00001594 // TODO: Could inject an invalid typedef decl in an enclosing scope to
1595 // avoid rippling error messages on subsequent uses of the same type,
1596 // could be useful if #include was forgotten.
1597 return false;
1598}
1599
Douglas Gregor0efc2c12010-01-13 17:31:36 +00001600/// \brief Determine the declaration specifier context from the declarator
1601/// context.
1602///
1603/// \param Context the declarator context, which is one of the
1604/// Declarator::TheContext enumerator values.
1605Parser::DeclSpecContext
1606Parser::getDeclSpecContextFromDeclaratorContext(unsigned Context) {
1607 if (Context == Declarator::MemberContext)
1608 return DSC_class;
1609 if (Context == Declarator::FileContext)
1610 return DSC_top_level;
1611 return DSC_normal;
1612}
1613
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00001614/// ParseAlignArgument - Parse the argument to an alignment-specifier.
1615///
1616/// FIXME: Simply returns an alignof() expression if the argument is a
1617/// type. Ideally, the type should be propagated directly into Sema.
1618///
Benjamin Kramerffbe9b92011-12-23 17:00:35 +00001619/// [C11] type-id
1620/// [C11] constant-expression
Peter Collingbourne0b64ba92011-10-23 20:07:52 +00001621/// [C++0x] type-id ...[opt]
1622/// [C++0x] assignment-expression ...[opt]
1623ExprResult Parser::ParseAlignArgument(SourceLocation Start,
1624 SourceLocation &EllipsisLoc) {
1625 ExprResult ER;
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00001626 if (isTypeIdInParens()) {
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00001627 SourceLocation TypeLoc = Tok.getLocation();
1628 ParsedType Ty = ParseTypeName().get();
1629 SourceRange TypeRange(Start, Tok.getLocation());
Peter Collingbourne0b64ba92011-10-23 20:07:52 +00001630 ER = Actions.ActOnUnaryExprOrTypeTraitExpr(TypeLoc, UETT_AlignOf, true,
1631 Ty.getAsOpaquePtr(), TypeRange);
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00001632 } else
Peter Collingbourne0b64ba92011-10-23 20:07:52 +00001633 ER = ParseConstantExpression();
1634
David Blaikie4e4d0842012-03-11 07:00:24 +00001635 if (getLangOpts().CPlusPlus0x && Tok.is(tok::ellipsis))
Peter Collingbournefe9b2a82011-10-24 17:56:00 +00001636 EllipsisLoc = ConsumeToken();
Peter Collingbourne0b64ba92011-10-23 20:07:52 +00001637
1638 return ER;
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00001639}
1640
1641/// ParseAlignmentSpecifier - Parse an alignment-specifier, and add the
1642/// attribute to Attrs.
1643///
1644/// alignment-specifier:
Benjamin Kramerffbe9b92011-12-23 17:00:35 +00001645/// [C11] '_Alignas' '(' type-id ')'
1646/// [C11] '_Alignas' '(' constant-expression ')'
Peter Collingbourne0b64ba92011-10-23 20:07:52 +00001647/// [C++0x] 'alignas' '(' type-id ...[opt] ')'
1648/// [C++0x] 'alignas' '(' assignment-expression ...[opt] ')'
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00001649void Parser::ParseAlignmentSpecifier(ParsedAttributes &Attrs,
1650 SourceLocation *endLoc) {
1651 assert((Tok.is(tok::kw_alignas) || Tok.is(tok::kw__Alignas)) &&
1652 "Not an alignment-specifier!");
1653
1654 SourceLocation KWLoc = Tok.getLocation();
1655 ConsumeToken();
1656
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001657 BalancedDelimiterTracker T(*this, tok::l_paren);
1658 if (T.expectAndConsume(diag::err_expected_lparen))
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00001659 return;
1660
Peter Collingbourne0b64ba92011-10-23 20:07:52 +00001661 SourceLocation EllipsisLoc;
1662 ExprResult ArgExpr = ParseAlignArgument(T.getOpenLocation(), EllipsisLoc);
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00001663 if (ArgExpr.isInvalid()) {
1664 SkipUntil(tok::r_paren);
1665 return;
1666 }
1667
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001668 T.consumeClose();
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00001669 if (endLoc)
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001670 *endLoc = T.getCloseLocation();
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00001671
Peter Collingbourne0b64ba92011-10-23 20:07:52 +00001672 // FIXME: Handle pack-expansions here.
1673 if (EllipsisLoc.isValid()) {
1674 Diag(EllipsisLoc, diag::err_alignas_pack_exp_unsupported);
1675 return;
1676 }
1677
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00001678 ExprVector ArgExprs(Actions);
1679 ArgExprs.push_back(ArgExpr.release());
1680 Attrs.addNew(PP.getIdentifierInfo("aligned"), KWLoc, 0, KWLoc,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001681 0, T.getOpenLocation(), ArgExprs.take(), 1, false, true);
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00001682}
1683
Reid Spencer5f016e22007-07-11 17:01:13 +00001684/// ParseDeclarationSpecifiers
1685/// declaration-specifiers: [C99 6.7]
1686/// storage-class-specifier declaration-specifiers[opt]
1687/// type-specifier declaration-specifiers[opt]
Reid Spencer5f016e22007-07-11 17:01:13 +00001688/// [C99] function-specifier declaration-specifiers[opt]
Benjamin Kramerffbe9b92011-12-23 17:00:35 +00001689/// [C11] alignment-specifier declaration-specifiers[opt]
Reid Spencer5f016e22007-07-11 17:01:13 +00001690/// [GNU] attributes declaration-specifiers[opt]
Douglas Gregor8d267c52011-09-09 02:06:17 +00001691/// [Clang] '__module_private__' declaration-specifiers[opt]
Reid Spencer5f016e22007-07-11 17:01:13 +00001692///
1693/// storage-class-specifier: [C99 6.7.1]
1694/// 'typedef'
1695/// 'extern'
1696/// 'static'
1697/// 'auto'
1698/// 'register'
Sebastian Redl669d5d72008-11-14 23:42:31 +00001699/// [C++] 'mutable'
Reid Spencer5f016e22007-07-11 17:01:13 +00001700/// [GNU] '__thread'
Reid Spencer5f016e22007-07-11 17:01:13 +00001701/// function-specifier: [C99 6.7.4]
1702/// [C99] 'inline'
Douglas Gregorb48fe382008-10-31 09:07:45 +00001703/// [C++] 'virtual'
1704/// [C++] 'explicit'
Peter Collingbournef315fa82011-02-14 01:42:53 +00001705/// [OpenCL] '__kernel'
Anders Carlssonf47f7a12009-05-06 04:46:28 +00001706/// 'friend': [C++ dcl.friend]
Sebastian Redl2ac67232009-11-05 15:47:02 +00001707/// 'constexpr': [C++0x dcl.constexpr]
Anders Carlssonf47f7a12009-05-06 04:46:28 +00001708
Reid Spencer5f016e22007-07-11 17:01:13 +00001709///
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +00001710void Parser::ParseDeclarationSpecifiers(DeclSpec &DS,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001711 const ParsedTemplateInfo &TemplateInfo,
John McCall67d1a672009-08-06 02:15:43 +00001712 AccessSpecifier AS,
DeLesley Hutchins2287c5e2012-03-02 22:12:59 +00001713 DeclSpecContext DSContext,
1714 LateParsedAttrList *LateAttrs) {
Douglas Gregor312eadb2011-04-24 05:37:28 +00001715 if (DS.getSourceRange().isInvalid()) {
1716 DS.SetRangeStart(Tok.getLocation());
1717 DS.SetRangeEnd(Tok.getLocation());
1718 }
1719
Douglas Gregorefaa93a2011-11-07 17:33:42 +00001720 bool EnteringContext = (DSContext == DSC_class || DSContext == DSC_top_level);
Reid Spencer5f016e22007-07-11 17:01:13 +00001721 while (1) {
John McCallfec54012009-08-03 20:12:06 +00001722 bool isInvalid = false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001723 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +00001724 unsigned DiagID = 0;
1725
Reid Spencer5f016e22007-07-11 17:01:13 +00001726 SourceLocation Loc = Tok.getLocation();
Douglas Gregor12e083c2008-11-07 15:42:26 +00001727
Reid Spencer5f016e22007-07-11 17:01:13 +00001728 switch (Tok.getKind()) {
Mike Stump1eb44332009-09-09 15:08:12 +00001729 default:
Chris Lattnerbce61352008-07-26 00:20:22 +00001730 DoneWithDeclSpec:
Peter Collingbournef1907682011-09-29 18:03:57 +00001731 // [C++0x] decl-specifier-seq: decl-specifier attribute-specifier-seq[opt]
1732 MaybeParseCXX0XAttributes(DS.getAttributes());
1733
Reid Spencer5f016e22007-07-11 17:01:13 +00001734 // If this is not a declaration specifier token, we're done reading decl
1735 // specifiers. First verify that DeclSpec's are consistent.
Douglas Gregor9b3064b2009-04-01 22:41:11 +00001736 DS.Finish(Diags, PP);
Reid Spencer5f016e22007-07-11 17:01:13 +00001737 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001738
Douglas Gregor2ccccb32010-08-23 18:23:48 +00001739 case tok::code_completion: {
John McCallf312b1e2010-08-26 23:41:50 +00001740 Sema::ParserCompletionContext CCC = Sema::PCC_Namespace;
Douglas Gregor2ccccb32010-08-23 18:23:48 +00001741 if (DS.hasTypeSpecifier()) {
1742 bool AllowNonIdentifiers
1743 = (getCurScope()->getFlags() & (Scope::ControlScope |
1744 Scope::BlockScope |
1745 Scope::TemplateParamScope |
1746 Scope::FunctionPrototypeScope |
1747 Scope::AtCatchScope)) == 0;
1748 bool AllowNestedNameSpecifiers
1749 = DSContext == DSC_top_level ||
1750 (DSContext == DSC_class && DS.isFriendSpecified());
1751
Douglas Gregorc7b6d882010-09-16 15:14:18 +00001752 Actions.CodeCompleteDeclSpec(getCurScope(), DS,
1753 AllowNonIdentifiers,
1754 AllowNestedNameSpecifiers);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001755 return cutOffParsing();
Douglas Gregor2ccccb32010-08-23 18:23:48 +00001756 }
1757
Douglas Gregor68e3c2e2011-02-15 20:33:25 +00001758 if (getCurScope()->getFnParent() || getCurScope()->getBlockParent())
1759 CCC = Sema::PCC_LocalDeclarationSpecifiers;
1760 else if (TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate)
John McCallf312b1e2010-08-26 23:41:50 +00001761 CCC = DSContext == DSC_class? Sema::PCC_MemberTemplate
1762 : Sema::PCC_Template;
Douglas Gregor2ccccb32010-08-23 18:23:48 +00001763 else if (DSContext == DSC_class)
John McCallf312b1e2010-08-26 23:41:50 +00001764 CCC = Sema::PCC_Class;
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001765 else if (CurParsedObjCImpl)
John McCallf312b1e2010-08-26 23:41:50 +00001766 CCC = Sema::PCC_ObjCImplementation;
Douglas Gregor2ccccb32010-08-23 18:23:48 +00001767
1768 Actions.CodeCompleteOrdinaryName(getCurScope(), CCC);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001769 return cutOffParsing();
Douglas Gregor2ccccb32010-08-23 18:23:48 +00001770 }
1771
Chris Lattner5e02c472009-01-05 00:07:25 +00001772 case tok::coloncolon: // ::foo::bar
John McCall9ba61662010-02-26 08:45:28 +00001773 // C++ scope specifier. Annotate and loop, or bail out on error.
1774 if (TryAnnotateCXXScopeToken(true)) {
1775 if (!DS.hasTypeSpecifier())
1776 DS.SetTypeSpecError();
1777 goto DoneWithDeclSpec;
1778 }
John McCall2e0a7152010-03-01 18:20:46 +00001779 if (Tok.is(tok::coloncolon)) // ::new or ::delete
1780 goto DoneWithDeclSpec;
John McCall9ba61662010-02-26 08:45:28 +00001781 continue;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001782
1783 case tok::annot_cxxscope: {
1784 if (DS.hasTypeSpecifier())
1785 goto DoneWithDeclSpec;
1786
John McCallaa87d332009-12-12 11:40:51 +00001787 CXXScopeSpec SS;
Douglas Gregorc34348a2011-02-24 17:54:50 +00001788 Actions.RestoreNestedNameSpecifierAnnotation(Tok.getAnnotationValue(),
1789 Tok.getAnnotationRange(),
1790 SS);
John McCallaa87d332009-12-12 11:40:51 +00001791
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001792 // We are looking for a qualified typename.
Douglas Gregor9135c722009-03-25 15:40:00 +00001793 Token Next = NextToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001794 if (Next.is(tok::annot_template_id) &&
Douglas Gregor9135c722009-03-25 15:40:00 +00001795 static_cast<TemplateIdAnnotation *>(Next.getAnnotationValue())
Douglas Gregorc45c2322009-03-31 00:43:58 +00001796 ->Kind == TNK_Type_template) {
Douglas Gregor9135c722009-03-25 15:40:00 +00001797 // We have a qualified template-id, e.g., N::A<int>
Douglas Gregor0efc2c12010-01-13 17:31:36 +00001798
1799 // C++ [class.qual]p2:
1800 // In a lookup in which the constructor is an acceptable lookup
1801 // result and the nested-name-specifier nominates a class C:
1802 //
1803 // - if the name specified after the
1804 // nested-name-specifier, when looked up in C, is the
1805 // injected-class-name of C (Clause 9), or
1806 //
1807 // - if the name specified after the nested-name-specifier
1808 // is the same as the identifier or the
1809 // simple-template-id's template-name in the last
1810 // component of the nested-name-specifier,
1811 //
1812 // the name is instead considered to name the constructor of
1813 // class C.
1814 //
1815 // Thus, if the template-name is actually the constructor
1816 // name, then the code is ill-formed; this interpretation is
1817 // reinforced by the NAD status of core issue 635.
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +00001818 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Next);
John McCallba9d8532010-04-13 06:39:49 +00001819 if ((DSContext == DSC_top_level ||
1820 (DSContext == DSC_class && DS.isFriendSpecified())) &&
1821 TemplateId->Name &&
Douglas Gregor23c94db2010-07-02 17:43:08 +00001822 Actions.isCurrentClassName(*TemplateId->Name, getCurScope(), &SS)) {
Douglas Gregor0efc2c12010-01-13 17:31:36 +00001823 if (isConstructorDeclarator()) {
1824 // The user meant this to be an out-of-line constructor
1825 // definition, but template arguments are not allowed
1826 // there. Just allow this as a constructor; we'll
1827 // complain about it later.
1828 goto DoneWithDeclSpec;
1829 }
1830
1831 // The user meant this to name a type, but it actually names
1832 // a constructor with some extraneous template
1833 // arguments. Complain, then parse it as a type as the user
1834 // intended.
1835 Diag(TemplateId->TemplateNameLoc,
1836 diag::err_out_of_line_template_id_names_constructor)
1837 << TemplateId->Name;
1838 }
1839
John McCallaa87d332009-12-12 11:40:51 +00001840 DS.getTypeSpecScope() = SS;
1841 ConsumeToken(); // The C++ scope.
Mike Stump1eb44332009-09-09 15:08:12 +00001842 assert(Tok.is(tok::annot_template_id) &&
Douglas Gregor9135c722009-03-25 15:40:00 +00001843 "ParseOptionalCXXScopeSpecifier not working");
Douglas Gregor059101f2011-03-02 00:47:37 +00001844 AnnotateTemplateIdTokenAsType();
Douglas Gregor9135c722009-03-25 15:40:00 +00001845 continue;
1846 }
1847
Douglas Gregor9d7b3532009-09-28 07:26:33 +00001848 if (Next.is(tok::annot_typename)) {
John McCallaa87d332009-12-12 11:40:51 +00001849 DS.getTypeSpecScope() = SS;
1850 ConsumeToken(); // The C++ scope.
John McCallb3d87482010-08-24 05:47:05 +00001851 if (Tok.getAnnotationValue()) {
1852 ParsedType T = getTypeAnnotation(Tok);
Nico Weber253e80b2010-11-22 10:30:56 +00001853 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename,
1854 Tok.getAnnotationEndLoc(),
John McCallb3d87482010-08-24 05:47:05 +00001855 PrevSpec, DiagID, T);
1856 }
Douglas Gregor9d7b3532009-09-28 07:26:33 +00001857 else
1858 DS.SetTypeSpecError();
1859 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
1860 ConsumeToken(); // The typename
1861 }
1862
Douglas Gregor9135c722009-03-25 15:40:00 +00001863 if (Next.isNot(tok::identifier))
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001864 goto DoneWithDeclSpec;
1865
Douglas Gregor0efc2c12010-01-13 17:31:36 +00001866 // If we're in a context where the identifier could be a class name,
1867 // check whether this is a constructor declaration.
John McCallba9d8532010-04-13 06:39:49 +00001868 if ((DSContext == DSC_top_level ||
1869 (DSContext == DSC_class && DS.isFriendSpecified())) &&
Douglas Gregor23c94db2010-07-02 17:43:08 +00001870 Actions.isCurrentClassName(*Next.getIdentifierInfo(), getCurScope(),
Douglas Gregor0efc2c12010-01-13 17:31:36 +00001871 &SS)) {
1872 if (isConstructorDeclarator())
1873 goto DoneWithDeclSpec;
1874
1875 // As noted in C++ [class.qual]p2 (cited above), when the name
1876 // of the class is qualified in a context where it could name
1877 // a constructor, its a constructor name. However, we've
1878 // looked at the declarator, and the user probably meant this
1879 // to be a type. Complain that it isn't supposed to be treated
1880 // as a type, then proceed to parse it as a type.
1881 Diag(Next.getLocation(), diag::err_out_of_line_type_names_constructor)
1882 << Next.getIdentifierInfo();
1883 }
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001884
John McCallb3d87482010-08-24 05:47:05 +00001885 ParsedType TypeRep = Actions.getTypeName(*Next.getIdentifierInfo(),
1886 Next.getLocation(),
Douglas Gregor9e876872011-03-01 18:12:44 +00001887 getCurScope(), &SS,
1888 false, false, ParsedType(),
Abramo Bagnarafad03b72012-01-27 08:46:19 +00001889 /*IsCtorOrDtorName=*/false,
Douglas Gregor9e876872011-03-01 18:12:44 +00001890 /*NonTrivialSourceInfo=*/true);
Douglas Gregor55f6b142009-02-09 18:46:07 +00001891
Chris Lattnerf4382f52009-04-14 22:17:06 +00001892 // If the referenced identifier is not a type, then this declspec is
1893 // erroneous: We already checked about that it has no type specifier, and
1894 // C++ doesn't have implicit int. Diagnose it as a typo w.r.t. to the
Mike Stump1eb44332009-09-09 15:08:12 +00001895 // typename.
Chris Lattnerf4382f52009-04-14 22:17:06 +00001896 if (TypeRep == 0) {
1897 ConsumeToken(); // Eat the scope spec so the identifier is current.
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001898 if (ParseImplicitInt(DS, &SS, TemplateInfo, AS)) continue;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001899 goto DoneWithDeclSpec;
Chris Lattnerf4382f52009-04-14 22:17:06 +00001900 }
Mike Stump1eb44332009-09-09 15:08:12 +00001901
John McCallaa87d332009-12-12 11:40:51 +00001902 DS.getTypeSpecScope() = SS;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001903 ConsumeToken(); // The C++ scope.
1904
Douglas Gregor1a51b4a2009-02-09 15:09:02 +00001905 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
John McCallfec54012009-08-03 20:12:06 +00001906 DiagID, TypeRep);
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001907 if (isInvalid)
1908 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001909
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001910 DS.SetRangeEnd(Tok.getLocation());
1911 ConsumeToken(); // The typename.
1912
1913 continue;
1914 }
Mike Stump1eb44332009-09-09 15:08:12 +00001915
Chris Lattner80d0c892009-01-21 19:48:37 +00001916 case tok::annot_typename: {
John McCallb3d87482010-08-24 05:47:05 +00001917 if (Tok.getAnnotationValue()) {
1918 ParsedType T = getTypeAnnotation(Tok);
Nico Weberc43271e2010-11-22 12:50:03 +00001919 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
John McCallb3d87482010-08-24 05:47:05 +00001920 DiagID, T);
1921 } else
Douglas Gregor31a19b62009-04-01 21:51:26 +00001922 DS.SetTypeSpecError();
Chris Lattner5c5db552010-04-05 18:18:31 +00001923
1924 if (isInvalid)
1925 break;
1926
Chris Lattner80d0c892009-01-21 19:48:37 +00001927 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
1928 ConsumeToken(); // The typename
Mike Stump1eb44332009-09-09 15:08:12 +00001929
Chris Lattner80d0c892009-01-21 19:48:37 +00001930 // Objective-C supports syntax of the form 'id<proto1,proto2>' where 'id'
1931 // is a specific typedef and 'itf<proto1,proto2>' where 'itf' is an
Douglas Gregor9bd1d8d2010-10-21 23:17:00 +00001932 // Objective-C interface.
David Blaikie4e4d0842012-03-11 07:00:24 +00001933 if (Tok.is(tok::less) && getLangOpts().ObjC1)
Douglas Gregor9bd1d8d2010-10-21 23:17:00 +00001934 ParseObjCProtocolQualifiers(DS);
1935
Chris Lattner80d0c892009-01-21 19:48:37 +00001936 continue;
1937 }
Mike Stump1eb44332009-09-09 15:08:12 +00001938
Douglas Gregorbfad9152011-04-28 15:48:45 +00001939 case tok::kw___is_signed:
1940 // GNU libstdc++ 4.4 uses __is_signed as an identifier, but Clang
1941 // typically treats it as a trait. If we see __is_signed as it appears
1942 // in libstdc++, e.g.,
1943 //
1944 // static const bool __is_signed;
1945 //
1946 // then treat __is_signed as an identifier rather than as a keyword.
1947 if (DS.getTypeSpecType() == TST_bool &&
1948 DS.getTypeQualifiers() == DeclSpec::TQ_const &&
1949 DS.getStorageClassSpec() == DeclSpec::SCS_static) {
1950 Tok.getIdentifierInfo()->RevertTokenIDToIdentifier();
1951 Tok.setKind(tok::identifier);
1952 }
1953
1954 // We're done with the declaration-specifiers.
1955 goto DoneWithDeclSpec;
1956
Chris Lattner3bd934a2008-07-26 01:18:38 +00001957 // typedef-name
David Blaikie42d6d0c2011-12-04 05:04:18 +00001958 case tok::kw_decltype:
Chris Lattner3bd934a2008-07-26 01:18:38 +00001959 case tok::identifier: {
Chris Lattner5e02c472009-01-05 00:07:25 +00001960 // In C++, check to see if this is a scope specifier like foo::bar::, if
1961 // so handle it as such. This is important for ctor parsing.
David Blaikie4e4d0842012-03-11 07:00:24 +00001962 if (getLangOpts().CPlusPlus) {
John McCall9ba61662010-02-26 08:45:28 +00001963 if (TryAnnotateCXXScopeToken(true)) {
1964 if (!DS.hasTypeSpecifier())
1965 DS.SetTypeSpecError();
1966 goto DoneWithDeclSpec;
1967 }
1968 if (!Tok.is(tok::identifier))
1969 continue;
1970 }
Mike Stump1eb44332009-09-09 15:08:12 +00001971
Chris Lattner3bd934a2008-07-26 01:18:38 +00001972 // This identifier can only be a typedef name if we haven't already seen
1973 // a type-specifier. Without this check we misparse:
1974 // typedef int X; struct Y { short X; }; as 'short int'.
1975 if (DS.hasTypeSpecifier())
1976 goto DoneWithDeclSpec;
Mike Stump1eb44332009-09-09 15:08:12 +00001977
John Thompson82287d12010-02-05 00:12:22 +00001978 // Check for need to substitute AltiVec keyword tokens.
1979 if (TryAltiVecToken(DS, Loc, PrevSpec, DiagID, isInvalid))
1980 break;
1981
Chris Lattner3bd934a2008-07-26 01:18:38 +00001982 // It has to be available as a typedef too!
John McCallb3d87482010-08-24 05:47:05 +00001983 ParsedType TypeRep =
1984 Actions.getTypeName(*Tok.getIdentifierInfo(),
1985 Tok.getLocation(), getCurScope());
Douglas Gregor55f6b142009-02-09 18:46:07 +00001986
Chris Lattnerc199ab32009-04-12 20:42:31 +00001987 // If this is not a typedef name, don't parse it as part of the declspec,
1988 // it must be an implicit int or an error.
John McCallb3d87482010-08-24 05:47:05 +00001989 if (!TypeRep) {
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001990 if (ParseImplicitInt(DS, 0, TemplateInfo, AS)) continue;
Chris Lattner3bd934a2008-07-26 01:18:38 +00001991 goto DoneWithDeclSpec;
Chris Lattnerc199ab32009-04-12 20:42:31 +00001992 }
Douglas Gregor55f6b142009-02-09 18:46:07 +00001993
Douglas Gregor0efc2c12010-01-13 17:31:36 +00001994 // If we're in a context where the identifier could be a class name,
1995 // check whether this is a constructor declaration.
David Blaikie4e4d0842012-03-11 07:00:24 +00001996 if (getLangOpts().CPlusPlus && DSContext == DSC_class &&
Douglas Gregor23c94db2010-07-02 17:43:08 +00001997 Actions.isCurrentClassName(*Tok.getIdentifierInfo(), getCurScope()) &&
Douglas Gregor0efc2c12010-01-13 17:31:36 +00001998 isConstructorDeclarator())
Douglas Gregorb48fe382008-10-31 09:07:45 +00001999 goto DoneWithDeclSpec;
2000
Douglas Gregor1a51b4a2009-02-09 15:09:02 +00002001 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
John McCallfec54012009-08-03 20:12:06 +00002002 DiagID, TypeRep);
Chris Lattner3bd934a2008-07-26 01:18:38 +00002003 if (isInvalid)
2004 break;
Mike Stump1eb44332009-09-09 15:08:12 +00002005
Chris Lattner3bd934a2008-07-26 01:18:38 +00002006 DS.SetRangeEnd(Tok.getLocation());
2007 ConsumeToken(); // The identifier
2008
2009 // Objective-C supports syntax of the form 'id<proto1,proto2>' where 'id'
2010 // is a specific typedef and 'itf<proto1,proto2>' where 'itf' is an
Douglas Gregor9bd1d8d2010-10-21 23:17:00 +00002011 // Objective-C interface.
David Blaikie4e4d0842012-03-11 07:00:24 +00002012 if (Tok.is(tok::less) && getLangOpts().ObjC1)
Douglas Gregor9bd1d8d2010-10-21 23:17:00 +00002013 ParseObjCProtocolQualifiers(DS);
2014
Steve Naroff4f9b9f12008-09-22 10:28:57 +00002015 // Need to support trailing type qualifiers (e.g. "id<p> const").
2016 // If a type specifier follows, it will be diagnosed elsewhere.
2017 continue;
Chris Lattner3bd934a2008-07-26 01:18:38 +00002018 }
Douglas Gregor39a8de12009-02-25 19:37:18 +00002019
2020 // type-name
2021 case tok::annot_template_id: {
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +00002022 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregorc45c2322009-03-31 00:43:58 +00002023 if (TemplateId->Kind != TNK_Type_template) {
Douglas Gregor39a8de12009-02-25 19:37:18 +00002024 // This template-id does not refer to a type name, so we're
2025 // done with the type-specifiers.
2026 goto DoneWithDeclSpec;
2027 }
2028
Douglas Gregor0efc2c12010-01-13 17:31:36 +00002029 // If we're in a context where the template-id could be a
2030 // constructor name or specialization, check whether this is a
2031 // constructor declaration.
David Blaikie4e4d0842012-03-11 07:00:24 +00002032 if (getLangOpts().CPlusPlus && DSContext == DSC_class &&
Douglas Gregor23c94db2010-07-02 17:43:08 +00002033 Actions.isCurrentClassName(*TemplateId->Name, getCurScope()) &&
Douglas Gregor0efc2c12010-01-13 17:31:36 +00002034 isConstructorDeclarator())
2035 goto DoneWithDeclSpec;
2036
Douglas Gregor39a8de12009-02-25 19:37:18 +00002037 // Turn the template-id annotation token into a type annotation
2038 // token, then try again to parse it as a type-specifier.
Douglas Gregor31a19b62009-04-01 21:51:26 +00002039 AnnotateTemplateIdTokenAsType();
Douglas Gregor39a8de12009-02-25 19:37:18 +00002040 continue;
2041 }
2042
Reid Spencer5f016e22007-07-11 17:01:13 +00002043 // GNU attributes support.
2044 case tok::kw___attribute:
DeLesley Hutchins2287c5e2012-03-02 22:12:59 +00002045 ParseGNUAttributes(DS.getAttributes(), 0, LateAttrs);
Reid Spencer5f016e22007-07-11 17:01:13 +00002046 continue;
Steve Narofff59e17e2008-12-24 20:59:21 +00002047
2048 // Microsoft declspec support.
2049 case tok::kw___declspec:
John McCall7f040a92010-12-24 02:08:15 +00002050 ParseMicrosoftDeclSpec(DS.getAttributes());
Steve Narofff59e17e2008-12-24 20:59:21 +00002051 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00002052
Steve Naroff239f0732008-12-25 14:16:32 +00002053 // Microsoft single token adornments.
Steve Naroff86bc6cf2008-12-25 14:41:26 +00002054 case tok::kw___forceinline:
Eli Friedman290eeb02009-06-08 23:27:34 +00002055 // FIXME: Add handling here!
2056 break;
2057
2058 case tok::kw___ptr64:
Francois Pichet58fd97a2011-08-25 00:36:46 +00002059 case tok::kw___ptr32:
Steve Naroff86bc6cf2008-12-25 14:41:26 +00002060 case tok::kw___w64:
Steve Naroff239f0732008-12-25 14:16:32 +00002061 case tok::kw___cdecl:
2062 case tok::kw___stdcall:
2063 case tok::kw___fastcall:
Douglas Gregorf813a2c2010-05-18 16:57:00 +00002064 case tok::kw___thiscall:
Francois Pichet3bd9aa42011-08-18 09:59:55 +00002065 case tok::kw___unaligned:
John McCall7f040a92010-12-24 02:08:15 +00002066 ParseMicrosoftTypeAttributes(DS.getAttributes());
Eli Friedman290eeb02009-06-08 23:27:34 +00002067 continue;
2068
Dawn Perchik52fc3142010-09-03 01:29:35 +00002069 // Borland single token adornments.
2070 case tok::kw___pascal:
John McCall7f040a92010-12-24 02:08:15 +00002071 ParseBorlandTypeAttributes(DS.getAttributes());
Dawn Perchik52fc3142010-09-03 01:29:35 +00002072 continue;
2073
Peter Collingbournef315fa82011-02-14 01:42:53 +00002074 // OpenCL single token adornments.
2075 case tok::kw___kernel:
2076 ParseOpenCLAttributes(DS.getAttributes());
2077 continue;
2078
Reid Spencer5f016e22007-07-11 17:01:13 +00002079 // storage-class-specifier
2080 case tok::kw_typedef:
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00002081 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_typedef, Loc,
2082 PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +00002083 break;
2084 case tok::kw_extern:
2085 if (DS.isThreadSpecified())
Chris Lattner1ab3b962008-11-18 07:48:38 +00002086 Diag(Tok, diag::ext_thread_before) << "extern";
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00002087 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_extern, Loc,
2088 PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +00002089 break;
Steve Naroff8d54bf22007-12-18 00:16:02 +00002090 case tok::kw___private_extern__:
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00002091 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_private_extern,
2092 Loc, PrevSpec, DiagID);
Steve Naroff8d54bf22007-12-18 00:16:02 +00002093 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00002094 case tok::kw_static:
2095 if (DS.isThreadSpecified())
Chris Lattner1ab3b962008-11-18 07:48:38 +00002096 Diag(Tok, diag::ext_thread_before) << "static";
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00002097 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_static, Loc,
2098 PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +00002099 break;
2100 case tok::kw_auto:
David Blaikie4e4d0842012-03-11 07:00:24 +00002101 if (getLangOpts().CPlusPlus0x) {
Fariborz Jahanian12e3ece2011-02-22 23:17:49 +00002102 if (isKnownToBeTypeSpecifier(GetLookAheadToken(1))) {
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00002103 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_auto, Loc,
2104 PrevSpec, DiagID);
Fariborz Jahanian12e3ece2011-02-22 23:17:49 +00002105 if (!isInvalid)
Richard Smith8f4fb192011-09-04 19:54:14 +00002106 Diag(Tok, diag::ext_auto_storage_class)
Fariborz Jahanian12e3ece2011-02-22 23:17:49 +00002107 << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc());
Richard Smith8f4fb192011-09-04 19:54:14 +00002108 } else
Fariborz Jahanian12e3ece2011-02-22 23:17:49 +00002109 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_auto, Loc, PrevSpec,
2110 DiagID);
Richard Smith8f4fb192011-09-04 19:54:14 +00002111 } else
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00002112 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_auto, Loc,
2113 PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +00002114 break;
2115 case tok::kw_register:
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00002116 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_register, Loc,
2117 PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +00002118 break;
Sebastian Redl669d5d72008-11-14 23:42:31 +00002119 case tok::kw_mutable:
Peter Collingbourneb8b0e752011-10-06 03:01:00 +00002120 isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_mutable, Loc,
2121 PrevSpec, DiagID);
Sebastian Redl669d5d72008-11-14 23:42:31 +00002122 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00002123 case tok::kw___thread:
John McCallfec54012009-08-03 20:12:06 +00002124 isInvalid = DS.SetStorageClassSpecThread(Loc, PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +00002125 break;
Mike Stump1eb44332009-09-09 15:08:12 +00002126
Reid Spencer5f016e22007-07-11 17:01:13 +00002127 // function-specifier
2128 case tok::kw_inline:
John McCallfec54012009-08-03 20:12:06 +00002129 isInvalid = DS.SetFunctionSpecInline(Loc, PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +00002130 break;
Douglas Gregorb48fe382008-10-31 09:07:45 +00002131 case tok::kw_virtual:
John McCallfec54012009-08-03 20:12:06 +00002132 isInvalid = DS.SetFunctionSpecVirtual(Loc, PrevSpec, DiagID);
Douglas Gregorb48fe382008-10-31 09:07:45 +00002133 break;
Douglas Gregorb48fe382008-10-31 09:07:45 +00002134 case tok::kw_explicit:
John McCallfec54012009-08-03 20:12:06 +00002135 isInvalid = DS.SetFunctionSpecExplicit(Loc, PrevSpec, DiagID);
Douglas Gregorb48fe382008-10-31 09:07:45 +00002136 break;
Chris Lattner80d0c892009-01-21 19:48:37 +00002137
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002138 // alignment-specifier
2139 case tok::kw__Alignas:
David Blaikie4e4d0842012-03-11 07:00:24 +00002140 if (!getLangOpts().C11)
Benjamin Kramerffbe9b92011-12-23 17:00:35 +00002141 Diag(Tok, diag::ext_c11_alignas);
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002142 ParseAlignmentSpecifier(DS.getAttributes());
2143 continue;
2144
Anders Carlssonf47f7a12009-05-06 04:46:28 +00002145 // friend
2146 case tok::kw_friend:
John McCall67d1a672009-08-06 02:15:43 +00002147 if (DSContext == DSC_class)
2148 isInvalid = DS.SetFriendSpec(Loc, PrevSpec, DiagID);
2149 else {
2150 PrevSpec = ""; // not actually used by the diagnostic
2151 DiagID = diag::err_friend_invalid_in_context;
2152 isInvalid = true;
2153 }
Anders Carlssonf47f7a12009-05-06 04:46:28 +00002154 break;
Mike Stump1eb44332009-09-09 15:08:12 +00002155
Douglas Gregor8d267c52011-09-09 02:06:17 +00002156 // Modules
2157 case tok::kw___module_private__:
2158 isInvalid = DS.setModulePrivateSpec(Loc, PrevSpec, DiagID);
2159 break;
2160
Sebastian Redl2ac67232009-11-05 15:47:02 +00002161 // constexpr
2162 case tok::kw_constexpr:
2163 isInvalid = DS.SetConstexprSpec(Loc, PrevSpec, DiagID);
2164 break;
2165
Chris Lattner80d0c892009-01-21 19:48:37 +00002166 // type-specifier
2167 case tok::kw_short:
John McCallfec54012009-08-03 20:12:06 +00002168 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_short, Loc, PrevSpec,
2169 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002170 break;
2171 case tok::kw_long:
2172 if (DS.getTypeSpecWidth() != DeclSpec::TSW_long)
John McCallfec54012009-08-03 20:12:06 +00002173 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_long, Loc, PrevSpec,
2174 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002175 else
John McCallfec54012009-08-03 20:12:06 +00002176 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_longlong, Loc, PrevSpec,
2177 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002178 break;
Francois Pichet338d7f72011-04-28 01:59:37 +00002179 case tok::kw___int64:
2180 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_longlong, Loc, PrevSpec,
2181 DiagID);
2182 break;
Chris Lattner80d0c892009-01-21 19:48:37 +00002183 case tok::kw_signed:
John McCallfec54012009-08-03 20:12:06 +00002184 isInvalid = DS.SetTypeSpecSign(DeclSpec::TSS_signed, Loc, PrevSpec,
2185 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002186 break;
2187 case tok::kw_unsigned:
John McCallfec54012009-08-03 20:12:06 +00002188 isInvalid = DS.SetTypeSpecSign(DeclSpec::TSS_unsigned, Loc, PrevSpec,
2189 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002190 break;
2191 case tok::kw__Complex:
John McCallfec54012009-08-03 20:12:06 +00002192 isInvalid = DS.SetTypeSpecComplex(DeclSpec::TSC_complex, Loc, PrevSpec,
2193 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002194 break;
2195 case tok::kw__Imaginary:
John McCallfec54012009-08-03 20:12:06 +00002196 isInvalid = DS.SetTypeSpecComplex(DeclSpec::TSC_imaginary, Loc, PrevSpec,
2197 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002198 break;
2199 case tok::kw_void:
John McCallfec54012009-08-03 20:12:06 +00002200 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_void, Loc, PrevSpec,
2201 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002202 break;
2203 case tok::kw_char:
John McCallfec54012009-08-03 20:12:06 +00002204 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char, Loc, PrevSpec,
2205 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002206 break;
2207 case tok::kw_int:
John McCallfec54012009-08-03 20:12:06 +00002208 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, PrevSpec,
2209 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002210 break;
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +00002211 case tok::kw_half:
2212 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_half, Loc, PrevSpec,
2213 DiagID);
2214 break;
Chris Lattner80d0c892009-01-21 19:48:37 +00002215 case tok::kw_float:
John McCallfec54012009-08-03 20:12:06 +00002216 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_float, Loc, PrevSpec,
2217 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002218 break;
2219 case tok::kw_double:
John McCallfec54012009-08-03 20:12:06 +00002220 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_double, Loc, PrevSpec,
2221 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002222 break;
2223 case tok::kw_wchar_t:
John McCallfec54012009-08-03 20:12:06 +00002224 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_wchar, Loc, PrevSpec,
2225 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002226 break;
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00002227 case tok::kw_char16_t:
John McCallfec54012009-08-03 20:12:06 +00002228 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char16, Loc, PrevSpec,
2229 DiagID);
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00002230 break;
2231 case tok::kw_char32_t:
John McCallfec54012009-08-03 20:12:06 +00002232 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char32, Loc, PrevSpec,
2233 DiagID);
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00002234 break;
Chris Lattner80d0c892009-01-21 19:48:37 +00002235 case tok::kw_bool:
2236 case tok::kw__Bool:
Argyrios Kyrtzidis4383e182010-11-16 18:18:13 +00002237 if (Tok.is(tok::kw_bool) &&
2238 DS.getTypeSpecType() != DeclSpec::TST_unspecified &&
2239 DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
2240 PrevSpec = ""; // Not used by the diagnostic.
2241 DiagID = diag::err_bool_redeclaration;
Fariborz Jahaniane106a0b2011-04-19 21:42:37 +00002242 // For better error recovery.
2243 Tok.setKind(tok::identifier);
Argyrios Kyrtzidis4383e182010-11-16 18:18:13 +00002244 isInvalid = true;
2245 } else {
2246 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_bool, Loc, PrevSpec,
2247 DiagID);
2248 }
Chris Lattner80d0c892009-01-21 19:48:37 +00002249 break;
2250 case tok::kw__Decimal32:
John McCallfec54012009-08-03 20:12:06 +00002251 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal32, Loc, PrevSpec,
2252 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002253 break;
2254 case tok::kw__Decimal64:
John McCallfec54012009-08-03 20:12:06 +00002255 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal64, Loc, PrevSpec,
2256 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002257 break;
2258 case tok::kw__Decimal128:
John McCallfec54012009-08-03 20:12:06 +00002259 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal128, Loc, PrevSpec,
2260 DiagID);
Chris Lattner80d0c892009-01-21 19:48:37 +00002261 break;
John Thompson82287d12010-02-05 00:12:22 +00002262 case tok::kw___vector:
2263 isInvalid = DS.SetTypeAltiVecVector(true, Loc, PrevSpec, DiagID);
2264 break;
2265 case tok::kw___pixel:
2266 isInvalid = DS.SetTypeAltiVecPixel(true, Loc, PrevSpec, DiagID);
2267 break;
John McCalla5fc4722011-04-09 22:50:59 +00002268 case tok::kw___unknown_anytype:
2269 isInvalid = DS.SetTypeSpecType(TST_unknown_anytype, Loc,
2270 PrevSpec, DiagID);
2271 break;
Chris Lattner80d0c892009-01-21 19:48:37 +00002272
2273 // class-specifier:
2274 case tok::kw_class:
2275 case tok::kw_struct:
Chris Lattner4c97d762009-04-12 21:49:30 +00002276 case tok::kw_union: {
2277 tok::TokenKind Kind = Tok.getKind();
2278 ConsumeToken();
Douglas Gregorefaa93a2011-11-07 17:33:42 +00002279 ParseClassSpecifier(Kind, Loc, DS, TemplateInfo, AS, EnteringContext);
Chris Lattner80d0c892009-01-21 19:48:37 +00002280 continue;
Chris Lattner4c97d762009-04-12 21:49:30 +00002281 }
Chris Lattner80d0c892009-01-21 19:48:37 +00002282
2283 // enum-specifier:
2284 case tok::kw_enum:
Chris Lattner4c97d762009-04-12 21:49:30 +00002285 ConsumeToken();
Douglas Gregor9b9edd62010-03-02 17:53:14 +00002286 ParseEnumSpecifier(Loc, DS, TemplateInfo, AS);
Chris Lattner80d0c892009-01-21 19:48:37 +00002287 continue;
2288
2289 // cv-qualifier:
2290 case tok::kw_const:
John McCallfec54012009-08-03 20:12:06 +00002291 isInvalid = DS.SetTypeQual(DeclSpec::TQ_const, Loc, PrevSpec, DiagID,
David Blaikie4e4d0842012-03-11 07:00:24 +00002292 getLangOpts());
Chris Lattner80d0c892009-01-21 19:48:37 +00002293 break;
2294 case tok::kw_volatile:
John McCallfec54012009-08-03 20:12:06 +00002295 isInvalid = DS.SetTypeQual(DeclSpec::TQ_volatile, Loc, PrevSpec, DiagID,
David Blaikie4e4d0842012-03-11 07:00:24 +00002296 getLangOpts());
Chris Lattner80d0c892009-01-21 19:48:37 +00002297 break;
2298 case tok::kw_restrict:
John McCallfec54012009-08-03 20:12:06 +00002299 isInvalid = DS.SetTypeQual(DeclSpec::TQ_restrict, Loc, PrevSpec, DiagID,
David Blaikie4e4d0842012-03-11 07:00:24 +00002300 getLangOpts());
Chris Lattner80d0c892009-01-21 19:48:37 +00002301 break;
2302
Douglas Gregord57959a2009-03-27 23:10:48 +00002303 // C++ typename-specifier:
2304 case tok::kw_typename:
John McCall9ba61662010-02-26 08:45:28 +00002305 if (TryAnnotateTypeOrScopeToken()) {
2306 DS.SetTypeSpecError();
2307 goto DoneWithDeclSpec;
2308 }
2309 if (!Tok.is(tok::kw_typename))
Douglas Gregord57959a2009-03-27 23:10:48 +00002310 continue;
2311 break;
2312
Chris Lattner80d0c892009-01-21 19:48:37 +00002313 // GNU typeof support.
2314 case tok::kw_typeof:
2315 ParseTypeofSpecifier(DS);
2316 continue;
2317
David Blaikie42d6d0c2011-12-04 05:04:18 +00002318 case tok::annot_decltype:
Anders Carlsson6fd634f2009-06-24 17:47:40 +00002319 ParseDecltypeSpecifier(DS);
2320 continue;
2321
Sean Huntdb5d44b2011-05-19 05:37:45 +00002322 case tok::kw___underlying_type:
2323 ParseUnderlyingTypeSpecifier(DS);
Eli Friedmanb001de72011-10-06 23:00:33 +00002324 continue;
2325
2326 case tok::kw__Atomic:
2327 ParseAtomicSpecifier(DS);
2328 continue;
Sean Huntdb5d44b2011-05-19 05:37:45 +00002329
Peter Collingbourne207f4d82011-03-18 22:38:29 +00002330 // OpenCL qualifiers:
2331 case tok::kw_private:
David Blaikie4e4d0842012-03-11 07:00:24 +00002332 if (!getLangOpts().OpenCL)
Peter Collingbourne207f4d82011-03-18 22:38:29 +00002333 goto DoneWithDeclSpec;
2334 case tok::kw___private:
2335 case tok::kw___global:
2336 case tok::kw___local:
2337 case tok::kw___constant:
2338 case tok::kw___read_only:
2339 case tok::kw___write_only:
2340 case tok::kw___read_write:
2341 ParseOpenCLQualifiers(DS);
2342 break;
2343
Steve Naroffd3ded1f2008-06-05 00:02:44 +00002344 case tok::less:
Chris Lattner3bd934a2008-07-26 01:18:38 +00002345 // GCC ObjC supports types like "<SomeProtocol>" as a synonym for
Chris Lattnerbce61352008-07-26 00:20:22 +00002346 // "id<SomeProtocol>". This is hopelessly old fashioned and dangerous,
2347 // but we support it.
David Blaikie4e4d0842012-03-11 07:00:24 +00002348 if (DS.hasTypeSpecifier() || !getLangOpts().ObjC1)
Chris Lattnerbce61352008-07-26 00:20:22 +00002349 goto DoneWithDeclSpec;
Mike Stump1eb44332009-09-09 15:08:12 +00002350
Douglas Gregor46f936e2010-11-19 17:10:50 +00002351 if (!ParseObjCProtocolQualifiers(DS))
2352 Diag(Loc, diag::warn_objc_protocol_qualifier_missing_id)
2353 << FixItHint::CreateInsertion(Loc, "id")
2354 << SourceRange(Loc, DS.getSourceRange().getEnd());
Douglas Gregor9bd1d8d2010-10-21 23:17:00 +00002355
2356 // Need to support trailing type qualifiers (e.g. "id<p> const").
2357 // If a type specifier follows, it will be diagnosed elsewhere.
2358 continue;
Reid Spencer5f016e22007-07-11 17:01:13 +00002359 }
John McCallfec54012009-08-03 20:12:06 +00002360 // If the specifier wasn't legal, issue a diagnostic.
Reid Spencer5f016e22007-07-11 17:01:13 +00002361 if (isInvalid) {
2362 assert(PrevSpec && "Method did not return previous specifier!");
John McCallfec54012009-08-03 20:12:06 +00002363 assert(DiagID);
Douglas Gregorae2fb142010-08-23 14:34:43 +00002364
2365 if (DiagID == diag::ext_duplicate_declspec)
2366 Diag(Tok, DiagID)
2367 << PrevSpec << FixItHint::CreateRemoval(Tok.getLocation());
2368 else
2369 Diag(Tok, DiagID) << PrevSpec;
Reid Spencer5f016e22007-07-11 17:01:13 +00002370 }
Fariborz Jahanian12e3ece2011-02-22 23:17:49 +00002371
Chris Lattner81c018d2008-03-13 06:29:04 +00002372 DS.SetRangeEnd(Tok.getLocation());
Fariborz Jahaniane106a0b2011-04-19 21:42:37 +00002373 if (DiagID != diag::err_bool_redeclaration)
2374 ConsumeToken();
Reid Spencer5f016e22007-07-11 17:01:13 +00002375 }
2376}
Douglas Gregoradcac882008-12-01 23:54:00 +00002377
Chris Lattner7a0ab5f2009-01-06 06:59:53 +00002378/// ParseOptionalTypeSpecifier - Try to parse a single type-specifier. We
Douglas Gregor12e083c2008-11-07 15:42:26 +00002379/// primarily follow the C++ grammar with additions for C99 and GNU,
2380/// which together subsume the C grammar. Note that the C++
2381/// type-specifier also includes the C type-qualifier (for const,
2382/// volatile, and C99 restrict). Returns true if a type-specifier was
2383/// found (and parsed), false otherwise.
2384///
2385/// type-specifier: [C++ 7.1.5]
2386/// simple-type-specifier
2387/// class-specifier
2388/// enum-specifier
2389/// elaborated-type-specifier [TODO]
2390/// cv-qualifier
2391///
2392/// cv-qualifier: [C++ 7.1.5.1]
2393/// 'const'
2394/// 'volatile'
2395/// [C99] 'restrict'
2396///
2397/// simple-type-specifier: [ C++ 7.1.5.2]
2398/// '::'[opt] nested-name-specifier[opt] type-name [TODO]
2399/// '::'[opt] nested-name-specifier 'template' template-id [TODO]
2400/// 'char'
2401/// 'wchar_t'
2402/// 'bool'
2403/// 'short'
2404/// 'int'
2405/// 'long'
2406/// 'signed'
2407/// 'unsigned'
2408/// 'float'
2409/// 'double'
2410/// 'void'
2411/// [C99] '_Bool'
2412/// [C99] '_Complex'
2413/// [C99] '_Imaginary' // Removed in TC2?
2414/// [GNU] '_Decimal32'
2415/// [GNU] '_Decimal64'
2416/// [GNU] '_Decimal128'
2417/// [GNU] typeof-specifier
2418/// [OBJC] class-name objc-protocol-refs[opt] [TODO]
2419/// [OBJC] typedef-name objc-protocol-refs[opt] [TODO]
Anders Carlsson6fd634f2009-06-24 17:47:40 +00002420/// [C++0x] 'decltype' ( expression )
John Thompson82287d12010-02-05 00:12:22 +00002421/// [AltiVec] '__vector'
John McCallfec54012009-08-03 20:12:06 +00002422bool Parser::ParseOptionalTypeSpecifier(DeclSpec &DS, bool& isInvalid,
Chris Lattner7a0ab5f2009-01-06 06:59:53 +00002423 const char *&PrevSpec,
John McCallfec54012009-08-03 20:12:06 +00002424 unsigned &DiagID,
Sebastian Redld9bafa72010-02-03 21:21:43 +00002425 const ParsedTemplateInfo &TemplateInfo,
2426 bool SuppressDeclarations) {
Douglas Gregor12e083c2008-11-07 15:42:26 +00002427 SourceLocation Loc = Tok.getLocation();
2428
2429 switch (Tok.getKind()) {
Chris Lattner166a8fc2009-01-04 23:41:41 +00002430 case tok::identifier: // foo::bar
Douglas Gregorc0b39642010-04-15 23:40:53 +00002431 // If we already have a type specifier, this identifier is not a type.
2432 if (DS.getTypeSpecType() != DeclSpec::TST_unspecified ||
2433 DS.getTypeSpecWidth() != DeclSpec::TSW_unspecified ||
2434 DS.getTypeSpecSign() != DeclSpec::TSS_unspecified)
2435 return false;
John Thompson82287d12010-02-05 00:12:22 +00002436 // Check for need to substitute AltiVec keyword tokens.
2437 if (TryAltiVecToken(DS, Loc, PrevSpec, DiagID, isInvalid))
2438 break;
2439 // Fall through.
David Blaikie42d6d0c2011-12-04 05:04:18 +00002440 case tok::kw_decltype:
Douglas Gregord57959a2009-03-27 23:10:48 +00002441 case tok::kw_typename: // typename foo::bar
Chris Lattner166a8fc2009-01-04 23:41:41 +00002442 // Annotate typenames and C++ scope specifiers. If we get one, just
2443 // recurse to handle whatever we get.
Kaelyn Uhrainfac94672011-10-11 01:02:41 +00002444 if (TryAnnotateTypeOrScopeToken(/*EnteringContext=*/false,
2445 /*NeedType=*/true))
John McCall9ba61662010-02-26 08:45:28 +00002446 return true;
2447 if (Tok.is(tok::identifier))
2448 return false;
2449 return ParseOptionalTypeSpecifier(DS, isInvalid, PrevSpec, DiagID,
2450 TemplateInfo, SuppressDeclarations);
Chris Lattner166a8fc2009-01-04 23:41:41 +00002451 case tok::coloncolon: // ::foo::bar
2452 if (NextToken().is(tok::kw_new) || // ::new
2453 NextToken().is(tok::kw_delete)) // ::delete
2454 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002455
Chris Lattner166a8fc2009-01-04 23:41:41 +00002456 // Annotate typenames and C++ scope specifiers. If we get one, just
2457 // recurse to handle whatever we get.
Kaelyn Uhrainfac94672011-10-11 01:02:41 +00002458 if (TryAnnotateTypeOrScopeToken(/*EnteringContext=*/false,
2459 /*NeedType=*/true))
John McCall9ba61662010-02-26 08:45:28 +00002460 return true;
2461 return ParseOptionalTypeSpecifier(DS, isInvalid, PrevSpec, DiagID,
2462 TemplateInfo, SuppressDeclarations);
Mike Stump1eb44332009-09-09 15:08:12 +00002463
Douglas Gregor12e083c2008-11-07 15:42:26 +00002464 // simple-type-specifier:
Chris Lattnerb31757b2009-01-06 05:06:21 +00002465 case tok::annot_typename: {
John McCallb3d87482010-08-24 05:47:05 +00002466 if (ParsedType T = getTypeAnnotation(Tok)) {
Nico Weber253e80b2010-11-22 10:30:56 +00002467 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename,
2468 Tok.getAnnotationEndLoc(), PrevSpec,
John McCallb3d87482010-08-24 05:47:05 +00002469 DiagID, T);
2470 } else
Douglas Gregor31a19b62009-04-01 21:51:26 +00002471 DS.SetTypeSpecError();
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002472 DS.SetRangeEnd(Tok.getAnnotationEndLoc());
2473 ConsumeToken(); // The typename
Mike Stump1eb44332009-09-09 15:08:12 +00002474
Douglas Gregor12e083c2008-11-07 15:42:26 +00002475 // Objective-C supports syntax of the form 'id<proto1,proto2>' where 'id'
2476 // is a specific typedef and 'itf<proto1,proto2>' where 'itf' is an
2477 // Objective-C interface. If we don't have Objective-C or a '<', this is
2478 // just a normal reference to a typedef name.
David Blaikie4e4d0842012-03-11 07:00:24 +00002479 if (Tok.is(tok::less) && getLangOpts().ObjC1)
Douglas Gregor9bd1d8d2010-10-21 23:17:00 +00002480 ParseObjCProtocolQualifiers(DS);
2481
Douglas Gregor12e083c2008-11-07 15:42:26 +00002482 return true;
2483 }
2484
2485 case tok::kw_short:
John McCallfec54012009-08-03 20:12:06 +00002486 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_short, Loc, PrevSpec, DiagID);
Douglas Gregor12e083c2008-11-07 15:42:26 +00002487 break;
2488 case tok::kw_long:
2489 if (DS.getTypeSpecWidth() != DeclSpec::TSW_long)
John McCallfec54012009-08-03 20:12:06 +00002490 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_long, Loc, PrevSpec,
2491 DiagID);
Douglas Gregor12e083c2008-11-07 15:42:26 +00002492 else
John McCallfec54012009-08-03 20:12:06 +00002493 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_longlong, Loc, PrevSpec,
2494 DiagID);
Douglas Gregor12e083c2008-11-07 15:42:26 +00002495 break;
Francois Pichet338d7f72011-04-28 01:59:37 +00002496 case tok::kw___int64:
2497 isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_longlong, Loc, PrevSpec,
2498 DiagID);
2499 break;
Douglas Gregor12e083c2008-11-07 15:42:26 +00002500 case tok::kw_signed:
John McCallfec54012009-08-03 20:12:06 +00002501 isInvalid = DS.SetTypeSpecSign(DeclSpec::TSS_signed, Loc, PrevSpec, DiagID);
Douglas Gregor12e083c2008-11-07 15:42:26 +00002502 break;
2503 case tok::kw_unsigned:
John McCallfec54012009-08-03 20:12:06 +00002504 isInvalid = DS.SetTypeSpecSign(DeclSpec::TSS_unsigned, Loc, PrevSpec,
2505 DiagID);
Douglas Gregor12e083c2008-11-07 15:42:26 +00002506 break;
2507 case tok::kw__Complex:
John McCallfec54012009-08-03 20:12:06 +00002508 isInvalid = DS.SetTypeSpecComplex(DeclSpec::TSC_complex, Loc, PrevSpec,
2509 DiagID);
Douglas Gregor12e083c2008-11-07 15:42:26 +00002510 break;
2511 case tok::kw__Imaginary:
John McCallfec54012009-08-03 20:12:06 +00002512 isInvalid = DS.SetTypeSpecComplex(DeclSpec::TSC_imaginary, Loc, PrevSpec,
2513 DiagID);
Douglas Gregor12e083c2008-11-07 15:42:26 +00002514 break;
2515 case tok::kw_void:
John McCallfec54012009-08-03 20:12:06 +00002516 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_void, Loc, PrevSpec, DiagID);
Douglas Gregor12e083c2008-11-07 15:42:26 +00002517 break;
2518 case tok::kw_char:
John McCallfec54012009-08-03 20:12:06 +00002519 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char, Loc, PrevSpec, DiagID);
Douglas Gregor12e083c2008-11-07 15:42:26 +00002520 break;
2521 case tok::kw_int:
John McCallfec54012009-08-03 20:12:06 +00002522 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, PrevSpec, DiagID);
Douglas Gregor12e083c2008-11-07 15:42:26 +00002523 break;
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +00002524 case tok::kw_half:
2525 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_half, Loc, PrevSpec, DiagID);
2526 break;
Douglas Gregor12e083c2008-11-07 15:42:26 +00002527 case tok::kw_float:
John McCallfec54012009-08-03 20:12:06 +00002528 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_float, Loc, PrevSpec, DiagID);
Douglas Gregor12e083c2008-11-07 15:42:26 +00002529 break;
2530 case tok::kw_double:
John McCallfec54012009-08-03 20:12:06 +00002531 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_double, Loc, PrevSpec, DiagID);
Douglas Gregor12e083c2008-11-07 15:42:26 +00002532 break;
2533 case tok::kw_wchar_t:
John McCallfec54012009-08-03 20:12:06 +00002534 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_wchar, Loc, PrevSpec, DiagID);
Douglas Gregor12e083c2008-11-07 15:42:26 +00002535 break;
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00002536 case tok::kw_char16_t:
John McCallfec54012009-08-03 20:12:06 +00002537 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char16, Loc, PrevSpec, DiagID);
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00002538 break;
2539 case tok::kw_char32_t:
John McCallfec54012009-08-03 20:12:06 +00002540 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char32, Loc, PrevSpec, DiagID);
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00002541 break;
Douglas Gregor12e083c2008-11-07 15:42:26 +00002542 case tok::kw_bool:
2543 case tok::kw__Bool:
John McCallfec54012009-08-03 20:12:06 +00002544 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_bool, Loc, PrevSpec, DiagID);
Douglas Gregor12e083c2008-11-07 15:42:26 +00002545 break;
2546 case tok::kw__Decimal32:
John McCallfec54012009-08-03 20:12:06 +00002547 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal32, Loc, PrevSpec,
2548 DiagID);
Douglas Gregor12e083c2008-11-07 15:42:26 +00002549 break;
2550 case tok::kw__Decimal64:
John McCallfec54012009-08-03 20:12:06 +00002551 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal64, Loc, PrevSpec,
2552 DiagID);
Douglas Gregor12e083c2008-11-07 15:42:26 +00002553 break;
2554 case tok::kw__Decimal128:
John McCallfec54012009-08-03 20:12:06 +00002555 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal128, Loc, PrevSpec,
2556 DiagID);
Douglas Gregor12e083c2008-11-07 15:42:26 +00002557 break;
John Thompson82287d12010-02-05 00:12:22 +00002558 case tok::kw___vector:
2559 isInvalid = DS.SetTypeAltiVecVector(true, Loc, PrevSpec, DiagID);
2560 break;
2561 case tok::kw___pixel:
2562 isInvalid = DS.SetTypeAltiVecPixel(true, Loc, PrevSpec, DiagID);
2563 break;
2564
Douglas Gregor12e083c2008-11-07 15:42:26 +00002565 // class-specifier:
2566 case tok::kw_class:
2567 case tok::kw_struct:
Chris Lattner4c97d762009-04-12 21:49:30 +00002568 case tok::kw_union: {
2569 tok::TokenKind Kind = Tok.getKind();
2570 ConsumeToken();
Sebastian Redld9bafa72010-02-03 21:21:43 +00002571 ParseClassSpecifier(Kind, Loc, DS, TemplateInfo, AS_none,
Douglas Gregorefaa93a2011-11-07 17:33:42 +00002572 /*EnteringContext=*/false,
Sebastian Redld9bafa72010-02-03 21:21:43 +00002573 SuppressDeclarations);
Douglas Gregor12e083c2008-11-07 15:42:26 +00002574 return true;
Chris Lattner4c97d762009-04-12 21:49:30 +00002575 }
Douglas Gregor12e083c2008-11-07 15:42:26 +00002576
2577 // enum-specifier:
2578 case tok::kw_enum:
Chris Lattner4c97d762009-04-12 21:49:30 +00002579 ConsumeToken();
Douglas Gregor9b9edd62010-03-02 17:53:14 +00002580 ParseEnumSpecifier(Loc, DS, TemplateInfo, AS_none);
Douglas Gregor12e083c2008-11-07 15:42:26 +00002581 return true;
2582
2583 // cv-qualifier:
2584 case tok::kw_const:
2585 isInvalid = DS.SetTypeQual(DeclSpec::TQ_const , Loc, PrevSpec,
David Blaikie4e4d0842012-03-11 07:00:24 +00002586 DiagID, getLangOpts());
Douglas Gregor12e083c2008-11-07 15:42:26 +00002587 break;
2588 case tok::kw_volatile:
2589 isInvalid = DS.SetTypeQual(DeclSpec::TQ_volatile, Loc, PrevSpec,
David Blaikie4e4d0842012-03-11 07:00:24 +00002590 DiagID, getLangOpts());
Douglas Gregor12e083c2008-11-07 15:42:26 +00002591 break;
2592 case tok::kw_restrict:
2593 isInvalid = DS.SetTypeQual(DeclSpec::TQ_restrict, Loc, PrevSpec,
David Blaikie4e4d0842012-03-11 07:00:24 +00002594 DiagID, getLangOpts());
Douglas Gregor12e083c2008-11-07 15:42:26 +00002595 break;
2596
2597 // GNU typeof support.
2598 case tok::kw_typeof:
2599 ParseTypeofSpecifier(DS);
2600 return true;
2601
Anders Carlsson6fd634f2009-06-24 17:47:40 +00002602 // C++0x decltype support.
David Blaikie42d6d0c2011-12-04 05:04:18 +00002603 case tok::annot_decltype:
Anders Carlsson6fd634f2009-06-24 17:47:40 +00002604 ParseDecltypeSpecifier(DS);
2605 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002606
Sean Huntdb5d44b2011-05-19 05:37:45 +00002607 // C++0x type traits support.
2608 case tok::kw___underlying_type:
2609 ParseUnderlyingTypeSpecifier(DS);
2610 return true;
2611
Eli Friedmanb001de72011-10-06 23:00:33 +00002612 case tok::kw__Atomic:
2613 ParseAtomicSpecifier(DS);
2614 return true;
2615
Peter Collingbourne207f4d82011-03-18 22:38:29 +00002616 // OpenCL qualifiers:
2617 case tok::kw_private:
David Blaikie4e4d0842012-03-11 07:00:24 +00002618 if (!getLangOpts().OpenCL)
Peter Collingbourne207f4d82011-03-18 22:38:29 +00002619 return false;
2620 case tok::kw___private:
2621 case tok::kw___global:
2622 case tok::kw___local:
2623 case tok::kw___constant:
2624 case tok::kw___read_only:
2625 case tok::kw___write_only:
2626 case tok::kw___read_write:
2627 ParseOpenCLQualifiers(DS);
2628 break;
2629
Anders Carlsson0b7f7892009-06-26 23:44:14 +00002630 // C++0x auto support.
2631 case tok::kw_auto:
Richard Smith87e96eb2011-09-04 20:24:20 +00002632 // This is only called in situations where a storage-class specifier is
2633 // illegal, so we can assume an auto type specifier was intended even in
2634 // C++98. In C++98 mode, DeclSpec::Finish will produce an appropriate
2635 // extension diagnostic.
David Blaikie4e4d0842012-03-11 07:00:24 +00002636 if (!getLangOpts().CPlusPlus)
Anders Carlsson0b7f7892009-06-26 23:44:14 +00002637 return false;
2638
John McCallfec54012009-08-03 20:12:06 +00002639 isInvalid = DS.SetTypeSpecType(DeclSpec::TST_auto, Loc, PrevSpec, DiagID);
Anders Carlsson0b7f7892009-06-26 23:44:14 +00002640 break;
Dawn Perchik52fc3142010-09-03 01:29:35 +00002641
Eli Friedman290eeb02009-06-08 23:27:34 +00002642 case tok::kw___ptr64:
Francois Pichet58fd97a2011-08-25 00:36:46 +00002643 case tok::kw___ptr32:
Eli Friedman290eeb02009-06-08 23:27:34 +00002644 case tok::kw___w64:
Steve Naroff239f0732008-12-25 14:16:32 +00002645 case tok::kw___cdecl:
2646 case tok::kw___stdcall:
2647 case tok::kw___fastcall:
Douglas Gregorf813a2c2010-05-18 16:57:00 +00002648 case tok::kw___thiscall:
Francois Pichet3bd9aa42011-08-18 09:59:55 +00002649 case tok::kw___unaligned:
John McCall7f040a92010-12-24 02:08:15 +00002650 ParseMicrosoftTypeAttributes(DS.getAttributes());
Chris Lattner837acd02009-01-21 19:19:26 +00002651 return true;
Steve Naroff239f0732008-12-25 14:16:32 +00002652
Dawn Perchik52fc3142010-09-03 01:29:35 +00002653 case tok::kw___pascal:
John McCall7f040a92010-12-24 02:08:15 +00002654 ParseBorlandTypeAttributes(DS.getAttributes());
Dawn Perchik52fc3142010-09-03 01:29:35 +00002655 return true;
2656
Douglas Gregor12e083c2008-11-07 15:42:26 +00002657 default:
2658 // Not a type-specifier; do nothing.
2659 return false;
2660 }
2661
2662 // If the specifier combination wasn't legal, issue a diagnostic.
2663 if (isInvalid) {
2664 assert(PrevSpec && "Method did not return previous specifier!");
Chris Lattner1ab3b962008-11-18 07:48:38 +00002665 // Pick between error or extwarn.
Chris Lattner1ab3b962008-11-18 07:48:38 +00002666 Diag(Tok, DiagID) << PrevSpec;
Douglas Gregor12e083c2008-11-07 15:42:26 +00002667 }
2668 DS.SetRangeEnd(Tok.getLocation());
2669 ConsumeToken(); // whatever we parsed above.
2670 return true;
2671}
Reid Spencer5f016e22007-07-11 17:01:13 +00002672
Chris Lattnercd4b83c2007-10-29 04:42:53 +00002673/// ParseStructDeclaration - Parse a struct declaration without the terminating
2674/// semicolon.
2675///
Reid Spencer5f016e22007-07-11 17:01:13 +00002676/// struct-declaration:
Chris Lattnercd4b83c2007-10-29 04:42:53 +00002677/// specifier-qualifier-list struct-declarator-list
Reid Spencer5f016e22007-07-11 17:01:13 +00002678/// [GNU] __extension__ struct-declaration
Chris Lattnercd4b83c2007-10-29 04:42:53 +00002679/// [GNU] specifier-qualifier-list
Reid Spencer5f016e22007-07-11 17:01:13 +00002680/// struct-declarator-list:
2681/// struct-declarator
2682/// struct-declarator-list ',' struct-declarator
2683/// [GNU] struct-declarator-list ',' attributes[opt] struct-declarator
2684/// struct-declarator:
2685/// declarator
2686/// [GNU] declarator attributes[opt]
2687/// declarator[opt] ':' constant-expression
2688/// [GNU] declarator[opt] ':' constant-expression attributes[opt]
2689///
Chris Lattnere1359422008-04-10 06:46:29 +00002690void Parser::
John McCallbdd563e2009-11-03 02:38:08 +00002691ParseStructDeclaration(DeclSpec &DS, FieldCallback &Fields) {
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00002692
Chris Lattnerc46d1a12008-10-20 06:45:43 +00002693 if (Tok.is(tok::kw___extension__)) {
2694 // __extension__ silences extension warnings in the subexpression.
2695 ExtensionRAIIObject O(Diags); // Use RAII to do this.
Steve Naroff28a7ca82007-08-20 22:28:22 +00002696 ConsumeToken();
Chris Lattnerc46d1a12008-10-20 06:45:43 +00002697 return ParseStructDeclaration(DS, Fields);
2698 }
Mike Stump1eb44332009-09-09 15:08:12 +00002699
Steve Naroff28a7ca82007-08-20 22:28:22 +00002700 // Parse the common specifier-qualifiers-list piece.
Steve Naroff28a7ca82007-08-20 22:28:22 +00002701 ParseSpecifierQualifierList(DS);
Mike Stump1eb44332009-09-09 15:08:12 +00002702
Douglas Gregor4920f1f2009-01-12 22:49:06 +00002703 // If there are no declarators, this is a free-standing declaration
2704 // specifier. Let the actions module cope with it.
Chris Lattner04d66662007-10-09 17:33:22 +00002705 if (Tok.is(tok::semi)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00002706 Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS_none, DS);
Steve Naroff28a7ca82007-08-20 22:28:22 +00002707 return;
2708 }
2709
2710 // Read struct-declarators until we find the semicolon.
John McCallbdd563e2009-11-03 02:38:08 +00002711 bool FirstDeclarator = true;
Richard Smith7984de32012-01-12 23:53:29 +00002712 SourceLocation CommaLoc;
Steve Naroff28a7ca82007-08-20 22:28:22 +00002713 while (1) {
John McCall54abf7d2009-11-04 02:18:39 +00002714 ParsingDeclRAIIObject PD(*this);
John McCallbdd563e2009-11-03 02:38:08 +00002715 FieldDeclarator DeclaratorInfo(DS);
Richard Smith7984de32012-01-12 23:53:29 +00002716 DeclaratorInfo.D.setCommaLoc(CommaLoc);
John McCallbdd563e2009-11-03 02:38:08 +00002717
2718 // Attributes are only allowed here on successive declarators.
John McCall7f040a92010-12-24 02:08:15 +00002719 if (!FirstDeclarator)
2720 MaybeParseGNUAttributes(DeclaratorInfo.D);
Mike Stump1eb44332009-09-09 15:08:12 +00002721
Steve Naroff28a7ca82007-08-20 22:28:22 +00002722 /// struct-declarator: declarator
2723 /// struct-declarator: declarator[opt] ':' constant-expression
Chris Lattnera1efc8c2009-12-10 01:59:24 +00002724 if (Tok.isNot(tok::colon)) {
2725 // Don't parse FOO:BAR as if it were a typo for FOO::BAR.
2726 ColonProtectionRAIIObject X(*this);
Chris Lattnere1359422008-04-10 06:46:29 +00002727 ParseDeclarator(DeclaratorInfo.D);
Chris Lattnera1efc8c2009-12-10 01:59:24 +00002728 }
Mike Stump1eb44332009-09-09 15:08:12 +00002729
Chris Lattner04d66662007-10-09 17:33:22 +00002730 if (Tok.is(tok::colon)) {
Steve Naroff28a7ca82007-08-20 22:28:22 +00002731 ConsumeToken();
John McCall60d7b3a2010-08-24 06:29:42 +00002732 ExprResult Res(ParseConstantExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002733 if (Res.isInvalid())
Steve Naroff28a7ca82007-08-20 22:28:22 +00002734 SkipUntil(tok::semi, true, true);
Chris Lattner60b1e3e2008-04-10 06:15:14 +00002735 else
Sebastian Redleffa8d12008-12-10 00:02:53 +00002736 DeclaratorInfo.BitfieldSize = Res.release();
Steve Naroff28a7ca82007-08-20 22:28:22 +00002737 }
Sebastian Redlab197ba2009-02-09 18:23:29 +00002738
Steve Naroff28a7ca82007-08-20 22:28:22 +00002739 // If attributes exist after the declarator, parse them.
John McCall7f040a92010-12-24 02:08:15 +00002740 MaybeParseGNUAttributes(DeclaratorInfo.D);
Sebastian Redlab197ba2009-02-09 18:23:29 +00002741
John McCallbdd563e2009-11-03 02:38:08 +00002742 // We're done with this declarator; invoke the callback.
John McCalld226f652010-08-21 09:40:31 +00002743 Decl *D = Fields.invoke(DeclaratorInfo);
John McCall54abf7d2009-11-04 02:18:39 +00002744 PD.complete(D);
John McCallbdd563e2009-11-03 02:38:08 +00002745
Steve Naroff28a7ca82007-08-20 22:28:22 +00002746 // If we don't have a comma, it is either the end of the list (a ';')
2747 // or an error, bail out.
Chris Lattner04d66662007-10-09 17:33:22 +00002748 if (Tok.isNot(tok::comma))
Chris Lattnercd4b83c2007-10-29 04:42:53 +00002749 return;
Sebastian Redlab197ba2009-02-09 18:23:29 +00002750
Steve Naroff28a7ca82007-08-20 22:28:22 +00002751 // Consume the comma.
Richard Smith7984de32012-01-12 23:53:29 +00002752 CommaLoc = ConsumeToken();
Sebastian Redlab197ba2009-02-09 18:23:29 +00002753
John McCallbdd563e2009-11-03 02:38:08 +00002754 FirstDeclarator = false;
Steve Naroff28a7ca82007-08-20 22:28:22 +00002755 }
Steve Naroff28a7ca82007-08-20 22:28:22 +00002756}
2757
2758/// ParseStructUnionBody
2759/// struct-contents:
2760/// struct-declaration-list
2761/// [EXT] empty
2762/// [GNU] "struct-declaration-list" without terminatoring ';'
2763/// struct-declaration-list:
2764/// struct-declaration
2765/// struct-declaration-list struct-declaration
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00002766/// [OBC] '@' 'defs' '(' class-name ')'
Steve Naroff28a7ca82007-08-20 22:28:22 +00002767///
Reid Spencer5f016e22007-07-11 17:01:13 +00002768void Parser::ParseStructUnionBody(SourceLocation RecordLoc,
John McCalld226f652010-08-21 09:40:31 +00002769 unsigned TagType, Decl *TagDecl) {
John McCallf312b1e2010-08-26 23:41:50 +00002770 PrettyDeclStackTraceEntry CrashInfo(Actions, TagDecl, RecordLoc,
2771 "parsing struct/union body");
Mike Stump1eb44332009-09-09 15:08:12 +00002772
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002773 BalancedDelimiterTracker T(*this, tok::l_brace);
2774 if (T.consumeOpen())
2775 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002776
Douglas Gregor3218c4b2009-01-09 22:42:13 +00002777 ParseScope StructScope(this, Scope::ClassScope|Scope::DeclScope);
Douglas Gregor23c94db2010-07-02 17:43:08 +00002778 Actions.ActOnTagStartDefinition(getCurScope(), TagDecl);
Douglas Gregor72de6672009-01-08 20:45:30 +00002779
Reid Spencer5f016e22007-07-11 17:01:13 +00002780 // Empty structs are an extension in C (C99 6.7.2.1p7), but are allowed in
2781 // C++.
David Blaikie4e4d0842012-03-11 07:00:24 +00002782 if (Tok.is(tok::r_brace) && !getLangOpts().CPlusPlus) {
Richard Smithd7c56e12011-12-29 21:57:33 +00002783 Diag(Tok, diag::ext_empty_struct_union) << (TagType == TST_union);
2784 Diag(Tok, diag::warn_empty_struct_union_compat) << (TagType == TST_union);
2785 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002786
Chris Lattner5f9e2722011-07-23 10:55:15 +00002787 SmallVector<Decl *, 32> FieldDecls;
Chris Lattnere1359422008-04-10 06:46:29 +00002788
Reid Spencer5f016e22007-07-11 17:01:13 +00002789 // While we still have something to read, read the declarations in the struct.
Chris Lattner04d66662007-10-09 17:33:22 +00002790 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002791 // Each iteration of this loop reads one struct-declaration.
Mike Stump1eb44332009-09-09 15:08:12 +00002792
Reid Spencer5f016e22007-07-11 17:01:13 +00002793 // Check for extraneous top-level semicolon.
Chris Lattner04d66662007-10-09 17:33:22 +00002794 if (Tok.is(tok::semi)) {
Douglas Gregor9b3064b2009-04-01 22:41:11 +00002795 Diag(Tok, diag::ext_extra_struct_semi)
Douglas Gregorf13ca062010-06-16 23:08:59 +00002796 << DeclSpec::getSpecifierName((DeclSpec::TST)TagType)
Douglas Gregor849b2432010-03-31 17:46:05 +00002797 << FixItHint::CreateRemoval(Tok.getLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00002798 ConsumeToken();
2799 continue;
2800 }
Chris Lattnere1359422008-04-10 06:46:29 +00002801
2802 // Parse all the comma separated declarators.
John McCall0b7e6782011-03-24 11:26:52 +00002803 DeclSpec DS(AttrFactory);
Mike Stump1eb44332009-09-09 15:08:12 +00002804
John McCallbdd563e2009-11-03 02:38:08 +00002805 if (!Tok.is(tok::at)) {
2806 struct CFieldCallback : FieldCallback {
2807 Parser &P;
John McCalld226f652010-08-21 09:40:31 +00002808 Decl *TagDecl;
Chris Lattner5f9e2722011-07-23 10:55:15 +00002809 SmallVectorImpl<Decl *> &FieldDecls;
John McCallbdd563e2009-11-03 02:38:08 +00002810
John McCalld226f652010-08-21 09:40:31 +00002811 CFieldCallback(Parser &P, Decl *TagDecl,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002812 SmallVectorImpl<Decl *> &FieldDecls) :
John McCallbdd563e2009-11-03 02:38:08 +00002813 P(P), TagDecl(TagDecl), FieldDecls(FieldDecls) {}
2814
John McCalld226f652010-08-21 09:40:31 +00002815 virtual Decl *invoke(FieldDeclarator &FD) {
John McCallbdd563e2009-11-03 02:38:08 +00002816 // Install the declarator into the current TagDecl.
John McCalld226f652010-08-21 09:40:31 +00002817 Decl *Field = P.Actions.ActOnField(P.getCurScope(), TagDecl,
John McCall4ba39712009-11-03 21:13:47 +00002818 FD.D.getDeclSpec().getSourceRange().getBegin(),
2819 FD.D, FD.BitfieldSize);
John McCallbdd563e2009-11-03 02:38:08 +00002820 FieldDecls.push_back(Field);
2821 return Field;
Douglas Gregor91a28862009-08-26 14:27:30 +00002822 }
John McCallbdd563e2009-11-03 02:38:08 +00002823 } Callback(*this, TagDecl, FieldDecls);
2824
2825 ParseStructDeclaration(DS, Callback);
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00002826 } else { // Handle @defs
2827 ConsumeToken();
2828 if (!Tok.isObjCAtKeyword(tok::objc_defs)) {
2829 Diag(Tok, diag::err_unexpected_at);
Chris Lattner3e156ad2010-02-02 00:37:27 +00002830 SkipUntil(tok::semi, true);
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00002831 continue;
2832 }
2833 ConsumeToken();
2834 ExpectAndConsume(tok::l_paren, diag::err_expected_lparen);
2835 if (!Tok.is(tok::identifier)) {
2836 Diag(Tok, diag::err_expected_ident);
Chris Lattner3e156ad2010-02-02 00:37:27 +00002837 SkipUntil(tok::semi, true);
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00002838 continue;
2839 }
Chris Lattner5f9e2722011-07-23 10:55:15 +00002840 SmallVector<Decl *, 16> Fields;
Douglas Gregor23c94db2010-07-02 17:43:08 +00002841 Actions.ActOnDefs(getCurScope(), TagDecl, Tok.getLocation(),
Douglas Gregor44b43212008-12-11 16:49:14 +00002842 Tok.getIdentifierInfo(), Fields);
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00002843 FieldDecls.insert(FieldDecls.end(), Fields.begin(), Fields.end());
2844 ConsumeToken();
2845 ExpectAndConsume(tok::r_paren, diag::err_expected_rparen);
Mike Stump1eb44332009-09-09 15:08:12 +00002846 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002847
Chris Lattner04d66662007-10-09 17:33:22 +00002848 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002849 ConsumeToken();
Chris Lattner04d66662007-10-09 17:33:22 +00002850 } else if (Tok.is(tok::r_brace)) {
Chris Lattner3e156ad2010-02-02 00:37:27 +00002851 ExpectAndConsume(tok::semi, diag::ext_expected_semi_decl_list);
Reid Spencer5f016e22007-07-11 17:01:13 +00002852 break;
2853 } else {
Chris Lattner3e156ad2010-02-02 00:37:27 +00002854 ExpectAndConsume(tok::semi, diag::err_expected_semi_decl_list);
2855 // Skip to end of block or statement to avoid ext-warning on extra ';'.
Reid Spencer5f016e22007-07-11 17:01:13 +00002856 SkipUntil(tok::r_brace, true, true);
Chris Lattner3e156ad2010-02-02 00:37:27 +00002857 // If we stopped at a ';', eat it.
2858 if (Tok.is(tok::semi)) ConsumeToken();
Reid Spencer5f016e22007-07-11 17:01:13 +00002859 }
2860 }
Mike Stump1eb44332009-09-09 15:08:12 +00002861
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002862 T.consumeClose();
Mike Stump1eb44332009-09-09 15:08:12 +00002863
John McCall0b7e6782011-03-24 11:26:52 +00002864 ParsedAttributes attrs(AttrFactory);
Reid Spencer5f016e22007-07-11 17:01:13 +00002865 // If attributes exist after struct contents, parse them.
John McCall7f040a92010-12-24 02:08:15 +00002866 MaybeParseGNUAttributes(attrs);
Daniel Dunbar1bfe1c22008-10-03 02:03:53 +00002867
Douglas Gregor23c94db2010-07-02 17:43:08 +00002868 Actions.ActOnFields(getCurScope(),
David Blaikie77b6de02011-09-22 02:58:26 +00002869 RecordLoc, TagDecl, FieldDecls,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002870 T.getOpenLocation(), T.getCloseLocation(),
John McCall7f040a92010-12-24 02:08:15 +00002871 attrs.getList());
Douglas Gregor72de6672009-01-08 20:45:30 +00002872 StructScope.Exit();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002873 Actions.ActOnTagFinishDefinition(getCurScope(), TagDecl,
2874 T.getCloseLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00002875}
2876
Reid Spencer5f016e22007-07-11 17:01:13 +00002877/// ParseEnumSpecifier
2878/// enum-specifier: [C99 6.7.2.2]
2879/// 'enum' identifier[opt] '{' enumerator-list '}'
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002880///[C99/C++]'enum' identifier[opt] '{' enumerator-list ',' '}'
Reid Spencer5f016e22007-07-11 17:01:13 +00002881/// [GNU] 'enum' attributes[opt] identifier[opt] '{' enumerator-list ',' [opt]
2882/// '}' attributes[opt]
Aaron Ballman6454a022012-03-01 04:09:28 +00002883/// [MS] 'enum' __declspec[opt] identifier[opt] '{' enumerator-list ',' [opt]
2884/// '}'
Reid Spencer5f016e22007-07-11 17:01:13 +00002885/// 'enum' identifier
2886/// [GNU] 'enum' attributes[opt] identifier
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002887///
Douglas Gregor1274ccd2010-10-08 23:50:27 +00002888/// [C++0x] enum-head '{' enumerator-list[opt] '}'
2889/// [C++0x] enum-head '{' enumerator-list ',' '}'
2890///
2891/// enum-head: [C++0x]
2892/// enum-key attributes[opt] identifier[opt] enum-base[opt]
2893/// enum-key attributes[opt] nested-name-specifier identifier enum-base[opt]
2894///
2895/// enum-key: [C++0x]
2896/// 'enum'
2897/// 'enum' 'class'
2898/// 'enum' 'struct'
2899///
2900/// enum-base: [C++0x]
2901/// ':' type-specifier-seq
2902///
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002903/// [C++] elaborated-type-specifier:
2904/// [C++] 'enum' '::'[opt] nested-name-specifier[opt] identifier
2905///
Chris Lattner4c97d762009-04-12 21:49:30 +00002906void Parser::ParseEnumSpecifier(SourceLocation StartLoc, DeclSpec &DS,
Douglas Gregor9b9edd62010-03-02 17:53:14 +00002907 const ParsedTemplateInfo &TemplateInfo,
Chris Lattner4c97d762009-04-12 21:49:30 +00002908 AccessSpecifier AS) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002909 // Parse the tag portion of this.
Douglas Gregor374929f2009-09-18 15:37:17 +00002910 if (Tok.is(tok::code_completion)) {
2911 // Code completion for an enum name.
Douglas Gregor23c94db2010-07-02 17:43:08 +00002912 Actions.CodeCompleteTag(getCurScope(), DeclSpec::TST_enum);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002913 return cutOffParsing();
Douglas Gregor374929f2009-09-18 15:37:17 +00002914 }
John McCall57c13002011-07-06 05:58:41 +00002915
Richard Smithbdad7a22012-01-10 01:33:14 +00002916 SourceLocation ScopedEnumKWLoc;
John McCall57c13002011-07-06 05:58:41 +00002917 bool IsScopedUsingClassTag = false;
2918
David Blaikie4e4d0842012-03-11 07:00:24 +00002919 if (getLangOpts().CPlusPlus0x &&
John McCall57c13002011-07-06 05:58:41 +00002920 (Tok.is(tok::kw_class) || Tok.is(tok::kw_struct))) {
Richard Smith7fe62082011-10-15 05:09:34 +00002921 Diag(Tok, diag::warn_cxx98_compat_scoped_enum);
John McCall57c13002011-07-06 05:58:41 +00002922 IsScopedUsingClassTag = Tok.is(tok::kw_class);
Richard Smithbdad7a22012-01-10 01:33:14 +00002923 ScopedEnumKWLoc = ConsumeToken();
John McCall57c13002011-07-06 05:58:41 +00002924 }
Douglas Gregor374929f2009-09-18 15:37:17 +00002925
Argyrios Kyrtzidise281b4c2008-09-11 00:21:41 +00002926 // If attributes exist after tag, parse them.
John McCall0b7e6782011-03-24 11:26:52 +00002927 ParsedAttributes attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +00002928 MaybeParseGNUAttributes(attrs);
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002929
Aaron Ballman6454a022012-03-01 04:09:28 +00002930 // If declspecs exist after tag, parse them.
2931 while (Tok.is(tok::kw___declspec))
2932 ParseMicrosoftDeclSpec(attrs);
2933
Douglas Gregor5471bc82011-09-08 17:18:35 +00002934 bool AllowFixedUnderlyingType
David Blaikie4e4d0842012-03-11 07:00:24 +00002935 = getLangOpts().CPlusPlus0x || getLangOpts().MicrosoftExt || getLangOpts().ObjC2;
John McCall57c13002011-07-06 05:58:41 +00002936
Abramo Bagnarae4da7a02010-05-19 21:37:53 +00002937 CXXScopeSpec &SS = DS.getTypeSpecScope();
David Blaikie4e4d0842012-03-11 07:00:24 +00002938 if (getLangOpts().CPlusPlus) {
John McCall57c13002011-07-06 05:58:41 +00002939 // "enum foo : bar;" is not a potential typo for "enum foo::bar;"
2940 // if a fixed underlying type is allowed.
2941 ColonProtectionRAIIObject X(*this, AllowFixedUnderlyingType);
2942
Douglas Gregorefaa93a2011-11-07 17:33:42 +00002943 if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(),
2944 /*EnteringContext=*/false))
John McCall9ba61662010-02-26 08:45:28 +00002945 return;
2946
2947 if (SS.isSet() && Tok.isNot(tok::identifier)) {
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002948 Diag(Tok, diag::err_expected_ident);
2949 if (Tok.isNot(tok::l_brace)) {
2950 // Has no name and is not a definition.
2951 // Skip the rest of this declarator, up until the comma or semicolon.
2952 SkipUntil(tok::comma, true);
2953 return;
2954 }
2955 }
2956 }
Mike Stump1eb44332009-09-09 15:08:12 +00002957
Argyrios Kyrtzidise281b4c2008-09-11 00:21:41 +00002958 // Must have either 'enum name' or 'enum {...}'.
Douglas Gregorb9075602011-02-22 02:55:24 +00002959 if (Tok.isNot(tok::identifier) && Tok.isNot(tok::l_brace) &&
2960 (AllowFixedUnderlyingType && Tok.isNot(tok::colon))) {
Argyrios Kyrtzidise281b4c2008-09-11 00:21:41 +00002961 Diag(Tok, diag::err_expected_ident_lbrace);
Mike Stump1eb44332009-09-09 15:08:12 +00002962
Argyrios Kyrtzidise281b4c2008-09-11 00:21:41 +00002963 // Skip the rest of this declarator, up until the comma or semicolon.
2964 SkipUntil(tok::comma, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00002965 return;
Argyrios Kyrtzidise281b4c2008-09-11 00:21:41 +00002966 }
Mike Stump1eb44332009-09-09 15:08:12 +00002967
Argyrios Kyrtzidise281b4c2008-09-11 00:21:41 +00002968 // If an identifier is present, consume and remember it.
2969 IdentifierInfo *Name = 0;
2970 SourceLocation NameLoc;
2971 if (Tok.is(tok::identifier)) {
2972 Name = Tok.getIdentifierInfo();
2973 NameLoc = ConsumeToken();
2974 }
Mike Stump1eb44332009-09-09 15:08:12 +00002975
Richard Smithbdad7a22012-01-10 01:33:14 +00002976 if (!Name && ScopedEnumKWLoc.isValid()) {
Douglas Gregor1274ccd2010-10-08 23:50:27 +00002977 // C++0x 7.2p2: The optional identifier shall not be omitted in the
2978 // declaration of a scoped enumeration.
2979 Diag(Tok, diag::err_scoped_enum_missing_identifier);
Richard Smithbdad7a22012-01-10 01:33:14 +00002980 ScopedEnumKWLoc = SourceLocation();
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +00002981 IsScopedUsingClassTag = false;
Douglas Gregor1274ccd2010-10-08 23:50:27 +00002982 }
2983
2984 TypeResult BaseType;
2985
Douglas Gregora61b3e72010-12-01 17:42:47 +00002986 // Parse the fixed underlying type.
Douglas Gregorb9075602011-02-22 02:55:24 +00002987 if (AllowFixedUnderlyingType && Tok.is(tok::colon)) {
Douglas Gregora61b3e72010-12-01 17:42:47 +00002988 bool PossibleBitfield = false;
2989 if (getCurScope()->getFlags() & Scope::ClassScope) {
2990 // If we're in class scope, this can either be an enum declaration with
2991 // an underlying type, or a declaration of a bitfield member. We try to
2992 // use a simple disambiguation scheme first to catch the common cases
2993 // (integer literal, sizeof); if it's still ambiguous, we then consider
2994 // anything that's a simple-type-specifier followed by '(' as an
2995 // expression. This suffices because function types are not valid
2996 // underlying types anyway.
2997 TPResult TPR = isExpressionOrTypeSpecifierSimple(NextToken().getKind());
2998 // If the next token starts an expression, we know we're parsing a
2999 // bit-field. This is the common case.
3000 if (TPR == TPResult::True())
3001 PossibleBitfield = true;
3002 // If the next token starts a type-specifier-seq, it may be either a
3003 // a fixed underlying type or the start of a function-style cast in C++;
3004 // lookahead one more token to see if it's obvious that we have a
3005 // fixed underlying type.
3006 else if (TPR == TPResult::False() &&
3007 GetLookAheadToken(2).getKind() == tok::semi) {
3008 // Consume the ':'.
3009 ConsumeToken();
3010 } else {
3011 // We have the start of a type-specifier-seq, so we have to perform
3012 // tentative parsing to determine whether we have an expression or a
3013 // type.
3014 TentativeParsingAction TPA(*this);
3015
3016 // Consume the ':'.
3017 ConsumeToken();
Richard Smithd81e9612012-02-23 01:36:12 +00003018
3019 // If we see a type specifier followed by an open-brace, we have an
3020 // ambiguity between an underlying type and a C++11 braced
3021 // function-style cast. Resolve this by always treating it as an
3022 // underlying type.
3023 // FIXME: The standard is not entirely clear on how to disambiguate in
3024 // this case.
David Blaikie4e4d0842012-03-11 07:00:24 +00003025 if ((getLangOpts().CPlusPlus &&
Richard Smithd81e9612012-02-23 01:36:12 +00003026 isCXXDeclarationSpecifier(TPResult::True()) != TPResult::True()) ||
David Blaikie4e4d0842012-03-11 07:00:24 +00003027 (!getLangOpts().CPlusPlus && !isDeclarationSpecifier(true))) {
Douglas Gregora61b3e72010-12-01 17:42:47 +00003028 // We'll parse this as a bitfield later.
3029 PossibleBitfield = true;
3030 TPA.Revert();
3031 } else {
3032 // We have a type-specifier-seq.
3033 TPA.Commit();
3034 }
3035 }
3036 } else {
3037 // Consume the ':'.
3038 ConsumeToken();
3039 }
3040
3041 if (!PossibleBitfield) {
3042 SourceRange Range;
3043 BaseType = ParseTypeName(&Range);
Douglas Gregor86f208c2011-02-22 20:32:04 +00003044
David Blaikie4e4d0842012-03-11 07:00:24 +00003045 if (!getLangOpts().CPlusPlus0x && !getLangOpts().ObjC2)
Douglas Gregor86f208c2011-02-22 20:32:04 +00003046 Diag(StartLoc, diag::ext_ms_enum_fixed_underlying_type)
3047 << Range;
David Blaikie4e4d0842012-03-11 07:00:24 +00003048 if (getLangOpts().CPlusPlus0x)
Richard Smith7fe62082011-10-15 05:09:34 +00003049 Diag(StartLoc, diag::warn_cxx98_compat_enum_fixed_underlying_type);
Douglas Gregora61b3e72010-12-01 17:42:47 +00003050 }
Douglas Gregor1274ccd2010-10-08 23:50:27 +00003051 }
3052
Richard Smithbdad7a22012-01-10 01:33:14 +00003053 // There are four options here. If we have 'friend enum foo;' then this is a
3054 // friend declaration, and cannot have an accompanying definition. If we have
3055 // 'enum foo;', then this is a forward declaration. If we have
3056 // 'enum foo {...' then this is a definition. Otherwise we have something
3057 // like 'enum foo xyz', a reference.
Argyrios Kyrtzidise281b4c2008-09-11 00:21:41 +00003058 //
3059 // This is needed to handle stuff like this right (C99 6.7.2.3p11):
3060 // enum foo {..}; void bar() { enum foo; } <- new foo in bar.
3061 // enum foo {..}; void bar() { enum foo x; } <- use of old foo.
3062 //
John McCallf312b1e2010-08-26 23:41:50 +00003063 Sema::TagUseKind TUK;
Richard Smithbdad7a22012-01-10 01:33:14 +00003064 if (DS.isFriendSpecified())
3065 TUK = Sema::TUK_Friend;
3066 else if (Tok.is(tok::l_brace))
John McCallf312b1e2010-08-26 23:41:50 +00003067 TUK = Sema::TUK_Definition;
Argyrios Kyrtzidise281b4c2008-09-11 00:21:41 +00003068 else if (Tok.is(tok::semi))
John McCallf312b1e2010-08-26 23:41:50 +00003069 TUK = Sema::TUK_Declaration;
Argyrios Kyrtzidise281b4c2008-09-11 00:21:41 +00003070 else
John McCallf312b1e2010-08-26 23:41:50 +00003071 TUK = Sema::TUK_Reference;
Douglas Gregor8fc6d232010-05-03 17:48:54 +00003072
3073 // enums cannot be templates, although they can be referenced from a
3074 // template.
3075 if (TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate &&
John McCallf312b1e2010-08-26 23:41:50 +00003076 TUK != Sema::TUK_Reference) {
Douglas Gregor8fc6d232010-05-03 17:48:54 +00003077 Diag(Tok, diag::err_enum_template);
3078
3079 // Skip the rest of this declarator, up until the comma or semicolon.
3080 SkipUntil(tok::comma, true);
3081 return;
3082 }
3083
Douglas Gregorb9075602011-02-22 02:55:24 +00003084 if (!Name && TUK != Sema::TUK_Definition) {
3085 Diag(Tok, diag::err_enumerator_unnamed_no_def);
3086
3087 // Skip the rest of this declarator, up until the comma or semicolon.
3088 SkipUntil(tok::comma, true);
3089 return;
3090 }
3091
Douglas Gregor402abb52009-05-28 23:31:59 +00003092 bool Owned = false;
John McCallc4e70192009-09-11 04:59:25 +00003093 bool IsDependent = false;
Douglas Gregor48c89f42010-04-24 16:38:41 +00003094 const char *PrevSpec = 0;
3095 unsigned DiagID;
John McCalld226f652010-08-21 09:40:31 +00003096 Decl *TagDecl = Actions.ActOnTag(getCurScope(), DeclSpec::TST_enum, TUK,
John McCall7f040a92010-12-24 02:08:15 +00003097 StartLoc, SS, Name, NameLoc, attrs.getList(),
Douglas Gregore7612302011-09-09 19:05:14 +00003098 AS, DS.getModulePrivateSpecLoc(),
John McCallf312b1e2010-08-26 23:41:50 +00003099 MultiTemplateParamsArg(Actions),
Richard Smithbdad7a22012-01-10 01:33:14 +00003100 Owned, IsDependent, ScopedEnumKWLoc,
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +00003101 IsScopedUsingClassTag, BaseType);
Douglas Gregor1274ccd2010-10-08 23:50:27 +00003102
Douglas Gregor48c89f42010-04-24 16:38:41 +00003103 if (IsDependent) {
3104 // This enum has a dependent nested-name-specifier. Handle it as a
3105 // dependent tag.
3106 if (!Name) {
3107 DS.SetTypeSpecError();
3108 Diag(Tok, diag::err_expected_type_name_after_typename);
3109 return;
3110 }
3111
Douglas Gregor23c94db2010-07-02 17:43:08 +00003112 TypeResult Type = Actions.ActOnDependentTag(getCurScope(), DeclSpec::TST_enum,
Douglas Gregor48c89f42010-04-24 16:38:41 +00003113 TUK, SS, Name, StartLoc,
3114 NameLoc);
3115 if (Type.isInvalid()) {
3116 DS.SetTypeSpecError();
3117 return;
3118 }
3119
Abramo Bagnara0daaf322011-03-16 20:16:18 +00003120 if (DS.SetTypeSpecType(DeclSpec::TST_typename, StartLoc,
3121 NameLoc.isValid() ? NameLoc : StartLoc,
3122 PrevSpec, DiagID, Type.get()))
Douglas Gregor48c89f42010-04-24 16:38:41 +00003123 Diag(StartLoc, DiagID) << PrevSpec;
3124
3125 return;
3126 }
Mike Stump1eb44332009-09-09 15:08:12 +00003127
John McCalld226f652010-08-21 09:40:31 +00003128 if (!TagDecl) {
Douglas Gregor48c89f42010-04-24 16:38:41 +00003129 // The action failed to produce an enumeration tag. If this is a
3130 // definition, consume the entire definition.
3131 if (Tok.is(tok::l_brace)) {
3132 ConsumeBrace();
3133 SkipUntil(tok::r_brace);
3134 }
3135
3136 DS.SetTypeSpecError();
3137 return;
3138 }
Richard Smithbdad7a22012-01-10 01:33:14 +00003139
3140 if (Tok.is(tok::l_brace)) {
3141 if (TUK == Sema::TUK_Friend)
3142 Diag(Tok, diag::err_friend_decl_defines_type)
3143 << SourceRange(DS.getFriendSpecLoc());
Reid Spencer5f016e22007-07-11 17:01:13 +00003144 ParseEnumBody(StartLoc, TagDecl);
Richard Smithbdad7a22012-01-10 01:33:14 +00003145 }
Mike Stump1eb44332009-09-09 15:08:12 +00003146
Abramo Bagnara0daaf322011-03-16 20:16:18 +00003147 if (DS.SetTypeSpecType(DeclSpec::TST_enum, StartLoc,
3148 NameLoc.isValid() ? NameLoc : StartLoc,
3149 PrevSpec, DiagID, TagDecl, Owned))
John McCallfec54012009-08-03 20:12:06 +00003150 Diag(StartLoc, DiagID) << PrevSpec;
Reid Spencer5f016e22007-07-11 17:01:13 +00003151}
3152
3153/// ParseEnumBody - Parse a {} enclosed enumerator-list.
3154/// enumerator-list:
3155/// enumerator
3156/// enumerator-list ',' enumerator
3157/// enumerator:
3158/// enumeration-constant
3159/// enumeration-constant '=' constant-expression
3160/// enumeration-constant:
3161/// identifier
3162///
John McCalld226f652010-08-21 09:40:31 +00003163void Parser::ParseEnumBody(SourceLocation StartLoc, Decl *EnumDecl) {
Douglas Gregor074149e2009-01-05 19:45:36 +00003164 // Enter the scope of the enum body and start the definition.
3165 ParseScope EnumScope(this, Scope::DeclScope);
Douglas Gregor23c94db2010-07-02 17:43:08 +00003166 Actions.ActOnTagStartDefinition(getCurScope(), EnumDecl);
Douglas Gregor074149e2009-01-05 19:45:36 +00003167
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00003168 BalancedDelimiterTracker T(*this, tok::l_brace);
3169 T.consumeOpen();
Mike Stump1eb44332009-09-09 15:08:12 +00003170
Chris Lattner7946dd32007-08-27 17:24:30 +00003171 // C does not allow an empty enumerator-list, C++ does [dcl.enum].
David Blaikie4e4d0842012-03-11 07:00:24 +00003172 if (Tok.is(tok::r_brace) && !getLangOpts().CPlusPlus)
Fariborz Jahanian05115522010-05-28 22:23:22 +00003173 Diag(Tok, diag::error_empty_enum);
Mike Stump1eb44332009-09-09 15:08:12 +00003174
Chris Lattner5f9e2722011-07-23 10:55:15 +00003175 SmallVector<Decl *, 32> EnumConstantDecls;
Reid Spencer5f016e22007-07-11 17:01:13 +00003176
John McCalld226f652010-08-21 09:40:31 +00003177 Decl *LastEnumConstDecl = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00003178
Reid Spencer5f016e22007-07-11 17:01:13 +00003179 // Parse the enumerator-list.
Chris Lattner04d66662007-10-09 17:33:22 +00003180 while (Tok.is(tok::identifier)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003181 IdentifierInfo *Ident = Tok.getIdentifierInfo();
3182 SourceLocation IdentLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00003183
John McCall5b629aa2010-10-22 23:36:17 +00003184 // If attributes exist after the enumerator, parse them.
John McCall0b7e6782011-03-24 11:26:52 +00003185 ParsedAttributes attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +00003186 MaybeParseGNUAttributes(attrs);
John McCall5b629aa2010-10-22 23:36:17 +00003187
Reid Spencer5f016e22007-07-11 17:01:13 +00003188 SourceLocation EqualLoc;
John McCall60d7b3a2010-08-24 06:29:42 +00003189 ExprResult AssignedVal;
Fariborz Jahanian5a477db2011-12-09 01:15:54 +00003190 ParsingDeclRAIIObject PD(*this);
3191
Chris Lattner04d66662007-10-09 17:33:22 +00003192 if (Tok.is(tok::equal)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003193 EqualLoc = ConsumeToken();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00003194 AssignedVal = ParseConstantExpression();
3195 if (AssignedVal.isInvalid())
Reid Spencer5f016e22007-07-11 17:01:13 +00003196 SkipUntil(tok::comma, tok::r_brace, true, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00003197 }
Mike Stump1eb44332009-09-09 15:08:12 +00003198
Reid Spencer5f016e22007-07-11 17:01:13 +00003199 // Install the enumerator constant into EnumDecl.
John McCalld226f652010-08-21 09:40:31 +00003200 Decl *EnumConstDecl = Actions.ActOnEnumConstant(getCurScope(), EnumDecl,
3201 LastEnumConstDecl,
3202 IdentLoc, Ident,
John McCall7f040a92010-12-24 02:08:15 +00003203 attrs.getList(), EqualLoc,
John McCalld226f652010-08-21 09:40:31 +00003204 AssignedVal.release());
Fariborz Jahanian5a477db2011-12-09 01:15:54 +00003205 PD.complete(EnumConstDecl);
3206
Reid Spencer5f016e22007-07-11 17:01:13 +00003207 EnumConstantDecls.push_back(EnumConstDecl);
3208 LastEnumConstDecl = EnumConstDecl;
Mike Stump1eb44332009-09-09 15:08:12 +00003209
Douglas Gregor751f6922010-09-07 14:51:08 +00003210 if (Tok.is(tok::identifier)) {
3211 // We're missing a comma between enumerators.
3212 SourceLocation Loc = PP.getLocForEndOfToken(PrevTokLocation);
3213 Diag(Loc, diag::err_enumerator_list_missing_comma)
3214 << FixItHint::CreateInsertion(Loc, ", ");
3215 continue;
3216 }
3217
Chris Lattner04d66662007-10-09 17:33:22 +00003218 if (Tok.isNot(tok::comma))
Reid Spencer5f016e22007-07-11 17:01:13 +00003219 break;
3220 SourceLocation CommaLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00003221
Richard Smith7fe62082011-10-15 05:09:34 +00003222 if (Tok.isNot(tok::identifier)) {
David Blaikie4e4d0842012-03-11 07:00:24 +00003223 if (!getLangOpts().C99 && !getLangOpts().CPlusPlus0x)
Richard Smith7fe62082011-10-15 05:09:34 +00003224 Diag(CommaLoc, diag::ext_enumerator_list_comma)
David Blaikie4e4d0842012-03-11 07:00:24 +00003225 << getLangOpts().CPlusPlus
Richard Smith7fe62082011-10-15 05:09:34 +00003226 << FixItHint::CreateRemoval(CommaLoc);
David Blaikie4e4d0842012-03-11 07:00:24 +00003227 else if (getLangOpts().CPlusPlus0x)
Richard Smith7fe62082011-10-15 05:09:34 +00003228 Diag(CommaLoc, diag::warn_cxx98_compat_enumerator_list_comma)
3229 << FixItHint::CreateRemoval(CommaLoc);
3230 }
Reid Spencer5f016e22007-07-11 17:01:13 +00003231 }
Mike Stump1eb44332009-09-09 15:08:12 +00003232
Reid Spencer5f016e22007-07-11 17:01:13 +00003233 // Eat the }.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00003234 T.consumeClose();
Reid Spencer5f016e22007-07-11 17:01:13 +00003235
Reid Spencer5f016e22007-07-11 17:01:13 +00003236 // If attributes exist after the identifier list, parse them.
John McCall0b7e6782011-03-24 11:26:52 +00003237 ParsedAttributes attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +00003238 MaybeParseGNUAttributes(attrs);
Douglas Gregor72de6672009-01-08 20:45:30 +00003239
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00003240 Actions.ActOnEnumBody(StartLoc, T.getOpenLocation(), T.getCloseLocation(),
3241 EnumDecl, EnumConstantDecls.data(),
3242 EnumConstantDecls.size(), getCurScope(),
3243 attrs.getList());
Mike Stump1eb44332009-09-09 15:08:12 +00003244
Douglas Gregor72de6672009-01-08 20:45:30 +00003245 EnumScope.Exit();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00003246 Actions.ActOnTagFinishDefinition(getCurScope(), EnumDecl,
3247 T.getCloseLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00003248}
3249
3250/// isTypeSpecifierQualifier - Return true if the current token could be the
Steve Naroff5f8aa692008-02-11 23:15:56 +00003251/// start of a type-qualifier-list.
3252bool Parser::isTypeQualifier() const {
3253 switch (Tok.getKind()) {
3254 default: return false;
Peter Collingbourne207f4d82011-03-18 22:38:29 +00003255
3256 // type-qualifier only in OpenCL
3257 case tok::kw_private:
David Blaikie4e4d0842012-03-11 07:00:24 +00003258 return getLangOpts().OpenCL;
Peter Collingbourne207f4d82011-03-18 22:38:29 +00003259
Steve Naroff5f8aa692008-02-11 23:15:56 +00003260 // type-qualifier
3261 case tok::kw_const:
3262 case tok::kw_volatile:
3263 case tok::kw_restrict:
Peter Collingbourne207f4d82011-03-18 22:38:29 +00003264 case tok::kw___private:
3265 case tok::kw___local:
3266 case tok::kw___global:
3267 case tok::kw___constant:
3268 case tok::kw___read_only:
3269 case tok::kw___read_write:
3270 case tok::kw___write_only:
Steve Naroff5f8aa692008-02-11 23:15:56 +00003271 return true;
3272 }
3273}
3274
Chris Lattnerb3a4e432010-02-28 18:18:36 +00003275/// isKnownToBeTypeSpecifier - Return true if we know that the specified token
3276/// is definitely a type-specifier. Return false if it isn't part of a type
3277/// specifier or if we're not sure.
3278bool Parser::isKnownToBeTypeSpecifier(const Token &Tok) const {
3279 switch (Tok.getKind()) {
3280 default: return false;
3281 // type-specifiers
3282 case tok::kw_short:
3283 case tok::kw_long:
Francois Pichet338d7f72011-04-28 01:59:37 +00003284 case tok::kw___int64:
Chris Lattnerb3a4e432010-02-28 18:18:36 +00003285 case tok::kw_signed:
3286 case tok::kw_unsigned:
3287 case tok::kw__Complex:
3288 case tok::kw__Imaginary:
3289 case tok::kw_void:
3290 case tok::kw_char:
3291 case tok::kw_wchar_t:
3292 case tok::kw_char16_t:
3293 case tok::kw_char32_t:
3294 case tok::kw_int:
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +00003295 case tok::kw_half:
Chris Lattnerb3a4e432010-02-28 18:18:36 +00003296 case tok::kw_float:
3297 case tok::kw_double:
3298 case tok::kw_bool:
3299 case tok::kw__Bool:
3300 case tok::kw__Decimal32:
3301 case tok::kw__Decimal64:
3302 case tok::kw__Decimal128:
3303 case tok::kw___vector:
3304
3305 // struct-or-union-specifier (C99) or class-specifier (C++)
3306 case tok::kw_class:
3307 case tok::kw_struct:
3308 case tok::kw_union:
3309 // enum-specifier
3310 case tok::kw_enum:
3311
3312 // typedef-name
3313 case tok::annot_typename:
3314 return true;
3315 }
3316}
3317
Steve Naroff5f8aa692008-02-11 23:15:56 +00003318/// isTypeSpecifierQualifier - Return true if the current token could be the
Reid Spencer5f016e22007-07-11 17:01:13 +00003319/// start of a specifier-qualifier-list.
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00003320bool Parser::isTypeSpecifierQualifier() {
Reid Spencer5f016e22007-07-11 17:01:13 +00003321 switch (Tok.getKind()) {
3322 default: return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003323
Chris Lattner166a8fc2009-01-04 23:41:41 +00003324 case tok::identifier: // foo::bar
John Thompson82287d12010-02-05 00:12:22 +00003325 if (TryAltiVecVectorToken())
3326 return true;
3327 // Fall through.
Douglas Gregord57959a2009-03-27 23:10:48 +00003328 case tok::kw_typename: // typename T::type
Chris Lattner166a8fc2009-01-04 23:41:41 +00003329 // Annotate typenames and C++ scope specifiers. If we get one, just
3330 // recurse to handle whatever we get.
3331 if (TryAnnotateTypeOrScopeToken())
John McCall9ba61662010-02-26 08:45:28 +00003332 return true;
3333 if (Tok.is(tok::identifier))
3334 return false;
3335 return isTypeSpecifierQualifier();
Douglas Gregord57959a2009-03-27 23:10:48 +00003336
Chris Lattner166a8fc2009-01-04 23:41:41 +00003337 case tok::coloncolon: // ::foo::bar
3338 if (NextToken().is(tok::kw_new) || // ::new
3339 NextToken().is(tok::kw_delete)) // ::delete
3340 return false;
3341
Chris Lattner166a8fc2009-01-04 23:41:41 +00003342 if (TryAnnotateTypeOrScopeToken())
John McCall9ba61662010-02-26 08:45:28 +00003343 return true;
3344 return isTypeSpecifierQualifier();
Mike Stump1eb44332009-09-09 15:08:12 +00003345
Reid Spencer5f016e22007-07-11 17:01:13 +00003346 // GNU attributes support.
3347 case tok::kw___attribute:
Steve Naroffd1861fd2007-07-31 12:34:36 +00003348 // GNU typeof support.
3349 case tok::kw_typeof:
Mike Stump1eb44332009-09-09 15:08:12 +00003350
Reid Spencer5f016e22007-07-11 17:01:13 +00003351 // type-specifiers
3352 case tok::kw_short:
3353 case tok::kw_long:
Francois Pichet338d7f72011-04-28 01:59:37 +00003354 case tok::kw___int64:
Reid Spencer5f016e22007-07-11 17:01:13 +00003355 case tok::kw_signed:
3356 case tok::kw_unsigned:
3357 case tok::kw__Complex:
3358 case tok::kw__Imaginary:
3359 case tok::kw_void:
3360 case tok::kw_char:
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +00003361 case tok::kw_wchar_t:
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00003362 case tok::kw_char16_t:
3363 case tok::kw_char32_t:
Reid Spencer5f016e22007-07-11 17:01:13 +00003364 case tok::kw_int:
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +00003365 case tok::kw_half:
Reid Spencer5f016e22007-07-11 17:01:13 +00003366 case tok::kw_float:
3367 case tok::kw_double:
Chris Lattner9298d962007-11-15 05:25:19 +00003368 case tok::kw_bool:
Reid Spencer5f016e22007-07-11 17:01:13 +00003369 case tok::kw__Bool:
3370 case tok::kw__Decimal32:
3371 case tok::kw__Decimal64:
3372 case tok::kw__Decimal128:
John Thompson82287d12010-02-05 00:12:22 +00003373 case tok::kw___vector:
Mike Stump1eb44332009-09-09 15:08:12 +00003374
Chris Lattner99dc9142008-04-13 18:59:07 +00003375 // struct-or-union-specifier (C99) or class-specifier (C++)
3376 case tok::kw_class:
Reid Spencer5f016e22007-07-11 17:01:13 +00003377 case tok::kw_struct:
3378 case tok::kw_union:
3379 // enum-specifier
3380 case tok::kw_enum:
Mike Stump1eb44332009-09-09 15:08:12 +00003381
Reid Spencer5f016e22007-07-11 17:01:13 +00003382 // type-qualifier
3383 case tok::kw_const:
3384 case tok::kw_volatile:
3385 case tok::kw_restrict:
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00003386
3387 // typedef-name
Chris Lattnerb31757b2009-01-06 05:06:21 +00003388 case tok::annot_typename:
Reid Spencer5f016e22007-07-11 17:01:13 +00003389 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00003390
Chris Lattner7c186be2008-10-20 00:25:30 +00003391 // GNU ObjC bizarre protocol extension: <proto1,proto2> with implicit 'id'.
3392 case tok::less:
David Blaikie4e4d0842012-03-11 07:00:24 +00003393 return getLangOpts().ObjC1;
Mike Stump1eb44332009-09-09 15:08:12 +00003394
Steve Naroff239f0732008-12-25 14:16:32 +00003395 case tok::kw___cdecl:
3396 case tok::kw___stdcall:
3397 case tok::kw___fastcall:
Douglas Gregorf813a2c2010-05-18 16:57:00 +00003398 case tok::kw___thiscall:
Eli Friedman290eeb02009-06-08 23:27:34 +00003399 case tok::kw___w64:
3400 case tok::kw___ptr64:
Francois Pichet58fd97a2011-08-25 00:36:46 +00003401 case tok::kw___ptr32:
Dawn Perchik52fc3142010-09-03 01:29:35 +00003402 case tok::kw___pascal:
Francois Pichet3bd9aa42011-08-18 09:59:55 +00003403 case tok::kw___unaligned:
Peter Collingbourne207f4d82011-03-18 22:38:29 +00003404
3405 case tok::kw___private:
3406 case tok::kw___local:
3407 case tok::kw___global:
3408 case tok::kw___constant:
3409 case tok::kw___read_only:
3410 case tok::kw___read_write:
3411 case tok::kw___write_only:
3412
Eli Friedman290eeb02009-06-08 23:27:34 +00003413 return true;
Peter Collingbourne207f4d82011-03-18 22:38:29 +00003414
3415 case tok::kw_private:
David Blaikie4e4d0842012-03-11 07:00:24 +00003416 return getLangOpts().OpenCL;
Eli Friedmanb001de72011-10-06 23:00:33 +00003417
Benjamin Kramerffbe9b92011-12-23 17:00:35 +00003418 // C11 _Atomic()
Eli Friedmanb001de72011-10-06 23:00:33 +00003419 case tok::kw__Atomic:
3420 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00003421 }
3422}
3423
3424/// isDeclarationSpecifier() - Return true if the current token is part of a
3425/// declaration specifier.
Douglas Gregor9497a732010-09-16 01:51:54 +00003426///
3427/// \param DisambiguatingWithExpression True to indicate that the purpose of
3428/// this check is to disambiguate between an expression and a declaration.
3429bool Parser::isDeclarationSpecifier(bool DisambiguatingWithExpression) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003430 switch (Tok.getKind()) {
3431 default: return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003432
Peter Collingbourne207f4d82011-03-18 22:38:29 +00003433 case tok::kw_private:
David Blaikie4e4d0842012-03-11 07:00:24 +00003434 return getLangOpts().OpenCL;
Peter Collingbourne207f4d82011-03-18 22:38:29 +00003435
Chris Lattner166a8fc2009-01-04 23:41:41 +00003436 case tok::identifier: // foo::bar
Steve Naroff61f72cb2009-03-09 21:12:44 +00003437 // Unfortunate hack to support "Class.factoryMethod" notation.
David Blaikie4e4d0842012-03-11 07:00:24 +00003438 if (getLangOpts().ObjC1 && NextToken().is(tok::period))
Steve Naroff61f72cb2009-03-09 21:12:44 +00003439 return false;
John Thompson82287d12010-02-05 00:12:22 +00003440 if (TryAltiVecVectorToken())
3441 return true;
3442 // Fall through.
David Blaikie42d6d0c2011-12-04 05:04:18 +00003443 case tok::kw_decltype: // decltype(T())::type
Douglas Gregord57959a2009-03-27 23:10:48 +00003444 case tok::kw_typename: // typename T::type
Chris Lattner166a8fc2009-01-04 23:41:41 +00003445 // Annotate typenames and C++ scope specifiers. If we get one, just
3446 // recurse to handle whatever we get.
3447 if (TryAnnotateTypeOrScopeToken())
John McCall9ba61662010-02-26 08:45:28 +00003448 return true;
3449 if (Tok.is(tok::identifier))
3450 return false;
Douglas Gregor9497a732010-09-16 01:51:54 +00003451
3452 // If we're in Objective-C and we have an Objective-C class type followed
3453 // by an identifier and then either ':' or ']', in a place where an
3454 // expression is permitted, then this is probably a class message send
3455 // missing the initial '['. In this case, we won't consider this to be
3456 // the start of a declaration.
3457 if (DisambiguatingWithExpression &&
3458 isStartOfObjCClassMessageMissingOpenBracket())
3459 return false;
3460
John McCall9ba61662010-02-26 08:45:28 +00003461 return isDeclarationSpecifier();
3462
Chris Lattner166a8fc2009-01-04 23:41:41 +00003463 case tok::coloncolon: // ::foo::bar
3464 if (NextToken().is(tok::kw_new) || // ::new
3465 NextToken().is(tok::kw_delete)) // ::delete
3466 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003467
Chris Lattner166a8fc2009-01-04 23:41:41 +00003468 // Annotate typenames and C++ scope specifiers. If we get one, just
3469 // recurse to handle whatever we get.
3470 if (TryAnnotateTypeOrScopeToken())
John McCall9ba61662010-02-26 08:45:28 +00003471 return true;
3472 return isDeclarationSpecifier();
Mike Stump1eb44332009-09-09 15:08:12 +00003473
Reid Spencer5f016e22007-07-11 17:01:13 +00003474 // storage-class-specifier
3475 case tok::kw_typedef:
3476 case tok::kw_extern:
Steve Naroff8d54bf22007-12-18 00:16:02 +00003477 case tok::kw___private_extern__:
Reid Spencer5f016e22007-07-11 17:01:13 +00003478 case tok::kw_static:
3479 case tok::kw_auto:
3480 case tok::kw_register:
3481 case tok::kw___thread:
Mike Stump1eb44332009-09-09 15:08:12 +00003482
Douglas Gregor8d267c52011-09-09 02:06:17 +00003483 // Modules
3484 case tok::kw___module_private__:
3485
Reid Spencer5f016e22007-07-11 17:01:13 +00003486 // type-specifiers
3487 case tok::kw_short:
3488 case tok::kw_long:
Francois Pichet338d7f72011-04-28 01:59:37 +00003489 case tok::kw___int64:
Reid Spencer5f016e22007-07-11 17:01:13 +00003490 case tok::kw_signed:
3491 case tok::kw_unsigned:
3492 case tok::kw__Complex:
3493 case tok::kw__Imaginary:
3494 case tok::kw_void:
3495 case tok::kw_char:
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +00003496 case tok::kw_wchar_t:
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00003497 case tok::kw_char16_t:
3498 case tok::kw_char32_t:
3499
Reid Spencer5f016e22007-07-11 17:01:13 +00003500 case tok::kw_int:
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +00003501 case tok::kw_half:
Reid Spencer5f016e22007-07-11 17:01:13 +00003502 case tok::kw_float:
3503 case tok::kw_double:
Chris Lattner9298d962007-11-15 05:25:19 +00003504 case tok::kw_bool:
Reid Spencer5f016e22007-07-11 17:01:13 +00003505 case tok::kw__Bool:
3506 case tok::kw__Decimal32:
3507 case tok::kw__Decimal64:
3508 case tok::kw__Decimal128:
John Thompson82287d12010-02-05 00:12:22 +00003509 case tok::kw___vector:
Mike Stump1eb44332009-09-09 15:08:12 +00003510
Chris Lattner99dc9142008-04-13 18:59:07 +00003511 // struct-or-union-specifier (C99) or class-specifier (C++)
3512 case tok::kw_class:
Reid Spencer5f016e22007-07-11 17:01:13 +00003513 case tok::kw_struct:
3514 case tok::kw_union:
3515 // enum-specifier
3516 case tok::kw_enum:
Mike Stump1eb44332009-09-09 15:08:12 +00003517
Reid Spencer5f016e22007-07-11 17:01:13 +00003518 // type-qualifier
3519 case tok::kw_const:
3520 case tok::kw_volatile:
3521 case tok::kw_restrict:
Steve Naroffd1861fd2007-07-31 12:34:36 +00003522
Reid Spencer5f016e22007-07-11 17:01:13 +00003523 // function-specifier
3524 case tok::kw_inline:
Douglas Gregorb48fe382008-10-31 09:07:45 +00003525 case tok::kw_virtual:
3526 case tok::kw_explicit:
Chris Lattnerd6c7c182007-08-09 16:40:21 +00003527
Peter Collingbournec6eb44b2011-04-15 00:35:57 +00003528 // static_assert-declaration
3529 case tok::kw__Static_assert:
3530
Chris Lattner1ef08762007-08-09 17:01:07 +00003531 // GNU typeof support.
3532 case tok::kw_typeof:
Mike Stump1eb44332009-09-09 15:08:12 +00003533
Chris Lattner1ef08762007-08-09 17:01:07 +00003534 // GNU attributes.
Chris Lattnerd6c7c182007-08-09 16:40:21 +00003535 case tok::kw___attribute:
Reid Spencer5f016e22007-07-11 17:01:13 +00003536 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00003537
Francois Pichete3d49b42011-06-19 08:02:06 +00003538 // C++0x decltype.
David Blaikie42d6d0c2011-12-04 05:04:18 +00003539 case tok::annot_decltype:
Francois Pichete3d49b42011-06-19 08:02:06 +00003540 return true;
3541
Benjamin Kramerffbe9b92011-12-23 17:00:35 +00003542 // C11 _Atomic()
Eli Friedmanb001de72011-10-06 23:00:33 +00003543 case tok::kw__Atomic:
3544 return true;
3545
Chris Lattnerf3948c42008-07-26 03:38:44 +00003546 // GNU ObjC bizarre protocol extension: <proto1,proto2> with implicit 'id'.
3547 case tok::less:
David Blaikie4e4d0842012-03-11 07:00:24 +00003548 return getLangOpts().ObjC1;
Mike Stump1eb44332009-09-09 15:08:12 +00003549
Douglas Gregord9d75e52011-04-27 05:41:15 +00003550 // typedef-name
3551 case tok::annot_typename:
3552 return !DisambiguatingWithExpression ||
3553 !isStartOfObjCClassMessageMissingOpenBracket();
3554
Steve Naroff47f52092009-01-06 19:34:12 +00003555 case tok::kw___declspec:
Steve Naroff239f0732008-12-25 14:16:32 +00003556 case tok::kw___cdecl:
3557 case tok::kw___stdcall:
3558 case tok::kw___fastcall:
Douglas Gregorf813a2c2010-05-18 16:57:00 +00003559 case tok::kw___thiscall:
Eli Friedman290eeb02009-06-08 23:27:34 +00003560 case tok::kw___w64:
3561 case tok::kw___ptr64:
Francois Pichet58fd97a2011-08-25 00:36:46 +00003562 case tok::kw___ptr32:
Eli Friedman290eeb02009-06-08 23:27:34 +00003563 case tok::kw___forceinline:
Dawn Perchik52fc3142010-09-03 01:29:35 +00003564 case tok::kw___pascal:
Francois Pichet3bd9aa42011-08-18 09:59:55 +00003565 case tok::kw___unaligned:
Peter Collingbourne207f4d82011-03-18 22:38:29 +00003566
3567 case tok::kw___private:
3568 case tok::kw___local:
3569 case tok::kw___global:
3570 case tok::kw___constant:
3571 case tok::kw___read_only:
3572 case tok::kw___read_write:
3573 case tok::kw___write_only:
3574
Eli Friedman290eeb02009-06-08 23:27:34 +00003575 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00003576 }
3577}
3578
Douglas Gregor0efc2c12010-01-13 17:31:36 +00003579bool Parser::isConstructorDeclarator() {
3580 TentativeParsingAction TPA(*this);
3581
3582 // Parse the C++ scope specifier.
3583 CXXScopeSpec SS;
Douglas Gregorefaa93a2011-11-07 17:33:42 +00003584 if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(),
3585 /*EnteringContext=*/true)) {
John McCall9ba61662010-02-26 08:45:28 +00003586 TPA.Revert();
3587 return false;
3588 }
Douglas Gregor0efc2c12010-01-13 17:31:36 +00003589
3590 // Parse the constructor name.
3591 if (Tok.is(tok::identifier) || Tok.is(tok::annot_template_id)) {
3592 // We already know that we have a constructor name; just consume
3593 // the token.
3594 ConsumeToken();
3595 } else {
3596 TPA.Revert();
3597 return false;
3598 }
3599
3600 // Current class name must be followed by a left parentheses.
3601 if (Tok.isNot(tok::l_paren)) {
3602 TPA.Revert();
3603 return false;
3604 }
3605 ConsumeParen();
3606
3607 // A right parentheses or ellipsis signals that we have a constructor.
3608 if (Tok.is(tok::r_paren) || Tok.is(tok::ellipsis)) {
3609 TPA.Revert();
3610 return true;
3611 }
3612
3613 // If we need to, enter the specified scope.
3614 DeclaratorScopeObj DeclScopeObj(*this, SS);
Douglas Gregor23c94db2010-07-02 17:43:08 +00003615 if (SS.isSet() && Actions.ShouldEnterDeclaratorScope(getCurScope(), SS))
Douglas Gregor0efc2c12010-01-13 17:31:36 +00003616 DeclScopeObj.EnterDeclaratorScope();
3617
Francois Pichetdfaa5fb2011-01-31 04:54:32 +00003618 // Optionally skip Microsoft attributes.
John McCall0b7e6782011-03-24 11:26:52 +00003619 ParsedAttributes Attrs(AttrFactory);
Francois Pichetdfaa5fb2011-01-31 04:54:32 +00003620 MaybeParseMicrosoftAttributes(Attrs);
3621
Douglas Gregor0efc2c12010-01-13 17:31:36 +00003622 // Check whether the next token(s) are part of a declaration
3623 // specifier, in which case we have the start of a parameter and,
3624 // therefore, we know that this is a constructor.
3625 bool IsConstructor = isDeclarationSpecifier();
3626 TPA.Revert();
3627 return IsConstructor;
3628}
Reid Spencer5f016e22007-07-11 17:01:13 +00003629
3630/// ParseTypeQualifierListOpt
Dawn Perchik52fc3142010-09-03 01:29:35 +00003631/// type-qualifier-list: [C99 6.7.5]
3632/// type-qualifier
3633/// [vendor] attributes
3634/// [ only if VendorAttributesAllowed=true ]
3635/// type-qualifier-list type-qualifier
3636/// [vendor] type-qualifier-list attributes
3637/// [ only if VendorAttributesAllowed=true ]
3638/// [C++0x] attribute-specifier[opt] is allowed before cv-qualifier-seq
3639/// [ only if CXX0XAttributesAllowed=true ]
3640/// Note: vendor can be GNU, MS, etc.
Reid Spencer5f016e22007-07-11 17:01:13 +00003641///
Dawn Perchik52fc3142010-09-03 01:29:35 +00003642void Parser::ParseTypeQualifierListOpt(DeclSpec &DS,
3643 bool VendorAttributesAllowed,
Sean Huntbbd37c62009-11-21 08:43:09 +00003644 bool CXX0XAttributesAllowed) {
David Blaikie4e4d0842012-03-11 07:00:24 +00003645 if (getLangOpts().CPlusPlus0x && isCXX0XAttributeSpecifier()) {
Sean Huntbbd37c62009-11-21 08:43:09 +00003646 SourceLocation Loc = Tok.getLocation();
John McCall0b7e6782011-03-24 11:26:52 +00003647 ParsedAttributesWithRange attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +00003648 ParseCXX0XAttributes(attrs);
Sean Huntbbd37c62009-11-21 08:43:09 +00003649 if (CXX0XAttributesAllowed)
John McCall7f040a92010-12-24 02:08:15 +00003650 DS.takeAttributesFrom(attrs);
Sean Huntbbd37c62009-11-21 08:43:09 +00003651 else
3652 Diag(Loc, diag::err_attributes_not_allowed);
3653 }
Abramo Bagnara796aa442011-03-12 11:17:06 +00003654
3655 SourceLocation EndLoc;
3656
Reid Spencer5f016e22007-07-11 17:01:13 +00003657 while (1) {
John McCallfec54012009-08-03 20:12:06 +00003658 bool isInvalid = false;
Reid Spencer5f016e22007-07-11 17:01:13 +00003659 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +00003660 unsigned DiagID = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00003661 SourceLocation Loc = Tok.getLocation();
3662
3663 switch (Tok.getKind()) {
Douglas Gregor1a480c42010-08-27 17:35:51 +00003664 case tok::code_completion:
3665 Actions.CodeCompleteTypeQualifiers(DS);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00003666 return cutOffParsing();
Douglas Gregor1a480c42010-08-27 17:35:51 +00003667
Reid Spencer5f016e22007-07-11 17:01:13 +00003668 case tok::kw_const:
John McCallfec54012009-08-03 20:12:06 +00003669 isInvalid = DS.SetTypeQual(DeclSpec::TQ_const , Loc, PrevSpec, DiagID,
David Blaikie4e4d0842012-03-11 07:00:24 +00003670 getLangOpts());
Reid Spencer5f016e22007-07-11 17:01:13 +00003671 break;
3672 case tok::kw_volatile:
John McCallfec54012009-08-03 20:12:06 +00003673 isInvalid = DS.SetTypeQual(DeclSpec::TQ_volatile, Loc, PrevSpec, DiagID,
David Blaikie4e4d0842012-03-11 07:00:24 +00003674 getLangOpts());
Reid Spencer5f016e22007-07-11 17:01:13 +00003675 break;
3676 case tok::kw_restrict:
John McCallfec54012009-08-03 20:12:06 +00003677 isInvalid = DS.SetTypeQual(DeclSpec::TQ_restrict, Loc, PrevSpec, DiagID,
David Blaikie4e4d0842012-03-11 07:00:24 +00003678 getLangOpts());
Reid Spencer5f016e22007-07-11 17:01:13 +00003679 break;
Peter Collingbourne207f4d82011-03-18 22:38:29 +00003680
3681 // OpenCL qualifiers:
3682 case tok::kw_private:
David Blaikie4e4d0842012-03-11 07:00:24 +00003683 if (!getLangOpts().OpenCL)
Peter Collingbourne207f4d82011-03-18 22:38:29 +00003684 goto DoneWithTypeQuals;
3685 case tok::kw___private:
3686 case tok::kw___global:
3687 case tok::kw___local:
3688 case tok::kw___constant:
3689 case tok::kw___read_only:
3690 case tok::kw___write_only:
3691 case tok::kw___read_write:
3692 ParseOpenCLQualifiers(DS);
3693 break;
3694
Eli Friedman290eeb02009-06-08 23:27:34 +00003695 case tok::kw___w64:
Steve Naroff86bc6cf2008-12-25 14:41:26 +00003696 case tok::kw___ptr64:
Francois Pichet58fd97a2011-08-25 00:36:46 +00003697 case tok::kw___ptr32:
Steve Naroff239f0732008-12-25 14:16:32 +00003698 case tok::kw___cdecl:
3699 case tok::kw___stdcall:
3700 case tok::kw___fastcall:
Douglas Gregorf813a2c2010-05-18 16:57:00 +00003701 case tok::kw___thiscall:
Francois Pichet3bd9aa42011-08-18 09:59:55 +00003702 case tok::kw___unaligned:
Dawn Perchik52fc3142010-09-03 01:29:35 +00003703 if (VendorAttributesAllowed) {
John McCall7f040a92010-12-24 02:08:15 +00003704 ParseMicrosoftTypeAttributes(DS.getAttributes());
Eli Friedman290eeb02009-06-08 23:27:34 +00003705 continue;
3706 }
3707 goto DoneWithTypeQuals;
Dawn Perchik52fc3142010-09-03 01:29:35 +00003708 case tok::kw___pascal:
3709 if (VendorAttributesAllowed) {
John McCall7f040a92010-12-24 02:08:15 +00003710 ParseBorlandTypeAttributes(DS.getAttributes());
Dawn Perchik52fc3142010-09-03 01:29:35 +00003711 continue;
3712 }
3713 goto DoneWithTypeQuals;
Reid Spencer5f016e22007-07-11 17:01:13 +00003714 case tok::kw___attribute:
Dawn Perchik52fc3142010-09-03 01:29:35 +00003715 if (VendorAttributesAllowed) {
John McCall7f040a92010-12-24 02:08:15 +00003716 ParseGNUAttributes(DS.getAttributes());
Chris Lattner5a69d1c2008-12-18 07:02:59 +00003717 continue; // do *not* consume the next token!
3718 }
3719 // otherwise, FALL THROUGH!
3720 default:
Steve Naroff239f0732008-12-25 14:16:32 +00003721 DoneWithTypeQuals:
Chris Lattner5a69d1c2008-12-18 07:02:59 +00003722 // If this is not a type-qualifier token, we're done reading type
3723 // qualifiers. First verify that DeclSpec's are consistent.
Douglas Gregor9b3064b2009-04-01 22:41:11 +00003724 DS.Finish(Diags, PP);
Abramo Bagnara796aa442011-03-12 11:17:06 +00003725 if (EndLoc.isValid())
3726 DS.SetRangeEnd(EndLoc);
Chris Lattner5a69d1c2008-12-18 07:02:59 +00003727 return;
Reid Spencer5f016e22007-07-11 17:01:13 +00003728 }
Chris Lattnera1fcbad2008-12-18 06:50:14 +00003729
Reid Spencer5f016e22007-07-11 17:01:13 +00003730 // If the specifier combination wasn't legal, issue a diagnostic.
3731 if (isInvalid) {
3732 assert(PrevSpec && "Method did not return previous specifier!");
Chris Lattner1ab3b962008-11-18 07:48:38 +00003733 Diag(Tok, DiagID) << PrevSpec;
Reid Spencer5f016e22007-07-11 17:01:13 +00003734 }
Abramo Bagnara796aa442011-03-12 11:17:06 +00003735 EndLoc = ConsumeToken();
Reid Spencer5f016e22007-07-11 17:01:13 +00003736 }
3737}
3738
3739
3740/// ParseDeclarator - Parse and verify a newly-initialized declarator.
3741///
3742void Parser::ParseDeclarator(Declarator &D) {
3743 /// This implements the 'declarator' production in the C grammar, then checks
3744 /// for well-formedness and issues diagnostics.
Sebastian Redl4c5d3202008-11-21 19:14:01 +00003745 ParseDeclaratorInternal(D, &Parser::ParseDirectDeclarator);
Reid Spencer5f016e22007-07-11 17:01:13 +00003746}
3747
Sebastian Redl4c5d3202008-11-21 19:14:01 +00003748/// ParseDeclaratorInternal - Parse a C or C++ declarator. The direct-declarator
3749/// is parsed by the function passed to it. Pass null, and the direct-declarator
3750/// isn't parsed at all, making this function effectively parse the C++
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003751/// ptr-operator production.
3752///
Richard Smith0706df42011-10-19 21:33:05 +00003753/// If the grammar of this construct is extended, matching changes must also be
3754/// made to TryParseDeclarator and MightBeDeclarator.
3755///
Sebastian Redlf30208a2009-01-24 21:16:55 +00003756/// declarator: [C99 6.7.5] [C++ 8p4, dcl.decl]
3757/// [C] pointer[opt] direct-declarator
3758/// [C++] direct-declarator
3759/// [C++] ptr-operator declarator
Reid Spencer5f016e22007-07-11 17:01:13 +00003760///
3761/// pointer: [C99 6.7.5]
3762/// '*' type-qualifier-list[opt]
3763/// '*' type-qualifier-list[opt] pointer
3764///
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003765/// ptr-operator:
3766/// '*' cv-qualifier-seq[opt]
3767/// '&'
Sebastian Redl05532f22009-03-15 22:02:01 +00003768/// [C++0x] '&&'
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003769/// [GNU] '&' restrict[opt] attributes[opt]
Sebastian Redl05532f22009-03-15 22:02:01 +00003770/// [GNU?] '&&' restrict[opt] attributes[opt]
Sebastian Redlf30208a2009-01-24 21:16:55 +00003771/// '::'[opt] nested-name-specifier '*' cv-qualifier-seq[opt]
Sebastian Redl4c5d3202008-11-21 19:14:01 +00003772void Parser::ParseDeclaratorInternal(Declarator &D,
3773 DirectDeclParseFunction DirectDeclParser) {
Douglas Gregor91a28862009-08-26 14:27:30 +00003774 if (Diags.hasAllExtensionsSilenced())
3775 D.setExtension();
Douglas Gregor2ccccb32010-08-23 18:23:48 +00003776
Sebastian Redlf30208a2009-01-24 21:16:55 +00003777 // C++ member pointers start with a '::' or a nested-name.
3778 // Member pointers get special handling, since there's no place for the
3779 // scope spec in the generic path below.
David Blaikie4e4d0842012-03-11 07:00:24 +00003780 if (getLangOpts().CPlusPlus &&
Chris Lattnerf919bfe2009-03-24 17:04:48 +00003781 (Tok.is(tok::coloncolon) || Tok.is(tok::identifier) ||
3782 Tok.is(tok::annot_cxxscope))) {
Douglas Gregorefaa93a2011-11-07 17:33:42 +00003783 bool EnteringContext = D.getContext() == Declarator::FileContext ||
3784 D.getContext() == Declarator::MemberContext;
Sebastian Redlf30208a2009-01-24 21:16:55 +00003785 CXXScopeSpec SS;
Douglas Gregorefaa93a2011-11-07 17:33:42 +00003786 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), EnteringContext);
John McCall9ba61662010-02-26 08:45:28 +00003787
Jeffrey Yasskinedc28772010-04-07 23:29:58 +00003788 if (SS.isNotEmpty()) {
Mike Stump1eb44332009-09-09 15:08:12 +00003789 if (Tok.isNot(tok::star)) {
Sebastian Redlf30208a2009-01-24 21:16:55 +00003790 // The scope spec really belongs to the direct-declarator.
3791 D.getCXXScopeSpec() = SS;
3792 if (DirectDeclParser)
3793 (this->*DirectDeclParser)(D);
3794 return;
3795 }
3796
3797 SourceLocation Loc = ConsumeToken();
Sebastian Redlab197ba2009-02-09 18:23:29 +00003798 D.SetRangeEnd(Loc);
John McCall0b7e6782011-03-24 11:26:52 +00003799 DeclSpec DS(AttrFactory);
Sebastian Redlf30208a2009-01-24 21:16:55 +00003800 ParseTypeQualifierListOpt(DS);
Sebastian Redlab197ba2009-02-09 18:23:29 +00003801 D.ExtendWithDeclSpec(DS);
Sebastian Redlf30208a2009-01-24 21:16:55 +00003802
3803 // Recurse to parse whatever is left.
3804 ParseDeclaratorInternal(D, DirectDeclParser);
3805
3806 // Sema will have to catch (syntactically invalid) pointers into global
3807 // scope. It has to catch pointers into namespace scope anyway.
3808 D.AddTypeInfo(DeclaratorChunk::getMemberPointer(SS,DS.getTypeQualifiers(),
John McCall0b7e6782011-03-24 11:26:52 +00003809 Loc),
3810 DS.getAttributes(),
Sebastian Redlab197ba2009-02-09 18:23:29 +00003811 /* Don't replace range end. */SourceLocation());
Sebastian Redlf30208a2009-01-24 21:16:55 +00003812 return;
3813 }
3814 }
3815
3816 tok::TokenKind Kind = Tok.getKind();
Steve Naroff5618bd42008-08-27 16:04:49 +00003817 // Not a pointer, C++ reference, or block.
Chris Lattner9af55002009-03-27 04:18:06 +00003818 if (Kind != tok::star && Kind != tok::caret &&
David Blaikie4e4d0842012-03-11 07:00:24 +00003819 (Kind != tok::amp || !getLangOpts().CPlusPlus) &&
Sebastian Redl743de1f2009-03-23 00:00:23 +00003820 // We parse rvalue refs in C++03, because otherwise the errors are scary.
David Blaikie4e4d0842012-03-11 07:00:24 +00003821 (Kind != tok::ampamp || !getLangOpts().CPlusPlus)) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +00003822 if (DirectDeclParser)
3823 (this->*DirectDeclParser)(D);
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003824 return;
3825 }
Sebastian Redlf30208a2009-01-24 21:16:55 +00003826
Sebastian Redl05532f22009-03-15 22:02:01 +00003827 // Otherwise, '*' -> pointer, '^' -> block, '&' -> lvalue reference,
3828 // '&&' -> rvalue reference
Sebastian Redl743de1f2009-03-23 00:00:23 +00003829 SourceLocation Loc = ConsumeToken(); // Eat the *, ^, & or &&.
Sebastian Redlab197ba2009-02-09 18:23:29 +00003830 D.SetRangeEnd(Loc);
Reid Spencer5f016e22007-07-11 17:01:13 +00003831
Chris Lattner9af55002009-03-27 04:18:06 +00003832 if (Kind == tok::star || Kind == tok::caret) {
Chris Lattner76549142008-02-21 01:32:26 +00003833 // Is a pointer.
John McCall0b7e6782011-03-24 11:26:52 +00003834 DeclSpec DS(AttrFactory);
Sebastian Redlf30208a2009-01-24 21:16:55 +00003835
Reid Spencer5f016e22007-07-11 17:01:13 +00003836 ParseTypeQualifierListOpt(DS);
Sebastian Redlab197ba2009-02-09 18:23:29 +00003837 D.ExtendWithDeclSpec(DS);
Sebastian Redlf30208a2009-01-24 21:16:55 +00003838
Reid Spencer5f016e22007-07-11 17:01:13 +00003839 // Recursively parse the declarator.
Sebastian Redl4c5d3202008-11-21 19:14:01 +00003840 ParseDeclaratorInternal(D, DirectDeclParser);
Steve Naroff5618bd42008-08-27 16:04:49 +00003841 if (Kind == tok::star)
3842 // Remember that we parsed a pointer type, and remember the type-quals.
3843 D.AddTypeInfo(DeclaratorChunk::getPointer(DS.getTypeQualifiers(), Loc,
Chandler Carruthd067c072011-02-23 18:51:59 +00003844 DS.getConstSpecLoc(),
3845 DS.getVolatileSpecLoc(),
John McCall0b7e6782011-03-24 11:26:52 +00003846 DS.getRestrictSpecLoc()),
3847 DS.getAttributes(),
Sebastian Redlab197ba2009-02-09 18:23:29 +00003848 SourceLocation());
Steve Naroff5618bd42008-08-27 16:04:49 +00003849 else
3850 // Remember that we parsed a Block type, and remember the type-quals.
Mike Stump1eb44332009-09-09 15:08:12 +00003851 D.AddTypeInfo(DeclaratorChunk::getBlockPointer(DS.getTypeQualifiers(),
John McCall0b7e6782011-03-24 11:26:52 +00003852 Loc),
3853 DS.getAttributes(),
Sebastian Redlab197ba2009-02-09 18:23:29 +00003854 SourceLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00003855 } else {
3856 // Is a reference
John McCall0b7e6782011-03-24 11:26:52 +00003857 DeclSpec DS(AttrFactory);
Reid Spencer5f016e22007-07-11 17:01:13 +00003858
Sebastian Redl743de1f2009-03-23 00:00:23 +00003859 // Complain about rvalue references in C++03, but then go on and build
3860 // the declarator.
Richard Smith7fe62082011-10-15 05:09:34 +00003861 if (Kind == tok::ampamp)
David Blaikie4e4d0842012-03-11 07:00:24 +00003862 Diag(Loc, getLangOpts().CPlusPlus0x ?
Richard Smith7fe62082011-10-15 05:09:34 +00003863 diag::warn_cxx98_compat_rvalue_reference :
3864 diag::ext_rvalue_reference);
Sebastian Redl743de1f2009-03-23 00:00:23 +00003865
Reid Spencer5f016e22007-07-11 17:01:13 +00003866 // C++ 8.3.2p1: cv-qualified references are ill-formed except when the
3867 // cv-qualifiers are introduced through the use of a typedef or of a
3868 // template type argument, in which case the cv-qualifiers are ignored.
3869 //
3870 // [GNU] Retricted references are allowed.
3871 // [GNU] Attributes on references are allowed.
Sean Huntbbd37c62009-11-21 08:43:09 +00003872 // [C++0x] Attributes on references are not allowed.
3873 ParseTypeQualifierListOpt(DS, true, false);
Sebastian Redlab197ba2009-02-09 18:23:29 +00003874 D.ExtendWithDeclSpec(DS);
Reid Spencer5f016e22007-07-11 17:01:13 +00003875
3876 if (DS.getTypeQualifiers() != DeclSpec::TQ_unspecified) {
3877 if (DS.getTypeQualifiers() & DeclSpec::TQ_const)
3878 Diag(DS.getConstSpecLoc(),
Chris Lattner1ab3b962008-11-18 07:48:38 +00003879 diag::err_invalid_reference_qualifier_application) << "const";
Reid Spencer5f016e22007-07-11 17:01:13 +00003880 if (DS.getTypeQualifiers() & DeclSpec::TQ_volatile)
3881 Diag(DS.getVolatileSpecLoc(),
Chris Lattner1ab3b962008-11-18 07:48:38 +00003882 diag::err_invalid_reference_qualifier_application) << "volatile";
Reid Spencer5f016e22007-07-11 17:01:13 +00003883 }
3884
3885 // Recursively parse the declarator.
Sebastian Redl4c5d3202008-11-21 19:14:01 +00003886 ParseDeclaratorInternal(D, DirectDeclParser);
Reid Spencer5f016e22007-07-11 17:01:13 +00003887
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +00003888 if (D.getNumTypeObjects() > 0) {
3889 // C++ [dcl.ref]p4: There shall be no references to references.
3890 DeclaratorChunk& InnerChunk = D.getTypeObject(D.getNumTypeObjects() - 1);
3891 if (InnerChunk.Kind == DeclaratorChunk::Reference) {
Chris Lattnerda83bac2008-11-19 07:37:42 +00003892 if (const IdentifierInfo *II = D.getIdentifier())
3893 Diag(InnerChunk.Loc, diag::err_illegal_decl_reference_to_reference)
3894 << II;
3895 else
3896 Diag(InnerChunk.Loc, diag::err_illegal_decl_reference_to_reference)
3897 << "type name";
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +00003898
Sebastian Redl4c5d3202008-11-21 19:14:01 +00003899 // Once we've complained about the reference-to-reference, we
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +00003900 // can go ahead and build the (technically ill-formed)
3901 // declarator: reference collapsing will take care of it.
3902 }
3903 }
3904
Reid Spencer5f016e22007-07-11 17:01:13 +00003905 // Remember that we parsed a reference type. It doesn't have type-quals.
Chris Lattner76549142008-02-21 01:32:26 +00003906 D.AddTypeInfo(DeclaratorChunk::getReference(DS.getTypeQualifiers(), Loc,
Sebastian Redl05532f22009-03-15 22:02:01 +00003907 Kind == tok::amp),
John McCall0b7e6782011-03-24 11:26:52 +00003908 DS.getAttributes(),
Sebastian Redlab197ba2009-02-09 18:23:29 +00003909 SourceLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00003910 }
3911}
3912
3913/// ParseDirectDeclarator
3914/// direct-declarator: [C99 6.7.5]
Douglas Gregor42a552f2008-11-05 20:51:48 +00003915/// [C99] identifier
Reid Spencer5f016e22007-07-11 17:01:13 +00003916/// '(' declarator ')'
3917/// [GNU] '(' attributes declarator ')'
3918/// [C90] direct-declarator '[' constant-expression[opt] ']'
3919/// [C99] direct-declarator '[' type-qual-list[opt] assignment-expr[opt] ']'
3920/// [C99] direct-declarator '[' 'static' type-qual-list[opt] assign-expr ']'
3921/// [C99] direct-declarator '[' type-qual-list 'static' assignment-expr ']'
3922/// [C99] direct-declarator '[' type-qual-list[opt] '*' ']'
3923/// direct-declarator '(' parameter-type-list ')'
3924/// direct-declarator '(' identifier-list[opt] ')'
3925/// [GNU] direct-declarator '(' parameter-forward-declarations
3926/// parameter-type-list[opt] ')'
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00003927/// [C++] direct-declarator '(' parameter-declaration-clause ')'
3928/// cv-qualifier-seq[opt] exception-specification[opt]
Douglas Gregorb48fe382008-10-31 09:07:45 +00003929/// [C++] declarator-id
Douglas Gregor42a552f2008-11-05 20:51:48 +00003930///
3931/// declarator-id: [C++ 8]
Douglas Gregora8bc8c92010-12-23 22:44:42 +00003932/// '...'[opt] id-expression
Douglas Gregor42a552f2008-11-05 20:51:48 +00003933/// '::'[opt] nested-name-specifier[opt] type-name
3934///
3935/// id-expression: [C++ 5.1]
3936/// unqualified-id
Douglas Gregordb422df2009-09-25 21:45:23 +00003937/// qualified-id
Douglas Gregor42a552f2008-11-05 20:51:48 +00003938///
3939/// unqualified-id: [C++ 5.1]
Mike Stump1eb44332009-09-09 15:08:12 +00003940/// identifier
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00003941/// operator-function-id
Douglas Gregordb422df2009-09-25 21:45:23 +00003942/// conversion-function-id
Mike Stump1eb44332009-09-09 15:08:12 +00003943/// '~' class-name
Douglas Gregor39a8de12009-02-25 19:37:18 +00003944/// template-id
Argyrios Kyrtzidisc7ed9c62008-11-07 22:02:30 +00003945///
Reid Spencer5f016e22007-07-11 17:01:13 +00003946void Parser::ParseDirectDeclarator(Declarator &D) {
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00003947 DeclaratorScopeObj DeclScopeObj(*this, D.getCXXScopeSpec());
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00003948
David Blaikie4e4d0842012-03-11 07:00:24 +00003949 if (getLangOpts().CPlusPlus && D.mayHaveIdentifier()) {
Douglas Gregor3f9a0562009-11-03 01:35:08 +00003950 // ParseDeclaratorInternal might already have parsed the scope.
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00003951 if (D.getCXXScopeSpec().isEmpty()) {
Douglas Gregorefaa93a2011-11-07 17:33:42 +00003952 bool EnteringContext = D.getContext() == Declarator::FileContext ||
3953 D.getContext() == Declarator::MemberContext;
3954 ParseOptionalCXXScopeSpecifier(D.getCXXScopeSpec(), ParsedType(),
3955 EnteringContext);
John McCall9ba61662010-02-26 08:45:28 +00003956 }
3957
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00003958 if (D.getCXXScopeSpec().isValid()) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00003959 if (Actions.ShouldEnterDeclaratorScope(getCurScope(), D.getCXXScopeSpec()))
John McCalle7e278b2009-12-11 20:04:54 +00003960 // Change the declaration context for name lookup, until this function
3961 // is exited (and the declarator has been parsed).
3962 DeclScopeObj.EnterDeclaratorScope();
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00003963 }
3964
Douglas Gregora8bc8c92010-12-23 22:44:42 +00003965 // C++0x [dcl.fct]p14:
3966 // There is a syntactic ambiguity when an ellipsis occurs at the end
3967 // of a parameter-declaration-clause without a preceding comma. In
3968 // this case, the ellipsis is parsed as part of the
3969 // abstract-declarator if the type of the parameter names a template
3970 // parameter pack that has not been expanded; otherwise, it is parsed
3971 // as part of the parameter-declaration-clause.
3972 if (Tok.is(tok::ellipsis) &&
3973 !((D.getContext() == Declarator::PrototypeContext ||
3974 D.getContext() == Declarator::BlockLiteralContext) &&
Douglas Gregora8bc8c92010-12-23 22:44:42 +00003975 NextToken().is(tok::r_paren) &&
3976 !Actions.containsUnexpandedParameterPacks(D)))
3977 D.setEllipsisLoc(ConsumeToken());
3978
Douglas Gregor3f9a0562009-11-03 01:35:08 +00003979 if (Tok.is(tok::identifier) || Tok.is(tok::kw_operator) ||
3980 Tok.is(tok::annot_template_id) || Tok.is(tok::tilde)) {
3981 // We found something that indicates the start of an unqualified-id.
3982 // Parse that unqualified-id.
John McCallba9d8532010-04-13 06:39:49 +00003983 bool AllowConstructorName;
3984 if (D.getDeclSpec().hasTypeSpecifier())
3985 AllowConstructorName = false;
3986 else if (D.getCXXScopeSpec().isSet())
3987 AllowConstructorName =
3988 (D.getContext() == Declarator::FileContext ||
3989 (D.getContext() == Declarator::MemberContext &&
3990 D.getDeclSpec().isFriendSpecified()));
3991 else
3992 AllowConstructorName = (D.getContext() == Declarator::MemberContext);
3993
Abramo Bagnarae4b92762012-01-27 09:46:47 +00003994 SourceLocation TemplateKWLoc;
Douglas Gregor3f9a0562009-11-03 01:35:08 +00003995 if (ParseUnqualifiedId(D.getCXXScopeSpec(),
3996 /*EnteringContext=*/true,
3997 /*AllowDestructorName=*/true,
Douglas Gregor0efc2c12010-01-13 17:31:36 +00003998 AllowConstructorName,
John McCallb3d87482010-08-24 05:47:05 +00003999 ParsedType(),
Abramo Bagnarae4b92762012-01-27 09:46:47 +00004000 TemplateKWLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00004001 D.getName()) ||
4002 // Once we're past the identifier, if the scope was bad, mark the
4003 // whole declarator bad.
4004 D.getCXXScopeSpec().isInvalid()) {
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00004005 D.SetIdentifier(0, Tok.getLocation());
4006 D.setInvalidType(true);
Douglas Gregor3f9a0562009-11-03 01:35:08 +00004007 } else {
4008 // Parsed the unqualified-id; update range information and move along.
4009 if (D.getSourceRange().getBegin().isInvalid())
4010 D.SetRangeBegin(D.getName().getSourceRange().getBegin());
4011 D.SetRangeEnd(D.getName().getSourceRange().getEnd());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00004012 }
Douglas Gregor3f9a0562009-11-03 01:35:08 +00004013 goto PastIdentifier;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00004014 }
Douglas Gregor3f9a0562009-11-03 01:35:08 +00004015 } else if (Tok.is(tok::identifier) && D.mayHaveIdentifier()) {
David Blaikie4e4d0842012-03-11 07:00:24 +00004016 assert(!getLangOpts().CPlusPlus &&
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00004017 "There's a C++-specific check for tok::identifier above");
4018 assert(Tok.getIdentifierInfo() && "Not an identifier?");
4019 D.SetIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
4020 ConsumeToken();
Douglas Gregor3f9a0562009-11-03 01:35:08 +00004021 goto PastIdentifier;
4022 }
4023
4024 if (Tok.is(tok::l_paren)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00004025 // direct-declarator: '(' declarator ')'
4026 // direct-declarator: '(' attributes declarator ')'
4027 // Example: 'char (*X)' or 'int (*XX)(void)'
4028 ParseParenDeclarator(D);
Douglas Gregor0efc2c12010-01-13 17:31:36 +00004029
4030 // If the declarator was parenthesized, we entered the declarator
4031 // scope when parsing the parenthesized declarator, then exited
4032 // the scope already. Re-enter the scope, if we need to.
4033 if (D.getCXXScopeSpec().isSet()) {
Fariborz Jahanian46877cd2010-08-17 23:50:37 +00004034 // If there was an error parsing parenthesized declarator, declarator
4035 // scope may have been enterred before. Don't do it again.
4036 if (!D.isInvalidType() &&
4037 Actions.ShouldEnterDeclaratorScope(getCurScope(), D.getCXXScopeSpec()))
Douglas Gregor0efc2c12010-01-13 17:31:36 +00004038 // Change the declaration context for name lookup, until this function
4039 // is exited (and the declarator has been parsed).
Fariborz Jahanian46877cd2010-08-17 23:50:37 +00004040 DeclScopeObj.EnterDeclaratorScope();
Douglas Gregor0efc2c12010-01-13 17:31:36 +00004041 }
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00004042 } else if (D.mayOmitIdentifier()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00004043 // This could be something simple like "int" (in which case the declarator
4044 // portion is empty), if an abstract-declarator is allowed.
4045 D.SetIdentifier(0, Tok.getLocation());
4046 } else {
Douglas Gregore950d4b2009-03-06 23:28:18 +00004047 if (D.getContext() == Declarator::MemberContext)
4048 Diag(Tok, diag::err_expected_member_name_or_semi)
4049 << D.getDeclSpec().getSourceRange();
David Blaikie4e4d0842012-03-11 07:00:24 +00004050 else if (getLangOpts().CPlusPlus)
4051 Diag(Tok, diag::err_expected_unqualified_id) << getLangOpts().CPlusPlus;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00004052 else
Chris Lattner1ab3b962008-11-18 07:48:38 +00004053 Diag(Tok, diag::err_expected_ident_lparen);
Reid Spencer5f016e22007-07-11 17:01:13 +00004054 D.SetIdentifier(0, Tok.getLocation());
Chris Lattner1f6f54b2008-11-11 06:13:16 +00004055 D.setInvalidType(true);
Reid Spencer5f016e22007-07-11 17:01:13 +00004056 }
Mike Stump1eb44332009-09-09 15:08:12 +00004057
Argyrios Kyrtzidis314fe782008-11-26 22:40:03 +00004058 PastIdentifier:
Reid Spencer5f016e22007-07-11 17:01:13 +00004059 assert(D.isPastIdentifier() &&
4060 "Haven't past the location of the identifier yet?");
Mike Stump1eb44332009-09-09 15:08:12 +00004061
Sean Huntbbd37c62009-11-21 08:43:09 +00004062 // Don't parse attributes unless we have an identifier.
John McCall7f040a92010-12-24 02:08:15 +00004063 if (D.getIdentifier())
4064 MaybeParseCXX0XAttributes(D);
Sean Huntbbd37c62009-11-21 08:43:09 +00004065
Reid Spencer5f016e22007-07-11 17:01:13 +00004066 while (1) {
Chris Lattner04d66662007-10-09 17:33:22 +00004067 if (Tok.is(tok::l_paren)) {
David Blaikie42d6d0c2011-12-04 05:04:18 +00004068 // Enter function-declaration scope, limiting any declarators to the
4069 // function prototype scope, including parameter declarators.
4070 ParseScope PrototypeScope(this,
4071 Scope::FunctionPrototypeScope|Scope::DeclScope);
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00004072 // The paren may be part of a C++ direct initializer, eg. "int x(1);".
4073 // In such a case, check if we actually have a function declarator; if it
4074 // is not, the declarator has been fully parsed.
David Blaikie4e4d0842012-03-11 07:00:24 +00004075 if (getLangOpts().CPlusPlus && D.mayBeFollowedByCXXDirectInit()) {
Chris Lattner7399ee02008-10-20 02:05:46 +00004076 // When not in file scope, warn for ambiguous function declarators, just
4077 // in case the author intended it as a variable definition.
4078 bool warnIfAmbiguous = D.getContext() != Declarator::FileContext;
4079 if (!isCXXFunctionDeclarator(warnIfAmbiguous))
4080 break;
4081 }
John McCall0b7e6782011-03-24 11:26:52 +00004082 ParsedAttributes attrs(AttrFactory);
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004083 BalancedDelimiterTracker T(*this, tok::l_paren);
4084 T.consumeOpen();
4085 ParseFunctionDeclarator(D, attrs, T);
David Blaikie42d6d0c2011-12-04 05:04:18 +00004086 PrototypeScope.Exit();
Chris Lattner04d66662007-10-09 17:33:22 +00004087 } else if (Tok.is(tok::l_square)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00004088 ParseBracketDeclarator(D);
4089 } else {
4090 break;
4091 }
4092 }
David Blaikie42d6d0c2011-12-04 05:04:18 +00004093}
Reid Spencer5f016e22007-07-11 17:01:13 +00004094
Chris Lattneref4715c2008-04-06 05:45:57 +00004095/// ParseParenDeclarator - We parsed the declarator D up to a paren. This is
4096/// only called before the identifier, so these are most likely just grouping
Mike Stump1eb44332009-09-09 15:08:12 +00004097/// parens for precedence. If we find that these are actually function
Chris Lattneref4715c2008-04-06 05:45:57 +00004098/// parameter parens in an abstract-declarator, we call ParseFunctionDeclarator.
4099///
4100/// direct-declarator:
4101/// '(' declarator ')'
4102/// [GNU] '(' attributes declarator ')'
Chris Lattner7399ee02008-10-20 02:05:46 +00004103/// direct-declarator '(' parameter-type-list ')'
4104/// direct-declarator '(' identifier-list[opt] ')'
4105/// [GNU] direct-declarator '(' parameter-forward-declarations
4106/// parameter-type-list[opt] ')'
Chris Lattneref4715c2008-04-06 05:45:57 +00004107///
4108void Parser::ParseParenDeclarator(Declarator &D) {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004109 BalancedDelimiterTracker T(*this, tok::l_paren);
4110 T.consumeOpen();
4111
Chris Lattneref4715c2008-04-06 05:45:57 +00004112 assert(!D.isPastIdentifier() && "Should be called before passing identifier");
Mike Stump1eb44332009-09-09 15:08:12 +00004113
Chris Lattner7399ee02008-10-20 02:05:46 +00004114 // Eat any attributes before we look at whether this is a grouping or function
4115 // declarator paren. If this is a grouping paren, the attribute applies to
4116 // the type being built up, for example:
4117 // int (__attribute__(()) *x)(long y)
4118 // If this ends up not being a grouping paren, the attribute applies to the
4119 // first argument, for example:
4120 // int (__attribute__(()) int x)
4121 // In either case, we need to eat any attributes to be able to determine what
4122 // sort of paren this is.
4123 //
John McCall0b7e6782011-03-24 11:26:52 +00004124 ParsedAttributes attrs(AttrFactory);
Chris Lattner7399ee02008-10-20 02:05:46 +00004125 bool RequiresArg = false;
4126 if (Tok.is(tok::kw___attribute)) {
John McCall7f040a92010-12-24 02:08:15 +00004127 ParseGNUAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +00004128
Chris Lattner7399ee02008-10-20 02:05:46 +00004129 // We require that the argument list (if this is a non-grouping paren) be
4130 // present even if the attribute list was empty.
4131 RequiresArg = true;
4132 }
Steve Naroff239f0732008-12-25 14:16:32 +00004133 // Eat any Microsoft extensions.
Eli Friedman290eeb02009-06-08 23:27:34 +00004134 if (Tok.is(tok::kw___cdecl) || Tok.is(tok::kw___stdcall) ||
Douglas Gregorf813a2c2010-05-18 16:57:00 +00004135 Tok.is(tok::kw___thiscall) || Tok.is(tok::kw___fastcall) ||
Francois Pichet3bd9aa42011-08-18 09:59:55 +00004136 Tok.is(tok::kw___w64) || Tok.is(tok::kw___ptr64) ||
Francois Pichet58fd97a2011-08-25 00:36:46 +00004137 Tok.is(tok::kw___ptr32) || Tok.is(tok::kw___unaligned)) {
John McCall7f040a92010-12-24 02:08:15 +00004138 ParseMicrosoftTypeAttributes(attrs);
Eli Friedman290eeb02009-06-08 23:27:34 +00004139 }
Dawn Perchik52fc3142010-09-03 01:29:35 +00004140 // Eat any Borland extensions.
Ted Kremenek8113ecf2010-11-10 05:59:39 +00004141 if (Tok.is(tok::kw___pascal))
John McCall7f040a92010-12-24 02:08:15 +00004142 ParseBorlandTypeAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +00004143
Chris Lattneref4715c2008-04-06 05:45:57 +00004144 // If we haven't past the identifier yet (or where the identifier would be
4145 // stored, if this is an abstract declarator), then this is probably just
4146 // grouping parens. However, if this could be an abstract-declarator, then
4147 // this could also be the start of function arguments (consider 'void()').
4148 bool isGrouping;
Mike Stump1eb44332009-09-09 15:08:12 +00004149
Chris Lattneref4715c2008-04-06 05:45:57 +00004150 if (!D.mayOmitIdentifier()) {
4151 // If this can't be an abstract-declarator, this *must* be a grouping
4152 // paren, because we haven't seen the identifier yet.
4153 isGrouping = true;
4154 } else if (Tok.is(tok::r_paren) || // 'int()' is a function.
David Blaikie4e4d0842012-03-11 07:00:24 +00004155 (getLangOpts().CPlusPlus && Tok.is(tok::ellipsis)) || // C++ int(...)
Chris Lattneref4715c2008-04-06 05:45:57 +00004156 isDeclarationSpecifier()) { // 'int(int)' is a function.
4157 // This handles C99 6.7.5.3p11: in "typedef int X; void foo(X)", X is
4158 // considered to be a type, not a K&R identifier-list.
4159 isGrouping = false;
4160 } else {
4161 // Otherwise, this is a grouping paren, e.g. 'int (*X)' or 'int(X)'.
4162 isGrouping = true;
4163 }
Mike Stump1eb44332009-09-09 15:08:12 +00004164
Chris Lattneref4715c2008-04-06 05:45:57 +00004165 // If this is a grouping paren, handle:
4166 // direct-declarator: '(' declarator ')'
4167 // direct-declarator: '(' attributes declarator ')'
4168 if (isGrouping) {
Argyrios Kyrtzidis3f2a8a02008-10-07 10:21:57 +00004169 bool hadGroupingParens = D.hasGroupingParens();
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00004170 D.setGroupingParens(true);
4171
Sebastian Redl4c5d3202008-11-21 19:14:01 +00004172 ParseDeclaratorInternal(D, &Parser::ParseDirectDeclarator);
Chris Lattneref4715c2008-04-06 05:45:57 +00004173 // Match the ')'.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004174 T.consumeClose();
4175 D.AddTypeInfo(DeclaratorChunk::getParen(T.getOpenLocation(),
4176 T.getCloseLocation()),
4177 attrs, T.getCloseLocation());
Argyrios Kyrtzidis3f2a8a02008-10-07 10:21:57 +00004178
4179 D.setGroupingParens(hadGroupingParens);
Chris Lattneref4715c2008-04-06 05:45:57 +00004180 return;
4181 }
Mike Stump1eb44332009-09-09 15:08:12 +00004182
Chris Lattneref4715c2008-04-06 05:45:57 +00004183 // Okay, if this wasn't a grouping paren, it must be the start of a function
4184 // argument list. Recognize that this declarator will never have an
Chris Lattner7399ee02008-10-20 02:05:46 +00004185 // identifier (and remember where it would have been), then call into
4186 // ParseFunctionDeclarator to handle of argument list.
Chris Lattneref4715c2008-04-06 05:45:57 +00004187 D.SetIdentifier(0, Tok.getLocation());
4188
David Blaikie42d6d0c2011-12-04 05:04:18 +00004189 // Enter function-declaration scope, limiting any declarators to the
4190 // function prototype scope, including parameter declarators.
4191 ParseScope PrototypeScope(this,
4192 Scope::FunctionPrototypeScope|Scope::DeclScope);
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004193 ParseFunctionDeclarator(D, attrs, T, RequiresArg);
David Blaikie42d6d0c2011-12-04 05:04:18 +00004194 PrototypeScope.Exit();
Chris Lattneref4715c2008-04-06 05:45:57 +00004195}
4196
4197/// ParseFunctionDeclarator - We are after the identifier and have parsed the
4198/// declarator D up to a paren, which indicates that we are parsing function
4199/// arguments.
Reid Spencer5f016e22007-07-11 17:01:13 +00004200///
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004201/// If attrs is non-null, then the caller parsed those arguments immediately
Chris Lattner7399ee02008-10-20 02:05:46 +00004202/// after the open paren - they should be considered to be the first argument of
4203/// a parameter. If RequiresArg is true, then the first argument of the
4204/// function is required to be present and required to not be an identifier
4205/// list.
4206///
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004207/// For C++, after the parameter-list, it also parses cv-qualifier-seq[opt],
4208/// (C++0x) ref-qualifier[opt], exception-specification[opt], and
4209/// (C++0x) trailing-return-type[opt].
4210///
4211/// [C++0x] exception-specification:
4212/// dynamic-exception-specification
4213/// noexcept-specification
4214///
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004215void Parser::ParseFunctionDeclarator(Declarator &D,
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004216 ParsedAttributes &attrs,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004217 BalancedDelimiterTracker &Tracker,
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004218 bool RequiresArg) {
David Blaikie42d6d0c2011-12-04 05:04:18 +00004219 assert(getCurScope()->isFunctionPrototypeScope() &&
4220 "Should call from a Function scope");
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004221 // lparen is already consumed!
4222 assert(D.isPastIdentifier() && "Should not call before identifier!");
4223
4224 // This should be true when the function has typed arguments.
4225 // Otherwise, it is treated as a K&R-style function.
4226 bool HasProto = false;
4227 // Build up an array of information about the parsed arguments.
Chris Lattner5f9e2722011-07-23 10:55:15 +00004228 SmallVector<DeclaratorChunk::ParamInfo, 16> ParamInfo;
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004229 // Remember where we see an ellipsis, if any.
4230 SourceLocation EllipsisLoc;
4231
4232 DeclSpec DS(AttrFactory);
4233 bool RefQualifierIsLValueRef = true;
4234 SourceLocation RefQualifierLoc;
Douglas Gregor43f51032011-10-19 06:04:55 +00004235 SourceLocation ConstQualifierLoc;
4236 SourceLocation VolatileQualifierLoc;
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004237 ExceptionSpecificationType ESpecType = EST_None;
4238 SourceRange ESpecRange;
Chris Lattner5f9e2722011-07-23 10:55:15 +00004239 SmallVector<ParsedType, 2> DynamicExceptions;
4240 SmallVector<SourceRange, 2> DynamicExceptionRanges;
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004241 ExprResult NoexceptExpr;
4242 ParsedType TrailingReturnType;
4243
James Molloy16f1f712012-02-29 10:24:19 +00004244 Actions.ActOnStartFunctionDeclarator();
4245
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004246 SourceLocation EndLoc;
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004247 if (isFunctionDeclaratorIdentifierList()) {
4248 if (RequiresArg)
4249 Diag(Tok, diag::err_argument_required_after_attribute);
4250
4251 ParseFunctionDeclaratorIdentifierList(D, ParamInfo);
4252
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004253 Tracker.consumeClose();
4254 EndLoc = Tracker.getCloseLocation();
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004255 } else {
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004256 if (Tok.isNot(tok::r_paren))
4257 ParseParameterDeclarationClause(D, attrs, ParamInfo, EllipsisLoc);
4258 else if (RequiresArg)
4259 Diag(Tok, diag::err_argument_required_after_attribute);
4260
David Blaikie4e4d0842012-03-11 07:00:24 +00004261 HasProto = ParamInfo.size() || getLangOpts().CPlusPlus;
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004262
4263 // If we have the closing ')', eat it.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004264 Tracker.consumeClose();
4265 EndLoc = Tracker.getCloseLocation();
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004266
David Blaikie4e4d0842012-03-11 07:00:24 +00004267 if (getLangOpts().CPlusPlus) {
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004268 MaybeParseCXX0XAttributes(attrs);
4269
4270 // Parse cv-qualifier-seq[opt].
4271 ParseTypeQualifierListOpt(DS, false /*no attributes*/);
Douglas Gregor43f51032011-10-19 06:04:55 +00004272 if (!DS.getSourceRange().getEnd().isInvalid()) {
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004273 EndLoc = DS.getSourceRange().getEnd();
Douglas Gregor43f51032011-10-19 06:04:55 +00004274 ConstQualifierLoc = DS.getConstSpecLoc();
4275 VolatileQualifierLoc = DS.getVolatileSpecLoc();
4276 }
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004277
4278 // Parse ref-qualifier[opt].
4279 if (Tok.is(tok::amp) || Tok.is(tok::ampamp)) {
David Blaikie4e4d0842012-03-11 07:00:24 +00004280 Diag(Tok, getLangOpts().CPlusPlus0x ?
Richard Smith7fe62082011-10-15 05:09:34 +00004281 diag::warn_cxx98_compat_ref_qualifier :
4282 diag::ext_ref_qualifier);
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004283
4284 RefQualifierIsLValueRef = Tok.is(tok::amp);
4285 RefQualifierLoc = ConsumeToken();
4286 EndLoc = RefQualifierLoc;
4287 }
4288
4289 // Parse exception-specification[opt].
4290 ESpecType = MaybeParseExceptionSpecification(ESpecRange,
4291 DynamicExceptions,
4292 DynamicExceptionRanges,
4293 NoexceptExpr);
4294 if (ESpecType != EST_None)
4295 EndLoc = ESpecRange.getEnd();
4296
4297 // Parse trailing-return-type[opt].
David Blaikie4e4d0842012-03-11 07:00:24 +00004298 if (getLangOpts().CPlusPlus0x && Tok.is(tok::arrow)) {
Richard Smith7fe62082011-10-15 05:09:34 +00004299 Diag(Tok, diag::warn_cxx98_compat_trailing_return_type);
Douglas Gregorae7902c2011-08-04 15:30:47 +00004300 SourceRange Range;
4301 TrailingReturnType = ParseTrailingReturnType(Range).get();
4302 if (Range.getEnd().isValid())
4303 EndLoc = Range.getEnd();
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004304 }
4305 }
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004306 }
4307
4308 // Remember that we parsed a function type, and remember the attributes.
4309 D.AddTypeInfo(DeclaratorChunk::getFunction(HasProto,
4310 /*isVariadic=*/EllipsisLoc.isValid(),
4311 EllipsisLoc,
4312 ParamInfo.data(), ParamInfo.size(),
4313 DS.getTypeQualifiers(),
4314 RefQualifierIsLValueRef,
Douglas Gregor43f51032011-10-19 06:04:55 +00004315 RefQualifierLoc, ConstQualifierLoc,
4316 VolatileQualifierLoc,
Douglas Gregor90ebed02011-07-13 21:47:47 +00004317 /*MutableLoc=*/SourceLocation(),
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004318 ESpecType, ESpecRange.getBegin(),
4319 DynamicExceptions.data(),
4320 DynamicExceptionRanges.data(),
4321 DynamicExceptions.size(),
4322 NoexceptExpr.isUsable() ?
4323 NoexceptExpr.get() : 0,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004324 Tracker.getOpenLocation(),
4325 EndLoc, D,
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004326 TrailingReturnType),
4327 attrs, EndLoc);
James Molloy16f1f712012-02-29 10:24:19 +00004328
4329 Actions.ActOnEndFunctionDeclarator();
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004330}
4331
4332/// isFunctionDeclaratorIdentifierList - This parameter list may have an
4333/// identifier list form for a K&R-style function: void foo(a,b,c)
4334///
4335/// Note that identifier-lists are only allowed for normal declarators, not for
4336/// abstract-declarators.
4337bool Parser::isFunctionDeclaratorIdentifierList() {
David Blaikie4e4d0842012-03-11 07:00:24 +00004338 return !getLangOpts().CPlusPlus
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004339 && Tok.is(tok::identifier)
4340 && !TryAltiVecVectorToken()
4341 // K&R identifier lists can't have typedefs as identifiers, per C99
4342 // 6.7.5.3p11.
4343 && (TryAnnotateTypeOrScopeToken() || !Tok.is(tok::annot_typename))
4344 // Identifier lists follow a really simple grammar: the identifiers can
4345 // be followed *only* by a ", identifier" or ")". However, K&R
4346 // identifier lists are really rare in the brave new modern world, and
4347 // it is very common for someone to typo a type in a non-K&R style
4348 // list. If we are presented with something like: "void foo(intptr x,
4349 // float y)", we don't want to start parsing the function declarator as
4350 // though it is a K&R style declarator just because intptr is an
4351 // invalid type.
4352 //
4353 // To handle this, we check to see if the token after the first
4354 // identifier is a "," or ")". Only then do we parse it as an
4355 // identifier list.
4356 && (NextToken().is(tok::comma) || NextToken().is(tok::r_paren));
4357}
4358
4359/// ParseFunctionDeclaratorIdentifierList - While parsing a function declarator
4360/// we found a K&R-style identifier list instead of a typed parameter list.
4361///
4362/// After returning, ParamInfo will hold the parsed parameters.
4363///
4364/// identifier-list: [C99 6.7.5]
4365/// identifier
4366/// identifier-list ',' identifier
4367///
4368void Parser::ParseFunctionDeclaratorIdentifierList(
4369 Declarator &D,
Chris Lattner5f9e2722011-07-23 10:55:15 +00004370 SmallVector<DeclaratorChunk::ParamInfo, 16> &ParamInfo) {
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004371 // If there was no identifier specified for the declarator, either we are in
4372 // an abstract-declarator, or we are in a parameter declarator which was found
4373 // to be abstract. In abstract-declarators, identifier lists are not valid:
4374 // diagnose this.
4375 if (!D.getIdentifier())
4376 Diag(Tok, diag::ext_ident_list_in_param);
4377
4378 // Maintain an efficient lookup of params we have seen so far.
4379 llvm::SmallSet<const IdentifierInfo*, 16> ParamsSoFar;
4380
4381 while (1) {
4382 // If this isn't an identifier, report the error and skip until ')'.
4383 if (Tok.isNot(tok::identifier)) {
4384 Diag(Tok, diag::err_expected_ident);
4385 SkipUntil(tok::r_paren, /*StopAtSemi=*/true, /*DontConsume=*/true);
4386 // Forget we parsed anything.
4387 ParamInfo.clear();
4388 return;
4389 }
4390
4391 IdentifierInfo *ParmII = Tok.getIdentifierInfo();
4392
4393 // Reject 'typedef int y; int test(x, y)', but continue parsing.
4394 if (Actions.getTypeName(*ParmII, Tok.getLocation(), getCurScope()))
4395 Diag(Tok, diag::err_unexpected_typedef_ident) << ParmII;
4396
4397 // Verify that the argument identifier has not already been mentioned.
4398 if (!ParamsSoFar.insert(ParmII)) {
4399 Diag(Tok, diag::err_param_redefinition) << ParmII;
4400 } else {
4401 // Remember this identifier in ParamInfo.
4402 ParamInfo.push_back(DeclaratorChunk::ParamInfo(ParmII,
4403 Tok.getLocation(),
4404 0));
4405 }
4406
4407 // Eat the identifier.
4408 ConsumeToken();
4409
4410 // The list continues if we see a comma.
4411 if (Tok.isNot(tok::comma))
4412 break;
4413 ConsumeToken();
4414 }
4415}
4416
4417/// ParseParameterDeclarationClause - Parse a (possibly empty) parameter-list
4418/// after the opening parenthesis. This function will not parse a K&R-style
4419/// identifier list.
4420///
4421/// D is the declarator being parsed. If attrs is non-null, then the caller
4422/// parsed those arguments immediately after the open paren - they should be
4423/// considered to be the first argument of a parameter.
4424///
4425/// After returning, ParamInfo will hold the parsed parameters. EllipsisLoc will
4426/// be the location of the ellipsis, if any was parsed.
4427///
Reid Spencer5f016e22007-07-11 17:01:13 +00004428/// parameter-type-list: [C99 6.7.5]
4429/// parameter-list
4430/// parameter-list ',' '...'
Douglas Gregored5d6512009-09-22 21:41:40 +00004431/// [C++] parameter-list '...'
Reid Spencer5f016e22007-07-11 17:01:13 +00004432///
4433/// parameter-list: [C99 6.7.5]
4434/// parameter-declaration
4435/// parameter-list ',' parameter-declaration
4436///
4437/// parameter-declaration: [C99 6.7.5]
4438/// declaration-specifiers declarator
Chris Lattner04421082008-04-08 04:40:51 +00004439/// [C++] declaration-specifiers declarator '=' assignment-expression
Reid Spencer5f016e22007-07-11 17:01:13 +00004440/// [GNU] declaration-specifiers declarator attributes
Sebastian Redl50de12f2009-03-24 22:27:57 +00004441/// declaration-specifiers abstract-declarator[opt]
4442/// [C++] declaration-specifiers abstract-declarator[opt]
Chris Lattner8123a952008-04-10 02:22:51 +00004443/// '=' assignment-expression
Reid Spencer5f016e22007-07-11 17:01:13 +00004444/// [GNU] declaration-specifiers abstract-declarator[opt] attributes
4445///
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004446void Parser::ParseParameterDeclarationClause(
4447 Declarator &D,
4448 ParsedAttributes &attrs,
Chris Lattner5f9e2722011-07-23 10:55:15 +00004449 SmallVector<DeclaratorChunk::ParamInfo, 16> &ParamInfo,
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004450 SourceLocation &EllipsisLoc) {
Mike Stump1eb44332009-09-09 15:08:12 +00004451
Chris Lattnerf97409f2008-04-06 06:57:35 +00004452 while (1) {
4453 if (Tok.is(tok::ellipsis)) {
Douglas Gregor965acbb2009-02-18 07:07:28 +00004454 EllipsisLoc = ConsumeToken(); // Consume the ellipsis.
Chris Lattnerf97409f2008-04-06 06:57:35 +00004455 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00004456 }
Mike Stump1eb44332009-09-09 15:08:12 +00004457
Chris Lattnerf97409f2008-04-06 06:57:35 +00004458 // Parse the declaration-specifiers.
John McCall54abf7d2009-11-04 02:18:39 +00004459 // Just use the ParsingDeclaration "scope" of the declarator.
John McCall0b7e6782011-03-24 11:26:52 +00004460 DeclSpec DS(AttrFactory);
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004461
John McCall7f040a92010-12-24 02:08:15 +00004462 // Skip any Microsoft attributes before a param.
David Blaikie4e4d0842012-03-11 07:00:24 +00004463 if (getLangOpts().MicrosoftExt && Tok.is(tok::l_square))
John McCall7f040a92010-12-24 02:08:15 +00004464 ParseMicrosoftAttributes(DS.getAttributes());
4465
4466 SourceLocation DSStart = Tok.getLocation();
Chris Lattner7399ee02008-10-20 02:05:46 +00004467
4468 // If the caller parsed attributes for the first argument, add them now.
John McCall7f040a92010-12-24 02:08:15 +00004469 // Take them so that we only apply the attributes to the first parameter.
Douglas Gregor3fd1ba02011-07-05 16:44:18 +00004470 // FIXME: If we saw an ellipsis first, this code is not reached. Are the
4471 // attributes lost? Should they even be allowed?
4472 // FIXME: If we can leave the attributes in the token stream somehow, we can
4473 // get rid of a parameter (attrs) and this statement. It might be too much
4474 // hassle.
John McCall7f040a92010-12-24 02:08:15 +00004475 DS.takeAttributesFrom(attrs);
4476
Chris Lattnere64c5492009-02-27 18:38:20 +00004477 ParseDeclarationSpecifiers(DS);
Mike Stump1eb44332009-09-09 15:08:12 +00004478
Chris Lattnerf97409f2008-04-06 06:57:35 +00004479 // Parse the declarator. This is "PrototypeContext", because we must
4480 // accept either 'declarator' or 'abstract-declarator' here.
4481 Declarator ParmDecl(DS, Declarator::PrototypeContext);
4482 ParseDeclarator(ParmDecl);
4483
4484 // Parse GNU attributes, if present.
John McCall7f040a92010-12-24 02:08:15 +00004485 MaybeParseGNUAttributes(ParmDecl);
Mike Stump1eb44332009-09-09 15:08:12 +00004486
Chris Lattnerf97409f2008-04-06 06:57:35 +00004487 // Remember this parsed parameter in ParamInfo.
4488 IdentifierInfo *ParmII = ParmDecl.getIdentifier();
Mike Stump1eb44332009-09-09 15:08:12 +00004489
Douglas Gregor72b505b2008-12-16 21:30:33 +00004490 // DefArgToks is used when the parsing of default arguments needs
4491 // to be delayed.
4492 CachedTokens *DefArgToks = 0;
4493
Chris Lattnerf97409f2008-04-06 06:57:35 +00004494 // If no parameter was specified, verify that *something* was specified,
4495 // otherwise we have a missing type and identifier.
Chris Lattnere64c5492009-02-27 18:38:20 +00004496 if (DS.isEmpty() && ParmDecl.getIdentifier() == 0 &&
4497 ParmDecl.getNumTypeObjects() == 0) {
Chris Lattnerf97409f2008-04-06 06:57:35 +00004498 // Completely missing, emit error.
4499 Diag(DSStart, diag::err_missing_param);
4500 } else {
4501 // Otherwise, we have something. Add it and let semantic analysis try
4502 // to grok it and add the result to the ParamInfo we are building.
Mike Stump1eb44332009-09-09 15:08:12 +00004503
Chris Lattnerf97409f2008-04-06 06:57:35 +00004504 // Inform the actions module about the parameter declarator, so it gets
4505 // added to the current scope.
John McCalld226f652010-08-21 09:40:31 +00004506 Decl *Param = Actions.ActOnParamDeclarator(getCurScope(), ParmDecl);
Chris Lattner04421082008-04-08 04:40:51 +00004507
4508 // Parse the default argument, if any. We parse the default
4509 // arguments in all dialects; the semantic analysis in
4510 // ActOnParamDefaultArgument will reject the default argument in
4511 // C.
4512 if (Tok.is(tok::equal)) {
Douglas Gregor61366e92008-12-24 00:01:03 +00004513 SourceLocation EqualLoc = Tok.getLocation();
4514
Chris Lattner04421082008-04-08 04:40:51 +00004515 // Parse the default argument
Douglas Gregor72b505b2008-12-16 21:30:33 +00004516 if (D.getContext() == Declarator::MemberContext) {
4517 // If we're inside a class definition, cache the tokens
4518 // corresponding to the default argument. We'll actually parse
4519 // them when we see the end of the class definition.
4520 // FIXME: Templates will require something similar.
4521 // FIXME: Can we use a smart pointer for Toks?
4522 DefArgToks = new CachedTokens;
4523
Mike Stump1eb44332009-09-09 15:08:12 +00004524 if (!ConsumeAndStoreUntil(tok::comma, tok::r_paren, *DefArgToks,
Argyrios Kyrtzidis14b91622010-04-23 21:20:12 +00004525 /*StopAtSemi=*/true,
4526 /*ConsumeFinalToken=*/false)) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00004527 delete DefArgToks;
4528 DefArgToks = 0;
Douglas Gregor61366e92008-12-24 00:01:03 +00004529 Actions.ActOnParamDefaultArgumentError(Param);
Argyrios Kyrtzidis2b602ad2010-08-06 09:47:24 +00004530 } else {
4531 // Mark the end of the default argument so that we know when to
4532 // stop when we parse it later on.
4533 Token DefArgEnd;
4534 DefArgEnd.startToken();
4535 DefArgEnd.setKind(tok::cxx_defaultarg_end);
4536 DefArgEnd.setLocation(Tok.getLocation());
4537 DefArgToks->push_back(DefArgEnd);
Mike Stump1eb44332009-09-09 15:08:12 +00004538 Actions.ActOnParamUnparsedDefaultArgument(Param, EqualLoc,
Anders Carlsson5e300d12009-06-12 16:51:40 +00004539 (*DefArgToks)[1].getLocation());
Argyrios Kyrtzidis2b602ad2010-08-06 09:47:24 +00004540 }
Chris Lattner04421082008-04-08 04:40:51 +00004541 } else {
Douglas Gregor72b505b2008-12-16 21:30:33 +00004542 // Consume the '='.
Douglas Gregor61366e92008-12-24 00:01:03 +00004543 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00004544
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00004545 // The argument isn't actually potentially evaluated unless it is
4546 // used.
4547 EnterExpressionEvaluationContext Eval(Actions,
Douglas Gregorccc1b5e2012-02-21 00:37:24 +00004548 Sema::PotentiallyEvaluatedIfUsed,
4549 Param);
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00004550
John McCall60d7b3a2010-08-24 06:29:42 +00004551 ExprResult DefArgResult(ParseAssignmentExpression());
Douglas Gregor72b505b2008-12-16 21:30:33 +00004552 if (DefArgResult.isInvalid()) {
4553 Actions.ActOnParamDefaultArgumentError(Param);
4554 SkipUntil(tok::comma, tok::r_paren, true, true);
4555 } else {
4556 // Inform the actions module about the default argument
4557 Actions.ActOnParamDefaultArgument(Param, EqualLoc,
John McCall9ae2f072010-08-23 23:25:46 +00004558 DefArgResult.take());
Douglas Gregor72b505b2008-12-16 21:30:33 +00004559 }
Chris Lattner04421082008-04-08 04:40:51 +00004560 }
4561 }
Mike Stump1eb44332009-09-09 15:08:12 +00004562
4563 ParamInfo.push_back(DeclaratorChunk::ParamInfo(ParmII,
4564 ParmDecl.getIdentifierLoc(), Param,
Douglas Gregor72b505b2008-12-16 21:30:33 +00004565 DefArgToks));
Chris Lattnerf97409f2008-04-06 06:57:35 +00004566 }
4567
4568 // If the next token is a comma, consume it and keep reading arguments.
Douglas Gregored5d6512009-09-22 21:41:40 +00004569 if (Tok.isNot(tok::comma)) {
4570 if (Tok.is(tok::ellipsis)) {
Douglas Gregored5d6512009-09-22 21:41:40 +00004571 EllipsisLoc = ConsumeToken(); // Consume the ellipsis.
4572
David Blaikie4e4d0842012-03-11 07:00:24 +00004573 if (!getLangOpts().CPlusPlus) {
Douglas Gregored5d6512009-09-22 21:41:40 +00004574 // We have ellipsis without a preceding ',', which is ill-formed
4575 // in C. Complain and provide the fix.
4576 Diag(EllipsisLoc, diag::err_missing_comma_before_ellipsis)
Douglas Gregor849b2432010-03-31 17:46:05 +00004577 << FixItHint::CreateInsertion(EllipsisLoc, ", ");
Douglas Gregored5d6512009-09-22 21:41:40 +00004578 }
4579 }
4580
4581 break;
4582 }
Mike Stump1eb44332009-09-09 15:08:12 +00004583
Chris Lattnerf97409f2008-04-06 06:57:35 +00004584 // Consume the comma.
4585 ConsumeToken();
Reid Spencer5f016e22007-07-11 17:01:13 +00004586 }
Mike Stump1eb44332009-09-09 15:08:12 +00004587
Chris Lattner66d28652008-04-06 06:34:08 +00004588}
Chris Lattneref4715c2008-04-06 05:45:57 +00004589
Reid Spencer5f016e22007-07-11 17:01:13 +00004590/// [C90] direct-declarator '[' constant-expression[opt] ']'
4591/// [C99] direct-declarator '[' type-qual-list[opt] assignment-expr[opt] ']'
4592/// [C99] direct-declarator '[' 'static' type-qual-list[opt] assign-expr ']'
4593/// [C99] direct-declarator '[' type-qual-list 'static' assignment-expr ']'
4594/// [C99] direct-declarator '[' type-qual-list[opt] '*' ']'
4595void Parser::ParseBracketDeclarator(Declarator &D) {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004596 BalancedDelimiterTracker T(*this, tok::l_square);
4597 T.consumeOpen();
Mike Stump1eb44332009-09-09 15:08:12 +00004598
Chris Lattner378c7e42008-12-18 07:27:21 +00004599 // C array syntax has many features, but by-far the most common is [] and [4].
4600 // This code does a fast path to handle some of the most obvious cases.
4601 if (Tok.getKind() == tok::r_square) {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004602 T.consumeClose();
John McCall0b7e6782011-03-24 11:26:52 +00004603 ParsedAttributes attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +00004604 MaybeParseCXX0XAttributes(attrs);
Sean Huntbbd37c62009-11-21 08:43:09 +00004605
Chris Lattner378c7e42008-12-18 07:27:21 +00004606 // Remember that we parsed the empty array type.
John McCall60d7b3a2010-08-24 06:29:42 +00004607 ExprResult NumElements;
John McCall0b7e6782011-03-24 11:26:52 +00004608 D.AddTypeInfo(DeclaratorChunk::getArray(0, false, false, 0,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004609 T.getOpenLocation(),
4610 T.getCloseLocation()),
4611 attrs, T.getCloseLocation());
Chris Lattner378c7e42008-12-18 07:27:21 +00004612 return;
4613 } else if (Tok.getKind() == tok::numeric_constant &&
4614 GetLookAheadToken(1).is(tok::r_square)) {
4615 // [4] is very common. Parse the numeric constant expression.
Richard Smith36f5cfe2012-03-09 08:00:36 +00004616 ExprResult ExprRes(Actions.ActOnNumericConstant(Tok, getCurScope()));
Chris Lattner378c7e42008-12-18 07:27:21 +00004617 ConsumeToken();
4618
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004619 T.consumeClose();
John McCall0b7e6782011-03-24 11:26:52 +00004620 ParsedAttributes attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +00004621 MaybeParseCXX0XAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +00004622
Chris Lattner378c7e42008-12-18 07:27:21 +00004623 // Remember that we parsed a array type, and remember its features.
John McCall0b7e6782011-03-24 11:26:52 +00004624 D.AddTypeInfo(DeclaratorChunk::getArray(0, false, 0,
John McCall7f040a92010-12-24 02:08:15 +00004625 ExprRes.release(),
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004626 T.getOpenLocation(),
4627 T.getCloseLocation()),
4628 attrs, T.getCloseLocation());
Chris Lattner378c7e42008-12-18 07:27:21 +00004629 return;
4630 }
Mike Stump1eb44332009-09-09 15:08:12 +00004631
Reid Spencer5f016e22007-07-11 17:01:13 +00004632 // If valid, this location is the position where we read the 'static' keyword.
4633 SourceLocation StaticLoc;
Chris Lattner04d66662007-10-09 17:33:22 +00004634 if (Tok.is(tok::kw_static))
Reid Spencer5f016e22007-07-11 17:01:13 +00004635 StaticLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00004636
Reid Spencer5f016e22007-07-11 17:01:13 +00004637 // If there is a type-qualifier-list, read it now.
Chris Lattnera1fcbad2008-12-18 06:50:14 +00004638 // Type qualifiers in an array subscript are a C99 feature.
John McCall0b7e6782011-03-24 11:26:52 +00004639 DeclSpec DS(AttrFactory);
Chris Lattner5a69d1c2008-12-18 07:02:59 +00004640 ParseTypeQualifierListOpt(DS, false /*no attributes*/);
Mike Stump1eb44332009-09-09 15:08:12 +00004641
Reid Spencer5f016e22007-07-11 17:01:13 +00004642 // If we haven't already read 'static', check to see if there is one after the
4643 // type-qualifier-list.
Chris Lattner04d66662007-10-09 17:33:22 +00004644 if (!StaticLoc.isValid() && Tok.is(tok::kw_static))
Reid Spencer5f016e22007-07-11 17:01:13 +00004645 StaticLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00004646
Reid Spencer5f016e22007-07-11 17:01:13 +00004647 // Handle "direct-declarator [ type-qual-list[opt] * ]".
4648 bool isStar = false;
John McCall60d7b3a2010-08-24 06:29:42 +00004649 ExprResult NumElements;
Mike Stump1eb44332009-09-09 15:08:12 +00004650
Chris Lattner5dcc6ce2008-04-06 05:26:30 +00004651 // Handle the case where we have '[*]' as the array size. However, a leading
4652 // star could be the start of an expression, for example 'X[*p + 4]'. Verify
4653 // the the token after the star is a ']'. Since stars in arrays are
4654 // infrequent, use of lookahead is not costly here.
4655 if (Tok.is(tok::star) && GetLookAheadToken(1).is(tok::r_square)) {
Chris Lattnera711dd02008-04-06 05:27:21 +00004656 ConsumeToken(); // Eat the '*'.
Reid Spencer5f016e22007-07-11 17:01:13 +00004657
Chris Lattnera1fcbad2008-12-18 06:50:14 +00004658 if (StaticLoc.isValid()) {
Chris Lattner5dcc6ce2008-04-06 05:26:30 +00004659 Diag(StaticLoc, diag::err_unspecified_vla_size_with_static);
Chris Lattnera1fcbad2008-12-18 06:50:14 +00004660 StaticLoc = SourceLocation(); // Drop the static.
4661 }
Chris Lattner5dcc6ce2008-04-06 05:26:30 +00004662 isStar = true;
Chris Lattner04d66662007-10-09 17:33:22 +00004663 } else if (Tok.isNot(tok::r_square)) {
Chris Lattner378c7e42008-12-18 07:27:21 +00004664 // Note, in C89, this production uses the constant-expr production instead
4665 // of assignment-expr. The only difference is that assignment-expr allows
4666 // things like '=' and '*='. Sema rejects these in C89 mode because they
4667 // are not i-c-e's, so we don't need to distinguish between the two here.
Mike Stump1eb44332009-09-09 15:08:12 +00004668
Douglas Gregore0762c92009-06-19 23:52:42 +00004669 // Parse the constant-expression or assignment-expression now (depending
4670 // on dialect).
David Blaikie4e4d0842012-03-11 07:00:24 +00004671 if (getLangOpts().CPlusPlus) {
Douglas Gregore0762c92009-06-19 23:52:42 +00004672 NumElements = ParseConstantExpression();
Eli Friedman71b8fb52012-01-21 01:01:51 +00004673 } else {
4674 EnterExpressionEvaluationContext Unevaluated(Actions,
4675 Sema::ConstantEvaluated);
Douglas Gregore0762c92009-06-19 23:52:42 +00004676 NumElements = ParseAssignmentExpression();
Eli Friedman71b8fb52012-01-21 01:01:51 +00004677 }
Reid Spencer5f016e22007-07-11 17:01:13 +00004678 }
Mike Stump1eb44332009-09-09 15:08:12 +00004679
Reid Spencer5f016e22007-07-11 17:01:13 +00004680 // If there was an error parsing the assignment-expression, recover.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00004681 if (NumElements.isInvalid()) {
Chris Lattner5cb10d32009-04-24 22:30:50 +00004682 D.setInvalidType(true);
Reid Spencer5f016e22007-07-11 17:01:13 +00004683 // If the expression was invalid, skip it.
4684 SkipUntil(tok::r_square);
4685 return;
4686 }
Sebastian Redlab197ba2009-02-09 18:23:29 +00004687
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004688 T.consumeClose();
Sebastian Redlab197ba2009-02-09 18:23:29 +00004689
John McCall0b7e6782011-03-24 11:26:52 +00004690 ParsedAttributes attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +00004691 MaybeParseCXX0XAttributes(attrs);
Sean Huntbbd37c62009-11-21 08:43:09 +00004692
Chris Lattner378c7e42008-12-18 07:27:21 +00004693 // Remember that we parsed a array type, and remember its features.
John McCall0b7e6782011-03-24 11:26:52 +00004694 D.AddTypeInfo(DeclaratorChunk::getArray(DS.getTypeQualifiers(),
Reid Spencer5f016e22007-07-11 17:01:13 +00004695 StaticLoc.isValid(), isStar,
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00004696 NumElements.release(),
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004697 T.getOpenLocation(),
4698 T.getCloseLocation()),
4699 attrs, T.getCloseLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00004700}
4701
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00004702/// [GNU] typeof-specifier:
4703/// typeof ( expressions )
4704/// typeof ( type-name )
4705/// [GNU/C++] typeof unary-expression
Steve Naroffd1861fd2007-07-31 12:34:36 +00004706///
4707void Parser::ParseTypeofSpecifier(DeclSpec &DS) {
Chris Lattner04d66662007-10-09 17:33:22 +00004708 assert(Tok.is(tok::kw_typeof) && "Not a typeof specifier");
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00004709 Token OpTok = Tok;
Steve Naroffd1861fd2007-07-31 12:34:36 +00004710 SourceLocation StartLoc = ConsumeToken();
4711
John McCallcfb708c2010-01-13 20:03:27 +00004712 const bool hasParens = Tok.is(tok::l_paren);
4713
Eli Friedman71b8fb52012-01-21 01:01:51 +00004714 EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated);
4715
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00004716 bool isCastExpr;
John McCallb3d87482010-08-24 05:47:05 +00004717 ParsedType CastTy;
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00004718 SourceRange CastRange;
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00004719 ExprResult Operand = ParseExprAfterUnaryExprOrTypeTrait(OpTok, isCastExpr,
4720 CastTy, CastRange);
John McCallcfb708c2010-01-13 20:03:27 +00004721 if (hasParens)
4722 DS.setTypeofParensRange(CastRange);
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00004723
4724 if (CastRange.getEnd().isInvalid())
Argyrios Kyrtzidis64096252009-05-22 10:22:18 +00004725 // FIXME: Not accurate, the range gets one token more than it should.
4726 DS.SetRangeEnd(Tok.getLocation());
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00004727 else
4728 DS.SetRangeEnd(CastRange.getEnd());
Mike Stump1eb44332009-09-09 15:08:12 +00004729
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00004730 if (isCastExpr) {
4731 if (!CastTy) {
4732 DS.SetTypeSpecError();
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00004733 return;
Douglas Gregor809070a2009-02-18 17:45:20 +00004734 }
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00004735
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00004736 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +00004737 unsigned DiagID;
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00004738 // Check for duplicate type specifiers (e.g. "int typeof(int)").
4739 if (DS.SetTypeSpecType(DeclSpec::TST_typeofType, StartLoc, PrevSpec,
John McCallfec54012009-08-03 20:12:06 +00004740 DiagID, CastTy))
4741 Diag(StartLoc, DiagID) << PrevSpec;
Argyrios Kyrtzidis5ab06402009-05-22 10:22:50 +00004742 return;
Argyrios Kyrtzidis64096252009-05-22 10:22:18 +00004743 }
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00004744
Argyrios Kyrtzidis64096252009-05-22 10:22:18 +00004745 // If we get here, the operand to the typeof was an expresion.
4746 if (Operand.isInvalid()) {
4747 DS.SetTypeSpecError();
Steve Naroff9dfa7b42007-08-02 02:53:48 +00004748 return;
Steve Naroffd1861fd2007-07-31 12:34:36 +00004749 }
Argyrios Kyrtzidis0f072032008-09-05 11:26:19 +00004750
Eli Friedman71b8fb52012-01-21 01:01:51 +00004751 // We might need to transform the operand if it is potentially evaluated.
4752 Operand = Actions.HandleExprEvaluationContextForTypeof(Operand.get());
4753 if (Operand.isInvalid()) {
4754 DS.SetTypeSpecError();
4755 return;
4756 }
4757
Argyrios Kyrtzidis64096252009-05-22 10:22:18 +00004758 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +00004759 unsigned DiagID;
Argyrios Kyrtzidis64096252009-05-22 10:22:18 +00004760 // Check for duplicate type specifiers (e.g. "int typeof(int)").
4761 if (DS.SetTypeSpecType(DeclSpec::TST_typeofExpr, StartLoc, PrevSpec,
John McCallb3d87482010-08-24 05:47:05 +00004762 DiagID, Operand.get()))
John McCallfec54012009-08-03 20:12:06 +00004763 Diag(StartLoc, DiagID) << PrevSpec;
Steve Naroffd1861fd2007-07-31 12:34:36 +00004764}
Chris Lattner1b492422010-02-28 18:33:55 +00004765
Benjamin Kramerffbe9b92011-12-23 17:00:35 +00004766/// [C11] atomic-specifier:
Eli Friedmanb001de72011-10-06 23:00:33 +00004767/// _Atomic ( type-name )
4768///
4769void Parser::ParseAtomicSpecifier(DeclSpec &DS) {
4770 assert(Tok.is(tok::kw__Atomic) && "Not an atomic specifier");
4771
4772 SourceLocation StartLoc = ConsumeToken();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004773 BalancedDelimiterTracker T(*this, tok::l_paren);
4774 if (T.expectAndConsume(diag::err_expected_lparen_after, "_Atomic")) {
Eli Friedmanb001de72011-10-06 23:00:33 +00004775 SkipUntil(tok::r_paren);
4776 return;
4777 }
4778
4779 TypeResult Result = ParseTypeName();
4780 if (Result.isInvalid()) {
4781 SkipUntil(tok::r_paren);
4782 return;
4783 }
4784
4785 // Match the ')'
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004786 T.consumeClose();
Eli Friedmanb001de72011-10-06 23:00:33 +00004787
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004788 if (T.getCloseLocation().isInvalid())
Eli Friedmanb001de72011-10-06 23:00:33 +00004789 return;
4790
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00004791 DS.setTypeofParensRange(T.getRange());
4792 DS.SetRangeEnd(T.getCloseLocation());
Eli Friedmanb001de72011-10-06 23:00:33 +00004793
4794 const char *PrevSpec = 0;
4795 unsigned DiagID;
4796 if (DS.SetTypeSpecType(DeclSpec::TST_atomic, StartLoc, PrevSpec,
4797 DiagID, Result.release()))
4798 Diag(StartLoc, DiagID) << PrevSpec;
4799}
4800
Chris Lattner1b492422010-02-28 18:33:55 +00004801
4802/// TryAltiVecVectorTokenOutOfLine - Out of line body that should only be called
4803/// from TryAltiVecVectorToken.
4804bool Parser::TryAltiVecVectorTokenOutOfLine() {
4805 Token Next = NextToken();
4806 switch (Next.getKind()) {
4807 default: return false;
4808 case tok::kw_short:
4809 case tok::kw_long:
4810 case tok::kw_signed:
4811 case tok::kw_unsigned:
4812 case tok::kw_void:
4813 case tok::kw_char:
4814 case tok::kw_int:
4815 case tok::kw_float:
4816 case tok::kw_double:
4817 case tok::kw_bool:
4818 case tok::kw___pixel:
4819 Tok.setKind(tok::kw___vector);
4820 return true;
4821 case tok::identifier:
4822 if (Next.getIdentifierInfo() == Ident_pixel) {
4823 Tok.setKind(tok::kw___vector);
4824 return true;
4825 }
4826 return false;
4827 }
4828}
4829
4830bool Parser::TryAltiVecTokenOutOfLine(DeclSpec &DS, SourceLocation Loc,
4831 const char *&PrevSpec, unsigned &DiagID,
4832 bool &isInvalid) {
4833 if (Tok.getIdentifierInfo() == Ident_vector) {
4834 Token Next = NextToken();
4835 switch (Next.getKind()) {
4836 case tok::kw_short:
4837 case tok::kw_long:
4838 case tok::kw_signed:
4839 case tok::kw_unsigned:
4840 case tok::kw_void:
4841 case tok::kw_char:
4842 case tok::kw_int:
4843 case tok::kw_float:
4844 case tok::kw_double:
4845 case tok::kw_bool:
4846 case tok::kw___pixel:
4847 isInvalid = DS.SetTypeAltiVecVector(true, Loc, PrevSpec, DiagID);
4848 return true;
4849 case tok::identifier:
4850 if (Next.getIdentifierInfo() == Ident_pixel) {
4851 isInvalid = DS.SetTypeAltiVecVector(true, Loc, PrevSpec, DiagID);
4852 return true;
4853 }
4854 break;
4855 default:
4856 break;
4857 }
Douglas Gregora8f031f2010-06-16 15:28:57 +00004858 } else if ((Tok.getIdentifierInfo() == Ident_pixel) &&
Chris Lattner1b492422010-02-28 18:33:55 +00004859 DS.isTypeAltiVecVector()) {
4860 isInvalid = DS.SetTypeAltiVecPixel(true, Loc, PrevSpec, DiagID);
4861 return true;
4862 }
4863 return false;
4864}