blob: 472c64b2215b44980a342c832b05d00f638f6117 [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);
590
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000591 SourceLocation StaticAssertLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000592
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000593 BalancedDelimiterTracker T(*this, tok::l_paren);
594 if (T.consumeOpen()) {
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000595 Diag(Tok, diag::err_expected_lparen);
John McCalld226f652010-08-21 09:40:31 +0000596 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000597 }
Mike Stump1eb44332009-09-09 15:08:12 +0000598
John McCall60d7b3a2010-08-24 06:29:42 +0000599 ExprResult AssertExpr(ParseConstantExpression());
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000600 if (AssertExpr.isInvalid()) {
601 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000602 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000603 }
Mike Stump1eb44332009-09-09 15:08:12 +0000604
Anders Carlssonad5f9602009-03-13 23:29:20 +0000605 if (ExpectAndConsume(tok::comma, diag::err_expected_comma, "", tok::semi))
John McCalld226f652010-08-21 09:40:31 +0000606 return 0;
Anders Carlssonad5f9602009-03-13 23:29:20 +0000607
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000608 if (Tok.isNot(tok::string_literal)) {
609 Diag(Tok, diag::err_expected_string_literal);
610 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000611 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000612 }
Mike Stump1eb44332009-09-09 15:08:12 +0000613
John McCall60d7b3a2010-08-24 06:29:42 +0000614 ExprResult AssertMessage(ParseStringLiteralExpression());
Mike Stump1eb44332009-09-09 15:08:12 +0000615 if (AssertMessage.isInvalid())
John McCalld226f652010-08-21 09:40:31 +0000616 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000617
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000618 T.consumeClose();
Mike Stump1eb44332009-09-09 15:08:12 +0000619
Chris Lattner97144fc2009-04-02 04:16:50 +0000620 DeclEnd = Tok.getLocation();
Douglas Gregor9ba23b42010-09-07 15:23:11 +0000621 ExpectAndConsumeSemi(diag::err_expected_semi_after_static_assert);
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000622
John McCall9ae2f072010-08-23 23:25:46 +0000623 return Actions.ActOnStaticAssertDeclaration(StaticAssertLoc,
624 AssertExpr.take(),
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000625 AssertMessage.take(),
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000626 T.getCloseLocation());
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000627}
628
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000629/// ParseDecltypeSpecifier - Parse a C++0x decltype specifier.
630///
631/// 'decltype' ( expression )
632///
633void Parser::ParseDecltypeSpecifier(DeclSpec &DS) {
634 assert(Tok.is(tok::kw_decltype) && "Not a decltype specifier");
635
636 SourceLocation StartLoc = ConsumeToken();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000637 BalancedDelimiterTracker T(*this, tok::l_paren);
638 if (T.expectAndConsume(diag::err_expected_lparen_after,
639 "decltype", tok::r_paren)) {
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000640 return;
641 }
Mike Stump1eb44332009-09-09 15:08:12 +0000642
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000643 // Parse the expression
Mike Stump1eb44332009-09-09 15:08:12 +0000644
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000645 // C++0x [dcl.type.simple]p4:
646 // The operand of the decltype specifier is an unevaluated operand.
647 EnterExpressionEvaluationContext Unevaluated(Actions,
John McCallf312b1e2010-08-26 23:41:50 +0000648 Sema::Unevaluated);
John McCall60d7b3a2010-08-24 06:29:42 +0000649 ExprResult Result = ParseExpression();
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000650 if (Result.isInvalid()) {
651 SkipUntil(tok::r_paren);
652 return;
653 }
Mike Stump1eb44332009-09-09 15:08:12 +0000654
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000655 // Match the ')'
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000656 T.consumeClose();
657 if (T.getCloseLocation().isInvalid())
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000658 return;
659
660 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +0000661 unsigned DiagID;
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000662 // Check for duplicate type specifiers (e.g. "int decltype(a)").
Mike Stump1eb44332009-09-09 15:08:12 +0000663 if (DS.SetTypeSpecType(DeclSpec::TST_decltype, StartLoc, PrevSpec,
John McCallfec54012009-08-03 20:12:06 +0000664 DiagID, Result.release()))
665 Diag(StartLoc, DiagID) << PrevSpec;
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000666}
667
Sean Huntdb5d44b2011-05-19 05:37:45 +0000668void Parser::ParseUnderlyingTypeSpecifier(DeclSpec &DS) {
669 assert(Tok.is(tok::kw___underlying_type) &&
670 "Not an underlying type specifier");
671
672 SourceLocation StartLoc = ConsumeToken();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000673 BalancedDelimiterTracker T(*this, tok::l_paren);
674 if (T.expectAndConsume(diag::err_expected_lparen_after,
675 "__underlying_type", tok::r_paren)) {
Sean Huntdb5d44b2011-05-19 05:37:45 +0000676 return;
677 }
678
679 TypeResult Result = ParseTypeName();
680 if (Result.isInvalid()) {
681 SkipUntil(tok::r_paren);
682 return;
683 }
684
685 // Match the ')'
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000686 T.consumeClose();
687 if (T.getCloseLocation().isInvalid())
Sean Huntdb5d44b2011-05-19 05:37:45 +0000688 return;
689
690 const char *PrevSpec = 0;
691 unsigned DiagID;
Sean Huntca63c202011-05-24 22:41:36 +0000692 if (DS.SetTypeSpecType(DeclSpec::TST_underlyingType, StartLoc, PrevSpec,
Sean Huntdb5d44b2011-05-19 05:37:45 +0000693 DiagID, Result.release()))
694 Diag(StartLoc, DiagID) << PrevSpec;
695}
696
Douglas Gregor42a552f2008-11-05 20:51:48 +0000697/// ParseClassName - Parse a C++ class-name, which names a class. Note
698/// that we only check that the result names a type; semantic analysis
699/// will need to verify that the type names a class. The result is
Douglas Gregor7f43d672009-02-25 23:52:28 +0000700/// either a type or NULL, depending on whether a type name was
Douglas Gregor42a552f2008-11-05 20:51:48 +0000701/// found.
702///
703/// class-name: [C++ 9.1]
704/// identifier
Douglas Gregor7f43d672009-02-25 23:52:28 +0000705/// simple-template-id
Mike Stump1eb44332009-09-09 15:08:12 +0000706///
Douglas Gregor31a19b62009-04-01 21:51:26 +0000707Parser::TypeResult Parser::ParseClassName(SourceLocation &EndLocation,
Douglas Gregor059101f2011-03-02 00:47:37 +0000708 CXXScopeSpec &SS) {
Douglas Gregor7f43d672009-02-25 23:52:28 +0000709 // Check whether we have a template-id that names a type.
710 if (Tok.is(tok::annot_template_id)) {
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +0000711 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregord9b600c2010-01-12 17:52:59 +0000712 if (TemplateId->Kind == TNK_Type_template ||
713 TemplateId->Kind == TNK_Dependent_template_name) {
Douglas Gregor059101f2011-03-02 00:47:37 +0000714 AnnotateTemplateIdTokenAsType();
Douglas Gregor7f43d672009-02-25 23:52:28 +0000715
716 assert(Tok.is(tok::annot_typename) && "template-id -> type failed");
John McCallb3d87482010-08-24 05:47:05 +0000717 ParsedType Type = getTypeAnnotation(Tok);
Douglas Gregor7f43d672009-02-25 23:52:28 +0000718 EndLocation = Tok.getAnnotationEndLoc();
719 ConsumeToken();
Douglas Gregor31a19b62009-04-01 21:51:26 +0000720
721 if (Type)
722 return Type;
723 return true;
Douglas Gregor7f43d672009-02-25 23:52:28 +0000724 }
725
726 // Fall through to produce an error below.
727 }
728
Douglas Gregor42a552f2008-11-05 20:51:48 +0000729 if (Tok.isNot(tok::identifier)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000730 Diag(Tok, diag::err_expected_class_name);
Douglas Gregor31a19b62009-04-01 21:51:26 +0000731 return true;
Douglas Gregor42a552f2008-11-05 20:51:48 +0000732 }
733
Douglas Gregor84d0a192010-01-12 21:28:44 +0000734 IdentifierInfo *Id = Tok.getIdentifierInfo();
735 SourceLocation IdLoc = ConsumeToken();
736
737 if (Tok.is(tok::less)) {
738 // It looks the user intended to write a template-id here, but the
739 // template-name was wrong. Try to fix that.
740 TemplateNameKind TNK = TNK_Type_template;
741 TemplateTy Template;
Douglas Gregor23c94db2010-07-02 17:43:08 +0000742 if (!Actions.DiagnoseUnknownTemplateName(*Id, IdLoc, getCurScope(),
Douglas Gregor059101f2011-03-02 00:47:37 +0000743 &SS, Template, TNK)) {
Douglas Gregor84d0a192010-01-12 21:28:44 +0000744 Diag(IdLoc, diag::err_unknown_template_name)
745 << Id;
746 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000747
Douglas Gregor84d0a192010-01-12 21:28:44 +0000748 if (!Template)
749 return true;
750
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000751 // Form the template name
Douglas Gregor84d0a192010-01-12 21:28:44 +0000752 UnqualifiedId TemplateName;
753 TemplateName.setIdentifier(Id, IdLoc);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000754
Douglas Gregor84d0a192010-01-12 21:28:44 +0000755 // Parse the full template-id, then turn it into a type.
756 if (AnnotateTemplateIdToken(Template, TNK, SS, TemplateName,
757 SourceLocation(), true))
758 return true;
759 if (TNK == TNK_Dependent_template_name)
Douglas Gregor059101f2011-03-02 00:47:37 +0000760 AnnotateTemplateIdTokenAsType();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000761
Douglas Gregor84d0a192010-01-12 21:28:44 +0000762 // If we didn't end up with a typename token, there's nothing more we
763 // can do.
764 if (Tok.isNot(tok::annot_typename))
765 return true;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000766
Douglas Gregor84d0a192010-01-12 21:28:44 +0000767 // Retrieve the type from the annotation token, consume that token, and
768 // return.
769 EndLocation = Tok.getAnnotationEndLoc();
John McCallb3d87482010-08-24 05:47:05 +0000770 ParsedType Type = getTypeAnnotation(Tok);
Douglas Gregor84d0a192010-01-12 21:28:44 +0000771 ConsumeToken();
772 return Type;
773 }
774
Douglas Gregor42a552f2008-11-05 20:51:48 +0000775 // We have an identifier; check whether it is actually a type.
Douglas Gregor059101f2011-03-02 00:47:37 +0000776 ParsedType Type = Actions.getTypeName(*Id, IdLoc, getCurScope(), &SS, true,
Douglas Gregor9e876872011-03-01 18:12:44 +0000777 false, ParsedType(),
778 /*NonTrivialTypeSourceInfo=*/true);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000779 if (!Type) {
Douglas Gregor124b8782010-02-16 19:09:40 +0000780 Diag(IdLoc, diag::err_expected_class_name);
Douglas Gregor31a19b62009-04-01 21:51:26 +0000781 return true;
Douglas Gregor42a552f2008-11-05 20:51:48 +0000782 }
783
784 // Consume the identifier.
Douglas Gregor84d0a192010-01-12 21:28:44 +0000785 EndLocation = IdLoc;
Nick Lewycky56062202010-07-26 16:56:01 +0000786
787 // Fake up a Declarator to use with ActOnTypeName.
John McCall0b7e6782011-03-24 11:26:52 +0000788 DeclSpec DS(AttrFactory);
Nick Lewycky56062202010-07-26 16:56:01 +0000789 DS.SetRangeStart(IdLoc);
790 DS.SetRangeEnd(EndLocation);
Douglas Gregor059101f2011-03-02 00:47:37 +0000791 DS.getTypeSpecScope() = SS;
Nick Lewycky56062202010-07-26 16:56:01 +0000792
793 const char *PrevSpec = 0;
794 unsigned DiagID;
795 DS.SetTypeSpecType(TST_typename, IdLoc, PrevSpec, DiagID, Type);
796
797 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
798 return Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
Douglas Gregor42a552f2008-11-05 20:51:48 +0000799}
800
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000801/// ParseClassSpecifier - Parse a C++ class-specifier [C++ class] or
802/// elaborated-type-specifier [C++ dcl.type.elab]; we can't tell which
803/// until we reach the start of a definition or see a token that
Sebastian Redld9bafa72010-02-03 21:21:43 +0000804/// cannot start a definition. If SuppressDeclarations is true, we do know.
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000805///
806/// class-specifier: [C++ class]
807/// class-head '{' member-specification[opt] '}'
808/// class-head '{' member-specification[opt] '}' attributes[opt]
809/// class-head:
810/// class-key identifier[opt] base-clause[opt]
811/// class-key nested-name-specifier identifier base-clause[opt]
812/// class-key nested-name-specifier[opt] simple-template-id
813/// base-clause[opt]
814/// [GNU] class-key attributes[opt] identifier[opt] base-clause[opt]
Mike Stump1eb44332009-09-09 15:08:12 +0000815/// [GNU] class-key attributes[opt] nested-name-specifier
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000816/// identifier base-clause[opt]
Mike Stump1eb44332009-09-09 15:08:12 +0000817/// [GNU] class-key attributes[opt] nested-name-specifier[opt]
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000818/// simple-template-id base-clause[opt]
819/// class-key:
820/// 'class'
821/// 'struct'
822/// 'union'
823///
824/// elaborated-type-specifier: [C++ dcl.type.elab]
Mike Stump1eb44332009-09-09 15:08:12 +0000825/// class-key ::[opt] nested-name-specifier[opt] identifier
826/// class-key ::[opt] nested-name-specifier[opt] 'template'[opt]
827/// simple-template-id
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000828///
829/// Note that the C++ class-specifier and elaborated-type-specifier,
830/// together, subsume the C99 struct-or-union-specifier:
831///
832/// struct-or-union-specifier: [C99 6.7.2.1]
833/// struct-or-union identifier[opt] '{' struct-contents '}'
834/// struct-or-union identifier
835/// [GNU] struct-or-union attributes[opt] identifier[opt] '{' struct-contents
836/// '}' attributes[opt]
837/// [GNU] struct-or-union attributes[opt] identifier
838/// struct-or-union:
839/// 'struct'
840/// 'union'
Chris Lattner4c97d762009-04-12 21:49:30 +0000841void Parser::ParseClassSpecifier(tok::TokenKind TagTokKind,
842 SourceLocation StartLoc, DeclSpec &DS,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000843 const ParsedTemplateInfo &TemplateInfo,
Sebastian Redld9bafa72010-02-03 21:21:43 +0000844 AccessSpecifier AS, bool SuppressDeclarations){
Chris Lattner4c97d762009-04-12 21:49:30 +0000845 DeclSpec::TST TagType;
846 if (TagTokKind == tok::kw_struct)
847 TagType = DeclSpec::TST_struct;
848 else if (TagTokKind == tok::kw_class)
849 TagType = DeclSpec::TST_class;
850 else {
851 assert(TagTokKind == tok::kw_union && "Not a class specifier");
852 TagType = DeclSpec::TST_union;
853 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000854
Douglas Gregor374929f2009-09-18 15:37:17 +0000855 if (Tok.is(tok::code_completion)) {
856 // Code completion for a struct, class, or union name.
Douglas Gregor23c94db2010-07-02 17:43:08 +0000857 Actions.CodeCompleteTag(getCurScope(), TagType);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000858 return cutOffParsing();
Douglas Gregor374929f2009-09-18 15:37:17 +0000859 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000860
Chandler Carruth926c4b42010-06-28 08:39:25 +0000861 // C++03 [temp.explicit] 14.7.2/8:
862 // The usual access checking rules do not apply to names used to specify
863 // explicit instantiations.
864 //
865 // As an extension we do not perform access checking on the names used to
866 // specify explicit specializations either. This is important to allow
867 // specializing traits classes for private types.
868 bool SuppressingAccessChecks = false;
869 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation ||
870 TemplateInfo.Kind == ParsedTemplateInfo::ExplicitSpecialization) {
871 Actions.ActOnStartSuppressingAccessChecks();
872 SuppressingAccessChecks = true;
873 }
874
John McCall0b7e6782011-03-24 11:26:52 +0000875 ParsedAttributes attrs(AttrFactory);
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000876 // If attributes exist after tag, parse them.
877 if (Tok.is(tok::kw___attribute))
John McCall7f040a92010-12-24 02:08:15 +0000878 ParseGNUAttributes(attrs);
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000879
Steve Narofff59e17e2008-12-24 20:59:21 +0000880 // If declspecs exist after tag, parse them.
John McCallb1d397c2010-08-05 17:13:11 +0000881 while (Tok.is(tok::kw___declspec))
John McCall7f040a92010-12-24 02:08:15 +0000882 ParseMicrosoftDeclSpec(attrs);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000883
Sean Huntbbd37c62009-11-21 08:43:09 +0000884 // If C++0x attributes exist here, parse them.
885 // FIXME: Are we consistent with the ordering of parsing of different
886 // styles of attributes?
John McCall7f040a92010-12-24 02:08:15 +0000887 MaybeParseCXX0XAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +0000888
John Wiegley20c0da72011-04-27 23:09:49 +0000889 if (TagType == DeclSpec::TST_struct &&
Douglas Gregorb467cda2011-04-29 15:31:39 +0000890 !Tok.is(tok::identifier) &&
891 Tok.getIdentifierInfo() &&
892 (Tok.is(tok::kw___is_arithmetic) ||
893 Tok.is(tok::kw___is_convertible) ||
John Wiegley20c0da72011-04-27 23:09:49 +0000894 Tok.is(tok::kw___is_empty) ||
Douglas Gregorb467cda2011-04-29 15:31:39 +0000895 Tok.is(tok::kw___is_floating_point) ||
896 Tok.is(tok::kw___is_function) ||
John Wiegley20c0da72011-04-27 23:09:49 +0000897 Tok.is(tok::kw___is_fundamental) ||
Douglas Gregorb467cda2011-04-29 15:31:39 +0000898 Tok.is(tok::kw___is_integral) ||
899 Tok.is(tok::kw___is_member_function_pointer) ||
900 Tok.is(tok::kw___is_member_pointer) ||
901 Tok.is(tok::kw___is_pod) ||
902 Tok.is(tok::kw___is_pointer) ||
903 Tok.is(tok::kw___is_same) ||
Douglas Gregor877222e2011-04-29 01:38:03 +0000904 Tok.is(tok::kw___is_scalar) ||
Douglas Gregorb467cda2011-04-29 15:31:39 +0000905 Tok.is(tok::kw___is_signed) ||
906 Tok.is(tok::kw___is_unsigned) ||
907 Tok.is(tok::kw___is_void))) {
Douglas Gregor68876142011-07-30 07:01:49 +0000908 // GNU libstdc++ 4.2 and libc++ use certain intrinsic names as the
Douglas Gregorb467cda2011-04-29 15:31:39 +0000909 // name of struct templates, but some are keywords in GCC >= 4.3
910 // and Clang. Therefore, when we see the token sequence "struct
911 // X", make X into a normal identifier rather than a keyword, to
912 // allow libstdc++ 4.2 and libc++ to work properly.
Argyrios Kyrtzidis646395b2010-08-11 22:55:12 +0000913 Tok.getIdentifierInfo()->RevertTokenIDToIdentifier();
Douglas Gregorb117a602009-09-04 05:53:02 +0000914 Tok.setKind(tok::identifier);
915 }
Mike Stump1eb44332009-09-09 15:08:12 +0000916
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000917 // Parse the (optional) nested-name-specifier.
John McCallaa87d332009-12-12 11:40:51 +0000918 CXXScopeSpec &SS = DS.getTypeSpecScope();
Chris Lattner08d92ec2009-12-10 00:32:41 +0000919 if (getLang().CPlusPlus) {
920 // "FOO : BAR" is not a potential typo for "FOO::BAR".
921 ColonProtectionRAIIObject X(*this);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000922
John McCallb3d87482010-08-24 05:47:05 +0000923 if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(), true))
John McCall207014e2010-07-30 06:26:29 +0000924 DS.SetTypeSpecError();
John McCall9ba61662010-02-26 08:45:28 +0000925 if (SS.isSet())
Chris Lattner08d92ec2009-12-10 00:32:41 +0000926 if (Tok.isNot(tok::identifier) && Tok.isNot(tok::annot_template_id))
927 Diag(Tok, diag::err_expected_ident);
928 }
Douglas Gregorcc636682009-02-17 23:15:12 +0000929
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000930 TemplateParameterLists *TemplateParams = TemplateInfo.TemplateParams;
931
Douglas Gregorcc636682009-02-17 23:15:12 +0000932 // Parse the (optional) class name or simple-template-id.
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000933 IdentifierInfo *Name = 0;
934 SourceLocation NameLoc;
Douglas Gregor39a8de12009-02-25 19:37:18 +0000935 TemplateIdAnnotation *TemplateId = 0;
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000936 if (Tok.is(tok::identifier)) {
937 Name = Tok.getIdentifierInfo();
938 NameLoc = ConsumeToken();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000939
Douglas Gregor5ee37342010-05-30 22:30:21 +0000940 if (Tok.is(tok::less) && getLang().CPlusPlus) {
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000941 // The name was supposed to refer to a template, but didn't.
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000942 // Eat the template argument list and try to continue parsing this as
943 // a class (or template thereof).
944 TemplateArgList TemplateArgs;
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000945 SourceLocation LAngleLoc, RAngleLoc;
Douglas Gregor059101f2011-03-02 00:47:37 +0000946 if (ParseTemplateIdAfterTemplateName(TemplateTy(), NameLoc, SS,
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000947 true, LAngleLoc,
Douglas Gregor314b97f2009-11-10 19:49:08 +0000948 TemplateArgs, RAngleLoc)) {
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000949 // We couldn't parse the template argument list at all, so don't
950 // try to give any location information for the list.
951 LAngleLoc = RAngleLoc = SourceLocation();
952 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000953
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000954 Diag(NameLoc, diag::err_explicit_spec_non_template)
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000955 << (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation)
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000956 << (TagType == DeclSpec::TST_class? 0
957 : TagType == DeclSpec::TST_struct? 1
958 : 2)
959 << Name
960 << SourceRange(LAngleLoc, RAngleLoc);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000961
962 // Strip off the last template parameter list if it was empty, since
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000963 // we've removed its template argument list.
964 if (TemplateParams && TemplateInfo.LastParameterListWasEmpty) {
965 if (TemplateParams && TemplateParams->size() > 1) {
966 TemplateParams->pop_back();
967 } else {
968 TemplateParams = 0;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000969 const_cast<ParsedTemplateInfo&>(TemplateInfo).Kind
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000970 = ParsedTemplateInfo::NonTemplate;
971 }
972 } else if (TemplateInfo.Kind
973 == ParsedTemplateInfo::ExplicitInstantiation) {
974 // Pretend this is just a forward declaration.
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000975 TemplateParams = 0;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000976 const_cast<ParsedTemplateInfo&>(TemplateInfo).Kind
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000977 = ParsedTemplateInfo::NonTemplate;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000978 const_cast<ParsedTemplateInfo&>(TemplateInfo).TemplateLoc
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000979 = SourceLocation();
980 const_cast<ParsedTemplateInfo&>(TemplateInfo).ExternLoc
981 = SourceLocation();
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000982 }
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000983 }
Douglas Gregor39a8de12009-02-25 19:37:18 +0000984 } else if (Tok.is(tok::annot_template_id)) {
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +0000985 TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregor39a8de12009-02-25 19:37:18 +0000986 NameLoc = ConsumeToken();
Douglas Gregorcc636682009-02-17 23:15:12 +0000987
Douglas Gregor059101f2011-03-02 00:47:37 +0000988 if (TemplateId->Kind != TNK_Type_template &&
989 TemplateId->Kind != TNK_Dependent_template_name) {
Douglas Gregor39a8de12009-02-25 19:37:18 +0000990 // The template-name in the simple-template-id refers to
991 // something other than a class template. Give an appropriate
992 // error message and skip to the ';'.
993 SourceRange Range(NameLoc);
994 if (SS.isNotEmpty())
995 Range.setBegin(SS.getBeginLoc());
Douglas Gregorcc636682009-02-17 23:15:12 +0000996
Douglas Gregor39a8de12009-02-25 19:37:18 +0000997 Diag(TemplateId->LAngleLoc, diag::err_template_spec_syntax_non_template)
998 << Name << static_cast<int>(TemplateId->Kind) << Range;
Mike Stump1eb44332009-09-09 15:08:12 +0000999
Douglas Gregor39a8de12009-02-25 19:37:18 +00001000 DS.SetTypeSpecError();
1001 SkipUntil(tok::semi, false, true);
Chandler Carruth926c4b42010-06-28 08:39:25 +00001002 if (SuppressingAccessChecks)
1003 Actions.ActOnStopSuppressingAccessChecks();
1004
Douglas Gregor39a8de12009-02-25 19:37:18 +00001005 return;
Douglas Gregorcc636682009-02-17 23:15:12 +00001006 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001007 }
1008
Chandler Carruth926c4b42010-06-28 08:39:25 +00001009 // As soon as we're finished parsing the class's template-id, turn access
1010 // checking back on.
1011 if (SuppressingAccessChecks)
1012 Actions.ActOnStopSuppressingAccessChecks();
1013
John McCall67d1a672009-08-06 02:15:43 +00001014 // There are four options here. If we have 'struct foo;', then this
1015 // is either a forward declaration or a friend declaration, which
Anders Carlssoncc54d592011-01-22 16:56:46 +00001016 // have to be treated differently. If we have 'struct foo {...',
Anders Carlsson1d209272011-03-25 14:55:14 +00001017 // 'struct foo :...' or 'struct foo final[opt]' then this is a
Anders Carlssoncc54d592011-01-22 16:56:46 +00001018 // definition. Otherwise we have something like 'struct foo xyz', a reference.
Sebastian Redld9bafa72010-02-03 21:21:43 +00001019 // However, in some contexts, things look like declarations but are just
1020 // references, e.g.
1021 // new struct s;
1022 // or
1023 // &T::operator struct s;
1024 // For these, SuppressDeclarations is true.
John McCallf312b1e2010-08-26 23:41:50 +00001025 Sema::TagUseKind TUK;
Sebastian Redld9bafa72010-02-03 21:21:43 +00001026 if (SuppressDeclarations)
John McCallf312b1e2010-08-26 23:41:50 +00001027 TUK = Sema::TUK_Reference;
Anders Carlssoncc54d592011-01-22 16:56:46 +00001028 else if (Tok.is(tok::l_brace) ||
1029 (getLang().CPlusPlus && Tok.is(tok::colon)) ||
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001030 isCXX0XFinalKeyword()) {
Douglas Gregord85bea22009-09-26 06:47:28 +00001031 if (DS.isFriendSpecified()) {
1032 // C++ [class.friend]p2:
1033 // A class shall not be defined in a friend declaration.
1034 Diag(Tok.getLocation(), diag::err_friend_decl_defines_class)
1035 << SourceRange(DS.getFriendSpecLoc());
1036
1037 // Skip everything up to the semicolon, so that this looks like a proper
1038 // friend class (or template thereof) declaration.
1039 SkipUntil(tok::semi, true, true);
John McCallf312b1e2010-08-26 23:41:50 +00001040 TUK = Sema::TUK_Friend;
Douglas Gregord85bea22009-09-26 06:47:28 +00001041 } else {
1042 // Okay, this is a class definition.
John McCallf312b1e2010-08-26 23:41:50 +00001043 TUK = Sema::TUK_Definition;
Douglas Gregord85bea22009-09-26 06:47:28 +00001044 }
1045 } else if (Tok.is(tok::semi))
John McCallf312b1e2010-08-26 23:41:50 +00001046 TUK = DS.isFriendSpecified() ? Sema::TUK_Friend : Sema::TUK_Declaration;
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001047 else
John McCallf312b1e2010-08-26 23:41:50 +00001048 TUK = Sema::TUK_Reference;
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001049
John McCall207014e2010-07-30 06:26:29 +00001050 if (!Name && !TemplateId && (DS.getTypeSpecType() == DeclSpec::TST_error ||
John McCallf312b1e2010-08-26 23:41:50 +00001051 TUK != Sema::TUK_Definition)) {
John McCall207014e2010-07-30 06:26:29 +00001052 if (DS.getTypeSpecType() != DeclSpec::TST_error) {
1053 // We have a declaration or reference to an anonymous class.
1054 Diag(StartLoc, diag::err_anon_type_definition)
1055 << DeclSpec::getSpecifierName(TagType);
1056 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001057
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001058 SkipUntil(tok::comma, true);
1059 return;
1060 }
1061
Douglas Gregorddc29e12009-02-06 22:42:48 +00001062 // Create the tag portion of the class or class template.
John McCalld226f652010-08-21 09:40:31 +00001063 DeclResult TagOrTempResult = true; // invalid
1064 TypeResult TypeResult = true; // invalid
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001065
Douglas Gregor402abb52009-05-28 23:31:59 +00001066 bool Owned = false;
John McCallf1bbbb42009-09-04 01:14:41 +00001067 if (TemplateId) {
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001068 // Explicit specialization, class template partial specialization,
1069 // or explicit instantiation.
Mike Stump1eb44332009-09-09 15:08:12 +00001070 ASTTemplateArgsPtr TemplateArgsPtr(Actions,
Douglas Gregor39a8de12009-02-25 19:37:18 +00001071 TemplateId->getTemplateArgs(),
Douglas Gregor39a8de12009-02-25 19:37:18 +00001072 TemplateId->NumArgs);
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001073 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallf312b1e2010-08-26 23:41:50 +00001074 TUK == Sema::TUK_Declaration) {
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001075 // This is an explicit instantiation of a class template.
1076 TagOrTempResult
Douglas Gregor23c94db2010-07-02 17:43:08 +00001077 = Actions.ActOnExplicitInstantiation(getCurScope(),
Douglas Gregor45f96552009-09-04 06:33:52 +00001078 TemplateInfo.ExternLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001079 TemplateInfo.TemplateLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001080 TagType,
Mike Stump1eb44332009-09-09 15:08:12 +00001081 StartLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001082 SS,
John McCall2b5289b2010-08-23 07:28:44 +00001083 TemplateId->Template,
Mike Stump1eb44332009-09-09 15:08:12 +00001084 TemplateId->TemplateNameLoc,
1085 TemplateId->LAngleLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001086 TemplateArgsPtr,
Mike Stump1eb44332009-09-09 15:08:12 +00001087 TemplateId->RAngleLoc,
John McCall7f040a92010-12-24 02:08:15 +00001088 attrs.getList());
John McCall74256f52010-04-14 00:24:33 +00001089
1090 // Friend template-ids are treated as references unless
1091 // they have template headers, in which case they're ill-formed
1092 // (FIXME: "template <class T> friend class A<T>::B<int>;").
1093 // We diagnose this error in ActOnClassTemplateSpecialization.
John McCallf312b1e2010-08-26 23:41:50 +00001094 } else if (TUK == Sema::TUK_Reference ||
1095 (TUK == Sema::TUK_Friend &&
John McCall74256f52010-04-14 00:24:33 +00001096 TemplateInfo.Kind == ParsedTemplateInfo::NonTemplate)) {
Douglas Gregor059101f2011-03-02 00:47:37 +00001097 TypeResult = Actions.ActOnTagTemplateIdType(TUK, TagType,
1098 StartLoc,
1099 TemplateId->SS,
1100 TemplateId->Template,
1101 TemplateId->TemplateNameLoc,
1102 TemplateId->LAngleLoc,
1103 TemplateArgsPtr,
1104 TemplateId->RAngleLoc);
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001105 } else {
1106 // This is an explicit specialization or a class template
1107 // partial specialization.
1108 TemplateParameterLists FakedParamLists;
1109
1110 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation) {
1111 // This looks like an explicit instantiation, because we have
1112 // something like
1113 //
1114 // template class Foo<X>
1115 //
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001116 // but it actually has a definition. Most likely, this was
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001117 // meant to be an explicit specialization, but the user forgot
1118 // the '<>' after 'template'.
John McCallf312b1e2010-08-26 23:41:50 +00001119 assert(TUK == Sema::TUK_Definition && "Expected a definition here");
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001120
Mike Stump1eb44332009-09-09 15:08:12 +00001121 SourceLocation LAngleLoc
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001122 = PP.getLocForEndOfToken(TemplateInfo.TemplateLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00001123 Diag(TemplateId->TemplateNameLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001124 diag::err_explicit_instantiation_with_definition)
1125 << SourceRange(TemplateInfo.TemplateLoc)
Douglas Gregor849b2432010-03-31 17:46:05 +00001126 << FixItHint::CreateInsertion(LAngleLoc, "<>");
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001127
1128 // Create a fake template parameter list that contains only
1129 // "template<>", so that we treat this construct as a class
1130 // template specialization.
1131 FakedParamLists.push_back(
Mike Stump1eb44332009-09-09 15:08:12 +00001132 Actions.ActOnTemplateParameterList(0, SourceLocation(),
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001133 TemplateInfo.TemplateLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001134 LAngleLoc,
1135 0, 0,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001136 LAngleLoc));
1137 TemplateParams = &FakedParamLists;
1138 }
1139
1140 // Build the class template specialization.
1141 TagOrTempResult
Douglas Gregor23c94db2010-07-02 17:43:08 +00001142 = Actions.ActOnClassTemplateSpecialization(getCurScope(), TagType, TUK,
Douglas Gregord023aec2011-09-09 20:53:38 +00001143 StartLoc, DS.getModulePrivateSpecLoc(), SS,
John McCall2b5289b2010-08-23 07:28:44 +00001144 TemplateId->Template,
Mike Stump1eb44332009-09-09 15:08:12 +00001145 TemplateId->TemplateNameLoc,
1146 TemplateId->LAngleLoc,
Douglas Gregor39a8de12009-02-25 19:37:18 +00001147 TemplateArgsPtr,
Mike Stump1eb44332009-09-09 15:08:12 +00001148 TemplateId->RAngleLoc,
John McCall7f040a92010-12-24 02:08:15 +00001149 attrs.getList(),
John McCallf312b1e2010-08-26 23:41:50 +00001150 MultiTemplateParamsArg(Actions,
Douglas Gregorcc636682009-02-17 23:15:12 +00001151 TemplateParams? &(*TemplateParams)[0] : 0,
1152 TemplateParams? TemplateParams->size() : 0));
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001153 }
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001154 } else if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallf312b1e2010-08-26 23:41:50 +00001155 TUK == Sema::TUK_Declaration) {
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001156 // Explicit instantiation of a member of a class template
1157 // specialization, e.g.,
1158 //
1159 // template struct Outer<int>::Inner;
1160 //
1161 TagOrTempResult
Douglas Gregor23c94db2010-07-02 17:43:08 +00001162 = Actions.ActOnExplicitInstantiation(getCurScope(),
Douglas Gregor45f96552009-09-04 06:33:52 +00001163 TemplateInfo.ExternLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001164 TemplateInfo.TemplateLoc,
1165 TagType, StartLoc, SS, Name,
John McCall7f040a92010-12-24 02:08:15 +00001166 NameLoc, attrs.getList());
John McCall9a34edb2010-10-19 01:40:49 +00001167 } else if (TUK == Sema::TUK_Friend &&
1168 TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate) {
1169 TagOrTempResult =
1170 Actions.ActOnTemplatedFriendTag(getCurScope(), DS.getFriendSpecLoc(),
1171 TagType, StartLoc, SS,
John McCall7f040a92010-12-24 02:08:15 +00001172 Name, NameLoc, attrs.getList(),
John McCall9a34edb2010-10-19 01:40:49 +00001173 MultiTemplateParamsArg(Actions,
1174 TemplateParams? &(*TemplateParams)[0] : 0,
1175 TemplateParams? TemplateParams->size() : 0));
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001176 } else {
1177 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallf312b1e2010-08-26 23:41:50 +00001178 TUK == Sema::TUK_Definition) {
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001179 // FIXME: Diagnose this particular error.
1180 }
1181
John McCallc4e70192009-09-11 04:59:25 +00001182 bool IsDependent = false;
1183
John McCalla25c4082010-10-19 18:40:57 +00001184 // Don't pass down template parameter lists if this is just a tag
1185 // reference. For example, we don't need the template parameters here:
1186 // template <class T> class A *makeA(T t);
1187 MultiTemplateParamsArg TParams;
1188 if (TUK != Sema::TUK_Reference && TemplateParams)
1189 TParams =
1190 MultiTemplateParamsArg(&(*TemplateParams)[0], TemplateParams->size());
1191
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001192 // Declaration or definition of a class type
John McCall9a34edb2010-10-19 01:40:49 +00001193 TagOrTempResult = Actions.ActOnTag(getCurScope(), TagType, TUK, StartLoc,
John McCall7f040a92010-12-24 02:08:15 +00001194 SS, Name, NameLoc, attrs.getList(), AS,
Douglas Gregore7612302011-09-09 19:05:14 +00001195 DS.getModulePrivateSpecLoc(),
John McCalla25c4082010-10-19 18:40:57 +00001196 TParams, Owned, IsDependent, false,
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +00001197 false, clang::TypeResult());
John McCallc4e70192009-09-11 04:59:25 +00001198
1199 // If ActOnTag said the type was dependent, try again with the
1200 // less common call.
John McCall9a34edb2010-10-19 01:40:49 +00001201 if (IsDependent) {
1202 assert(TUK == Sema::TUK_Reference || TUK == Sema::TUK_Friend);
Douglas Gregor23c94db2010-07-02 17:43:08 +00001203 TypeResult = Actions.ActOnDependentTag(getCurScope(), TagType, TUK,
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001204 SS, Name, StartLoc, NameLoc);
John McCall9a34edb2010-10-19 01:40:49 +00001205 }
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001206 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001207
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001208 // If there is a body, parse it and inform the actions module.
John McCallf312b1e2010-08-26 23:41:50 +00001209 if (TUK == Sema::TUK_Definition) {
John McCallbd0dfa52009-12-19 21:48:58 +00001210 assert(Tok.is(tok::l_brace) ||
Anders Carlssoncc54d592011-01-22 16:56:46 +00001211 (getLang().CPlusPlus && Tok.is(tok::colon)) ||
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001212 isCXX0XFinalKeyword());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001213 if (getLang().CPlusPlus)
Douglas Gregor212e81c2009-03-25 00:13:59 +00001214 ParseCXXMemberSpecification(StartLoc, TagType, TagOrTempResult.get());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001215 else
Douglas Gregor212e81c2009-03-25 00:13:59 +00001216 ParseStructUnionBody(StartLoc, TagType, TagOrTempResult.get());
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001217 }
1218
John McCallb3d87482010-08-24 05:47:05 +00001219 const char *PrevSpec = 0;
1220 unsigned DiagID;
1221 bool Result;
John McCallc4e70192009-09-11 04:59:25 +00001222 if (!TypeResult.isInvalid()) {
Abramo Bagnara0daaf322011-03-16 20:16:18 +00001223 Result = DS.SetTypeSpecType(DeclSpec::TST_typename, StartLoc,
1224 NameLoc.isValid() ? NameLoc : StartLoc,
John McCallb3d87482010-08-24 05:47:05 +00001225 PrevSpec, DiagID, TypeResult.get());
John McCallc4e70192009-09-11 04:59:25 +00001226 } else if (!TagOrTempResult.isInvalid()) {
Abramo Bagnara0daaf322011-03-16 20:16:18 +00001227 Result = DS.SetTypeSpecType(TagType, StartLoc,
1228 NameLoc.isValid() ? NameLoc : StartLoc,
1229 PrevSpec, DiagID, TagOrTempResult.get(), Owned);
John McCallc4e70192009-09-11 04:59:25 +00001230 } else {
Douglas Gregorddc29e12009-02-06 22:42:48 +00001231 DS.SetTypeSpecError();
Anders Carlsson66e99772009-05-11 22:27:47 +00001232 return;
1233 }
Mike Stump1eb44332009-09-09 15:08:12 +00001234
John McCallb3d87482010-08-24 05:47:05 +00001235 if (Result)
John McCallfec54012009-08-03 20:12:06 +00001236 Diag(StartLoc, DiagID) << PrevSpec;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001237
Chris Lattner4ed5d912010-02-02 01:23:29 +00001238 // At this point, we've successfully parsed a class-specifier in 'definition'
1239 // form (e.g. "struct foo { int x; }". While we could just return here, we're
1240 // going to look at what comes after it to improve error recovery. If an
1241 // impossible token occurs next, we assume that the programmer forgot a ; at
1242 // the end of the declaration and recover that way.
1243 //
1244 // This switch enumerates the valid "follow" set for definition.
John McCallf312b1e2010-08-26 23:41:50 +00001245 if (TUK == Sema::TUK_Definition) {
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001246 bool ExpectedSemi = true;
Chris Lattner4ed5d912010-02-02 01:23:29 +00001247 switch (Tok.getKind()) {
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001248 default: break;
Chris Lattner4ed5d912010-02-02 01:23:29 +00001249 case tok::semi: // struct foo {...} ;
Chris Lattner99c95202010-02-02 17:32:27 +00001250 case tok::star: // struct foo {...} * P;
1251 case tok::amp: // struct foo {...} & R = ...
1252 case tok::identifier: // struct foo {...} V ;
1253 case tok::r_paren: //(struct foo {...} ) {4}
1254 case tok::annot_cxxscope: // struct foo {...} a:: b;
1255 case tok::annot_typename: // struct foo {...} a ::b;
1256 case tok::annot_template_id: // struct foo {...} a<int> ::b;
Chris Lattnerc2e1c1a2010-02-03 20:41:24 +00001257 case tok::l_paren: // struct foo {...} ( x);
Chris Lattner16acfee2010-02-03 01:45:03 +00001258 case tok::comma: // __builtin_offsetof(struct foo{...} ,
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001259 ExpectedSemi = false;
1260 break;
1261 // Type qualifiers
1262 case tok::kw_const: // struct foo {...} const x;
1263 case tok::kw_volatile: // struct foo {...} volatile x;
1264 case tok::kw_restrict: // struct foo {...} restrict x;
1265 case tok::kw_inline: // struct foo {...} inline foo() {};
Chris Lattner99c95202010-02-02 17:32:27 +00001266 // Storage-class specifiers
1267 case tok::kw_static: // struct foo {...} static x;
1268 case tok::kw_extern: // struct foo {...} extern x;
1269 case tok::kw_typedef: // struct foo {...} typedef x;
1270 case tok::kw_register: // struct foo {...} register x;
1271 case tok::kw_auto: // struct foo {...} auto x;
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001272 case tok::kw_mutable: // struct foo {...} mutable x;
1273 case tok::kw_constexpr: // struct foo {...} constexpr x;
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001274 // As shown above, type qualifiers and storage class specifiers absolutely
1275 // can occur after class specifiers according to the grammar. However,
Chris Lattnerfc8f0e12011-04-15 05:22:18 +00001276 // almost no one actually writes code like this. If we see one of these,
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001277 // it is much more likely that someone missed a semi colon and the
1278 // type/storage class specifier we're seeing is part of the *next*
1279 // intended declaration, as in:
1280 //
1281 // struct foo { ... }
1282 // typedef int X;
1283 //
1284 // We'd really like to emit a missing semicolon error instead of emitting
1285 // an error on the 'int' saying that you can't have two type specifiers in
1286 // the same declaration of X. Because of this, we look ahead past this
1287 // token to see if it's a type specifier. If so, we know the code is
1288 // otherwise invalid, so we can produce the expected semi error.
1289 if (!isKnownToBeTypeSpecifier(NextToken()))
1290 ExpectedSemi = false;
Chris Lattner4ed5d912010-02-02 01:23:29 +00001291 break;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001292
1293 case tok::r_brace: // struct bar { struct foo {...} }
Chris Lattner4ed5d912010-02-02 01:23:29 +00001294 // Missing ';' at end of struct is accepted as an extension in C mode.
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001295 if (!getLang().CPlusPlus)
1296 ExpectedSemi = false;
1297 break;
1298 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001299
Richard Smithcf6b0a22011-07-14 21:35:26 +00001300 // C++ [temp]p3 In a template-declaration which defines a class, no
1301 // declarator is permitted.
1302 if (TemplateInfo.Kind)
1303 ExpectedSemi = true;
1304
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001305 if (ExpectedSemi) {
Chris Lattner4ed5d912010-02-02 01:23:29 +00001306 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_tagdecl,
1307 TagType == DeclSpec::TST_class ? "class"
1308 : TagType == DeclSpec::TST_struct? "struct" : "union");
1309 // Push this token back into the preprocessor and change our current token
1310 // to ';' so that the rest of the code recovers as though there were an
1311 // ';' after the definition.
1312 PP.EnterToken(Tok);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001313 Tok.setKind(tok::semi);
Chris Lattner4ed5d912010-02-02 01:23:29 +00001314 }
1315 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001316}
1317
Mike Stump1eb44332009-09-09 15:08:12 +00001318/// ParseBaseClause - Parse the base-clause of a C++ class [C++ class.derived].
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001319///
1320/// base-clause : [C++ class.derived]
1321/// ':' base-specifier-list
1322/// base-specifier-list:
1323/// base-specifier '...'[opt]
1324/// base-specifier-list ',' base-specifier '...'[opt]
John McCalld226f652010-08-21 09:40:31 +00001325void Parser::ParseBaseClause(Decl *ClassDecl) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001326 assert(Tok.is(tok::colon) && "Not a base clause");
1327 ConsumeToken();
1328
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001329 // Build up an array of parsed base specifiers.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001330 SmallVector<CXXBaseSpecifier *, 8> BaseInfo;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001331
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001332 while (true) {
1333 // Parse a base-specifier.
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001334 BaseResult Result = ParseBaseSpecifier(ClassDecl);
Douglas Gregor5ac8aff2009-01-26 22:44:13 +00001335 if (Result.isInvalid()) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001336 // Skip the rest of this base specifier, up until the comma or
1337 // opening brace.
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001338 SkipUntil(tok::comma, tok::l_brace, true, true);
1339 } else {
1340 // Add this to our array of base specifiers.
Douglas Gregor5ac8aff2009-01-26 22:44:13 +00001341 BaseInfo.push_back(Result.get());
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001342 }
1343
1344 // If the next token is a comma, consume it and keep reading
1345 // base-specifiers.
1346 if (Tok.isNot(tok::comma)) break;
Mike Stump1eb44332009-09-09 15:08:12 +00001347
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001348 // Consume the comma.
1349 ConsumeToken();
1350 }
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001351
1352 // Attach the base specifiers
Jay Foadbeaaccd2009-05-21 09:52:38 +00001353 Actions.ActOnBaseSpecifiers(ClassDecl, BaseInfo.data(), BaseInfo.size());
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001354}
1355
1356/// ParseBaseSpecifier - Parse a C++ base-specifier. A base-specifier is
1357/// one entry in the base class list of a class specifier, for example:
1358/// class foo : public bar, virtual private baz {
1359/// 'public bar' and 'virtual private baz' are each base-specifiers.
1360///
1361/// base-specifier: [C++ class.derived]
1362/// ::[opt] nested-name-specifier[opt] class-name
1363/// 'virtual' access-specifier[opt] ::[opt] nested-name-specifier[opt]
1364/// class-name
1365/// access-specifier 'virtual'[opt] ::[opt] nested-name-specifier[opt]
1366/// class-name
John McCalld226f652010-08-21 09:40:31 +00001367Parser::BaseResult Parser::ParseBaseSpecifier(Decl *ClassDecl) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001368 bool IsVirtual = false;
1369 SourceLocation StartLoc = Tok.getLocation();
1370
1371 // Parse the 'virtual' keyword.
1372 if (Tok.is(tok::kw_virtual)) {
1373 ConsumeToken();
1374 IsVirtual = true;
1375 }
1376
1377 // Parse an (optional) access specifier.
1378 AccessSpecifier Access = getAccessSpecifierIfPresent();
John McCall92f88312010-01-23 00:46:32 +00001379 if (Access != AS_none)
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001380 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001381
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001382 // Parse the 'virtual' keyword (again!), in case it came after the
1383 // access specifier.
1384 if (Tok.is(tok::kw_virtual)) {
1385 SourceLocation VirtualLoc = ConsumeToken();
1386 if (IsVirtual) {
1387 // Complain about duplicate 'virtual'
Chris Lattner1ab3b962008-11-18 07:48:38 +00001388 Diag(VirtualLoc, diag::err_dup_virtual)
Douglas Gregor849b2432010-03-31 17:46:05 +00001389 << FixItHint::CreateRemoval(VirtualLoc);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001390 }
1391
1392 IsVirtual = true;
1393 }
1394
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001395 // Parse optional '::' and optional nested-name-specifier.
1396 CXXScopeSpec SS;
John McCallb3d87482010-08-24 05:47:05 +00001397 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), /*EnteringContext=*/false);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001398
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001399 // The location of the base class itself.
1400 SourceLocation BaseLoc = Tok.getLocation();
Douglas Gregor42a552f2008-11-05 20:51:48 +00001401
1402 // Parse the class-name.
Douglas Gregor7f43d672009-02-25 23:52:28 +00001403 SourceLocation EndLocation;
Douglas Gregor059101f2011-03-02 00:47:37 +00001404 TypeResult BaseType = ParseClassName(EndLocation, SS);
Douglas Gregor31a19b62009-04-01 21:51:26 +00001405 if (BaseType.isInvalid())
Douglas Gregor42a552f2008-11-05 20:51:48 +00001406 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001407
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001408 // Parse the optional ellipsis (for a pack expansion). The ellipsis is
1409 // actually part of the base-specifier-list grammar productions, but we
1410 // parse it here for convenience.
1411 SourceLocation EllipsisLoc;
1412 if (Tok.is(tok::ellipsis))
1413 EllipsisLoc = ConsumeToken();
1414
Mike Stump1eb44332009-09-09 15:08:12 +00001415 // Find the complete source range for the base-specifier.
Douglas Gregor7f43d672009-02-25 23:52:28 +00001416 SourceRange Range(StartLoc, EndLocation);
Mike Stump1eb44332009-09-09 15:08:12 +00001417
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001418 // Notify semantic analysis that we have parsed a complete
1419 // base-specifier.
Sebastian Redla55e52c2008-11-25 22:21:31 +00001420 return Actions.ActOnBaseSpecifier(ClassDecl, Range, IsVirtual, Access,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001421 BaseType.get(), BaseLoc, EllipsisLoc);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001422}
1423
1424/// getAccessSpecifierIfPresent - Determine whether the next token is
1425/// a C++ access-specifier.
1426///
1427/// access-specifier: [C++ class.derived]
1428/// 'private'
1429/// 'protected'
1430/// 'public'
Mike Stump1eb44332009-09-09 15:08:12 +00001431AccessSpecifier Parser::getAccessSpecifierIfPresent() const {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001432 switch (Tok.getKind()) {
1433 default: return AS_none;
1434 case tok::kw_private: return AS_private;
1435 case tok::kw_protected: return AS_protected;
1436 case tok::kw_public: return AS_public;
1437 }
1438}
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001439
Eli Friedmand33133c2009-07-22 21:45:50 +00001440void Parser::HandleMemberFunctionDefaultArgs(Declarator& DeclaratorInfo,
John McCalld226f652010-08-21 09:40:31 +00001441 Decl *ThisDecl) {
Eli Friedmand33133c2009-07-22 21:45:50 +00001442 // We just declared a member function. If this member function
1443 // has any default arguments, we'll need to parse them later.
1444 LateParsedMethodDeclaration *LateMethod = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001445 DeclaratorChunk::FunctionTypeInfo &FTI
Abramo Bagnara075f8f12010-12-10 16:29:40 +00001446 = DeclaratorInfo.getFunctionTypeInfo();
Eli Friedmand33133c2009-07-22 21:45:50 +00001447 for (unsigned ParamIdx = 0; ParamIdx < FTI.NumArgs; ++ParamIdx) {
1448 if (LateMethod || FTI.ArgInfo[ParamIdx].DefaultArgTokens) {
1449 if (!LateMethod) {
1450 // Push this method onto the stack of late-parsed method
1451 // declarations.
Douglas Gregord54eb442010-10-12 16:25:54 +00001452 LateMethod = new LateParsedMethodDeclaration(this, ThisDecl);
1453 getCurrentClass().LateParsedDeclarations.push_back(LateMethod);
Douglas Gregor23c94db2010-07-02 17:43:08 +00001454 LateMethod->TemplateScope = getCurScope()->isTemplateParamScope();
Eli Friedmand33133c2009-07-22 21:45:50 +00001455
1456 // Add all of the parameters prior to this one (they don't
1457 // have default arguments).
1458 LateMethod->DefaultArgs.reserve(FTI.NumArgs);
1459 for (unsigned I = 0; I < ParamIdx; ++I)
1460 LateMethod->DefaultArgs.push_back(
Douglas Gregor8f8210c2010-03-02 01:29:43 +00001461 LateParsedDefaultArgument(FTI.ArgInfo[I].Param));
Eli Friedmand33133c2009-07-22 21:45:50 +00001462 }
1463
1464 // Add this parameter to the list of parameters (it or may
1465 // not have a default argument).
1466 LateMethod->DefaultArgs.push_back(
1467 LateParsedDefaultArgument(FTI.ArgInfo[ParamIdx].Param,
1468 FTI.ArgInfo[ParamIdx].DefaultArgTokens));
1469 }
1470 }
1471}
1472
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001473/// isCXX0XVirtSpecifier - Determine whether the next token is a C++0x
1474/// virt-specifier.
1475///
1476/// virt-specifier:
1477/// override
1478/// final
Anders Carlssoncc54d592011-01-22 16:56:46 +00001479VirtSpecifiers::Specifier Parser::isCXX0XVirtSpecifier() const {
Anders Carlssonce93a7c2011-01-22 23:01:49 +00001480 if (!getLang().CPlusPlus)
Anders Carlssoncc54d592011-01-22 16:56:46 +00001481 return VirtSpecifiers::VS_None;
1482
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001483 if (Tok.is(tok::identifier)) {
1484 IdentifierInfo *II = Tok.getIdentifierInfo();
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001485
Anders Carlsson7eeb4ec2011-01-20 03:47:08 +00001486 // Initialize the contextual keywords.
1487 if (!Ident_final) {
1488 Ident_final = &PP.getIdentifierTable().get("final");
1489 Ident_override = &PP.getIdentifierTable().get("override");
1490 }
1491
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001492 if (II == Ident_override)
1493 return VirtSpecifiers::VS_Override;
1494
1495 if (II == Ident_final)
1496 return VirtSpecifiers::VS_Final;
1497 }
1498
1499 return VirtSpecifiers::VS_None;
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001500}
1501
1502/// ParseOptionalCXX0XVirtSpecifierSeq - Parse a virt-specifier-seq.
1503///
1504/// virt-specifier-seq:
1505/// virt-specifier
1506/// virt-specifier-seq virt-specifier
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001507void Parser::ParseOptionalCXX0XVirtSpecifierSeq(VirtSpecifiers &VS) {
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001508 while (true) {
Anders Carlssoncc54d592011-01-22 16:56:46 +00001509 VirtSpecifiers::Specifier Specifier = isCXX0XVirtSpecifier();
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001510 if (Specifier == VirtSpecifiers::VS_None)
1511 return;
1512
1513 // C++ [class.mem]p8:
1514 // A virt-specifier-seq shall contain at most one of each virt-specifier.
Anders Carlssoncc54d592011-01-22 16:56:46 +00001515 const char *PrevSpec = 0;
Anders Carlsson46127a92011-01-22 15:58:16 +00001516 if (VS.SetSpecifier(Specifier, Tok.getLocation(), PrevSpec))
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001517 Diag(Tok.getLocation(), diag::err_duplicate_virt_specifier)
1518 << PrevSpec
1519 << FixItHint::CreateRemoval(Tok.getLocation());
1520
Richard Smith7fe62082011-10-15 05:09:34 +00001521 Diag(Tok.getLocation(), getLang().CPlusPlus0x ?
1522 diag::warn_cxx98_compat_override_control_keyword :
1523 diag::ext_override_control_keyword)
1524 << VirtSpecifiers::getSpecifierName(Specifier);
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001525 ConsumeToken();
1526 }
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001527}
1528
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001529/// isCXX0XFinalKeyword - Determine whether the next token is a C++0x
1530/// contextual 'final' keyword.
1531bool Parser::isCXX0XFinalKeyword() const {
Anders Carlssonce93a7c2011-01-22 23:01:49 +00001532 if (!getLang().CPlusPlus)
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001533 return false;
Anders Carlssoncc54d592011-01-22 16:56:46 +00001534
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001535 if (!Tok.is(tok::identifier))
1536 return false;
Anders Carlssoncc54d592011-01-22 16:56:46 +00001537
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001538 // Initialize the contextual keywords.
1539 if (!Ident_final) {
1540 Ident_final = &PP.getIdentifierTable().get("final");
1541 Ident_override = &PP.getIdentifierTable().get("override");
1542 }
Anders Carlssoncc54d592011-01-22 16:56:46 +00001543
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001544 return Tok.getIdentifierInfo() == Ident_final;
Anders Carlssoncc54d592011-01-22 16:56:46 +00001545}
1546
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001547/// ParseCXXClassMemberDeclaration - Parse a C++ class member declaration.
1548///
1549/// member-declaration:
1550/// decl-specifier-seq[opt] member-declarator-list[opt] ';'
1551/// function-definition ';'[opt]
1552/// ::[opt] nested-name-specifier template[opt] unqualified-id ';'[TODO]
1553/// using-declaration [TODO]
Anders Carlsson511d7ab2009-03-11 16:27:10 +00001554/// [C++0x] static_assert-declaration
Anders Carlsson5aeccdb2009-03-26 00:52:18 +00001555/// template-declaration
Chris Lattnerbc8d5642008-12-18 01:12:00 +00001556/// [GNU] '__extension__' member-declaration
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001557///
1558/// member-declarator-list:
1559/// member-declarator
1560/// member-declarator-list ',' member-declarator
1561///
1562/// member-declarator:
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001563/// declarator virt-specifier-seq[opt] pure-specifier[opt]
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001564/// declarator constant-initializer[opt]
Richard Smith7a614d82011-06-11 17:19:42 +00001565/// [C++11] declarator brace-or-equal-initializer[opt]
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001566/// identifier[opt] ':' constant-expression
1567///
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001568/// virt-specifier-seq:
1569/// virt-specifier
1570/// virt-specifier-seq virt-specifier
1571///
1572/// virt-specifier:
1573/// override
1574/// final
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001575///
Sebastian Redle2b68332009-04-12 17:16:29 +00001576/// pure-specifier:
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001577/// '= 0'
1578///
1579/// constant-initializer:
1580/// '=' constant-expression
1581///
Douglas Gregor37b372b2009-08-20 22:52:58 +00001582void Parser::ParseCXXClassMemberDeclaration(AccessSpecifier AS,
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001583 AttributeList *AccessAttrs,
John McCallc9068d72010-07-16 08:13:16 +00001584 const ParsedTemplateInfo &TemplateInfo,
1585 ParsingDeclRAIIObject *TemplateDiags) {
Douglas Gregor8a9013d2011-04-14 17:21:19 +00001586 if (Tok.is(tok::at)) {
1587 if (getLang().ObjC1 && NextToken().isObjCAtKeyword(tok::objc_defs))
1588 Diag(Tok, diag::err_at_defs_cxx);
1589 else
1590 Diag(Tok, diag::err_at_in_class);
1591
1592 ConsumeToken();
1593 SkipUntil(tok::r_brace);
1594 return;
1595 }
1596
John McCall60fa3cf2009-12-11 02:10:03 +00001597 // Access declarations.
1598 if (!TemplateInfo.Kind &&
1599 (Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) &&
John McCall9ba61662010-02-26 08:45:28 +00001600 !TryAnnotateCXXScopeToken() &&
John McCall60fa3cf2009-12-11 02:10:03 +00001601 Tok.is(tok::annot_cxxscope)) {
1602 bool isAccessDecl = false;
1603 if (NextToken().is(tok::identifier))
1604 isAccessDecl = GetLookAheadToken(2).is(tok::semi);
1605 else
1606 isAccessDecl = NextToken().is(tok::kw_operator);
1607
1608 if (isAccessDecl) {
1609 // Collect the scope specifier token we annotated earlier.
1610 CXXScopeSpec SS;
John McCallb3d87482010-08-24 05:47:05 +00001611 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
John McCall60fa3cf2009-12-11 02:10:03 +00001612
1613 // Try to parse an unqualified-id.
1614 UnqualifiedId Name;
John McCallb3d87482010-08-24 05:47:05 +00001615 if (ParseUnqualifiedId(SS, false, true, true, ParsedType(), Name)) {
John McCall60fa3cf2009-12-11 02:10:03 +00001616 SkipUntil(tok::semi);
1617 return;
1618 }
1619
1620 // TODO: recover from mistakenly-qualified operator declarations.
1621 if (ExpectAndConsume(tok::semi,
1622 diag::err_expected_semi_after,
1623 "access declaration",
1624 tok::semi))
1625 return;
1626
Douglas Gregor23c94db2010-07-02 17:43:08 +00001627 Actions.ActOnUsingDeclaration(getCurScope(), AS,
John McCall60fa3cf2009-12-11 02:10:03 +00001628 false, SourceLocation(),
1629 SS, Name,
1630 /* AttrList */ 0,
1631 /* IsTypeName */ false,
1632 SourceLocation());
1633 return;
1634 }
1635 }
1636
Anders Carlsson511d7ab2009-03-11 16:27:10 +00001637 // static_assert-declaration
Peter Collingbournec6eb44b2011-04-15 00:35:57 +00001638 if (Tok.is(tok::kw_static_assert) || Tok.is(tok::kw__Static_assert)) {
Douglas Gregor37b372b2009-08-20 22:52:58 +00001639 // FIXME: Check for templates
Chris Lattner97144fc2009-04-02 04:16:50 +00001640 SourceLocation DeclEnd;
1641 ParseStaticAssertDeclaration(DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +00001642 return;
1643 }
Mike Stump1eb44332009-09-09 15:08:12 +00001644
Chris Lattner682bf922009-03-29 16:50:03 +00001645 if (Tok.is(tok::kw_template)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001646 assert(!TemplateInfo.TemplateParams &&
Douglas Gregor37b372b2009-08-20 22:52:58 +00001647 "Nested template improperly parsed?");
Chris Lattner97144fc2009-04-02 04:16:50 +00001648 SourceLocation DeclEnd;
Mike Stump1eb44332009-09-09 15:08:12 +00001649 ParseDeclarationStartingWithTemplate(Declarator::MemberContext, DeclEnd,
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001650 AS, AccessAttrs);
Chris Lattner682bf922009-03-29 16:50:03 +00001651 return;
1652 }
Anders Carlsson5aeccdb2009-03-26 00:52:18 +00001653
Chris Lattnerbc8d5642008-12-18 01:12:00 +00001654 // Handle: member-declaration ::= '__extension__' member-declaration
1655 if (Tok.is(tok::kw___extension__)) {
1656 // __extension__ silences extension warnings in the subexpression.
1657 ExtensionRAIIObject O(Diags); // Use RAII to do this.
1658 ConsumeToken();
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001659 return ParseCXXClassMemberDeclaration(AS, AccessAttrs,
1660 TemplateInfo, TemplateDiags);
Chris Lattnerbc8d5642008-12-18 01:12:00 +00001661 }
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001662
Chris Lattner4ed5d912010-02-02 01:23:29 +00001663 // Don't parse FOO:BAR as if it were a typo for FOO::BAR, in this context it
1664 // is a bitfield.
Chris Lattnera1efc8c2009-12-10 01:59:24 +00001665 ColonProtectionRAIIObject X(*this);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001666
John McCall0b7e6782011-03-24 11:26:52 +00001667 ParsedAttributesWithRange attrs(AttrFactory);
Sean Huntbbd37c62009-11-21 08:43:09 +00001668 // Optional C++0x attribute-specifier
John McCall7f040a92010-12-24 02:08:15 +00001669 MaybeParseCXX0XAttributes(attrs);
1670 MaybeParseMicrosoftAttributes(attrs);
Sean Huntbbd37c62009-11-21 08:43:09 +00001671
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001672 if (Tok.is(tok::kw_using)) {
John McCall7f040a92010-12-24 02:08:15 +00001673 ProhibitAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +00001674
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001675 // Eat 'using'.
1676 SourceLocation UsingLoc = ConsumeToken();
1677
1678 if (Tok.is(tok::kw_namespace)) {
1679 Diag(UsingLoc, diag::err_using_namespace_in_class);
1680 SkipUntil(tok::semi, true, true);
Chris Lattnerae50d502010-02-02 00:43:15 +00001681 } else {
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001682 SourceLocation DeclEnd;
Richard Smith3e4c6c42011-05-05 21:57:07 +00001683 // Otherwise, it must be a using-declaration or an alias-declaration.
John McCall78b81052010-11-10 02:40:36 +00001684 ParseUsingDeclaration(Declarator::MemberContext, TemplateInfo,
1685 UsingLoc, DeclEnd, AS);
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001686 }
1687 return;
1688 }
1689
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001690 // decl-specifier-seq:
1691 // Parse the common declaration-specifiers piece.
John McCallc9068d72010-07-16 08:13:16 +00001692 ParsingDeclSpec DS(*this, TemplateDiags);
John McCall7f040a92010-12-24 02:08:15 +00001693 DS.takeAttributesFrom(attrs);
Douglas Gregor37b372b2009-08-20 22:52:58 +00001694 ParseDeclarationSpecifiers(DS, TemplateInfo, AS, DSC_class);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001695
John McCallf312b1e2010-08-26 23:41:50 +00001696 MultiTemplateParamsArg TemplateParams(Actions,
John McCalldd4a3b02009-09-16 22:47:08 +00001697 TemplateInfo.TemplateParams? TemplateInfo.TemplateParams->data() : 0,
1698 TemplateInfo.TemplateParams? TemplateInfo.TemplateParams->size() : 0);
1699
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001700 if (Tok.is(tok::semi)) {
1701 ConsumeToken();
John McCalld226f652010-08-21 09:40:31 +00001702 Decl *TheDecl =
Chandler Carruth0f4be742011-05-03 18:35:10 +00001703 Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS, DS, TemplateParams);
John McCallc9068d72010-07-16 08:13:16 +00001704 DS.complete(TheDecl);
John McCall67d1a672009-08-06 02:15:43 +00001705 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001706 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001707
John McCall54abf7d2009-11-04 02:18:39 +00001708 ParsingDeclarator DeclaratorInfo(*this, DS, Declarator::MemberContext);
Nico Weber48673472011-01-28 06:07:34 +00001709 VirtSpecifiers VS;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001710
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001711 // Hold late-parsed attributes so we can attach a Decl to them later.
1712 LateParsedAttrList LateParsedAttrs;
1713
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001714 if (Tok.isNot(tok::colon)) {
Chris Lattnera1efc8c2009-12-10 01:59:24 +00001715 // Don't parse FOO:BAR as if it were a typo for FOO::BAR.
1716 ColonProtectionRAIIObject X(*this);
1717
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001718 // Parse the first declarator.
1719 ParseDeclarator(DeclaratorInfo);
1720 // Error parsing the declarator?
Douglas Gregor10bd3682008-11-17 22:58:34 +00001721 if (!DeclaratorInfo.hasName()) {
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001722 // If so, skip until the semi-colon or a }.
Sebastian Redld941fa42011-04-24 16:27:48 +00001723 SkipUntil(tok::r_brace, true, true);
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001724 if (Tok.is(tok::semi))
1725 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001726 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001727 }
1728
Nico Weber48673472011-01-28 06:07:34 +00001729 ParseOptionalCXX0XVirtSpecifierSeq(VS);
1730
John Thompson1b2fc0f2009-11-25 22:58:06 +00001731 // If attributes exist after the declarator, but before an '{', parse them.
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001732 MaybeParseGNUAttributes(DeclaratorInfo, &LateParsedAttrs);
John Thompson1b2fc0f2009-11-25 22:58:06 +00001733
Francois Pichet6a247472011-05-11 02:14:46 +00001734 // MSVC permits pure specifier on inline functions declared at class scope.
1735 // Hence check for =0 before checking for function definition.
Douglas Gregor147545d2011-10-10 14:49:18 +00001736 ExprResult Init;
Francois Pichet62ec1f22011-09-17 17:15:52 +00001737 if (getLang().MicrosoftExt && Tok.is(tok::equal) &&
Francois Pichet6a247472011-05-11 02:14:46 +00001738 DeclaratorInfo.isFunctionDeclarator() &&
1739 NextToken().is(tok::numeric_constant)) {
1740 ConsumeToken();
1741 Init = ParseInitializer();
1742 if (Init.isInvalid())
1743 SkipUntil(tok::comma, true, true);
1744 }
1745
Sean Hunte4246a62011-05-12 06:15:49 +00001746 bool IsDefinition = false;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001747 // function-definition:
Richard Smith7a614d82011-06-11 17:19:42 +00001748 //
1749 // In C++11, a non-function declarator followed by an open brace is a
1750 // braced-init-list for an in-class member initialization, not an
1751 // erroneous function definition.
1752 if (Tok.is(tok::l_brace) && !getLang().CPlusPlus0x) {
Sean Hunte4246a62011-05-12 06:15:49 +00001753 IsDefinition = true;
1754 } else if (DeclaratorInfo.isFunctionDeclarator()) {
Richard Smith7a614d82011-06-11 17:19:42 +00001755 if (Tok.is(tok::l_brace) || Tok.is(tok::colon) || Tok.is(tok::kw_try)) {
Sean Hunte4246a62011-05-12 06:15:49 +00001756 IsDefinition = true;
1757 } else if (Tok.is(tok::equal)) {
1758 const Token &KW = NextToken();
1759 if (KW.is(tok::kw_default) || KW.is(tok::kw_delete))
1760 IsDefinition = true;
1761 }
1762 }
1763
1764 if (IsDefinition) {
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001765 if (!DeclaratorInfo.isFunctionDeclarator()) {
1766 Diag(Tok, diag::err_func_def_no_params);
1767 ConsumeBrace();
1768 SkipUntil(tok::r_brace, true);
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001769
1770 // Consume the optional ';'
1771 if (Tok.is(tok::semi))
1772 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001773 return;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001774 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001775
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001776 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
1777 Diag(Tok, diag::err_function_declared_typedef);
1778 // This recovery skips the entire function body. It would be nice
1779 // to simply call ParseCXXInlineMethodDef() below, however Sema
1780 // assumes the declarator represents a function, not a typedef.
1781 ConsumeBrace();
1782 SkipUntil(tok::r_brace, true);
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001783
1784 // Consume the optional ';'
1785 if (Tok.is(tok::semi))
1786 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001787 return;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001788 }
1789
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001790 Decl *FunDecl =
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001791 ParseCXXInlineMethodDef(AS, AccessAttrs, DeclaratorInfo, TemplateInfo,
1792 VS, Init);
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001793
1794 for (unsigned i = 0, ni = LateParsedAttrs.size(); i < ni; ++i) {
1795 LateParsedAttrs[i]->setDecl(FunDecl);
1796 }
1797 LateParsedAttrs.clear();
Sean Hunte4246a62011-05-12 06:15:49 +00001798
1799 // Consume the ';' - it's optional unless we have a delete or default
1800 if (Tok.is(tok::semi)) {
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001801 ConsumeToken();
Sean Hunte4246a62011-05-12 06:15:49 +00001802 }
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001803
Chris Lattner682bf922009-03-29 16:50:03 +00001804 return;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001805 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001806 }
1807
1808 // member-declarator-list:
1809 // member-declarator
1810 // member-declarator-list ',' member-declarator
1811
Chris Lattner5f9e2722011-07-23 10:55:15 +00001812 SmallVector<Decl *, 8> DeclsInGroup;
John McCall60d7b3a2010-08-24 06:29:42 +00001813 ExprResult BitfieldSize;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001814
1815 while (1) {
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001816 // member-declarator:
1817 // declarator pure-specifier[opt]
Richard Smith7a614d82011-06-11 17:19:42 +00001818 // declarator brace-or-equal-initializer[opt]
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001819 // identifier[opt] ':' constant-expression
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001820 if (Tok.is(tok::colon)) {
1821 ConsumeToken();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001822 BitfieldSize = ParseConstantExpression();
1823 if (BitfieldSize.isInvalid())
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001824 SkipUntil(tok::comma, true, true);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001825 }
Mike Stump1eb44332009-09-09 15:08:12 +00001826
Chris Lattnere6563252010-06-13 05:34:18 +00001827 // If a simple-asm-expr is present, parse it.
1828 if (Tok.is(tok::kw_asm)) {
1829 SourceLocation Loc;
John McCall60d7b3a2010-08-24 06:29:42 +00001830 ExprResult AsmLabel(ParseSimpleAsm(&Loc));
Chris Lattnere6563252010-06-13 05:34:18 +00001831 if (AsmLabel.isInvalid())
1832 SkipUntil(tok::comma, true, true);
1833
1834 DeclaratorInfo.setAsmLabel(AsmLabel.release());
1835 DeclaratorInfo.SetRangeEnd(Loc);
1836 }
1837
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001838 // If attributes exist after the declarator, parse them.
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001839 MaybeParseGNUAttributes(DeclaratorInfo, &LateParsedAttrs);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001840
Richard Smith7a614d82011-06-11 17:19:42 +00001841 // FIXME: When g++ adds support for this, we'll need to check whether it
1842 // goes before or after the GNU attributes and __asm__.
1843 ParseOptionalCXX0XVirtSpecifierSeq(VS);
1844
Douglas Gregor147545d2011-10-10 14:49:18 +00001845 bool HasInitializer = false;
Richard Smith7a614d82011-06-11 17:19:42 +00001846 bool HasDeferredInitializer = false;
1847 if (Tok.is(tok::equal) || Tok.is(tok::l_brace)) {
1848 if (BitfieldSize.get()) {
1849 Diag(Tok, diag::err_bitfield_member_init);
1850 SkipUntil(tok::comma, true, true);
1851 } else {
Douglas Gregor147545d2011-10-10 14:49:18 +00001852 HasInitializer = true;
Douglas Gregor555f57e2011-06-25 00:56:27 +00001853 HasDeferredInitializer = !DeclaratorInfo.isDeclarationOfFunction() &&
Richard Smith7a614d82011-06-11 17:19:42 +00001854 DeclaratorInfo.getDeclSpec().getStorageClassSpec()
Richard Smithc2cdd532011-06-12 11:43:46 +00001855 != DeclSpec::SCS_static &&
1856 DeclaratorInfo.getDeclSpec().getStorageClassSpec()
1857 != DeclSpec::SCS_typedef;
Richard Smith7a614d82011-06-11 17:19:42 +00001858 }
1859 }
1860
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001861 // NOTE: If Sema is the Action module and declarator is an instance field,
Chris Lattner682bf922009-03-29 16:50:03 +00001862 // this call will *not* return the created decl; It will return null.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001863 // See Sema::ActOnCXXMemberDeclarator for details.
John McCall67d1a672009-08-06 02:15:43 +00001864
John McCalld226f652010-08-21 09:40:31 +00001865 Decl *ThisDecl = 0;
John McCall67d1a672009-08-06 02:15:43 +00001866 if (DS.isFriendSpecified()) {
John McCallbbbcdd92009-09-11 21:02:39 +00001867 // TODO: handle initializers, bitfields, 'delete'
Douglas Gregor23c94db2010-07-02 17:43:08 +00001868 ThisDecl = Actions.ActOnFriendFunctionDecl(getCurScope(), DeclaratorInfo,
John McCallbbbcdd92009-09-11 21:02:39 +00001869 move(TemplateParams));
Douglas Gregor37b372b2009-08-20 22:52:58 +00001870 } else {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001871 ThisDecl = Actions.ActOnCXXMemberDeclarator(getCurScope(), AS,
John McCall67d1a672009-08-06 02:15:43 +00001872 DeclaratorInfo,
Douglas Gregor37b372b2009-08-20 22:52:58 +00001873 move(TemplateParams),
John McCall67d1a672009-08-06 02:15:43 +00001874 BitfieldSize.release(),
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00001875 VS, HasDeferredInitializer);
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001876 if (AccessAttrs)
1877 Actions.ProcessDeclAttributeList(getCurScope(), ThisDecl, AccessAttrs,
1878 false, true);
Douglas Gregor37b372b2009-08-20 22:52:58 +00001879 }
Douglas Gregor147545d2011-10-10 14:49:18 +00001880
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001881 // Set the Decl for any late parsed attributes
1882 for (unsigned i = 0, ni = LateParsedAttrs.size(); i < ni; ++i) {
1883 LateParsedAttrs[i]->setDecl(ThisDecl);
1884 }
1885 LateParsedAttrs.clear();
1886
Douglas Gregor147545d2011-10-10 14:49:18 +00001887 // Handle the initializer.
Richard Smith7a614d82011-06-11 17:19:42 +00001888 if (HasDeferredInitializer) {
Douglas Gregor147545d2011-10-10 14:49:18 +00001889 // The initializer was deferred; parse it and cache the tokens.
Richard Smith7fe62082011-10-15 05:09:34 +00001890 Diag(Tok, getLang().CPlusPlus0x ?
1891 diag::warn_cxx98_compat_nonstatic_member_init :
1892 diag::ext_nonstatic_member_init);
1893
Richard Smith7a614d82011-06-11 17:19:42 +00001894 if (DeclaratorInfo.isArrayOfUnknownBound()) {
1895 // C++0x [dcl.array]p3: An array bound may also be omitted when the
1896 // declarator is followed by an initializer.
1897 //
1898 // A brace-or-equal-initializer for a member-declarator is not an
1899 // initializer in the gramamr, so this is ill-formed.
1900 Diag(Tok, diag::err_incomplete_array_member_init);
1901 SkipUntil(tok::comma, true, true);
1902 // Avoid later warnings about a class member of incomplete type.
1903 ThisDecl->setInvalidDecl();
1904 } else
1905 ParseCXXNonStaticMemberInitializer(ThisDecl);
Douglas Gregor147545d2011-10-10 14:49:18 +00001906 } else if (HasInitializer) {
1907 // Normal initializer.
1908 SourceLocation EqualLoc;
1909 ExprResult Init
1910 = ParseCXXMemberInitializer(DeclaratorInfo.isDeclarationOfFunction(),
1911 EqualLoc);
1912 if (Init.isInvalid())
1913 SkipUntil(tok::comma, true, true);
1914 else if (ThisDecl)
1915 Actions.AddInitializerToDecl(ThisDecl, Init.get(), false,
1916 DS.getTypeSpecType() == DeclSpec::TST_auto);
1917 } else if (ThisDecl && DS.getStorageClassSpec() == DeclSpec::SCS_static) {
1918 // No initializer.
1919 Actions.ActOnUninitializedDecl(ThisDecl,
1920 DS.getTypeSpecType() == DeclSpec::TST_auto);
Richard Smith7a614d82011-06-11 17:19:42 +00001921 }
Douglas Gregor147545d2011-10-10 14:49:18 +00001922
1923 if (ThisDecl) {
1924 Actions.FinalizeDeclaration(ThisDecl);
1925 DeclsInGroup.push_back(ThisDecl);
1926 }
1927
1928 if (DeclaratorInfo.isFunctionDeclarator() &&
1929 DeclaratorInfo.getDeclSpec().getStorageClassSpec()
1930 != DeclSpec::SCS_typedef) {
1931 HandleMemberFunctionDefaultArgs(DeclaratorInfo, ThisDecl);
1932 }
1933
1934 DeclaratorInfo.complete(ThisDecl);
Richard Smith7a614d82011-06-11 17:19:42 +00001935
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001936 // If we don't have a comma, it is either the end of the list (a ';')
1937 // or an error, bail out.
1938 if (Tok.isNot(tok::comma))
1939 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001940
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001941 // Consume the comma.
1942 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001943
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001944 // Parse the next declarator.
1945 DeclaratorInfo.clear();
Nico Weber48673472011-01-28 06:07:34 +00001946 VS.clear();
Douglas Gregor147545d2011-10-10 14:49:18 +00001947 BitfieldSize = true;
Mike Stump1eb44332009-09-09 15:08:12 +00001948
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001949 // Attributes are only allowed on the second declarator.
John McCall7f040a92010-12-24 02:08:15 +00001950 MaybeParseGNUAttributes(DeclaratorInfo);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001951
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001952 if (Tok.isNot(tok::colon))
1953 ParseDeclarator(DeclaratorInfo);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001954 }
1955
Chris Lattnerae50d502010-02-02 00:43:15 +00001956 if (ExpectAndConsume(tok::semi, diag::err_expected_semi_decl_list)) {
1957 // Skip to end of block or statement.
1958 SkipUntil(tok::r_brace, true, true);
1959 // If we stopped at a ';', eat it.
1960 if (Tok.is(tok::semi)) ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001961 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001962 }
1963
Douglas Gregor23c94db2010-07-02 17:43:08 +00001964 Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup.data(),
Chris Lattnerae50d502010-02-02 00:43:15 +00001965 DeclsInGroup.size());
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001966}
1967
Richard Smith7a614d82011-06-11 17:19:42 +00001968/// ParseCXXMemberInitializer - Parse the brace-or-equal-initializer or
1969/// pure-specifier. Also detect and reject any attempted defaulted/deleted
1970/// function definition. The location of the '=', if any, will be placed in
1971/// EqualLoc.
1972///
1973/// pure-specifier:
1974/// '= 0'
1975///
1976/// brace-or-equal-initializer:
1977/// '=' initializer-expression
1978/// braced-init-list [TODO]
1979///
1980/// initializer-clause:
1981/// assignment-expression
1982/// braced-init-list [TODO]
1983///
1984/// defaulted/deleted function-definition:
1985/// '=' 'default'
1986/// '=' 'delete'
1987///
1988/// Prior to C++0x, the assignment-expression in an initializer-clause must
1989/// be a constant-expression.
1990ExprResult Parser::ParseCXXMemberInitializer(bool IsFunction,
1991 SourceLocation &EqualLoc) {
1992 assert((Tok.is(tok::equal) || Tok.is(tok::l_brace))
1993 && "Data member initializer not starting with '=' or '{'");
1994
1995 if (Tok.is(tok::equal)) {
1996 EqualLoc = ConsumeToken();
1997 if (Tok.is(tok::kw_delete)) {
1998 // In principle, an initializer of '= delete p;' is legal, but it will
1999 // never type-check. It's better to diagnose it as an ill-formed expression
2000 // than as an ill-formed deleted non-function member.
2001 // An initializer of '= delete p, foo' will never be parsed, because
2002 // a top-level comma always ends the initializer expression.
2003 const Token &Next = NextToken();
2004 if (IsFunction || Next.is(tok::semi) || Next.is(tok::comma) ||
2005 Next.is(tok::eof)) {
2006 if (IsFunction)
2007 Diag(ConsumeToken(), diag::err_default_delete_in_multiple_declaration)
2008 << 1 /* delete */;
2009 else
2010 Diag(ConsumeToken(), diag::err_deleted_non_function);
2011 return ExprResult();
2012 }
2013 } else if (Tok.is(tok::kw_default)) {
Richard Smith7a614d82011-06-11 17:19:42 +00002014 if (IsFunction)
2015 Diag(Tok, diag::err_default_delete_in_multiple_declaration)
2016 << 0 /* default */;
2017 else
2018 Diag(ConsumeToken(), diag::err_default_special_members);
2019 return ExprResult();
2020 }
2021
2022 return ParseInitializer();
2023 } else
2024 return ExprError(Diag(Tok, diag::err_generalized_initializer_lists));
2025}
2026
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002027/// ParseCXXMemberSpecification - Parse the class definition.
2028///
2029/// member-specification:
2030/// member-declaration member-specification[opt]
2031/// access-specifier ':' member-specification[opt]
2032///
2033void Parser::ParseCXXMemberSpecification(SourceLocation RecordLoc,
John McCalld226f652010-08-21 09:40:31 +00002034 unsigned TagType, Decl *TagDecl) {
Sanjiv Gupta31fc07d2008-10-31 09:52:39 +00002035 assert((TagType == DeclSpec::TST_struct ||
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002036 TagType == DeclSpec::TST_union ||
Sanjiv Gupta31fc07d2008-10-31 09:52:39 +00002037 TagType == DeclSpec::TST_class) && "Invalid TagType!");
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002038
John McCallf312b1e2010-08-26 23:41:50 +00002039 PrettyDeclStackTraceEntry CrashInfo(Actions, TagDecl, RecordLoc,
2040 "parsing struct/union/class body");
Mike Stump1eb44332009-09-09 15:08:12 +00002041
Douglas Gregor26997fd2010-01-16 20:52:59 +00002042 // Determine whether this is a non-nested class. Note that local
2043 // classes are *not* considered to be nested classes.
2044 bool NonNestedClass = true;
2045 if (!ClassStack.empty()) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00002046 for (const Scope *S = getCurScope(); S; S = S->getParent()) {
Douglas Gregor26997fd2010-01-16 20:52:59 +00002047 if (S->isClassScope()) {
2048 // We're inside a class scope, so this is a nested class.
2049 NonNestedClass = false;
2050 break;
2051 }
2052
2053 if ((S->getFlags() & Scope::FnScope)) {
2054 // If we're in a function or function template declared in the
2055 // body of a class, then this is a local class rather than a
2056 // nested class.
2057 const Scope *Parent = S->getParent();
2058 if (Parent->isTemplateParamScope())
2059 Parent = Parent->getParent();
2060 if (Parent->isClassScope())
2061 break;
2062 }
2063 }
2064 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002065
2066 // Enter a scope for the class.
Douglas Gregor3218c4b2009-01-09 22:42:13 +00002067 ParseScope ClassScope(this, Scope::ClassScope|Scope::DeclScope);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002068
Douglas Gregor6569d682009-05-27 23:11:45 +00002069 // Note that we are parsing a new (potentially-nested) class definition.
Douglas Gregor26997fd2010-01-16 20:52:59 +00002070 ParsingClassDefinition ParsingDef(*this, TagDecl, NonNestedClass);
Douglas Gregor6569d682009-05-27 23:11:45 +00002071
Douglas Gregorddc29e12009-02-06 22:42:48 +00002072 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002073 Actions.ActOnTagStartDefinition(getCurScope(), TagDecl);
John McCallbd0dfa52009-12-19 21:48:58 +00002074
Anders Carlssonb184a182011-03-25 14:46:08 +00002075 SourceLocation FinalLoc;
2076
2077 // Parse the optional 'final' keyword.
2078 if (getLang().CPlusPlus && Tok.is(tok::identifier)) {
Richard Smith8b11b5e2011-10-15 04:21:46 +00002079 assert(isCXX0XFinalKeyword() && "not a class definition");
2080 FinalLoc = ConsumeToken();
Anders Carlssonb184a182011-03-25 14:46:08 +00002081
Richard Smith7fe62082011-10-15 05:09:34 +00002082 Diag(FinalLoc, getLang().CPlusPlus0x ?
2083 diag::warn_cxx98_compat_override_control_keyword :
2084 diag::ext_override_control_keyword) << "final";
Anders Carlssonb184a182011-03-25 14:46:08 +00002085 }
Anders Carlssoncc54d592011-01-22 16:56:46 +00002086
John McCallbd0dfa52009-12-19 21:48:58 +00002087 if (Tok.is(tok::colon)) {
2088 ParseBaseClause(TagDecl);
2089
2090 if (!Tok.is(tok::l_brace)) {
2091 Diag(Tok, diag::err_expected_lbrace_after_base_specifiers);
John McCalldb7bb4a2010-03-17 00:38:33 +00002092
2093 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002094 Actions.ActOnTagDefinitionError(getCurScope(), TagDecl);
John McCallbd0dfa52009-12-19 21:48:58 +00002095 return;
2096 }
2097 }
2098
2099 assert(Tok.is(tok::l_brace));
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002100 BalancedDelimiterTracker T(*this, tok::l_brace);
2101 T.consumeOpen();
John McCallbd0dfa52009-12-19 21:48:58 +00002102
John McCall42a4f662010-05-28 08:11:17 +00002103 if (TagDecl)
Anders Carlsson2c3ee542011-03-25 14:31:08 +00002104 Actions.ActOnStartCXXMemberDeclarations(getCurScope(), TagDecl, FinalLoc,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002105 T.getOpenLocation());
John McCallf9368152009-12-20 07:58:13 +00002106
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002107 // C++ 11p3: Members of a class defined with the keyword class are private
2108 // by default. Members of a class defined with the keywords struct or union
2109 // are public by default.
2110 AccessSpecifier CurAS;
2111 if (TagType == DeclSpec::TST_class)
2112 CurAS = AS_private;
2113 else
2114 CurAS = AS_public;
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00002115 ParsedAttributes AccessAttrs(AttrFactory);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002116
Douglas Gregor07976d22010-06-21 22:31:09 +00002117 if (TagDecl) {
2118 // While we still have something to read, read the member-declarations.
2119 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
2120 // Each iteration of this loop reads one member-declaration.
Mike Stump1eb44332009-09-09 15:08:12 +00002121
Francois Pichet62ec1f22011-09-17 17:15:52 +00002122 if (getLang().MicrosoftExt && (Tok.is(tok::kw___if_exists) ||
Francois Pichet563a6452011-05-25 10:19:49 +00002123 Tok.is(tok::kw___if_not_exists))) {
2124 ParseMicrosoftIfExistsClassDeclaration((DeclSpec::TST)TagType, CurAS);
2125 continue;
2126 }
2127
Douglas Gregor07976d22010-06-21 22:31:09 +00002128 // Check for extraneous top-level semicolon.
2129 if (Tok.is(tok::semi)) {
2130 Diag(Tok, diag::ext_extra_struct_semi)
2131 << DeclSpec::getSpecifierName((DeclSpec::TST)TagType)
2132 << FixItHint::CreateRemoval(Tok.getLocation());
2133 ConsumeToken();
2134 continue;
2135 }
2136
2137 AccessSpecifier AS = getAccessSpecifierIfPresent();
2138 if (AS != AS_none) {
2139 // Current token is a C++ access specifier.
2140 CurAS = AS;
2141 SourceLocation ASLoc = Tok.getLocation();
David Blaikie13f8daf2011-10-13 06:08:43 +00002142 unsigned TokLength = Tok.getLength();
Douglas Gregor07976d22010-06-21 22:31:09 +00002143 ConsumeToken();
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00002144 AccessAttrs.clear();
2145 MaybeParseGNUAttributes(AccessAttrs);
2146
David Blaikie13f8daf2011-10-13 06:08:43 +00002147 SourceLocation EndLoc;
2148 if (Tok.is(tok::colon)) {
2149 EndLoc = Tok.getLocation();
2150 ConsumeToken();
2151 } else if (Tok.is(tok::semi)) {
2152 EndLoc = Tok.getLocation();
2153 ConsumeToken();
2154 Diag(EndLoc, diag::err_expected_colon)
2155 << FixItHint::CreateReplacement(EndLoc, ":");
2156 } else {
2157 EndLoc = ASLoc.getLocWithOffset(TokLength);
2158 Diag(EndLoc, diag::err_expected_colon)
2159 << FixItHint::CreateInsertion(EndLoc, ":");
2160 }
Erik Verbruggenc35cba42011-10-17 09:54:52 +00002161
2162 if (Actions.ActOnAccessSpecifier(AS, ASLoc, EndLoc,
2163 AccessAttrs.getList())) {
2164 // found another attribute than only annotations
2165 AccessAttrs.clear();
2166 }
2167
Douglas Gregor07976d22010-06-21 22:31:09 +00002168 continue;
2169 }
2170
2171 // FIXME: Make sure we don't have a template here.
2172
2173 // Parse all the comma separated declarators.
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00002174 ParseCXXClassMemberDeclaration(CurAS, AccessAttrs.getList());
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002175 }
2176
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002177 T.consumeClose();
Douglas Gregor07976d22010-06-21 22:31:09 +00002178 } else {
2179 SkipUntil(tok::r_brace, false, false);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002180 }
Mike Stump1eb44332009-09-09 15:08:12 +00002181
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002182 // If attributes exist after class contents, parse them.
John McCall0b7e6782011-03-24 11:26:52 +00002183 ParsedAttributes attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +00002184 MaybeParseGNUAttributes(attrs);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002185
John McCall42a4f662010-05-28 08:11:17 +00002186 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002187 Actions.ActOnFinishCXXMemberSpecification(getCurScope(), RecordLoc, TagDecl,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002188 T.getOpenLocation(),
2189 T.getCloseLocation(),
John McCall7f040a92010-12-24 02:08:15 +00002190 attrs.getList());
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002191
Richard Smith7a614d82011-06-11 17:19:42 +00002192 // C++0x [class.mem]p2: Within the class member-specification, the class is
2193 // regarded as complete within function bodies, default arguments, exception-
2194 // specifications, and brace-or-equal-initializers for non-static data
2195 // members (including such things in nested classes).
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002196 //
Richard Smith7a614d82011-06-11 17:19:42 +00002197 // FIXME: Only function bodies and brace-or-equal-initializers are currently
2198 // handled. Fix the others!
Douglas Gregor07976d22010-06-21 22:31:09 +00002199 if (TagDecl && NonNestedClass) {
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002200 // We are not inside a nested class. This class and its nested classes
Douglas Gregor72b505b2008-12-16 21:30:33 +00002201 // are complete and we can parse the delayed portions of method
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00002202 // declarations and the lexed inline method definitions, along with any
2203 // delayed attributes.
Douglas Gregore0cc0472010-06-16 23:45:56 +00002204 SourceLocation SavedPrevTokLocation = PrevTokLocation;
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00002205 ParseLexedAttributes(getCurrentClass());
Douglas Gregor6569d682009-05-27 23:11:45 +00002206 ParseLexedMethodDeclarations(getCurrentClass());
Richard Smith7a614d82011-06-11 17:19:42 +00002207 ParseLexedMemberInitializers(getCurrentClass());
Douglas Gregor6569d682009-05-27 23:11:45 +00002208 ParseLexedMethodDefs(getCurrentClass());
Douglas Gregore0cc0472010-06-16 23:45:56 +00002209 PrevTokLocation = SavedPrevTokLocation;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002210 }
2211
John McCall42a4f662010-05-28 08:11:17 +00002212 if (TagDecl)
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002213 Actions.ActOnTagFinishDefinition(getCurScope(), TagDecl,
2214 T.getCloseLocation());
John McCalldb7bb4a2010-03-17 00:38:33 +00002215
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002216 // Leave the class scope.
Douglas Gregor6569d682009-05-27 23:11:45 +00002217 ParsingDef.Pop();
Douglas Gregor8935b8b2008-12-10 06:34:36 +00002218 ClassScope.Exit();
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002219}
Douglas Gregor7ad83902008-11-05 04:29:56 +00002220
2221/// ParseConstructorInitializer - Parse a C++ constructor initializer,
2222/// which explicitly initializes the members or base classes of a
2223/// class (C++ [class.base.init]). For example, the three initializers
2224/// after the ':' in the Derived constructor below:
2225///
2226/// @code
2227/// class Base { };
2228/// class Derived : Base {
2229/// int x;
2230/// float f;
2231/// public:
2232/// Derived(float f) : Base(), x(17), f(f) { }
2233/// };
2234/// @endcode
2235///
Mike Stump1eb44332009-09-09 15:08:12 +00002236/// [C++] ctor-initializer:
2237/// ':' mem-initializer-list
Douglas Gregor7ad83902008-11-05 04:29:56 +00002238///
Mike Stump1eb44332009-09-09 15:08:12 +00002239/// [C++] mem-initializer-list:
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002240/// mem-initializer ...[opt]
2241/// mem-initializer ...[opt] , mem-initializer-list
John McCalld226f652010-08-21 09:40:31 +00002242void Parser::ParseConstructorInitializer(Decl *ConstructorDecl) {
Douglas Gregor7ad83902008-11-05 04:29:56 +00002243 assert(Tok.is(tok::colon) && "Constructor initializer always starts with ':'");
2244
John Wiegley28bbe4b2011-04-28 01:08:34 +00002245 // Poison the SEH identifiers so they are flagged as illegal in constructor initializers
2246 PoisonSEHIdentifiersRAIIObject PoisonSEHIdentifiers(*this, true);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002247 SourceLocation ColonLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00002248
Chris Lattner5f9e2722011-07-23 10:55:15 +00002249 SmallVector<CXXCtorInitializer*, 4> MemInitializers;
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002250 bool AnyErrors = false;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002251
Douglas Gregor7ad83902008-11-05 04:29:56 +00002252 do {
Douglas Gregor0133f522010-08-28 00:00:50 +00002253 if (Tok.is(tok::code_completion)) {
2254 Actions.CodeCompleteConstructorInitializer(ConstructorDecl,
2255 MemInitializers.data(),
2256 MemInitializers.size());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002257 return cutOffParsing();
Douglas Gregor0133f522010-08-28 00:00:50 +00002258 } else {
2259 MemInitResult MemInit = ParseMemInitializer(ConstructorDecl);
2260 if (!MemInit.isInvalid())
2261 MemInitializers.push_back(MemInit.get());
2262 else
2263 AnyErrors = true;
2264 }
2265
Douglas Gregor7ad83902008-11-05 04:29:56 +00002266 if (Tok.is(tok::comma))
2267 ConsumeToken();
2268 else if (Tok.is(tok::l_brace))
2269 break;
Douglas Gregorb1f6fa42010-09-07 14:35:10 +00002270 // If the next token looks like a base or member initializer, assume that
2271 // we're just missing a comma.
Douglas Gregor751f6922010-09-07 14:51:08 +00002272 else if (Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) {
2273 SourceLocation Loc = PP.getLocForEndOfToken(PrevTokLocation);
2274 Diag(Loc, diag::err_ctor_init_missing_comma)
2275 << FixItHint::CreateInsertion(Loc, ", ");
2276 } else {
Douglas Gregor7ad83902008-11-05 04:29:56 +00002277 // Skip over garbage, until we get to '{'. Don't eat the '{'.
Sebastian Redld3a413d2009-04-26 20:35:05 +00002278 Diag(Tok.getLocation(), diag::err_expected_lbrace_or_comma);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002279 SkipUntil(tok::l_brace, true, true);
2280 break;
2281 }
2282 } while (true);
2283
Mike Stump1eb44332009-09-09 15:08:12 +00002284 Actions.ActOnMemInitializers(ConstructorDecl, ColonLoc,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002285 MemInitializers.data(), MemInitializers.size(),
2286 AnyErrors);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002287}
2288
2289/// ParseMemInitializer - Parse a C++ member initializer, which is
2290/// part of a constructor initializer that explicitly initializes one
2291/// member or base class (C++ [class.base.init]). See
2292/// ParseConstructorInitializer for an example.
2293///
2294/// [C++] mem-initializer:
2295/// mem-initializer-id '(' expression-list[opt] ')'
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002296/// [C++0x] mem-initializer-id braced-init-list
Mike Stump1eb44332009-09-09 15:08:12 +00002297///
Douglas Gregor7ad83902008-11-05 04:29:56 +00002298/// [C++] mem-initializer-id:
2299/// '::'[opt] nested-name-specifier[opt] class-name
2300/// identifier
John McCalld226f652010-08-21 09:40:31 +00002301Parser::MemInitResult Parser::ParseMemInitializer(Decl *ConstructorDecl) {
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00002302 // parse '::'[opt] nested-name-specifier[opt]
2303 CXXScopeSpec SS;
John McCallb3d87482010-08-24 05:47:05 +00002304 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
2305 ParsedType TemplateTypeTy;
Fariborz Jahanian96174332009-07-01 19:21:19 +00002306 if (Tok.is(tok::annot_template_id)) {
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +00002307 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregord9b600c2010-01-12 17:52:59 +00002308 if (TemplateId->Kind == TNK_Type_template ||
2309 TemplateId->Kind == TNK_Dependent_template_name) {
Douglas Gregor059101f2011-03-02 00:47:37 +00002310 AnnotateTemplateIdTokenAsType();
Fariborz Jahanian96174332009-07-01 19:21:19 +00002311 assert(Tok.is(tok::annot_typename) && "template-id -> type failed");
John McCallb3d87482010-08-24 05:47:05 +00002312 TemplateTypeTy = getTypeAnnotation(Tok);
Fariborz Jahanian96174332009-07-01 19:21:19 +00002313 }
Fariborz Jahanian96174332009-07-01 19:21:19 +00002314 }
2315 if (!TemplateTypeTy && Tok.isNot(tok::identifier)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00002316 Diag(Tok, diag::err_expected_member_or_base_name);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002317 return true;
2318 }
Mike Stump1eb44332009-09-09 15:08:12 +00002319
Douglas Gregor7ad83902008-11-05 04:29:56 +00002320 // Get the identifier. This may be a member name or a class name,
2321 // but we'll let the semantic analysis determine which it is.
Fariborz Jahanian96174332009-07-01 19:21:19 +00002322 IdentifierInfo *II = Tok.is(tok::identifier) ? Tok.getIdentifierInfo() : 0;
Douglas Gregor7ad83902008-11-05 04:29:56 +00002323 SourceLocation IdLoc = ConsumeToken();
2324
2325 // Parse the '('.
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002326 if (getLang().CPlusPlus0x && Tok.is(tok::l_brace)) {
Richard Smith7fe62082011-10-15 05:09:34 +00002327 Diag(Tok, diag::warn_cxx98_compat_generalized_initializer_lists);
2328
Sebastian Redl6df65482011-09-24 17:48:25 +00002329 ExprResult InitList = ParseBraceInitializer();
2330 if (InitList.isInvalid())
2331 return true;
2332
2333 SourceLocation EllipsisLoc;
2334 if (Tok.is(tok::ellipsis))
2335 EllipsisLoc = ConsumeToken();
2336
2337 return Actions.ActOnMemInitializer(ConstructorDecl, getCurScope(), SS, II,
2338 TemplateTypeTy, IdLoc, InitList.take(),
2339 EllipsisLoc);
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002340 } else if(Tok.is(tok::l_paren)) {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002341 BalancedDelimiterTracker T(*this, tok::l_paren);
2342 T.consumeOpen();
Douglas Gregor7ad83902008-11-05 04:29:56 +00002343
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002344 // Parse the optional expression-list.
2345 ExprVector ArgExprs(Actions);
2346 CommaLocsTy CommaLocs;
2347 if (Tok.isNot(tok::r_paren) && ParseExpressionList(ArgExprs, CommaLocs)) {
2348 SkipUntil(tok::r_paren);
2349 return true;
2350 }
2351
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002352 T.consumeClose();
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002353
2354 SourceLocation EllipsisLoc;
2355 if (Tok.is(tok::ellipsis))
2356 EllipsisLoc = ConsumeToken();
2357
2358 return Actions.ActOnMemInitializer(ConstructorDecl, getCurScope(), SS, II,
2359 TemplateTypeTy, IdLoc,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002360 T.getOpenLocation(), ArgExprs.take(),
2361 ArgExprs.size(), T.getCloseLocation(),
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002362 EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002363 }
2364
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002365 Diag(Tok, getLang().CPlusPlus0x ? diag::err_expected_lparen_or_lbrace
2366 : diag::err_expected_lparen);
2367 return true;
Douglas Gregor7ad83902008-11-05 04:29:56 +00002368}
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002369
Sebastian Redl7acafd02011-03-05 14:45:16 +00002370/// \brief Parse a C++ exception-specification if present (C++0x [except.spec]).
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002371///
Douglas Gregora4745612008-12-01 18:00:20 +00002372/// exception-specification:
Sebastian Redl7acafd02011-03-05 14:45:16 +00002373/// dynamic-exception-specification
2374/// noexcept-specification
2375///
2376/// noexcept-specification:
2377/// 'noexcept'
2378/// 'noexcept' '(' constant-expression ')'
2379ExceptionSpecificationType
2380Parser::MaybeParseExceptionSpecification(SourceRange &SpecificationRange,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002381 SmallVectorImpl<ParsedType> &DynamicExceptions,
2382 SmallVectorImpl<SourceRange> &DynamicExceptionRanges,
Sebastian Redl7acafd02011-03-05 14:45:16 +00002383 ExprResult &NoexceptExpr) {
2384 ExceptionSpecificationType Result = EST_None;
2385
2386 // See if there's a dynamic specification.
2387 if (Tok.is(tok::kw_throw)) {
2388 Result = ParseDynamicExceptionSpecification(SpecificationRange,
2389 DynamicExceptions,
2390 DynamicExceptionRanges);
2391 assert(DynamicExceptions.size() == DynamicExceptionRanges.size() &&
2392 "Produced different number of exception types and ranges.");
2393 }
2394
2395 // If there's no noexcept specification, we're done.
2396 if (Tok.isNot(tok::kw_noexcept))
2397 return Result;
2398
2399 // If we already had a dynamic specification, parse the noexcept for,
2400 // recovery, but emit a diagnostic and don't store the results.
2401 SourceRange NoexceptRange;
2402 ExceptionSpecificationType NoexceptType = EST_None;
2403
2404 SourceLocation KeywordLoc = ConsumeToken();
2405 if (Tok.is(tok::l_paren)) {
2406 // There is an argument.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002407 BalancedDelimiterTracker T(*this, tok::l_paren);
2408 T.consumeOpen();
Sebastian Redl7acafd02011-03-05 14:45:16 +00002409 NoexceptType = EST_ComputedNoexcept;
2410 NoexceptExpr = ParseConstantExpression();
Sebastian Redl60618fa2011-03-12 11:50:43 +00002411 // The argument must be contextually convertible to bool. We use
2412 // ActOnBooleanCondition for this purpose.
2413 if (!NoexceptExpr.isInvalid())
2414 NoexceptExpr = Actions.ActOnBooleanCondition(getCurScope(), KeywordLoc,
2415 NoexceptExpr.get());
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002416 T.consumeClose();
2417 NoexceptRange = SourceRange(KeywordLoc, T.getCloseLocation());
Sebastian Redl7acafd02011-03-05 14:45:16 +00002418 } else {
2419 // There is no argument.
2420 NoexceptType = EST_BasicNoexcept;
2421 NoexceptRange = SourceRange(KeywordLoc, KeywordLoc);
2422 }
2423
2424 if (Result == EST_None) {
2425 SpecificationRange = NoexceptRange;
2426 Result = NoexceptType;
2427
2428 // If there's a dynamic specification after a noexcept specification,
2429 // parse that and ignore the results.
2430 if (Tok.is(tok::kw_throw)) {
2431 Diag(Tok.getLocation(), diag::err_dynamic_and_noexcept_specification);
2432 ParseDynamicExceptionSpecification(NoexceptRange, DynamicExceptions,
2433 DynamicExceptionRanges);
2434 }
2435 } else {
2436 Diag(Tok.getLocation(), diag::err_dynamic_and_noexcept_specification);
2437 }
2438
2439 return Result;
2440}
2441
2442/// ParseDynamicExceptionSpecification - Parse a C++
2443/// dynamic-exception-specification (C++ [except.spec]).
2444///
2445/// dynamic-exception-specification:
Douglas Gregora4745612008-12-01 18:00:20 +00002446/// 'throw' '(' type-id-list [opt] ')'
2447/// [MS] 'throw' '(' '...' ')'
Mike Stump1eb44332009-09-09 15:08:12 +00002448///
Douglas Gregora4745612008-12-01 18:00:20 +00002449/// type-id-list:
Douglas Gregora04426c2010-12-20 23:57:46 +00002450/// type-id ... [opt]
2451/// type-id-list ',' type-id ... [opt]
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002452///
Sebastian Redl7acafd02011-03-05 14:45:16 +00002453ExceptionSpecificationType Parser::ParseDynamicExceptionSpecification(
2454 SourceRange &SpecificationRange,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002455 SmallVectorImpl<ParsedType> &Exceptions,
2456 SmallVectorImpl<SourceRange> &Ranges) {
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002457 assert(Tok.is(tok::kw_throw) && "expected throw");
Mike Stump1eb44332009-09-09 15:08:12 +00002458
Sebastian Redl7acafd02011-03-05 14:45:16 +00002459 SpecificationRange.setBegin(ConsumeToken());
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002460 BalancedDelimiterTracker T(*this, tok::l_paren);
2461 if (T.consumeOpen()) {
Sebastian Redl7acafd02011-03-05 14:45:16 +00002462 Diag(Tok, diag::err_expected_lparen_after) << "throw";
2463 SpecificationRange.setEnd(SpecificationRange.getBegin());
Sebastian Redl60618fa2011-03-12 11:50:43 +00002464 return EST_DynamicNone;
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002465 }
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002466
Douglas Gregora4745612008-12-01 18:00:20 +00002467 // Parse throw(...), a Microsoft extension that means "this function
2468 // can throw anything".
2469 if (Tok.is(tok::ellipsis)) {
2470 SourceLocation EllipsisLoc = ConsumeToken();
Francois Pichet62ec1f22011-09-17 17:15:52 +00002471 if (!getLang().MicrosoftExt)
Douglas Gregora4745612008-12-01 18:00:20 +00002472 Diag(EllipsisLoc, diag::ext_ellipsis_exception_spec);
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002473 T.consumeClose();
2474 SpecificationRange.setEnd(T.getCloseLocation());
Sebastian Redl60618fa2011-03-12 11:50:43 +00002475 return EST_MSAny;
Douglas Gregora4745612008-12-01 18:00:20 +00002476 }
2477
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002478 // Parse the sequence of type-ids.
Sebastian Redlef65f062009-05-29 18:02:33 +00002479 SourceRange Range;
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002480 while (Tok.isNot(tok::r_paren)) {
Sebastian Redlef65f062009-05-29 18:02:33 +00002481 TypeResult Res(ParseTypeName(&Range));
Sebastian Redl7acafd02011-03-05 14:45:16 +00002482
Douglas Gregora04426c2010-12-20 23:57:46 +00002483 if (Tok.is(tok::ellipsis)) {
2484 // C++0x [temp.variadic]p5:
2485 // - In a dynamic-exception-specification (15.4); the pattern is a
2486 // type-id.
2487 SourceLocation Ellipsis = ConsumeToken();
Sebastian Redl7acafd02011-03-05 14:45:16 +00002488 Range.setEnd(Ellipsis);
Douglas Gregora04426c2010-12-20 23:57:46 +00002489 if (!Res.isInvalid())
2490 Res = Actions.ActOnPackExpansion(Res.get(), Ellipsis);
2491 }
Sebastian Redl7acafd02011-03-05 14:45:16 +00002492
Sebastian Redlef65f062009-05-29 18:02:33 +00002493 if (!Res.isInvalid()) {
Sebastian Redl7dc81342009-04-29 17:30:04 +00002494 Exceptions.push_back(Res.get());
Sebastian Redlef65f062009-05-29 18:02:33 +00002495 Ranges.push_back(Range);
2496 }
Douglas Gregora04426c2010-12-20 23:57:46 +00002497
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002498 if (Tok.is(tok::comma))
2499 ConsumeToken();
Sebastian Redl7dc81342009-04-29 17:30:04 +00002500 else
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002501 break;
2502 }
2503
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002504 T.consumeClose();
2505 SpecificationRange.setEnd(T.getCloseLocation());
Sebastian Redl60618fa2011-03-12 11:50:43 +00002506 return Exceptions.empty() ? EST_DynamicNone : EST_Dynamic;
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002507}
Douglas Gregor6569d682009-05-27 23:11:45 +00002508
Douglas Gregordab60ad2010-10-01 18:44:50 +00002509/// ParseTrailingReturnType - Parse a trailing return type on a new-style
2510/// function declaration.
Douglas Gregorae7902c2011-08-04 15:30:47 +00002511TypeResult Parser::ParseTrailingReturnType(SourceRange &Range) {
Douglas Gregordab60ad2010-10-01 18:44:50 +00002512 assert(Tok.is(tok::arrow) && "expected arrow");
2513
2514 ConsumeToken();
2515
2516 // FIXME: Need to suppress declarations when parsing this typename.
2517 // Otherwise in this function definition:
2518 //
2519 // auto f() -> struct X {}
2520 //
2521 // struct X is parsed as class definition because of the trailing
2522 // brace.
Douglas Gregordab60ad2010-10-01 18:44:50 +00002523 return ParseTypeName(&Range);
2524}
2525
Douglas Gregor6569d682009-05-27 23:11:45 +00002526/// \brief We have just started parsing the definition of a new class,
2527/// so push that class onto our stack of classes that is currently
2528/// being parsed.
John McCalleee1d542011-02-14 07:13:47 +00002529Sema::ParsingClassState
2530Parser::PushParsingClass(Decl *ClassDecl, bool NonNestedClass) {
Douglas Gregor26997fd2010-01-16 20:52:59 +00002531 assert((NonNestedClass || !ClassStack.empty()) &&
Douglas Gregor6569d682009-05-27 23:11:45 +00002532 "Nested class without outer class");
Douglas Gregor26997fd2010-01-16 20:52:59 +00002533 ClassStack.push(new ParsingClass(ClassDecl, NonNestedClass));
John McCalleee1d542011-02-14 07:13:47 +00002534 return Actions.PushParsingClass();
Douglas Gregor6569d682009-05-27 23:11:45 +00002535}
2536
2537/// \brief Deallocate the given parsed class and all of its nested
2538/// classes.
2539void Parser::DeallocateParsedClasses(Parser::ParsingClass *Class) {
Douglas Gregord54eb442010-10-12 16:25:54 +00002540 for (unsigned I = 0, N = Class->LateParsedDeclarations.size(); I != N; ++I)
2541 delete Class->LateParsedDeclarations[I];
Douglas Gregor6569d682009-05-27 23:11:45 +00002542 delete Class;
2543}
2544
2545/// \brief Pop the top class of the stack of classes that are
2546/// currently being parsed.
2547///
2548/// This routine should be called when we have finished parsing the
2549/// definition of a class, but have not yet popped the Scope
2550/// associated with the class's definition.
2551///
2552/// \returns true if the class we've popped is a top-level class,
2553/// false otherwise.
John McCalleee1d542011-02-14 07:13:47 +00002554void Parser::PopParsingClass(Sema::ParsingClassState state) {
Douglas Gregor6569d682009-05-27 23:11:45 +00002555 assert(!ClassStack.empty() && "Mismatched push/pop for class parsing");
Mike Stump1eb44332009-09-09 15:08:12 +00002556
John McCalleee1d542011-02-14 07:13:47 +00002557 Actions.PopParsingClass(state);
2558
Douglas Gregor6569d682009-05-27 23:11:45 +00002559 ParsingClass *Victim = ClassStack.top();
2560 ClassStack.pop();
2561 if (Victim->TopLevelClass) {
2562 // Deallocate all of the nested classes of this class,
2563 // recursively: we don't need to keep any of this information.
2564 DeallocateParsedClasses(Victim);
2565 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002566 }
Douglas Gregor6569d682009-05-27 23:11:45 +00002567 assert(!ClassStack.empty() && "Missing top-level class?");
2568
Douglas Gregord54eb442010-10-12 16:25:54 +00002569 if (Victim->LateParsedDeclarations.empty()) {
Douglas Gregor6569d682009-05-27 23:11:45 +00002570 // The victim is a nested class, but we will not need to perform
2571 // any processing after the definition of this class since it has
2572 // no members whose handling was delayed. Therefore, we can just
2573 // remove this nested class.
Douglas Gregord54eb442010-10-12 16:25:54 +00002574 DeallocateParsedClasses(Victim);
Douglas Gregor6569d682009-05-27 23:11:45 +00002575 return;
2576 }
2577
2578 // This nested class has some members that will need to be processed
2579 // after the top-level class is completely defined. Therefore, add
2580 // it to the list of nested classes within its parent.
Douglas Gregor23c94db2010-07-02 17:43:08 +00002581 assert(getCurScope()->isClassScope() && "Nested class outside of class scope?");
Douglas Gregord54eb442010-10-12 16:25:54 +00002582 ClassStack.top()->LateParsedDeclarations.push_back(new LateParsedClass(this, Victim));
Douglas Gregor23c94db2010-07-02 17:43:08 +00002583 Victim->TemplateScope = getCurScope()->getParent()->isTemplateParamScope();
Douglas Gregor6569d682009-05-27 23:11:45 +00002584}
Sean Huntbbd37c62009-11-21 08:43:09 +00002585
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002586/// ParseCXX0XAttributeSpecifier - Parse a C++0x attribute-specifier. Currently
2587/// only parses standard attributes.
Sean Huntbbd37c62009-11-21 08:43:09 +00002588///
2589/// [C++0x] attribute-specifier:
2590/// '[' '[' attribute-list ']' ']'
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002591/// alignment-specifier
Sean Huntbbd37c62009-11-21 08:43:09 +00002592///
2593/// [C++0x] attribute-list:
2594/// attribute[opt]
2595/// attribute-list ',' attribute[opt]
2596///
2597/// [C++0x] attribute:
2598/// attribute-token attribute-argument-clause[opt]
2599///
2600/// [C++0x] attribute-token:
2601/// identifier
2602/// attribute-scoped-token
2603///
2604/// [C++0x] attribute-scoped-token:
2605/// attribute-namespace '::' identifier
2606///
2607/// [C++0x] attribute-namespace:
2608/// identifier
2609///
2610/// [C++0x] attribute-argument-clause:
2611/// '(' balanced-token-seq ')'
2612///
2613/// [C++0x] balanced-token-seq:
2614/// balanced-token
2615/// balanced-token-seq balanced-token
2616///
2617/// [C++0x] balanced-token:
2618/// '(' balanced-token-seq ')'
2619/// '[' balanced-token-seq ']'
2620/// '{' balanced-token-seq '}'
2621/// any token but '(', ')', '[', ']', '{', or '}'
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002622void Parser::ParseCXX0XAttributeSpecifier(ParsedAttributes &attrs,
2623 SourceLocation *endLoc) {
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002624 if (Tok.is(tok::kw_alignas)) {
Richard Smith41be6732011-10-14 20:48:27 +00002625 Diag(Tok.getLocation(), diag::warn_cxx98_compat_alignas);
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002626 ParseAlignmentSpecifier(attrs, endLoc);
2627 return;
2628 }
2629
Sean Huntbbd37c62009-11-21 08:43:09 +00002630 assert(Tok.is(tok::l_square) && NextToken().is(tok::l_square)
2631 && "Not a C++0x attribute list");
2632
Richard Smith41be6732011-10-14 20:48:27 +00002633 Diag(Tok.getLocation(), diag::warn_cxx98_compat_attribute);
2634
Sean Huntbbd37c62009-11-21 08:43:09 +00002635 ConsumeBracket();
2636 ConsumeBracket();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002637
Sean Huntbbd37c62009-11-21 08:43:09 +00002638 if (Tok.is(tok::comma)) {
2639 Diag(Tok.getLocation(), diag::err_expected_ident);
2640 ConsumeToken();
2641 }
2642
2643 while (Tok.is(tok::identifier) || Tok.is(tok::comma)) {
2644 // attribute not present
2645 if (Tok.is(tok::comma)) {
2646 ConsumeToken();
2647 continue;
2648 }
2649
2650 IdentifierInfo *ScopeName = 0, *AttrName = Tok.getIdentifierInfo();
2651 SourceLocation ScopeLoc, AttrLoc = ConsumeToken();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002652
Sean Huntbbd37c62009-11-21 08:43:09 +00002653 // scoped attribute
2654 if (Tok.is(tok::coloncolon)) {
2655 ConsumeToken();
2656
2657 if (!Tok.is(tok::identifier)) {
2658 Diag(Tok.getLocation(), diag::err_expected_ident);
2659 SkipUntil(tok::r_square, tok::comma, true, true);
2660 continue;
2661 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002662
Sean Huntbbd37c62009-11-21 08:43:09 +00002663 ScopeName = AttrName;
2664 ScopeLoc = AttrLoc;
2665
2666 AttrName = Tok.getIdentifierInfo();
2667 AttrLoc = ConsumeToken();
2668 }
2669
2670 bool AttrParsed = false;
2671 // No scoped names are supported; ideally we could put all non-standard
2672 // attributes into namespaces.
2673 if (!ScopeName) {
2674 switch(AttributeList::getKind(AttrName))
2675 {
2676 // No arguments
Sean Hunt7725e672009-11-25 04:20:27 +00002677 case AttributeList::AT_carries_dependency:
Anders Carlsson15e14a22011-01-23 21:33:18 +00002678 case AttributeList::AT_noreturn: {
Sean Huntbbd37c62009-11-21 08:43:09 +00002679 if (Tok.is(tok::l_paren)) {
2680 Diag(Tok.getLocation(), diag::err_cxx0x_attribute_forbids_arguments)
2681 << AttrName->getName();
2682 break;
2683 }
2684
John McCall0b7e6782011-03-24 11:26:52 +00002685 attrs.addNew(AttrName, AttrLoc, 0, AttrLoc, 0,
2686 SourceLocation(), 0, 0, false, true);
Sean Huntbbd37c62009-11-21 08:43:09 +00002687 AttrParsed = true;
2688 break;
2689 }
2690
Sean Huntbbd37c62009-11-21 08:43:09 +00002691 // Silence warnings
2692 default: break;
2693 }
2694 }
2695
2696 // Skip the entire parameter clause, if any
2697 if (!AttrParsed && Tok.is(tok::l_paren)) {
2698 ConsumeParen();
2699 // SkipUntil maintains the balancedness of tokens.
2700 SkipUntil(tok::r_paren, false);
2701 }
2702 }
2703
2704 if (ExpectAndConsume(tok::r_square, diag::err_expected_rsquare))
2705 SkipUntil(tok::r_square, false);
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002706 if (endLoc)
2707 *endLoc = Tok.getLocation();
Sean Huntbbd37c62009-11-21 08:43:09 +00002708 if (ExpectAndConsume(tok::r_square, diag::err_expected_rsquare))
2709 SkipUntil(tok::r_square, false);
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002710}
Sean Huntbbd37c62009-11-21 08:43:09 +00002711
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002712/// ParseCXX0XAttributes - Parse a C++0x attribute-specifier-seq.
2713///
2714/// attribute-specifier-seq:
2715/// attribute-specifier-seq[opt] attribute-specifier
2716void Parser::ParseCXX0XAttributes(ParsedAttributesWithRange &attrs,
2717 SourceLocation *endLoc) {
2718 SourceLocation StartLoc = Tok.getLocation(), Loc;
2719 if (!endLoc)
2720 endLoc = &Loc;
2721
Douglas Gregor8828ee72011-10-07 20:35:25 +00002722 do {
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002723 ParseCXX0XAttributeSpecifier(attrs, endLoc);
Douglas Gregor8828ee72011-10-07 20:35:25 +00002724 } while (isCXX0XAttributeSpecifier());
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002725
2726 attrs.Range = SourceRange(StartLoc, *endLoc);
Sean Huntbbd37c62009-11-21 08:43:09 +00002727}
2728
Francois Pichet334d47e2010-10-11 12:59:39 +00002729/// ParseMicrosoftAttributes - Parse a Microsoft attribute [Attr]
2730///
2731/// [MS] ms-attribute:
2732/// '[' token-seq ']'
2733///
2734/// [MS] ms-attribute-seq:
2735/// ms-attribute[opt]
2736/// ms-attribute ms-attribute-seq
John McCall7f040a92010-12-24 02:08:15 +00002737void Parser::ParseMicrosoftAttributes(ParsedAttributes &attrs,
2738 SourceLocation *endLoc) {
Francois Pichet334d47e2010-10-11 12:59:39 +00002739 assert(Tok.is(tok::l_square) && "Not a Microsoft attribute list");
2740
2741 while (Tok.is(tok::l_square)) {
2742 ConsumeBracket();
2743 SkipUntil(tok::r_square, true, true);
John McCall7f040a92010-12-24 02:08:15 +00002744 if (endLoc) *endLoc = Tok.getLocation();
Francois Pichet334d47e2010-10-11 12:59:39 +00002745 ExpectAndConsume(tok::r_square, diag::err_expected_rsquare);
2746 }
2747}
Francois Pichet563a6452011-05-25 10:19:49 +00002748
2749void Parser::ParseMicrosoftIfExistsClassDeclaration(DeclSpec::TST TagType,
2750 AccessSpecifier& CurAS) {
2751 bool Result;
2752 if (ParseMicrosoftIfExistsCondition(Result))
2753 return;
2754
2755 if (Tok.isNot(tok::l_brace)) {
2756 Diag(Tok, diag::err_expected_lbrace);
2757 return;
2758 }
2759 ConsumeBrace();
2760
2761 // Condition is false skip all inside the {}.
2762 if (!Result) {
2763 SkipUntil(tok::r_brace, false);
2764 return;
2765 }
2766
2767 // Condition is true, parse the declaration.
2768 while (Tok.isNot(tok::r_brace)) {
2769
2770 // __if_exists, __if_not_exists can nest.
2771 if ((Tok.is(tok::kw___if_exists) || Tok.is(tok::kw___if_not_exists))) {
2772 ParseMicrosoftIfExistsClassDeclaration((DeclSpec::TST)TagType, CurAS);
2773 continue;
2774 }
2775
2776 // Check for extraneous top-level semicolon.
2777 if (Tok.is(tok::semi)) {
2778 Diag(Tok, diag::ext_extra_struct_semi)
2779 << DeclSpec::getSpecifierName((DeclSpec::TST)TagType)
2780 << FixItHint::CreateRemoval(Tok.getLocation());
2781 ConsumeToken();
2782 continue;
2783 }
2784
2785 AccessSpecifier AS = getAccessSpecifierIfPresent();
2786 if (AS != AS_none) {
2787 // Current token is a C++ access specifier.
2788 CurAS = AS;
2789 SourceLocation ASLoc = Tok.getLocation();
2790 ConsumeToken();
2791 if (Tok.is(tok::colon))
2792 Actions.ActOnAccessSpecifier(AS, ASLoc, Tok.getLocation());
2793 else
2794 Diag(Tok, diag::err_expected_colon);
2795 ConsumeToken();
2796 continue;
2797 }
2798
2799 // Parse all the comma separated declarators.
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00002800 ParseCXXClassMemberDeclaration(CurAS, 0);
Francois Pichet563a6452011-05-25 10:19:49 +00002801 }
2802
2803 if (Tok.isNot(tok::r_brace)) {
2804 Diag(Tok, diag::err_expected_rbrace);
2805 return;
2806 }
2807 ConsumeBrace();
2808}