blob: d102fb3158f73e9a8e7f6a4140423618c63cb9e9 [file] [log] [blame]
Chris Lattner8f08cb72007-08-25 06:57:03 +00001//===--- ParseDeclCXX.cpp - C++ 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.
Chris Lattner8f08cb72007-08-25 06:57:03 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the C++ Declaration portions of the Parser interfaces.
11//
12//===----------------------------------------------------------------------===//
13
Anders Carlsson0c6139d2009-06-27 00:27:47 +000014#include "clang/Basic/OperatorKinds.h"
Douglas Gregor1b7f8982008-04-14 00:13:42 +000015#include "clang/Parse/Parser.h"
Chris Lattner500d3292009-01-29 05:15:15 +000016#include "clang/Parse/ParseDiagnostic.h"
John McCall19510852010-08-20 18:27:03 +000017#include "clang/Sema/DeclSpec.h"
18#include "clang/Sema/Scope.h"
19#include "clang/Sema/ParsedTemplate.h"
John McCallf312b1e2010-08-26 23:41:50 +000020#include "clang/Sema/PrettyDeclStackTrace.h"
Chris Lattnerd167ca02009-12-10 00:21:05 +000021#include "RAIIObjectsForParser.h"
Chris Lattner8f08cb72007-08-25 06:57:03 +000022using namespace clang;
23
24/// ParseNamespace - We know that the current token is a namespace keyword. This
Sebastian Redld078e642010-08-27 23:12:46 +000025/// may either be a top level namespace or a block-level namespace alias. If
26/// there was an inline keyword, it has already been parsed.
Chris Lattner8f08cb72007-08-25 06:57:03 +000027///
28/// namespace-definition: [C++ 7.3: basic.namespace]
29/// named-namespace-definition
30/// unnamed-namespace-definition
31///
32/// unnamed-namespace-definition:
Sebastian Redld078e642010-08-27 23:12:46 +000033/// 'inline'[opt] 'namespace' attributes[opt] '{' namespace-body '}'
Chris Lattner8f08cb72007-08-25 06:57:03 +000034///
35/// named-namespace-definition:
36/// original-namespace-definition
37/// extension-namespace-definition
38///
39/// original-namespace-definition:
Sebastian Redld078e642010-08-27 23:12:46 +000040/// 'inline'[opt] 'namespace' identifier attributes[opt]
41/// '{' namespace-body '}'
Chris Lattner8f08cb72007-08-25 06:57:03 +000042///
43/// extension-namespace-definition:
Sebastian Redld078e642010-08-27 23:12:46 +000044/// 'inline'[opt] 'namespace' original-namespace-name
45/// '{' namespace-body '}'
Mike Stump1eb44332009-09-09 15:08:12 +000046///
Chris Lattner8f08cb72007-08-25 06:57:03 +000047/// namespace-alias-definition: [C++ 7.3.2: namespace.alias]
48/// 'namespace' identifier '=' qualified-namespace-specifier ';'
49///
John McCalld226f652010-08-21 09:40:31 +000050Decl *Parser::ParseNamespace(unsigned Context,
Sebastian Redld078e642010-08-27 23:12:46 +000051 SourceLocation &DeclEnd,
52 SourceLocation InlineLoc) {
Chris Lattner04d66662007-10-09 17:33:22 +000053 assert(Tok.is(tok::kw_namespace) && "Not a namespace!");
Chris Lattner8f08cb72007-08-25 06:57:03 +000054 SourceLocation NamespaceLoc = ConsumeToken(); // eat the 'namespace'.
Fariborz Jahanian9735c5e2011-08-22 17:59:19 +000055 ObjCDeclContextSwitch ObjCDC(*this);
Fariborz Jahaniana28948f2011-08-22 15:54:49 +000056
Douglas Gregor49f40bd2009-09-18 19:03:04 +000057 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +000058 Actions.CodeCompleteNamespaceDecl(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +000059 cutOffParsing();
60 return 0;
Douglas Gregor49f40bd2009-09-18 19:03:04 +000061 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +000062
Chris Lattner8f08cb72007-08-25 06:57:03 +000063 SourceLocation IdentLoc;
64 IdentifierInfo *Ident = 0;
Richard Trieuf858bd82011-05-26 20:11:09 +000065 std::vector<SourceLocation> ExtraIdentLoc;
66 std::vector<IdentifierInfo*> ExtraIdent;
67 std::vector<SourceLocation> ExtraNamespaceLoc;
Douglas Gregor6a588dd2009-06-17 19:49:00 +000068
69 Token attrTok;
Mike Stump1eb44332009-09-09 15:08:12 +000070
Chris Lattner04d66662007-10-09 17:33:22 +000071 if (Tok.is(tok::identifier)) {
Chris Lattner8f08cb72007-08-25 06:57:03 +000072 Ident = Tok.getIdentifierInfo();
73 IdentLoc = ConsumeToken(); // eat the identifier.
Richard Trieuf858bd82011-05-26 20:11:09 +000074 while (Tok.is(tok::coloncolon) && NextToken().is(tok::identifier)) {
75 ExtraNamespaceLoc.push_back(ConsumeToken());
76 ExtraIdent.push_back(Tok.getIdentifierInfo());
77 ExtraIdentLoc.push_back(ConsumeToken());
78 }
Chris Lattner8f08cb72007-08-25 06:57:03 +000079 }
Mike Stump1eb44332009-09-09 15:08:12 +000080
Chris Lattner8f08cb72007-08-25 06:57:03 +000081 // Read label attributes, if present.
John McCall0b7e6782011-03-24 11:26:52 +000082 ParsedAttributes attrs(AttrFactory);
Douglas Gregor6a588dd2009-06-17 19:49:00 +000083 if (Tok.is(tok::kw___attribute)) {
84 attrTok = Tok;
John McCall7f040a92010-12-24 02:08:15 +000085 ParseGNUAttributes(attrs);
Douglas Gregor6a588dd2009-06-17 19:49:00 +000086 }
Mike Stump1eb44332009-09-09 15:08:12 +000087
Douglas Gregor6a588dd2009-06-17 19:49:00 +000088 if (Tok.is(tok::equal)) {
John McCall7f040a92010-12-24 02:08:15 +000089 if (!attrs.empty())
Douglas Gregor6a588dd2009-06-17 19:49:00 +000090 Diag(attrTok, diag::err_unexpected_namespace_attributes_alias);
Sebastian Redld078e642010-08-27 23:12:46 +000091 if (InlineLoc.isValid())
92 Diag(InlineLoc, diag::err_inline_namespace_alias)
93 << FixItHint::CreateRemoval(InlineLoc);
Fariborz Jahanian9735c5e2011-08-22 17:59:19 +000094 return ParseNamespaceAlias(NamespaceLoc, IdentLoc, Ident, DeclEnd);
Douglas Gregor6a588dd2009-06-17 19:49:00 +000095 }
Mike Stump1eb44332009-09-09 15:08:12 +000096
Richard Trieuf858bd82011-05-26 20:11:09 +000097
Douglas Gregor4a8dfb52011-10-12 16:37:45 +000098 BalancedDelimiterTracker T(*this, tok::l_brace);
99 if (T.consumeOpen()) {
Richard Trieuf858bd82011-05-26 20:11:09 +0000100 if (!ExtraIdent.empty()) {
101 Diag(ExtraNamespaceLoc[0], diag::err_nested_namespaces_with_double_colon)
102 << SourceRange(ExtraNamespaceLoc.front(), ExtraIdentLoc.back());
103 }
Mike Stump1eb44332009-09-09 15:08:12 +0000104 Diag(Tok, Ident ? diag::err_expected_lbrace :
Chris Lattner51448322009-03-29 14:02:43 +0000105 diag::err_expected_ident_lbrace);
John McCalld226f652010-08-21 09:40:31 +0000106 return 0;
Chris Lattner8f08cb72007-08-25 06:57:03 +0000107 }
Mike Stump1eb44332009-09-09 15:08:12 +0000108
Douglas Gregor23c94db2010-07-02 17:43:08 +0000109 if (getCurScope()->isClassScope() || getCurScope()->isTemplateParamScope() ||
110 getCurScope()->isInObjcMethodScope() || getCurScope()->getBlockParent() ||
111 getCurScope()->getFnParent()) {
Richard Trieuf858bd82011-05-26 20:11:09 +0000112 if (!ExtraIdent.empty()) {
113 Diag(ExtraNamespaceLoc[0], diag::err_nested_namespaces_with_double_colon)
114 << SourceRange(ExtraNamespaceLoc.front(), ExtraIdentLoc.back());
115 }
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000116 Diag(T.getOpenLocation(), diag::err_namespace_nonnamespace_scope);
Douglas Gregor95f1b152010-05-14 05:08:22 +0000117 SkipUntil(tok::r_brace, false);
John McCalld226f652010-08-21 09:40:31 +0000118 return 0;
Douglas Gregor95f1b152010-05-14 05:08:22 +0000119 }
120
Richard Trieuf858bd82011-05-26 20:11:09 +0000121 if (!ExtraIdent.empty()) {
122 TentativeParsingAction TPA(*this);
123 SkipUntil(tok::r_brace, /*StopAtSemi*/false, /*DontConsume*/true);
124 Token rBraceToken = Tok;
125 TPA.Revert();
126
127 if (!rBraceToken.is(tok::r_brace)) {
128 Diag(ExtraNamespaceLoc[0], diag::err_nested_namespaces_with_double_colon)
129 << SourceRange(ExtraNamespaceLoc.front(), ExtraIdentLoc.back());
130 } else {
Benjamin Kramer9910df02011-05-26 21:32:30 +0000131 std::string NamespaceFix;
Richard Trieuf858bd82011-05-26 20:11:09 +0000132 for (std::vector<IdentifierInfo*>::iterator I = ExtraIdent.begin(),
133 E = ExtraIdent.end(); I != E; ++I) {
134 NamespaceFix += " { namespace ";
135 NamespaceFix += (*I)->getName();
136 }
Benjamin Kramer9910df02011-05-26 21:32:30 +0000137
Richard Trieuf858bd82011-05-26 20:11:09 +0000138 std::string RBraces;
Benjamin Kramer9910df02011-05-26 21:32:30 +0000139 for (unsigned i = 0, e = ExtraIdent.size(); i != e; ++i)
Richard Trieuf858bd82011-05-26 20:11:09 +0000140 RBraces += "} ";
Benjamin Kramer9910df02011-05-26 21:32:30 +0000141
Richard Trieuf858bd82011-05-26 20:11:09 +0000142 Diag(ExtraNamespaceLoc[0], diag::err_nested_namespaces_with_double_colon)
143 << FixItHint::CreateReplacement(SourceRange(ExtraNamespaceLoc.front(),
144 ExtraIdentLoc.back()),
145 NamespaceFix)
146 << FixItHint::CreateInsertion(rBraceToken.getLocation(), RBraces);
147 }
148 }
149
Sebastian Redl88e64ca2010-08-31 00:36:45 +0000150 // If we're still good, complain about inline namespaces in non-C++0x now.
Richard Smith7fe62082011-10-15 05:09:34 +0000151 if (InlineLoc.isValid())
152 Diag(InlineLoc, getLang().CPlusPlus0x ?
153 diag::warn_cxx98_compat_inline_namespace : diag::ext_inline_namespace);
Sebastian Redl88e64ca2010-08-31 00:36:45 +0000154
Chris Lattner51448322009-03-29 14:02:43 +0000155 // Enter a scope for the namespace.
156 ParseScope NamespaceScope(this, Scope::DeclScope);
157
John McCalld226f652010-08-21 09:40:31 +0000158 Decl *NamespcDecl =
Abramo Bagnaraacba90f2011-03-08 12:38:20 +0000159 Actions.ActOnStartNamespaceDef(getCurScope(), InlineLoc, NamespaceLoc,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000160 IdentLoc, Ident, T.getOpenLocation(),
161 attrs.getList());
Chris Lattner51448322009-03-29 14:02:43 +0000162
John McCallf312b1e2010-08-26 23:41:50 +0000163 PrettyDeclStackTraceEntry CrashInfo(Actions, NamespcDecl, NamespaceLoc,
164 "parsing namespace");
Mike Stump1eb44332009-09-09 15:08:12 +0000165
Richard Trieuf858bd82011-05-26 20:11:09 +0000166 // Parse the contents of the namespace. This includes parsing recovery on
167 // any improperly nested namespaces.
168 ParseInnerNamespace(ExtraIdentLoc, ExtraIdent, ExtraNamespaceLoc, 0,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000169 InlineLoc, attrs, T);
Mike Stump1eb44332009-09-09 15:08:12 +0000170
Chris Lattner51448322009-03-29 14:02:43 +0000171 // Leave the namespace scope.
172 NamespaceScope.Exit();
173
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000174 DeclEnd = T.getCloseLocation();
175 Actions.ActOnFinishNamespaceDef(NamespcDecl, DeclEnd);
Chris Lattner51448322009-03-29 14:02:43 +0000176
177 return NamespcDecl;
Chris Lattner8f08cb72007-08-25 06:57:03 +0000178}
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000179
Richard Trieuf858bd82011-05-26 20:11:09 +0000180/// ParseInnerNamespace - Parse the contents of a namespace.
181void Parser::ParseInnerNamespace(std::vector<SourceLocation>& IdentLoc,
182 std::vector<IdentifierInfo*>& Ident,
183 std::vector<SourceLocation>& NamespaceLoc,
184 unsigned int index, SourceLocation& InlineLoc,
Richard Trieuf858bd82011-05-26 20:11:09 +0000185 ParsedAttributes& attrs,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000186 BalancedDelimiterTracker &Tracker) {
Richard Trieuf858bd82011-05-26 20:11:09 +0000187 if (index == Ident.size()) {
188 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
189 ParsedAttributesWithRange attrs(AttrFactory);
190 MaybeParseCXX0XAttributes(attrs);
191 MaybeParseMicrosoftAttributes(attrs);
192 ParseExternalDeclaration(attrs);
193 }
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000194
195 // The caller is what called check -- we are simply calling
196 // the close for it.
197 Tracker.consumeClose();
Richard Trieuf858bd82011-05-26 20:11:09 +0000198
199 return;
200 }
201
202 // Parse improperly nested namespaces.
203 ParseScope NamespaceScope(this, Scope::DeclScope);
204 Decl *NamespcDecl =
205 Actions.ActOnStartNamespaceDef(getCurScope(), SourceLocation(),
206 NamespaceLoc[index], IdentLoc[index],
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000207 Ident[index], Tracker.getOpenLocation(),
208 attrs.getList());
Richard Trieuf858bd82011-05-26 20:11:09 +0000209
210 ParseInnerNamespace(IdentLoc, Ident, NamespaceLoc, ++index, InlineLoc,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000211 attrs, Tracker);
Richard Trieuf858bd82011-05-26 20:11:09 +0000212
213 NamespaceScope.Exit();
214
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000215 Actions.ActOnFinishNamespaceDef(NamespcDecl, Tracker.getCloseLocation());
Richard Trieuf858bd82011-05-26 20:11:09 +0000216}
217
Anders Carlssonf67606a2009-03-28 04:07:16 +0000218/// ParseNamespaceAlias - Parse the part after the '=' in a namespace
219/// alias definition.
220///
John McCalld226f652010-08-21 09:40:31 +0000221Decl *Parser::ParseNamespaceAlias(SourceLocation NamespaceLoc,
John McCall0b7e6782011-03-24 11:26:52 +0000222 SourceLocation AliasLoc,
223 IdentifierInfo *Alias,
224 SourceLocation &DeclEnd) {
Anders Carlssonf67606a2009-03-28 04:07:16 +0000225 assert(Tok.is(tok::equal) && "Not equal token");
Mike Stump1eb44332009-09-09 15:08:12 +0000226
Anders Carlssonf67606a2009-03-28 04:07:16 +0000227 ConsumeToken(); // eat the '='.
Mike Stump1eb44332009-09-09 15:08:12 +0000228
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000229 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000230 Actions.CodeCompleteNamespaceAliasDecl(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000231 cutOffParsing();
232 return 0;
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000233 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000234
Anders Carlssonf67606a2009-03-28 04:07:16 +0000235 CXXScopeSpec SS;
236 // Parse (optional) nested-name-specifier.
Douglas Gregorefaa93a2011-11-07 17:33:42 +0000237 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), /*EnteringContext=*/false);
Anders Carlssonf67606a2009-03-28 04:07:16 +0000238
239 if (SS.isInvalid() || Tok.isNot(tok::identifier)) {
240 Diag(Tok, diag::err_expected_namespace_name);
241 // Skip to end of the definition and eat the ';'.
242 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000243 return 0;
Anders Carlssonf67606a2009-03-28 04:07:16 +0000244 }
245
246 // Parse identifier.
Anders Carlsson03bd5a12009-03-28 22:53:22 +0000247 IdentifierInfo *Ident = Tok.getIdentifierInfo();
248 SourceLocation IdentLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000249
Anders Carlssonf67606a2009-03-28 04:07:16 +0000250 // Eat the ';'.
Chris Lattner97144fc2009-04-02 04:16:50 +0000251 DeclEnd = Tok.getLocation();
Chris Lattner6869d8e2009-06-14 00:07:48 +0000252 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_namespace_name,
253 "", tok::semi);
Mike Stump1eb44332009-09-09 15:08:12 +0000254
Douglas Gregor23c94db2010-07-02 17:43:08 +0000255 return Actions.ActOnNamespaceAliasDef(getCurScope(), NamespaceLoc, AliasLoc, Alias,
Anders Carlsson03bd5a12009-03-28 22:53:22 +0000256 SS, IdentLoc, Ident);
Anders Carlssonf67606a2009-03-28 04:07:16 +0000257}
258
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000259/// ParseLinkage - We know that the current token is a string_literal
260/// and just before that, that extern was seen.
261///
262/// linkage-specification: [C++ 7.5p2: dcl.link]
263/// 'extern' string-literal '{' declaration-seq[opt] '}'
264/// 'extern' string-literal declaration
265///
Chris Lattner7d642712010-11-09 20:15:55 +0000266Decl *Parser::ParseLinkage(ParsingDeclSpec &DS, unsigned Context) {
Douglas Gregorc19923d2008-11-21 16:10:08 +0000267 assert(Tok.is(tok::string_literal) && "Not a string literal!");
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000268 llvm::SmallString<8> LangBuffer;
Douglas Gregor453091c2010-03-16 22:30:13 +0000269 bool Invalid = false;
Chris Lattner5f9e2722011-07-23 10:55:15 +0000270 StringRef Lang = PP.getSpelling(Tok, LangBuffer, &Invalid);
Douglas Gregor453091c2010-03-16 22:30:13 +0000271 if (Invalid)
John McCalld226f652010-08-21 09:40:31 +0000272 return 0;
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000273
274 SourceLocation Loc = ConsumeStringToken();
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000275
Douglas Gregor074149e2009-01-05 19:45:36 +0000276 ParseScope LinkageScope(this, Scope::DeclScope);
John McCalld226f652010-08-21 09:40:31 +0000277 Decl *LinkageSpec
Douglas Gregor23c94db2010-07-02 17:43:08 +0000278 = Actions.ActOnStartLinkageSpecification(getCurScope(),
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000279 DS.getSourceRange().getBegin(),
Benjamin Kramerd5663812010-05-03 13:08:54 +0000280 Loc, Lang,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000281 Tok.is(tok::l_brace) ? Tok.getLocation()
Douglas Gregor074149e2009-01-05 19:45:36 +0000282 : SourceLocation());
283
John McCall0b7e6782011-03-24 11:26:52 +0000284 ParsedAttributesWithRange attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +0000285 MaybeParseCXX0XAttributes(attrs);
286 MaybeParseMicrosoftAttributes(attrs);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000287
Douglas Gregor074149e2009-01-05 19:45:36 +0000288 if (Tok.isNot(tok::l_brace)) {
Abramo Bagnaraf41e33c2011-05-01 16:25:54 +0000289 // Reset the source range in DS, as the leading "extern"
290 // does not really belong to the inner declaration ...
291 DS.SetRangeStart(SourceLocation());
292 DS.SetRangeEnd(SourceLocation());
293 // ... but anyway remember that such an "extern" was seen.
Abramo Bagnara35f9a192010-07-30 16:47:02 +0000294 DS.setExternInLinkageSpec(true);
John McCall7f040a92010-12-24 02:08:15 +0000295 ParseExternalDeclaration(attrs, &DS);
Douglas Gregor23c94db2010-07-02 17:43:08 +0000296 return Actions.ActOnFinishLinkageSpecification(getCurScope(), LinkageSpec,
Douglas Gregor074149e2009-01-05 19:45:36 +0000297 SourceLocation());
Mike Stump1eb44332009-09-09 15:08:12 +0000298 }
Douglas Gregorf44515a2008-12-16 22:23:02 +0000299
Douglas Gregor63a01132010-02-07 08:38:28 +0000300 DS.abort();
301
John McCall7f040a92010-12-24 02:08:15 +0000302 ProhibitAttributes(attrs);
Sean Huntbbd37c62009-11-21 08:43:09 +0000303
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000304 BalancedDelimiterTracker T(*this, tok::l_brace);
305 T.consumeOpen();
Douglas Gregorf44515a2008-12-16 22:23:02 +0000306 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
John McCall0b7e6782011-03-24 11:26:52 +0000307 ParsedAttributesWithRange attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +0000308 MaybeParseCXX0XAttributes(attrs);
309 MaybeParseMicrosoftAttributes(attrs);
310 ParseExternalDeclaration(attrs);
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000311 }
312
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000313 T.consumeClose();
Chris Lattner7d642712010-11-09 20:15:55 +0000314 return Actions.ActOnFinishLinkageSpecification(getCurScope(), LinkageSpec,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000315 T.getCloseLocation());
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000316}
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000317
Douglas Gregorf780abc2008-12-30 03:27:21 +0000318/// ParseUsingDirectiveOrDeclaration - Parse C++ using using-declaration or
319/// using-directive. Assumes that current token is 'using'.
John McCalld226f652010-08-21 09:40:31 +0000320Decl *Parser::ParseUsingDirectiveOrDeclaration(unsigned Context,
John McCall78b81052010-11-10 02:40:36 +0000321 const ParsedTemplateInfo &TemplateInfo,
322 SourceLocation &DeclEnd,
Richard Smithc89edf52011-07-01 19:46:12 +0000323 ParsedAttributesWithRange &attrs,
324 Decl **OwnedType) {
Douglas Gregorf780abc2008-12-30 03:27:21 +0000325 assert(Tok.is(tok::kw_using) && "Not using token");
Fariborz Jahanian9735c5e2011-08-22 17:59:19 +0000326 ObjCDeclContextSwitch ObjCDC(*this);
327
Douglas Gregorf780abc2008-12-30 03:27:21 +0000328 // Eat 'using'.
329 SourceLocation UsingLoc = ConsumeToken();
330
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000331 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000332 Actions.CodeCompleteUsing(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000333 cutOffParsing();
334 return 0;
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000335 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000336
John McCall78b81052010-11-10 02:40:36 +0000337 // 'using namespace' means this is a using-directive.
338 if (Tok.is(tok::kw_namespace)) {
339 // Template parameters are always an error here.
340 if (TemplateInfo.Kind) {
341 SourceRange R = TemplateInfo.getSourceRange();
342 Diag(UsingLoc, diag::err_templated_using_directive)
343 << R << FixItHint::CreateRemoval(R);
344 }
Sean Huntbbd37c62009-11-21 08:43:09 +0000345
Fariborz Jahanian9735c5e2011-08-22 17:59:19 +0000346 return ParseUsingDirective(Context, UsingLoc, DeclEnd, attrs);
John McCall78b81052010-11-10 02:40:36 +0000347 }
348
Richard Smith162e1c12011-04-15 14:24:37 +0000349 // Otherwise, it must be a using-declaration or an alias-declaration.
John McCall78b81052010-11-10 02:40:36 +0000350
351 // Using declarations can't have attributes.
John McCall7f040a92010-12-24 02:08:15 +0000352 ProhibitAttributes(attrs);
Chris Lattner2f274772009-01-06 06:55:51 +0000353
Fariborz Jahanian9735c5e2011-08-22 17:59:19 +0000354 return ParseUsingDeclaration(Context, TemplateInfo, UsingLoc, DeclEnd,
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000355 AS_none, OwnedType);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000356}
357
358/// ParseUsingDirective - Parse C++ using-directive, assumes
359/// that current token is 'namespace' and 'using' was already parsed.
360///
361/// using-directive: [C++ 7.3.p4: namespace.udir]
362/// 'using' 'namespace' ::[opt] nested-name-specifier[opt]
363/// namespace-name ;
364/// [GNU] using-directive:
365/// 'using' 'namespace' ::[opt] nested-name-specifier[opt]
366/// namespace-name attributes[opt] ;
367///
John McCalld226f652010-08-21 09:40:31 +0000368Decl *Parser::ParseUsingDirective(unsigned Context,
John McCall78b81052010-11-10 02:40:36 +0000369 SourceLocation UsingLoc,
370 SourceLocation &DeclEnd,
John McCall7f040a92010-12-24 02:08:15 +0000371 ParsedAttributes &attrs) {
Douglas Gregorf780abc2008-12-30 03:27:21 +0000372 assert(Tok.is(tok::kw_namespace) && "Not 'namespace' token");
373
374 // Eat 'namespace'.
375 SourceLocation NamespcLoc = ConsumeToken();
376
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000377 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000378 Actions.CodeCompleteUsingDirective(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000379 cutOffParsing();
380 return 0;
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000381 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000382
Douglas Gregorf780abc2008-12-30 03:27:21 +0000383 CXXScopeSpec SS;
384 // Parse (optional) nested-name-specifier.
Douglas Gregorefaa93a2011-11-07 17:33:42 +0000385 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), /*EnteringContext=*/false);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000386
Douglas Gregorf780abc2008-12-30 03:27:21 +0000387 IdentifierInfo *NamespcName = 0;
388 SourceLocation IdentLoc = SourceLocation();
389
390 // Parse namespace-name.
Chris Lattner823c44e2009-01-06 07:27:21 +0000391 if (SS.isInvalid() || Tok.isNot(tok::identifier)) {
Douglas Gregorf780abc2008-12-30 03:27:21 +0000392 Diag(Tok, diag::err_expected_namespace_name);
393 // If there was invalid namespace name, skip to end of decl, and eat ';'.
394 SkipUntil(tok::semi);
395 // FIXME: Are there cases, when we would like to call ActOnUsingDirective?
John McCalld226f652010-08-21 09:40:31 +0000396 return 0;
Douglas Gregorf780abc2008-12-30 03:27:21 +0000397 }
Mike Stump1eb44332009-09-09 15:08:12 +0000398
Chris Lattner823c44e2009-01-06 07:27:21 +0000399 // Parse identifier.
400 NamespcName = Tok.getIdentifierInfo();
401 IdentLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000402
Chris Lattner823c44e2009-01-06 07:27:21 +0000403 // Parse (optional) attributes (most likely GNU strong-using extension).
Sean Huntbbd37c62009-11-21 08:43:09 +0000404 bool GNUAttr = false;
405 if (Tok.is(tok::kw___attribute)) {
406 GNUAttr = true;
John McCall7f040a92010-12-24 02:08:15 +0000407 ParseGNUAttributes(attrs);
Sean Huntbbd37c62009-11-21 08:43:09 +0000408 }
Mike Stump1eb44332009-09-09 15:08:12 +0000409
Chris Lattner823c44e2009-01-06 07:27:21 +0000410 // Eat ';'.
Chris Lattner97144fc2009-04-02 04:16:50 +0000411 DeclEnd = Tok.getLocation();
Chris Lattner6869d8e2009-06-14 00:07:48 +0000412 ExpectAndConsume(tok::semi,
Douglas Gregor9ba23b42010-09-07 15:23:11 +0000413 GNUAttr ? diag::err_expected_semi_after_attribute_list
414 : diag::err_expected_semi_after_namespace_name,
415 "", tok::semi);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000416
Douglas Gregor23c94db2010-07-02 17:43:08 +0000417 return Actions.ActOnUsingDirective(getCurScope(), UsingLoc, NamespcLoc, SS,
John McCall7f040a92010-12-24 02:08:15 +0000418 IdentLoc, NamespcName, attrs.getList());
Douglas Gregorf780abc2008-12-30 03:27:21 +0000419}
420
Richard Smith162e1c12011-04-15 14:24:37 +0000421/// ParseUsingDeclaration - Parse C++ using-declaration or alias-declaration.
422/// Assumes that 'using' was already seen.
Douglas Gregorf780abc2008-12-30 03:27:21 +0000423///
424/// using-declaration: [C++ 7.3.p3: namespace.udecl]
425/// 'using' 'typename'[opt] ::[opt] nested-name-specifier
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000426/// unqualified-id
427/// 'using' :: unqualified-id
Douglas Gregorf780abc2008-12-30 03:27:21 +0000428///
Richard Smith162e1c12011-04-15 14:24:37 +0000429/// alias-declaration: C++0x [decl.typedef]p2
430/// 'using' identifier = type-id ;
431///
John McCalld226f652010-08-21 09:40:31 +0000432Decl *Parser::ParseUsingDeclaration(unsigned Context,
John McCall78b81052010-11-10 02:40:36 +0000433 const ParsedTemplateInfo &TemplateInfo,
434 SourceLocation UsingLoc,
435 SourceLocation &DeclEnd,
Richard Smithc89edf52011-07-01 19:46:12 +0000436 AccessSpecifier AS,
437 Decl **OwnedType) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000438 CXXScopeSpec SS;
John McCall7ba107a2009-11-18 02:36:19 +0000439 SourceLocation TypenameLoc;
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000440 bool IsTypeName;
441
442 // Ignore optional 'typename'.
Douglas Gregor12c118a2009-11-04 16:30:06 +0000443 // FIXME: This is wrong; we should parse this as a typename-specifier.
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000444 if (Tok.is(tok::kw_typename)) {
John McCall7ba107a2009-11-18 02:36:19 +0000445 TypenameLoc = Tok.getLocation();
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000446 ConsumeToken();
447 IsTypeName = true;
448 }
449 else
450 IsTypeName = false;
451
452 // Parse nested-name-specifier.
Douglas Gregorefaa93a2011-11-07 17:33:42 +0000453 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), /*EnteringContext=*/false);
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000454
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000455 // Check nested-name specifier.
456 if (SS.isInvalid()) {
457 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000458 return 0;
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000459 }
Douglas Gregor12c118a2009-11-04 16:30:06 +0000460
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000461 // Parse the unqualified-id. We allow parsing of both constructor and
Douglas Gregor12c118a2009-11-04 16:30:06 +0000462 // destructor names and allow the action module to diagnose any semantic
463 // errors.
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000464 SourceLocation TemplateKWLoc;
Douglas Gregor12c118a2009-11-04 16:30:06 +0000465 UnqualifiedId Name;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000466 if (ParseUnqualifiedId(SS,
Douglas Gregor12c118a2009-11-04 16:30:06 +0000467 /*EnteringContext=*/false,
468 /*AllowDestructorName=*/true,
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000469 /*AllowConstructorName=*/true,
John McCallb3d87482010-08-24 05:47:05 +0000470 ParsedType(),
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000471 TemplateKWLoc,
Douglas Gregor12c118a2009-11-04 16:30:06 +0000472 Name)) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000473 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000474 return 0;
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000475 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000476
John McCall0b7e6782011-03-24 11:26:52 +0000477 ParsedAttributes attrs(AttrFactory);
Richard Smith162e1c12011-04-15 14:24:37 +0000478
479 // Maybe this is an alias-declaration.
480 bool IsAliasDecl = Tok.is(tok::equal);
481 TypeResult TypeAlias;
482 if (IsAliasDecl) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000483 // TODO: Attribute support. C++0x attributes may appear before the equals.
484 // Where can GNU attributes appear?
Richard Smith162e1c12011-04-15 14:24:37 +0000485 ConsumeToken();
486
Richard Smith7fe62082011-10-15 05:09:34 +0000487 Diag(Tok.getLocation(), getLang().CPlusPlus0x ?
488 diag::warn_cxx98_compat_alias_declaration :
489 diag::ext_alias_declaration);
Richard Smith162e1c12011-04-15 14:24:37 +0000490
Richard Smith3e4c6c42011-05-05 21:57:07 +0000491 // Type alias templates cannot be specialized.
492 int SpecKind = -1;
Richard Smith536e9c12011-05-05 22:36:10 +0000493 if (TemplateInfo.Kind == ParsedTemplateInfo::Template &&
494 Name.getKind() == UnqualifiedId::IK_TemplateId)
Richard Smith3e4c6c42011-05-05 21:57:07 +0000495 SpecKind = 0;
496 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitSpecialization)
497 SpecKind = 1;
498 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation)
499 SpecKind = 2;
500 if (SpecKind != -1) {
501 SourceRange Range;
502 if (SpecKind == 0)
503 Range = SourceRange(Name.TemplateId->LAngleLoc,
504 Name.TemplateId->RAngleLoc);
505 else
506 Range = TemplateInfo.getSourceRange();
507 Diag(Range.getBegin(), diag::err_alias_declaration_specialization)
508 << SpecKind << Range;
509 SkipUntil(tok::semi);
510 return 0;
511 }
512
Richard Smith162e1c12011-04-15 14:24:37 +0000513 // Name must be an identifier.
514 if (Name.getKind() != UnqualifiedId::IK_Identifier) {
515 Diag(Name.StartLocation, diag::err_alias_declaration_not_identifier);
516 // No removal fixit: can't recover from this.
517 SkipUntil(tok::semi);
518 return 0;
519 } else if (IsTypeName)
520 Diag(TypenameLoc, diag::err_alias_declaration_not_identifier)
521 << FixItHint::CreateRemoval(SourceRange(TypenameLoc,
522 SS.isNotEmpty() ? SS.getEndLoc() : TypenameLoc));
523 else if (SS.isNotEmpty())
524 Diag(SS.getBeginLoc(), diag::err_alias_declaration_not_identifier)
525 << FixItHint::CreateRemoval(SS.getRange());
526
Richard Smith3e4c6c42011-05-05 21:57:07 +0000527 TypeAlias = ParseTypeName(0, TemplateInfo.Kind ?
528 Declarator::AliasTemplateContext :
John McCallcdda47f2011-10-01 09:56:14 +0000529 Declarator::AliasDeclContext, AS, OwnedType);
Richard Smith162e1c12011-04-15 14:24:37 +0000530 } else
531 // Parse (optional) attributes (most likely GNU strong-using extension).
532 MaybeParseGNUAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +0000533
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000534 // Eat ';'.
535 DeclEnd = Tok.getLocation();
536 ExpectAndConsume(tok::semi, diag::err_expected_semi_after,
Richard Smith162e1c12011-04-15 14:24:37 +0000537 !attrs.empty() ? "attributes list" :
538 IsAliasDecl ? "alias declaration" : "using declaration",
Douglas Gregor12c118a2009-11-04 16:30:06 +0000539 tok::semi);
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000540
John McCall78b81052010-11-10 02:40:36 +0000541 // Diagnose an attempt to declare a templated using-declaration.
Richard Smith3e4c6c42011-05-05 21:57:07 +0000542 // In C++0x, alias-declarations can be templates:
Richard Smith162e1c12011-04-15 14:24:37 +0000543 // template <...> using id = type;
Richard Smith3e4c6c42011-05-05 21:57:07 +0000544 if (TemplateInfo.Kind && !IsAliasDecl) {
John McCall78b81052010-11-10 02:40:36 +0000545 SourceRange R = TemplateInfo.getSourceRange();
546 Diag(UsingLoc, diag::err_templated_using_declaration)
547 << R << FixItHint::CreateRemoval(R);
548
549 // Unfortunately, we have to bail out instead of recovering by
550 // ignoring the parameters, just in case the nested name specifier
551 // depends on the parameters.
552 return 0;
553 }
554
Douglas Gregor480b53c2011-09-26 14:30:28 +0000555 // "typename" keyword is allowed for identifiers only,
556 // because it may be a type definition.
557 if (IsTypeName && Name.getKind() != UnqualifiedId::IK_Identifier) {
558 Diag(Name.getSourceRange().getBegin(), diag::err_typename_identifiers_only)
559 << FixItHint::CreateRemoval(SourceRange(TypenameLoc));
560 // Proceed parsing, but reset the IsTypeName flag.
561 IsTypeName = false;
562 }
563
Richard Smith3e4c6c42011-05-05 21:57:07 +0000564 if (IsAliasDecl) {
565 TemplateParameterLists *TemplateParams = TemplateInfo.TemplateParams;
566 MultiTemplateParamsArg TemplateParamsArg(Actions,
567 TemplateParams ? TemplateParams->data() : 0,
568 TemplateParams ? TemplateParams->size() : 0);
569 return Actions.ActOnAliasDeclaration(getCurScope(), AS, TemplateParamsArg,
570 UsingLoc, Name, TypeAlias);
571 }
Richard Smith162e1c12011-04-15 14:24:37 +0000572
Ted Kremenek8113ecf2010-11-10 05:59:39 +0000573 return Actions.ActOnUsingDeclaration(getCurScope(), AS, true, UsingLoc, SS,
John McCall7f040a92010-12-24 02:08:15 +0000574 Name, attrs.getList(),
575 IsTypeName, TypenameLoc);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000576}
577
Benjamin Kramerffbe9b92011-12-23 17:00:35 +0000578/// ParseStaticAssertDeclaration - Parse C++0x or C11 static_assert-declaration.
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000579///
Peter Collingbournec6eb44b2011-04-15 00:35:57 +0000580/// [C++0x] static_assert-declaration:
581/// static_assert ( constant-expression , string-literal ) ;
582///
Benjamin Kramerffbe9b92011-12-23 17:00:35 +0000583/// [C11] static_assert-declaration:
Peter Collingbournec6eb44b2011-04-15 00:35:57 +0000584/// _Static_assert ( constant-expression , string-literal ) ;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000585///
John McCalld226f652010-08-21 09:40:31 +0000586Decl *Parser::ParseStaticAssertDeclaration(SourceLocation &DeclEnd){
Peter Collingbournec6eb44b2011-04-15 00:35:57 +0000587 assert((Tok.is(tok::kw_static_assert) || Tok.is(tok::kw__Static_assert)) &&
588 "Not a static_assert declaration");
589
Benjamin Kramerffbe9b92011-12-23 17:00:35 +0000590 if (Tok.is(tok::kw__Static_assert) && !getLang().C11)
591 Diag(Tok, diag::ext_c11_static_assert);
Richard Smith841804b2011-10-17 23:06:20 +0000592 if (Tok.is(tok::kw_static_assert))
593 Diag(Tok, diag::warn_cxx98_compat_static_assert);
Peter Collingbournec6eb44b2011-04-15 00:35:57 +0000594
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000595 SourceLocation StaticAssertLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000596
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000597 BalancedDelimiterTracker T(*this, tok::l_paren);
598 if (T.consumeOpen()) {
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000599 Diag(Tok, diag::err_expected_lparen);
John McCalld226f652010-08-21 09:40:31 +0000600 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000601 }
Mike Stump1eb44332009-09-09 15:08:12 +0000602
John McCall60d7b3a2010-08-24 06:29:42 +0000603 ExprResult AssertExpr(ParseConstantExpression());
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000604 if (AssertExpr.isInvalid()) {
605 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000606 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000607 }
Mike Stump1eb44332009-09-09 15:08:12 +0000608
Anders Carlssonad5f9602009-03-13 23:29:20 +0000609 if (ExpectAndConsume(tok::comma, diag::err_expected_comma, "", tok::semi))
John McCalld226f652010-08-21 09:40:31 +0000610 return 0;
Anders Carlssonad5f9602009-03-13 23:29:20 +0000611
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000612 if (Tok.isNot(tok::string_literal)) {
613 Diag(Tok, diag::err_expected_string_literal);
614 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000615 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000616 }
Mike Stump1eb44332009-09-09 15:08:12 +0000617
John McCall60d7b3a2010-08-24 06:29:42 +0000618 ExprResult AssertMessage(ParseStringLiteralExpression());
Mike Stump1eb44332009-09-09 15:08:12 +0000619 if (AssertMessage.isInvalid())
John McCalld226f652010-08-21 09:40:31 +0000620 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000621
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000622 T.consumeClose();
Mike Stump1eb44332009-09-09 15:08:12 +0000623
Chris Lattner97144fc2009-04-02 04:16:50 +0000624 DeclEnd = Tok.getLocation();
Douglas Gregor9ba23b42010-09-07 15:23:11 +0000625 ExpectAndConsumeSemi(diag::err_expected_semi_after_static_assert);
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000626
John McCall9ae2f072010-08-23 23:25:46 +0000627 return Actions.ActOnStaticAssertDeclaration(StaticAssertLoc,
628 AssertExpr.take(),
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000629 AssertMessage.take(),
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000630 T.getCloseLocation());
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000631}
632
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000633/// ParseDecltypeSpecifier - Parse a C++0x decltype specifier.
634///
635/// 'decltype' ( expression )
636///
David Blaikie42d6d0c2011-12-04 05:04:18 +0000637SourceLocation Parser::ParseDecltypeSpecifier(DeclSpec &DS) {
638 assert((Tok.is(tok::kw_decltype) || Tok.is(tok::annot_decltype))
639 && "Not a decltype specifier");
640
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000641
David Blaikie42d6d0c2011-12-04 05:04:18 +0000642 ExprResult Result;
643 SourceLocation StartLoc = Tok.getLocation();
644 SourceLocation EndLoc;
645
646 if (Tok.is(tok::annot_decltype)) {
647 Result = getExprAnnotation(Tok);
648 EndLoc = Tok.getAnnotationEndLoc();
649 ConsumeToken();
650 if (Result.isInvalid()) {
651 DS.SetTypeSpecError();
652 return EndLoc;
653 }
654 } else {
655 ConsumeToken();
656
657 BalancedDelimiterTracker T(*this, tok::l_paren);
658 if (T.expectAndConsume(diag::err_expected_lparen_after,
659 "decltype", tok::r_paren)) {
660 DS.SetTypeSpecError();
661 return T.getOpenLocation() == Tok.getLocation() ?
662 StartLoc : T.getOpenLocation();
663 }
664
665 // Parse the expression
666
667 // C++0x [dcl.type.simple]p4:
668 // The operand of the decltype specifier is an unevaluated operand.
669 EnterExpressionEvaluationContext Unevaluated(Actions,
670 Sema::Unevaluated);
671 Result = ParseExpression();
672 if (Result.isInvalid()) {
673 SkipUntil(tok::r_paren, true, true);
674 DS.SetTypeSpecError();
675 return Tok.is(tok::eof) ? Tok.getLocation() : ConsumeParen();
676 }
677
678 // Match the ')'
679 T.consumeClose();
680 if (T.getCloseLocation().isInvalid()) {
681 DS.SetTypeSpecError();
682 // FIXME: this should return the location of the last token
683 // that was consumed (by "consumeClose()")
684 return T.getCloseLocation();
685 }
686
687 EndLoc = T.getCloseLocation();
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000688 }
Mike Stump1eb44332009-09-09 15:08:12 +0000689
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000690 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +0000691 unsigned DiagID;
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000692 // Check for duplicate type specifiers (e.g. "int decltype(a)").
Mike Stump1eb44332009-09-09 15:08:12 +0000693 if (DS.SetTypeSpecType(DeclSpec::TST_decltype, StartLoc, PrevSpec,
David Blaikie42d6d0c2011-12-04 05:04:18 +0000694 DiagID, Result.release())) {
John McCallfec54012009-08-03 20:12:06 +0000695 Diag(StartLoc, DiagID) << PrevSpec;
David Blaikie42d6d0c2011-12-04 05:04:18 +0000696 DS.SetTypeSpecError();
697 }
698 return EndLoc;
699}
700
701void Parser::AnnotateExistingDecltypeSpecifier(const DeclSpec& DS,
702 SourceLocation StartLoc,
703 SourceLocation EndLoc) {
704 // make sure we have a token we can turn into an annotation token
705 if (PP.isBacktrackEnabled())
706 PP.RevertCachedTokens(1);
707 else
708 PP.EnterToken(Tok);
709
710 Tok.setKind(tok::annot_decltype);
711 setExprAnnotation(Tok, DS.getTypeSpecType() == TST_decltype ?
712 DS.getRepAsExpr() : ExprResult());
713 Tok.setAnnotationEndLoc(EndLoc);
714 Tok.setLocation(StartLoc);
715 PP.AnnotateCachedTokens(Tok);
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000716}
717
Sean Huntdb5d44b2011-05-19 05:37:45 +0000718void Parser::ParseUnderlyingTypeSpecifier(DeclSpec &DS) {
719 assert(Tok.is(tok::kw___underlying_type) &&
720 "Not an underlying type specifier");
721
722 SourceLocation StartLoc = ConsumeToken();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000723 BalancedDelimiterTracker T(*this, tok::l_paren);
724 if (T.expectAndConsume(diag::err_expected_lparen_after,
725 "__underlying_type", tok::r_paren)) {
Sean Huntdb5d44b2011-05-19 05:37:45 +0000726 return;
727 }
728
729 TypeResult Result = ParseTypeName();
730 if (Result.isInvalid()) {
731 SkipUntil(tok::r_paren);
732 return;
733 }
734
735 // Match the ')'
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000736 T.consumeClose();
737 if (T.getCloseLocation().isInvalid())
Sean Huntdb5d44b2011-05-19 05:37:45 +0000738 return;
739
740 const char *PrevSpec = 0;
741 unsigned DiagID;
Sean Huntca63c202011-05-24 22:41:36 +0000742 if (DS.SetTypeSpecType(DeclSpec::TST_underlyingType, StartLoc, PrevSpec,
Sean Huntdb5d44b2011-05-19 05:37:45 +0000743 DiagID, Result.release()))
744 Diag(StartLoc, DiagID) << PrevSpec;
745}
746
David Blaikie09048df2011-10-25 15:01:20 +0000747/// ParseBaseTypeSpecifier - Parse a C++ base-type-specifier which is either a
748/// class name or decltype-specifier. Note that we only check that the result
749/// names a type; semantic analysis will need to verify that the type names a
750/// class. The result is either a type or null, depending on whether a type
751/// name was found.
Douglas Gregor42a552f2008-11-05 20:51:48 +0000752///
David Blaikie09048df2011-10-25 15:01:20 +0000753/// base-type-specifier: [C++ 10.1]
754/// class-or-decltype
755/// class-or-decltype: [C++ 10.1]
756/// nested-name-specifier[opt] class-name
757/// decltype-specifier
Douglas Gregor42a552f2008-11-05 20:51:48 +0000758/// class-name: [C++ 9.1]
759/// identifier
Douglas Gregor7f43d672009-02-25 23:52:28 +0000760/// simple-template-id
Mike Stump1eb44332009-09-09 15:08:12 +0000761///
David Blaikie22216eb2011-10-25 17:10:12 +0000762Parser::TypeResult Parser::ParseBaseTypeSpecifier(SourceLocation &BaseLoc,
763 SourceLocation &EndLocation) {
David Blaikie7fe38782011-10-25 18:46:41 +0000764 // Ignore attempts to use typename
765 if (Tok.is(tok::kw_typename)) {
766 Diag(Tok, diag::err_expected_class_name_not_template)
767 << FixItHint::CreateRemoval(Tok.getLocation());
768 ConsumeToken();
769 }
770
David Blaikie152aa4b2011-10-25 18:17:58 +0000771 // Parse optional nested-name-specifier
772 CXXScopeSpec SS;
773 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), /*EnteringContext=*/false);
774
775 BaseLoc = Tok.getLocation();
776
David Blaikie22216eb2011-10-25 17:10:12 +0000777 // Parse decltype-specifier
David Blaikie42d6d0c2011-12-04 05:04:18 +0000778 // tok == kw_decltype is just error recovery, it can only happen when SS
779 // isn't empty
780 if (Tok.is(tok::kw_decltype) || Tok.is(tok::annot_decltype)) {
David Blaikie152aa4b2011-10-25 18:17:58 +0000781 if (SS.isNotEmpty())
782 Diag(SS.getBeginLoc(), diag::err_unexpected_scope_on_base_decltype)
783 << FixItHint::CreateRemoval(SS.getRange());
David Blaikie22216eb2011-10-25 17:10:12 +0000784 // Fake up a Declarator to use with ActOnTypeName.
785 DeclSpec DS(AttrFactory);
786
David Blaikieb5777572011-12-08 04:53:15 +0000787 EndLocation = ParseDecltypeSpecifier(DS);
David Blaikie22216eb2011-10-25 17:10:12 +0000788
789 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
790 return Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
791 }
792
Douglas Gregor7f43d672009-02-25 23:52:28 +0000793 // Check whether we have a template-id that names a type.
794 if (Tok.is(tok::annot_template_id)) {
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +0000795 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregord9b600c2010-01-12 17:52:59 +0000796 if (TemplateId->Kind == TNK_Type_template ||
797 TemplateId->Kind == TNK_Dependent_template_name) {
Douglas Gregor059101f2011-03-02 00:47:37 +0000798 AnnotateTemplateIdTokenAsType();
Douglas Gregor7f43d672009-02-25 23:52:28 +0000799
800 assert(Tok.is(tok::annot_typename) && "template-id -> type failed");
John McCallb3d87482010-08-24 05:47:05 +0000801 ParsedType Type = getTypeAnnotation(Tok);
Douglas Gregor7f43d672009-02-25 23:52:28 +0000802 EndLocation = Tok.getAnnotationEndLoc();
803 ConsumeToken();
Douglas Gregor31a19b62009-04-01 21:51:26 +0000804
805 if (Type)
806 return Type;
807 return true;
Douglas Gregor7f43d672009-02-25 23:52:28 +0000808 }
809
810 // Fall through to produce an error below.
811 }
812
Douglas Gregor42a552f2008-11-05 20:51:48 +0000813 if (Tok.isNot(tok::identifier)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000814 Diag(Tok, diag::err_expected_class_name);
Douglas Gregor31a19b62009-04-01 21:51:26 +0000815 return true;
Douglas Gregor42a552f2008-11-05 20:51:48 +0000816 }
817
Douglas Gregor84d0a192010-01-12 21:28:44 +0000818 IdentifierInfo *Id = Tok.getIdentifierInfo();
819 SourceLocation IdLoc = ConsumeToken();
820
821 if (Tok.is(tok::less)) {
822 // It looks the user intended to write a template-id here, but the
823 // template-name was wrong. Try to fix that.
824 TemplateNameKind TNK = TNK_Type_template;
825 TemplateTy Template;
Douglas Gregor23c94db2010-07-02 17:43:08 +0000826 if (!Actions.DiagnoseUnknownTemplateName(*Id, IdLoc, getCurScope(),
Douglas Gregor059101f2011-03-02 00:47:37 +0000827 &SS, Template, TNK)) {
Douglas Gregor84d0a192010-01-12 21:28:44 +0000828 Diag(IdLoc, diag::err_unknown_template_name)
829 << Id;
830 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000831
Douglas Gregor84d0a192010-01-12 21:28:44 +0000832 if (!Template)
833 return true;
834
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000835 // Form the template name
Douglas Gregor84d0a192010-01-12 21:28:44 +0000836 UnqualifiedId TemplateName;
837 TemplateName.setIdentifier(Id, IdLoc);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000838
Douglas Gregor84d0a192010-01-12 21:28:44 +0000839 // Parse the full template-id, then turn it into a type.
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000840 if (AnnotateTemplateIdToken(Template, TNK, SS, SourceLocation(),
841 TemplateName, true))
Douglas Gregor84d0a192010-01-12 21:28:44 +0000842 return true;
843 if (TNK == TNK_Dependent_template_name)
Douglas Gregor059101f2011-03-02 00:47:37 +0000844 AnnotateTemplateIdTokenAsType();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000845
Douglas Gregor84d0a192010-01-12 21:28:44 +0000846 // If we didn't end up with a typename token, there's nothing more we
847 // can do.
848 if (Tok.isNot(tok::annot_typename))
849 return true;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000850
Douglas Gregor84d0a192010-01-12 21:28:44 +0000851 // Retrieve the type from the annotation token, consume that token, and
852 // return.
853 EndLocation = Tok.getAnnotationEndLoc();
John McCallb3d87482010-08-24 05:47:05 +0000854 ParsedType Type = getTypeAnnotation(Tok);
Douglas Gregor84d0a192010-01-12 21:28:44 +0000855 ConsumeToken();
856 return Type;
857 }
858
Douglas Gregor42a552f2008-11-05 20:51:48 +0000859 // We have an identifier; check whether it is actually a type.
Douglas Gregor059101f2011-03-02 00:47:37 +0000860 ParsedType Type = Actions.getTypeName(*Id, IdLoc, getCurScope(), &SS, true,
Douglas Gregor9e876872011-03-01 18:12:44 +0000861 false, ParsedType(),
Abramo Bagnarafad03b72012-01-27 08:46:19 +0000862 /*IsCtorOrDtorName=*/false,
Douglas Gregor9e876872011-03-01 18:12:44 +0000863 /*NonTrivialTypeSourceInfo=*/true);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000864 if (!Type) {
Douglas Gregor124b8782010-02-16 19:09:40 +0000865 Diag(IdLoc, diag::err_expected_class_name);
Douglas Gregor31a19b62009-04-01 21:51:26 +0000866 return true;
Douglas Gregor42a552f2008-11-05 20:51:48 +0000867 }
868
869 // Consume the identifier.
Douglas Gregor84d0a192010-01-12 21:28:44 +0000870 EndLocation = IdLoc;
Nick Lewycky56062202010-07-26 16:56:01 +0000871
872 // Fake up a Declarator to use with ActOnTypeName.
John McCall0b7e6782011-03-24 11:26:52 +0000873 DeclSpec DS(AttrFactory);
Nick Lewycky56062202010-07-26 16:56:01 +0000874 DS.SetRangeStart(IdLoc);
875 DS.SetRangeEnd(EndLocation);
Douglas Gregor059101f2011-03-02 00:47:37 +0000876 DS.getTypeSpecScope() = SS;
Nick Lewycky56062202010-07-26 16:56:01 +0000877
878 const char *PrevSpec = 0;
879 unsigned DiagID;
880 DS.SetTypeSpecType(TST_typename, IdLoc, PrevSpec, DiagID, Type);
881
882 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
883 return Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
Douglas Gregor42a552f2008-11-05 20:51:48 +0000884}
885
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000886/// ParseClassSpecifier - Parse a C++ class-specifier [C++ class] or
887/// elaborated-type-specifier [C++ dcl.type.elab]; we can't tell which
888/// until we reach the start of a definition or see a token that
Sebastian Redld9bafa72010-02-03 21:21:43 +0000889/// cannot start a definition. If SuppressDeclarations is true, we do know.
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000890///
891/// class-specifier: [C++ class]
892/// class-head '{' member-specification[opt] '}'
893/// class-head '{' member-specification[opt] '}' attributes[opt]
894/// class-head:
895/// class-key identifier[opt] base-clause[opt]
896/// class-key nested-name-specifier identifier base-clause[opt]
897/// class-key nested-name-specifier[opt] simple-template-id
898/// base-clause[opt]
899/// [GNU] class-key attributes[opt] identifier[opt] base-clause[opt]
Mike Stump1eb44332009-09-09 15:08:12 +0000900/// [GNU] class-key attributes[opt] nested-name-specifier
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000901/// identifier base-clause[opt]
Mike Stump1eb44332009-09-09 15:08:12 +0000902/// [GNU] class-key attributes[opt] nested-name-specifier[opt]
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000903/// simple-template-id base-clause[opt]
904/// class-key:
905/// 'class'
906/// 'struct'
907/// 'union'
908///
909/// elaborated-type-specifier: [C++ dcl.type.elab]
Mike Stump1eb44332009-09-09 15:08:12 +0000910/// class-key ::[opt] nested-name-specifier[opt] identifier
911/// class-key ::[opt] nested-name-specifier[opt] 'template'[opt]
912/// simple-template-id
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000913///
914/// Note that the C++ class-specifier and elaborated-type-specifier,
915/// together, subsume the C99 struct-or-union-specifier:
916///
917/// struct-or-union-specifier: [C99 6.7.2.1]
918/// struct-or-union identifier[opt] '{' struct-contents '}'
919/// struct-or-union identifier
920/// [GNU] struct-or-union attributes[opt] identifier[opt] '{' struct-contents
921/// '}' attributes[opt]
922/// [GNU] struct-or-union attributes[opt] identifier
923/// struct-or-union:
924/// 'struct'
925/// 'union'
Chris Lattner4c97d762009-04-12 21:49:30 +0000926void Parser::ParseClassSpecifier(tok::TokenKind TagTokKind,
927 SourceLocation StartLoc, DeclSpec &DS,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000928 const ParsedTemplateInfo &TemplateInfo,
Douglas Gregorefaa93a2011-11-07 17:33:42 +0000929 AccessSpecifier AS,
930 bool EnteringContext,
931 bool SuppressDeclarations){
Chris Lattner4c97d762009-04-12 21:49:30 +0000932 DeclSpec::TST TagType;
933 if (TagTokKind == tok::kw_struct)
934 TagType = DeclSpec::TST_struct;
935 else if (TagTokKind == tok::kw_class)
936 TagType = DeclSpec::TST_class;
937 else {
938 assert(TagTokKind == tok::kw_union && "Not a class specifier");
939 TagType = DeclSpec::TST_union;
940 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000941
Douglas Gregor374929f2009-09-18 15:37:17 +0000942 if (Tok.is(tok::code_completion)) {
943 // Code completion for a struct, class, or union name.
Douglas Gregor23c94db2010-07-02 17:43:08 +0000944 Actions.CodeCompleteTag(getCurScope(), TagType);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000945 return cutOffParsing();
Douglas Gregor374929f2009-09-18 15:37:17 +0000946 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000947
Chandler Carruth926c4b42010-06-28 08:39:25 +0000948 // C++03 [temp.explicit] 14.7.2/8:
949 // The usual access checking rules do not apply to names used to specify
950 // explicit instantiations.
951 //
952 // As an extension we do not perform access checking on the names used to
953 // specify explicit specializations either. This is important to allow
954 // specializing traits classes for private types.
955 bool SuppressingAccessChecks = false;
956 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation ||
957 TemplateInfo.Kind == ParsedTemplateInfo::ExplicitSpecialization) {
958 Actions.ActOnStartSuppressingAccessChecks();
959 SuppressingAccessChecks = true;
960 }
961
John McCall0b7e6782011-03-24 11:26:52 +0000962 ParsedAttributes attrs(AttrFactory);
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000963 // If attributes exist after tag, parse them.
964 if (Tok.is(tok::kw___attribute))
John McCall7f040a92010-12-24 02:08:15 +0000965 ParseGNUAttributes(attrs);
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000966
Steve Narofff59e17e2008-12-24 20:59:21 +0000967 // If declspecs exist after tag, parse them.
John McCallb1d397c2010-08-05 17:13:11 +0000968 while (Tok.is(tok::kw___declspec))
John McCall7f040a92010-12-24 02:08:15 +0000969 ParseMicrosoftDeclSpec(attrs);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000970
Sean Huntbbd37c62009-11-21 08:43:09 +0000971 // If C++0x attributes exist here, parse them.
972 // FIXME: Are we consistent with the ordering of parsing of different
973 // styles of attributes?
John McCall7f040a92010-12-24 02:08:15 +0000974 MaybeParseCXX0XAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +0000975
John Wiegley20c0da72011-04-27 23:09:49 +0000976 if (TagType == DeclSpec::TST_struct &&
Douglas Gregorb467cda2011-04-29 15:31:39 +0000977 !Tok.is(tok::identifier) &&
978 Tok.getIdentifierInfo() &&
979 (Tok.is(tok::kw___is_arithmetic) ||
980 Tok.is(tok::kw___is_convertible) ||
John Wiegley20c0da72011-04-27 23:09:49 +0000981 Tok.is(tok::kw___is_empty) ||
Douglas Gregorb467cda2011-04-29 15:31:39 +0000982 Tok.is(tok::kw___is_floating_point) ||
983 Tok.is(tok::kw___is_function) ||
John Wiegley20c0da72011-04-27 23:09:49 +0000984 Tok.is(tok::kw___is_fundamental) ||
Douglas Gregorb467cda2011-04-29 15:31:39 +0000985 Tok.is(tok::kw___is_integral) ||
986 Tok.is(tok::kw___is_member_function_pointer) ||
987 Tok.is(tok::kw___is_member_pointer) ||
988 Tok.is(tok::kw___is_pod) ||
989 Tok.is(tok::kw___is_pointer) ||
990 Tok.is(tok::kw___is_same) ||
Douglas Gregor877222e2011-04-29 01:38:03 +0000991 Tok.is(tok::kw___is_scalar) ||
Douglas Gregorb467cda2011-04-29 15:31:39 +0000992 Tok.is(tok::kw___is_signed) ||
993 Tok.is(tok::kw___is_unsigned) ||
994 Tok.is(tok::kw___is_void))) {
Douglas Gregor68876142011-07-30 07:01:49 +0000995 // GNU libstdc++ 4.2 and libc++ use certain intrinsic names as the
Douglas Gregorb467cda2011-04-29 15:31:39 +0000996 // name of struct templates, but some are keywords in GCC >= 4.3
997 // and Clang. Therefore, when we see the token sequence "struct
998 // X", make X into a normal identifier rather than a keyword, to
999 // allow libstdc++ 4.2 and libc++ to work properly.
Argyrios Kyrtzidis646395b2010-08-11 22:55:12 +00001000 Tok.getIdentifierInfo()->RevertTokenIDToIdentifier();
Douglas Gregorb117a602009-09-04 05:53:02 +00001001 Tok.setKind(tok::identifier);
1002 }
Mike Stump1eb44332009-09-09 15:08:12 +00001003
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001004 // Parse the (optional) nested-name-specifier.
John McCallaa87d332009-12-12 11:40:51 +00001005 CXXScopeSpec &SS = DS.getTypeSpecScope();
Chris Lattner08d92ec2009-12-10 00:32:41 +00001006 if (getLang().CPlusPlus) {
1007 // "FOO : BAR" is not a potential typo for "FOO::BAR".
1008 ColonProtectionRAIIObject X(*this);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001009
Douglas Gregorefaa93a2011-11-07 17:33:42 +00001010 if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(), EnteringContext))
John McCall207014e2010-07-30 06:26:29 +00001011 DS.SetTypeSpecError();
John McCall9ba61662010-02-26 08:45:28 +00001012 if (SS.isSet())
Chris Lattner08d92ec2009-12-10 00:32:41 +00001013 if (Tok.isNot(tok::identifier) && Tok.isNot(tok::annot_template_id))
1014 Diag(Tok, diag::err_expected_ident);
1015 }
Douglas Gregorcc636682009-02-17 23:15:12 +00001016
Douglas Gregor2cc782f2009-10-30 21:46:58 +00001017 TemplateParameterLists *TemplateParams = TemplateInfo.TemplateParams;
1018
Douglas Gregorcc636682009-02-17 23:15:12 +00001019 // Parse the (optional) class name or simple-template-id.
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001020 IdentifierInfo *Name = 0;
1021 SourceLocation NameLoc;
Douglas Gregor39a8de12009-02-25 19:37:18 +00001022 TemplateIdAnnotation *TemplateId = 0;
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001023 if (Tok.is(tok::identifier)) {
1024 Name = Tok.getIdentifierInfo();
1025 NameLoc = ConsumeToken();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001026
Douglas Gregor5ee37342010-05-30 22:30:21 +00001027 if (Tok.is(tok::less) && getLang().CPlusPlus) {
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001028 // The name was supposed to refer to a template, but didn't.
Douglas Gregor2cc782f2009-10-30 21:46:58 +00001029 // Eat the template argument list and try to continue parsing this as
1030 // a class (or template thereof).
1031 TemplateArgList TemplateArgs;
Douglas Gregor2cc782f2009-10-30 21:46:58 +00001032 SourceLocation LAngleLoc, RAngleLoc;
Douglas Gregor059101f2011-03-02 00:47:37 +00001033 if (ParseTemplateIdAfterTemplateName(TemplateTy(), NameLoc, SS,
Douglas Gregor2cc782f2009-10-30 21:46:58 +00001034 true, LAngleLoc,
Douglas Gregor314b97f2009-11-10 19:49:08 +00001035 TemplateArgs, RAngleLoc)) {
Douglas Gregor2cc782f2009-10-30 21:46:58 +00001036 // We couldn't parse the template argument list at all, so don't
1037 // try to give any location information for the list.
1038 LAngleLoc = RAngleLoc = SourceLocation();
1039 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001040
Douglas Gregor2cc782f2009-10-30 21:46:58 +00001041 Diag(NameLoc, diag::err_explicit_spec_non_template)
Douglas Gregorc78c06d2009-10-30 22:09:44 +00001042 << (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation)
Douglas Gregor2cc782f2009-10-30 21:46:58 +00001043 << (TagType == DeclSpec::TST_class? 0
1044 : TagType == DeclSpec::TST_struct? 1
1045 : 2)
1046 << Name
1047 << SourceRange(LAngleLoc, RAngleLoc);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001048
1049 // Strip off the last template parameter list if it was empty, since
Douglas Gregorc78c06d2009-10-30 22:09:44 +00001050 // we've removed its template argument list.
1051 if (TemplateParams && TemplateInfo.LastParameterListWasEmpty) {
1052 if (TemplateParams && TemplateParams->size() > 1) {
1053 TemplateParams->pop_back();
1054 } else {
1055 TemplateParams = 0;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001056 const_cast<ParsedTemplateInfo&>(TemplateInfo).Kind
Douglas Gregorc78c06d2009-10-30 22:09:44 +00001057 = ParsedTemplateInfo::NonTemplate;
1058 }
1059 } else if (TemplateInfo.Kind
1060 == ParsedTemplateInfo::ExplicitInstantiation) {
1061 // Pretend this is just a forward declaration.
Douglas Gregor2cc782f2009-10-30 21:46:58 +00001062 TemplateParams = 0;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001063 const_cast<ParsedTemplateInfo&>(TemplateInfo).Kind
Douglas Gregor2cc782f2009-10-30 21:46:58 +00001064 = ParsedTemplateInfo::NonTemplate;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001065 const_cast<ParsedTemplateInfo&>(TemplateInfo).TemplateLoc
Douglas Gregorc78c06d2009-10-30 22:09:44 +00001066 = SourceLocation();
1067 const_cast<ParsedTemplateInfo&>(TemplateInfo).ExternLoc
1068 = SourceLocation();
Douglas Gregor2cc782f2009-10-30 21:46:58 +00001069 }
Douglas Gregor2cc782f2009-10-30 21:46:58 +00001070 }
Douglas Gregor39a8de12009-02-25 19:37:18 +00001071 } else if (Tok.is(tok::annot_template_id)) {
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +00001072 TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregor39a8de12009-02-25 19:37:18 +00001073 NameLoc = ConsumeToken();
Douglas Gregorcc636682009-02-17 23:15:12 +00001074
Douglas Gregor059101f2011-03-02 00:47:37 +00001075 if (TemplateId->Kind != TNK_Type_template &&
1076 TemplateId->Kind != TNK_Dependent_template_name) {
Douglas Gregor39a8de12009-02-25 19:37:18 +00001077 // The template-name in the simple-template-id refers to
1078 // something other than a class template. Give an appropriate
1079 // error message and skip to the ';'.
1080 SourceRange Range(NameLoc);
1081 if (SS.isNotEmpty())
1082 Range.setBegin(SS.getBeginLoc());
Douglas Gregorcc636682009-02-17 23:15:12 +00001083
Douglas Gregor39a8de12009-02-25 19:37:18 +00001084 Diag(TemplateId->LAngleLoc, diag::err_template_spec_syntax_non_template)
1085 << Name << static_cast<int>(TemplateId->Kind) << Range;
Mike Stump1eb44332009-09-09 15:08:12 +00001086
Douglas Gregor39a8de12009-02-25 19:37:18 +00001087 DS.SetTypeSpecError();
1088 SkipUntil(tok::semi, false, true);
Chandler Carruth926c4b42010-06-28 08:39:25 +00001089 if (SuppressingAccessChecks)
1090 Actions.ActOnStopSuppressingAccessChecks();
1091
Douglas Gregor39a8de12009-02-25 19:37:18 +00001092 return;
Douglas Gregorcc636682009-02-17 23:15:12 +00001093 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001094 }
1095
Chandler Carruth926c4b42010-06-28 08:39:25 +00001096 // As soon as we're finished parsing the class's template-id, turn access
1097 // checking back on.
1098 if (SuppressingAccessChecks)
1099 Actions.ActOnStopSuppressingAccessChecks();
1100
John McCall67d1a672009-08-06 02:15:43 +00001101 // There are four options here. If we have 'struct foo;', then this
1102 // is either a forward declaration or a friend declaration, which
Anders Carlssoncc54d592011-01-22 16:56:46 +00001103 // have to be treated differently. If we have 'struct foo {...',
Anders Carlsson1d209272011-03-25 14:55:14 +00001104 // 'struct foo :...' or 'struct foo final[opt]' then this is a
Anders Carlssoncc54d592011-01-22 16:56:46 +00001105 // definition. Otherwise we have something like 'struct foo xyz', a reference.
Sebastian Redld9bafa72010-02-03 21:21:43 +00001106 // However, in some contexts, things look like declarations but are just
1107 // references, e.g.
1108 // new struct s;
1109 // or
1110 // &T::operator struct s;
1111 // For these, SuppressDeclarations is true.
John McCallf312b1e2010-08-26 23:41:50 +00001112 Sema::TagUseKind TUK;
Sebastian Redld9bafa72010-02-03 21:21:43 +00001113 if (SuppressDeclarations)
John McCallf312b1e2010-08-26 23:41:50 +00001114 TUK = Sema::TUK_Reference;
Anders Carlssoncc54d592011-01-22 16:56:46 +00001115 else if (Tok.is(tok::l_brace) ||
1116 (getLang().CPlusPlus && Tok.is(tok::colon)) ||
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001117 isCXX0XFinalKeyword()) {
Douglas Gregord85bea22009-09-26 06:47:28 +00001118 if (DS.isFriendSpecified()) {
1119 // C++ [class.friend]p2:
1120 // A class shall not be defined in a friend declaration.
Richard Smithbdad7a22012-01-10 01:33:14 +00001121 Diag(Tok.getLocation(), diag::err_friend_decl_defines_type)
Douglas Gregord85bea22009-09-26 06:47:28 +00001122 << SourceRange(DS.getFriendSpecLoc());
1123
1124 // Skip everything up to the semicolon, so that this looks like a proper
1125 // friend class (or template thereof) declaration.
1126 SkipUntil(tok::semi, true, true);
John McCallf312b1e2010-08-26 23:41:50 +00001127 TUK = Sema::TUK_Friend;
Douglas Gregord85bea22009-09-26 06:47:28 +00001128 } else {
1129 // Okay, this is a class definition.
John McCallf312b1e2010-08-26 23:41:50 +00001130 TUK = Sema::TUK_Definition;
Douglas Gregord85bea22009-09-26 06:47:28 +00001131 }
1132 } else if (Tok.is(tok::semi))
John McCallf312b1e2010-08-26 23:41:50 +00001133 TUK = DS.isFriendSpecified() ? Sema::TUK_Friend : Sema::TUK_Declaration;
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001134 else
John McCallf312b1e2010-08-26 23:41:50 +00001135 TUK = Sema::TUK_Reference;
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001136
John McCall207014e2010-07-30 06:26:29 +00001137 if (!Name && !TemplateId && (DS.getTypeSpecType() == DeclSpec::TST_error ||
John McCallf312b1e2010-08-26 23:41:50 +00001138 TUK != Sema::TUK_Definition)) {
John McCall207014e2010-07-30 06:26:29 +00001139 if (DS.getTypeSpecType() != DeclSpec::TST_error) {
1140 // We have a declaration or reference to an anonymous class.
1141 Diag(StartLoc, diag::err_anon_type_definition)
1142 << DeclSpec::getSpecifierName(TagType);
1143 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001144
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001145 SkipUntil(tok::comma, true);
1146 return;
1147 }
1148
Douglas Gregorddc29e12009-02-06 22:42:48 +00001149 // Create the tag portion of the class or class template.
John McCalld226f652010-08-21 09:40:31 +00001150 DeclResult TagOrTempResult = true; // invalid
1151 TypeResult TypeResult = true; // invalid
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001152
Douglas Gregor402abb52009-05-28 23:31:59 +00001153 bool Owned = false;
John McCallf1bbbb42009-09-04 01:14:41 +00001154 if (TemplateId) {
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001155 // Explicit specialization, class template partial specialization,
1156 // or explicit instantiation.
Mike Stump1eb44332009-09-09 15:08:12 +00001157 ASTTemplateArgsPtr TemplateArgsPtr(Actions,
Douglas Gregor39a8de12009-02-25 19:37:18 +00001158 TemplateId->getTemplateArgs(),
Douglas Gregor39a8de12009-02-25 19:37:18 +00001159 TemplateId->NumArgs);
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001160 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallf312b1e2010-08-26 23:41:50 +00001161 TUK == Sema::TUK_Declaration) {
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001162 // This is an explicit instantiation of a class template.
1163 TagOrTempResult
Douglas Gregor23c94db2010-07-02 17:43:08 +00001164 = Actions.ActOnExplicitInstantiation(getCurScope(),
Douglas Gregor45f96552009-09-04 06:33:52 +00001165 TemplateInfo.ExternLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001166 TemplateInfo.TemplateLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001167 TagType,
Mike Stump1eb44332009-09-09 15:08:12 +00001168 StartLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001169 SS,
John McCall2b5289b2010-08-23 07:28:44 +00001170 TemplateId->Template,
Mike Stump1eb44332009-09-09 15:08:12 +00001171 TemplateId->TemplateNameLoc,
1172 TemplateId->LAngleLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001173 TemplateArgsPtr,
Mike Stump1eb44332009-09-09 15:08:12 +00001174 TemplateId->RAngleLoc,
John McCall7f040a92010-12-24 02:08:15 +00001175 attrs.getList());
John McCall74256f52010-04-14 00:24:33 +00001176
1177 // Friend template-ids are treated as references unless
1178 // they have template headers, in which case they're ill-formed
1179 // (FIXME: "template <class T> friend class A<T>::B<int>;").
1180 // We diagnose this error in ActOnClassTemplateSpecialization.
John McCallf312b1e2010-08-26 23:41:50 +00001181 } else if (TUK == Sema::TUK_Reference ||
1182 (TUK == Sema::TUK_Friend &&
John McCall74256f52010-04-14 00:24:33 +00001183 TemplateInfo.Kind == ParsedTemplateInfo::NonTemplate)) {
Douglas Gregor059101f2011-03-02 00:47:37 +00001184 TypeResult = Actions.ActOnTagTemplateIdType(TUK, TagType,
1185 StartLoc,
1186 TemplateId->SS,
1187 TemplateId->Template,
1188 TemplateId->TemplateNameLoc,
1189 TemplateId->LAngleLoc,
1190 TemplateArgsPtr,
1191 TemplateId->RAngleLoc);
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001192 } else {
1193 // This is an explicit specialization or a class template
1194 // partial specialization.
1195 TemplateParameterLists FakedParamLists;
1196
1197 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation) {
1198 // This looks like an explicit instantiation, because we have
1199 // something like
1200 //
1201 // template class Foo<X>
1202 //
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001203 // but it actually has a definition. Most likely, this was
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001204 // meant to be an explicit specialization, but the user forgot
1205 // the '<>' after 'template'.
John McCallf312b1e2010-08-26 23:41:50 +00001206 assert(TUK == Sema::TUK_Definition && "Expected a definition here");
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001207
Mike Stump1eb44332009-09-09 15:08:12 +00001208 SourceLocation LAngleLoc
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001209 = PP.getLocForEndOfToken(TemplateInfo.TemplateLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00001210 Diag(TemplateId->TemplateNameLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001211 diag::err_explicit_instantiation_with_definition)
1212 << SourceRange(TemplateInfo.TemplateLoc)
Douglas Gregor849b2432010-03-31 17:46:05 +00001213 << FixItHint::CreateInsertion(LAngleLoc, "<>");
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001214
1215 // Create a fake template parameter list that contains only
1216 // "template<>", so that we treat this construct as a class
1217 // template specialization.
1218 FakedParamLists.push_back(
Mike Stump1eb44332009-09-09 15:08:12 +00001219 Actions.ActOnTemplateParameterList(0, SourceLocation(),
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001220 TemplateInfo.TemplateLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001221 LAngleLoc,
1222 0, 0,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001223 LAngleLoc));
1224 TemplateParams = &FakedParamLists;
1225 }
1226
1227 // Build the class template specialization.
1228 TagOrTempResult
Douglas Gregor23c94db2010-07-02 17:43:08 +00001229 = Actions.ActOnClassTemplateSpecialization(getCurScope(), TagType, TUK,
Douglas Gregord023aec2011-09-09 20:53:38 +00001230 StartLoc, DS.getModulePrivateSpecLoc(), SS,
John McCall2b5289b2010-08-23 07:28:44 +00001231 TemplateId->Template,
Mike Stump1eb44332009-09-09 15:08:12 +00001232 TemplateId->TemplateNameLoc,
1233 TemplateId->LAngleLoc,
Douglas Gregor39a8de12009-02-25 19:37:18 +00001234 TemplateArgsPtr,
Mike Stump1eb44332009-09-09 15:08:12 +00001235 TemplateId->RAngleLoc,
John McCall7f040a92010-12-24 02:08:15 +00001236 attrs.getList(),
John McCallf312b1e2010-08-26 23:41:50 +00001237 MultiTemplateParamsArg(Actions,
Douglas Gregorcc636682009-02-17 23:15:12 +00001238 TemplateParams? &(*TemplateParams)[0] : 0,
1239 TemplateParams? TemplateParams->size() : 0));
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001240 }
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001241 } else if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallf312b1e2010-08-26 23:41:50 +00001242 TUK == Sema::TUK_Declaration) {
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001243 // Explicit instantiation of a member of a class template
1244 // specialization, e.g.,
1245 //
1246 // template struct Outer<int>::Inner;
1247 //
1248 TagOrTempResult
Douglas Gregor23c94db2010-07-02 17:43:08 +00001249 = Actions.ActOnExplicitInstantiation(getCurScope(),
Douglas Gregor45f96552009-09-04 06:33:52 +00001250 TemplateInfo.ExternLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001251 TemplateInfo.TemplateLoc,
1252 TagType, StartLoc, SS, Name,
John McCall7f040a92010-12-24 02:08:15 +00001253 NameLoc, attrs.getList());
John McCall9a34edb2010-10-19 01:40:49 +00001254 } else if (TUK == Sema::TUK_Friend &&
1255 TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate) {
1256 TagOrTempResult =
1257 Actions.ActOnTemplatedFriendTag(getCurScope(), DS.getFriendSpecLoc(),
1258 TagType, StartLoc, SS,
John McCall7f040a92010-12-24 02:08:15 +00001259 Name, NameLoc, attrs.getList(),
John McCall9a34edb2010-10-19 01:40:49 +00001260 MultiTemplateParamsArg(Actions,
1261 TemplateParams? &(*TemplateParams)[0] : 0,
1262 TemplateParams? TemplateParams->size() : 0));
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001263 } else {
1264 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallf312b1e2010-08-26 23:41:50 +00001265 TUK == Sema::TUK_Definition) {
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001266 // FIXME: Diagnose this particular error.
1267 }
1268
John McCallc4e70192009-09-11 04:59:25 +00001269 bool IsDependent = false;
1270
John McCalla25c4082010-10-19 18:40:57 +00001271 // Don't pass down template parameter lists if this is just a tag
1272 // reference. For example, we don't need the template parameters here:
1273 // template <class T> class A *makeA(T t);
1274 MultiTemplateParamsArg TParams;
1275 if (TUK != Sema::TUK_Reference && TemplateParams)
1276 TParams =
1277 MultiTemplateParamsArg(&(*TemplateParams)[0], TemplateParams->size());
1278
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001279 // Declaration or definition of a class type
John McCall9a34edb2010-10-19 01:40:49 +00001280 TagOrTempResult = Actions.ActOnTag(getCurScope(), TagType, TUK, StartLoc,
John McCall7f040a92010-12-24 02:08:15 +00001281 SS, Name, NameLoc, attrs.getList(), AS,
Douglas Gregore7612302011-09-09 19:05:14 +00001282 DS.getModulePrivateSpecLoc(),
Richard Smithbdad7a22012-01-10 01:33:14 +00001283 TParams, Owned, IsDependent,
1284 SourceLocation(), false,
1285 clang::TypeResult());
John McCallc4e70192009-09-11 04:59:25 +00001286
1287 // If ActOnTag said the type was dependent, try again with the
1288 // less common call.
John McCall9a34edb2010-10-19 01:40:49 +00001289 if (IsDependent) {
1290 assert(TUK == Sema::TUK_Reference || TUK == Sema::TUK_Friend);
Douglas Gregor23c94db2010-07-02 17:43:08 +00001291 TypeResult = Actions.ActOnDependentTag(getCurScope(), TagType, TUK,
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001292 SS, Name, StartLoc, NameLoc);
John McCall9a34edb2010-10-19 01:40:49 +00001293 }
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001294 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001295
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001296 // If there is a body, parse it and inform the actions module.
John McCallf312b1e2010-08-26 23:41:50 +00001297 if (TUK == Sema::TUK_Definition) {
John McCallbd0dfa52009-12-19 21:48:58 +00001298 assert(Tok.is(tok::l_brace) ||
Anders Carlssoncc54d592011-01-22 16:56:46 +00001299 (getLang().CPlusPlus && Tok.is(tok::colon)) ||
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001300 isCXX0XFinalKeyword());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001301 if (getLang().CPlusPlus)
Douglas Gregor212e81c2009-03-25 00:13:59 +00001302 ParseCXXMemberSpecification(StartLoc, TagType, TagOrTempResult.get());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001303 else
Douglas Gregor212e81c2009-03-25 00:13:59 +00001304 ParseStructUnionBody(StartLoc, TagType, TagOrTempResult.get());
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001305 }
1306
John McCallb3d87482010-08-24 05:47:05 +00001307 const char *PrevSpec = 0;
1308 unsigned DiagID;
1309 bool Result;
John McCallc4e70192009-09-11 04:59:25 +00001310 if (!TypeResult.isInvalid()) {
Abramo Bagnara0daaf322011-03-16 20:16:18 +00001311 Result = DS.SetTypeSpecType(DeclSpec::TST_typename, StartLoc,
1312 NameLoc.isValid() ? NameLoc : StartLoc,
John McCallb3d87482010-08-24 05:47:05 +00001313 PrevSpec, DiagID, TypeResult.get());
John McCallc4e70192009-09-11 04:59:25 +00001314 } else if (!TagOrTempResult.isInvalid()) {
Abramo Bagnara0daaf322011-03-16 20:16:18 +00001315 Result = DS.SetTypeSpecType(TagType, StartLoc,
1316 NameLoc.isValid() ? NameLoc : StartLoc,
1317 PrevSpec, DiagID, TagOrTempResult.get(), Owned);
John McCallc4e70192009-09-11 04:59:25 +00001318 } else {
Douglas Gregorddc29e12009-02-06 22:42:48 +00001319 DS.SetTypeSpecError();
Anders Carlsson66e99772009-05-11 22:27:47 +00001320 return;
1321 }
Mike Stump1eb44332009-09-09 15:08:12 +00001322
John McCallb3d87482010-08-24 05:47:05 +00001323 if (Result)
John McCallfec54012009-08-03 20:12:06 +00001324 Diag(StartLoc, DiagID) << PrevSpec;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001325
Chris Lattner4ed5d912010-02-02 01:23:29 +00001326 // At this point, we've successfully parsed a class-specifier in 'definition'
1327 // form (e.g. "struct foo { int x; }". While we could just return here, we're
1328 // going to look at what comes after it to improve error recovery. If an
1329 // impossible token occurs next, we assume that the programmer forgot a ; at
1330 // the end of the declaration and recover that way.
1331 //
1332 // This switch enumerates the valid "follow" set for definition.
John McCallf312b1e2010-08-26 23:41:50 +00001333 if (TUK == Sema::TUK_Definition) {
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001334 bool ExpectedSemi = true;
Chris Lattner4ed5d912010-02-02 01:23:29 +00001335 switch (Tok.getKind()) {
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001336 default: break;
Chris Lattner4ed5d912010-02-02 01:23:29 +00001337 case tok::semi: // struct foo {...} ;
Chris Lattner99c95202010-02-02 17:32:27 +00001338 case tok::star: // struct foo {...} * P;
1339 case tok::amp: // struct foo {...} & R = ...
1340 case tok::identifier: // struct foo {...} V ;
1341 case tok::r_paren: //(struct foo {...} ) {4}
1342 case tok::annot_cxxscope: // struct foo {...} a:: b;
1343 case tok::annot_typename: // struct foo {...} a ::b;
1344 case tok::annot_template_id: // struct foo {...} a<int> ::b;
Chris Lattnerc2e1c1a2010-02-03 20:41:24 +00001345 case tok::l_paren: // struct foo {...} ( x);
Chris Lattner16acfee2010-02-03 01:45:03 +00001346 case tok::comma: // __builtin_offsetof(struct foo{...} ,
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001347 ExpectedSemi = false;
1348 break;
1349 // Type qualifiers
1350 case tok::kw_const: // struct foo {...} const x;
1351 case tok::kw_volatile: // struct foo {...} volatile x;
1352 case tok::kw_restrict: // struct foo {...} restrict x;
1353 case tok::kw_inline: // struct foo {...} inline foo() {};
Chris Lattner99c95202010-02-02 17:32:27 +00001354 // Storage-class specifiers
1355 case tok::kw_static: // struct foo {...} static x;
1356 case tok::kw_extern: // struct foo {...} extern x;
1357 case tok::kw_typedef: // struct foo {...} typedef x;
1358 case tok::kw_register: // struct foo {...} register x;
1359 case tok::kw_auto: // struct foo {...} auto x;
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001360 case tok::kw_mutable: // struct foo {...} mutable x;
1361 case tok::kw_constexpr: // struct foo {...} constexpr x;
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001362 // As shown above, type qualifiers and storage class specifiers absolutely
1363 // can occur after class specifiers according to the grammar. However,
Chris Lattnerfc8f0e12011-04-15 05:22:18 +00001364 // almost no one actually writes code like this. If we see one of these,
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001365 // it is much more likely that someone missed a semi colon and the
1366 // type/storage class specifier we're seeing is part of the *next*
1367 // intended declaration, as in:
1368 //
1369 // struct foo { ... }
1370 // typedef int X;
1371 //
1372 // We'd really like to emit a missing semicolon error instead of emitting
1373 // an error on the 'int' saying that you can't have two type specifiers in
1374 // the same declaration of X. Because of this, we look ahead past this
1375 // token to see if it's a type specifier. If so, we know the code is
1376 // otherwise invalid, so we can produce the expected semi error.
1377 if (!isKnownToBeTypeSpecifier(NextToken()))
1378 ExpectedSemi = false;
Chris Lattner4ed5d912010-02-02 01:23:29 +00001379 break;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001380
1381 case tok::r_brace: // struct bar { struct foo {...} }
Chris Lattner4ed5d912010-02-02 01:23:29 +00001382 // Missing ';' at end of struct is accepted as an extension in C mode.
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001383 if (!getLang().CPlusPlus)
1384 ExpectedSemi = false;
1385 break;
1386 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001387
Richard Smithcf6b0a22011-07-14 21:35:26 +00001388 // C++ [temp]p3 In a template-declaration which defines a class, no
1389 // declarator is permitted.
1390 if (TemplateInfo.Kind)
1391 ExpectedSemi = true;
1392
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001393 if (ExpectedSemi) {
Chris Lattner4ed5d912010-02-02 01:23:29 +00001394 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_tagdecl,
1395 TagType == DeclSpec::TST_class ? "class"
1396 : TagType == DeclSpec::TST_struct? "struct" : "union");
1397 // Push this token back into the preprocessor and change our current token
1398 // to ';' so that the rest of the code recovers as though there were an
1399 // ';' after the definition.
1400 PP.EnterToken(Tok);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001401 Tok.setKind(tok::semi);
Chris Lattner4ed5d912010-02-02 01:23:29 +00001402 }
1403 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001404}
1405
Mike Stump1eb44332009-09-09 15:08:12 +00001406/// ParseBaseClause - Parse the base-clause of a C++ class [C++ class.derived].
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001407///
1408/// base-clause : [C++ class.derived]
1409/// ':' base-specifier-list
1410/// base-specifier-list:
1411/// base-specifier '...'[opt]
1412/// base-specifier-list ',' base-specifier '...'[opt]
John McCalld226f652010-08-21 09:40:31 +00001413void Parser::ParseBaseClause(Decl *ClassDecl) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001414 assert(Tok.is(tok::colon) && "Not a base clause");
1415 ConsumeToken();
1416
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001417 // Build up an array of parsed base specifiers.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001418 SmallVector<CXXBaseSpecifier *, 8> BaseInfo;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001419
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001420 while (true) {
1421 // Parse a base-specifier.
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001422 BaseResult Result = ParseBaseSpecifier(ClassDecl);
Douglas Gregor5ac8aff2009-01-26 22:44:13 +00001423 if (Result.isInvalid()) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001424 // Skip the rest of this base specifier, up until the comma or
1425 // opening brace.
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001426 SkipUntil(tok::comma, tok::l_brace, true, true);
1427 } else {
1428 // Add this to our array of base specifiers.
Douglas Gregor5ac8aff2009-01-26 22:44:13 +00001429 BaseInfo.push_back(Result.get());
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001430 }
1431
1432 // If the next token is a comma, consume it and keep reading
1433 // base-specifiers.
1434 if (Tok.isNot(tok::comma)) break;
Mike Stump1eb44332009-09-09 15:08:12 +00001435
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001436 // Consume the comma.
1437 ConsumeToken();
1438 }
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001439
1440 // Attach the base specifiers
Jay Foadbeaaccd2009-05-21 09:52:38 +00001441 Actions.ActOnBaseSpecifiers(ClassDecl, BaseInfo.data(), BaseInfo.size());
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001442}
1443
1444/// ParseBaseSpecifier - Parse a C++ base-specifier. A base-specifier is
1445/// one entry in the base class list of a class specifier, for example:
1446/// class foo : public bar, virtual private baz {
1447/// 'public bar' and 'virtual private baz' are each base-specifiers.
1448///
1449/// base-specifier: [C++ class.derived]
1450/// ::[opt] nested-name-specifier[opt] class-name
1451/// 'virtual' access-specifier[opt] ::[opt] nested-name-specifier[opt]
David Blaikie09048df2011-10-25 15:01:20 +00001452/// base-type-specifier
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001453/// access-specifier 'virtual'[opt] ::[opt] nested-name-specifier[opt]
David Blaikie09048df2011-10-25 15:01:20 +00001454/// base-type-specifier
John McCalld226f652010-08-21 09:40:31 +00001455Parser::BaseResult Parser::ParseBaseSpecifier(Decl *ClassDecl) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001456 bool IsVirtual = false;
1457 SourceLocation StartLoc = Tok.getLocation();
1458
1459 // Parse the 'virtual' keyword.
1460 if (Tok.is(tok::kw_virtual)) {
1461 ConsumeToken();
1462 IsVirtual = true;
1463 }
1464
1465 // Parse an (optional) access specifier.
1466 AccessSpecifier Access = getAccessSpecifierIfPresent();
John McCall92f88312010-01-23 00:46:32 +00001467 if (Access != AS_none)
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001468 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001469
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001470 // Parse the 'virtual' keyword (again!), in case it came after the
1471 // access specifier.
1472 if (Tok.is(tok::kw_virtual)) {
1473 SourceLocation VirtualLoc = ConsumeToken();
1474 if (IsVirtual) {
1475 // Complain about duplicate 'virtual'
Chris Lattner1ab3b962008-11-18 07:48:38 +00001476 Diag(VirtualLoc, diag::err_dup_virtual)
Douglas Gregor849b2432010-03-31 17:46:05 +00001477 << FixItHint::CreateRemoval(VirtualLoc);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001478 }
1479
1480 IsVirtual = true;
1481 }
1482
Douglas Gregor42a552f2008-11-05 20:51:48 +00001483 // Parse the class-name.
Douglas Gregor7f43d672009-02-25 23:52:28 +00001484 SourceLocation EndLocation;
David Blaikie22216eb2011-10-25 17:10:12 +00001485 SourceLocation BaseLoc;
1486 TypeResult BaseType = ParseBaseTypeSpecifier(BaseLoc, EndLocation);
Douglas Gregor31a19b62009-04-01 21:51:26 +00001487 if (BaseType.isInvalid())
Douglas Gregor42a552f2008-11-05 20:51:48 +00001488 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001489
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001490 // Parse the optional ellipsis (for a pack expansion). The ellipsis is
1491 // actually part of the base-specifier-list grammar productions, but we
1492 // parse it here for convenience.
1493 SourceLocation EllipsisLoc;
1494 if (Tok.is(tok::ellipsis))
1495 EllipsisLoc = ConsumeToken();
1496
Mike Stump1eb44332009-09-09 15:08:12 +00001497 // Find the complete source range for the base-specifier.
Douglas Gregor7f43d672009-02-25 23:52:28 +00001498 SourceRange Range(StartLoc, EndLocation);
Mike Stump1eb44332009-09-09 15:08:12 +00001499
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001500 // Notify semantic analysis that we have parsed a complete
1501 // base-specifier.
Sebastian Redla55e52c2008-11-25 22:21:31 +00001502 return Actions.ActOnBaseSpecifier(ClassDecl, Range, IsVirtual, Access,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001503 BaseType.get(), BaseLoc, EllipsisLoc);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001504}
1505
1506/// getAccessSpecifierIfPresent - Determine whether the next token is
1507/// a C++ access-specifier.
1508///
1509/// access-specifier: [C++ class.derived]
1510/// 'private'
1511/// 'protected'
1512/// 'public'
Mike Stump1eb44332009-09-09 15:08:12 +00001513AccessSpecifier Parser::getAccessSpecifierIfPresent() const {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001514 switch (Tok.getKind()) {
1515 default: return AS_none;
1516 case tok::kw_private: return AS_private;
1517 case tok::kw_protected: return AS_protected;
1518 case tok::kw_public: return AS_public;
1519 }
1520}
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001521
Eli Friedmand33133c2009-07-22 21:45:50 +00001522void Parser::HandleMemberFunctionDefaultArgs(Declarator& DeclaratorInfo,
John McCalld226f652010-08-21 09:40:31 +00001523 Decl *ThisDecl) {
Eli Friedmand33133c2009-07-22 21:45:50 +00001524 // We just declared a member function. If this member function
1525 // has any default arguments, we'll need to parse them later.
1526 LateParsedMethodDeclaration *LateMethod = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001527 DeclaratorChunk::FunctionTypeInfo &FTI
Abramo Bagnara075f8f12010-12-10 16:29:40 +00001528 = DeclaratorInfo.getFunctionTypeInfo();
Eli Friedmand33133c2009-07-22 21:45:50 +00001529 for (unsigned ParamIdx = 0; ParamIdx < FTI.NumArgs; ++ParamIdx) {
1530 if (LateMethod || FTI.ArgInfo[ParamIdx].DefaultArgTokens) {
1531 if (!LateMethod) {
1532 // Push this method onto the stack of late-parsed method
1533 // declarations.
Douglas Gregord54eb442010-10-12 16:25:54 +00001534 LateMethod = new LateParsedMethodDeclaration(this, ThisDecl);
1535 getCurrentClass().LateParsedDeclarations.push_back(LateMethod);
Douglas Gregor23c94db2010-07-02 17:43:08 +00001536 LateMethod->TemplateScope = getCurScope()->isTemplateParamScope();
Eli Friedmand33133c2009-07-22 21:45:50 +00001537
1538 // Add all of the parameters prior to this one (they don't
1539 // have default arguments).
1540 LateMethod->DefaultArgs.reserve(FTI.NumArgs);
1541 for (unsigned I = 0; I < ParamIdx; ++I)
1542 LateMethod->DefaultArgs.push_back(
Douglas Gregor8f8210c2010-03-02 01:29:43 +00001543 LateParsedDefaultArgument(FTI.ArgInfo[I].Param));
Eli Friedmand33133c2009-07-22 21:45:50 +00001544 }
1545
1546 // Add this parameter to the list of parameters (it or may
1547 // not have a default argument).
1548 LateMethod->DefaultArgs.push_back(
1549 LateParsedDefaultArgument(FTI.ArgInfo[ParamIdx].Param,
1550 FTI.ArgInfo[ParamIdx].DefaultArgTokens));
1551 }
1552 }
1553}
1554
Richard Smith1c94c162012-01-09 22:31:44 +00001555/// isCXX0XVirtSpecifier - Determine whether the given token is a C++0x
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001556/// virt-specifier.
1557///
1558/// virt-specifier:
1559/// override
1560/// final
Richard Smith1c94c162012-01-09 22:31:44 +00001561VirtSpecifiers::Specifier Parser::isCXX0XVirtSpecifier(const Token &Tok) const {
Anders Carlssonce93a7c2011-01-22 23:01:49 +00001562 if (!getLang().CPlusPlus)
Anders Carlssoncc54d592011-01-22 16:56:46 +00001563 return VirtSpecifiers::VS_None;
1564
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001565 if (Tok.is(tok::identifier)) {
1566 IdentifierInfo *II = Tok.getIdentifierInfo();
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001567
Anders Carlsson7eeb4ec2011-01-20 03:47:08 +00001568 // Initialize the contextual keywords.
1569 if (!Ident_final) {
1570 Ident_final = &PP.getIdentifierTable().get("final");
1571 Ident_override = &PP.getIdentifierTable().get("override");
1572 }
1573
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001574 if (II == Ident_override)
1575 return VirtSpecifiers::VS_Override;
1576
1577 if (II == Ident_final)
1578 return VirtSpecifiers::VS_Final;
1579 }
1580
1581 return VirtSpecifiers::VS_None;
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001582}
1583
1584/// ParseOptionalCXX0XVirtSpecifierSeq - Parse a virt-specifier-seq.
1585///
1586/// virt-specifier-seq:
1587/// virt-specifier
1588/// virt-specifier-seq virt-specifier
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001589void Parser::ParseOptionalCXX0XVirtSpecifierSeq(VirtSpecifiers &VS) {
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001590 while (true) {
Anders Carlssoncc54d592011-01-22 16:56:46 +00001591 VirtSpecifiers::Specifier Specifier = isCXX0XVirtSpecifier();
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001592 if (Specifier == VirtSpecifiers::VS_None)
1593 return;
1594
1595 // C++ [class.mem]p8:
1596 // A virt-specifier-seq shall contain at most one of each virt-specifier.
Anders Carlssoncc54d592011-01-22 16:56:46 +00001597 const char *PrevSpec = 0;
Anders Carlsson46127a92011-01-22 15:58:16 +00001598 if (VS.SetSpecifier(Specifier, Tok.getLocation(), PrevSpec))
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001599 Diag(Tok.getLocation(), diag::err_duplicate_virt_specifier)
1600 << PrevSpec
1601 << FixItHint::CreateRemoval(Tok.getLocation());
1602
Richard Smith7fe62082011-10-15 05:09:34 +00001603 Diag(Tok.getLocation(), getLang().CPlusPlus0x ?
1604 diag::warn_cxx98_compat_override_control_keyword :
1605 diag::ext_override_control_keyword)
1606 << VirtSpecifiers::getSpecifierName(Specifier);
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001607 ConsumeToken();
1608 }
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001609}
1610
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001611/// isCXX0XFinalKeyword - Determine whether the next token is a C++0x
1612/// contextual 'final' keyword.
1613bool Parser::isCXX0XFinalKeyword() const {
Anders Carlssonce93a7c2011-01-22 23:01:49 +00001614 if (!getLang().CPlusPlus)
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001615 return false;
Anders Carlssoncc54d592011-01-22 16:56:46 +00001616
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001617 if (!Tok.is(tok::identifier))
1618 return false;
Anders Carlssoncc54d592011-01-22 16:56:46 +00001619
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001620 // Initialize the contextual keywords.
1621 if (!Ident_final) {
1622 Ident_final = &PP.getIdentifierTable().get("final");
1623 Ident_override = &PP.getIdentifierTable().get("override");
1624 }
Anders Carlssoncc54d592011-01-22 16:56:46 +00001625
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001626 return Tok.getIdentifierInfo() == Ident_final;
Anders Carlssoncc54d592011-01-22 16:56:46 +00001627}
1628
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001629/// ParseCXXClassMemberDeclaration - Parse a C++ class member declaration.
1630///
1631/// member-declaration:
1632/// decl-specifier-seq[opt] member-declarator-list[opt] ';'
1633/// function-definition ';'[opt]
1634/// ::[opt] nested-name-specifier template[opt] unqualified-id ';'[TODO]
1635/// using-declaration [TODO]
Anders Carlsson511d7ab2009-03-11 16:27:10 +00001636/// [C++0x] static_assert-declaration
Anders Carlsson5aeccdb2009-03-26 00:52:18 +00001637/// template-declaration
Chris Lattnerbc8d5642008-12-18 01:12:00 +00001638/// [GNU] '__extension__' member-declaration
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001639///
1640/// member-declarator-list:
1641/// member-declarator
1642/// member-declarator-list ',' member-declarator
1643///
1644/// member-declarator:
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001645/// declarator virt-specifier-seq[opt] pure-specifier[opt]
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001646/// declarator constant-initializer[opt]
Richard Smith7a614d82011-06-11 17:19:42 +00001647/// [C++11] declarator brace-or-equal-initializer[opt]
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001648/// identifier[opt] ':' constant-expression
1649///
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001650/// virt-specifier-seq:
1651/// virt-specifier
1652/// virt-specifier-seq virt-specifier
1653///
1654/// virt-specifier:
1655/// override
1656/// final
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001657///
Sebastian Redle2b68332009-04-12 17:16:29 +00001658/// pure-specifier:
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001659/// '= 0'
1660///
1661/// constant-initializer:
1662/// '=' constant-expression
1663///
Douglas Gregor37b372b2009-08-20 22:52:58 +00001664void Parser::ParseCXXClassMemberDeclaration(AccessSpecifier AS,
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001665 AttributeList *AccessAttrs,
John McCallc9068d72010-07-16 08:13:16 +00001666 const ParsedTemplateInfo &TemplateInfo,
1667 ParsingDeclRAIIObject *TemplateDiags) {
Douglas Gregor8a9013d2011-04-14 17:21:19 +00001668 if (Tok.is(tok::at)) {
1669 if (getLang().ObjC1 && NextToken().isObjCAtKeyword(tok::objc_defs))
1670 Diag(Tok, diag::err_at_defs_cxx);
1671 else
1672 Diag(Tok, diag::err_at_in_class);
1673
1674 ConsumeToken();
1675 SkipUntil(tok::r_brace);
1676 return;
1677 }
1678
John McCall60fa3cf2009-12-11 02:10:03 +00001679 // Access declarations.
1680 if (!TemplateInfo.Kind &&
1681 (Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) &&
John McCall9ba61662010-02-26 08:45:28 +00001682 !TryAnnotateCXXScopeToken() &&
John McCall60fa3cf2009-12-11 02:10:03 +00001683 Tok.is(tok::annot_cxxscope)) {
1684 bool isAccessDecl = false;
1685 if (NextToken().is(tok::identifier))
1686 isAccessDecl = GetLookAheadToken(2).is(tok::semi);
1687 else
1688 isAccessDecl = NextToken().is(tok::kw_operator);
1689
1690 if (isAccessDecl) {
1691 // Collect the scope specifier token we annotated earlier.
1692 CXXScopeSpec SS;
Douglas Gregorefaa93a2011-11-07 17:33:42 +00001693 ParseOptionalCXXScopeSpecifier(SS, ParsedType(),
1694 /*EnteringContext=*/false);
John McCall60fa3cf2009-12-11 02:10:03 +00001695
1696 // Try to parse an unqualified-id.
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001697 SourceLocation TemplateKWLoc;
John McCall60fa3cf2009-12-11 02:10:03 +00001698 UnqualifiedId Name;
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001699 if (ParseUnqualifiedId(SS, false, true, true, ParsedType(),
1700 TemplateKWLoc, Name)) {
John McCall60fa3cf2009-12-11 02:10:03 +00001701 SkipUntil(tok::semi);
1702 return;
1703 }
1704
1705 // TODO: recover from mistakenly-qualified operator declarations.
1706 if (ExpectAndConsume(tok::semi,
1707 diag::err_expected_semi_after,
1708 "access declaration",
1709 tok::semi))
1710 return;
1711
Douglas Gregor23c94db2010-07-02 17:43:08 +00001712 Actions.ActOnUsingDeclaration(getCurScope(), AS,
John McCall60fa3cf2009-12-11 02:10:03 +00001713 false, SourceLocation(),
1714 SS, Name,
1715 /* AttrList */ 0,
1716 /* IsTypeName */ false,
1717 SourceLocation());
1718 return;
1719 }
1720 }
1721
Anders Carlsson511d7ab2009-03-11 16:27:10 +00001722 // static_assert-declaration
Peter Collingbournec6eb44b2011-04-15 00:35:57 +00001723 if (Tok.is(tok::kw_static_assert) || Tok.is(tok::kw__Static_assert)) {
Douglas Gregor37b372b2009-08-20 22:52:58 +00001724 // FIXME: Check for templates
Chris Lattner97144fc2009-04-02 04:16:50 +00001725 SourceLocation DeclEnd;
1726 ParseStaticAssertDeclaration(DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +00001727 return;
1728 }
Mike Stump1eb44332009-09-09 15:08:12 +00001729
Chris Lattner682bf922009-03-29 16:50:03 +00001730 if (Tok.is(tok::kw_template)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001731 assert(!TemplateInfo.TemplateParams &&
Douglas Gregor37b372b2009-08-20 22:52:58 +00001732 "Nested template improperly parsed?");
Chris Lattner97144fc2009-04-02 04:16:50 +00001733 SourceLocation DeclEnd;
Mike Stump1eb44332009-09-09 15:08:12 +00001734 ParseDeclarationStartingWithTemplate(Declarator::MemberContext, DeclEnd,
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001735 AS, AccessAttrs);
Chris Lattner682bf922009-03-29 16:50:03 +00001736 return;
1737 }
Anders Carlsson5aeccdb2009-03-26 00:52:18 +00001738
Chris Lattnerbc8d5642008-12-18 01:12:00 +00001739 // Handle: member-declaration ::= '__extension__' member-declaration
1740 if (Tok.is(tok::kw___extension__)) {
1741 // __extension__ silences extension warnings in the subexpression.
1742 ExtensionRAIIObject O(Diags); // Use RAII to do this.
1743 ConsumeToken();
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001744 return ParseCXXClassMemberDeclaration(AS, AccessAttrs,
1745 TemplateInfo, TemplateDiags);
Chris Lattnerbc8d5642008-12-18 01:12:00 +00001746 }
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001747
Chris Lattner4ed5d912010-02-02 01:23:29 +00001748 // Don't parse FOO:BAR as if it were a typo for FOO::BAR, in this context it
1749 // is a bitfield.
Chris Lattnera1efc8c2009-12-10 01:59:24 +00001750 ColonProtectionRAIIObject X(*this);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001751
John McCall0b7e6782011-03-24 11:26:52 +00001752 ParsedAttributesWithRange attrs(AttrFactory);
Sean Huntbbd37c62009-11-21 08:43:09 +00001753 // Optional C++0x attribute-specifier
John McCall7f040a92010-12-24 02:08:15 +00001754 MaybeParseCXX0XAttributes(attrs);
1755 MaybeParseMicrosoftAttributes(attrs);
Sean Huntbbd37c62009-11-21 08:43:09 +00001756
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001757 if (Tok.is(tok::kw_using)) {
John McCall7f040a92010-12-24 02:08:15 +00001758 ProhibitAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +00001759
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001760 // Eat 'using'.
1761 SourceLocation UsingLoc = ConsumeToken();
1762
1763 if (Tok.is(tok::kw_namespace)) {
1764 Diag(UsingLoc, diag::err_using_namespace_in_class);
1765 SkipUntil(tok::semi, true, true);
Chris Lattnerae50d502010-02-02 00:43:15 +00001766 } else {
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001767 SourceLocation DeclEnd;
Richard Smith3e4c6c42011-05-05 21:57:07 +00001768 // Otherwise, it must be a using-declaration or an alias-declaration.
John McCall78b81052010-11-10 02:40:36 +00001769 ParseUsingDeclaration(Declarator::MemberContext, TemplateInfo,
1770 UsingLoc, DeclEnd, AS);
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001771 }
1772 return;
1773 }
1774
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001775 // decl-specifier-seq:
1776 // Parse the common declaration-specifiers piece.
John McCallc9068d72010-07-16 08:13:16 +00001777 ParsingDeclSpec DS(*this, TemplateDiags);
John McCall7f040a92010-12-24 02:08:15 +00001778 DS.takeAttributesFrom(attrs);
Douglas Gregor37b372b2009-08-20 22:52:58 +00001779 ParseDeclarationSpecifiers(DS, TemplateInfo, AS, DSC_class);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001780
John McCallf312b1e2010-08-26 23:41:50 +00001781 MultiTemplateParamsArg TemplateParams(Actions,
John McCalldd4a3b02009-09-16 22:47:08 +00001782 TemplateInfo.TemplateParams? TemplateInfo.TemplateParams->data() : 0,
1783 TemplateInfo.TemplateParams? TemplateInfo.TemplateParams->size() : 0);
1784
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001785 if (Tok.is(tok::semi)) {
1786 ConsumeToken();
John McCalld226f652010-08-21 09:40:31 +00001787 Decl *TheDecl =
Chandler Carruth0f4be742011-05-03 18:35:10 +00001788 Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS, DS, TemplateParams);
John McCallc9068d72010-07-16 08:13:16 +00001789 DS.complete(TheDecl);
John McCall67d1a672009-08-06 02:15:43 +00001790 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001791 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001792
John McCall54abf7d2009-11-04 02:18:39 +00001793 ParsingDeclarator DeclaratorInfo(*this, DS, Declarator::MemberContext);
Nico Weber48673472011-01-28 06:07:34 +00001794 VirtSpecifiers VS;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001795
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001796 // Hold late-parsed attributes so we can attach a Decl to them later.
1797 LateParsedAttrList LateParsedAttrs;
1798
Douglas Gregora2b4e5d2011-10-17 17:09:53 +00001799 SourceLocation EqualLoc;
1800 bool HasInitializer = false;
1801 ExprResult Init;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001802 if (Tok.isNot(tok::colon)) {
Chris Lattnera1efc8c2009-12-10 01:59:24 +00001803 // Don't parse FOO:BAR as if it were a typo for FOO::BAR.
1804 ColonProtectionRAIIObject X(*this);
1805
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001806 // Parse the first declarator.
1807 ParseDeclarator(DeclaratorInfo);
1808 // Error parsing the declarator?
Douglas Gregor10bd3682008-11-17 22:58:34 +00001809 if (!DeclaratorInfo.hasName()) {
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001810 // If so, skip until the semi-colon or a }.
Sebastian Redld941fa42011-04-24 16:27:48 +00001811 SkipUntil(tok::r_brace, true, true);
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001812 if (Tok.is(tok::semi))
1813 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001814 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001815 }
1816
Nico Weber48673472011-01-28 06:07:34 +00001817 ParseOptionalCXX0XVirtSpecifierSeq(VS);
1818
John Thompson1b2fc0f2009-11-25 22:58:06 +00001819 // If attributes exist after the declarator, but before an '{', parse them.
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001820 MaybeParseGNUAttributes(DeclaratorInfo, &LateParsedAttrs);
John Thompson1b2fc0f2009-11-25 22:58:06 +00001821
Francois Pichet6a247472011-05-11 02:14:46 +00001822 // MSVC permits pure specifier on inline functions declared at class scope.
1823 // Hence check for =0 before checking for function definition.
Francois Pichet62ec1f22011-09-17 17:15:52 +00001824 if (getLang().MicrosoftExt && Tok.is(tok::equal) &&
Francois Pichet6a247472011-05-11 02:14:46 +00001825 DeclaratorInfo.isFunctionDeclarator() &&
1826 NextToken().is(tok::numeric_constant)) {
Douglas Gregora2b4e5d2011-10-17 17:09:53 +00001827 EqualLoc = ConsumeToken();
Francois Pichet6a247472011-05-11 02:14:46 +00001828 Init = ParseInitializer();
1829 if (Init.isInvalid())
1830 SkipUntil(tok::comma, true, true);
Douglas Gregora2b4e5d2011-10-17 17:09:53 +00001831 else
1832 HasInitializer = true;
Francois Pichet6a247472011-05-11 02:14:46 +00001833 }
1834
Douglas Gregor45fa5602011-11-07 20:56:01 +00001835 FunctionDefinitionKind DefinitionKind = FDK_Declaration;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001836 // function-definition:
Richard Smith7a614d82011-06-11 17:19:42 +00001837 //
1838 // In C++11, a non-function declarator followed by an open brace is a
1839 // braced-init-list for an in-class member initialization, not an
1840 // erroneous function definition.
1841 if (Tok.is(tok::l_brace) && !getLang().CPlusPlus0x) {
Douglas Gregor45fa5602011-11-07 20:56:01 +00001842 DefinitionKind = FDK_Definition;
Sean Hunte4246a62011-05-12 06:15:49 +00001843 } else if (DeclaratorInfo.isFunctionDeclarator()) {
Richard Smith7a614d82011-06-11 17:19:42 +00001844 if (Tok.is(tok::l_brace) || Tok.is(tok::colon) || Tok.is(tok::kw_try)) {
Douglas Gregor45fa5602011-11-07 20:56:01 +00001845 DefinitionKind = FDK_Definition;
Sean Hunte4246a62011-05-12 06:15:49 +00001846 } else if (Tok.is(tok::equal)) {
1847 const Token &KW = NextToken();
Douglas Gregor45fa5602011-11-07 20:56:01 +00001848 if (KW.is(tok::kw_default))
1849 DefinitionKind = FDK_Defaulted;
1850 else if (KW.is(tok::kw_delete))
1851 DefinitionKind = FDK_Deleted;
Sean Hunte4246a62011-05-12 06:15:49 +00001852 }
1853 }
1854
Douglas Gregor45fa5602011-11-07 20:56:01 +00001855 if (DefinitionKind) {
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001856 if (!DeclaratorInfo.isFunctionDeclarator()) {
Richard Trieu65ba9482012-01-21 02:59:18 +00001857 Diag(DeclaratorInfo.getIdentifierLoc(), diag::err_func_def_no_params);
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001858 ConsumeBrace();
Richard Trieu65ba9482012-01-21 02:59:18 +00001859 SkipUntil(tok::r_brace, /*StopAtSemi*/false);
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001860
1861 // Consume the optional ';'
1862 if (Tok.is(tok::semi))
1863 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001864 return;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001865 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001866
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001867 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
Richard Trieu65ba9482012-01-21 02:59:18 +00001868 Diag(DeclaratorInfo.getIdentifierLoc(),
1869 diag::err_function_declared_typedef);
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001870 // This recovery skips the entire function body. It would be nice
1871 // to simply call ParseCXXInlineMethodDef() below, however Sema
1872 // assumes the declarator represents a function, not a typedef.
1873 ConsumeBrace();
Richard Trieu65ba9482012-01-21 02:59:18 +00001874 SkipUntil(tok::r_brace, /*StopAtSemi*/false);
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001875
1876 // Consume the optional ';'
1877 if (Tok.is(tok::semi))
1878 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001879 return;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001880 }
1881
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001882 Decl *FunDecl =
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001883 ParseCXXInlineMethodDef(AS, AccessAttrs, DeclaratorInfo, TemplateInfo,
Douglas Gregor45fa5602011-11-07 20:56:01 +00001884 VS, DefinitionKind, Init);
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001885
1886 for (unsigned i = 0, ni = LateParsedAttrs.size(); i < ni; ++i) {
1887 LateParsedAttrs[i]->setDecl(FunDecl);
1888 }
1889 LateParsedAttrs.clear();
Sean Hunte4246a62011-05-12 06:15:49 +00001890
1891 // Consume the ';' - it's optional unless we have a delete or default
1892 if (Tok.is(tok::semi)) {
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001893 ConsumeToken();
Sean Hunte4246a62011-05-12 06:15:49 +00001894 }
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001895
Chris Lattner682bf922009-03-29 16:50:03 +00001896 return;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001897 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001898 }
1899
1900 // member-declarator-list:
1901 // member-declarator
1902 // member-declarator-list ',' member-declarator
1903
Chris Lattner5f9e2722011-07-23 10:55:15 +00001904 SmallVector<Decl *, 8> DeclsInGroup;
John McCall60d7b3a2010-08-24 06:29:42 +00001905 ExprResult BitfieldSize;
Richard Smith1c94c162012-01-09 22:31:44 +00001906 bool ExpectSemi = true;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001907
1908 while (1) {
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001909 // member-declarator:
1910 // declarator pure-specifier[opt]
Richard Smith7a614d82011-06-11 17:19:42 +00001911 // declarator brace-or-equal-initializer[opt]
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001912 // identifier[opt] ':' constant-expression
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001913 if (Tok.is(tok::colon)) {
1914 ConsumeToken();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001915 BitfieldSize = ParseConstantExpression();
1916 if (BitfieldSize.isInvalid())
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001917 SkipUntil(tok::comma, true, true);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001918 }
Mike Stump1eb44332009-09-09 15:08:12 +00001919
Chris Lattnere6563252010-06-13 05:34:18 +00001920 // If a simple-asm-expr is present, parse it.
1921 if (Tok.is(tok::kw_asm)) {
1922 SourceLocation Loc;
John McCall60d7b3a2010-08-24 06:29:42 +00001923 ExprResult AsmLabel(ParseSimpleAsm(&Loc));
Chris Lattnere6563252010-06-13 05:34:18 +00001924 if (AsmLabel.isInvalid())
1925 SkipUntil(tok::comma, true, true);
1926
1927 DeclaratorInfo.setAsmLabel(AsmLabel.release());
1928 DeclaratorInfo.SetRangeEnd(Loc);
1929 }
1930
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001931 // If attributes exist after the declarator, parse them.
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001932 MaybeParseGNUAttributes(DeclaratorInfo, &LateParsedAttrs);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001933
Richard Smith7a614d82011-06-11 17:19:42 +00001934 // FIXME: When g++ adds support for this, we'll need to check whether it
1935 // goes before or after the GNU attributes and __asm__.
1936 ParseOptionalCXX0XVirtSpecifierSeq(VS);
1937
1938 bool HasDeferredInitializer = false;
Douglas Gregora2b4e5d2011-10-17 17:09:53 +00001939 if ((Tok.is(tok::equal) || Tok.is(tok::l_brace)) && !HasInitializer) {
Richard Smith7a614d82011-06-11 17:19:42 +00001940 if (BitfieldSize.get()) {
1941 Diag(Tok, diag::err_bitfield_member_init);
1942 SkipUntil(tok::comma, true, true);
1943 } else {
Douglas Gregor147545d2011-10-10 14:49:18 +00001944 HasInitializer = true;
Douglas Gregor555f57e2011-06-25 00:56:27 +00001945 HasDeferredInitializer = !DeclaratorInfo.isDeclarationOfFunction() &&
Richard Smith7a614d82011-06-11 17:19:42 +00001946 DeclaratorInfo.getDeclSpec().getStorageClassSpec()
Richard Smithc2cdd532011-06-12 11:43:46 +00001947 != DeclSpec::SCS_static &&
1948 DeclaratorInfo.getDeclSpec().getStorageClassSpec()
1949 != DeclSpec::SCS_typedef;
Richard Smith7a614d82011-06-11 17:19:42 +00001950 }
1951 }
1952
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001953 // NOTE: If Sema is the Action module and declarator is an instance field,
Chris Lattner682bf922009-03-29 16:50:03 +00001954 // this call will *not* return the created decl; It will return null.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001955 // See Sema::ActOnCXXMemberDeclarator for details.
John McCall67d1a672009-08-06 02:15:43 +00001956
John McCalld226f652010-08-21 09:40:31 +00001957 Decl *ThisDecl = 0;
John McCall67d1a672009-08-06 02:15:43 +00001958 if (DS.isFriendSpecified()) {
John McCallbbbcdd92009-09-11 21:02:39 +00001959 // TODO: handle initializers, bitfields, 'delete'
Douglas Gregor23c94db2010-07-02 17:43:08 +00001960 ThisDecl = Actions.ActOnFriendFunctionDecl(getCurScope(), DeclaratorInfo,
John McCallbbbcdd92009-09-11 21:02:39 +00001961 move(TemplateParams));
Douglas Gregor37b372b2009-08-20 22:52:58 +00001962 } else {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001963 ThisDecl = Actions.ActOnCXXMemberDeclarator(getCurScope(), AS,
John McCall67d1a672009-08-06 02:15:43 +00001964 DeclaratorInfo,
Douglas Gregor37b372b2009-08-20 22:52:58 +00001965 move(TemplateParams),
John McCall67d1a672009-08-06 02:15:43 +00001966 BitfieldSize.release(),
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00001967 VS, HasDeferredInitializer);
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001968 if (AccessAttrs)
1969 Actions.ProcessDeclAttributeList(getCurScope(), ThisDecl, AccessAttrs,
1970 false, true);
Douglas Gregor37b372b2009-08-20 22:52:58 +00001971 }
Douglas Gregor147545d2011-10-10 14:49:18 +00001972
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001973 // Set the Decl for any late parsed attributes
1974 for (unsigned i = 0, ni = LateParsedAttrs.size(); i < ni; ++i) {
1975 LateParsedAttrs[i]->setDecl(ThisDecl);
1976 }
1977 LateParsedAttrs.clear();
1978
Douglas Gregor147545d2011-10-10 14:49:18 +00001979 // Handle the initializer.
Richard Smith7a614d82011-06-11 17:19:42 +00001980 if (HasDeferredInitializer) {
Douglas Gregor147545d2011-10-10 14:49:18 +00001981 // The initializer was deferred; parse it and cache the tokens.
Richard Smith7fe62082011-10-15 05:09:34 +00001982 Diag(Tok, getLang().CPlusPlus0x ?
1983 diag::warn_cxx98_compat_nonstatic_member_init :
1984 diag::ext_nonstatic_member_init);
1985
Richard Smith7a614d82011-06-11 17:19:42 +00001986 if (DeclaratorInfo.isArrayOfUnknownBound()) {
1987 // C++0x [dcl.array]p3: An array bound may also be omitted when the
1988 // declarator is followed by an initializer.
1989 //
1990 // A brace-or-equal-initializer for a member-declarator is not an
1991 // initializer in the gramamr, so this is ill-formed.
1992 Diag(Tok, diag::err_incomplete_array_member_init);
1993 SkipUntil(tok::comma, true, true);
1994 // Avoid later warnings about a class member of incomplete type.
1995 ThisDecl->setInvalidDecl();
1996 } else
1997 ParseCXXNonStaticMemberInitializer(ThisDecl);
Douglas Gregor147545d2011-10-10 14:49:18 +00001998 } else if (HasInitializer) {
1999 // Normal initializer.
Douglas Gregora2b4e5d2011-10-17 17:09:53 +00002000 if (!Init.isUsable())
2001 Init = ParseCXXMemberInitializer(
2002 DeclaratorInfo.isDeclarationOfFunction(), EqualLoc);
2003
Douglas Gregor147545d2011-10-10 14:49:18 +00002004 if (Init.isInvalid())
2005 SkipUntil(tok::comma, true, true);
2006 else if (ThisDecl)
2007 Actions.AddInitializerToDecl(ThisDecl, Init.get(), false,
Douglas Gregora2b4e5d2011-10-17 17:09:53 +00002008 DS.getTypeSpecType() == DeclSpec::TST_auto);
Douglas Gregor147545d2011-10-10 14:49:18 +00002009 } else if (ThisDecl && DS.getStorageClassSpec() == DeclSpec::SCS_static) {
2010 // No initializer.
2011 Actions.ActOnUninitializedDecl(ThisDecl,
2012 DS.getTypeSpecType() == DeclSpec::TST_auto);
Richard Smith7a614d82011-06-11 17:19:42 +00002013 }
Douglas Gregor147545d2011-10-10 14:49:18 +00002014
2015 if (ThisDecl) {
2016 Actions.FinalizeDeclaration(ThisDecl);
2017 DeclsInGroup.push_back(ThisDecl);
2018 }
2019
2020 if (DeclaratorInfo.isFunctionDeclarator() &&
2021 DeclaratorInfo.getDeclSpec().getStorageClassSpec()
2022 != DeclSpec::SCS_typedef) {
2023 HandleMemberFunctionDefaultArgs(DeclaratorInfo, ThisDecl);
2024 }
2025
2026 DeclaratorInfo.complete(ThisDecl);
Richard Smith7a614d82011-06-11 17:19:42 +00002027
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002028 // If we don't have a comma, it is either the end of the list (a ';')
2029 // or an error, bail out.
2030 if (Tok.isNot(tok::comma))
2031 break;
Mike Stump1eb44332009-09-09 15:08:12 +00002032
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002033 // Consume the comma.
Richard Smith1c94c162012-01-09 22:31:44 +00002034 SourceLocation CommaLoc = ConsumeToken();
2035
2036 if (Tok.isAtStartOfLine() &&
2037 !MightBeDeclarator(Declarator::MemberContext)) {
2038 // This comma was followed by a line-break and something which can't be
2039 // the start of a declarator. The comma was probably a typo for a
2040 // semicolon.
2041 Diag(CommaLoc, diag::err_expected_semi_declaration)
2042 << FixItHint::CreateReplacement(CommaLoc, ";");
2043 ExpectSemi = false;
2044 break;
2045 }
Mike Stump1eb44332009-09-09 15:08:12 +00002046
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002047 // Parse the next declarator.
2048 DeclaratorInfo.clear();
Nico Weber48673472011-01-28 06:07:34 +00002049 VS.clear();
Douglas Gregor147545d2011-10-10 14:49:18 +00002050 BitfieldSize = true;
Douglas Gregora2b4e5d2011-10-17 17:09:53 +00002051 Init = true;
2052 HasInitializer = false;
Richard Smith7984de32012-01-12 23:53:29 +00002053 DeclaratorInfo.setCommaLoc(CommaLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00002054
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002055 // Attributes are only allowed on the second declarator.
John McCall7f040a92010-12-24 02:08:15 +00002056 MaybeParseGNUAttributes(DeclaratorInfo);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002057
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00002058 if (Tok.isNot(tok::colon))
2059 ParseDeclarator(DeclaratorInfo);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002060 }
2061
Richard Smith1c94c162012-01-09 22:31:44 +00002062 if (ExpectSemi &&
2063 ExpectAndConsume(tok::semi, diag::err_expected_semi_decl_list)) {
Chris Lattnerae50d502010-02-02 00:43:15 +00002064 // Skip to end of block or statement.
2065 SkipUntil(tok::r_brace, true, true);
2066 // If we stopped at a ';', eat it.
2067 if (Tok.is(tok::semi)) ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00002068 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002069 }
2070
Douglas Gregor23c94db2010-07-02 17:43:08 +00002071 Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup.data(),
Chris Lattnerae50d502010-02-02 00:43:15 +00002072 DeclsInGroup.size());
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002073}
2074
Richard Smith7a614d82011-06-11 17:19:42 +00002075/// ParseCXXMemberInitializer - Parse the brace-or-equal-initializer or
2076/// pure-specifier. Also detect and reject any attempted defaulted/deleted
2077/// function definition. The location of the '=', if any, will be placed in
2078/// EqualLoc.
2079///
2080/// pure-specifier:
2081/// '= 0'
2082///
2083/// brace-or-equal-initializer:
2084/// '=' initializer-expression
2085/// braced-init-list [TODO]
2086///
2087/// initializer-clause:
2088/// assignment-expression
2089/// braced-init-list [TODO]
2090///
2091/// defaulted/deleted function-definition:
2092/// '=' 'default'
2093/// '=' 'delete'
2094///
2095/// Prior to C++0x, the assignment-expression in an initializer-clause must
2096/// be a constant-expression.
2097ExprResult Parser::ParseCXXMemberInitializer(bool IsFunction,
2098 SourceLocation &EqualLoc) {
2099 assert((Tok.is(tok::equal) || Tok.is(tok::l_brace))
2100 && "Data member initializer not starting with '=' or '{'");
2101
2102 if (Tok.is(tok::equal)) {
2103 EqualLoc = ConsumeToken();
2104 if (Tok.is(tok::kw_delete)) {
2105 // In principle, an initializer of '= delete p;' is legal, but it will
2106 // never type-check. It's better to diagnose it as an ill-formed expression
2107 // than as an ill-formed deleted non-function member.
2108 // An initializer of '= delete p, foo' will never be parsed, because
2109 // a top-level comma always ends the initializer expression.
2110 const Token &Next = NextToken();
2111 if (IsFunction || Next.is(tok::semi) || Next.is(tok::comma) ||
2112 Next.is(tok::eof)) {
2113 if (IsFunction)
2114 Diag(ConsumeToken(), diag::err_default_delete_in_multiple_declaration)
2115 << 1 /* delete */;
2116 else
2117 Diag(ConsumeToken(), diag::err_deleted_non_function);
2118 return ExprResult();
2119 }
2120 } else if (Tok.is(tok::kw_default)) {
Richard Smith7a614d82011-06-11 17:19:42 +00002121 if (IsFunction)
2122 Diag(Tok, diag::err_default_delete_in_multiple_declaration)
2123 << 0 /* default */;
2124 else
2125 Diag(ConsumeToken(), diag::err_default_special_members);
2126 return ExprResult();
2127 }
2128
2129 return ParseInitializer();
2130 } else
2131 return ExprError(Diag(Tok, diag::err_generalized_initializer_lists));
2132}
2133
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002134/// ParseCXXMemberSpecification - Parse the class definition.
2135///
2136/// member-specification:
2137/// member-declaration member-specification[opt]
2138/// access-specifier ':' member-specification[opt]
2139///
2140void Parser::ParseCXXMemberSpecification(SourceLocation RecordLoc,
John McCalld226f652010-08-21 09:40:31 +00002141 unsigned TagType, Decl *TagDecl) {
Sanjiv Gupta31fc07d2008-10-31 09:52:39 +00002142 assert((TagType == DeclSpec::TST_struct ||
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002143 TagType == DeclSpec::TST_union ||
Sanjiv Gupta31fc07d2008-10-31 09:52:39 +00002144 TagType == DeclSpec::TST_class) && "Invalid TagType!");
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002145
John McCallf312b1e2010-08-26 23:41:50 +00002146 PrettyDeclStackTraceEntry CrashInfo(Actions, TagDecl, RecordLoc,
2147 "parsing struct/union/class body");
Mike Stump1eb44332009-09-09 15:08:12 +00002148
Douglas Gregor26997fd2010-01-16 20:52:59 +00002149 // Determine whether this is a non-nested class. Note that local
2150 // classes are *not* considered to be nested classes.
2151 bool NonNestedClass = true;
2152 if (!ClassStack.empty()) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00002153 for (const Scope *S = getCurScope(); S; S = S->getParent()) {
Douglas Gregor26997fd2010-01-16 20:52:59 +00002154 if (S->isClassScope()) {
2155 // We're inside a class scope, so this is a nested class.
2156 NonNestedClass = false;
2157 break;
2158 }
2159
2160 if ((S->getFlags() & Scope::FnScope)) {
2161 // If we're in a function or function template declared in the
2162 // body of a class, then this is a local class rather than a
2163 // nested class.
2164 const Scope *Parent = S->getParent();
2165 if (Parent->isTemplateParamScope())
2166 Parent = Parent->getParent();
2167 if (Parent->isClassScope())
2168 break;
2169 }
2170 }
2171 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002172
2173 // Enter a scope for the class.
Douglas Gregor3218c4b2009-01-09 22:42:13 +00002174 ParseScope ClassScope(this, Scope::ClassScope|Scope::DeclScope);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002175
Douglas Gregor6569d682009-05-27 23:11:45 +00002176 // Note that we are parsing a new (potentially-nested) class definition.
Douglas Gregor26997fd2010-01-16 20:52:59 +00002177 ParsingClassDefinition ParsingDef(*this, TagDecl, NonNestedClass);
Douglas Gregor6569d682009-05-27 23:11:45 +00002178
Douglas Gregorddc29e12009-02-06 22:42:48 +00002179 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002180 Actions.ActOnTagStartDefinition(getCurScope(), TagDecl);
John McCallbd0dfa52009-12-19 21:48:58 +00002181
Anders Carlssonb184a182011-03-25 14:46:08 +00002182 SourceLocation FinalLoc;
2183
2184 // Parse the optional 'final' keyword.
2185 if (getLang().CPlusPlus && Tok.is(tok::identifier)) {
Richard Smith8b11b5e2011-10-15 04:21:46 +00002186 assert(isCXX0XFinalKeyword() && "not a class definition");
2187 FinalLoc = ConsumeToken();
Anders Carlssonb184a182011-03-25 14:46:08 +00002188
Richard Smith7fe62082011-10-15 05:09:34 +00002189 Diag(FinalLoc, getLang().CPlusPlus0x ?
2190 diag::warn_cxx98_compat_override_control_keyword :
2191 diag::ext_override_control_keyword) << "final";
Anders Carlssonb184a182011-03-25 14:46:08 +00002192 }
Anders Carlssoncc54d592011-01-22 16:56:46 +00002193
John McCallbd0dfa52009-12-19 21:48:58 +00002194 if (Tok.is(tok::colon)) {
2195 ParseBaseClause(TagDecl);
2196
2197 if (!Tok.is(tok::l_brace)) {
2198 Diag(Tok, diag::err_expected_lbrace_after_base_specifiers);
John McCalldb7bb4a2010-03-17 00:38:33 +00002199
2200 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002201 Actions.ActOnTagDefinitionError(getCurScope(), TagDecl);
John McCallbd0dfa52009-12-19 21:48:58 +00002202 return;
2203 }
2204 }
2205
2206 assert(Tok.is(tok::l_brace));
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002207 BalancedDelimiterTracker T(*this, tok::l_brace);
2208 T.consumeOpen();
John McCallbd0dfa52009-12-19 21:48:58 +00002209
John McCall42a4f662010-05-28 08:11:17 +00002210 if (TagDecl)
Anders Carlsson2c3ee542011-03-25 14:31:08 +00002211 Actions.ActOnStartCXXMemberDeclarations(getCurScope(), TagDecl, FinalLoc,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002212 T.getOpenLocation());
John McCallf9368152009-12-20 07:58:13 +00002213
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002214 // C++ 11p3: Members of a class defined with the keyword class are private
2215 // by default. Members of a class defined with the keywords struct or union
2216 // are public by default.
2217 AccessSpecifier CurAS;
2218 if (TagType == DeclSpec::TST_class)
2219 CurAS = AS_private;
2220 else
2221 CurAS = AS_public;
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00002222 ParsedAttributes AccessAttrs(AttrFactory);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002223
Douglas Gregor07976d22010-06-21 22:31:09 +00002224 if (TagDecl) {
2225 // While we still have something to read, read the member-declarations.
2226 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
2227 // Each iteration of this loop reads one member-declaration.
Mike Stump1eb44332009-09-09 15:08:12 +00002228
Francois Pichet62ec1f22011-09-17 17:15:52 +00002229 if (getLang().MicrosoftExt && (Tok.is(tok::kw___if_exists) ||
Francois Pichet563a6452011-05-25 10:19:49 +00002230 Tok.is(tok::kw___if_not_exists))) {
2231 ParseMicrosoftIfExistsClassDeclaration((DeclSpec::TST)TagType, CurAS);
2232 continue;
2233 }
2234
Douglas Gregor07976d22010-06-21 22:31:09 +00002235 // Check for extraneous top-level semicolon.
2236 if (Tok.is(tok::semi)) {
2237 Diag(Tok, diag::ext_extra_struct_semi)
2238 << DeclSpec::getSpecifierName((DeclSpec::TST)TagType)
2239 << FixItHint::CreateRemoval(Tok.getLocation());
2240 ConsumeToken();
2241 continue;
2242 }
2243
2244 AccessSpecifier AS = getAccessSpecifierIfPresent();
2245 if (AS != AS_none) {
2246 // Current token is a C++ access specifier.
2247 CurAS = AS;
2248 SourceLocation ASLoc = Tok.getLocation();
David Blaikie13f8daf2011-10-13 06:08:43 +00002249 unsigned TokLength = Tok.getLength();
Douglas Gregor07976d22010-06-21 22:31:09 +00002250 ConsumeToken();
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00002251 AccessAttrs.clear();
2252 MaybeParseGNUAttributes(AccessAttrs);
2253
David Blaikie13f8daf2011-10-13 06:08:43 +00002254 SourceLocation EndLoc;
2255 if (Tok.is(tok::colon)) {
2256 EndLoc = Tok.getLocation();
2257 ConsumeToken();
2258 } else if (Tok.is(tok::semi)) {
2259 EndLoc = Tok.getLocation();
2260 ConsumeToken();
2261 Diag(EndLoc, diag::err_expected_colon)
2262 << FixItHint::CreateReplacement(EndLoc, ":");
2263 } else {
2264 EndLoc = ASLoc.getLocWithOffset(TokLength);
2265 Diag(EndLoc, diag::err_expected_colon)
2266 << FixItHint::CreateInsertion(EndLoc, ":");
2267 }
Erik Verbruggenc35cba42011-10-17 09:54:52 +00002268
2269 if (Actions.ActOnAccessSpecifier(AS, ASLoc, EndLoc,
2270 AccessAttrs.getList())) {
2271 // found another attribute than only annotations
2272 AccessAttrs.clear();
2273 }
2274
Douglas Gregor07976d22010-06-21 22:31:09 +00002275 continue;
2276 }
2277
2278 // FIXME: Make sure we don't have a template here.
2279
2280 // Parse all the comma separated declarators.
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00002281 ParseCXXClassMemberDeclaration(CurAS, AccessAttrs.getList());
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002282 }
2283
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002284 T.consumeClose();
Douglas Gregor07976d22010-06-21 22:31:09 +00002285 } else {
2286 SkipUntil(tok::r_brace, false, false);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002287 }
Mike Stump1eb44332009-09-09 15:08:12 +00002288
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002289 // If attributes exist after class contents, parse them.
John McCall0b7e6782011-03-24 11:26:52 +00002290 ParsedAttributes attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +00002291 MaybeParseGNUAttributes(attrs);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002292
John McCall42a4f662010-05-28 08:11:17 +00002293 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002294 Actions.ActOnFinishCXXMemberSpecification(getCurScope(), RecordLoc, TagDecl,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002295 T.getOpenLocation(),
2296 T.getCloseLocation(),
John McCall7f040a92010-12-24 02:08:15 +00002297 attrs.getList());
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002298
Richard Smith7a614d82011-06-11 17:19:42 +00002299 // C++0x [class.mem]p2: Within the class member-specification, the class is
2300 // regarded as complete within function bodies, default arguments, exception-
2301 // specifications, and brace-or-equal-initializers for non-static data
2302 // members (including such things in nested classes).
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002303 //
Richard Smith7a614d82011-06-11 17:19:42 +00002304 // FIXME: Only function bodies and brace-or-equal-initializers are currently
2305 // handled. Fix the others!
Douglas Gregor07976d22010-06-21 22:31:09 +00002306 if (TagDecl && NonNestedClass) {
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002307 // We are not inside a nested class. This class and its nested classes
Douglas Gregor72b505b2008-12-16 21:30:33 +00002308 // are complete and we can parse the delayed portions of method
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00002309 // declarations and the lexed inline method definitions, along with any
2310 // delayed attributes.
Douglas Gregore0cc0472010-06-16 23:45:56 +00002311 SourceLocation SavedPrevTokLocation = PrevTokLocation;
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00002312 ParseLexedAttributes(getCurrentClass());
Douglas Gregor6569d682009-05-27 23:11:45 +00002313 ParseLexedMethodDeclarations(getCurrentClass());
Richard Smith7a614d82011-06-11 17:19:42 +00002314 ParseLexedMemberInitializers(getCurrentClass());
Douglas Gregor6569d682009-05-27 23:11:45 +00002315 ParseLexedMethodDefs(getCurrentClass());
Douglas Gregore0cc0472010-06-16 23:45:56 +00002316 PrevTokLocation = SavedPrevTokLocation;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002317 }
2318
John McCall42a4f662010-05-28 08:11:17 +00002319 if (TagDecl)
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002320 Actions.ActOnTagFinishDefinition(getCurScope(), TagDecl,
2321 T.getCloseLocation());
John McCalldb7bb4a2010-03-17 00:38:33 +00002322
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002323 // Leave the class scope.
Douglas Gregor6569d682009-05-27 23:11:45 +00002324 ParsingDef.Pop();
Douglas Gregor8935b8b2008-12-10 06:34:36 +00002325 ClassScope.Exit();
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002326}
Douglas Gregor7ad83902008-11-05 04:29:56 +00002327
2328/// ParseConstructorInitializer - Parse a C++ constructor initializer,
2329/// which explicitly initializes the members or base classes of a
2330/// class (C++ [class.base.init]). For example, the three initializers
2331/// after the ':' in the Derived constructor below:
2332///
2333/// @code
2334/// class Base { };
2335/// class Derived : Base {
2336/// int x;
2337/// float f;
2338/// public:
2339/// Derived(float f) : Base(), x(17), f(f) { }
2340/// };
2341/// @endcode
2342///
Mike Stump1eb44332009-09-09 15:08:12 +00002343/// [C++] ctor-initializer:
2344/// ':' mem-initializer-list
Douglas Gregor7ad83902008-11-05 04:29:56 +00002345///
Mike Stump1eb44332009-09-09 15:08:12 +00002346/// [C++] mem-initializer-list:
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002347/// mem-initializer ...[opt]
2348/// mem-initializer ...[opt] , mem-initializer-list
John McCalld226f652010-08-21 09:40:31 +00002349void Parser::ParseConstructorInitializer(Decl *ConstructorDecl) {
Douglas Gregor7ad83902008-11-05 04:29:56 +00002350 assert(Tok.is(tok::colon) && "Constructor initializer always starts with ':'");
2351
John Wiegley28bbe4b2011-04-28 01:08:34 +00002352 // Poison the SEH identifiers so they are flagged as illegal in constructor initializers
2353 PoisonSEHIdentifiersRAIIObject PoisonSEHIdentifiers(*this, true);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002354 SourceLocation ColonLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00002355
Chris Lattner5f9e2722011-07-23 10:55:15 +00002356 SmallVector<CXXCtorInitializer*, 4> MemInitializers;
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002357 bool AnyErrors = false;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002358
Douglas Gregor7ad83902008-11-05 04:29:56 +00002359 do {
Douglas Gregor0133f522010-08-28 00:00:50 +00002360 if (Tok.is(tok::code_completion)) {
2361 Actions.CodeCompleteConstructorInitializer(ConstructorDecl,
2362 MemInitializers.data(),
2363 MemInitializers.size());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002364 return cutOffParsing();
Douglas Gregor0133f522010-08-28 00:00:50 +00002365 } else {
2366 MemInitResult MemInit = ParseMemInitializer(ConstructorDecl);
2367 if (!MemInit.isInvalid())
2368 MemInitializers.push_back(MemInit.get());
2369 else
2370 AnyErrors = true;
2371 }
2372
Douglas Gregor7ad83902008-11-05 04:29:56 +00002373 if (Tok.is(tok::comma))
2374 ConsumeToken();
2375 else if (Tok.is(tok::l_brace))
2376 break;
Douglas Gregorb1f6fa42010-09-07 14:35:10 +00002377 // If the next token looks like a base or member initializer, assume that
2378 // we're just missing a comma.
Douglas Gregor751f6922010-09-07 14:51:08 +00002379 else if (Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) {
2380 SourceLocation Loc = PP.getLocForEndOfToken(PrevTokLocation);
2381 Diag(Loc, diag::err_ctor_init_missing_comma)
2382 << FixItHint::CreateInsertion(Loc, ", ");
2383 } else {
Douglas Gregor7ad83902008-11-05 04:29:56 +00002384 // Skip over garbage, until we get to '{'. Don't eat the '{'.
Sebastian Redld3a413d2009-04-26 20:35:05 +00002385 Diag(Tok.getLocation(), diag::err_expected_lbrace_or_comma);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002386 SkipUntil(tok::l_brace, true, true);
2387 break;
2388 }
2389 } while (true);
2390
Mike Stump1eb44332009-09-09 15:08:12 +00002391 Actions.ActOnMemInitializers(ConstructorDecl, ColonLoc,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002392 MemInitializers.data(), MemInitializers.size(),
2393 AnyErrors);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002394}
2395
2396/// ParseMemInitializer - Parse a C++ member initializer, which is
2397/// part of a constructor initializer that explicitly initializes one
2398/// member or base class (C++ [class.base.init]). See
2399/// ParseConstructorInitializer for an example.
2400///
2401/// [C++] mem-initializer:
2402/// mem-initializer-id '(' expression-list[opt] ')'
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002403/// [C++0x] mem-initializer-id braced-init-list
Mike Stump1eb44332009-09-09 15:08:12 +00002404///
Douglas Gregor7ad83902008-11-05 04:29:56 +00002405/// [C++] mem-initializer-id:
2406/// '::'[opt] nested-name-specifier[opt] class-name
2407/// identifier
John McCalld226f652010-08-21 09:40:31 +00002408Parser::MemInitResult Parser::ParseMemInitializer(Decl *ConstructorDecl) {
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00002409 // parse '::'[opt] nested-name-specifier[opt]
2410 CXXScopeSpec SS;
Douglas Gregorefaa93a2011-11-07 17:33:42 +00002411 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), /*EnteringContext=*/false);
John McCallb3d87482010-08-24 05:47:05 +00002412 ParsedType TemplateTypeTy;
Fariborz Jahanian96174332009-07-01 19:21:19 +00002413 if (Tok.is(tok::annot_template_id)) {
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +00002414 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregord9b600c2010-01-12 17:52:59 +00002415 if (TemplateId->Kind == TNK_Type_template ||
2416 TemplateId->Kind == TNK_Dependent_template_name) {
Douglas Gregor059101f2011-03-02 00:47:37 +00002417 AnnotateTemplateIdTokenAsType();
Fariborz Jahanian96174332009-07-01 19:21:19 +00002418 assert(Tok.is(tok::annot_typename) && "template-id -> type failed");
John McCallb3d87482010-08-24 05:47:05 +00002419 TemplateTypeTy = getTypeAnnotation(Tok);
Fariborz Jahanian96174332009-07-01 19:21:19 +00002420 }
Fariborz Jahanian96174332009-07-01 19:21:19 +00002421 }
David Blaikief2116622012-01-24 06:03:59 +00002422 // Uses of decltype will already have been converted to annot_decltype by
2423 // ParseOptionalCXXScopeSpecifier at this point.
2424 if (!TemplateTypeTy && Tok.isNot(tok::identifier)
2425 && Tok.isNot(tok::annot_decltype)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00002426 Diag(Tok, diag::err_expected_member_or_base_name);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002427 return true;
2428 }
Mike Stump1eb44332009-09-09 15:08:12 +00002429
David Blaikief2116622012-01-24 06:03:59 +00002430 IdentifierInfo *II = 0;
2431 DeclSpec DS(AttrFactory);
2432 SourceLocation IdLoc = Tok.getLocation();
2433 if (Tok.is(tok::annot_decltype)) {
2434 // Get the decltype expression, if there is one.
2435 ParseDecltypeSpecifier(DS);
2436 } else {
2437 if (Tok.is(tok::identifier))
2438 // Get the identifier. This may be a member name or a class name,
2439 // but we'll let the semantic analysis determine which it is.
2440 II = Tok.getIdentifierInfo();
2441 ConsumeToken();
2442 }
2443
Douglas Gregor7ad83902008-11-05 04:29:56 +00002444
2445 // Parse the '('.
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002446 if (getLang().CPlusPlus0x && Tok.is(tok::l_brace)) {
Richard Smith7fe62082011-10-15 05:09:34 +00002447 Diag(Tok, diag::warn_cxx98_compat_generalized_initializer_lists);
2448
Sebastian Redl6df65482011-09-24 17:48:25 +00002449 ExprResult InitList = ParseBraceInitializer();
2450 if (InitList.isInvalid())
2451 return true;
2452
2453 SourceLocation EllipsisLoc;
2454 if (Tok.is(tok::ellipsis))
2455 EllipsisLoc = ConsumeToken();
2456
2457 return Actions.ActOnMemInitializer(ConstructorDecl, getCurScope(), SS, II,
David Blaikief2116622012-01-24 06:03:59 +00002458 TemplateTypeTy, DS, IdLoc,
2459 InitList.take(), EllipsisLoc);
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002460 } else if(Tok.is(tok::l_paren)) {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002461 BalancedDelimiterTracker T(*this, tok::l_paren);
2462 T.consumeOpen();
Douglas Gregor7ad83902008-11-05 04:29:56 +00002463
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002464 // Parse the optional expression-list.
2465 ExprVector ArgExprs(Actions);
2466 CommaLocsTy CommaLocs;
2467 if (Tok.isNot(tok::r_paren) && ParseExpressionList(ArgExprs, CommaLocs)) {
2468 SkipUntil(tok::r_paren);
2469 return true;
2470 }
2471
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002472 T.consumeClose();
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002473
2474 SourceLocation EllipsisLoc;
2475 if (Tok.is(tok::ellipsis))
2476 EllipsisLoc = ConsumeToken();
2477
2478 return Actions.ActOnMemInitializer(ConstructorDecl, getCurScope(), SS, II,
David Blaikief2116622012-01-24 06:03:59 +00002479 TemplateTypeTy, DS, IdLoc,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002480 T.getOpenLocation(), ArgExprs.take(),
2481 ArgExprs.size(), T.getCloseLocation(),
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002482 EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002483 }
2484
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002485 Diag(Tok, getLang().CPlusPlus0x ? diag::err_expected_lparen_or_lbrace
2486 : diag::err_expected_lparen);
2487 return true;
Douglas Gregor7ad83902008-11-05 04:29:56 +00002488}
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002489
Sebastian Redl7acafd02011-03-05 14:45:16 +00002490/// \brief Parse a C++ exception-specification if present (C++0x [except.spec]).
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002491///
Douglas Gregora4745612008-12-01 18:00:20 +00002492/// exception-specification:
Sebastian Redl7acafd02011-03-05 14:45:16 +00002493/// dynamic-exception-specification
2494/// noexcept-specification
2495///
2496/// noexcept-specification:
2497/// 'noexcept'
2498/// 'noexcept' '(' constant-expression ')'
2499ExceptionSpecificationType
2500Parser::MaybeParseExceptionSpecification(SourceRange &SpecificationRange,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002501 SmallVectorImpl<ParsedType> &DynamicExceptions,
2502 SmallVectorImpl<SourceRange> &DynamicExceptionRanges,
Sebastian Redl7acafd02011-03-05 14:45:16 +00002503 ExprResult &NoexceptExpr) {
2504 ExceptionSpecificationType Result = EST_None;
2505
2506 // See if there's a dynamic specification.
2507 if (Tok.is(tok::kw_throw)) {
2508 Result = ParseDynamicExceptionSpecification(SpecificationRange,
2509 DynamicExceptions,
2510 DynamicExceptionRanges);
2511 assert(DynamicExceptions.size() == DynamicExceptionRanges.size() &&
2512 "Produced different number of exception types and ranges.");
2513 }
2514
2515 // If there's no noexcept specification, we're done.
2516 if (Tok.isNot(tok::kw_noexcept))
2517 return Result;
2518
Richard Smith841804b2011-10-17 23:06:20 +00002519 Diag(Tok, diag::warn_cxx98_compat_noexcept_decl);
2520
Sebastian Redl7acafd02011-03-05 14:45:16 +00002521 // If we already had a dynamic specification, parse the noexcept for,
2522 // recovery, but emit a diagnostic and don't store the results.
2523 SourceRange NoexceptRange;
2524 ExceptionSpecificationType NoexceptType = EST_None;
2525
2526 SourceLocation KeywordLoc = ConsumeToken();
2527 if (Tok.is(tok::l_paren)) {
2528 // There is an argument.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002529 BalancedDelimiterTracker T(*this, tok::l_paren);
2530 T.consumeOpen();
Sebastian Redl7acafd02011-03-05 14:45:16 +00002531 NoexceptType = EST_ComputedNoexcept;
2532 NoexceptExpr = ParseConstantExpression();
Sebastian Redl60618fa2011-03-12 11:50:43 +00002533 // The argument must be contextually convertible to bool. We use
2534 // ActOnBooleanCondition for this purpose.
2535 if (!NoexceptExpr.isInvalid())
2536 NoexceptExpr = Actions.ActOnBooleanCondition(getCurScope(), KeywordLoc,
2537 NoexceptExpr.get());
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002538 T.consumeClose();
2539 NoexceptRange = SourceRange(KeywordLoc, T.getCloseLocation());
Sebastian Redl7acafd02011-03-05 14:45:16 +00002540 } else {
2541 // There is no argument.
2542 NoexceptType = EST_BasicNoexcept;
2543 NoexceptRange = SourceRange(KeywordLoc, KeywordLoc);
2544 }
2545
2546 if (Result == EST_None) {
2547 SpecificationRange = NoexceptRange;
2548 Result = NoexceptType;
2549
2550 // If there's a dynamic specification after a noexcept specification,
2551 // parse that and ignore the results.
2552 if (Tok.is(tok::kw_throw)) {
2553 Diag(Tok.getLocation(), diag::err_dynamic_and_noexcept_specification);
2554 ParseDynamicExceptionSpecification(NoexceptRange, DynamicExceptions,
2555 DynamicExceptionRanges);
2556 }
2557 } else {
2558 Diag(Tok.getLocation(), diag::err_dynamic_and_noexcept_specification);
2559 }
2560
2561 return Result;
2562}
2563
2564/// ParseDynamicExceptionSpecification - Parse a C++
2565/// dynamic-exception-specification (C++ [except.spec]).
2566///
2567/// dynamic-exception-specification:
Douglas Gregora4745612008-12-01 18:00:20 +00002568/// 'throw' '(' type-id-list [opt] ')'
2569/// [MS] 'throw' '(' '...' ')'
Mike Stump1eb44332009-09-09 15:08:12 +00002570///
Douglas Gregora4745612008-12-01 18:00:20 +00002571/// type-id-list:
Douglas Gregora04426c2010-12-20 23:57:46 +00002572/// type-id ... [opt]
2573/// type-id-list ',' type-id ... [opt]
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002574///
Sebastian Redl7acafd02011-03-05 14:45:16 +00002575ExceptionSpecificationType Parser::ParseDynamicExceptionSpecification(
2576 SourceRange &SpecificationRange,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002577 SmallVectorImpl<ParsedType> &Exceptions,
2578 SmallVectorImpl<SourceRange> &Ranges) {
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002579 assert(Tok.is(tok::kw_throw) && "expected throw");
Mike Stump1eb44332009-09-09 15:08:12 +00002580
Sebastian Redl7acafd02011-03-05 14:45:16 +00002581 SpecificationRange.setBegin(ConsumeToken());
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002582 BalancedDelimiterTracker T(*this, tok::l_paren);
2583 if (T.consumeOpen()) {
Sebastian Redl7acafd02011-03-05 14:45:16 +00002584 Diag(Tok, diag::err_expected_lparen_after) << "throw";
2585 SpecificationRange.setEnd(SpecificationRange.getBegin());
Sebastian Redl60618fa2011-03-12 11:50:43 +00002586 return EST_DynamicNone;
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002587 }
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002588
Douglas Gregora4745612008-12-01 18:00:20 +00002589 // Parse throw(...), a Microsoft extension that means "this function
2590 // can throw anything".
2591 if (Tok.is(tok::ellipsis)) {
2592 SourceLocation EllipsisLoc = ConsumeToken();
Francois Pichet62ec1f22011-09-17 17:15:52 +00002593 if (!getLang().MicrosoftExt)
Douglas Gregora4745612008-12-01 18:00:20 +00002594 Diag(EllipsisLoc, diag::ext_ellipsis_exception_spec);
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002595 T.consumeClose();
2596 SpecificationRange.setEnd(T.getCloseLocation());
Sebastian Redl60618fa2011-03-12 11:50:43 +00002597 return EST_MSAny;
Douglas Gregora4745612008-12-01 18:00:20 +00002598 }
2599
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002600 // Parse the sequence of type-ids.
Sebastian Redlef65f062009-05-29 18:02:33 +00002601 SourceRange Range;
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002602 while (Tok.isNot(tok::r_paren)) {
Sebastian Redlef65f062009-05-29 18:02:33 +00002603 TypeResult Res(ParseTypeName(&Range));
Sebastian Redl7acafd02011-03-05 14:45:16 +00002604
Douglas Gregora04426c2010-12-20 23:57:46 +00002605 if (Tok.is(tok::ellipsis)) {
2606 // C++0x [temp.variadic]p5:
2607 // - In a dynamic-exception-specification (15.4); the pattern is a
2608 // type-id.
2609 SourceLocation Ellipsis = ConsumeToken();
Sebastian Redl7acafd02011-03-05 14:45:16 +00002610 Range.setEnd(Ellipsis);
Douglas Gregora04426c2010-12-20 23:57:46 +00002611 if (!Res.isInvalid())
2612 Res = Actions.ActOnPackExpansion(Res.get(), Ellipsis);
2613 }
Sebastian Redl7acafd02011-03-05 14:45:16 +00002614
Sebastian Redlef65f062009-05-29 18:02:33 +00002615 if (!Res.isInvalid()) {
Sebastian Redl7dc81342009-04-29 17:30:04 +00002616 Exceptions.push_back(Res.get());
Sebastian Redlef65f062009-05-29 18:02:33 +00002617 Ranges.push_back(Range);
2618 }
Douglas Gregora04426c2010-12-20 23:57:46 +00002619
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002620 if (Tok.is(tok::comma))
2621 ConsumeToken();
Sebastian Redl7dc81342009-04-29 17:30:04 +00002622 else
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002623 break;
2624 }
2625
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002626 T.consumeClose();
2627 SpecificationRange.setEnd(T.getCloseLocation());
Sebastian Redl60618fa2011-03-12 11:50:43 +00002628 return Exceptions.empty() ? EST_DynamicNone : EST_Dynamic;
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002629}
Douglas Gregor6569d682009-05-27 23:11:45 +00002630
Douglas Gregordab60ad2010-10-01 18:44:50 +00002631/// ParseTrailingReturnType - Parse a trailing return type on a new-style
2632/// function declaration.
Douglas Gregorae7902c2011-08-04 15:30:47 +00002633TypeResult Parser::ParseTrailingReturnType(SourceRange &Range) {
Douglas Gregordab60ad2010-10-01 18:44:50 +00002634 assert(Tok.is(tok::arrow) && "expected arrow");
2635
2636 ConsumeToken();
2637
2638 // FIXME: Need to suppress declarations when parsing this typename.
2639 // Otherwise in this function definition:
2640 //
2641 // auto f() -> struct X {}
2642 //
2643 // struct X is parsed as class definition because of the trailing
2644 // brace.
Douglas Gregordab60ad2010-10-01 18:44:50 +00002645 return ParseTypeName(&Range);
2646}
2647
Douglas Gregor6569d682009-05-27 23:11:45 +00002648/// \brief We have just started parsing the definition of a new class,
2649/// so push that class onto our stack of classes that is currently
2650/// being parsed.
John McCalleee1d542011-02-14 07:13:47 +00002651Sema::ParsingClassState
2652Parser::PushParsingClass(Decl *ClassDecl, bool NonNestedClass) {
Douglas Gregor26997fd2010-01-16 20:52:59 +00002653 assert((NonNestedClass || !ClassStack.empty()) &&
Douglas Gregor6569d682009-05-27 23:11:45 +00002654 "Nested class without outer class");
Douglas Gregor26997fd2010-01-16 20:52:59 +00002655 ClassStack.push(new ParsingClass(ClassDecl, NonNestedClass));
John McCalleee1d542011-02-14 07:13:47 +00002656 return Actions.PushParsingClass();
Douglas Gregor6569d682009-05-27 23:11:45 +00002657}
2658
2659/// \brief Deallocate the given parsed class and all of its nested
2660/// classes.
2661void Parser::DeallocateParsedClasses(Parser::ParsingClass *Class) {
Douglas Gregord54eb442010-10-12 16:25:54 +00002662 for (unsigned I = 0, N = Class->LateParsedDeclarations.size(); I != N; ++I)
2663 delete Class->LateParsedDeclarations[I];
Douglas Gregor6569d682009-05-27 23:11:45 +00002664 delete Class;
2665}
2666
2667/// \brief Pop the top class of the stack of classes that are
2668/// currently being parsed.
2669///
2670/// This routine should be called when we have finished parsing the
2671/// definition of a class, but have not yet popped the Scope
2672/// associated with the class's definition.
2673///
2674/// \returns true if the class we've popped is a top-level class,
2675/// false otherwise.
John McCalleee1d542011-02-14 07:13:47 +00002676void Parser::PopParsingClass(Sema::ParsingClassState state) {
Douglas Gregor6569d682009-05-27 23:11:45 +00002677 assert(!ClassStack.empty() && "Mismatched push/pop for class parsing");
Mike Stump1eb44332009-09-09 15:08:12 +00002678
John McCalleee1d542011-02-14 07:13:47 +00002679 Actions.PopParsingClass(state);
2680
Douglas Gregor6569d682009-05-27 23:11:45 +00002681 ParsingClass *Victim = ClassStack.top();
2682 ClassStack.pop();
2683 if (Victim->TopLevelClass) {
2684 // Deallocate all of the nested classes of this class,
2685 // recursively: we don't need to keep any of this information.
2686 DeallocateParsedClasses(Victim);
2687 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002688 }
Douglas Gregor6569d682009-05-27 23:11:45 +00002689 assert(!ClassStack.empty() && "Missing top-level class?");
2690
Douglas Gregord54eb442010-10-12 16:25:54 +00002691 if (Victim->LateParsedDeclarations.empty()) {
Douglas Gregor6569d682009-05-27 23:11:45 +00002692 // The victim is a nested class, but we will not need to perform
2693 // any processing after the definition of this class since it has
2694 // no members whose handling was delayed. Therefore, we can just
2695 // remove this nested class.
Douglas Gregord54eb442010-10-12 16:25:54 +00002696 DeallocateParsedClasses(Victim);
Douglas Gregor6569d682009-05-27 23:11:45 +00002697 return;
2698 }
2699
2700 // This nested class has some members that will need to be processed
2701 // after the top-level class is completely defined. Therefore, add
2702 // it to the list of nested classes within its parent.
Douglas Gregor23c94db2010-07-02 17:43:08 +00002703 assert(getCurScope()->isClassScope() && "Nested class outside of class scope?");
Douglas Gregord54eb442010-10-12 16:25:54 +00002704 ClassStack.top()->LateParsedDeclarations.push_back(new LateParsedClass(this, Victim));
Douglas Gregor23c94db2010-07-02 17:43:08 +00002705 Victim->TemplateScope = getCurScope()->getParent()->isTemplateParamScope();
Douglas Gregor6569d682009-05-27 23:11:45 +00002706}
Sean Huntbbd37c62009-11-21 08:43:09 +00002707
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002708/// ParseCXX0XAttributeSpecifier - Parse a C++0x attribute-specifier. Currently
2709/// only parses standard attributes.
Sean Huntbbd37c62009-11-21 08:43:09 +00002710///
2711/// [C++0x] attribute-specifier:
2712/// '[' '[' attribute-list ']' ']'
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002713/// alignment-specifier
Sean Huntbbd37c62009-11-21 08:43:09 +00002714///
2715/// [C++0x] attribute-list:
2716/// attribute[opt]
2717/// attribute-list ',' attribute[opt]
2718///
2719/// [C++0x] attribute:
2720/// attribute-token attribute-argument-clause[opt]
2721///
2722/// [C++0x] attribute-token:
2723/// identifier
2724/// attribute-scoped-token
2725///
2726/// [C++0x] attribute-scoped-token:
2727/// attribute-namespace '::' identifier
2728///
2729/// [C++0x] attribute-namespace:
2730/// identifier
2731///
2732/// [C++0x] attribute-argument-clause:
2733/// '(' balanced-token-seq ')'
2734///
2735/// [C++0x] balanced-token-seq:
2736/// balanced-token
2737/// balanced-token-seq balanced-token
2738///
2739/// [C++0x] balanced-token:
2740/// '(' balanced-token-seq ')'
2741/// '[' balanced-token-seq ']'
2742/// '{' balanced-token-seq '}'
2743/// any token but '(', ')', '[', ']', '{', or '}'
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002744void Parser::ParseCXX0XAttributeSpecifier(ParsedAttributes &attrs,
2745 SourceLocation *endLoc) {
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002746 if (Tok.is(tok::kw_alignas)) {
Richard Smith41be6732011-10-14 20:48:27 +00002747 Diag(Tok.getLocation(), diag::warn_cxx98_compat_alignas);
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002748 ParseAlignmentSpecifier(attrs, endLoc);
2749 return;
2750 }
2751
Sean Huntbbd37c62009-11-21 08:43:09 +00002752 assert(Tok.is(tok::l_square) && NextToken().is(tok::l_square)
2753 && "Not a C++0x attribute list");
2754
Richard Smith41be6732011-10-14 20:48:27 +00002755 Diag(Tok.getLocation(), diag::warn_cxx98_compat_attribute);
2756
Sean Huntbbd37c62009-11-21 08:43:09 +00002757 ConsumeBracket();
2758 ConsumeBracket();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002759
Sean Huntbbd37c62009-11-21 08:43:09 +00002760 if (Tok.is(tok::comma)) {
2761 Diag(Tok.getLocation(), diag::err_expected_ident);
2762 ConsumeToken();
2763 }
2764
2765 while (Tok.is(tok::identifier) || Tok.is(tok::comma)) {
2766 // attribute not present
2767 if (Tok.is(tok::comma)) {
2768 ConsumeToken();
2769 continue;
2770 }
2771
2772 IdentifierInfo *ScopeName = 0, *AttrName = Tok.getIdentifierInfo();
2773 SourceLocation ScopeLoc, AttrLoc = ConsumeToken();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002774
Sean Huntbbd37c62009-11-21 08:43:09 +00002775 // scoped attribute
2776 if (Tok.is(tok::coloncolon)) {
2777 ConsumeToken();
2778
2779 if (!Tok.is(tok::identifier)) {
2780 Diag(Tok.getLocation(), diag::err_expected_ident);
2781 SkipUntil(tok::r_square, tok::comma, true, true);
2782 continue;
2783 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002784
Sean Huntbbd37c62009-11-21 08:43:09 +00002785 ScopeName = AttrName;
2786 ScopeLoc = AttrLoc;
2787
2788 AttrName = Tok.getIdentifierInfo();
2789 AttrLoc = ConsumeToken();
2790 }
2791
2792 bool AttrParsed = false;
2793 // No scoped names are supported; ideally we could put all non-standard
2794 // attributes into namespaces.
2795 if (!ScopeName) {
2796 switch(AttributeList::getKind(AttrName))
2797 {
2798 // No arguments
Sean Hunt7725e672009-11-25 04:20:27 +00002799 case AttributeList::AT_carries_dependency:
Anders Carlsson15e14a22011-01-23 21:33:18 +00002800 case AttributeList::AT_noreturn: {
Sean Huntbbd37c62009-11-21 08:43:09 +00002801 if (Tok.is(tok::l_paren)) {
2802 Diag(Tok.getLocation(), diag::err_cxx0x_attribute_forbids_arguments)
2803 << AttrName->getName();
2804 break;
2805 }
2806
John McCall0b7e6782011-03-24 11:26:52 +00002807 attrs.addNew(AttrName, AttrLoc, 0, AttrLoc, 0,
2808 SourceLocation(), 0, 0, false, true);
Sean Huntbbd37c62009-11-21 08:43:09 +00002809 AttrParsed = true;
2810 break;
2811 }
2812
Sean Huntbbd37c62009-11-21 08:43:09 +00002813 // Silence warnings
2814 default: break;
2815 }
2816 }
2817
2818 // Skip the entire parameter clause, if any
2819 if (!AttrParsed && Tok.is(tok::l_paren)) {
2820 ConsumeParen();
2821 // SkipUntil maintains the balancedness of tokens.
2822 SkipUntil(tok::r_paren, false);
2823 }
2824 }
2825
2826 if (ExpectAndConsume(tok::r_square, diag::err_expected_rsquare))
2827 SkipUntil(tok::r_square, false);
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002828 if (endLoc)
2829 *endLoc = Tok.getLocation();
Sean Huntbbd37c62009-11-21 08:43:09 +00002830 if (ExpectAndConsume(tok::r_square, diag::err_expected_rsquare))
2831 SkipUntil(tok::r_square, false);
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002832}
Sean Huntbbd37c62009-11-21 08:43:09 +00002833
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002834/// ParseCXX0XAttributes - Parse a C++0x attribute-specifier-seq.
2835///
2836/// attribute-specifier-seq:
2837/// attribute-specifier-seq[opt] attribute-specifier
2838void Parser::ParseCXX0XAttributes(ParsedAttributesWithRange &attrs,
2839 SourceLocation *endLoc) {
2840 SourceLocation StartLoc = Tok.getLocation(), Loc;
2841 if (!endLoc)
2842 endLoc = &Loc;
2843
Douglas Gregor8828ee72011-10-07 20:35:25 +00002844 do {
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002845 ParseCXX0XAttributeSpecifier(attrs, endLoc);
Douglas Gregor8828ee72011-10-07 20:35:25 +00002846 } while (isCXX0XAttributeSpecifier());
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002847
2848 attrs.Range = SourceRange(StartLoc, *endLoc);
Sean Huntbbd37c62009-11-21 08:43:09 +00002849}
2850
Francois Pichet334d47e2010-10-11 12:59:39 +00002851/// ParseMicrosoftAttributes - Parse a Microsoft attribute [Attr]
2852///
2853/// [MS] ms-attribute:
2854/// '[' token-seq ']'
2855///
2856/// [MS] ms-attribute-seq:
2857/// ms-attribute[opt]
2858/// ms-attribute ms-attribute-seq
John McCall7f040a92010-12-24 02:08:15 +00002859void Parser::ParseMicrosoftAttributes(ParsedAttributes &attrs,
2860 SourceLocation *endLoc) {
Francois Pichet334d47e2010-10-11 12:59:39 +00002861 assert(Tok.is(tok::l_square) && "Not a Microsoft attribute list");
2862
2863 while (Tok.is(tok::l_square)) {
2864 ConsumeBracket();
2865 SkipUntil(tok::r_square, true, true);
John McCall7f040a92010-12-24 02:08:15 +00002866 if (endLoc) *endLoc = Tok.getLocation();
Francois Pichet334d47e2010-10-11 12:59:39 +00002867 ExpectAndConsume(tok::r_square, diag::err_expected_rsquare);
2868 }
2869}
Francois Pichet563a6452011-05-25 10:19:49 +00002870
2871void Parser::ParseMicrosoftIfExistsClassDeclaration(DeclSpec::TST TagType,
2872 AccessSpecifier& CurAS) {
Douglas Gregor3896fc52011-10-24 22:31:10 +00002873 IfExistsCondition Result;
Francois Pichet563a6452011-05-25 10:19:49 +00002874 if (ParseMicrosoftIfExistsCondition(Result))
2875 return;
2876
Douglas Gregor3896fc52011-10-24 22:31:10 +00002877 BalancedDelimiterTracker Braces(*this, tok::l_brace);
2878 if (Braces.consumeOpen()) {
Francois Pichet563a6452011-05-25 10:19:49 +00002879 Diag(Tok, diag::err_expected_lbrace);
2880 return;
2881 }
Francois Pichet563a6452011-05-25 10:19:49 +00002882
Douglas Gregor3896fc52011-10-24 22:31:10 +00002883 switch (Result.Behavior) {
2884 case IEB_Parse:
2885 // Parse the declarations below.
2886 break;
2887
2888 case IEB_Dependent:
2889 Diag(Result.KeywordLoc, diag::warn_microsoft_dependent_exists)
2890 << Result.IsIfExists;
2891 // Fall through to skip.
2892
2893 case IEB_Skip:
2894 Braces.skipToEnd();
Francois Pichet563a6452011-05-25 10:19:49 +00002895 return;
2896 }
2897
Douglas Gregor3896fc52011-10-24 22:31:10 +00002898 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
Francois Pichet563a6452011-05-25 10:19:49 +00002899 // __if_exists, __if_not_exists can nest.
2900 if ((Tok.is(tok::kw___if_exists) || Tok.is(tok::kw___if_not_exists))) {
2901 ParseMicrosoftIfExistsClassDeclaration((DeclSpec::TST)TagType, CurAS);
2902 continue;
2903 }
2904
2905 // Check for extraneous top-level semicolon.
2906 if (Tok.is(tok::semi)) {
2907 Diag(Tok, diag::ext_extra_struct_semi)
2908 << DeclSpec::getSpecifierName((DeclSpec::TST)TagType)
2909 << FixItHint::CreateRemoval(Tok.getLocation());
2910 ConsumeToken();
2911 continue;
2912 }
2913
2914 AccessSpecifier AS = getAccessSpecifierIfPresent();
2915 if (AS != AS_none) {
2916 // Current token is a C++ access specifier.
2917 CurAS = AS;
2918 SourceLocation ASLoc = Tok.getLocation();
2919 ConsumeToken();
2920 if (Tok.is(tok::colon))
2921 Actions.ActOnAccessSpecifier(AS, ASLoc, Tok.getLocation());
2922 else
2923 Diag(Tok, diag::err_expected_colon);
2924 ConsumeToken();
2925 continue;
2926 }
2927
2928 // Parse all the comma separated declarators.
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00002929 ParseCXXClassMemberDeclaration(CurAS, 0);
Francois Pichet563a6452011-05-25 10:19:49 +00002930 }
Douglas Gregor3896fc52011-10-24 22:31:10 +00002931
2932 Braces.consumeClose();
Francois Pichet563a6452011-05-25 10:19:49 +00002933}