blob: 9d2db2ae1c09de91ebc2bdba9fc915930b8275e5 [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.
John McCallb3d87482010-08-24 05:47:05 +0000237 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), 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.
John McCallb3d87482010-08-24 05:47:05 +0000385 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), 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.
John McCallb3d87482010-08-24 05:47:05 +0000453 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), 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.
464 UnqualifiedId Name;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000465 if (ParseUnqualifiedId(SS,
Douglas Gregor12c118a2009-11-04 16:30:06 +0000466 /*EnteringContext=*/false,
467 /*AllowDestructorName=*/true,
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000468 /*AllowConstructorName=*/true,
John McCallb3d87482010-08-24 05:47:05 +0000469 ParsedType(),
Douglas Gregor12c118a2009-11-04 16:30:06 +0000470 Name)) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000471 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000472 return 0;
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000473 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000474
John McCall0b7e6782011-03-24 11:26:52 +0000475 ParsedAttributes attrs(AttrFactory);
Richard Smith162e1c12011-04-15 14:24:37 +0000476
477 // Maybe this is an alias-declaration.
478 bool IsAliasDecl = Tok.is(tok::equal);
479 TypeResult TypeAlias;
480 if (IsAliasDecl) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000481 // TODO: Attribute support. C++0x attributes may appear before the equals.
482 // Where can GNU attributes appear?
Richard Smith162e1c12011-04-15 14:24:37 +0000483 ConsumeToken();
484
Richard Smith7fe62082011-10-15 05:09:34 +0000485 Diag(Tok.getLocation(), getLang().CPlusPlus0x ?
486 diag::warn_cxx98_compat_alias_declaration :
487 diag::ext_alias_declaration);
Richard Smith162e1c12011-04-15 14:24:37 +0000488
Richard Smith3e4c6c42011-05-05 21:57:07 +0000489 // Type alias templates cannot be specialized.
490 int SpecKind = -1;
Richard Smith536e9c12011-05-05 22:36:10 +0000491 if (TemplateInfo.Kind == ParsedTemplateInfo::Template &&
492 Name.getKind() == UnqualifiedId::IK_TemplateId)
Richard Smith3e4c6c42011-05-05 21:57:07 +0000493 SpecKind = 0;
494 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitSpecialization)
495 SpecKind = 1;
496 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation)
497 SpecKind = 2;
498 if (SpecKind != -1) {
499 SourceRange Range;
500 if (SpecKind == 0)
501 Range = SourceRange(Name.TemplateId->LAngleLoc,
502 Name.TemplateId->RAngleLoc);
503 else
504 Range = TemplateInfo.getSourceRange();
505 Diag(Range.getBegin(), diag::err_alias_declaration_specialization)
506 << SpecKind << Range;
507 SkipUntil(tok::semi);
508 return 0;
509 }
510
Richard Smith162e1c12011-04-15 14:24:37 +0000511 // Name must be an identifier.
512 if (Name.getKind() != UnqualifiedId::IK_Identifier) {
513 Diag(Name.StartLocation, diag::err_alias_declaration_not_identifier);
514 // No removal fixit: can't recover from this.
515 SkipUntil(tok::semi);
516 return 0;
517 } else if (IsTypeName)
518 Diag(TypenameLoc, diag::err_alias_declaration_not_identifier)
519 << FixItHint::CreateRemoval(SourceRange(TypenameLoc,
520 SS.isNotEmpty() ? SS.getEndLoc() : TypenameLoc));
521 else if (SS.isNotEmpty())
522 Diag(SS.getBeginLoc(), diag::err_alias_declaration_not_identifier)
523 << FixItHint::CreateRemoval(SS.getRange());
524
Richard Smith3e4c6c42011-05-05 21:57:07 +0000525 TypeAlias = ParseTypeName(0, TemplateInfo.Kind ?
526 Declarator::AliasTemplateContext :
John McCallcdda47f2011-10-01 09:56:14 +0000527 Declarator::AliasDeclContext, AS, OwnedType);
Richard Smith162e1c12011-04-15 14:24:37 +0000528 } else
529 // Parse (optional) attributes (most likely GNU strong-using extension).
530 MaybeParseGNUAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +0000531
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000532 // Eat ';'.
533 DeclEnd = Tok.getLocation();
534 ExpectAndConsume(tok::semi, diag::err_expected_semi_after,
Richard Smith162e1c12011-04-15 14:24:37 +0000535 !attrs.empty() ? "attributes list" :
536 IsAliasDecl ? "alias declaration" : "using declaration",
Douglas Gregor12c118a2009-11-04 16:30:06 +0000537 tok::semi);
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000538
John McCall78b81052010-11-10 02:40:36 +0000539 // Diagnose an attempt to declare a templated using-declaration.
Richard Smith3e4c6c42011-05-05 21:57:07 +0000540 // In C++0x, alias-declarations can be templates:
Richard Smith162e1c12011-04-15 14:24:37 +0000541 // template <...> using id = type;
Richard Smith3e4c6c42011-05-05 21:57:07 +0000542 if (TemplateInfo.Kind && !IsAliasDecl) {
John McCall78b81052010-11-10 02:40:36 +0000543 SourceRange R = TemplateInfo.getSourceRange();
544 Diag(UsingLoc, diag::err_templated_using_declaration)
545 << R << FixItHint::CreateRemoval(R);
546
547 // Unfortunately, we have to bail out instead of recovering by
548 // ignoring the parameters, just in case the nested name specifier
549 // depends on the parameters.
550 return 0;
551 }
552
Douglas Gregor480b53c2011-09-26 14:30:28 +0000553 // "typename" keyword is allowed for identifiers only,
554 // because it may be a type definition.
555 if (IsTypeName && Name.getKind() != UnqualifiedId::IK_Identifier) {
556 Diag(Name.getSourceRange().getBegin(), diag::err_typename_identifiers_only)
557 << FixItHint::CreateRemoval(SourceRange(TypenameLoc));
558 // Proceed parsing, but reset the IsTypeName flag.
559 IsTypeName = false;
560 }
561
Richard Smith3e4c6c42011-05-05 21:57:07 +0000562 if (IsAliasDecl) {
563 TemplateParameterLists *TemplateParams = TemplateInfo.TemplateParams;
564 MultiTemplateParamsArg TemplateParamsArg(Actions,
565 TemplateParams ? TemplateParams->data() : 0,
566 TemplateParams ? TemplateParams->size() : 0);
567 return Actions.ActOnAliasDeclaration(getCurScope(), AS, TemplateParamsArg,
568 UsingLoc, Name, TypeAlias);
569 }
Richard Smith162e1c12011-04-15 14:24:37 +0000570
Ted Kremenek8113ecf2010-11-10 05:59:39 +0000571 return Actions.ActOnUsingDeclaration(getCurScope(), AS, true, UsingLoc, SS,
John McCall7f040a92010-12-24 02:08:15 +0000572 Name, attrs.getList(),
573 IsTypeName, TypenameLoc);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000574}
575
Peter Collingbournec6eb44b2011-04-15 00:35:57 +0000576/// ParseStaticAssertDeclaration - Parse C++0x or C1X static_assert-declaration.
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000577///
Peter Collingbournec6eb44b2011-04-15 00:35:57 +0000578/// [C++0x] static_assert-declaration:
579/// static_assert ( constant-expression , string-literal ) ;
580///
581/// [C1X] static_assert-declaration:
582/// _Static_assert ( constant-expression , string-literal ) ;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000583///
John McCalld226f652010-08-21 09:40:31 +0000584Decl *Parser::ParseStaticAssertDeclaration(SourceLocation &DeclEnd){
Peter Collingbournec6eb44b2011-04-15 00:35:57 +0000585 assert((Tok.is(tok::kw_static_assert) || Tok.is(tok::kw__Static_assert)) &&
586 "Not a static_assert declaration");
587
588 if (Tok.is(tok::kw__Static_assert) && !getLang().C1X)
589 Diag(Tok, diag::ext_c1x_static_assert);
Richard Smith841804b2011-10-17 23:06:20 +0000590 if (Tok.is(tok::kw_static_assert))
591 Diag(Tok, diag::warn_cxx98_compat_static_assert);
Peter Collingbournec6eb44b2011-04-15 00:35:57 +0000592
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000593 SourceLocation StaticAssertLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000594
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000595 BalancedDelimiterTracker T(*this, tok::l_paren);
596 if (T.consumeOpen()) {
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000597 Diag(Tok, diag::err_expected_lparen);
John McCalld226f652010-08-21 09:40:31 +0000598 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000599 }
Mike Stump1eb44332009-09-09 15:08:12 +0000600
John McCall60d7b3a2010-08-24 06:29:42 +0000601 ExprResult AssertExpr(ParseConstantExpression());
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000602 if (AssertExpr.isInvalid()) {
603 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000604 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000605 }
Mike Stump1eb44332009-09-09 15:08:12 +0000606
Anders Carlssonad5f9602009-03-13 23:29:20 +0000607 if (ExpectAndConsume(tok::comma, diag::err_expected_comma, "", tok::semi))
John McCalld226f652010-08-21 09:40:31 +0000608 return 0;
Anders Carlssonad5f9602009-03-13 23:29:20 +0000609
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000610 if (Tok.isNot(tok::string_literal)) {
611 Diag(Tok, diag::err_expected_string_literal);
612 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000613 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000614 }
Mike Stump1eb44332009-09-09 15:08:12 +0000615
John McCall60d7b3a2010-08-24 06:29:42 +0000616 ExprResult AssertMessage(ParseStringLiteralExpression());
Mike Stump1eb44332009-09-09 15:08:12 +0000617 if (AssertMessage.isInvalid())
John McCalld226f652010-08-21 09:40:31 +0000618 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000619
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000620 T.consumeClose();
Mike Stump1eb44332009-09-09 15:08:12 +0000621
Chris Lattner97144fc2009-04-02 04:16:50 +0000622 DeclEnd = Tok.getLocation();
Douglas Gregor9ba23b42010-09-07 15:23:11 +0000623 ExpectAndConsumeSemi(diag::err_expected_semi_after_static_assert);
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000624
John McCall9ae2f072010-08-23 23:25:46 +0000625 return Actions.ActOnStaticAssertDeclaration(StaticAssertLoc,
626 AssertExpr.take(),
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000627 AssertMessage.take(),
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000628 T.getCloseLocation());
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000629}
630
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000631/// ParseDecltypeSpecifier - Parse a C++0x decltype specifier.
632///
633/// 'decltype' ( expression )
634///
635void Parser::ParseDecltypeSpecifier(DeclSpec &DS) {
636 assert(Tok.is(tok::kw_decltype) && "Not a decltype specifier");
637
638 SourceLocation StartLoc = ConsumeToken();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000639 BalancedDelimiterTracker T(*this, tok::l_paren);
640 if (T.expectAndConsume(diag::err_expected_lparen_after,
641 "decltype", tok::r_paren)) {
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000642 return;
643 }
Mike Stump1eb44332009-09-09 15:08:12 +0000644
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000645 // Parse the expression
Mike Stump1eb44332009-09-09 15:08:12 +0000646
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000647 // C++0x [dcl.type.simple]p4:
648 // The operand of the decltype specifier is an unevaluated operand.
649 EnterExpressionEvaluationContext Unevaluated(Actions,
John McCallf312b1e2010-08-26 23:41:50 +0000650 Sema::Unevaluated);
John McCall60d7b3a2010-08-24 06:29:42 +0000651 ExprResult Result = ParseExpression();
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000652 if (Result.isInvalid()) {
653 SkipUntil(tok::r_paren);
654 return;
655 }
Mike Stump1eb44332009-09-09 15:08:12 +0000656
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000657 // Match the ')'
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000658 T.consumeClose();
659 if (T.getCloseLocation().isInvalid())
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000660 return;
661
662 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +0000663 unsigned DiagID;
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000664 // Check for duplicate type specifiers (e.g. "int decltype(a)").
Mike Stump1eb44332009-09-09 15:08:12 +0000665 if (DS.SetTypeSpecType(DeclSpec::TST_decltype, StartLoc, PrevSpec,
John McCallfec54012009-08-03 20:12:06 +0000666 DiagID, Result.release()))
667 Diag(StartLoc, DiagID) << PrevSpec;
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000668}
669
Sean Huntdb5d44b2011-05-19 05:37:45 +0000670void Parser::ParseUnderlyingTypeSpecifier(DeclSpec &DS) {
671 assert(Tok.is(tok::kw___underlying_type) &&
672 "Not an underlying type specifier");
673
674 SourceLocation StartLoc = ConsumeToken();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000675 BalancedDelimiterTracker T(*this, tok::l_paren);
676 if (T.expectAndConsume(diag::err_expected_lparen_after,
677 "__underlying_type", tok::r_paren)) {
Sean Huntdb5d44b2011-05-19 05:37:45 +0000678 return;
679 }
680
681 TypeResult Result = ParseTypeName();
682 if (Result.isInvalid()) {
683 SkipUntil(tok::r_paren);
684 return;
685 }
686
687 // Match the ')'
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000688 T.consumeClose();
689 if (T.getCloseLocation().isInvalid())
Sean Huntdb5d44b2011-05-19 05:37:45 +0000690 return;
691
692 const char *PrevSpec = 0;
693 unsigned DiagID;
Sean Huntca63c202011-05-24 22:41:36 +0000694 if (DS.SetTypeSpecType(DeclSpec::TST_underlyingType, StartLoc, PrevSpec,
Sean Huntdb5d44b2011-05-19 05:37:45 +0000695 DiagID, Result.release()))
696 Diag(StartLoc, DiagID) << PrevSpec;
697}
698
David Blaikie09048df2011-10-25 15:01:20 +0000699/// ParseBaseTypeSpecifier - Parse a C++ base-type-specifier which is either a
700/// class name or decltype-specifier. Note that we only check that the result
701/// names a type; semantic analysis will need to verify that the type names a
702/// class. The result is either a type or null, depending on whether a type
703/// name was found.
Douglas Gregor42a552f2008-11-05 20:51:48 +0000704///
David Blaikie09048df2011-10-25 15:01:20 +0000705/// base-type-specifier: [C++ 10.1]
706/// class-or-decltype
707/// class-or-decltype: [C++ 10.1]
708/// nested-name-specifier[opt] class-name
709/// decltype-specifier
Douglas Gregor42a552f2008-11-05 20:51:48 +0000710/// class-name: [C++ 9.1]
711/// identifier
Douglas Gregor7f43d672009-02-25 23:52:28 +0000712/// simple-template-id
Mike Stump1eb44332009-09-09 15:08:12 +0000713///
David Blaikie09048df2011-10-25 15:01:20 +0000714Parser::TypeResult Parser::ParseBaseTypeSpecifier(SourceLocation &EndLocation,
715 CXXScopeSpec &SS) {
Douglas Gregor7f43d672009-02-25 23:52:28 +0000716 // Check whether we have a template-id that names a type.
717 if (Tok.is(tok::annot_template_id)) {
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +0000718 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregord9b600c2010-01-12 17:52:59 +0000719 if (TemplateId->Kind == TNK_Type_template ||
720 TemplateId->Kind == TNK_Dependent_template_name) {
Douglas Gregor059101f2011-03-02 00:47:37 +0000721 AnnotateTemplateIdTokenAsType();
Douglas Gregor7f43d672009-02-25 23:52:28 +0000722
723 assert(Tok.is(tok::annot_typename) && "template-id -> type failed");
John McCallb3d87482010-08-24 05:47:05 +0000724 ParsedType Type = getTypeAnnotation(Tok);
Douglas Gregor7f43d672009-02-25 23:52:28 +0000725 EndLocation = Tok.getAnnotationEndLoc();
726 ConsumeToken();
Douglas Gregor31a19b62009-04-01 21:51:26 +0000727
728 if (Type)
729 return Type;
730 return true;
Douglas Gregor7f43d672009-02-25 23:52:28 +0000731 }
732
733 // Fall through to produce an error below.
734 }
735
David Blaikie09048df2011-10-25 15:01:20 +0000736 if (Tok.is(tok::kw_decltype)) {
737 // Fake up a Declarator to use with ActOnTypeName.
738 DeclSpec DS(AttrFactory);
739
740 ParseDecltypeSpecifier(DS);
741 EndLocation = DS.getSourceRange().getEnd();
742
743 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
744 return Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
745 }
746
Douglas Gregor42a552f2008-11-05 20:51:48 +0000747 if (Tok.isNot(tok::identifier)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000748 Diag(Tok, diag::err_expected_class_name);
Douglas Gregor31a19b62009-04-01 21:51:26 +0000749 return true;
Douglas Gregor42a552f2008-11-05 20:51:48 +0000750 }
751
Douglas Gregor84d0a192010-01-12 21:28:44 +0000752 IdentifierInfo *Id = Tok.getIdentifierInfo();
753 SourceLocation IdLoc = ConsumeToken();
754
755 if (Tok.is(tok::less)) {
756 // It looks the user intended to write a template-id here, but the
757 // template-name was wrong. Try to fix that.
758 TemplateNameKind TNK = TNK_Type_template;
759 TemplateTy Template;
Douglas Gregor23c94db2010-07-02 17:43:08 +0000760 if (!Actions.DiagnoseUnknownTemplateName(*Id, IdLoc, getCurScope(),
Douglas Gregor059101f2011-03-02 00:47:37 +0000761 &SS, Template, TNK)) {
Douglas Gregor84d0a192010-01-12 21:28:44 +0000762 Diag(IdLoc, diag::err_unknown_template_name)
763 << Id;
764 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000765
Douglas Gregor84d0a192010-01-12 21:28:44 +0000766 if (!Template)
767 return true;
768
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000769 // Form the template name
Douglas Gregor84d0a192010-01-12 21:28:44 +0000770 UnqualifiedId TemplateName;
771 TemplateName.setIdentifier(Id, IdLoc);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000772
Douglas Gregor84d0a192010-01-12 21:28:44 +0000773 // Parse the full template-id, then turn it into a type.
774 if (AnnotateTemplateIdToken(Template, TNK, SS, TemplateName,
775 SourceLocation(), true))
776 return true;
777 if (TNK == TNK_Dependent_template_name)
Douglas Gregor059101f2011-03-02 00:47:37 +0000778 AnnotateTemplateIdTokenAsType();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000779
Douglas Gregor84d0a192010-01-12 21:28:44 +0000780 // If we didn't end up with a typename token, there's nothing more we
781 // can do.
782 if (Tok.isNot(tok::annot_typename))
783 return true;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000784
Douglas Gregor84d0a192010-01-12 21:28:44 +0000785 // Retrieve the type from the annotation token, consume that token, and
786 // return.
787 EndLocation = Tok.getAnnotationEndLoc();
John McCallb3d87482010-08-24 05:47:05 +0000788 ParsedType Type = getTypeAnnotation(Tok);
Douglas Gregor84d0a192010-01-12 21:28:44 +0000789 ConsumeToken();
790 return Type;
791 }
792
Douglas Gregor42a552f2008-11-05 20:51:48 +0000793 // We have an identifier; check whether it is actually a type.
Douglas Gregor059101f2011-03-02 00:47:37 +0000794 ParsedType Type = Actions.getTypeName(*Id, IdLoc, getCurScope(), &SS, true,
Douglas Gregor9e876872011-03-01 18:12:44 +0000795 false, ParsedType(),
796 /*NonTrivialTypeSourceInfo=*/true);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000797 if (!Type) {
Douglas Gregor124b8782010-02-16 19:09:40 +0000798 Diag(IdLoc, diag::err_expected_class_name);
Douglas Gregor31a19b62009-04-01 21:51:26 +0000799 return true;
Douglas Gregor42a552f2008-11-05 20:51:48 +0000800 }
801
802 // Consume the identifier.
Douglas Gregor84d0a192010-01-12 21:28:44 +0000803 EndLocation = IdLoc;
Nick Lewycky56062202010-07-26 16:56:01 +0000804
805 // Fake up a Declarator to use with ActOnTypeName.
John McCall0b7e6782011-03-24 11:26:52 +0000806 DeclSpec DS(AttrFactory);
Nick Lewycky56062202010-07-26 16:56:01 +0000807 DS.SetRangeStart(IdLoc);
808 DS.SetRangeEnd(EndLocation);
Douglas Gregor059101f2011-03-02 00:47:37 +0000809 DS.getTypeSpecScope() = SS;
Nick Lewycky56062202010-07-26 16:56:01 +0000810
811 const char *PrevSpec = 0;
812 unsigned DiagID;
813 DS.SetTypeSpecType(TST_typename, IdLoc, PrevSpec, DiagID, Type);
814
815 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
816 return Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
Douglas Gregor42a552f2008-11-05 20:51:48 +0000817}
818
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000819/// ParseClassSpecifier - Parse a C++ class-specifier [C++ class] or
820/// elaborated-type-specifier [C++ dcl.type.elab]; we can't tell which
821/// until we reach the start of a definition or see a token that
Sebastian Redld9bafa72010-02-03 21:21:43 +0000822/// cannot start a definition. If SuppressDeclarations is true, we do know.
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000823///
824/// class-specifier: [C++ class]
825/// class-head '{' member-specification[opt] '}'
826/// class-head '{' member-specification[opt] '}' attributes[opt]
827/// class-head:
828/// class-key identifier[opt] base-clause[opt]
829/// class-key nested-name-specifier identifier base-clause[opt]
830/// class-key nested-name-specifier[opt] simple-template-id
831/// base-clause[opt]
832/// [GNU] class-key attributes[opt] identifier[opt] base-clause[opt]
Mike Stump1eb44332009-09-09 15:08:12 +0000833/// [GNU] class-key attributes[opt] nested-name-specifier
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000834/// identifier base-clause[opt]
Mike Stump1eb44332009-09-09 15:08:12 +0000835/// [GNU] class-key attributes[opt] nested-name-specifier[opt]
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000836/// simple-template-id base-clause[opt]
837/// class-key:
838/// 'class'
839/// 'struct'
840/// 'union'
841///
842/// elaborated-type-specifier: [C++ dcl.type.elab]
Mike Stump1eb44332009-09-09 15:08:12 +0000843/// class-key ::[opt] nested-name-specifier[opt] identifier
844/// class-key ::[opt] nested-name-specifier[opt] 'template'[opt]
845/// simple-template-id
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000846///
847/// Note that the C++ class-specifier and elaborated-type-specifier,
848/// together, subsume the C99 struct-or-union-specifier:
849///
850/// struct-or-union-specifier: [C99 6.7.2.1]
851/// struct-or-union identifier[opt] '{' struct-contents '}'
852/// struct-or-union identifier
853/// [GNU] struct-or-union attributes[opt] identifier[opt] '{' struct-contents
854/// '}' attributes[opt]
855/// [GNU] struct-or-union attributes[opt] identifier
856/// struct-or-union:
857/// 'struct'
858/// 'union'
Chris Lattner4c97d762009-04-12 21:49:30 +0000859void Parser::ParseClassSpecifier(tok::TokenKind TagTokKind,
860 SourceLocation StartLoc, DeclSpec &DS,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000861 const ParsedTemplateInfo &TemplateInfo,
Sebastian Redld9bafa72010-02-03 21:21:43 +0000862 AccessSpecifier AS, bool SuppressDeclarations){
Chris Lattner4c97d762009-04-12 21:49:30 +0000863 DeclSpec::TST TagType;
864 if (TagTokKind == tok::kw_struct)
865 TagType = DeclSpec::TST_struct;
866 else if (TagTokKind == tok::kw_class)
867 TagType = DeclSpec::TST_class;
868 else {
869 assert(TagTokKind == tok::kw_union && "Not a class specifier");
870 TagType = DeclSpec::TST_union;
871 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000872
Douglas Gregor374929f2009-09-18 15:37:17 +0000873 if (Tok.is(tok::code_completion)) {
874 // Code completion for a struct, class, or union name.
Douglas Gregor23c94db2010-07-02 17:43:08 +0000875 Actions.CodeCompleteTag(getCurScope(), TagType);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000876 return cutOffParsing();
Douglas Gregor374929f2009-09-18 15:37:17 +0000877 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000878
Chandler Carruth926c4b42010-06-28 08:39:25 +0000879 // C++03 [temp.explicit] 14.7.2/8:
880 // The usual access checking rules do not apply to names used to specify
881 // explicit instantiations.
882 //
883 // As an extension we do not perform access checking on the names used to
884 // specify explicit specializations either. This is important to allow
885 // specializing traits classes for private types.
886 bool SuppressingAccessChecks = false;
887 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation ||
888 TemplateInfo.Kind == ParsedTemplateInfo::ExplicitSpecialization) {
889 Actions.ActOnStartSuppressingAccessChecks();
890 SuppressingAccessChecks = true;
891 }
892
John McCall0b7e6782011-03-24 11:26:52 +0000893 ParsedAttributes attrs(AttrFactory);
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000894 // If attributes exist after tag, parse them.
895 if (Tok.is(tok::kw___attribute))
John McCall7f040a92010-12-24 02:08:15 +0000896 ParseGNUAttributes(attrs);
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000897
Steve Narofff59e17e2008-12-24 20:59:21 +0000898 // If declspecs exist after tag, parse them.
John McCallb1d397c2010-08-05 17:13:11 +0000899 while (Tok.is(tok::kw___declspec))
John McCall7f040a92010-12-24 02:08:15 +0000900 ParseMicrosoftDeclSpec(attrs);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000901
Sean Huntbbd37c62009-11-21 08:43:09 +0000902 // If C++0x attributes exist here, parse them.
903 // FIXME: Are we consistent with the ordering of parsing of different
904 // styles of attributes?
John McCall7f040a92010-12-24 02:08:15 +0000905 MaybeParseCXX0XAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +0000906
John Wiegley20c0da72011-04-27 23:09:49 +0000907 if (TagType == DeclSpec::TST_struct &&
Douglas Gregorb467cda2011-04-29 15:31:39 +0000908 !Tok.is(tok::identifier) &&
909 Tok.getIdentifierInfo() &&
910 (Tok.is(tok::kw___is_arithmetic) ||
911 Tok.is(tok::kw___is_convertible) ||
John Wiegley20c0da72011-04-27 23:09:49 +0000912 Tok.is(tok::kw___is_empty) ||
Douglas Gregorb467cda2011-04-29 15:31:39 +0000913 Tok.is(tok::kw___is_floating_point) ||
914 Tok.is(tok::kw___is_function) ||
John Wiegley20c0da72011-04-27 23:09:49 +0000915 Tok.is(tok::kw___is_fundamental) ||
Douglas Gregorb467cda2011-04-29 15:31:39 +0000916 Tok.is(tok::kw___is_integral) ||
917 Tok.is(tok::kw___is_member_function_pointer) ||
918 Tok.is(tok::kw___is_member_pointer) ||
919 Tok.is(tok::kw___is_pod) ||
920 Tok.is(tok::kw___is_pointer) ||
921 Tok.is(tok::kw___is_same) ||
Douglas Gregor877222e2011-04-29 01:38:03 +0000922 Tok.is(tok::kw___is_scalar) ||
Douglas Gregorb467cda2011-04-29 15:31:39 +0000923 Tok.is(tok::kw___is_signed) ||
924 Tok.is(tok::kw___is_unsigned) ||
925 Tok.is(tok::kw___is_void))) {
Douglas Gregor68876142011-07-30 07:01:49 +0000926 // GNU libstdc++ 4.2 and libc++ use certain intrinsic names as the
Douglas Gregorb467cda2011-04-29 15:31:39 +0000927 // name of struct templates, but some are keywords in GCC >= 4.3
928 // and Clang. Therefore, when we see the token sequence "struct
929 // X", make X into a normal identifier rather than a keyword, to
930 // allow libstdc++ 4.2 and libc++ to work properly.
Argyrios Kyrtzidis646395b2010-08-11 22:55:12 +0000931 Tok.getIdentifierInfo()->RevertTokenIDToIdentifier();
Douglas Gregorb117a602009-09-04 05:53:02 +0000932 Tok.setKind(tok::identifier);
933 }
Mike Stump1eb44332009-09-09 15:08:12 +0000934
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000935 // Parse the (optional) nested-name-specifier.
John McCallaa87d332009-12-12 11:40:51 +0000936 CXXScopeSpec &SS = DS.getTypeSpecScope();
Chris Lattner08d92ec2009-12-10 00:32:41 +0000937 if (getLang().CPlusPlus) {
938 // "FOO : BAR" is not a potential typo for "FOO::BAR".
939 ColonProtectionRAIIObject X(*this);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000940
John McCallb3d87482010-08-24 05:47:05 +0000941 if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(), true))
John McCall207014e2010-07-30 06:26:29 +0000942 DS.SetTypeSpecError();
John McCall9ba61662010-02-26 08:45:28 +0000943 if (SS.isSet())
Chris Lattner08d92ec2009-12-10 00:32:41 +0000944 if (Tok.isNot(tok::identifier) && Tok.isNot(tok::annot_template_id))
945 Diag(Tok, diag::err_expected_ident);
946 }
Douglas Gregorcc636682009-02-17 23:15:12 +0000947
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000948 TemplateParameterLists *TemplateParams = TemplateInfo.TemplateParams;
949
Douglas Gregorcc636682009-02-17 23:15:12 +0000950 // Parse the (optional) class name or simple-template-id.
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000951 IdentifierInfo *Name = 0;
952 SourceLocation NameLoc;
Douglas Gregor39a8de12009-02-25 19:37:18 +0000953 TemplateIdAnnotation *TemplateId = 0;
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000954 if (Tok.is(tok::identifier)) {
955 Name = Tok.getIdentifierInfo();
956 NameLoc = ConsumeToken();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000957
Douglas Gregor5ee37342010-05-30 22:30:21 +0000958 if (Tok.is(tok::less) && getLang().CPlusPlus) {
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000959 // The name was supposed to refer to a template, but didn't.
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000960 // Eat the template argument list and try to continue parsing this as
961 // a class (or template thereof).
962 TemplateArgList TemplateArgs;
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000963 SourceLocation LAngleLoc, RAngleLoc;
Douglas Gregor059101f2011-03-02 00:47:37 +0000964 if (ParseTemplateIdAfterTemplateName(TemplateTy(), NameLoc, SS,
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000965 true, LAngleLoc,
Douglas Gregor314b97f2009-11-10 19:49:08 +0000966 TemplateArgs, RAngleLoc)) {
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000967 // We couldn't parse the template argument list at all, so don't
968 // try to give any location information for the list.
969 LAngleLoc = RAngleLoc = SourceLocation();
970 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000971
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000972 Diag(NameLoc, diag::err_explicit_spec_non_template)
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000973 << (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation)
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000974 << (TagType == DeclSpec::TST_class? 0
975 : TagType == DeclSpec::TST_struct? 1
976 : 2)
977 << Name
978 << SourceRange(LAngleLoc, RAngleLoc);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000979
980 // Strip off the last template parameter list if it was empty, since
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000981 // we've removed its template argument list.
982 if (TemplateParams && TemplateInfo.LastParameterListWasEmpty) {
983 if (TemplateParams && TemplateParams->size() > 1) {
984 TemplateParams->pop_back();
985 } else {
986 TemplateParams = 0;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000987 const_cast<ParsedTemplateInfo&>(TemplateInfo).Kind
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000988 = ParsedTemplateInfo::NonTemplate;
989 }
990 } else if (TemplateInfo.Kind
991 == ParsedTemplateInfo::ExplicitInstantiation) {
992 // Pretend this is just a forward declaration.
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000993 TemplateParams = 0;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000994 const_cast<ParsedTemplateInfo&>(TemplateInfo).Kind
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000995 = ParsedTemplateInfo::NonTemplate;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000996 const_cast<ParsedTemplateInfo&>(TemplateInfo).TemplateLoc
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000997 = SourceLocation();
998 const_cast<ParsedTemplateInfo&>(TemplateInfo).ExternLoc
999 = SourceLocation();
Douglas Gregor2cc782f2009-10-30 21:46:58 +00001000 }
Douglas Gregor2cc782f2009-10-30 21:46:58 +00001001 }
Douglas Gregor39a8de12009-02-25 19:37:18 +00001002 } else if (Tok.is(tok::annot_template_id)) {
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +00001003 TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregor39a8de12009-02-25 19:37:18 +00001004 NameLoc = ConsumeToken();
Douglas Gregorcc636682009-02-17 23:15:12 +00001005
Douglas Gregor059101f2011-03-02 00:47:37 +00001006 if (TemplateId->Kind != TNK_Type_template &&
1007 TemplateId->Kind != TNK_Dependent_template_name) {
Douglas Gregor39a8de12009-02-25 19:37:18 +00001008 // The template-name in the simple-template-id refers to
1009 // something other than a class template. Give an appropriate
1010 // error message and skip to the ';'.
1011 SourceRange Range(NameLoc);
1012 if (SS.isNotEmpty())
1013 Range.setBegin(SS.getBeginLoc());
Douglas Gregorcc636682009-02-17 23:15:12 +00001014
Douglas Gregor39a8de12009-02-25 19:37:18 +00001015 Diag(TemplateId->LAngleLoc, diag::err_template_spec_syntax_non_template)
1016 << Name << static_cast<int>(TemplateId->Kind) << Range;
Mike Stump1eb44332009-09-09 15:08:12 +00001017
Douglas Gregor39a8de12009-02-25 19:37:18 +00001018 DS.SetTypeSpecError();
1019 SkipUntil(tok::semi, false, true);
Chandler Carruth926c4b42010-06-28 08:39:25 +00001020 if (SuppressingAccessChecks)
1021 Actions.ActOnStopSuppressingAccessChecks();
1022
Douglas Gregor39a8de12009-02-25 19:37:18 +00001023 return;
Douglas Gregorcc636682009-02-17 23:15:12 +00001024 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001025 }
1026
Chandler Carruth926c4b42010-06-28 08:39:25 +00001027 // As soon as we're finished parsing the class's template-id, turn access
1028 // checking back on.
1029 if (SuppressingAccessChecks)
1030 Actions.ActOnStopSuppressingAccessChecks();
1031
John McCall67d1a672009-08-06 02:15:43 +00001032 // There are four options here. If we have 'struct foo;', then this
1033 // is either a forward declaration or a friend declaration, which
Anders Carlssoncc54d592011-01-22 16:56:46 +00001034 // have to be treated differently. If we have 'struct foo {...',
Anders Carlsson1d209272011-03-25 14:55:14 +00001035 // 'struct foo :...' or 'struct foo final[opt]' then this is a
Anders Carlssoncc54d592011-01-22 16:56:46 +00001036 // definition. Otherwise we have something like 'struct foo xyz', a reference.
Sebastian Redld9bafa72010-02-03 21:21:43 +00001037 // However, in some contexts, things look like declarations but are just
1038 // references, e.g.
1039 // new struct s;
1040 // or
1041 // &T::operator struct s;
1042 // For these, SuppressDeclarations is true.
John McCallf312b1e2010-08-26 23:41:50 +00001043 Sema::TagUseKind TUK;
Sebastian Redld9bafa72010-02-03 21:21:43 +00001044 if (SuppressDeclarations)
John McCallf312b1e2010-08-26 23:41:50 +00001045 TUK = Sema::TUK_Reference;
Anders Carlssoncc54d592011-01-22 16:56:46 +00001046 else if (Tok.is(tok::l_brace) ||
1047 (getLang().CPlusPlus && Tok.is(tok::colon)) ||
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001048 isCXX0XFinalKeyword()) {
Douglas Gregord85bea22009-09-26 06:47:28 +00001049 if (DS.isFriendSpecified()) {
1050 // C++ [class.friend]p2:
1051 // A class shall not be defined in a friend declaration.
1052 Diag(Tok.getLocation(), diag::err_friend_decl_defines_class)
1053 << SourceRange(DS.getFriendSpecLoc());
1054
1055 // Skip everything up to the semicolon, so that this looks like a proper
1056 // friend class (or template thereof) declaration.
1057 SkipUntil(tok::semi, true, true);
John McCallf312b1e2010-08-26 23:41:50 +00001058 TUK = Sema::TUK_Friend;
Douglas Gregord85bea22009-09-26 06:47:28 +00001059 } else {
1060 // Okay, this is a class definition.
John McCallf312b1e2010-08-26 23:41:50 +00001061 TUK = Sema::TUK_Definition;
Douglas Gregord85bea22009-09-26 06:47:28 +00001062 }
1063 } else if (Tok.is(tok::semi))
John McCallf312b1e2010-08-26 23:41:50 +00001064 TUK = DS.isFriendSpecified() ? Sema::TUK_Friend : Sema::TUK_Declaration;
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001065 else
John McCallf312b1e2010-08-26 23:41:50 +00001066 TUK = Sema::TUK_Reference;
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001067
John McCall207014e2010-07-30 06:26:29 +00001068 if (!Name && !TemplateId && (DS.getTypeSpecType() == DeclSpec::TST_error ||
John McCallf312b1e2010-08-26 23:41:50 +00001069 TUK != Sema::TUK_Definition)) {
John McCall207014e2010-07-30 06:26:29 +00001070 if (DS.getTypeSpecType() != DeclSpec::TST_error) {
1071 // We have a declaration or reference to an anonymous class.
1072 Diag(StartLoc, diag::err_anon_type_definition)
1073 << DeclSpec::getSpecifierName(TagType);
1074 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001075
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001076 SkipUntil(tok::comma, true);
1077 return;
1078 }
1079
Douglas Gregorddc29e12009-02-06 22:42:48 +00001080 // Create the tag portion of the class or class template.
John McCalld226f652010-08-21 09:40:31 +00001081 DeclResult TagOrTempResult = true; // invalid
1082 TypeResult TypeResult = true; // invalid
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001083
Douglas Gregor402abb52009-05-28 23:31:59 +00001084 bool Owned = false;
John McCallf1bbbb42009-09-04 01:14:41 +00001085 if (TemplateId) {
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001086 // Explicit specialization, class template partial specialization,
1087 // or explicit instantiation.
Mike Stump1eb44332009-09-09 15:08:12 +00001088 ASTTemplateArgsPtr TemplateArgsPtr(Actions,
Douglas Gregor39a8de12009-02-25 19:37:18 +00001089 TemplateId->getTemplateArgs(),
Douglas Gregor39a8de12009-02-25 19:37:18 +00001090 TemplateId->NumArgs);
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001091 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallf312b1e2010-08-26 23:41:50 +00001092 TUK == Sema::TUK_Declaration) {
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001093 // This is an explicit instantiation of a class template.
1094 TagOrTempResult
Douglas Gregor23c94db2010-07-02 17:43:08 +00001095 = Actions.ActOnExplicitInstantiation(getCurScope(),
Douglas Gregor45f96552009-09-04 06:33:52 +00001096 TemplateInfo.ExternLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001097 TemplateInfo.TemplateLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001098 TagType,
Mike Stump1eb44332009-09-09 15:08:12 +00001099 StartLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001100 SS,
John McCall2b5289b2010-08-23 07:28:44 +00001101 TemplateId->Template,
Mike Stump1eb44332009-09-09 15:08:12 +00001102 TemplateId->TemplateNameLoc,
1103 TemplateId->LAngleLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001104 TemplateArgsPtr,
Mike Stump1eb44332009-09-09 15:08:12 +00001105 TemplateId->RAngleLoc,
John McCall7f040a92010-12-24 02:08:15 +00001106 attrs.getList());
John McCall74256f52010-04-14 00:24:33 +00001107
1108 // Friend template-ids are treated as references unless
1109 // they have template headers, in which case they're ill-formed
1110 // (FIXME: "template <class T> friend class A<T>::B<int>;").
1111 // We diagnose this error in ActOnClassTemplateSpecialization.
John McCallf312b1e2010-08-26 23:41:50 +00001112 } else if (TUK == Sema::TUK_Reference ||
1113 (TUK == Sema::TUK_Friend &&
John McCall74256f52010-04-14 00:24:33 +00001114 TemplateInfo.Kind == ParsedTemplateInfo::NonTemplate)) {
Douglas Gregor059101f2011-03-02 00:47:37 +00001115 TypeResult = Actions.ActOnTagTemplateIdType(TUK, TagType,
1116 StartLoc,
1117 TemplateId->SS,
1118 TemplateId->Template,
1119 TemplateId->TemplateNameLoc,
1120 TemplateId->LAngleLoc,
1121 TemplateArgsPtr,
1122 TemplateId->RAngleLoc);
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001123 } else {
1124 // This is an explicit specialization or a class template
1125 // partial specialization.
1126 TemplateParameterLists FakedParamLists;
1127
1128 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation) {
1129 // This looks like an explicit instantiation, because we have
1130 // something like
1131 //
1132 // template class Foo<X>
1133 //
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001134 // but it actually has a definition. Most likely, this was
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001135 // meant to be an explicit specialization, but the user forgot
1136 // the '<>' after 'template'.
John McCallf312b1e2010-08-26 23:41:50 +00001137 assert(TUK == Sema::TUK_Definition && "Expected a definition here");
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001138
Mike Stump1eb44332009-09-09 15:08:12 +00001139 SourceLocation LAngleLoc
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001140 = PP.getLocForEndOfToken(TemplateInfo.TemplateLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00001141 Diag(TemplateId->TemplateNameLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001142 diag::err_explicit_instantiation_with_definition)
1143 << SourceRange(TemplateInfo.TemplateLoc)
Douglas Gregor849b2432010-03-31 17:46:05 +00001144 << FixItHint::CreateInsertion(LAngleLoc, "<>");
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001145
1146 // Create a fake template parameter list that contains only
1147 // "template<>", so that we treat this construct as a class
1148 // template specialization.
1149 FakedParamLists.push_back(
Mike Stump1eb44332009-09-09 15:08:12 +00001150 Actions.ActOnTemplateParameterList(0, SourceLocation(),
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001151 TemplateInfo.TemplateLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001152 LAngleLoc,
1153 0, 0,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001154 LAngleLoc));
1155 TemplateParams = &FakedParamLists;
1156 }
1157
1158 // Build the class template specialization.
1159 TagOrTempResult
Douglas Gregor23c94db2010-07-02 17:43:08 +00001160 = Actions.ActOnClassTemplateSpecialization(getCurScope(), TagType, TUK,
Douglas Gregord023aec2011-09-09 20:53:38 +00001161 StartLoc, DS.getModulePrivateSpecLoc(), SS,
John McCall2b5289b2010-08-23 07:28:44 +00001162 TemplateId->Template,
Mike Stump1eb44332009-09-09 15:08:12 +00001163 TemplateId->TemplateNameLoc,
1164 TemplateId->LAngleLoc,
Douglas Gregor39a8de12009-02-25 19:37:18 +00001165 TemplateArgsPtr,
Mike Stump1eb44332009-09-09 15:08:12 +00001166 TemplateId->RAngleLoc,
John McCall7f040a92010-12-24 02:08:15 +00001167 attrs.getList(),
John McCallf312b1e2010-08-26 23:41:50 +00001168 MultiTemplateParamsArg(Actions,
Douglas Gregorcc636682009-02-17 23:15:12 +00001169 TemplateParams? &(*TemplateParams)[0] : 0,
1170 TemplateParams? TemplateParams->size() : 0));
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001171 }
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001172 } else if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallf312b1e2010-08-26 23:41:50 +00001173 TUK == Sema::TUK_Declaration) {
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001174 // Explicit instantiation of a member of a class template
1175 // specialization, e.g.,
1176 //
1177 // template struct Outer<int>::Inner;
1178 //
1179 TagOrTempResult
Douglas Gregor23c94db2010-07-02 17:43:08 +00001180 = Actions.ActOnExplicitInstantiation(getCurScope(),
Douglas Gregor45f96552009-09-04 06:33:52 +00001181 TemplateInfo.ExternLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001182 TemplateInfo.TemplateLoc,
1183 TagType, StartLoc, SS, Name,
John McCall7f040a92010-12-24 02:08:15 +00001184 NameLoc, attrs.getList());
John McCall9a34edb2010-10-19 01:40:49 +00001185 } else if (TUK == Sema::TUK_Friend &&
1186 TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate) {
1187 TagOrTempResult =
1188 Actions.ActOnTemplatedFriendTag(getCurScope(), DS.getFriendSpecLoc(),
1189 TagType, StartLoc, SS,
John McCall7f040a92010-12-24 02:08:15 +00001190 Name, NameLoc, attrs.getList(),
John McCall9a34edb2010-10-19 01:40:49 +00001191 MultiTemplateParamsArg(Actions,
1192 TemplateParams? &(*TemplateParams)[0] : 0,
1193 TemplateParams? TemplateParams->size() : 0));
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001194 } else {
1195 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallf312b1e2010-08-26 23:41:50 +00001196 TUK == Sema::TUK_Definition) {
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001197 // FIXME: Diagnose this particular error.
1198 }
1199
John McCallc4e70192009-09-11 04:59:25 +00001200 bool IsDependent = false;
1201
John McCalla25c4082010-10-19 18:40:57 +00001202 // Don't pass down template parameter lists if this is just a tag
1203 // reference. For example, we don't need the template parameters here:
1204 // template <class T> class A *makeA(T t);
1205 MultiTemplateParamsArg TParams;
1206 if (TUK != Sema::TUK_Reference && TemplateParams)
1207 TParams =
1208 MultiTemplateParamsArg(&(*TemplateParams)[0], TemplateParams->size());
1209
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001210 // Declaration or definition of a class type
John McCall9a34edb2010-10-19 01:40:49 +00001211 TagOrTempResult = Actions.ActOnTag(getCurScope(), TagType, TUK, StartLoc,
John McCall7f040a92010-12-24 02:08:15 +00001212 SS, Name, NameLoc, attrs.getList(), AS,
Douglas Gregore7612302011-09-09 19:05:14 +00001213 DS.getModulePrivateSpecLoc(),
John McCalla25c4082010-10-19 18:40:57 +00001214 TParams, Owned, IsDependent, false,
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +00001215 false, clang::TypeResult());
John McCallc4e70192009-09-11 04:59:25 +00001216
1217 // If ActOnTag said the type was dependent, try again with the
1218 // less common call.
John McCall9a34edb2010-10-19 01:40:49 +00001219 if (IsDependent) {
1220 assert(TUK == Sema::TUK_Reference || TUK == Sema::TUK_Friend);
Douglas Gregor23c94db2010-07-02 17:43:08 +00001221 TypeResult = Actions.ActOnDependentTag(getCurScope(), TagType, TUK,
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001222 SS, Name, StartLoc, NameLoc);
John McCall9a34edb2010-10-19 01:40:49 +00001223 }
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001224 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001225
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001226 // If there is a body, parse it and inform the actions module.
John McCallf312b1e2010-08-26 23:41:50 +00001227 if (TUK == Sema::TUK_Definition) {
John McCallbd0dfa52009-12-19 21:48:58 +00001228 assert(Tok.is(tok::l_brace) ||
Anders Carlssoncc54d592011-01-22 16:56:46 +00001229 (getLang().CPlusPlus && Tok.is(tok::colon)) ||
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001230 isCXX0XFinalKeyword());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001231 if (getLang().CPlusPlus)
Douglas Gregor212e81c2009-03-25 00:13:59 +00001232 ParseCXXMemberSpecification(StartLoc, TagType, TagOrTempResult.get());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001233 else
Douglas Gregor212e81c2009-03-25 00:13:59 +00001234 ParseStructUnionBody(StartLoc, TagType, TagOrTempResult.get());
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001235 }
1236
John McCallb3d87482010-08-24 05:47:05 +00001237 const char *PrevSpec = 0;
1238 unsigned DiagID;
1239 bool Result;
John McCallc4e70192009-09-11 04:59:25 +00001240 if (!TypeResult.isInvalid()) {
Abramo Bagnara0daaf322011-03-16 20:16:18 +00001241 Result = DS.SetTypeSpecType(DeclSpec::TST_typename, StartLoc,
1242 NameLoc.isValid() ? NameLoc : StartLoc,
John McCallb3d87482010-08-24 05:47:05 +00001243 PrevSpec, DiagID, TypeResult.get());
John McCallc4e70192009-09-11 04:59:25 +00001244 } else if (!TagOrTempResult.isInvalid()) {
Abramo Bagnara0daaf322011-03-16 20:16:18 +00001245 Result = DS.SetTypeSpecType(TagType, StartLoc,
1246 NameLoc.isValid() ? NameLoc : StartLoc,
1247 PrevSpec, DiagID, TagOrTempResult.get(), Owned);
John McCallc4e70192009-09-11 04:59:25 +00001248 } else {
Douglas Gregorddc29e12009-02-06 22:42:48 +00001249 DS.SetTypeSpecError();
Anders Carlsson66e99772009-05-11 22:27:47 +00001250 return;
1251 }
Mike Stump1eb44332009-09-09 15:08:12 +00001252
John McCallb3d87482010-08-24 05:47:05 +00001253 if (Result)
John McCallfec54012009-08-03 20:12:06 +00001254 Diag(StartLoc, DiagID) << PrevSpec;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001255
Chris Lattner4ed5d912010-02-02 01:23:29 +00001256 // At this point, we've successfully parsed a class-specifier in 'definition'
1257 // form (e.g. "struct foo { int x; }". While we could just return here, we're
1258 // going to look at what comes after it to improve error recovery. If an
1259 // impossible token occurs next, we assume that the programmer forgot a ; at
1260 // the end of the declaration and recover that way.
1261 //
1262 // This switch enumerates the valid "follow" set for definition.
John McCallf312b1e2010-08-26 23:41:50 +00001263 if (TUK == Sema::TUK_Definition) {
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001264 bool ExpectedSemi = true;
Chris Lattner4ed5d912010-02-02 01:23:29 +00001265 switch (Tok.getKind()) {
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001266 default: break;
Chris Lattner4ed5d912010-02-02 01:23:29 +00001267 case tok::semi: // struct foo {...} ;
Chris Lattner99c95202010-02-02 17:32:27 +00001268 case tok::star: // struct foo {...} * P;
1269 case tok::amp: // struct foo {...} & R = ...
1270 case tok::identifier: // struct foo {...} V ;
1271 case tok::r_paren: //(struct foo {...} ) {4}
1272 case tok::annot_cxxscope: // struct foo {...} a:: b;
1273 case tok::annot_typename: // struct foo {...} a ::b;
1274 case tok::annot_template_id: // struct foo {...} a<int> ::b;
Chris Lattnerc2e1c1a2010-02-03 20:41:24 +00001275 case tok::l_paren: // struct foo {...} ( x);
Chris Lattner16acfee2010-02-03 01:45:03 +00001276 case tok::comma: // __builtin_offsetof(struct foo{...} ,
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001277 ExpectedSemi = false;
1278 break;
1279 // Type qualifiers
1280 case tok::kw_const: // struct foo {...} const x;
1281 case tok::kw_volatile: // struct foo {...} volatile x;
1282 case tok::kw_restrict: // struct foo {...} restrict x;
1283 case tok::kw_inline: // struct foo {...} inline foo() {};
Chris Lattner99c95202010-02-02 17:32:27 +00001284 // Storage-class specifiers
1285 case tok::kw_static: // struct foo {...} static x;
1286 case tok::kw_extern: // struct foo {...} extern x;
1287 case tok::kw_typedef: // struct foo {...} typedef x;
1288 case tok::kw_register: // struct foo {...} register x;
1289 case tok::kw_auto: // struct foo {...} auto x;
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001290 case tok::kw_mutable: // struct foo {...} mutable x;
1291 case tok::kw_constexpr: // struct foo {...} constexpr x;
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001292 // As shown above, type qualifiers and storage class specifiers absolutely
1293 // can occur after class specifiers according to the grammar. However,
Chris Lattnerfc8f0e12011-04-15 05:22:18 +00001294 // almost no one actually writes code like this. If we see one of these,
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001295 // it is much more likely that someone missed a semi colon and the
1296 // type/storage class specifier we're seeing is part of the *next*
1297 // intended declaration, as in:
1298 //
1299 // struct foo { ... }
1300 // typedef int X;
1301 //
1302 // We'd really like to emit a missing semicolon error instead of emitting
1303 // an error on the 'int' saying that you can't have two type specifiers in
1304 // the same declaration of X. Because of this, we look ahead past this
1305 // token to see if it's a type specifier. If so, we know the code is
1306 // otherwise invalid, so we can produce the expected semi error.
1307 if (!isKnownToBeTypeSpecifier(NextToken()))
1308 ExpectedSemi = false;
Chris Lattner4ed5d912010-02-02 01:23:29 +00001309 break;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001310
1311 case tok::r_brace: // struct bar { struct foo {...} }
Chris Lattner4ed5d912010-02-02 01:23:29 +00001312 // Missing ';' at end of struct is accepted as an extension in C mode.
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001313 if (!getLang().CPlusPlus)
1314 ExpectedSemi = false;
1315 break;
1316 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001317
Richard Smithcf6b0a22011-07-14 21:35:26 +00001318 // C++ [temp]p3 In a template-declaration which defines a class, no
1319 // declarator is permitted.
1320 if (TemplateInfo.Kind)
1321 ExpectedSemi = true;
1322
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001323 if (ExpectedSemi) {
Chris Lattner4ed5d912010-02-02 01:23:29 +00001324 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_tagdecl,
1325 TagType == DeclSpec::TST_class ? "class"
1326 : TagType == DeclSpec::TST_struct? "struct" : "union");
1327 // Push this token back into the preprocessor and change our current token
1328 // to ';' so that the rest of the code recovers as though there were an
1329 // ';' after the definition.
1330 PP.EnterToken(Tok);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001331 Tok.setKind(tok::semi);
Chris Lattner4ed5d912010-02-02 01:23:29 +00001332 }
1333 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001334}
1335
Mike Stump1eb44332009-09-09 15:08:12 +00001336/// ParseBaseClause - Parse the base-clause of a C++ class [C++ class.derived].
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001337///
1338/// base-clause : [C++ class.derived]
1339/// ':' base-specifier-list
1340/// base-specifier-list:
1341/// base-specifier '...'[opt]
1342/// base-specifier-list ',' base-specifier '...'[opt]
John McCalld226f652010-08-21 09:40:31 +00001343void Parser::ParseBaseClause(Decl *ClassDecl) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001344 assert(Tok.is(tok::colon) && "Not a base clause");
1345 ConsumeToken();
1346
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001347 // Build up an array of parsed base specifiers.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001348 SmallVector<CXXBaseSpecifier *, 8> BaseInfo;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001349
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001350 while (true) {
1351 // Parse a base-specifier.
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001352 BaseResult Result = ParseBaseSpecifier(ClassDecl);
Douglas Gregor5ac8aff2009-01-26 22:44:13 +00001353 if (Result.isInvalid()) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001354 // Skip the rest of this base specifier, up until the comma or
1355 // opening brace.
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001356 SkipUntil(tok::comma, tok::l_brace, true, true);
1357 } else {
1358 // Add this to our array of base specifiers.
Douglas Gregor5ac8aff2009-01-26 22:44:13 +00001359 BaseInfo.push_back(Result.get());
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001360 }
1361
1362 // If the next token is a comma, consume it and keep reading
1363 // base-specifiers.
1364 if (Tok.isNot(tok::comma)) break;
Mike Stump1eb44332009-09-09 15:08:12 +00001365
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001366 // Consume the comma.
1367 ConsumeToken();
1368 }
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001369
1370 // Attach the base specifiers
Jay Foadbeaaccd2009-05-21 09:52:38 +00001371 Actions.ActOnBaseSpecifiers(ClassDecl, BaseInfo.data(), BaseInfo.size());
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001372}
1373
1374/// ParseBaseSpecifier - Parse a C++ base-specifier. A base-specifier is
1375/// one entry in the base class list of a class specifier, for example:
1376/// class foo : public bar, virtual private baz {
1377/// 'public bar' and 'virtual private baz' are each base-specifiers.
1378///
1379/// base-specifier: [C++ class.derived]
1380/// ::[opt] nested-name-specifier[opt] class-name
1381/// 'virtual' access-specifier[opt] ::[opt] nested-name-specifier[opt]
David Blaikie09048df2011-10-25 15:01:20 +00001382/// base-type-specifier
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001383/// access-specifier 'virtual'[opt] ::[opt] nested-name-specifier[opt]
David Blaikie09048df2011-10-25 15:01:20 +00001384/// base-type-specifier
John McCalld226f652010-08-21 09:40:31 +00001385Parser::BaseResult Parser::ParseBaseSpecifier(Decl *ClassDecl) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001386 bool IsVirtual = false;
1387 SourceLocation StartLoc = Tok.getLocation();
1388
1389 // Parse the 'virtual' keyword.
1390 if (Tok.is(tok::kw_virtual)) {
1391 ConsumeToken();
1392 IsVirtual = true;
1393 }
1394
1395 // Parse an (optional) access specifier.
1396 AccessSpecifier Access = getAccessSpecifierIfPresent();
John McCall92f88312010-01-23 00:46:32 +00001397 if (Access != AS_none)
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001398 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001399
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001400 // Parse the 'virtual' keyword (again!), in case it came after the
1401 // access specifier.
1402 if (Tok.is(tok::kw_virtual)) {
1403 SourceLocation VirtualLoc = ConsumeToken();
1404 if (IsVirtual) {
1405 // Complain about duplicate 'virtual'
Chris Lattner1ab3b962008-11-18 07:48:38 +00001406 Diag(VirtualLoc, diag::err_dup_virtual)
Douglas Gregor849b2432010-03-31 17:46:05 +00001407 << FixItHint::CreateRemoval(VirtualLoc);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001408 }
1409
1410 IsVirtual = true;
1411 }
1412
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001413 // Parse optional '::' and optional nested-name-specifier.
1414 CXXScopeSpec SS;
John McCallb3d87482010-08-24 05:47:05 +00001415 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), /*EnteringContext=*/false);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001416
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001417 // The location of the base class itself.
1418 SourceLocation BaseLoc = Tok.getLocation();
Douglas Gregor42a552f2008-11-05 20:51:48 +00001419
1420 // Parse the class-name.
Douglas Gregor7f43d672009-02-25 23:52:28 +00001421 SourceLocation EndLocation;
David Blaikie09048df2011-10-25 15:01:20 +00001422 TypeResult BaseType = ParseBaseTypeSpecifier(EndLocation, SS);
Douglas Gregor31a19b62009-04-01 21:51:26 +00001423 if (BaseType.isInvalid())
Douglas Gregor42a552f2008-11-05 20:51:48 +00001424 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001425
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001426 // Parse the optional ellipsis (for a pack expansion). The ellipsis is
1427 // actually part of the base-specifier-list grammar productions, but we
1428 // parse it here for convenience.
1429 SourceLocation EllipsisLoc;
1430 if (Tok.is(tok::ellipsis))
1431 EllipsisLoc = ConsumeToken();
1432
Mike Stump1eb44332009-09-09 15:08:12 +00001433 // Find the complete source range for the base-specifier.
Douglas Gregor7f43d672009-02-25 23:52:28 +00001434 SourceRange Range(StartLoc, EndLocation);
Mike Stump1eb44332009-09-09 15:08:12 +00001435
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001436 // Notify semantic analysis that we have parsed a complete
1437 // base-specifier.
Sebastian Redla55e52c2008-11-25 22:21:31 +00001438 return Actions.ActOnBaseSpecifier(ClassDecl, Range, IsVirtual, Access,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001439 BaseType.get(), BaseLoc, EllipsisLoc);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001440}
1441
1442/// getAccessSpecifierIfPresent - Determine whether the next token is
1443/// a C++ access-specifier.
1444///
1445/// access-specifier: [C++ class.derived]
1446/// 'private'
1447/// 'protected'
1448/// 'public'
Mike Stump1eb44332009-09-09 15:08:12 +00001449AccessSpecifier Parser::getAccessSpecifierIfPresent() const {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001450 switch (Tok.getKind()) {
1451 default: return AS_none;
1452 case tok::kw_private: return AS_private;
1453 case tok::kw_protected: return AS_protected;
1454 case tok::kw_public: return AS_public;
1455 }
1456}
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001457
Eli Friedmand33133c2009-07-22 21:45:50 +00001458void Parser::HandleMemberFunctionDefaultArgs(Declarator& DeclaratorInfo,
John McCalld226f652010-08-21 09:40:31 +00001459 Decl *ThisDecl) {
Eli Friedmand33133c2009-07-22 21:45:50 +00001460 // We just declared a member function. If this member function
1461 // has any default arguments, we'll need to parse them later.
1462 LateParsedMethodDeclaration *LateMethod = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001463 DeclaratorChunk::FunctionTypeInfo &FTI
Abramo Bagnara075f8f12010-12-10 16:29:40 +00001464 = DeclaratorInfo.getFunctionTypeInfo();
Eli Friedmand33133c2009-07-22 21:45:50 +00001465 for (unsigned ParamIdx = 0; ParamIdx < FTI.NumArgs; ++ParamIdx) {
1466 if (LateMethod || FTI.ArgInfo[ParamIdx].DefaultArgTokens) {
1467 if (!LateMethod) {
1468 // Push this method onto the stack of late-parsed method
1469 // declarations.
Douglas Gregord54eb442010-10-12 16:25:54 +00001470 LateMethod = new LateParsedMethodDeclaration(this, ThisDecl);
1471 getCurrentClass().LateParsedDeclarations.push_back(LateMethod);
Douglas Gregor23c94db2010-07-02 17:43:08 +00001472 LateMethod->TemplateScope = getCurScope()->isTemplateParamScope();
Eli Friedmand33133c2009-07-22 21:45:50 +00001473
1474 // Add all of the parameters prior to this one (they don't
1475 // have default arguments).
1476 LateMethod->DefaultArgs.reserve(FTI.NumArgs);
1477 for (unsigned I = 0; I < ParamIdx; ++I)
1478 LateMethod->DefaultArgs.push_back(
Douglas Gregor8f8210c2010-03-02 01:29:43 +00001479 LateParsedDefaultArgument(FTI.ArgInfo[I].Param));
Eli Friedmand33133c2009-07-22 21:45:50 +00001480 }
1481
1482 // Add this parameter to the list of parameters (it or may
1483 // not have a default argument).
1484 LateMethod->DefaultArgs.push_back(
1485 LateParsedDefaultArgument(FTI.ArgInfo[ParamIdx].Param,
1486 FTI.ArgInfo[ParamIdx].DefaultArgTokens));
1487 }
1488 }
1489}
1490
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001491/// isCXX0XVirtSpecifier - Determine whether the next token is a C++0x
1492/// virt-specifier.
1493///
1494/// virt-specifier:
1495/// override
1496/// final
Anders Carlssoncc54d592011-01-22 16:56:46 +00001497VirtSpecifiers::Specifier Parser::isCXX0XVirtSpecifier() const {
Anders Carlssonce93a7c2011-01-22 23:01:49 +00001498 if (!getLang().CPlusPlus)
Anders Carlssoncc54d592011-01-22 16:56:46 +00001499 return VirtSpecifiers::VS_None;
1500
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001501 if (Tok.is(tok::identifier)) {
1502 IdentifierInfo *II = Tok.getIdentifierInfo();
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001503
Anders Carlsson7eeb4ec2011-01-20 03:47:08 +00001504 // Initialize the contextual keywords.
1505 if (!Ident_final) {
1506 Ident_final = &PP.getIdentifierTable().get("final");
1507 Ident_override = &PP.getIdentifierTable().get("override");
1508 }
1509
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001510 if (II == Ident_override)
1511 return VirtSpecifiers::VS_Override;
1512
1513 if (II == Ident_final)
1514 return VirtSpecifiers::VS_Final;
1515 }
1516
1517 return VirtSpecifiers::VS_None;
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001518}
1519
1520/// ParseOptionalCXX0XVirtSpecifierSeq - Parse a virt-specifier-seq.
1521///
1522/// virt-specifier-seq:
1523/// virt-specifier
1524/// virt-specifier-seq virt-specifier
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001525void Parser::ParseOptionalCXX0XVirtSpecifierSeq(VirtSpecifiers &VS) {
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001526 while (true) {
Anders Carlssoncc54d592011-01-22 16:56:46 +00001527 VirtSpecifiers::Specifier Specifier = isCXX0XVirtSpecifier();
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001528 if (Specifier == VirtSpecifiers::VS_None)
1529 return;
1530
1531 // C++ [class.mem]p8:
1532 // A virt-specifier-seq shall contain at most one of each virt-specifier.
Anders Carlssoncc54d592011-01-22 16:56:46 +00001533 const char *PrevSpec = 0;
Anders Carlsson46127a92011-01-22 15:58:16 +00001534 if (VS.SetSpecifier(Specifier, Tok.getLocation(), PrevSpec))
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001535 Diag(Tok.getLocation(), diag::err_duplicate_virt_specifier)
1536 << PrevSpec
1537 << FixItHint::CreateRemoval(Tok.getLocation());
1538
Richard Smith7fe62082011-10-15 05:09:34 +00001539 Diag(Tok.getLocation(), getLang().CPlusPlus0x ?
1540 diag::warn_cxx98_compat_override_control_keyword :
1541 diag::ext_override_control_keyword)
1542 << VirtSpecifiers::getSpecifierName(Specifier);
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001543 ConsumeToken();
1544 }
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001545}
1546
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001547/// isCXX0XFinalKeyword - Determine whether the next token is a C++0x
1548/// contextual 'final' keyword.
1549bool Parser::isCXX0XFinalKeyword() const {
Anders Carlssonce93a7c2011-01-22 23:01:49 +00001550 if (!getLang().CPlusPlus)
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001551 return false;
Anders Carlssoncc54d592011-01-22 16:56:46 +00001552
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001553 if (!Tok.is(tok::identifier))
1554 return false;
Anders Carlssoncc54d592011-01-22 16:56:46 +00001555
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001556 // Initialize the contextual keywords.
1557 if (!Ident_final) {
1558 Ident_final = &PP.getIdentifierTable().get("final");
1559 Ident_override = &PP.getIdentifierTable().get("override");
1560 }
Anders Carlssoncc54d592011-01-22 16:56:46 +00001561
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001562 return Tok.getIdentifierInfo() == Ident_final;
Anders Carlssoncc54d592011-01-22 16:56:46 +00001563}
1564
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001565/// ParseCXXClassMemberDeclaration - Parse a C++ class member declaration.
1566///
1567/// member-declaration:
1568/// decl-specifier-seq[opt] member-declarator-list[opt] ';'
1569/// function-definition ';'[opt]
1570/// ::[opt] nested-name-specifier template[opt] unqualified-id ';'[TODO]
1571/// using-declaration [TODO]
Anders Carlsson511d7ab2009-03-11 16:27:10 +00001572/// [C++0x] static_assert-declaration
Anders Carlsson5aeccdb2009-03-26 00:52:18 +00001573/// template-declaration
Chris Lattnerbc8d5642008-12-18 01:12:00 +00001574/// [GNU] '__extension__' member-declaration
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001575///
1576/// member-declarator-list:
1577/// member-declarator
1578/// member-declarator-list ',' member-declarator
1579///
1580/// member-declarator:
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001581/// declarator virt-specifier-seq[opt] pure-specifier[opt]
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001582/// declarator constant-initializer[opt]
Richard Smith7a614d82011-06-11 17:19:42 +00001583/// [C++11] declarator brace-or-equal-initializer[opt]
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001584/// identifier[opt] ':' constant-expression
1585///
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001586/// virt-specifier-seq:
1587/// virt-specifier
1588/// virt-specifier-seq virt-specifier
1589///
1590/// virt-specifier:
1591/// override
1592/// final
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001593///
Sebastian Redle2b68332009-04-12 17:16:29 +00001594/// pure-specifier:
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001595/// '= 0'
1596///
1597/// constant-initializer:
1598/// '=' constant-expression
1599///
Douglas Gregor37b372b2009-08-20 22:52:58 +00001600void Parser::ParseCXXClassMemberDeclaration(AccessSpecifier AS,
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001601 AttributeList *AccessAttrs,
John McCallc9068d72010-07-16 08:13:16 +00001602 const ParsedTemplateInfo &TemplateInfo,
1603 ParsingDeclRAIIObject *TemplateDiags) {
Douglas Gregor8a9013d2011-04-14 17:21:19 +00001604 if (Tok.is(tok::at)) {
1605 if (getLang().ObjC1 && NextToken().isObjCAtKeyword(tok::objc_defs))
1606 Diag(Tok, diag::err_at_defs_cxx);
1607 else
1608 Diag(Tok, diag::err_at_in_class);
1609
1610 ConsumeToken();
1611 SkipUntil(tok::r_brace);
1612 return;
1613 }
1614
John McCall60fa3cf2009-12-11 02:10:03 +00001615 // Access declarations.
1616 if (!TemplateInfo.Kind &&
1617 (Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) &&
John McCall9ba61662010-02-26 08:45:28 +00001618 !TryAnnotateCXXScopeToken() &&
John McCall60fa3cf2009-12-11 02:10:03 +00001619 Tok.is(tok::annot_cxxscope)) {
1620 bool isAccessDecl = false;
1621 if (NextToken().is(tok::identifier))
1622 isAccessDecl = GetLookAheadToken(2).is(tok::semi);
1623 else
1624 isAccessDecl = NextToken().is(tok::kw_operator);
1625
1626 if (isAccessDecl) {
1627 // Collect the scope specifier token we annotated earlier.
1628 CXXScopeSpec SS;
John McCallb3d87482010-08-24 05:47:05 +00001629 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
John McCall60fa3cf2009-12-11 02:10:03 +00001630
1631 // Try to parse an unqualified-id.
1632 UnqualifiedId Name;
John McCallb3d87482010-08-24 05:47:05 +00001633 if (ParseUnqualifiedId(SS, false, true, true, ParsedType(), Name)) {
John McCall60fa3cf2009-12-11 02:10:03 +00001634 SkipUntil(tok::semi);
1635 return;
1636 }
1637
1638 // TODO: recover from mistakenly-qualified operator declarations.
1639 if (ExpectAndConsume(tok::semi,
1640 diag::err_expected_semi_after,
1641 "access declaration",
1642 tok::semi))
1643 return;
1644
Douglas Gregor23c94db2010-07-02 17:43:08 +00001645 Actions.ActOnUsingDeclaration(getCurScope(), AS,
John McCall60fa3cf2009-12-11 02:10:03 +00001646 false, SourceLocation(),
1647 SS, Name,
1648 /* AttrList */ 0,
1649 /* IsTypeName */ false,
1650 SourceLocation());
1651 return;
1652 }
1653 }
1654
Anders Carlsson511d7ab2009-03-11 16:27:10 +00001655 // static_assert-declaration
Peter Collingbournec6eb44b2011-04-15 00:35:57 +00001656 if (Tok.is(tok::kw_static_assert) || Tok.is(tok::kw__Static_assert)) {
Douglas Gregor37b372b2009-08-20 22:52:58 +00001657 // FIXME: Check for templates
Chris Lattner97144fc2009-04-02 04:16:50 +00001658 SourceLocation DeclEnd;
1659 ParseStaticAssertDeclaration(DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +00001660 return;
1661 }
Mike Stump1eb44332009-09-09 15:08:12 +00001662
Chris Lattner682bf922009-03-29 16:50:03 +00001663 if (Tok.is(tok::kw_template)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001664 assert(!TemplateInfo.TemplateParams &&
Douglas Gregor37b372b2009-08-20 22:52:58 +00001665 "Nested template improperly parsed?");
Chris Lattner97144fc2009-04-02 04:16:50 +00001666 SourceLocation DeclEnd;
Mike Stump1eb44332009-09-09 15:08:12 +00001667 ParseDeclarationStartingWithTemplate(Declarator::MemberContext, DeclEnd,
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001668 AS, AccessAttrs);
Chris Lattner682bf922009-03-29 16:50:03 +00001669 return;
1670 }
Anders Carlsson5aeccdb2009-03-26 00:52:18 +00001671
Chris Lattnerbc8d5642008-12-18 01:12:00 +00001672 // Handle: member-declaration ::= '__extension__' member-declaration
1673 if (Tok.is(tok::kw___extension__)) {
1674 // __extension__ silences extension warnings in the subexpression.
1675 ExtensionRAIIObject O(Diags); // Use RAII to do this.
1676 ConsumeToken();
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001677 return ParseCXXClassMemberDeclaration(AS, AccessAttrs,
1678 TemplateInfo, TemplateDiags);
Chris Lattnerbc8d5642008-12-18 01:12:00 +00001679 }
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001680
Chris Lattner4ed5d912010-02-02 01:23:29 +00001681 // Don't parse FOO:BAR as if it were a typo for FOO::BAR, in this context it
1682 // is a bitfield.
Chris Lattnera1efc8c2009-12-10 01:59:24 +00001683 ColonProtectionRAIIObject X(*this);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001684
John McCall0b7e6782011-03-24 11:26:52 +00001685 ParsedAttributesWithRange attrs(AttrFactory);
Sean Huntbbd37c62009-11-21 08:43:09 +00001686 // Optional C++0x attribute-specifier
John McCall7f040a92010-12-24 02:08:15 +00001687 MaybeParseCXX0XAttributes(attrs);
1688 MaybeParseMicrosoftAttributes(attrs);
Sean Huntbbd37c62009-11-21 08:43:09 +00001689
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001690 if (Tok.is(tok::kw_using)) {
John McCall7f040a92010-12-24 02:08:15 +00001691 ProhibitAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +00001692
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001693 // Eat 'using'.
1694 SourceLocation UsingLoc = ConsumeToken();
1695
1696 if (Tok.is(tok::kw_namespace)) {
1697 Diag(UsingLoc, diag::err_using_namespace_in_class);
1698 SkipUntil(tok::semi, true, true);
Chris Lattnerae50d502010-02-02 00:43:15 +00001699 } else {
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001700 SourceLocation DeclEnd;
Richard Smith3e4c6c42011-05-05 21:57:07 +00001701 // Otherwise, it must be a using-declaration or an alias-declaration.
John McCall78b81052010-11-10 02:40:36 +00001702 ParseUsingDeclaration(Declarator::MemberContext, TemplateInfo,
1703 UsingLoc, DeclEnd, AS);
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001704 }
1705 return;
1706 }
1707
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001708 // decl-specifier-seq:
1709 // Parse the common declaration-specifiers piece.
John McCallc9068d72010-07-16 08:13:16 +00001710 ParsingDeclSpec DS(*this, TemplateDiags);
John McCall7f040a92010-12-24 02:08:15 +00001711 DS.takeAttributesFrom(attrs);
Douglas Gregor37b372b2009-08-20 22:52:58 +00001712 ParseDeclarationSpecifiers(DS, TemplateInfo, AS, DSC_class);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001713
John McCallf312b1e2010-08-26 23:41:50 +00001714 MultiTemplateParamsArg TemplateParams(Actions,
John McCalldd4a3b02009-09-16 22:47:08 +00001715 TemplateInfo.TemplateParams? TemplateInfo.TemplateParams->data() : 0,
1716 TemplateInfo.TemplateParams? TemplateInfo.TemplateParams->size() : 0);
1717
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001718 if (Tok.is(tok::semi)) {
1719 ConsumeToken();
John McCalld226f652010-08-21 09:40:31 +00001720 Decl *TheDecl =
Chandler Carruth0f4be742011-05-03 18:35:10 +00001721 Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS, DS, TemplateParams);
John McCallc9068d72010-07-16 08:13:16 +00001722 DS.complete(TheDecl);
John McCall67d1a672009-08-06 02:15:43 +00001723 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001724 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001725
John McCall54abf7d2009-11-04 02:18:39 +00001726 ParsingDeclarator DeclaratorInfo(*this, DS, Declarator::MemberContext);
Nico Weber48673472011-01-28 06:07:34 +00001727 VirtSpecifiers VS;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001728
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001729 // Hold late-parsed attributes so we can attach a Decl to them later.
1730 LateParsedAttrList LateParsedAttrs;
1731
Douglas Gregora2b4e5d2011-10-17 17:09:53 +00001732 SourceLocation EqualLoc;
1733 bool HasInitializer = false;
1734 ExprResult Init;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001735 if (Tok.isNot(tok::colon)) {
Chris Lattnera1efc8c2009-12-10 01:59:24 +00001736 // Don't parse FOO:BAR as if it were a typo for FOO::BAR.
1737 ColonProtectionRAIIObject X(*this);
1738
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001739 // Parse the first declarator.
1740 ParseDeclarator(DeclaratorInfo);
1741 // Error parsing the declarator?
Douglas Gregor10bd3682008-11-17 22:58:34 +00001742 if (!DeclaratorInfo.hasName()) {
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001743 // If so, skip until the semi-colon or a }.
Sebastian Redld941fa42011-04-24 16:27:48 +00001744 SkipUntil(tok::r_brace, true, true);
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001745 if (Tok.is(tok::semi))
1746 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001747 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001748 }
1749
Nico Weber48673472011-01-28 06:07:34 +00001750 ParseOptionalCXX0XVirtSpecifierSeq(VS);
1751
John Thompson1b2fc0f2009-11-25 22:58:06 +00001752 // If attributes exist after the declarator, but before an '{', parse them.
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001753 MaybeParseGNUAttributes(DeclaratorInfo, &LateParsedAttrs);
John Thompson1b2fc0f2009-11-25 22:58:06 +00001754
Francois Pichet6a247472011-05-11 02:14:46 +00001755 // MSVC permits pure specifier on inline functions declared at class scope.
1756 // Hence check for =0 before checking for function definition.
Francois Pichet62ec1f22011-09-17 17:15:52 +00001757 if (getLang().MicrosoftExt && Tok.is(tok::equal) &&
Francois Pichet6a247472011-05-11 02:14:46 +00001758 DeclaratorInfo.isFunctionDeclarator() &&
1759 NextToken().is(tok::numeric_constant)) {
Douglas Gregora2b4e5d2011-10-17 17:09:53 +00001760 EqualLoc = ConsumeToken();
Francois Pichet6a247472011-05-11 02:14:46 +00001761 Init = ParseInitializer();
1762 if (Init.isInvalid())
1763 SkipUntil(tok::comma, true, true);
Douglas Gregora2b4e5d2011-10-17 17:09:53 +00001764 else
1765 HasInitializer = true;
Francois Pichet6a247472011-05-11 02:14:46 +00001766 }
1767
Sean Hunte4246a62011-05-12 06:15:49 +00001768 bool IsDefinition = false;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001769 // function-definition:
Richard Smith7a614d82011-06-11 17:19:42 +00001770 //
1771 // In C++11, a non-function declarator followed by an open brace is a
1772 // braced-init-list for an in-class member initialization, not an
1773 // erroneous function definition.
1774 if (Tok.is(tok::l_brace) && !getLang().CPlusPlus0x) {
Sean Hunte4246a62011-05-12 06:15:49 +00001775 IsDefinition = true;
1776 } else if (DeclaratorInfo.isFunctionDeclarator()) {
Richard Smith7a614d82011-06-11 17:19:42 +00001777 if (Tok.is(tok::l_brace) || Tok.is(tok::colon) || Tok.is(tok::kw_try)) {
Sean Hunte4246a62011-05-12 06:15:49 +00001778 IsDefinition = true;
1779 } else if (Tok.is(tok::equal)) {
1780 const Token &KW = NextToken();
1781 if (KW.is(tok::kw_default) || KW.is(tok::kw_delete))
1782 IsDefinition = true;
1783 }
1784 }
1785
1786 if (IsDefinition) {
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001787 if (!DeclaratorInfo.isFunctionDeclarator()) {
1788 Diag(Tok, diag::err_func_def_no_params);
1789 ConsumeBrace();
1790 SkipUntil(tok::r_brace, true);
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001791
1792 // Consume the optional ';'
1793 if (Tok.is(tok::semi))
1794 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001795 return;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001796 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001797
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001798 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
1799 Diag(Tok, diag::err_function_declared_typedef);
1800 // This recovery skips the entire function body. It would be nice
1801 // to simply call ParseCXXInlineMethodDef() below, however Sema
1802 // assumes the declarator represents a function, not a typedef.
1803 ConsumeBrace();
1804 SkipUntil(tok::r_brace, true);
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001805
1806 // Consume the optional ';'
1807 if (Tok.is(tok::semi))
1808 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001809 return;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001810 }
1811
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001812 Decl *FunDecl =
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001813 ParseCXXInlineMethodDef(AS, AccessAttrs, DeclaratorInfo, TemplateInfo,
1814 VS, Init);
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001815
1816 for (unsigned i = 0, ni = LateParsedAttrs.size(); i < ni; ++i) {
1817 LateParsedAttrs[i]->setDecl(FunDecl);
1818 }
1819 LateParsedAttrs.clear();
Sean Hunte4246a62011-05-12 06:15:49 +00001820
1821 // Consume the ';' - it's optional unless we have a delete or default
1822 if (Tok.is(tok::semi)) {
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001823 ConsumeToken();
Sean Hunte4246a62011-05-12 06:15:49 +00001824 }
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001825
Chris Lattner682bf922009-03-29 16:50:03 +00001826 return;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001827 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001828 }
1829
1830 // member-declarator-list:
1831 // member-declarator
1832 // member-declarator-list ',' member-declarator
1833
Chris Lattner5f9e2722011-07-23 10:55:15 +00001834 SmallVector<Decl *, 8> DeclsInGroup;
John McCall60d7b3a2010-08-24 06:29:42 +00001835 ExprResult BitfieldSize;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001836
1837 while (1) {
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001838 // member-declarator:
1839 // declarator pure-specifier[opt]
Richard Smith7a614d82011-06-11 17:19:42 +00001840 // declarator brace-or-equal-initializer[opt]
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001841 // identifier[opt] ':' constant-expression
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001842 if (Tok.is(tok::colon)) {
1843 ConsumeToken();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001844 BitfieldSize = ParseConstantExpression();
1845 if (BitfieldSize.isInvalid())
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001846 SkipUntil(tok::comma, true, true);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001847 }
Mike Stump1eb44332009-09-09 15:08:12 +00001848
Chris Lattnere6563252010-06-13 05:34:18 +00001849 // If a simple-asm-expr is present, parse it.
1850 if (Tok.is(tok::kw_asm)) {
1851 SourceLocation Loc;
John McCall60d7b3a2010-08-24 06:29:42 +00001852 ExprResult AsmLabel(ParseSimpleAsm(&Loc));
Chris Lattnere6563252010-06-13 05:34:18 +00001853 if (AsmLabel.isInvalid())
1854 SkipUntil(tok::comma, true, true);
1855
1856 DeclaratorInfo.setAsmLabel(AsmLabel.release());
1857 DeclaratorInfo.SetRangeEnd(Loc);
1858 }
1859
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001860 // If attributes exist after the declarator, parse them.
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001861 MaybeParseGNUAttributes(DeclaratorInfo, &LateParsedAttrs);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001862
Richard Smith7a614d82011-06-11 17:19:42 +00001863 // FIXME: When g++ adds support for this, we'll need to check whether it
1864 // goes before or after the GNU attributes and __asm__.
1865 ParseOptionalCXX0XVirtSpecifierSeq(VS);
1866
1867 bool HasDeferredInitializer = false;
Douglas Gregora2b4e5d2011-10-17 17:09:53 +00001868 if ((Tok.is(tok::equal) || Tok.is(tok::l_brace)) && !HasInitializer) {
Richard Smith7a614d82011-06-11 17:19:42 +00001869 if (BitfieldSize.get()) {
1870 Diag(Tok, diag::err_bitfield_member_init);
1871 SkipUntil(tok::comma, true, true);
1872 } else {
Douglas Gregor147545d2011-10-10 14:49:18 +00001873 HasInitializer = true;
Douglas Gregor555f57e2011-06-25 00:56:27 +00001874 HasDeferredInitializer = !DeclaratorInfo.isDeclarationOfFunction() &&
Richard Smith7a614d82011-06-11 17:19:42 +00001875 DeclaratorInfo.getDeclSpec().getStorageClassSpec()
Richard Smithc2cdd532011-06-12 11:43:46 +00001876 != DeclSpec::SCS_static &&
1877 DeclaratorInfo.getDeclSpec().getStorageClassSpec()
1878 != DeclSpec::SCS_typedef;
Richard Smith7a614d82011-06-11 17:19:42 +00001879 }
1880 }
1881
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001882 // NOTE: If Sema is the Action module and declarator is an instance field,
Chris Lattner682bf922009-03-29 16:50:03 +00001883 // this call will *not* return the created decl; It will return null.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001884 // See Sema::ActOnCXXMemberDeclarator for details.
John McCall67d1a672009-08-06 02:15:43 +00001885
John McCalld226f652010-08-21 09:40:31 +00001886 Decl *ThisDecl = 0;
John McCall67d1a672009-08-06 02:15:43 +00001887 if (DS.isFriendSpecified()) {
John McCallbbbcdd92009-09-11 21:02:39 +00001888 // TODO: handle initializers, bitfields, 'delete'
Douglas Gregor23c94db2010-07-02 17:43:08 +00001889 ThisDecl = Actions.ActOnFriendFunctionDecl(getCurScope(), DeclaratorInfo,
John McCallbbbcdd92009-09-11 21:02:39 +00001890 move(TemplateParams));
Douglas Gregor37b372b2009-08-20 22:52:58 +00001891 } else {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001892 ThisDecl = Actions.ActOnCXXMemberDeclarator(getCurScope(), AS,
John McCall67d1a672009-08-06 02:15:43 +00001893 DeclaratorInfo,
Douglas Gregor37b372b2009-08-20 22:52:58 +00001894 move(TemplateParams),
John McCall67d1a672009-08-06 02:15:43 +00001895 BitfieldSize.release(),
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00001896 VS, HasDeferredInitializer);
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001897 if (AccessAttrs)
1898 Actions.ProcessDeclAttributeList(getCurScope(), ThisDecl, AccessAttrs,
1899 false, true);
Douglas Gregor37b372b2009-08-20 22:52:58 +00001900 }
Douglas Gregor147545d2011-10-10 14:49:18 +00001901
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001902 // Set the Decl for any late parsed attributes
1903 for (unsigned i = 0, ni = LateParsedAttrs.size(); i < ni; ++i) {
1904 LateParsedAttrs[i]->setDecl(ThisDecl);
1905 }
1906 LateParsedAttrs.clear();
1907
Douglas Gregor147545d2011-10-10 14:49:18 +00001908 // Handle the initializer.
Richard Smith7a614d82011-06-11 17:19:42 +00001909 if (HasDeferredInitializer) {
Douglas Gregor147545d2011-10-10 14:49:18 +00001910 // The initializer was deferred; parse it and cache the tokens.
Richard Smith7fe62082011-10-15 05:09:34 +00001911 Diag(Tok, getLang().CPlusPlus0x ?
1912 diag::warn_cxx98_compat_nonstatic_member_init :
1913 diag::ext_nonstatic_member_init);
1914
Richard Smith7a614d82011-06-11 17:19:42 +00001915 if (DeclaratorInfo.isArrayOfUnknownBound()) {
1916 // C++0x [dcl.array]p3: An array bound may also be omitted when the
1917 // declarator is followed by an initializer.
1918 //
1919 // A brace-or-equal-initializer for a member-declarator is not an
1920 // initializer in the gramamr, so this is ill-formed.
1921 Diag(Tok, diag::err_incomplete_array_member_init);
1922 SkipUntil(tok::comma, true, true);
1923 // Avoid later warnings about a class member of incomplete type.
1924 ThisDecl->setInvalidDecl();
1925 } else
1926 ParseCXXNonStaticMemberInitializer(ThisDecl);
Douglas Gregor147545d2011-10-10 14:49:18 +00001927 } else if (HasInitializer) {
1928 // Normal initializer.
Douglas Gregora2b4e5d2011-10-17 17:09:53 +00001929 if (!Init.isUsable())
1930 Init = ParseCXXMemberInitializer(
1931 DeclaratorInfo.isDeclarationOfFunction(), EqualLoc);
1932
Douglas Gregor147545d2011-10-10 14:49:18 +00001933 if (Init.isInvalid())
1934 SkipUntil(tok::comma, true, true);
1935 else if (ThisDecl)
1936 Actions.AddInitializerToDecl(ThisDecl, Init.get(), false,
Douglas Gregora2b4e5d2011-10-17 17:09:53 +00001937 DS.getTypeSpecType() == DeclSpec::TST_auto);
Douglas Gregor147545d2011-10-10 14:49:18 +00001938 } else if (ThisDecl && DS.getStorageClassSpec() == DeclSpec::SCS_static) {
1939 // No initializer.
1940 Actions.ActOnUninitializedDecl(ThisDecl,
1941 DS.getTypeSpecType() == DeclSpec::TST_auto);
Richard Smith7a614d82011-06-11 17:19:42 +00001942 }
Douglas Gregor147545d2011-10-10 14:49:18 +00001943
1944 if (ThisDecl) {
1945 Actions.FinalizeDeclaration(ThisDecl);
1946 DeclsInGroup.push_back(ThisDecl);
1947 }
1948
1949 if (DeclaratorInfo.isFunctionDeclarator() &&
1950 DeclaratorInfo.getDeclSpec().getStorageClassSpec()
1951 != DeclSpec::SCS_typedef) {
1952 HandleMemberFunctionDefaultArgs(DeclaratorInfo, ThisDecl);
1953 }
1954
1955 DeclaratorInfo.complete(ThisDecl);
Richard Smith7a614d82011-06-11 17:19:42 +00001956
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001957 // If we don't have a comma, it is either the end of the list (a ';')
1958 // or an error, bail out.
1959 if (Tok.isNot(tok::comma))
1960 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001961
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001962 // Consume the comma.
1963 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001964
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001965 // Parse the next declarator.
1966 DeclaratorInfo.clear();
Nico Weber48673472011-01-28 06:07:34 +00001967 VS.clear();
Douglas Gregor147545d2011-10-10 14:49:18 +00001968 BitfieldSize = true;
Douglas Gregora2b4e5d2011-10-17 17:09:53 +00001969 Init = true;
1970 HasInitializer = false;
Mike Stump1eb44332009-09-09 15:08:12 +00001971
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001972 // Attributes are only allowed on the second declarator.
John McCall7f040a92010-12-24 02:08:15 +00001973 MaybeParseGNUAttributes(DeclaratorInfo);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001974
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001975 if (Tok.isNot(tok::colon))
1976 ParseDeclarator(DeclaratorInfo);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001977 }
1978
Chris Lattnerae50d502010-02-02 00:43:15 +00001979 if (ExpectAndConsume(tok::semi, diag::err_expected_semi_decl_list)) {
1980 // Skip to end of block or statement.
1981 SkipUntil(tok::r_brace, true, true);
1982 // If we stopped at a ';', eat it.
1983 if (Tok.is(tok::semi)) ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001984 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001985 }
1986
Douglas Gregor23c94db2010-07-02 17:43:08 +00001987 Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup.data(),
Chris Lattnerae50d502010-02-02 00:43:15 +00001988 DeclsInGroup.size());
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001989}
1990
Richard Smith7a614d82011-06-11 17:19:42 +00001991/// ParseCXXMemberInitializer - Parse the brace-or-equal-initializer or
1992/// pure-specifier. Also detect and reject any attempted defaulted/deleted
1993/// function definition. The location of the '=', if any, will be placed in
1994/// EqualLoc.
1995///
1996/// pure-specifier:
1997/// '= 0'
1998///
1999/// brace-or-equal-initializer:
2000/// '=' initializer-expression
2001/// braced-init-list [TODO]
2002///
2003/// initializer-clause:
2004/// assignment-expression
2005/// braced-init-list [TODO]
2006///
2007/// defaulted/deleted function-definition:
2008/// '=' 'default'
2009/// '=' 'delete'
2010///
2011/// Prior to C++0x, the assignment-expression in an initializer-clause must
2012/// be a constant-expression.
2013ExprResult Parser::ParseCXXMemberInitializer(bool IsFunction,
2014 SourceLocation &EqualLoc) {
2015 assert((Tok.is(tok::equal) || Tok.is(tok::l_brace))
2016 && "Data member initializer not starting with '=' or '{'");
2017
2018 if (Tok.is(tok::equal)) {
2019 EqualLoc = ConsumeToken();
2020 if (Tok.is(tok::kw_delete)) {
2021 // In principle, an initializer of '= delete p;' is legal, but it will
2022 // never type-check. It's better to diagnose it as an ill-formed expression
2023 // than as an ill-formed deleted non-function member.
2024 // An initializer of '= delete p, foo' will never be parsed, because
2025 // a top-level comma always ends the initializer expression.
2026 const Token &Next = NextToken();
2027 if (IsFunction || Next.is(tok::semi) || Next.is(tok::comma) ||
2028 Next.is(tok::eof)) {
2029 if (IsFunction)
2030 Diag(ConsumeToken(), diag::err_default_delete_in_multiple_declaration)
2031 << 1 /* delete */;
2032 else
2033 Diag(ConsumeToken(), diag::err_deleted_non_function);
2034 return ExprResult();
2035 }
2036 } else if (Tok.is(tok::kw_default)) {
Richard Smith7a614d82011-06-11 17:19:42 +00002037 if (IsFunction)
2038 Diag(Tok, diag::err_default_delete_in_multiple_declaration)
2039 << 0 /* default */;
2040 else
2041 Diag(ConsumeToken(), diag::err_default_special_members);
2042 return ExprResult();
2043 }
2044
2045 return ParseInitializer();
2046 } else
2047 return ExprError(Diag(Tok, diag::err_generalized_initializer_lists));
2048}
2049
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002050/// ParseCXXMemberSpecification - Parse the class definition.
2051///
2052/// member-specification:
2053/// member-declaration member-specification[opt]
2054/// access-specifier ':' member-specification[opt]
2055///
2056void Parser::ParseCXXMemberSpecification(SourceLocation RecordLoc,
John McCalld226f652010-08-21 09:40:31 +00002057 unsigned TagType, Decl *TagDecl) {
Sanjiv Gupta31fc07d2008-10-31 09:52:39 +00002058 assert((TagType == DeclSpec::TST_struct ||
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002059 TagType == DeclSpec::TST_union ||
Sanjiv Gupta31fc07d2008-10-31 09:52:39 +00002060 TagType == DeclSpec::TST_class) && "Invalid TagType!");
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002061
John McCallf312b1e2010-08-26 23:41:50 +00002062 PrettyDeclStackTraceEntry CrashInfo(Actions, TagDecl, RecordLoc,
2063 "parsing struct/union/class body");
Mike Stump1eb44332009-09-09 15:08:12 +00002064
Douglas Gregor26997fd2010-01-16 20:52:59 +00002065 // Determine whether this is a non-nested class. Note that local
2066 // classes are *not* considered to be nested classes.
2067 bool NonNestedClass = true;
2068 if (!ClassStack.empty()) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00002069 for (const Scope *S = getCurScope(); S; S = S->getParent()) {
Douglas Gregor26997fd2010-01-16 20:52:59 +00002070 if (S->isClassScope()) {
2071 // We're inside a class scope, so this is a nested class.
2072 NonNestedClass = false;
2073 break;
2074 }
2075
2076 if ((S->getFlags() & Scope::FnScope)) {
2077 // If we're in a function or function template declared in the
2078 // body of a class, then this is a local class rather than a
2079 // nested class.
2080 const Scope *Parent = S->getParent();
2081 if (Parent->isTemplateParamScope())
2082 Parent = Parent->getParent();
2083 if (Parent->isClassScope())
2084 break;
2085 }
2086 }
2087 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002088
2089 // Enter a scope for the class.
Douglas Gregor3218c4b2009-01-09 22:42:13 +00002090 ParseScope ClassScope(this, Scope::ClassScope|Scope::DeclScope);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002091
Douglas Gregor6569d682009-05-27 23:11:45 +00002092 // Note that we are parsing a new (potentially-nested) class definition.
Douglas Gregor26997fd2010-01-16 20:52:59 +00002093 ParsingClassDefinition ParsingDef(*this, TagDecl, NonNestedClass);
Douglas Gregor6569d682009-05-27 23:11:45 +00002094
Douglas Gregorddc29e12009-02-06 22:42:48 +00002095 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002096 Actions.ActOnTagStartDefinition(getCurScope(), TagDecl);
John McCallbd0dfa52009-12-19 21:48:58 +00002097
Anders Carlssonb184a182011-03-25 14:46:08 +00002098 SourceLocation FinalLoc;
2099
2100 // Parse the optional 'final' keyword.
2101 if (getLang().CPlusPlus && Tok.is(tok::identifier)) {
Richard Smith8b11b5e2011-10-15 04:21:46 +00002102 assert(isCXX0XFinalKeyword() && "not a class definition");
2103 FinalLoc = ConsumeToken();
Anders Carlssonb184a182011-03-25 14:46:08 +00002104
Richard Smith7fe62082011-10-15 05:09:34 +00002105 Diag(FinalLoc, getLang().CPlusPlus0x ?
2106 diag::warn_cxx98_compat_override_control_keyword :
2107 diag::ext_override_control_keyword) << "final";
Anders Carlssonb184a182011-03-25 14:46:08 +00002108 }
Anders Carlssoncc54d592011-01-22 16:56:46 +00002109
John McCallbd0dfa52009-12-19 21:48:58 +00002110 if (Tok.is(tok::colon)) {
2111 ParseBaseClause(TagDecl);
2112
2113 if (!Tok.is(tok::l_brace)) {
2114 Diag(Tok, diag::err_expected_lbrace_after_base_specifiers);
John McCalldb7bb4a2010-03-17 00:38:33 +00002115
2116 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002117 Actions.ActOnTagDefinitionError(getCurScope(), TagDecl);
John McCallbd0dfa52009-12-19 21:48:58 +00002118 return;
2119 }
2120 }
2121
2122 assert(Tok.is(tok::l_brace));
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002123 BalancedDelimiterTracker T(*this, tok::l_brace);
2124 T.consumeOpen();
John McCallbd0dfa52009-12-19 21:48:58 +00002125
John McCall42a4f662010-05-28 08:11:17 +00002126 if (TagDecl)
Anders Carlsson2c3ee542011-03-25 14:31:08 +00002127 Actions.ActOnStartCXXMemberDeclarations(getCurScope(), TagDecl, FinalLoc,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002128 T.getOpenLocation());
John McCallf9368152009-12-20 07:58:13 +00002129
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002130 // C++ 11p3: Members of a class defined with the keyword class are private
2131 // by default. Members of a class defined with the keywords struct or union
2132 // are public by default.
2133 AccessSpecifier CurAS;
2134 if (TagType == DeclSpec::TST_class)
2135 CurAS = AS_private;
2136 else
2137 CurAS = AS_public;
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00002138 ParsedAttributes AccessAttrs(AttrFactory);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002139
Douglas Gregor07976d22010-06-21 22:31:09 +00002140 if (TagDecl) {
2141 // While we still have something to read, read the member-declarations.
2142 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
2143 // Each iteration of this loop reads one member-declaration.
Mike Stump1eb44332009-09-09 15:08:12 +00002144
Francois Pichet62ec1f22011-09-17 17:15:52 +00002145 if (getLang().MicrosoftExt && (Tok.is(tok::kw___if_exists) ||
Francois Pichet563a6452011-05-25 10:19:49 +00002146 Tok.is(tok::kw___if_not_exists))) {
2147 ParseMicrosoftIfExistsClassDeclaration((DeclSpec::TST)TagType, CurAS);
2148 continue;
2149 }
2150
Douglas Gregor07976d22010-06-21 22:31:09 +00002151 // Check for extraneous top-level semicolon.
2152 if (Tok.is(tok::semi)) {
2153 Diag(Tok, diag::ext_extra_struct_semi)
2154 << DeclSpec::getSpecifierName((DeclSpec::TST)TagType)
2155 << FixItHint::CreateRemoval(Tok.getLocation());
2156 ConsumeToken();
2157 continue;
2158 }
2159
2160 AccessSpecifier AS = getAccessSpecifierIfPresent();
2161 if (AS != AS_none) {
2162 // Current token is a C++ access specifier.
2163 CurAS = AS;
2164 SourceLocation ASLoc = Tok.getLocation();
David Blaikie13f8daf2011-10-13 06:08:43 +00002165 unsigned TokLength = Tok.getLength();
Douglas Gregor07976d22010-06-21 22:31:09 +00002166 ConsumeToken();
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00002167 AccessAttrs.clear();
2168 MaybeParseGNUAttributes(AccessAttrs);
2169
David Blaikie13f8daf2011-10-13 06:08:43 +00002170 SourceLocation EndLoc;
2171 if (Tok.is(tok::colon)) {
2172 EndLoc = Tok.getLocation();
2173 ConsumeToken();
2174 } else if (Tok.is(tok::semi)) {
2175 EndLoc = Tok.getLocation();
2176 ConsumeToken();
2177 Diag(EndLoc, diag::err_expected_colon)
2178 << FixItHint::CreateReplacement(EndLoc, ":");
2179 } else {
2180 EndLoc = ASLoc.getLocWithOffset(TokLength);
2181 Diag(EndLoc, diag::err_expected_colon)
2182 << FixItHint::CreateInsertion(EndLoc, ":");
2183 }
Erik Verbruggenc35cba42011-10-17 09:54:52 +00002184
2185 if (Actions.ActOnAccessSpecifier(AS, ASLoc, EndLoc,
2186 AccessAttrs.getList())) {
2187 // found another attribute than only annotations
2188 AccessAttrs.clear();
2189 }
2190
Douglas Gregor07976d22010-06-21 22:31:09 +00002191 continue;
2192 }
2193
2194 // FIXME: Make sure we don't have a template here.
2195
2196 // Parse all the comma separated declarators.
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00002197 ParseCXXClassMemberDeclaration(CurAS, AccessAttrs.getList());
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002198 }
2199
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002200 T.consumeClose();
Douglas Gregor07976d22010-06-21 22:31:09 +00002201 } else {
2202 SkipUntil(tok::r_brace, false, false);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002203 }
Mike Stump1eb44332009-09-09 15:08:12 +00002204
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002205 // If attributes exist after class contents, parse them.
John McCall0b7e6782011-03-24 11:26:52 +00002206 ParsedAttributes attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +00002207 MaybeParseGNUAttributes(attrs);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002208
John McCall42a4f662010-05-28 08:11:17 +00002209 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002210 Actions.ActOnFinishCXXMemberSpecification(getCurScope(), RecordLoc, TagDecl,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002211 T.getOpenLocation(),
2212 T.getCloseLocation(),
John McCall7f040a92010-12-24 02:08:15 +00002213 attrs.getList());
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002214
Richard Smith7a614d82011-06-11 17:19:42 +00002215 // C++0x [class.mem]p2: Within the class member-specification, the class is
2216 // regarded as complete within function bodies, default arguments, exception-
2217 // specifications, and brace-or-equal-initializers for non-static data
2218 // members (including such things in nested classes).
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002219 //
Richard Smith7a614d82011-06-11 17:19:42 +00002220 // FIXME: Only function bodies and brace-or-equal-initializers are currently
2221 // handled. Fix the others!
Douglas Gregor07976d22010-06-21 22:31:09 +00002222 if (TagDecl && NonNestedClass) {
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002223 // We are not inside a nested class. This class and its nested classes
Douglas Gregor72b505b2008-12-16 21:30:33 +00002224 // are complete and we can parse the delayed portions of method
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00002225 // declarations and the lexed inline method definitions, along with any
2226 // delayed attributes.
Douglas Gregore0cc0472010-06-16 23:45:56 +00002227 SourceLocation SavedPrevTokLocation = PrevTokLocation;
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00002228 ParseLexedAttributes(getCurrentClass());
Douglas Gregor6569d682009-05-27 23:11:45 +00002229 ParseLexedMethodDeclarations(getCurrentClass());
Richard Smith7a614d82011-06-11 17:19:42 +00002230 ParseLexedMemberInitializers(getCurrentClass());
Douglas Gregor6569d682009-05-27 23:11:45 +00002231 ParseLexedMethodDefs(getCurrentClass());
Douglas Gregore0cc0472010-06-16 23:45:56 +00002232 PrevTokLocation = SavedPrevTokLocation;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002233 }
2234
John McCall42a4f662010-05-28 08:11:17 +00002235 if (TagDecl)
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002236 Actions.ActOnTagFinishDefinition(getCurScope(), TagDecl,
2237 T.getCloseLocation());
John McCalldb7bb4a2010-03-17 00:38:33 +00002238
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002239 // Leave the class scope.
Douglas Gregor6569d682009-05-27 23:11:45 +00002240 ParsingDef.Pop();
Douglas Gregor8935b8b2008-12-10 06:34:36 +00002241 ClassScope.Exit();
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002242}
Douglas Gregor7ad83902008-11-05 04:29:56 +00002243
2244/// ParseConstructorInitializer - Parse a C++ constructor initializer,
2245/// which explicitly initializes the members or base classes of a
2246/// class (C++ [class.base.init]). For example, the three initializers
2247/// after the ':' in the Derived constructor below:
2248///
2249/// @code
2250/// class Base { };
2251/// class Derived : Base {
2252/// int x;
2253/// float f;
2254/// public:
2255/// Derived(float f) : Base(), x(17), f(f) { }
2256/// };
2257/// @endcode
2258///
Mike Stump1eb44332009-09-09 15:08:12 +00002259/// [C++] ctor-initializer:
2260/// ':' mem-initializer-list
Douglas Gregor7ad83902008-11-05 04:29:56 +00002261///
Mike Stump1eb44332009-09-09 15:08:12 +00002262/// [C++] mem-initializer-list:
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002263/// mem-initializer ...[opt]
2264/// mem-initializer ...[opt] , mem-initializer-list
John McCalld226f652010-08-21 09:40:31 +00002265void Parser::ParseConstructorInitializer(Decl *ConstructorDecl) {
Douglas Gregor7ad83902008-11-05 04:29:56 +00002266 assert(Tok.is(tok::colon) && "Constructor initializer always starts with ':'");
2267
John Wiegley28bbe4b2011-04-28 01:08:34 +00002268 // Poison the SEH identifiers so they are flagged as illegal in constructor initializers
2269 PoisonSEHIdentifiersRAIIObject PoisonSEHIdentifiers(*this, true);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002270 SourceLocation ColonLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00002271
Chris Lattner5f9e2722011-07-23 10:55:15 +00002272 SmallVector<CXXCtorInitializer*, 4> MemInitializers;
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002273 bool AnyErrors = false;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002274
Douglas Gregor7ad83902008-11-05 04:29:56 +00002275 do {
Douglas Gregor0133f522010-08-28 00:00:50 +00002276 if (Tok.is(tok::code_completion)) {
2277 Actions.CodeCompleteConstructorInitializer(ConstructorDecl,
2278 MemInitializers.data(),
2279 MemInitializers.size());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002280 return cutOffParsing();
Douglas Gregor0133f522010-08-28 00:00:50 +00002281 } else {
2282 MemInitResult MemInit = ParseMemInitializer(ConstructorDecl);
2283 if (!MemInit.isInvalid())
2284 MemInitializers.push_back(MemInit.get());
2285 else
2286 AnyErrors = true;
2287 }
2288
Douglas Gregor7ad83902008-11-05 04:29:56 +00002289 if (Tok.is(tok::comma))
2290 ConsumeToken();
2291 else if (Tok.is(tok::l_brace))
2292 break;
Douglas Gregorb1f6fa42010-09-07 14:35:10 +00002293 // If the next token looks like a base or member initializer, assume that
2294 // we're just missing a comma.
Douglas Gregor751f6922010-09-07 14:51:08 +00002295 else if (Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) {
2296 SourceLocation Loc = PP.getLocForEndOfToken(PrevTokLocation);
2297 Diag(Loc, diag::err_ctor_init_missing_comma)
2298 << FixItHint::CreateInsertion(Loc, ", ");
2299 } else {
Douglas Gregor7ad83902008-11-05 04:29:56 +00002300 // Skip over garbage, until we get to '{'. Don't eat the '{'.
Sebastian Redld3a413d2009-04-26 20:35:05 +00002301 Diag(Tok.getLocation(), diag::err_expected_lbrace_or_comma);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002302 SkipUntil(tok::l_brace, true, true);
2303 break;
2304 }
2305 } while (true);
2306
Mike Stump1eb44332009-09-09 15:08:12 +00002307 Actions.ActOnMemInitializers(ConstructorDecl, ColonLoc,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002308 MemInitializers.data(), MemInitializers.size(),
2309 AnyErrors);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002310}
2311
2312/// ParseMemInitializer - Parse a C++ member initializer, which is
2313/// part of a constructor initializer that explicitly initializes one
2314/// member or base class (C++ [class.base.init]). See
2315/// ParseConstructorInitializer for an example.
2316///
2317/// [C++] mem-initializer:
2318/// mem-initializer-id '(' expression-list[opt] ')'
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002319/// [C++0x] mem-initializer-id braced-init-list
Mike Stump1eb44332009-09-09 15:08:12 +00002320///
Douglas Gregor7ad83902008-11-05 04:29:56 +00002321/// [C++] mem-initializer-id:
2322/// '::'[opt] nested-name-specifier[opt] class-name
2323/// identifier
John McCalld226f652010-08-21 09:40:31 +00002324Parser::MemInitResult Parser::ParseMemInitializer(Decl *ConstructorDecl) {
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00002325 // parse '::'[opt] nested-name-specifier[opt]
2326 CXXScopeSpec SS;
John McCallb3d87482010-08-24 05:47:05 +00002327 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
2328 ParsedType TemplateTypeTy;
Fariborz Jahanian96174332009-07-01 19:21:19 +00002329 if (Tok.is(tok::annot_template_id)) {
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +00002330 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregord9b600c2010-01-12 17:52:59 +00002331 if (TemplateId->Kind == TNK_Type_template ||
2332 TemplateId->Kind == TNK_Dependent_template_name) {
Douglas Gregor059101f2011-03-02 00:47:37 +00002333 AnnotateTemplateIdTokenAsType();
Fariborz Jahanian96174332009-07-01 19:21:19 +00002334 assert(Tok.is(tok::annot_typename) && "template-id -> type failed");
John McCallb3d87482010-08-24 05:47:05 +00002335 TemplateTypeTy = getTypeAnnotation(Tok);
Fariborz Jahanian96174332009-07-01 19:21:19 +00002336 }
Fariborz Jahanian96174332009-07-01 19:21:19 +00002337 }
2338 if (!TemplateTypeTy && Tok.isNot(tok::identifier)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00002339 Diag(Tok, diag::err_expected_member_or_base_name);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002340 return true;
2341 }
Mike Stump1eb44332009-09-09 15:08:12 +00002342
Douglas Gregor7ad83902008-11-05 04:29:56 +00002343 // Get the identifier. This may be a member name or a class name,
2344 // but we'll let the semantic analysis determine which it is.
Fariborz Jahanian96174332009-07-01 19:21:19 +00002345 IdentifierInfo *II = Tok.is(tok::identifier) ? Tok.getIdentifierInfo() : 0;
Douglas Gregor7ad83902008-11-05 04:29:56 +00002346 SourceLocation IdLoc = ConsumeToken();
2347
2348 // Parse the '('.
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002349 if (getLang().CPlusPlus0x && Tok.is(tok::l_brace)) {
Richard Smith7fe62082011-10-15 05:09:34 +00002350 Diag(Tok, diag::warn_cxx98_compat_generalized_initializer_lists);
2351
Sebastian Redl6df65482011-09-24 17:48:25 +00002352 ExprResult InitList = ParseBraceInitializer();
2353 if (InitList.isInvalid())
2354 return true;
2355
2356 SourceLocation EllipsisLoc;
2357 if (Tok.is(tok::ellipsis))
2358 EllipsisLoc = ConsumeToken();
2359
2360 return Actions.ActOnMemInitializer(ConstructorDecl, getCurScope(), SS, II,
2361 TemplateTypeTy, IdLoc, InitList.take(),
2362 EllipsisLoc);
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002363 } else if(Tok.is(tok::l_paren)) {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002364 BalancedDelimiterTracker T(*this, tok::l_paren);
2365 T.consumeOpen();
Douglas Gregor7ad83902008-11-05 04:29:56 +00002366
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002367 // Parse the optional expression-list.
2368 ExprVector ArgExprs(Actions);
2369 CommaLocsTy CommaLocs;
2370 if (Tok.isNot(tok::r_paren) && ParseExpressionList(ArgExprs, CommaLocs)) {
2371 SkipUntil(tok::r_paren);
2372 return true;
2373 }
2374
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002375 T.consumeClose();
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002376
2377 SourceLocation EllipsisLoc;
2378 if (Tok.is(tok::ellipsis))
2379 EllipsisLoc = ConsumeToken();
2380
2381 return Actions.ActOnMemInitializer(ConstructorDecl, getCurScope(), SS, II,
2382 TemplateTypeTy, IdLoc,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002383 T.getOpenLocation(), ArgExprs.take(),
2384 ArgExprs.size(), T.getCloseLocation(),
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002385 EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002386 }
2387
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002388 Diag(Tok, getLang().CPlusPlus0x ? diag::err_expected_lparen_or_lbrace
2389 : diag::err_expected_lparen);
2390 return true;
Douglas Gregor7ad83902008-11-05 04:29:56 +00002391}
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002392
Sebastian Redl7acafd02011-03-05 14:45:16 +00002393/// \brief Parse a C++ exception-specification if present (C++0x [except.spec]).
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002394///
Douglas Gregora4745612008-12-01 18:00:20 +00002395/// exception-specification:
Sebastian Redl7acafd02011-03-05 14:45:16 +00002396/// dynamic-exception-specification
2397/// noexcept-specification
2398///
2399/// noexcept-specification:
2400/// 'noexcept'
2401/// 'noexcept' '(' constant-expression ')'
2402ExceptionSpecificationType
2403Parser::MaybeParseExceptionSpecification(SourceRange &SpecificationRange,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002404 SmallVectorImpl<ParsedType> &DynamicExceptions,
2405 SmallVectorImpl<SourceRange> &DynamicExceptionRanges,
Sebastian Redl7acafd02011-03-05 14:45:16 +00002406 ExprResult &NoexceptExpr) {
2407 ExceptionSpecificationType Result = EST_None;
2408
2409 // See if there's a dynamic specification.
2410 if (Tok.is(tok::kw_throw)) {
2411 Result = ParseDynamicExceptionSpecification(SpecificationRange,
2412 DynamicExceptions,
2413 DynamicExceptionRanges);
2414 assert(DynamicExceptions.size() == DynamicExceptionRanges.size() &&
2415 "Produced different number of exception types and ranges.");
2416 }
2417
2418 // If there's no noexcept specification, we're done.
2419 if (Tok.isNot(tok::kw_noexcept))
2420 return Result;
2421
Richard Smith841804b2011-10-17 23:06:20 +00002422 Diag(Tok, diag::warn_cxx98_compat_noexcept_decl);
2423
Sebastian Redl7acafd02011-03-05 14:45:16 +00002424 // If we already had a dynamic specification, parse the noexcept for,
2425 // recovery, but emit a diagnostic and don't store the results.
2426 SourceRange NoexceptRange;
2427 ExceptionSpecificationType NoexceptType = EST_None;
2428
2429 SourceLocation KeywordLoc = ConsumeToken();
2430 if (Tok.is(tok::l_paren)) {
2431 // There is an argument.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002432 BalancedDelimiterTracker T(*this, tok::l_paren);
2433 T.consumeOpen();
Sebastian Redl7acafd02011-03-05 14:45:16 +00002434 NoexceptType = EST_ComputedNoexcept;
2435 NoexceptExpr = ParseConstantExpression();
Sebastian Redl60618fa2011-03-12 11:50:43 +00002436 // The argument must be contextually convertible to bool. We use
2437 // ActOnBooleanCondition for this purpose.
2438 if (!NoexceptExpr.isInvalid())
2439 NoexceptExpr = Actions.ActOnBooleanCondition(getCurScope(), KeywordLoc,
2440 NoexceptExpr.get());
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002441 T.consumeClose();
2442 NoexceptRange = SourceRange(KeywordLoc, T.getCloseLocation());
Sebastian Redl7acafd02011-03-05 14:45:16 +00002443 } else {
2444 // There is no argument.
2445 NoexceptType = EST_BasicNoexcept;
2446 NoexceptRange = SourceRange(KeywordLoc, KeywordLoc);
2447 }
2448
2449 if (Result == EST_None) {
2450 SpecificationRange = NoexceptRange;
2451 Result = NoexceptType;
2452
2453 // If there's a dynamic specification after a noexcept specification,
2454 // parse that and ignore the results.
2455 if (Tok.is(tok::kw_throw)) {
2456 Diag(Tok.getLocation(), diag::err_dynamic_and_noexcept_specification);
2457 ParseDynamicExceptionSpecification(NoexceptRange, DynamicExceptions,
2458 DynamicExceptionRanges);
2459 }
2460 } else {
2461 Diag(Tok.getLocation(), diag::err_dynamic_and_noexcept_specification);
2462 }
2463
2464 return Result;
2465}
2466
2467/// ParseDynamicExceptionSpecification - Parse a C++
2468/// dynamic-exception-specification (C++ [except.spec]).
2469///
2470/// dynamic-exception-specification:
Douglas Gregora4745612008-12-01 18:00:20 +00002471/// 'throw' '(' type-id-list [opt] ')'
2472/// [MS] 'throw' '(' '...' ')'
Mike Stump1eb44332009-09-09 15:08:12 +00002473///
Douglas Gregora4745612008-12-01 18:00:20 +00002474/// type-id-list:
Douglas Gregora04426c2010-12-20 23:57:46 +00002475/// type-id ... [opt]
2476/// type-id-list ',' type-id ... [opt]
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002477///
Sebastian Redl7acafd02011-03-05 14:45:16 +00002478ExceptionSpecificationType Parser::ParseDynamicExceptionSpecification(
2479 SourceRange &SpecificationRange,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002480 SmallVectorImpl<ParsedType> &Exceptions,
2481 SmallVectorImpl<SourceRange> &Ranges) {
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002482 assert(Tok.is(tok::kw_throw) && "expected throw");
Mike Stump1eb44332009-09-09 15:08:12 +00002483
Sebastian Redl7acafd02011-03-05 14:45:16 +00002484 SpecificationRange.setBegin(ConsumeToken());
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002485 BalancedDelimiterTracker T(*this, tok::l_paren);
2486 if (T.consumeOpen()) {
Sebastian Redl7acafd02011-03-05 14:45:16 +00002487 Diag(Tok, diag::err_expected_lparen_after) << "throw";
2488 SpecificationRange.setEnd(SpecificationRange.getBegin());
Sebastian Redl60618fa2011-03-12 11:50:43 +00002489 return EST_DynamicNone;
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002490 }
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002491
Douglas Gregora4745612008-12-01 18:00:20 +00002492 // Parse throw(...), a Microsoft extension that means "this function
2493 // can throw anything".
2494 if (Tok.is(tok::ellipsis)) {
2495 SourceLocation EllipsisLoc = ConsumeToken();
Francois Pichet62ec1f22011-09-17 17:15:52 +00002496 if (!getLang().MicrosoftExt)
Douglas Gregora4745612008-12-01 18:00:20 +00002497 Diag(EllipsisLoc, diag::ext_ellipsis_exception_spec);
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002498 T.consumeClose();
2499 SpecificationRange.setEnd(T.getCloseLocation());
Sebastian Redl60618fa2011-03-12 11:50:43 +00002500 return EST_MSAny;
Douglas Gregora4745612008-12-01 18:00:20 +00002501 }
2502
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002503 // Parse the sequence of type-ids.
Sebastian Redlef65f062009-05-29 18:02:33 +00002504 SourceRange Range;
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002505 while (Tok.isNot(tok::r_paren)) {
Sebastian Redlef65f062009-05-29 18:02:33 +00002506 TypeResult Res(ParseTypeName(&Range));
Sebastian Redl7acafd02011-03-05 14:45:16 +00002507
Douglas Gregora04426c2010-12-20 23:57:46 +00002508 if (Tok.is(tok::ellipsis)) {
2509 // C++0x [temp.variadic]p5:
2510 // - In a dynamic-exception-specification (15.4); the pattern is a
2511 // type-id.
2512 SourceLocation Ellipsis = ConsumeToken();
Sebastian Redl7acafd02011-03-05 14:45:16 +00002513 Range.setEnd(Ellipsis);
Douglas Gregora04426c2010-12-20 23:57:46 +00002514 if (!Res.isInvalid())
2515 Res = Actions.ActOnPackExpansion(Res.get(), Ellipsis);
2516 }
Sebastian Redl7acafd02011-03-05 14:45:16 +00002517
Sebastian Redlef65f062009-05-29 18:02:33 +00002518 if (!Res.isInvalid()) {
Sebastian Redl7dc81342009-04-29 17:30:04 +00002519 Exceptions.push_back(Res.get());
Sebastian Redlef65f062009-05-29 18:02:33 +00002520 Ranges.push_back(Range);
2521 }
Douglas Gregora04426c2010-12-20 23:57:46 +00002522
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002523 if (Tok.is(tok::comma))
2524 ConsumeToken();
Sebastian Redl7dc81342009-04-29 17:30:04 +00002525 else
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002526 break;
2527 }
2528
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002529 T.consumeClose();
2530 SpecificationRange.setEnd(T.getCloseLocation());
Sebastian Redl60618fa2011-03-12 11:50:43 +00002531 return Exceptions.empty() ? EST_DynamicNone : EST_Dynamic;
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002532}
Douglas Gregor6569d682009-05-27 23:11:45 +00002533
Douglas Gregordab60ad2010-10-01 18:44:50 +00002534/// ParseTrailingReturnType - Parse a trailing return type on a new-style
2535/// function declaration.
Douglas Gregorae7902c2011-08-04 15:30:47 +00002536TypeResult Parser::ParseTrailingReturnType(SourceRange &Range) {
Douglas Gregordab60ad2010-10-01 18:44:50 +00002537 assert(Tok.is(tok::arrow) && "expected arrow");
2538
2539 ConsumeToken();
2540
2541 // FIXME: Need to suppress declarations when parsing this typename.
2542 // Otherwise in this function definition:
2543 //
2544 // auto f() -> struct X {}
2545 //
2546 // struct X is parsed as class definition because of the trailing
2547 // brace.
Douglas Gregordab60ad2010-10-01 18:44:50 +00002548 return ParseTypeName(&Range);
2549}
2550
Douglas Gregor6569d682009-05-27 23:11:45 +00002551/// \brief We have just started parsing the definition of a new class,
2552/// so push that class onto our stack of classes that is currently
2553/// being parsed.
John McCalleee1d542011-02-14 07:13:47 +00002554Sema::ParsingClassState
2555Parser::PushParsingClass(Decl *ClassDecl, bool NonNestedClass) {
Douglas Gregor26997fd2010-01-16 20:52:59 +00002556 assert((NonNestedClass || !ClassStack.empty()) &&
Douglas Gregor6569d682009-05-27 23:11:45 +00002557 "Nested class without outer class");
Douglas Gregor26997fd2010-01-16 20:52:59 +00002558 ClassStack.push(new ParsingClass(ClassDecl, NonNestedClass));
John McCalleee1d542011-02-14 07:13:47 +00002559 return Actions.PushParsingClass();
Douglas Gregor6569d682009-05-27 23:11:45 +00002560}
2561
2562/// \brief Deallocate the given parsed class and all of its nested
2563/// classes.
2564void Parser::DeallocateParsedClasses(Parser::ParsingClass *Class) {
Douglas Gregord54eb442010-10-12 16:25:54 +00002565 for (unsigned I = 0, N = Class->LateParsedDeclarations.size(); I != N; ++I)
2566 delete Class->LateParsedDeclarations[I];
Douglas Gregor6569d682009-05-27 23:11:45 +00002567 delete Class;
2568}
2569
2570/// \brief Pop the top class of the stack of classes that are
2571/// currently being parsed.
2572///
2573/// This routine should be called when we have finished parsing the
2574/// definition of a class, but have not yet popped the Scope
2575/// associated with the class's definition.
2576///
2577/// \returns true if the class we've popped is a top-level class,
2578/// false otherwise.
John McCalleee1d542011-02-14 07:13:47 +00002579void Parser::PopParsingClass(Sema::ParsingClassState state) {
Douglas Gregor6569d682009-05-27 23:11:45 +00002580 assert(!ClassStack.empty() && "Mismatched push/pop for class parsing");
Mike Stump1eb44332009-09-09 15:08:12 +00002581
John McCalleee1d542011-02-14 07:13:47 +00002582 Actions.PopParsingClass(state);
2583
Douglas Gregor6569d682009-05-27 23:11:45 +00002584 ParsingClass *Victim = ClassStack.top();
2585 ClassStack.pop();
2586 if (Victim->TopLevelClass) {
2587 // Deallocate all of the nested classes of this class,
2588 // recursively: we don't need to keep any of this information.
2589 DeallocateParsedClasses(Victim);
2590 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002591 }
Douglas Gregor6569d682009-05-27 23:11:45 +00002592 assert(!ClassStack.empty() && "Missing top-level class?");
2593
Douglas Gregord54eb442010-10-12 16:25:54 +00002594 if (Victim->LateParsedDeclarations.empty()) {
Douglas Gregor6569d682009-05-27 23:11:45 +00002595 // The victim is a nested class, but we will not need to perform
2596 // any processing after the definition of this class since it has
2597 // no members whose handling was delayed. Therefore, we can just
2598 // remove this nested class.
Douglas Gregord54eb442010-10-12 16:25:54 +00002599 DeallocateParsedClasses(Victim);
Douglas Gregor6569d682009-05-27 23:11:45 +00002600 return;
2601 }
2602
2603 // This nested class has some members that will need to be processed
2604 // after the top-level class is completely defined. Therefore, add
2605 // it to the list of nested classes within its parent.
Douglas Gregor23c94db2010-07-02 17:43:08 +00002606 assert(getCurScope()->isClassScope() && "Nested class outside of class scope?");
Douglas Gregord54eb442010-10-12 16:25:54 +00002607 ClassStack.top()->LateParsedDeclarations.push_back(new LateParsedClass(this, Victim));
Douglas Gregor23c94db2010-07-02 17:43:08 +00002608 Victim->TemplateScope = getCurScope()->getParent()->isTemplateParamScope();
Douglas Gregor6569d682009-05-27 23:11:45 +00002609}
Sean Huntbbd37c62009-11-21 08:43:09 +00002610
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002611/// ParseCXX0XAttributeSpecifier - Parse a C++0x attribute-specifier. Currently
2612/// only parses standard attributes.
Sean Huntbbd37c62009-11-21 08:43:09 +00002613///
2614/// [C++0x] attribute-specifier:
2615/// '[' '[' attribute-list ']' ']'
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002616/// alignment-specifier
Sean Huntbbd37c62009-11-21 08:43:09 +00002617///
2618/// [C++0x] attribute-list:
2619/// attribute[opt]
2620/// attribute-list ',' attribute[opt]
2621///
2622/// [C++0x] attribute:
2623/// attribute-token attribute-argument-clause[opt]
2624///
2625/// [C++0x] attribute-token:
2626/// identifier
2627/// attribute-scoped-token
2628///
2629/// [C++0x] attribute-scoped-token:
2630/// attribute-namespace '::' identifier
2631///
2632/// [C++0x] attribute-namespace:
2633/// identifier
2634///
2635/// [C++0x] attribute-argument-clause:
2636/// '(' balanced-token-seq ')'
2637///
2638/// [C++0x] balanced-token-seq:
2639/// balanced-token
2640/// balanced-token-seq balanced-token
2641///
2642/// [C++0x] balanced-token:
2643/// '(' balanced-token-seq ')'
2644/// '[' balanced-token-seq ']'
2645/// '{' balanced-token-seq '}'
2646/// any token but '(', ')', '[', ']', '{', or '}'
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002647void Parser::ParseCXX0XAttributeSpecifier(ParsedAttributes &attrs,
2648 SourceLocation *endLoc) {
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002649 if (Tok.is(tok::kw_alignas)) {
Richard Smith41be6732011-10-14 20:48:27 +00002650 Diag(Tok.getLocation(), diag::warn_cxx98_compat_alignas);
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002651 ParseAlignmentSpecifier(attrs, endLoc);
2652 return;
2653 }
2654
Sean Huntbbd37c62009-11-21 08:43:09 +00002655 assert(Tok.is(tok::l_square) && NextToken().is(tok::l_square)
2656 && "Not a C++0x attribute list");
2657
Richard Smith41be6732011-10-14 20:48:27 +00002658 Diag(Tok.getLocation(), diag::warn_cxx98_compat_attribute);
2659
Sean Huntbbd37c62009-11-21 08:43:09 +00002660 ConsumeBracket();
2661 ConsumeBracket();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002662
Sean Huntbbd37c62009-11-21 08:43:09 +00002663 if (Tok.is(tok::comma)) {
2664 Diag(Tok.getLocation(), diag::err_expected_ident);
2665 ConsumeToken();
2666 }
2667
2668 while (Tok.is(tok::identifier) || Tok.is(tok::comma)) {
2669 // attribute not present
2670 if (Tok.is(tok::comma)) {
2671 ConsumeToken();
2672 continue;
2673 }
2674
2675 IdentifierInfo *ScopeName = 0, *AttrName = Tok.getIdentifierInfo();
2676 SourceLocation ScopeLoc, AttrLoc = ConsumeToken();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002677
Sean Huntbbd37c62009-11-21 08:43:09 +00002678 // scoped attribute
2679 if (Tok.is(tok::coloncolon)) {
2680 ConsumeToken();
2681
2682 if (!Tok.is(tok::identifier)) {
2683 Diag(Tok.getLocation(), diag::err_expected_ident);
2684 SkipUntil(tok::r_square, tok::comma, true, true);
2685 continue;
2686 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002687
Sean Huntbbd37c62009-11-21 08:43:09 +00002688 ScopeName = AttrName;
2689 ScopeLoc = AttrLoc;
2690
2691 AttrName = Tok.getIdentifierInfo();
2692 AttrLoc = ConsumeToken();
2693 }
2694
2695 bool AttrParsed = false;
2696 // No scoped names are supported; ideally we could put all non-standard
2697 // attributes into namespaces.
2698 if (!ScopeName) {
2699 switch(AttributeList::getKind(AttrName))
2700 {
2701 // No arguments
Sean Hunt7725e672009-11-25 04:20:27 +00002702 case AttributeList::AT_carries_dependency:
Anders Carlsson15e14a22011-01-23 21:33:18 +00002703 case AttributeList::AT_noreturn: {
Sean Huntbbd37c62009-11-21 08:43:09 +00002704 if (Tok.is(tok::l_paren)) {
2705 Diag(Tok.getLocation(), diag::err_cxx0x_attribute_forbids_arguments)
2706 << AttrName->getName();
2707 break;
2708 }
2709
John McCall0b7e6782011-03-24 11:26:52 +00002710 attrs.addNew(AttrName, AttrLoc, 0, AttrLoc, 0,
2711 SourceLocation(), 0, 0, false, true);
Sean Huntbbd37c62009-11-21 08:43:09 +00002712 AttrParsed = true;
2713 break;
2714 }
2715
Sean Huntbbd37c62009-11-21 08:43:09 +00002716 // Silence warnings
2717 default: break;
2718 }
2719 }
2720
2721 // Skip the entire parameter clause, if any
2722 if (!AttrParsed && Tok.is(tok::l_paren)) {
2723 ConsumeParen();
2724 // SkipUntil maintains the balancedness of tokens.
2725 SkipUntil(tok::r_paren, false);
2726 }
2727 }
2728
2729 if (ExpectAndConsume(tok::r_square, diag::err_expected_rsquare))
2730 SkipUntil(tok::r_square, false);
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002731 if (endLoc)
2732 *endLoc = Tok.getLocation();
Sean Huntbbd37c62009-11-21 08:43:09 +00002733 if (ExpectAndConsume(tok::r_square, diag::err_expected_rsquare))
2734 SkipUntil(tok::r_square, false);
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002735}
Sean Huntbbd37c62009-11-21 08:43:09 +00002736
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002737/// ParseCXX0XAttributes - Parse a C++0x attribute-specifier-seq.
2738///
2739/// attribute-specifier-seq:
2740/// attribute-specifier-seq[opt] attribute-specifier
2741void Parser::ParseCXX0XAttributes(ParsedAttributesWithRange &attrs,
2742 SourceLocation *endLoc) {
2743 SourceLocation StartLoc = Tok.getLocation(), Loc;
2744 if (!endLoc)
2745 endLoc = &Loc;
2746
Douglas Gregor8828ee72011-10-07 20:35:25 +00002747 do {
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002748 ParseCXX0XAttributeSpecifier(attrs, endLoc);
Douglas Gregor8828ee72011-10-07 20:35:25 +00002749 } while (isCXX0XAttributeSpecifier());
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002750
2751 attrs.Range = SourceRange(StartLoc, *endLoc);
Sean Huntbbd37c62009-11-21 08:43:09 +00002752}
2753
Francois Pichet334d47e2010-10-11 12:59:39 +00002754/// ParseMicrosoftAttributes - Parse a Microsoft attribute [Attr]
2755///
2756/// [MS] ms-attribute:
2757/// '[' token-seq ']'
2758///
2759/// [MS] ms-attribute-seq:
2760/// ms-attribute[opt]
2761/// ms-attribute ms-attribute-seq
John McCall7f040a92010-12-24 02:08:15 +00002762void Parser::ParseMicrosoftAttributes(ParsedAttributes &attrs,
2763 SourceLocation *endLoc) {
Francois Pichet334d47e2010-10-11 12:59:39 +00002764 assert(Tok.is(tok::l_square) && "Not a Microsoft attribute list");
2765
2766 while (Tok.is(tok::l_square)) {
2767 ConsumeBracket();
2768 SkipUntil(tok::r_square, true, true);
John McCall7f040a92010-12-24 02:08:15 +00002769 if (endLoc) *endLoc = Tok.getLocation();
Francois Pichet334d47e2010-10-11 12:59:39 +00002770 ExpectAndConsume(tok::r_square, diag::err_expected_rsquare);
2771 }
2772}
Francois Pichet563a6452011-05-25 10:19:49 +00002773
2774void Parser::ParseMicrosoftIfExistsClassDeclaration(DeclSpec::TST TagType,
2775 AccessSpecifier& CurAS) {
Douglas Gregor3896fc52011-10-24 22:31:10 +00002776 IfExistsCondition Result;
Francois Pichet563a6452011-05-25 10:19:49 +00002777 if (ParseMicrosoftIfExistsCondition(Result))
2778 return;
2779
Douglas Gregor3896fc52011-10-24 22:31:10 +00002780 BalancedDelimiterTracker Braces(*this, tok::l_brace);
2781 if (Braces.consumeOpen()) {
Francois Pichet563a6452011-05-25 10:19:49 +00002782 Diag(Tok, diag::err_expected_lbrace);
2783 return;
2784 }
Francois Pichet563a6452011-05-25 10:19:49 +00002785
Douglas Gregor3896fc52011-10-24 22:31:10 +00002786 switch (Result.Behavior) {
2787 case IEB_Parse:
2788 // Parse the declarations below.
2789 break;
2790
2791 case IEB_Dependent:
2792 Diag(Result.KeywordLoc, diag::warn_microsoft_dependent_exists)
2793 << Result.IsIfExists;
2794 // Fall through to skip.
2795
2796 case IEB_Skip:
2797 Braces.skipToEnd();
Francois Pichet563a6452011-05-25 10:19:49 +00002798 return;
2799 }
2800
Douglas Gregor3896fc52011-10-24 22:31:10 +00002801 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
Francois Pichet563a6452011-05-25 10:19:49 +00002802 // __if_exists, __if_not_exists can nest.
2803 if ((Tok.is(tok::kw___if_exists) || Tok.is(tok::kw___if_not_exists))) {
2804 ParseMicrosoftIfExistsClassDeclaration((DeclSpec::TST)TagType, CurAS);
2805 continue;
2806 }
2807
2808 // Check for extraneous top-level semicolon.
2809 if (Tok.is(tok::semi)) {
2810 Diag(Tok, diag::ext_extra_struct_semi)
2811 << DeclSpec::getSpecifierName((DeclSpec::TST)TagType)
2812 << FixItHint::CreateRemoval(Tok.getLocation());
2813 ConsumeToken();
2814 continue;
2815 }
2816
2817 AccessSpecifier AS = getAccessSpecifierIfPresent();
2818 if (AS != AS_none) {
2819 // Current token is a C++ access specifier.
2820 CurAS = AS;
2821 SourceLocation ASLoc = Tok.getLocation();
2822 ConsumeToken();
2823 if (Tok.is(tok::colon))
2824 Actions.ActOnAccessSpecifier(AS, ASLoc, Tok.getLocation());
2825 else
2826 Diag(Tok, diag::err_expected_colon);
2827 ConsumeToken();
2828 continue;
2829 }
2830
2831 // Parse all the comma separated declarators.
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00002832 ParseCXXClassMemberDeclaration(CurAS, 0);
Francois Pichet563a6452011-05-25 10:19:49 +00002833 }
Douglas Gregor3896fc52011-10-24 22:31:10 +00002834
2835 Braces.consumeClose();
Francois Pichet563a6452011-05-25 10:19:49 +00002836}