blob: 607cb8826073933cb5fcf1536b8bfab8c30fb1f8 [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.
151 if (!getLang().CPlusPlus0x && InlineLoc.isValid())
152 Diag(InlineLoc, diag::ext_inline_namespace);
153
Chris Lattner51448322009-03-29 14:02:43 +0000154 // Enter a scope for the namespace.
155 ParseScope NamespaceScope(this, Scope::DeclScope);
156
John McCalld226f652010-08-21 09:40:31 +0000157 Decl *NamespcDecl =
Abramo Bagnaraacba90f2011-03-08 12:38:20 +0000158 Actions.ActOnStartNamespaceDef(getCurScope(), InlineLoc, NamespaceLoc,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000159 IdentLoc, Ident, T.getOpenLocation(),
160 attrs.getList());
Chris Lattner51448322009-03-29 14:02:43 +0000161
John McCallf312b1e2010-08-26 23:41:50 +0000162 PrettyDeclStackTraceEntry CrashInfo(Actions, NamespcDecl, NamespaceLoc,
163 "parsing namespace");
Mike Stump1eb44332009-09-09 15:08:12 +0000164
Richard Trieuf858bd82011-05-26 20:11:09 +0000165 // Parse the contents of the namespace. This includes parsing recovery on
166 // any improperly nested namespaces.
167 ParseInnerNamespace(ExtraIdentLoc, ExtraIdent, ExtraNamespaceLoc, 0,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000168 InlineLoc, attrs, T);
Mike Stump1eb44332009-09-09 15:08:12 +0000169
Chris Lattner51448322009-03-29 14:02:43 +0000170 // Leave the namespace scope.
171 NamespaceScope.Exit();
172
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000173 DeclEnd = T.getCloseLocation();
174 Actions.ActOnFinishNamespaceDef(NamespcDecl, DeclEnd);
Chris Lattner51448322009-03-29 14:02:43 +0000175
176 return NamespcDecl;
Chris Lattner8f08cb72007-08-25 06:57:03 +0000177}
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000178
Richard Trieuf858bd82011-05-26 20:11:09 +0000179/// ParseInnerNamespace - Parse the contents of a namespace.
180void Parser::ParseInnerNamespace(std::vector<SourceLocation>& IdentLoc,
181 std::vector<IdentifierInfo*>& Ident,
182 std::vector<SourceLocation>& NamespaceLoc,
183 unsigned int index, SourceLocation& InlineLoc,
Richard Trieuf858bd82011-05-26 20:11:09 +0000184 ParsedAttributes& attrs,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000185 BalancedDelimiterTracker &Tracker) {
Richard Trieuf858bd82011-05-26 20:11:09 +0000186 if (index == Ident.size()) {
187 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
188 ParsedAttributesWithRange attrs(AttrFactory);
189 MaybeParseCXX0XAttributes(attrs);
190 MaybeParseMicrosoftAttributes(attrs);
191 ParseExternalDeclaration(attrs);
192 }
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000193
194 // The caller is what called check -- we are simply calling
195 // the close for it.
196 Tracker.consumeClose();
Richard Trieuf858bd82011-05-26 20:11:09 +0000197
198 return;
199 }
200
201 // Parse improperly nested namespaces.
202 ParseScope NamespaceScope(this, Scope::DeclScope);
203 Decl *NamespcDecl =
204 Actions.ActOnStartNamespaceDef(getCurScope(), SourceLocation(),
205 NamespaceLoc[index], IdentLoc[index],
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000206 Ident[index], Tracker.getOpenLocation(),
207 attrs.getList());
Richard Trieuf858bd82011-05-26 20:11:09 +0000208
209 ParseInnerNamespace(IdentLoc, Ident, NamespaceLoc, ++index, InlineLoc,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000210 attrs, Tracker);
Richard Trieuf858bd82011-05-26 20:11:09 +0000211
212 NamespaceScope.Exit();
213
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000214 Actions.ActOnFinishNamespaceDef(NamespcDecl, Tracker.getCloseLocation());
Richard Trieuf858bd82011-05-26 20:11:09 +0000215}
216
Anders Carlssonf67606a2009-03-28 04:07:16 +0000217/// ParseNamespaceAlias - Parse the part after the '=' in a namespace
218/// alias definition.
219///
John McCalld226f652010-08-21 09:40:31 +0000220Decl *Parser::ParseNamespaceAlias(SourceLocation NamespaceLoc,
John McCall0b7e6782011-03-24 11:26:52 +0000221 SourceLocation AliasLoc,
222 IdentifierInfo *Alias,
223 SourceLocation &DeclEnd) {
Anders Carlssonf67606a2009-03-28 04:07:16 +0000224 assert(Tok.is(tok::equal) && "Not equal token");
Mike Stump1eb44332009-09-09 15:08:12 +0000225
Anders Carlssonf67606a2009-03-28 04:07:16 +0000226 ConsumeToken(); // eat the '='.
Mike Stump1eb44332009-09-09 15:08:12 +0000227
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000228 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000229 Actions.CodeCompleteNamespaceAliasDecl(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000230 cutOffParsing();
231 return 0;
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000232 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000233
Anders Carlssonf67606a2009-03-28 04:07:16 +0000234 CXXScopeSpec SS;
235 // Parse (optional) nested-name-specifier.
John McCallb3d87482010-08-24 05:47:05 +0000236 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
Anders Carlssonf67606a2009-03-28 04:07:16 +0000237
238 if (SS.isInvalid() || Tok.isNot(tok::identifier)) {
239 Diag(Tok, diag::err_expected_namespace_name);
240 // Skip to end of the definition and eat the ';'.
241 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000242 return 0;
Anders Carlssonf67606a2009-03-28 04:07:16 +0000243 }
244
245 // Parse identifier.
Anders Carlsson03bd5a12009-03-28 22:53:22 +0000246 IdentifierInfo *Ident = Tok.getIdentifierInfo();
247 SourceLocation IdentLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000248
Anders Carlssonf67606a2009-03-28 04:07:16 +0000249 // Eat the ';'.
Chris Lattner97144fc2009-04-02 04:16:50 +0000250 DeclEnd = Tok.getLocation();
Chris Lattner6869d8e2009-06-14 00:07:48 +0000251 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_namespace_name,
252 "", tok::semi);
Mike Stump1eb44332009-09-09 15:08:12 +0000253
Douglas Gregor23c94db2010-07-02 17:43:08 +0000254 return Actions.ActOnNamespaceAliasDef(getCurScope(), NamespaceLoc, AliasLoc, Alias,
Anders Carlsson03bd5a12009-03-28 22:53:22 +0000255 SS, IdentLoc, Ident);
Anders Carlssonf67606a2009-03-28 04:07:16 +0000256}
257
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000258/// ParseLinkage - We know that the current token is a string_literal
259/// and just before that, that extern was seen.
260///
261/// linkage-specification: [C++ 7.5p2: dcl.link]
262/// 'extern' string-literal '{' declaration-seq[opt] '}'
263/// 'extern' string-literal declaration
264///
Chris Lattner7d642712010-11-09 20:15:55 +0000265Decl *Parser::ParseLinkage(ParsingDeclSpec &DS, unsigned Context) {
Douglas Gregorc19923d2008-11-21 16:10:08 +0000266 assert(Tok.is(tok::string_literal) && "Not a string literal!");
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000267 llvm::SmallString<8> LangBuffer;
Douglas Gregor453091c2010-03-16 22:30:13 +0000268 bool Invalid = false;
Chris Lattner5f9e2722011-07-23 10:55:15 +0000269 StringRef Lang = PP.getSpelling(Tok, LangBuffer, &Invalid);
Douglas Gregor453091c2010-03-16 22:30:13 +0000270 if (Invalid)
John McCalld226f652010-08-21 09:40:31 +0000271 return 0;
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000272
273 SourceLocation Loc = ConsumeStringToken();
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000274
Douglas Gregor074149e2009-01-05 19:45:36 +0000275 ParseScope LinkageScope(this, Scope::DeclScope);
John McCalld226f652010-08-21 09:40:31 +0000276 Decl *LinkageSpec
Douglas Gregor23c94db2010-07-02 17:43:08 +0000277 = Actions.ActOnStartLinkageSpecification(getCurScope(),
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000278 DS.getSourceRange().getBegin(),
Benjamin Kramerd5663812010-05-03 13:08:54 +0000279 Loc, Lang,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000280 Tok.is(tok::l_brace) ? Tok.getLocation()
Douglas Gregor074149e2009-01-05 19:45:36 +0000281 : SourceLocation());
282
John McCall0b7e6782011-03-24 11:26:52 +0000283 ParsedAttributesWithRange attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +0000284 MaybeParseCXX0XAttributes(attrs);
285 MaybeParseMicrosoftAttributes(attrs);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000286
Douglas Gregor074149e2009-01-05 19:45:36 +0000287 if (Tok.isNot(tok::l_brace)) {
Abramo Bagnaraf41e33c2011-05-01 16:25:54 +0000288 // Reset the source range in DS, as the leading "extern"
289 // does not really belong to the inner declaration ...
290 DS.SetRangeStart(SourceLocation());
291 DS.SetRangeEnd(SourceLocation());
292 // ... but anyway remember that such an "extern" was seen.
Abramo Bagnara35f9a192010-07-30 16:47:02 +0000293 DS.setExternInLinkageSpec(true);
John McCall7f040a92010-12-24 02:08:15 +0000294 ParseExternalDeclaration(attrs, &DS);
Douglas Gregor23c94db2010-07-02 17:43:08 +0000295 return Actions.ActOnFinishLinkageSpecification(getCurScope(), LinkageSpec,
Douglas Gregor074149e2009-01-05 19:45:36 +0000296 SourceLocation());
Mike Stump1eb44332009-09-09 15:08:12 +0000297 }
Douglas Gregorf44515a2008-12-16 22:23:02 +0000298
Douglas Gregor63a01132010-02-07 08:38:28 +0000299 DS.abort();
300
John McCall7f040a92010-12-24 02:08:15 +0000301 ProhibitAttributes(attrs);
Sean Huntbbd37c62009-11-21 08:43:09 +0000302
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000303 BalancedDelimiterTracker T(*this, tok::l_brace);
304 T.consumeOpen();
Douglas Gregorf44515a2008-12-16 22:23:02 +0000305 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
John McCall0b7e6782011-03-24 11:26:52 +0000306 ParsedAttributesWithRange attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +0000307 MaybeParseCXX0XAttributes(attrs);
308 MaybeParseMicrosoftAttributes(attrs);
309 ParseExternalDeclaration(attrs);
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000310 }
311
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000312 T.consumeClose();
Chris Lattner7d642712010-11-09 20:15:55 +0000313 return Actions.ActOnFinishLinkageSpecification(getCurScope(), LinkageSpec,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000314 T.getCloseLocation());
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000315}
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000316
Douglas Gregorf780abc2008-12-30 03:27:21 +0000317/// ParseUsingDirectiveOrDeclaration - Parse C++ using using-declaration or
318/// using-directive. Assumes that current token is 'using'.
John McCalld226f652010-08-21 09:40:31 +0000319Decl *Parser::ParseUsingDirectiveOrDeclaration(unsigned Context,
John McCall78b81052010-11-10 02:40:36 +0000320 const ParsedTemplateInfo &TemplateInfo,
321 SourceLocation &DeclEnd,
Richard Smithc89edf52011-07-01 19:46:12 +0000322 ParsedAttributesWithRange &attrs,
323 Decl **OwnedType) {
Douglas Gregorf780abc2008-12-30 03:27:21 +0000324 assert(Tok.is(tok::kw_using) && "Not using token");
Fariborz Jahanian9735c5e2011-08-22 17:59:19 +0000325 ObjCDeclContextSwitch ObjCDC(*this);
326
Douglas Gregorf780abc2008-12-30 03:27:21 +0000327 // Eat 'using'.
328 SourceLocation UsingLoc = ConsumeToken();
329
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000330 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000331 Actions.CodeCompleteUsing(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000332 cutOffParsing();
333 return 0;
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000334 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000335
John McCall78b81052010-11-10 02:40:36 +0000336 // 'using namespace' means this is a using-directive.
337 if (Tok.is(tok::kw_namespace)) {
338 // Template parameters are always an error here.
339 if (TemplateInfo.Kind) {
340 SourceRange R = TemplateInfo.getSourceRange();
341 Diag(UsingLoc, diag::err_templated_using_directive)
342 << R << FixItHint::CreateRemoval(R);
343 }
Sean Huntbbd37c62009-11-21 08:43:09 +0000344
Fariborz Jahanian9735c5e2011-08-22 17:59:19 +0000345 return ParseUsingDirective(Context, UsingLoc, DeclEnd, attrs);
John McCall78b81052010-11-10 02:40:36 +0000346 }
347
Richard Smith162e1c12011-04-15 14:24:37 +0000348 // Otherwise, it must be a using-declaration or an alias-declaration.
John McCall78b81052010-11-10 02:40:36 +0000349
350 // Using declarations can't have attributes.
John McCall7f040a92010-12-24 02:08:15 +0000351 ProhibitAttributes(attrs);
Chris Lattner2f274772009-01-06 06:55:51 +0000352
Fariborz Jahanian9735c5e2011-08-22 17:59:19 +0000353 return ParseUsingDeclaration(Context, TemplateInfo, UsingLoc, DeclEnd,
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000354 AS_none, OwnedType);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000355}
356
357/// ParseUsingDirective - Parse C++ using-directive, assumes
358/// that current token is 'namespace' and 'using' was already parsed.
359///
360/// using-directive: [C++ 7.3.p4: namespace.udir]
361/// 'using' 'namespace' ::[opt] nested-name-specifier[opt]
362/// namespace-name ;
363/// [GNU] using-directive:
364/// 'using' 'namespace' ::[opt] nested-name-specifier[opt]
365/// namespace-name attributes[opt] ;
366///
John McCalld226f652010-08-21 09:40:31 +0000367Decl *Parser::ParseUsingDirective(unsigned Context,
John McCall78b81052010-11-10 02:40:36 +0000368 SourceLocation UsingLoc,
369 SourceLocation &DeclEnd,
John McCall7f040a92010-12-24 02:08:15 +0000370 ParsedAttributes &attrs) {
Douglas Gregorf780abc2008-12-30 03:27:21 +0000371 assert(Tok.is(tok::kw_namespace) && "Not 'namespace' token");
372
373 // Eat 'namespace'.
374 SourceLocation NamespcLoc = ConsumeToken();
375
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000376 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000377 Actions.CodeCompleteUsingDirective(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000378 cutOffParsing();
379 return 0;
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000380 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000381
Douglas Gregorf780abc2008-12-30 03:27:21 +0000382 CXXScopeSpec SS;
383 // Parse (optional) nested-name-specifier.
John McCallb3d87482010-08-24 05:47:05 +0000384 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000385
Douglas Gregorf780abc2008-12-30 03:27:21 +0000386 IdentifierInfo *NamespcName = 0;
387 SourceLocation IdentLoc = SourceLocation();
388
389 // Parse namespace-name.
Chris Lattner823c44e2009-01-06 07:27:21 +0000390 if (SS.isInvalid() || Tok.isNot(tok::identifier)) {
Douglas Gregorf780abc2008-12-30 03:27:21 +0000391 Diag(Tok, diag::err_expected_namespace_name);
392 // If there was invalid namespace name, skip to end of decl, and eat ';'.
393 SkipUntil(tok::semi);
394 // FIXME: Are there cases, when we would like to call ActOnUsingDirective?
John McCalld226f652010-08-21 09:40:31 +0000395 return 0;
Douglas Gregorf780abc2008-12-30 03:27:21 +0000396 }
Mike Stump1eb44332009-09-09 15:08:12 +0000397
Chris Lattner823c44e2009-01-06 07:27:21 +0000398 // Parse identifier.
399 NamespcName = Tok.getIdentifierInfo();
400 IdentLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000401
Chris Lattner823c44e2009-01-06 07:27:21 +0000402 // Parse (optional) attributes (most likely GNU strong-using extension).
Sean Huntbbd37c62009-11-21 08:43:09 +0000403 bool GNUAttr = false;
404 if (Tok.is(tok::kw___attribute)) {
405 GNUAttr = true;
John McCall7f040a92010-12-24 02:08:15 +0000406 ParseGNUAttributes(attrs);
Sean Huntbbd37c62009-11-21 08:43:09 +0000407 }
Mike Stump1eb44332009-09-09 15:08:12 +0000408
Chris Lattner823c44e2009-01-06 07:27:21 +0000409 // Eat ';'.
Chris Lattner97144fc2009-04-02 04:16:50 +0000410 DeclEnd = Tok.getLocation();
Chris Lattner6869d8e2009-06-14 00:07:48 +0000411 ExpectAndConsume(tok::semi,
Douglas Gregor9ba23b42010-09-07 15:23:11 +0000412 GNUAttr ? diag::err_expected_semi_after_attribute_list
413 : diag::err_expected_semi_after_namespace_name,
414 "", tok::semi);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000415
Douglas Gregor23c94db2010-07-02 17:43:08 +0000416 return Actions.ActOnUsingDirective(getCurScope(), UsingLoc, NamespcLoc, SS,
John McCall7f040a92010-12-24 02:08:15 +0000417 IdentLoc, NamespcName, attrs.getList());
Douglas Gregorf780abc2008-12-30 03:27:21 +0000418}
419
Richard Smith162e1c12011-04-15 14:24:37 +0000420/// ParseUsingDeclaration - Parse C++ using-declaration or alias-declaration.
421/// Assumes that 'using' was already seen.
Douglas Gregorf780abc2008-12-30 03:27:21 +0000422///
423/// using-declaration: [C++ 7.3.p3: namespace.udecl]
424/// 'using' 'typename'[opt] ::[opt] nested-name-specifier
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000425/// unqualified-id
426/// 'using' :: unqualified-id
Douglas Gregorf780abc2008-12-30 03:27:21 +0000427///
Richard Smith162e1c12011-04-15 14:24:37 +0000428/// alias-declaration: C++0x [decl.typedef]p2
429/// 'using' identifier = type-id ;
430///
John McCalld226f652010-08-21 09:40:31 +0000431Decl *Parser::ParseUsingDeclaration(unsigned Context,
John McCall78b81052010-11-10 02:40:36 +0000432 const ParsedTemplateInfo &TemplateInfo,
433 SourceLocation UsingLoc,
434 SourceLocation &DeclEnd,
Richard Smithc89edf52011-07-01 19:46:12 +0000435 AccessSpecifier AS,
436 Decl **OwnedType) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000437 CXXScopeSpec SS;
John McCall7ba107a2009-11-18 02:36:19 +0000438 SourceLocation TypenameLoc;
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000439 bool IsTypeName;
440
441 // Ignore optional 'typename'.
Douglas Gregor12c118a2009-11-04 16:30:06 +0000442 // FIXME: This is wrong; we should parse this as a typename-specifier.
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000443 if (Tok.is(tok::kw_typename)) {
John McCall7ba107a2009-11-18 02:36:19 +0000444 TypenameLoc = Tok.getLocation();
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000445 ConsumeToken();
446 IsTypeName = true;
447 }
448 else
449 IsTypeName = false;
450
451 // Parse nested-name-specifier.
John McCallb3d87482010-08-24 05:47:05 +0000452 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000453
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000454 // Check nested-name specifier.
455 if (SS.isInvalid()) {
456 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000457 return 0;
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000458 }
Douglas Gregor12c118a2009-11-04 16:30:06 +0000459
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000460 // Parse the unqualified-id. We allow parsing of both constructor and
Douglas Gregor12c118a2009-11-04 16:30:06 +0000461 // destructor names and allow the action module to diagnose any semantic
462 // errors.
463 UnqualifiedId Name;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000464 if (ParseUnqualifiedId(SS,
Douglas Gregor12c118a2009-11-04 16:30:06 +0000465 /*EnteringContext=*/false,
466 /*AllowDestructorName=*/true,
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000467 /*AllowConstructorName=*/true,
John McCallb3d87482010-08-24 05:47:05 +0000468 ParsedType(),
Douglas Gregor12c118a2009-11-04 16:30:06 +0000469 Name)) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000470 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000471 return 0;
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000472 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000473
John McCall0b7e6782011-03-24 11:26:52 +0000474 ParsedAttributes attrs(AttrFactory);
Richard Smith162e1c12011-04-15 14:24:37 +0000475
476 // Maybe this is an alias-declaration.
477 bool IsAliasDecl = Tok.is(tok::equal);
478 TypeResult TypeAlias;
479 if (IsAliasDecl) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000480 // TODO: Attribute support. C++0x attributes may appear before the equals.
481 // Where can GNU attributes appear?
Richard Smith162e1c12011-04-15 14:24:37 +0000482 ConsumeToken();
483
484 if (!getLang().CPlusPlus0x)
485 Diag(Tok.getLocation(), diag::ext_alias_declaration);
486
Richard Smith3e4c6c42011-05-05 21:57:07 +0000487 // Type alias templates cannot be specialized.
488 int SpecKind = -1;
Richard Smith536e9c12011-05-05 22:36:10 +0000489 if (TemplateInfo.Kind == ParsedTemplateInfo::Template &&
490 Name.getKind() == UnqualifiedId::IK_TemplateId)
Richard Smith3e4c6c42011-05-05 21:57:07 +0000491 SpecKind = 0;
492 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitSpecialization)
493 SpecKind = 1;
494 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation)
495 SpecKind = 2;
496 if (SpecKind != -1) {
497 SourceRange Range;
498 if (SpecKind == 0)
499 Range = SourceRange(Name.TemplateId->LAngleLoc,
500 Name.TemplateId->RAngleLoc);
501 else
502 Range = TemplateInfo.getSourceRange();
503 Diag(Range.getBegin(), diag::err_alias_declaration_specialization)
504 << SpecKind << Range;
505 SkipUntil(tok::semi);
506 return 0;
507 }
508
Richard Smith162e1c12011-04-15 14:24:37 +0000509 // Name must be an identifier.
510 if (Name.getKind() != UnqualifiedId::IK_Identifier) {
511 Diag(Name.StartLocation, diag::err_alias_declaration_not_identifier);
512 // No removal fixit: can't recover from this.
513 SkipUntil(tok::semi);
514 return 0;
515 } else if (IsTypeName)
516 Diag(TypenameLoc, diag::err_alias_declaration_not_identifier)
517 << FixItHint::CreateRemoval(SourceRange(TypenameLoc,
518 SS.isNotEmpty() ? SS.getEndLoc() : TypenameLoc));
519 else if (SS.isNotEmpty())
520 Diag(SS.getBeginLoc(), diag::err_alias_declaration_not_identifier)
521 << FixItHint::CreateRemoval(SS.getRange());
522
Richard Smith3e4c6c42011-05-05 21:57:07 +0000523 TypeAlias = ParseTypeName(0, TemplateInfo.Kind ?
524 Declarator::AliasTemplateContext :
John McCallcdda47f2011-10-01 09:56:14 +0000525 Declarator::AliasDeclContext, AS, OwnedType);
Richard Smith162e1c12011-04-15 14:24:37 +0000526 } else
527 // Parse (optional) attributes (most likely GNU strong-using extension).
528 MaybeParseGNUAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +0000529
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000530 // Eat ';'.
531 DeclEnd = Tok.getLocation();
532 ExpectAndConsume(tok::semi, diag::err_expected_semi_after,
Richard Smith162e1c12011-04-15 14:24:37 +0000533 !attrs.empty() ? "attributes list" :
534 IsAliasDecl ? "alias declaration" : "using declaration",
Douglas Gregor12c118a2009-11-04 16:30:06 +0000535 tok::semi);
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000536
John McCall78b81052010-11-10 02:40:36 +0000537 // Diagnose an attempt to declare a templated using-declaration.
Richard Smith3e4c6c42011-05-05 21:57:07 +0000538 // In C++0x, alias-declarations can be templates:
Richard Smith162e1c12011-04-15 14:24:37 +0000539 // template <...> using id = type;
Richard Smith3e4c6c42011-05-05 21:57:07 +0000540 if (TemplateInfo.Kind && !IsAliasDecl) {
John McCall78b81052010-11-10 02:40:36 +0000541 SourceRange R = TemplateInfo.getSourceRange();
542 Diag(UsingLoc, diag::err_templated_using_declaration)
543 << R << FixItHint::CreateRemoval(R);
544
545 // Unfortunately, we have to bail out instead of recovering by
546 // ignoring the parameters, just in case the nested name specifier
547 // depends on the parameters.
548 return 0;
549 }
550
Douglas Gregor480b53c2011-09-26 14:30:28 +0000551 // "typename" keyword is allowed for identifiers only,
552 // because it may be a type definition.
553 if (IsTypeName && Name.getKind() != UnqualifiedId::IK_Identifier) {
554 Diag(Name.getSourceRange().getBegin(), diag::err_typename_identifiers_only)
555 << FixItHint::CreateRemoval(SourceRange(TypenameLoc));
556 // Proceed parsing, but reset the IsTypeName flag.
557 IsTypeName = false;
558 }
559
Richard Smith3e4c6c42011-05-05 21:57:07 +0000560 if (IsAliasDecl) {
561 TemplateParameterLists *TemplateParams = TemplateInfo.TemplateParams;
562 MultiTemplateParamsArg TemplateParamsArg(Actions,
563 TemplateParams ? TemplateParams->data() : 0,
564 TemplateParams ? TemplateParams->size() : 0);
565 return Actions.ActOnAliasDeclaration(getCurScope(), AS, TemplateParamsArg,
566 UsingLoc, Name, TypeAlias);
567 }
Richard Smith162e1c12011-04-15 14:24:37 +0000568
Ted Kremenek8113ecf2010-11-10 05:59:39 +0000569 return Actions.ActOnUsingDeclaration(getCurScope(), AS, true, UsingLoc, SS,
John McCall7f040a92010-12-24 02:08:15 +0000570 Name, attrs.getList(),
571 IsTypeName, TypenameLoc);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000572}
573
Peter Collingbournec6eb44b2011-04-15 00:35:57 +0000574/// ParseStaticAssertDeclaration - Parse C++0x or C1X static_assert-declaration.
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000575///
Peter Collingbournec6eb44b2011-04-15 00:35:57 +0000576/// [C++0x] static_assert-declaration:
577/// static_assert ( constant-expression , string-literal ) ;
578///
579/// [C1X] static_assert-declaration:
580/// _Static_assert ( constant-expression , string-literal ) ;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000581///
John McCalld226f652010-08-21 09:40:31 +0000582Decl *Parser::ParseStaticAssertDeclaration(SourceLocation &DeclEnd){
Peter Collingbournec6eb44b2011-04-15 00:35:57 +0000583 assert((Tok.is(tok::kw_static_assert) || Tok.is(tok::kw__Static_assert)) &&
584 "Not a static_assert declaration");
585
586 if (Tok.is(tok::kw__Static_assert) && !getLang().C1X)
587 Diag(Tok, diag::ext_c1x_static_assert);
588
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000589 SourceLocation StaticAssertLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000590
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000591 BalancedDelimiterTracker T(*this, tok::l_paren);
592 if (T.consumeOpen()) {
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000593 Diag(Tok, diag::err_expected_lparen);
John McCalld226f652010-08-21 09:40:31 +0000594 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000595 }
Mike Stump1eb44332009-09-09 15:08:12 +0000596
John McCall60d7b3a2010-08-24 06:29:42 +0000597 ExprResult AssertExpr(ParseConstantExpression());
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000598 if (AssertExpr.isInvalid()) {
599 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000600 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000601 }
Mike Stump1eb44332009-09-09 15:08:12 +0000602
Anders Carlssonad5f9602009-03-13 23:29:20 +0000603 if (ExpectAndConsume(tok::comma, diag::err_expected_comma, "", tok::semi))
John McCalld226f652010-08-21 09:40:31 +0000604 return 0;
Anders Carlssonad5f9602009-03-13 23:29:20 +0000605
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000606 if (Tok.isNot(tok::string_literal)) {
607 Diag(Tok, diag::err_expected_string_literal);
608 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000609 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000610 }
Mike Stump1eb44332009-09-09 15:08:12 +0000611
John McCall60d7b3a2010-08-24 06:29:42 +0000612 ExprResult AssertMessage(ParseStringLiteralExpression());
Mike Stump1eb44332009-09-09 15:08:12 +0000613 if (AssertMessage.isInvalid())
John McCalld226f652010-08-21 09:40:31 +0000614 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000615
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000616 T.consumeClose();
Mike Stump1eb44332009-09-09 15:08:12 +0000617
Chris Lattner97144fc2009-04-02 04:16:50 +0000618 DeclEnd = Tok.getLocation();
Douglas Gregor9ba23b42010-09-07 15:23:11 +0000619 ExpectAndConsumeSemi(diag::err_expected_semi_after_static_assert);
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000620
John McCall9ae2f072010-08-23 23:25:46 +0000621 return Actions.ActOnStaticAssertDeclaration(StaticAssertLoc,
622 AssertExpr.take(),
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000623 AssertMessage.take(),
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000624 T.getCloseLocation());
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000625}
626
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000627/// ParseDecltypeSpecifier - Parse a C++0x decltype specifier.
628///
629/// 'decltype' ( expression )
630///
631void Parser::ParseDecltypeSpecifier(DeclSpec &DS) {
632 assert(Tok.is(tok::kw_decltype) && "Not a decltype specifier");
633
634 SourceLocation StartLoc = ConsumeToken();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000635 BalancedDelimiterTracker T(*this, tok::l_paren);
636 if (T.expectAndConsume(diag::err_expected_lparen_after,
637 "decltype", tok::r_paren)) {
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000638 return;
639 }
Mike Stump1eb44332009-09-09 15:08:12 +0000640
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000641 // Parse the expression
Mike Stump1eb44332009-09-09 15:08:12 +0000642
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000643 // C++0x [dcl.type.simple]p4:
644 // The operand of the decltype specifier is an unevaluated operand.
645 EnterExpressionEvaluationContext Unevaluated(Actions,
John McCallf312b1e2010-08-26 23:41:50 +0000646 Sema::Unevaluated);
John McCall60d7b3a2010-08-24 06:29:42 +0000647 ExprResult Result = ParseExpression();
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000648 if (Result.isInvalid()) {
649 SkipUntil(tok::r_paren);
650 return;
651 }
Mike Stump1eb44332009-09-09 15:08:12 +0000652
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000653 // Match the ')'
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000654 T.consumeClose();
655 if (T.getCloseLocation().isInvalid())
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000656 return;
657
658 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +0000659 unsigned DiagID;
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000660 // Check for duplicate type specifiers (e.g. "int decltype(a)").
Mike Stump1eb44332009-09-09 15:08:12 +0000661 if (DS.SetTypeSpecType(DeclSpec::TST_decltype, StartLoc, PrevSpec,
John McCallfec54012009-08-03 20:12:06 +0000662 DiagID, Result.release()))
663 Diag(StartLoc, DiagID) << PrevSpec;
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000664}
665
Sean Huntdb5d44b2011-05-19 05:37:45 +0000666void Parser::ParseUnderlyingTypeSpecifier(DeclSpec &DS) {
667 assert(Tok.is(tok::kw___underlying_type) &&
668 "Not an underlying type specifier");
669
670 SourceLocation StartLoc = ConsumeToken();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000671 BalancedDelimiterTracker T(*this, tok::l_paren);
672 if (T.expectAndConsume(diag::err_expected_lparen_after,
673 "__underlying_type", tok::r_paren)) {
Sean Huntdb5d44b2011-05-19 05:37:45 +0000674 return;
675 }
676
677 TypeResult Result = ParseTypeName();
678 if (Result.isInvalid()) {
679 SkipUntil(tok::r_paren);
680 return;
681 }
682
683 // Match the ')'
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000684 T.consumeClose();
685 if (T.getCloseLocation().isInvalid())
Sean Huntdb5d44b2011-05-19 05:37:45 +0000686 return;
687
688 const char *PrevSpec = 0;
689 unsigned DiagID;
Sean Huntca63c202011-05-24 22:41:36 +0000690 if (DS.SetTypeSpecType(DeclSpec::TST_underlyingType, StartLoc, PrevSpec,
Sean Huntdb5d44b2011-05-19 05:37:45 +0000691 DiagID, Result.release()))
692 Diag(StartLoc, DiagID) << PrevSpec;
693}
694
Douglas Gregor42a552f2008-11-05 20:51:48 +0000695/// ParseClassName - Parse a C++ class-name, which names a class. Note
696/// that we only check that the result names a type; semantic analysis
697/// will need to verify that the type names a class. The result is
Douglas Gregor7f43d672009-02-25 23:52:28 +0000698/// either a type or NULL, depending on whether a type name was
Douglas Gregor42a552f2008-11-05 20:51:48 +0000699/// found.
700///
701/// class-name: [C++ 9.1]
702/// identifier
Douglas Gregor7f43d672009-02-25 23:52:28 +0000703/// simple-template-id
Mike Stump1eb44332009-09-09 15:08:12 +0000704///
Douglas Gregor31a19b62009-04-01 21:51:26 +0000705Parser::TypeResult Parser::ParseClassName(SourceLocation &EndLocation,
Douglas Gregor059101f2011-03-02 00:47:37 +0000706 CXXScopeSpec &SS) {
Douglas Gregor7f43d672009-02-25 23:52:28 +0000707 // Check whether we have a template-id that names a type.
708 if (Tok.is(tok::annot_template_id)) {
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +0000709 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregord9b600c2010-01-12 17:52:59 +0000710 if (TemplateId->Kind == TNK_Type_template ||
711 TemplateId->Kind == TNK_Dependent_template_name) {
Douglas Gregor059101f2011-03-02 00:47:37 +0000712 AnnotateTemplateIdTokenAsType();
Douglas Gregor7f43d672009-02-25 23:52:28 +0000713
714 assert(Tok.is(tok::annot_typename) && "template-id -> type failed");
John McCallb3d87482010-08-24 05:47:05 +0000715 ParsedType Type = getTypeAnnotation(Tok);
Douglas Gregor7f43d672009-02-25 23:52:28 +0000716 EndLocation = Tok.getAnnotationEndLoc();
717 ConsumeToken();
Douglas Gregor31a19b62009-04-01 21:51:26 +0000718
719 if (Type)
720 return Type;
721 return true;
Douglas Gregor7f43d672009-02-25 23:52:28 +0000722 }
723
724 // Fall through to produce an error below.
725 }
726
Douglas Gregor42a552f2008-11-05 20:51:48 +0000727 if (Tok.isNot(tok::identifier)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000728 Diag(Tok, diag::err_expected_class_name);
Douglas Gregor31a19b62009-04-01 21:51:26 +0000729 return true;
Douglas Gregor42a552f2008-11-05 20:51:48 +0000730 }
731
Douglas Gregor84d0a192010-01-12 21:28:44 +0000732 IdentifierInfo *Id = Tok.getIdentifierInfo();
733 SourceLocation IdLoc = ConsumeToken();
734
735 if (Tok.is(tok::less)) {
736 // It looks the user intended to write a template-id here, but the
737 // template-name was wrong. Try to fix that.
738 TemplateNameKind TNK = TNK_Type_template;
739 TemplateTy Template;
Douglas Gregor23c94db2010-07-02 17:43:08 +0000740 if (!Actions.DiagnoseUnknownTemplateName(*Id, IdLoc, getCurScope(),
Douglas Gregor059101f2011-03-02 00:47:37 +0000741 &SS, Template, TNK)) {
Douglas Gregor84d0a192010-01-12 21:28:44 +0000742 Diag(IdLoc, diag::err_unknown_template_name)
743 << Id;
744 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000745
Douglas Gregor84d0a192010-01-12 21:28:44 +0000746 if (!Template)
747 return true;
748
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000749 // Form the template name
Douglas Gregor84d0a192010-01-12 21:28:44 +0000750 UnqualifiedId TemplateName;
751 TemplateName.setIdentifier(Id, IdLoc);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000752
Douglas Gregor84d0a192010-01-12 21:28:44 +0000753 // Parse the full template-id, then turn it into a type.
754 if (AnnotateTemplateIdToken(Template, TNK, SS, TemplateName,
755 SourceLocation(), true))
756 return true;
757 if (TNK == TNK_Dependent_template_name)
Douglas Gregor059101f2011-03-02 00:47:37 +0000758 AnnotateTemplateIdTokenAsType();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000759
Douglas Gregor84d0a192010-01-12 21:28:44 +0000760 // If we didn't end up with a typename token, there's nothing more we
761 // can do.
762 if (Tok.isNot(tok::annot_typename))
763 return true;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000764
Douglas Gregor84d0a192010-01-12 21:28:44 +0000765 // Retrieve the type from the annotation token, consume that token, and
766 // return.
767 EndLocation = Tok.getAnnotationEndLoc();
John McCallb3d87482010-08-24 05:47:05 +0000768 ParsedType Type = getTypeAnnotation(Tok);
Douglas Gregor84d0a192010-01-12 21:28:44 +0000769 ConsumeToken();
770 return Type;
771 }
772
Douglas Gregor42a552f2008-11-05 20:51:48 +0000773 // We have an identifier; check whether it is actually a type.
Douglas Gregor059101f2011-03-02 00:47:37 +0000774 ParsedType Type = Actions.getTypeName(*Id, IdLoc, getCurScope(), &SS, true,
Douglas Gregor9e876872011-03-01 18:12:44 +0000775 false, ParsedType(),
776 /*NonTrivialTypeSourceInfo=*/true);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000777 if (!Type) {
Douglas Gregor124b8782010-02-16 19:09:40 +0000778 Diag(IdLoc, diag::err_expected_class_name);
Douglas Gregor31a19b62009-04-01 21:51:26 +0000779 return true;
Douglas Gregor42a552f2008-11-05 20:51:48 +0000780 }
781
782 // Consume the identifier.
Douglas Gregor84d0a192010-01-12 21:28:44 +0000783 EndLocation = IdLoc;
Nick Lewycky56062202010-07-26 16:56:01 +0000784
785 // Fake up a Declarator to use with ActOnTypeName.
John McCall0b7e6782011-03-24 11:26:52 +0000786 DeclSpec DS(AttrFactory);
Nick Lewycky56062202010-07-26 16:56:01 +0000787 DS.SetRangeStart(IdLoc);
788 DS.SetRangeEnd(EndLocation);
Douglas Gregor059101f2011-03-02 00:47:37 +0000789 DS.getTypeSpecScope() = SS;
Nick Lewycky56062202010-07-26 16:56:01 +0000790
791 const char *PrevSpec = 0;
792 unsigned DiagID;
793 DS.SetTypeSpecType(TST_typename, IdLoc, PrevSpec, DiagID, Type);
794
795 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
796 return Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
Douglas Gregor42a552f2008-11-05 20:51:48 +0000797}
798
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000799/// ParseClassSpecifier - Parse a C++ class-specifier [C++ class] or
800/// elaborated-type-specifier [C++ dcl.type.elab]; we can't tell which
801/// until we reach the start of a definition or see a token that
Sebastian Redld9bafa72010-02-03 21:21:43 +0000802/// cannot start a definition. If SuppressDeclarations is true, we do know.
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000803///
804/// class-specifier: [C++ class]
805/// class-head '{' member-specification[opt] '}'
806/// class-head '{' member-specification[opt] '}' attributes[opt]
807/// class-head:
808/// class-key identifier[opt] base-clause[opt]
809/// class-key nested-name-specifier identifier base-clause[opt]
810/// class-key nested-name-specifier[opt] simple-template-id
811/// base-clause[opt]
812/// [GNU] class-key attributes[opt] identifier[opt] base-clause[opt]
Mike Stump1eb44332009-09-09 15:08:12 +0000813/// [GNU] class-key attributes[opt] nested-name-specifier
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000814/// identifier base-clause[opt]
Mike Stump1eb44332009-09-09 15:08:12 +0000815/// [GNU] class-key attributes[opt] nested-name-specifier[opt]
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000816/// simple-template-id base-clause[opt]
817/// class-key:
818/// 'class'
819/// 'struct'
820/// 'union'
821///
822/// elaborated-type-specifier: [C++ dcl.type.elab]
Mike Stump1eb44332009-09-09 15:08:12 +0000823/// class-key ::[opt] nested-name-specifier[opt] identifier
824/// class-key ::[opt] nested-name-specifier[opt] 'template'[opt]
825/// simple-template-id
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000826///
827/// Note that the C++ class-specifier and elaborated-type-specifier,
828/// together, subsume the C99 struct-or-union-specifier:
829///
830/// struct-or-union-specifier: [C99 6.7.2.1]
831/// struct-or-union identifier[opt] '{' struct-contents '}'
832/// struct-or-union identifier
833/// [GNU] struct-or-union attributes[opt] identifier[opt] '{' struct-contents
834/// '}' attributes[opt]
835/// [GNU] struct-or-union attributes[opt] identifier
836/// struct-or-union:
837/// 'struct'
838/// 'union'
Chris Lattner4c97d762009-04-12 21:49:30 +0000839void Parser::ParseClassSpecifier(tok::TokenKind TagTokKind,
840 SourceLocation StartLoc, DeclSpec &DS,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000841 const ParsedTemplateInfo &TemplateInfo,
Sebastian Redld9bafa72010-02-03 21:21:43 +0000842 AccessSpecifier AS, bool SuppressDeclarations){
Chris Lattner4c97d762009-04-12 21:49:30 +0000843 DeclSpec::TST TagType;
844 if (TagTokKind == tok::kw_struct)
845 TagType = DeclSpec::TST_struct;
846 else if (TagTokKind == tok::kw_class)
847 TagType = DeclSpec::TST_class;
848 else {
849 assert(TagTokKind == tok::kw_union && "Not a class specifier");
850 TagType = DeclSpec::TST_union;
851 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000852
Douglas Gregor374929f2009-09-18 15:37:17 +0000853 if (Tok.is(tok::code_completion)) {
854 // Code completion for a struct, class, or union name.
Douglas Gregor23c94db2010-07-02 17:43:08 +0000855 Actions.CodeCompleteTag(getCurScope(), TagType);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000856 return cutOffParsing();
Douglas Gregor374929f2009-09-18 15:37:17 +0000857 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000858
Chandler Carruth926c4b42010-06-28 08:39:25 +0000859 // C++03 [temp.explicit] 14.7.2/8:
860 // The usual access checking rules do not apply to names used to specify
861 // explicit instantiations.
862 //
863 // As an extension we do not perform access checking on the names used to
864 // specify explicit specializations either. This is important to allow
865 // specializing traits classes for private types.
866 bool SuppressingAccessChecks = false;
867 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation ||
868 TemplateInfo.Kind == ParsedTemplateInfo::ExplicitSpecialization) {
869 Actions.ActOnStartSuppressingAccessChecks();
870 SuppressingAccessChecks = true;
871 }
872
John McCall0b7e6782011-03-24 11:26:52 +0000873 ParsedAttributes attrs(AttrFactory);
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000874 // If attributes exist after tag, parse them.
875 if (Tok.is(tok::kw___attribute))
John McCall7f040a92010-12-24 02:08:15 +0000876 ParseGNUAttributes(attrs);
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000877
Steve Narofff59e17e2008-12-24 20:59:21 +0000878 // If declspecs exist after tag, parse them.
John McCallb1d397c2010-08-05 17:13:11 +0000879 while (Tok.is(tok::kw___declspec))
John McCall7f040a92010-12-24 02:08:15 +0000880 ParseMicrosoftDeclSpec(attrs);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000881
Sean Huntbbd37c62009-11-21 08:43:09 +0000882 // If C++0x attributes exist here, parse them.
883 // FIXME: Are we consistent with the ordering of parsing of different
884 // styles of attributes?
John McCall7f040a92010-12-24 02:08:15 +0000885 MaybeParseCXX0XAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +0000886
John Wiegley20c0da72011-04-27 23:09:49 +0000887 if (TagType == DeclSpec::TST_struct &&
Douglas Gregorb467cda2011-04-29 15:31:39 +0000888 !Tok.is(tok::identifier) &&
889 Tok.getIdentifierInfo() &&
890 (Tok.is(tok::kw___is_arithmetic) ||
891 Tok.is(tok::kw___is_convertible) ||
John Wiegley20c0da72011-04-27 23:09:49 +0000892 Tok.is(tok::kw___is_empty) ||
Douglas Gregorb467cda2011-04-29 15:31:39 +0000893 Tok.is(tok::kw___is_floating_point) ||
894 Tok.is(tok::kw___is_function) ||
John Wiegley20c0da72011-04-27 23:09:49 +0000895 Tok.is(tok::kw___is_fundamental) ||
Douglas Gregorb467cda2011-04-29 15:31:39 +0000896 Tok.is(tok::kw___is_integral) ||
897 Tok.is(tok::kw___is_member_function_pointer) ||
898 Tok.is(tok::kw___is_member_pointer) ||
899 Tok.is(tok::kw___is_pod) ||
900 Tok.is(tok::kw___is_pointer) ||
901 Tok.is(tok::kw___is_same) ||
Douglas Gregor877222e2011-04-29 01:38:03 +0000902 Tok.is(tok::kw___is_scalar) ||
Douglas Gregorb467cda2011-04-29 15:31:39 +0000903 Tok.is(tok::kw___is_signed) ||
904 Tok.is(tok::kw___is_unsigned) ||
905 Tok.is(tok::kw___is_void))) {
Douglas Gregor68876142011-07-30 07:01:49 +0000906 // GNU libstdc++ 4.2 and libc++ use certain intrinsic names as the
Douglas Gregorb467cda2011-04-29 15:31:39 +0000907 // name of struct templates, but some are keywords in GCC >= 4.3
908 // and Clang. Therefore, when we see the token sequence "struct
909 // X", make X into a normal identifier rather than a keyword, to
910 // allow libstdc++ 4.2 and libc++ to work properly.
Argyrios Kyrtzidis646395b2010-08-11 22:55:12 +0000911 Tok.getIdentifierInfo()->RevertTokenIDToIdentifier();
Douglas Gregorb117a602009-09-04 05:53:02 +0000912 Tok.setKind(tok::identifier);
913 }
Mike Stump1eb44332009-09-09 15:08:12 +0000914
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000915 // Parse the (optional) nested-name-specifier.
John McCallaa87d332009-12-12 11:40:51 +0000916 CXXScopeSpec &SS = DS.getTypeSpecScope();
Chris Lattner08d92ec2009-12-10 00:32:41 +0000917 if (getLang().CPlusPlus) {
918 // "FOO : BAR" is not a potential typo for "FOO::BAR".
919 ColonProtectionRAIIObject X(*this);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000920
John McCallb3d87482010-08-24 05:47:05 +0000921 if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(), true))
John McCall207014e2010-07-30 06:26:29 +0000922 DS.SetTypeSpecError();
John McCall9ba61662010-02-26 08:45:28 +0000923 if (SS.isSet())
Chris Lattner08d92ec2009-12-10 00:32:41 +0000924 if (Tok.isNot(tok::identifier) && Tok.isNot(tok::annot_template_id))
925 Diag(Tok, diag::err_expected_ident);
926 }
Douglas Gregorcc636682009-02-17 23:15:12 +0000927
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000928 TemplateParameterLists *TemplateParams = TemplateInfo.TemplateParams;
929
Douglas Gregorcc636682009-02-17 23:15:12 +0000930 // Parse the (optional) class name or simple-template-id.
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000931 IdentifierInfo *Name = 0;
932 SourceLocation NameLoc;
Douglas Gregor39a8de12009-02-25 19:37:18 +0000933 TemplateIdAnnotation *TemplateId = 0;
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000934 if (Tok.is(tok::identifier)) {
935 Name = Tok.getIdentifierInfo();
936 NameLoc = ConsumeToken();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000937
Douglas Gregor5ee37342010-05-30 22:30:21 +0000938 if (Tok.is(tok::less) && getLang().CPlusPlus) {
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000939 // The name was supposed to refer to a template, but didn't.
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000940 // Eat the template argument list and try to continue parsing this as
941 // a class (or template thereof).
942 TemplateArgList TemplateArgs;
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000943 SourceLocation LAngleLoc, RAngleLoc;
Douglas Gregor059101f2011-03-02 00:47:37 +0000944 if (ParseTemplateIdAfterTemplateName(TemplateTy(), NameLoc, SS,
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000945 true, LAngleLoc,
Douglas Gregor314b97f2009-11-10 19:49:08 +0000946 TemplateArgs, RAngleLoc)) {
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000947 // We couldn't parse the template argument list at all, so don't
948 // try to give any location information for the list.
949 LAngleLoc = RAngleLoc = SourceLocation();
950 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000951
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000952 Diag(NameLoc, diag::err_explicit_spec_non_template)
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000953 << (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation)
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000954 << (TagType == DeclSpec::TST_class? 0
955 : TagType == DeclSpec::TST_struct? 1
956 : 2)
957 << Name
958 << SourceRange(LAngleLoc, RAngleLoc);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000959
960 // Strip off the last template parameter list if it was empty, since
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000961 // we've removed its template argument list.
962 if (TemplateParams && TemplateInfo.LastParameterListWasEmpty) {
963 if (TemplateParams && TemplateParams->size() > 1) {
964 TemplateParams->pop_back();
965 } else {
966 TemplateParams = 0;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000967 const_cast<ParsedTemplateInfo&>(TemplateInfo).Kind
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000968 = ParsedTemplateInfo::NonTemplate;
969 }
970 } else if (TemplateInfo.Kind
971 == ParsedTemplateInfo::ExplicitInstantiation) {
972 // Pretend this is just a forward declaration.
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000973 TemplateParams = 0;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000974 const_cast<ParsedTemplateInfo&>(TemplateInfo).Kind
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000975 = ParsedTemplateInfo::NonTemplate;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000976 const_cast<ParsedTemplateInfo&>(TemplateInfo).TemplateLoc
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000977 = SourceLocation();
978 const_cast<ParsedTemplateInfo&>(TemplateInfo).ExternLoc
979 = SourceLocation();
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000980 }
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000981 }
Douglas Gregor39a8de12009-02-25 19:37:18 +0000982 } else if (Tok.is(tok::annot_template_id)) {
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +0000983 TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregor39a8de12009-02-25 19:37:18 +0000984 NameLoc = ConsumeToken();
Douglas Gregorcc636682009-02-17 23:15:12 +0000985
Douglas Gregor059101f2011-03-02 00:47:37 +0000986 if (TemplateId->Kind != TNK_Type_template &&
987 TemplateId->Kind != TNK_Dependent_template_name) {
Douglas Gregor39a8de12009-02-25 19:37:18 +0000988 // The template-name in the simple-template-id refers to
989 // something other than a class template. Give an appropriate
990 // error message and skip to the ';'.
991 SourceRange Range(NameLoc);
992 if (SS.isNotEmpty())
993 Range.setBegin(SS.getBeginLoc());
Douglas Gregorcc636682009-02-17 23:15:12 +0000994
Douglas Gregor39a8de12009-02-25 19:37:18 +0000995 Diag(TemplateId->LAngleLoc, diag::err_template_spec_syntax_non_template)
996 << Name << static_cast<int>(TemplateId->Kind) << Range;
Mike Stump1eb44332009-09-09 15:08:12 +0000997
Douglas Gregor39a8de12009-02-25 19:37:18 +0000998 DS.SetTypeSpecError();
999 SkipUntil(tok::semi, false, true);
Chandler Carruth926c4b42010-06-28 08:39:25 +00001000 if (SuppressingAccessChecks)
1001 Actions.ActOnStopSuppressingAccessChecks();
1002
Douglas Gregor39a8de12009-02-25 19:37:18 +00001003 return;
Douglas Gregorcc636682009-02-17 23:15:12 +00001004 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001005 }
1006
Chandler Carruth926c4b42010-06-28 08:39:25 +00001007 // As soon as we're finished parsing the class's template-id, turn access
1008 // checking back on.
1009 if (SuppressingAccessChecks)
1010 Actions.ActOnStopSuppressingAccessChecks();
1011
John McCall67d1a672009-08-06 02:15:43 +00001012 // There are four options here. If we have 'struct foo;', then this
1013 // is either a forward declaration or a friend declaration, which
Anders Carlssoncc54d592011-01-22 16:56:46 +00001014 // have to be treated differently. If we have 'struct foo {...',
Anders Carlsson1d209272011-03-25 14:55:14 +00001015 // 'struct foo :...' or 'struct foo final[opt]' then this is a
Anders Carlssoncc54d592011-01-22 16:56:46 +00001016 // definition. Otherwise we have something like 'struct foo xyz', a reference.
Sebastian Redld9bafa72010-02-03 21:21:43 +00001017 // However, in some contexts, things look like declarations but are just
1018 // references, e.g.
1019 // new struct s;
1020 // or
1021 // &T::operator struct s;
1022 // For these, SuppressDeclarations is true.
John McCallf312b1e2010-08-26 23:41:50 +00001023 Sema::TagUseKind TUK;
Sebastian Redld9bafa72010-02-03 21:21:43 +00001024 if (SuppressDeclarations)
John McCallf312b1e2010-08-26 23:41:50 +00001025 TUK = Sema::TUK_Reference;
Anders Carlssoncc54d592011-01-22 16:56:46 +00001026 else if (Tok.is(tok::l_brace) ||
1027 (getLang().CPlusPlus && Tok.is(tok::colon)) ||
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001028 isCXX0XFinalKeyword()) {
Douglas Gregord85bea22009-09-26 06:47:28 +00001029 if (DS.isFriendSpecified()) {
1030 // C++ [class.friend]p2:
1031 // A class shall not be defined in a friend declaration.
1032 Diag(Tok.getLocation(), diag::err_friend_decl_defines_class)
1033 << SourceRange(DS.getFriendSpecLoc());
1034
1035 // Skip everything up to the semicolon, so that this looks like a proper
1036 // friend class (or template thereof) declaration.
1037 SkipUntil(tok::semi, true, true);
John McCallf312b1e2010-08-26 23:41:50 +00001038 TUK = Sema::TUK_Friend;
Douglas Gregord85bea22009-09-26 06:47:28 +00001039 } else {
1040 // Okay, this is a class definition.
John McCallf312b1e2010-08-26 23:41:50 +00001041 TUK = Sema::TUK_Definition;
Douglas Gregord85bea22009-09-26 06:47:28 +00001042 }
1043 } else if (Tok.is(tok::semi))
John McCallf312b1e2010-08-26 23:41:50 +00001044 TUK = DS.isFriendSpecified() ? Sema::TUK_Friend : Sema::TUK_Declaration;
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001045 else
John McCallf312b1e2010-08-26 23:41:50 +00001046 TUK = Sema::TUK_Reference;
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001047
John McCall207014e2010-07-30 06:26:29 +00001048 if (!Name && !TemplateId && (DS.getTypeSpecType() == DeclSpec::TST_error ||
John McCallf312b1e2010-08-26 23:41:50 +00001049 TUK != Sema::TUK_Definition)) {
John McCall207014e2010-07-30 06:26:29 +00001050 if (DS.getTypeSpecType() != DeclSpec::TST_error) {
1051 // We have a declaration or reference to an anonymous class.
1052 Diag(StartLoc, diag::err_anon_type_definition)
1053 << DeclSpec::getSpecifierName(TagType);
1054 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001055
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001056 SkipUntil(tok::comma, true);
1057 return;
1058 }
1059
Douglas Gregorddc29e12009-02-06 22:42:48 +00001060 // Create the tag portion of the class or class template.
John McCalld226f652010-08-21 09:40:31 +00001061 DeclResult TagOrTempResult = true; // invalid
1062 TypeResult TypeResult = true; // invalid
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001063
Douglas Gregor402abb52009-05-28 23:31:59 +00001064 bool Owned = false;
John McCallf1bbbb42009-09-04 01:14:41 +00001065 if (TemplateId) {
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001066 // Explicit specialization, class template partial specialization,
1067 // or explicit instantiation.
Mike Stump1eb44332009-09-09 15:08:12 +00001068 ASTTemplateArgsPtr TemplateArgsPtr(Actions,
Douglas Gregor39a8de12009-02-25 19:37:18 +00001069 TemplateId->getTemplateArgs(),
Douglas Gregor39a8de12009-02-25 19:37:18 +00001070 TemplateId->NumArgs);
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001071 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallf312b1e2010-08-26 23:41:50 +00001072 TUK == Sema::TUK_Declaration) {
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001073 // This is an explicit instantiation of a class template.
1074 TagOrTempResult
Douglas Gregor23c94db2010-07-02 17:43:08 +00001075 = Actions.ActOnExplicitInstantiation(getCurScope(),
Douglas Gregor45f96552009-09-04 06:33:52 +00001076 TemplateInfo.ExternLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001077 TemplateInfo.TemplateLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001078 TagType,
Mike Stump1eb44332009-09-09 15:08:12 +00001079 StartLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001080 SS,
John McCall2b5289b2010-08-23 07:28:44 +00001081 TemplateId->Template,
Mike Stump1eb44332009-09-09 15:08:12 +00001082 TemplateId->TemplateNameLoc,
1083 TemplateId->LAngleLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001084 TemplateArgsPtr,
Mike Stump1eb44332009-09-09 15:08:12 +00001085 TemplateId->RAngleLoc,
John McCall7f040a92010-12-24 02:08:15 +00001086 attrs.getList());
John McCall74256f52010-04-14 00:24:33 +00001087
1088 // Friend template-ids are treated as references unless
1089 // they have template headers, in which case they're ill-formed
1090 // (FIXME: "template <class T> friend class A<T>::B<int>;").
1091 // We diagnose this error in ActOnClassTemplateSpecialization.
John McCallf312b1e2010-08-26 23:41:50 +00001092 } else if (TUK == Sema::TUK_Reference ||
1093 (TUK == Sema::TUK_Friend &&
John McCall74256f52010-04-14 00:24:33 +00001094 TemplateInfo.Kind == ParsedTemplateInfo::NonTemplate)) {
Douglas Gregor059101f2011-03-02 00:47:37 +00001095 TypeResult = Actions.ActOnTagTemplateIdType(TUK, TagType,
1096 StartLoc,
1097 TemplateId->SS,
1098 TemplateId->Template,
1099 TemplateId->TemplateNameLoc,
1100 TemplateId->LAngleLoc,
1101 TemplateArgsPtr,
1102 TemplateId->RAngleLoc);
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001103 } else {
1104 // This is an explicit specialization or a class template
1105 // partial specialization.
1106 TemplateParameterLists FakedParamLists;
1107
1108 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation) {
1109 // This looks like an explicit instantiation, because we have
1110 // something like
1111 //
1112 // template class Foo<X>
1113 //
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001114 // but it actually has a definition. Most likely, this was
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001115 // meant to be an explicit specialization, but the user forgot
1116 // the '<>' after 'template'.
John McCallf312b1e2010-08-26 23:41:50 +00001117 assert(TUK == Sema::TUK_Definition && "Expected a definition here");
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001118
Mike Stump1eb44332009-09-09 15:08:12 +00001119 SourceLocation LAngleLoc
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001120 = PP.getLocForEndOfToken(TemplateInfo.TemplateLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00001121 Diag(TemplateId->TemplateNameLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001122 diag::err_explicit_instantiation_with_definition)
1123 << SourceRange(TemplateInfo.TemplateLoc)
Douglas Gregor849b2432010-03-31 17:46:05 +00001124 << FixItHint::CreateInsertion(LAngleLoc, "<>");
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001125
1126 // Create a fake template parameter list that contains only
1127 // "template<>", so that we treat this construct as a class
1128 // template specialization.
1129 FakedParamLists.push_back(
Mike Stump1eb44332009-09-09 15:08:12 +00001130 Actions.ActOnTemplateParameterList(0, SourceLocation(),
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001131 TemplateInfo.TemplateLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001132 LAngleLoc,
1133 0, 0,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001134 LAngleLoc));
1135 TemplateParams = &FakedParamLists;
1136 }
1137
1138 // Build the class template specialization.
1139 TagOrTempResult
Douglas Gregor23c94db2010-07-02 17:43:08 +00001140 = Actions.ActOnClassTemplateSpecialization(getCurScope(), TagType, TUK,
Douglas Gregord023aec2011-09-09 20:53:38 +00001141 StartLoc, DS.getModulePrivateSpecLoc(), SS,
John McCall2b5289b2010-08-23 07:28:44 +00001142 TemplateId->Template,
Mike Stump1eb44332009-09-09 15:08:12 +00001143 TemplateId->TemplateNameLoc,
1144 TemplateId->LAngleLoc,
Douglas Gregor39a8de12009-02-25 19:37:18 +00001145 TemplateArgsPtr,
Mike Stump1eb44332009-09-09 15:08:12 +00001146 TemplateId->RAngleLoc,
John McCall7f040a92010-12-24 02:08:15 +00001147 attrs.getList(),
John McCallf312b1e2010-08-26 23:41:50 +00001148 MultiTemplateParamsArg(Actions,
Douglas Gregorcc636682009-02-17 23:15:12 +00001149 TemplateParams? &(*TemplateParams)[0] : 0,
1150 TemplateParams? TemplateParams->size() : 0));
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001151 }
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001152 } else if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallf312b1e2010-08-26 23:41:50 +00001153 TUK == Sema::TUK_Declaration) {
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001154 // Explicit instantiation of a member of a class template
1155 // specialization, e.g.,
1156 //
1157 // template struct Outer<int>::Inner;
1158 //
1159 TagOrTempResult
Douglas Gregor23c94db2010-07-02 17:43:08 +00001160 = Actions.ActOnExplicitInstantiation(getCurScope(),
Douglas Gregor45f96552009-09-04 06:33:52 +00001161 TemplateInfo.ExternLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001162 TemplateInfo.TemplateLoc,
1163 TagType, StartLoc, SS, Name,
John McCall7f040a92010-12-24 02:08:15 +00001164 NameLoc, attrs.getList());
John McCall9a34edb2010-10-19 01:40:49 +00001165 } else if (TUK == Sema::TUK_Friend &&
1166 TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate) {
1167 TagOrTempResult =
1168 Actions.ActOnTemplatedFriendTag(getCurScope(), DS.getFriendSpecLoc(),
1169 TagType, StartLoc, SS,
John McCall7f040a92010-12-24 02:08:15 +00001170 Name, NameLoc, attrs.getList(),
John McCall9a34edb2010-10-19 01:40:49 +00001171 MultiTemplateParamsArg(Actions,
1172 TemplateParams? &(*TemplateParams)[0] : 0,
1173 TemplateParams? TemplateParams->size() : 0));
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001174 } else {
1175 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallf312b1e2010-08-26 23:41:50 +00001176 TUK == Sema::TUK_Definition) {
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001177 // FIXME: Diagnose this particular error.
1178 }
1179
John McCallc4e70192009-09-11 04:59:25 +00001180 bool IsDependent = false;
1181
John McCalla25c4082010-10-19 18:40:57 +00001182 // Don't pass down template parameter lists if this is just a tag
1183 // reference. For example, we don't need the template parameters here:
1184 // template <class T> class A *makeA(T t);
1185 MultiTemplateParamsArg TParams;
1186 if (TUK != Sema::TUK_Reference && TemplateParams)
1187 TParams =
1188 MultiTemplateParamsArg(&(*TemplateParams)[0], TemplateParams->size());
1189
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001190 // Declaration or definition of a class type
John McCall9a34edb2010-10-19 01:40:49 +00001191 TagOrTempResult = Actions.ActOnTag(getCurScope(), TagType, TUK, StartLoc,
John McCall7f040a92010-12-24 02:08:15 +00001192 SS, Name, NameLoc, attrs.getList(), AS,
Douglas Gregore7612302011-09-09 19:05:14 +00001193 DS.getModulePrivateSpecLoc(),
John McCalla25c4082010-10-19 18:40:57 +00001194 TParams, Owned, IsDependent, false,
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +00001195 false, clang::TypeResult());
John McCallc4e70192009-09-11 04:59:25 +00001196
1197 // If ActOnTag said the type was dependent, try again with the
1198 // less common call.
John McCall9a34edb2010-10-19 01:40:49 +00001199 if (IsDependent) {
1200 assert(TUK == Sema::TUK_Reference || TUK == Sema::TUK_Friend);
Douglas Gregor23c94db2010-07-02 17:43:08 +00001201 TypeResult = Actions.ActOnDependentTag(getCurScope(), TagType, TUK,
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001202 SS, Name, StartLoc, NameLoc);
John McCall9a34edb2010-10-19 01:40:49 +00001203 }
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001204 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001205
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001206 // If there is a body, parse it and inform the actions module.
John McCallf312b1e2010-08-26 23:41:50 +00001207 if (TUK == Sema::TUK_Definition) {
John McCallbd0dfa52009-12-19 21:48:58 +00001208 assert(Tok.is(tok::l_brace) ||
Anders Carlssoncc54d592011-01-22 16:56:46 +00001209 (getLang().CPlusPlus && Tok.is(tok::colon)) ||
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001210 isCXX0XFinalKeyword());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001211 if (getLang().CPlusPlus)
Douglas Gregor212e81c2009-03-25 00:13:59 +00001212 ParseCXXMemberSpecification(StartLoc, TagType, TagOrTempResult.get());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001213 else
Douglas Gregor212e81c2009-03-25 00:13:59 +00001214 ParseStructUnionBody(StartLoc, TagType, TagOrTempResult.get());
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001215 }
1216
John McCallb3d87482010-08-24 05:47:05 +00001217 const char *PrevSpec = 0;
1218 unsigned DiagID;
1219 bool Result;
John McCallc4e70192009-09-11 04:59:25 +00001220 if (!TypeResult.isInvalid()) {
Abramo Bagnara0daaf322011-03-16 20:16:18 +00001221 Result = DS.SetTypeSpecType(DeclSpec::TST_typename, StartLoc,
1222 NameLoc.isValid() ? NameLoc : StartLoc,
John McCallb3d87482010-08-24 05:47:05 +00001223 PrevSpec, DiagID, TypeResult.get());
John McCallc4e70192009-09-11 04:59:25 +00001224 } else if (!TagOrTempResult.isInvalid()) {
Abramo Bagnara0daaf322011-03-16 20:16:18 +00001225 Result = DS.SetTypeSpecType(TagType, StartLoc,
1226 NameLoc.isValid() ? NameLoc : StartLoc,
1227 PrevSpec, DiagID, TagOrTempResult.get(), Owned);
John McCallc4e70192009-09-11 04:59:25 +00001228 } else {
Douglas Gregorddc29e12009-02-06 22:42:48 +00001229 DS.SetTypeSpecError();
Anders Carlsson66e99772009-05-11 22:27:47 +00001230 return;
1231 }
Mike Stump1eb44332009-09-09 15:08:12 +00001232
John McCallb3d87482010-08-24 05:47:05 +00001233 if (Result)
John McCallfec54012009-08-03 20:12:06 +00001234 Diag(StartLoc, DiagID) << PrevSpec;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001235
Chris Lattner4ed5d912010-02-02 01:23:29 +00001236 // At this point, we've successfully parsed a class-specifier in 'definition'
1237 // form (e.g. "struct foo { int x; }". While we could just return here, we're
1238 // going to look at what comes after it to improve error recovery. If an
1239 // impossible token occurs next, we assume that the programmer forgot a ; at
1240 // the end of the declaration and recover that way.
1241 //
1242 // This switch enumerates the valid "follow" set for definition.
John McCallf312b1e2010-08-26 23:41:50 +00001243 if (TUK == Sema::TUK_Definition) {
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001244 bool ExpectedSemi = true;
Chris Lattner4ed5d912010-02-02 01:23:29 +00001245 switch (Tok.getKind()) {
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001246 default: break;
Chris Lattner4ed5d912010-02-02 01:23:29 +00001247 case tok::semi: // struct foo {...} ;
Chris Lattner99c95202010-02-02 17:32:27 +00001248 case tok::star: // struct foo {...} * P;
1249 case tok::amp: // struct foo {...} & R = ...
1250 case tok::identifier: // struct foo {...} V ;
1251 case tok::r_paren: //(struct foo {...} ) {4}
1252 case tok::annot_cxxscope: // struct foo {...} a:: b;
1253 case tok::annot_typename: // struct foo {...} a ::b;
1254 case tok::annot_template_id: // struct foo {...} a<int> ::b;
Chris Lattnerc2e1c1a2010-02-03 20:41:24 +00001255 case tok::l_paren: // struct foo {...} ( x);
Chris Lattner16acfee2010-02-03 01:45:03 +00001256 case tok::comma: // __builtin_offsetof(struct foo{...} ,
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001257 ExpectedSemi = false;
1258 break;
1259 // Type qualifiers
1260 case tok::kw_const: // struct foo {...} const x;
1261 case tok::kw_volatile: // struct foo {...} volatile x;
1262 case tok::kw_restrict: // struct foo {...} restrict x;
1263 case tok::kw_inline: // struct foo {...} inline foo() {};
Chris Lattner99c95202010-02-02 17:32:27 +00001264 // Storage-class specifiers
1265 case tok::kw_static: // struct foo {...} static x;
1266 case tok::kw_extern: // struct foo {...} extern x;
1267 case tok::kw_typedef: // struct foo {...} typedef x;
1268 case tok::kw_register: // struct foo {...} register x;
1269 case tok::kw_auto: // struct foo {...} auto x;
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001270 case tok::kw_mutable: // struct foo {...} mutable x;
1271 case tok::kw_constexpr: // struct foo {...} constexpr x;
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001272 // As shown above, type qualifiers and storage class specifiers absolutely
1273 // can occur after class specifiers according to the grammar. However,
Chris Lattnerfc8f0e12011-04-15 05:22:18 +00001274 // almost no one actually writes code like this. If we see one of these,
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001275 // it is much more likely that someone missed a semi colon and the
1276 // type/storage class specifier we're seeing is part of the *next*
1277 // intended declaration, as in:
1278 //
1279 // struct foo { ... }
1280 // typedef int X;
1281 //
1282 // We'd really like to emit a missing semicolon error instead of emitting
1283 // an error on the 'int' saying that you can't have two type specifiers in
1284 // the same declaration of X. Because of this, we look ahead past this
1285 // token to see if it's a type specifier. If so, we know the code is
1286 // otherwise invalid, so we can produce the expected semi error.
1287 if (!isKnownToBeTypeSpecifier(NextToken()))
1288 ExpectedSemi = false;
Chris Lattner4ed5d912010-02-02 01:23:29 +00001289 break;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001290
1291 case tok::r_brace: // struct bar { struct foo {...} }
Chris Lattner4ed5d912010-02-02 01:23:29 +00001292 // Missing ';' at end of struct is accepted as an extension in C mode.
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001293 if (!getLang().CPlusPlus)
1294 ExpectedSemi = false;
1295 break;
1296 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001297
Richard Smithcf6b0a22011-07-14 21:35:26 +00001298 // C++ [temp]p3 In a template-declaration which defines a class, no
1299 // declarator is permitted.
1300 if (TemplateInfo.Kind)
1301 ExpectedSemi = true;
1302
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001303 if (ExpectedSemi) {
Chris Lattner4ed5d912010-02-02 01:23:29 +00001304 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_tagdecl,
1305 TagType == DeclSpec::TST_class ? "class"
1306 : TagType == DeclSpec::TST_struct? "struct" : "union");
1307 // Push this token back into the preprocessor and change our current token
1308 // to ';' so that the rest of the code recovers as though there were an
1309 // ';' after the definition.
1310 PP.EnterToken(Tok);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001311 Tok.setKind(tok::semi);
Chris Lattner4ed5d912010-02-02 01:23:29 +00001312 }
1313 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001314}
1315
Mike Stump1eb44332009-09-09 15:08:12 +00001316/// ParseBaseClause - Parse the base-clause of a C++ class [C++ class.derived].
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001317///
1318/// base-clause : [C++ class.derived]
1319/// ':' base-specifier-list
1320/// base-specifier-list:
1321/// base-specifier '...'[opt]
1322/// base-specifier-list ',' base-specifier '...'[opt]
John McCalld226f652010-08-21 09:40:31 +00001323void Parser::ParseBaseClause(Decl *ClassDecl) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001324 assert(Tok.is(tok::colon) && "Not a base clause");
1325 ConsumeToken();
1326
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001327 // Build up an array of parsed base specifiers.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001328 SmallVector<CXXBaseSpecifier *, 8> BaseInfo;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001329
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001330 while (true) {
1331 // Parse a base-specifier.
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001332 BaseResult Result = ParseBaseSpecifier(ClassDecl);
Douglas Gregor5ac8aff2009-01-26 22:44:13 +00001333 if (Result.isInvalid()) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001334 // Skip the rest of this base specifier, up until the comma or
1335 // opening brace.
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001336 SkipUntil(tok::comma, tok::l_brace, true, true);
1337 } else {
1338 // Add this to our array of base specifiers.
Douglas Gregor5ac8aff2009-01-26 22:44:13 +00001339 BaseInfo.push_back(Result.get());
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001340 }
1341
1342 // If the next token is a comma, consume it and keep reading
1343 // base-specifiers.
1344 if (Tok.isNot(tok::comma)) break;
Mike Stump1eb44332009-09-09 15:08:12 +00001345
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001346 // Consume the comma.
1347 ConsumeToken();
1348 }
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001349
1350 // Attach the base specifiers
Jay Foadbeaaccd2009-05-21 09:52:38 +00001351 Actions.ActOnBaseSpecifiers(ClassDecl, BaseInfo.data(), BaseInfo.size());
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001352}
1353
1354/// ParseBaseSpecifier - Parse a C++ base-specifier. A base-specifier is
1355/// one entry in the base class list of a class specifier, for example:
1356/// class foo : public bar, virtual private baz {
1357/// 'public bar' and 'virtual private baz' are each base-specifiers.
1358///
1359/// base-specifier: [C++ class.derived]
1360/// ::[opt] nested-name-specifier[opt] class-name
1361/// 'virtual' access-specifier[opt] ::[opt] nested-name-specifier[opt]
1362/// class-name
1363/// access-specifier 'virtual'[opt] ::[opt] nested-name-specifier[opt]
1364/// class-name
John McCalld226f652010-08-21 09:40:31 +00001365Parser::BaseResult Parser::ParseBaseSpecifier(Decl *ClassDecl) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001366 bool IsVirtual = false;
1367 SourceLocation StartLoc = Tok.getLocation();
1368
1369 // Parse the 'virtual' keyword.
1370 if (Tok.is(tok::kw_virtual)) {
1371 ConsumeToken();
1372 IsVirtual = true;
1373 }
1374
1375 // Parse an (optional) access specifier.
1376 AccessSpecifier Access = getAccessSpecifierIfPresent();
John McCall92f88312010-01-23 00:46:32 +00001377 if (Access != AS_none)
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001378 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001379
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001380 // Parse the 'virtual' keyword (again!), in case it came after the
1381 // access specifier.
1382 if (Tok.is(tok::kw_virtual)) {
1383 SourceLocation VirtualLoc = ConsumeToken();
1384 if (IsVirtual) {
1385 // Complain about duplicate 'virtual'
Chris Lattner1ab3b962008-11-18 07:48:38 +00001386 Diag(VirtualLoc, diag::err_dup_virtual)
Douglas Gregor849b2432010-03-31 17:46:05 +00001387 << FixItHint::CreateRemoval(VirtualLoc);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001388 }
1389
1390 IsVirtual = true;
1391 }
1392
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001393 // Parse optional '::' and optional nested-name-specifier.
1394 CXXScopeSpec SS;
John McCallb3d87482010-08-24 05:47:05 +00001395 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), /*EnteringContext=*/false);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001396
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001397 // The location of the base class itself.
1398 SourceLocation BaseLoc = Tok.getLocation();
Douglas Gregor42a552f2008-11-05 20:51:48 +00001399
1400 // Parse the class-name.
Douglas Gregor7f43d672009-02-25 23:52:28 +00001401 SourceLocation EndLocation;
Douglas Gregor059101f2011-03-02 00:47:37 +00001402 TypeResult BaseType = ParseClassName(EndLocation, SS);
Douglas Gregor31a19b62009-04-01 21:51:26 +00001403 if (BaseType.isInvalid())
Douglas Gregor42a552f2008-11-05 20:51:48 +00001404 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001405
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001406 // Parse the optional ellipsis (for a pack expansion). The ellipsis is
1407 // actually part of the base-specifier-list grammar productions, but we
1408 // parse it here for convenience.
1409 SourceLocation EllipsisLoc;
1410 if (Tok.is(tok::ellipsis))
1411 EllipsisLoc = ConsumeToken();
1412
Mike Stump1eb44332009-09-09 15:08:12 +00001413 // Find the complete source range for the base-specifier.
Douglas Gregor7f43d672009-02-25 23:52:28 +00001414 SourceRange Range(StartLoc, EndLocation);
Mike Stump1eb44332009-09-09 15:08:12 +00001415
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001416 // Notify semantic analysis that we have parsed a complete
1417 // base-specifier.
Sebastian Redla55e52c2008-11-25 22:21:31 +00001418 return Actions.ActOnBaseSpecifier(ClassDecl, Range, IsVirtual, Access,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001419 BaseType.get(), BaseLoc, EllipsisLoc);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001420}
1421
1422/// getAccessSpecifierIfPresent - Determine whether the next token is
1423/// a C++ access-specifier.
1424///
1425/// access-specifier: [C++ class.derived]
1426/// 'private'
1427/// 'protected'
1428/// 'public'
Mike Stump1eb44332009-09-09 15:08:12 +00001429AccessSpecifier Parser::getAccessSpecifierIfPresent() const {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001430 switch (Tok.getKind()) {
1431 default: return AS_none;
1432 case tok::kw_private: return AS_private;
1433 case tok::kw_protected: return AS_protected;
1434 case tok::kw_public: return AS_public;
1435 }
1436}
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001437
Eli Friedmand33133c2009-07-22 21:45:50 +00001438void Parser::HandleMemberFunctionDefaultArgs(Declarator& DeclaratorInfo,
John McCalld226f652010-08-21 09:40:31 +00001439 Decl *ThisDecl) {
Eli Friedmand33133c2009-07-22 21:45:50 +00001440 // We just declared a member function. If this member function
1441 // has any default arguments, we'll need to parse them later.
1442 LateParsedMethodDeclaration *LateMethod = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001443 DeclaratorChunk::FunctionTypeInfo &FTI
Abramo Bagnara075f8f12010-12-10 16:29:40 +00001444 = DeclaratorInfo.getFunctionTypeInfo();
Eli Friedmand33133c2009-07-22 21:45:50 +00001445 for (unsigned ParamIdx = 0; ParamIdx < FTI.NumArgs; ++ParamIdx) {
1446 if (LateMethod || FTI.ArgInfo[ParamIdx].DefaultArgTokens) {
1447 if (!LateMethod) {
1448 // Push this method onto the stack of late-parsed method
1449 // declarations.
Douglas Gregord54eb442010-10-12 16:25:54 +00001450 LateMethod = new LateParsedMethodDeclaration(this, ThisDecl);
1451 getCurrentClass().LateParsedDeclarations.push_back(LateMethod);
Douglas Gregor23c94db2010-07-02 17:43:08 +00001452 LateMethod->TemplateScope = getCurScope()->isTemplateParamScope();
Eli Friedmand33133c2009-07-22 21:45:50 +00001453
1454 // Add all of the parameters prior to this one (they don't
1455 // have default arguments).
1456 LateMethod->DefaultArgs.reserve(FTI.NumArgs);
1457 for (unsigned I = 0; I < ParamIdx; ++I)
1458 LateMethod->DefaultArgs.push_back(
Douglas Gregor8f8210c2010-03-02 01:29:43 +00001459 LateParsedDefaultArgument(FTI.ArgInfo[I].Param));
Eli Friedmand33133c2009-07-22 21:45:50 +00001460 }
1461
1462 // Add this parameter to the list of parameters (it or may
1463 // not have a default argument).
1464 LateMethod->DefaultArgs.push_back(
1465 LateParsedDefaultArgument(FTI.ArgInfo[ParamIdx].Param,
1466 FTI.ArgInfo[ParamIdx].DefaultArgTokens));
1467 }
1468 }
1469}
1470
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001471/// isCXX0XVirtSpecifier - Determine whether the next token is a C++0x
1472/// virt-specifier.
1473///
1474/// virt-specifier:
1475/// override
1476/// final
Anders Carlssoncc54d592011-01-22 16:56:46 +00001477VirtSpecifiers::Specifier Parser::isCXX0XVirtSpecifier() const {
Anders Carlssonce93a7c2011-01-22 23:01:49 +00001478 if (!getLang().CPlusPlus)
Anders Carlssoncc54d592011-01-22 16:56:46 +00001479 return VirtSpecifiers::VS_None;
1480
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001481 if (Tok.is(tok::identifier)) {
1482 IdentifierInfo *II = Tok.getIdentifierInfo();
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001483
Anders Carlsson7eeb4ec2011-01-20 03:47:08 +00001484 // Initialize the contextual keywords.
1485 if (!Ident_final) {
1486 Ident_final = &PP.getIdentifierTable().get("final");
1487 Ident_override = &PP.getIdentifierTable().get("override");
1488 }
1489
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001490 if (II == Ident_override)
1491 return VirtSpecifiers::VS_Override;
1492
1493 if (II == Ident_final)
1494 return VirtSpecifiers::VS_Final;
1495 }
1496
1497 return VirtSpecifiers::VS_None;
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001498}
1499
1500/// ParseOptionalCXX0XVirtSpecifierSeq - Parse a virt-specifier-seq.
1501///
1502/// virt-specifier-seq:
1503/// virt-specifier
1504/// virt-specifier-seq virt-specifier
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001505void Parser::ParseOptionalCXX0XVirtSpecifierSeq(VirtSpecifiers &VS) {
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001506 while (true) {
Anders Carlssoncc54d592011-01-22 16:56:46 +00001507 VirtSpecifiers::Specifier Specifier = isCXX0XVirtSpecifier();
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001508 if (Specifier == VirtSpecifiers::VS_None)
1509 return;
1510
1511 // C++ [class.mem]p8:
1512 // A virt-specifier-seq shall contain at most one of each virt-specifier.
Anders Carlssoncc54d592011-01-22 16:56:46 +00001513 const char *PrevSpec = 0;
Anders Carlsson46127a92011-01-22 15:58:16 +00001514 if (VS.SetSpecifier(Specifier, Tok.getLocation(), PrevSpec))
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001515 Diag(Tok.getLocation(), diag::err_duplicate_virt_specifier)
1516 << PrevSpec
1517 << FixItHint::CreateRemoval(Tok.getLocation());
1518
Anders Carlssonce93a7c2011-01-22 23:01:49 +00001519 if (!getLang().CPlusPlus0x)
1520 Diag(Tok.getLocation(), diag::ext_override_control_keyword)
1521 << VirtSpecifiers::getSpecifierName(Specifier);
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001522 ConsumeToken();
1523 }
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001524}
1525
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001526/// isCXX0XFinalKeyword - Determine whether the next token is a C++0x
1527/// contextual 'final' keyword.
1528bool Parser::isCXX0XFinalKeyword() const {
Anders Carlssonce93a7c2011-01-22 23:01:49 +00001529 if (!getLang().CPlusPlus)
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001530 return false;
Anders Carlssoncc54d592011-01-22 16:56:46 +00001531
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001532 if (!Tok.is(tok::identifier))
1533 return false;
Anders Carlssoncc54d592011-01-22 16:56:46 +00001534
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001535 // Initialize the contextual keywords.
1536 if (!Ident_final) {
1537 Ident_final = &PP.getIdentifierTable().get("final");
1538 Ident_override = &PP.getIdentifierTable().get("override");
1539 }
Anders Carlssoncc54d592011-01-22 16:56:46 +00001540
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001541 return Tok.getIdentifierInfo() == Ident_final;
Anders Carlssoncc54d592011-01-22 16:56:46 +00001542}
1543
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001544/// ParseCXXClassMemberDeclaration - Parse a C++ class member declaration.
1545///
1546/// member-declaration:
1547/// decl-specifier-seq[opt] member-declarator-list[opt] ';'
1548/// function-definition ';'[opt]
1549/// ::[opt] nested-name-specifier template[opt] unqualified-id ';'[TODO]
1550/// using-declaration [TODO]
Anders Carlsson511d7ab2009-03-11 16:27:10 +00001551/// [C++0x] static_assert-declaration
Anders Carlsson5aeccdb2009-03-26 00:52:18 +00001552/// template-declaration
Chris Lattnerbc8d5642008-12-18 01:12:00 +00001553/// [GNU] '__extension__' member-declaration
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001554///
1555/// member-declarator-list:
1556/// member-declarator
1557/// member-declarator-list ',' member-declarator
1558///
1559/// member-declarator:
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001560/// declarator virt-specifier-seq[opt] pure-specifier[opt]
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001561/// declarator constant-initializer[opt]
Richard Smith7a614d82011-06-11 17:19:42 +00001562/// [C++11] declarator brace-or-equal-initializer[opt]
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001563/// identifier[opt] ':' constant-expression
1564///
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001565/// virt-specifier-seq:
1566/// virt-specifier
1567/// virt-specifier-seq virt-specifier
1568///
1569/// virt-specifier:
1570/// override
1571/// final
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001572///
Sebastian Redle2b68332009-04-12 17:16:29 +00001573/// pure-specifier:
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001574/// '= 0'
1575///
1576/// constant-initializer:
1577/// '=' constant-expression
1578///
Douglas Gregor37b372b2009-08-20 22:52:58 +00001579void Parser::ParseCXXClassMemberDeclaration(AccessSpecifier AS,
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001580 AttributeList *AccessAttrs,
John McCallc9068d72010-07-16 08:13:16 +00001581 const ParsedTemplateInfo &TemplateInfo,
1582 ParsingDeclRAIIObject *TemplateDiags) {
Douglas Gregor8a9013d2011-04-14 17:21:19 +00001583 if (Tok.is(tok::at)) {
1584 if (getLang().ObjC1 && NextToken().isObjCAtKeyword(tok::objc_defs))
1585 Diag(Tok, diag::err_at_defs_cxx);
1586 else
1587 Diag(Tok, diag::err_at_in_class);
1588
1589 ConsumeToken();
1590 SkipUntil(tok::r_brace);
1591 return;
1592 }
1593
John McCall60fa3cf2009-12-11 02:10:03 +00001594 // Access declarations.
1595 if (!TemplateInfo.Kind &&
1596 (Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) &&
John McCall9ba61662010-02-26 08:45:28 +00001597 !TryAnnotateCXXScopeToken() &&
John McCall60fa3cf2009-12-11 02:10:03 +00001598 Tok.is(tok::annot_cxxscope)) {
1599 bool isAccessDecl = false;
1600 if (NextToken().is(tok::identifier))
1601 isAccessDecl = GetLookAheadToken(2).is(tok::semi);
1602 else
1603 isAccessDecl = NextToken().is(tok::kw_operator);
1604
1605 if (isAccessDecl) {
1606 // Collect the scope specifier token we annotated earlier.
1607 CXXScopeSpec SS;
John McCallb3d87482010-08-24 05:47:05 +00001608 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
John McCall60fa3cf2009-12-11 02:10:03 +00001609
1610 // Try to parse an unqualified-id.
1611 UnqualifiedId Name;
John McCallb3d87482010-08-24 05:47:05 +00001612 if (ParseUnqualifiedId(SS, false, true, true, ParsedType(), Name)) {
John McCall60fa3cf2009-12-11 02:10:03 +00001613 SkipUntil(tok::semi);
1614 return;
1615 }
1616
1617 // TODO: recover from mistakenly-qualified operator declarations.
1618 if (ExpectAndConsume(tok::semi,
1619 diag::err_expected_semi_after,
1620 "access declaration",
1621 tok::semi))
1622 return;
1623
Douglas Gregor23c94db2010-07-02 17:43:08 +00001624 Actions.ActOnUsingDeclaration(getCurScope(), AS,
John McCall60fa3cf2009-12-11 02:10:03 +00001625 false, SourceLocation(),
1626 SS, Name,
1627 /* AttrList */ 0,
1628 /* IsTypeName */ false,
1629 SourceLocation());
1630 return;
1631 }
1632 }
1633
Anders Carlsson511d7ab2009-03-11 16:27:10 +00001634 // static_assert-declaration
Peter Collingbournec6eb44b2011-04-15 00:35:57 +00001635 if (Tok.is(tok::kw_static_assert) || Tok.is(tok::kw__Static_assert)) {
Douglas Gregor37b372b2009-08-20 22:52:58 +00001636 // FIXME: Check for templates
Chris Lattner97144fc2009-04-02 04:16:50 +00001637 SourceLocation DeclEnd;
1638 ParseStaticAssertDeclaration(DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +00001639 return;
1640 }
Mike Stump1eb44332009-09-09 15:08:12 +00001641
Chris Lattner682bf922009-03-29 16:50:03 +00001642 if (Tok.is(tok::kw_template)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001643 assert(!TemplateInfo.TemplateParams &&
Douglas Gregor37b372b2009-08-20 22:52:58 +00001644 "Nested template improperly parsed?");
Chris Lattner97144fc2009-04-02 04:16:50 +00001645 SourceLocation DeclEnd;
Mike Stump1eb44332009-09-09 15:08:12 +00001646 ParseDeclarationStartingWithTemplate(Declarator::MemberContext, DeclEnd,
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001647 AS, AccessAttrs);
Chris Lattner682bf922009-03-29 16:50:03 +00001648 return;
1649 }
Anders Carlsson5aeccdb2009-03-26 00:52:18 +00001650
Chris Lattnerbc8d5642008-12-18 01:12:00 +00001651 // Handle: member-declaration ::= '__extension__' member-declaration
1652 if (Tok.is(tok::kw___extension__)) {
1653 // __extension__ silences extension warnings in the subexpression.
1654 ExtensionRAIIObject O(Diags); // Use RAII to do this.
1655 ConsumeToken();
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001656 return ParseCXXClassMemberDeclaration(AS, AccessAttrs,
1657 TemplateInfo, TemplateDiags);
Chris Lattnerbc8d5642008-12-18 01:12:00 +00001658 }
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001659
Chris Lattner4ed5d912010-02-02 01:23:29 +00001660 // Don't parse FOO:BAR as if it were a typo for FOO::BAR, in this context it
1661 // is a bitfield.
Chris Lattnera1efc8c2009-12-10 01:59:24 +00001662 ColonProtectionRAIIObject X(*this);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001663
John McCall0b7e6782011-03-24 11:26:52 +00001664 ParsedAttributesWithRange attrs(AttrFactory);
Sean Huntbbd37c62009-11-21 08:43:09 +00001665 // Optional C++0x attribute-specifier
John McCall7f040a92010-12-24 02:08:15 +00001666 MaybeParseCXX0XAttributes(attrs);
1667 MaybeParseMicrosoftAttributes(attrs);
Sean Huntbbd37c62009-11-21 08:43:09 +00001668
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001669 if (Tok.is(tok::kw_using)) {
John McCall7f040a92010-12-24 02:08:15 +00001670 ProhibitAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +00001671
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001672 // Eat 'using'.
1673 SourceLocation UsingLoc = ConsumeToken();
1674
1675 if (Tok.is(tok::kw_namespace)) {
1676 Diag(UsingLoc, diag::err_using_namespace_in_class);
1677 SkipUntil(tok::semi, true, true);
Chris Lattnerae50d502010-02-02 00:43:15 +00001678 } else {
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001679 SourceLocation DeclEnd;
Richard Smith3e4c6c42011-05-05 21:57:07 +00001680 // Otherwise, it must be a using-declaration or an alias-declaration.
John McCall78b81052010-11-10 02:40:36 +00001681 ParseUsingDeclaration(Declarator::MemberContext, TemplateInfo,
1682 UsingLoc, DeclEnd, AS);
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001683 }
1684 return;
1685 }
1686
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001687 // decl-specifier-seq:
1688 // Parse the common declaration-specifiers piece.
John McCallc9068d72010-07-16 08:13:16 +00001689 ParsingDeclSpec DS(*this, TemplateDiags);
John McCall7f040a92010-12-24 02:08:15 +00001690 DS.takeAttributesFrom(attrs);
Douglas Gregor37b372b2009-08-20 22:52:58 +00001691 ParseDeclarationSpecifiers(DS, TemplateInfo, AS, DSC_class);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001692
John McCallf312b1e2010-08-26 23:41:50 +00001693 MultiTemplateParamsArg TemplateParams(Actions,
John McCalldd4a3b02009-09-16 22:47:08 +00001694 TemplateInfo.TemplateParams? TemplateInfo.TemplateParams->data() : 0,
1695 TemplateInfo.TemplateParams? TemplateInfo.TemplateParams->size() : 0);
1696
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001697 if (Tok.is(tok::semi)) {
1698 ConsumeToken();
John McCalld226f652010-08-21 09:40:31 +00001699 Decl *TheDecl =
Chandler Carruth0f4be742011-05-03 18:35:10 +00001700 Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS, DS, TemplateParams);
John McCallc9068d72010-07-16 08:13:16 +00001701 DS.complete(TheDecl);
John McCall67d1a672009-08-06 02:15:43 +00001702 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001703 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001704
John McCall54abf7d2009-11-04 02:18:39 +00001705 ParsingDeclarator DeclaratorInfo(*this, DS, Declarator::MemberContext);
Nico Weber48673472011-01-28 06:07:34 +00001706 VirtSpecifiers VS;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001707
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001708 // Hold late-parsed attributes so we can attach a Decl to them later.
1709 LateParsedAttrList LateParsedAttrs;
1710
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001711 if (Tok.isNot(tok::colon)) {
Chris Lattnera1efc8c2009-12-10 01:59:24 +00001712 // Don't parse FOO:BAR as if it were a typo for FOO::BAR.
1713 ColonProtectionRAIIObject X(*this);
1714
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001715 // Parse the first declarator.
1716 ParseDeclarator(DeclaratorInfo);
1717 // Error parsing the declarator?
Douglas Gregor10bd3682008-11-17 22:58:34 +00001718 if (!DeclaratorInfo.hasName()) {
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001719 // If so, skip until the semi-colon or a }.
Sebastian Redld941fa42011-04-24 16:27:48 +00001720 SkipUntil(tok::r_brace, true, true);
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001721 if (Tok.is(tok::semi))
1722 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001723 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001724 }
1725
Nico Weber48673472011-01-28 06:07:34 +00001726 ParseOptionalCXX0XVirtSpecifierSeq(VS);
1727
John Thompson1b2fc0f2009-11-25 22:58:06 +00001728 // If attributes exist after the declarator, but before an '{', parse them.
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001729 MaybeParseGNUAttributes(DeclaratorInfo, &LateParsedAttrs);
John Thompson1b2fc0f2009-11-25 22:58:06 +00001730
Francois Pichet6a247472011-05-11 02:14:46 +00001731 // MSVC permits pure specifier on inline functions declared at class scope.
1732 // Hence check for =0 before checking for function definition.
Douglas Gregor147545d2011-10-10 14:49:18 +00001733 ExprResult Init;
Francois Pichet62ec1f22011-09-17 17:15:52 +00001734 if (getLang().MicrosoftExt && Tok.is(tok::equal) &&
Francois Pichet6a247472011-05-11 02:14:46 +00001735 DeclaratorInfo.isFunctionDeclarator() &&
1736 NextToken().is(tok::numeric_constant)) {
1737 ConsumeToken();
1738 Init = ParseInitializer();
1739 if (Init.isInvalid())
1740 SkipUntil(tok::comma, true, true);
1741 }
1742
Sean Hunte4246a62011-05-12 06:15:49 +00001743 bool IsDefinition = false;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001744 // function-definition:
Richard Smith7a614d82011-06-11 17:19:42 +00001745 //
1746 // In C++11, a non-function declarator followed by an open brace is a
1747 // braced-init-list for an in-class member initialization, not an
1748 // erroneous function definition.
1749 if (Tok.is(tok::l_brace) && !getLang().CPlusPlus0x) {
Sean Hunte4246a62011-05-12 06:15:49 +00001750 IsDefinition = true;
1751 } else if (DeclaratorInfo.isFunctionDeclarator()) {
Richard Smith7a614d82011-06-11 17:19:42 +00001752 if (Tok.is(tok::l_brace) || Tok.is(tok::colon) || Tok.is(tok::kw_try)) {
Sean Hunte4246a62011-05-12 06:15:49 +00001753 IsDefinition = true;
1754 } else if (Tok.is(tok::equal)) {
1755 const Token &KW = NextToken();
1756 if (KW.is(tok::kw_default) || KW.is(tok::kw_delete))
1757 IsDefinition = true;
1758 }
1759 }
1760
1761 if (IsDefinition) {
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001762 if (!DeclaratorInfo.isFunctionDeclarator()) {
1763 Diag(Tok, diag::err_func_def_no_params);
1764 ConsumeBrace();
1765 SkipUntil(tok::r_brace, true);
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001766
1767 // Consume the optional ';'
1768 if (Tok.is(tok::semi))
1769 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001770 return;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001771 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001772
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001773 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
1774 Diag(Tok, diag::err_function_declared_typedef);
1775 // This recovery skips the entire function body. It would be nice
1776 // to simply call ParseCXXInlineMethodDef() below, however Sema
1777 // assumes the declarator represents a function, not a typedef.
1778 ConsumeBrace();
1779 SkipUntil(tok::r_brace, true);
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001780
1781 // Consume the optional ';'
1782 if (Tok.is(tok::semi))
1783 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001784 return;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001785 }
1786
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001787 Decl *FunDecl =
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001788 ParseCXXInlineMethodDef(AS, AccessAttrs, DeclaratorInfo, TemplateInfo,
1789 VS, Init);
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001790
1791 for (unsigned i = 0, ni = LateParsedAttrs.size(); i < ni; ++i) {
1792 LateParsedAttrs[i]->setDecl(FunDecl);
1793 }
1794 LateParsedAttrs.clear();
Sean Hunte4246a62011-05-12 06:15:49 +00001795
1796 // Consume the ';' - it's optional unless we have a delete or default
1797 if (Tok.is(tok::semi)) {
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001798 ConsumeToken();
Sean Hunte4246a62011-05-12 06:15:49 +00001799 }
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001800
Chris Lattner682bf922009-03-29 16:50:03 +00001801 return;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001802 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001803 }
1804
1805 // member-declarator-list:
1806 // member-declarator
1807 // member-declarator-list ',' member-declarator
1808
Chris Lattner5f9e2722011-07-23 10:55:15 +00001809 SmallVector<Decl *, 8> DeclsInGroup;
John McCall60d7b3a2010-08-24 06:29:42 +00001810 ExprResult BitfieldSize;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001811
1812 while (1) {
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001813 // member-declarator:
1814 // declarator pure-specifier[opt]
Richard Smith7a614d82011-06-11 17:19:42 +00001815 // declarator brace-or-equal-initializer[opt]
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001816 // identifier[opt] ':' constant-expression
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001817 if (Tok.is(tok::colon)) {
1818 ConsumeToken();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001819 BitfieldSize = ParseConstantExpression();
1820 if (BitfieldSize.isInvalid())
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001821 SkipUntil(tok::comma, true, true);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001822 }
Mike Stump1eb44332009-09-09 15:08:12 +00001823
Chris Lattnere6563252010-06-13 05:34:18 +00001824 // If a simple-asm-expr is present, parse it.
1825 if (Tok.is(tok::kw_asm)) {
1826 SourceLocation Loc;
John McCall60d7b3a2010-08-24 06:29:42 +00001827 ExprResult AsmLabel(ParseSimpleAsm(&Loc));
Chris Lattnere6563252010-06-13 05:34:18 +00001828 if (AsmLabel.isInvalid())
1829 SkipUntil(tok::comma, true, true);
1830
1831 DeclaratorInfo.setAsmLabel(AsmLabel.release());
1832 DeclaratorInfo.SetRangeEnd(Loc);
1833 }
1834
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001835 // If attributes exist after the declarator, parse them.
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001836 MaybeParseGNUAttributes(DeclaratorInfo, &LateParsedAttrs);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001837
Richard Smith7a614d82011-06-11 17:19:42 +00001838 // FIXME: When g++ adds support for this, we'll need to check whether it
1839 // goes before or after the GNU attributes and __asm__.
1840 ParseOptionalCXX0XVirtSpecifierSeq(VS);
1841
Douglas Gregor147545d2011-10-10 14:49:18 +00001842 bool HasInitializer = false;
Richard Smith7a614d82011-06-11 17:19:42 +00001843 bool HasDeferredInitializer = false;
1844 if (Tok.is(tok::equal) || Tok.is(tok::l_brace)) {
1845 if (BitfieldSize.get()) {
1846 Diag(Tok, diag::err_bitfield_member_init);
1847 SkipUntil(tok::comma, true, true);
1848 } else {
Douglas Gregor147545d2011-10-10 14:49:18 +00001849 HasInitializer = true;
Douglas Gregor555f57e2011-06-25 00:56:27 +00001850 HasDeferredInitializer = !DeclaratorInfo.isDeclarationOfFunction() &&
Richard Smith7a614d82011-06-11 17:19:42 +00001851 DeclaratorInfo.getDeclSpec().getStorageClassSpec()
Richard Smithc2cdd532011-06-12 11:43:46 +00001852 != DeclSpec::SCS_static &&
1853 DeclaratorInfo.getDeclSpec().getStorageClassSpec()
1854 != DeclSpec::SCS_typedef;
Richard Smith7a614d82011-06-11 17:19:42 +00001855 }
1856 }
1857
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001858 // NOTE: If Sema is the Action module and declarator is an instance field,
Chris Lattner682bf922009-03-29 16:50:03 +00001859 // this call will *not* return the created decl; It will return null.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001860 // See Sema::ActOnCXXMemberDeclarator for details.
John McCall67d1a672009-08-06 02:15:43 +00001861
John McCalld226f652010-08-21 09:40:31 +00001862 Decl *ThisDecl = 0;
John McCall67d1a672009-08-06 02:15:43 +00001863 if (DS.isFriendSpecified()) {
John McCallbbbcdd92009-09-11 21:02:39 +00001864 // TODO: handle initializers, bitfields, 'delete'
Douglas Gregor23c94db2010-07-02 17:43:08 +00001865 ThisDecl = Actions.ActOnFriendFunctionDecl(getCurScope(), DeclaratorInfo,
John McCallbbbcdd92009-09-11 21:02:39 +00001866 move(TemplateParams));
Douglas Gregor37b372b2009-08-20 22:52:58 +00001867 } else {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001868 ThisDecl = Actions.ActOnCXXMemberDeclarator(getCurScope(), AS,
John McCall67d1a672009-08-06 02:15:43 +00001869 DeclaratorInfo,
Douglas Gregor37b372b2009-08-20 22:52:58 +00001870 move(TemplateParams),
John McCall67d1a672009-08-06 02:15:43 +00001871 BitfieldSize.release(),
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00001872 VS, HasDeferredInitializer);
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001873 if (AccessAttrs)
1874 Actions.ProcessDeclAttributeList(getCurScope(), ThisDecl, AccessAttrs,
1875 false, true);
Douglas Gregor37b372b2009-08-20 22:52:58 +00001876 }
Douglas Gregor147545d2011-10-10 14:49:18 +00001877
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001878 // Set the Decl for any late parsed attributes
1879 for (unsigned i = 0, ni = LateParsedAttrs.size(); i < ni; ++i) {
1880 LateParsedAttrs[i]->setDecl(ThisDecl);
1881 }
1882 LateParsedAttrs.clear();
1883
Douglas Gregor147545d2011-10-10 14:49:18 +00001884 // Handle the initializer.
Richard Smith7a614d82011-06-11 17:19:42 +00001885 if (HasDeferredInitializer) {
Douglas Gregor147545d2011-10-10 14:49:18 +00001886 // The initializer was deferred; parse it and cache the tokens.
Richard Smith7a614d82011-06-11 17:19:42 +00001887 if (!getLang().CPlusPlus0x)
1888 Diag(Tok, diag::warn_nonstatic_member_init_accepted_as_extension);
Douglas Gregor147545d2011-10-10 14:49:18 +00001889
Richard Smith7a614d82011-06-11 17:19:42 +00001890 if (DeclaratorInfo.isArrayOfUnknownBound()) {
1891 // C++0x [dcl.array]p3: An array bound may also be omitted when the
1892 // declarator is followed by an initializer.
1893 //
1894 // A brace-or-equal-initializer for a member-declarator is not an
1895 // initializer in the gramamr, so this is ill-formed.
1896 Diag(Tok, diag::err_incomplete_array_member_init);
1897 SkipUntil(tok::comma, true, true);
1898 // Avoid later warnings about a class member of incomplete type.
1899 ThisDecl->setInvalidDecl();
1900 } else
1901 ParseCXXNonStaticMemberInitializer(ThisDecl);
Douglas Gregor147545d2011-10-10 14:49:18 +00001902 } else if (HasInitializer) {
1903 // Normal initializer.
1904 SourceLocation EqualLoc;
1905 ExprResult Init
1906 = ParseCXXMemberInitializer(DeclaratorInfo.isDeclarationOfFunction(),
1907 EqualLoc);
1908 if (Init.isInvalid())
1909 SkipUntil(tok::comma, true, true);
1910 else if (ThisDecl)
1911 Actions.AddInitializerToDecl(ThisDecl, Init.get(), false,
1912 DS.getTypeSpecType() == DeclSpec::TST_auto);
1913 } else if (ThisDecl && DS.getStorageClassSpec() == DeclSpec::SCS_static) {
1914 // No initializer.
1915 Actions.ActOnUninitializedDecl(ThisDecl,
1916 DS.getTypeSpecType() == DeclSpec::TST_auto);
Richard Smith7a614d82011-06-11 17:19:42 +00001917 }
Douglas Gregor147545d2011-10-10 14:49:18 +00001918
1919 if (ThisDecl) {
1920 Actions.FinalizeDeclaration(ThisDecl);
1921 DeclsInGroup.push_back(ThisDecl);
1922 }
1923
1924 if (DeclaratorInfo.isFunctionDeclarator() &&
1925 DeclaratorInfo.getDeclSpec().getStorageClassSpec()
1926 != DeclSpec::SCS_typedef) {
1927 HandleMemberFunctionDefaultArgs(DeclaratorInfo, ThisDecl);
1928 }
1929
1930 DeclaratorInfo.complete(ThisDecl);
Richard Smith7a614d82011-06-11 17:19:42 +00001931
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001932 // If we don't have a comma, it is either the end of the list (a ';')
1933 // or an error, bail out.
1934 if (Tok.isNot(tok::comma))
1935 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001936
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001937 // Consume the comma.
1938 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001939
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001940 // Parse the next declarator.
1941 DeclaratorInfo.clear();
Nico Weber48673472011-01-28 06:07:34 +00001942 VS.clear();
Douglas Gregor147545d2011-10-10 14:49:18 +00001943 BitfieldSize = true;
Mike Stump1eb44332009-09-09 15:08:12 +00001944
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001945 // Attributes are only allowed on the second declarator.
John McCall7f040a92010-12-24 02:08:15 +00001946 MaybeParseGNUAttributes(DeclaratorInfo);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001947
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001948 if (Tok.isNot(tok::colon))
1949 ParseDeclarator(DeclaratorInfo);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001950 }
1951
Chris Lattnerae50d502010-02-02 00:43:15 +00001952 if (ExpectAndConsume(tok::semi, diag::err_expected_semi_decl_list)) {
1953 // Skip to end of block or statement.
1954 SkipUntil(tok::r_brace, true, true);
1955 // If we stopped at a ';', eat it.
1956 if (Tok.is(tok::semi)) ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001957 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001958 }
1959
Douglas Gregor23c94db2010-07-02 17:43:08 +00001960 Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup.data(),
Chris Lattnerae50d502010-02-02 00:43:15 +00001961 DeclsInGroup.size());
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001962}
1963
Richard Smith7a614d82011-06-11 17:19:42 +00001964/// ParseCXXMemberInitializer - Parse the brace-or-equal-initializer or
1965/// pure-specifier. Also detect and reject any attempted defaulted/deleted
1966/// function definition. The location of the '=', if any, will be placed in
1967/// EqualLoc.
1968///
1969/// pure-specifier:
1970/// '= 0'
1971///
1972/// brace-or-equal-initializer:
1973/// '=' initializer-expression
1974/// braced-init-list [TODO]
1975///
1976/// initializer-clause:
1977/// assignment-expression
1978/// braced-init-list [TODO]
1979///
1980/// defaulted/deleted function-definition:
1981/// '=' 'default'
1982/// '=' 'delete'
1983///
1984/// Prior to C++0x, the assignment-expression in an initializer-clause must
1985/// be a constant-expression.
1986ExprResult Parser::ParseCXXMemberInitializer(bool IsFunction,
1987 SourceLocation &EqualLoc) {
1988 assert((Tok.is(tok::equal) || Tok.is(tok::l_brace))
1989 && "Data member initializer not starting with '=' or '{'");
1990
1991 if (Tok.is(tok::equal)) {
1992 EqualLoc = ConsumeToken();
1993 if (Tok.is(tok::kw_delete)) {
1994 // In principle, an initializer of '= delete p;' is legal, but it will
1995 // never type-check. It's better to diagnose it as an ill-formed expression
1996 // than as an ill-formed deleted non-function member.
1997 // An initializer of '= delete p, foo' will never be parsed, because
1998 // a top-level comma always ends the initializer expression.
1999 const Token &Next = NextToken();
2000 if (IsFunction || Next.is(tok::semi) || Next.is(tok::comma) ||
2001 Next.is(tok::eof)) {
2002 if (IsFunction)
2003 Diag(ConsumeToken(), diag::err_default_delete_in_multiple_declaration)
2004 << 1 /* delete */;
2005 else
2006 Diag(ConsumeToken(), diag::err_deleted_non_function);
2007 return ExprResult();
2008 }
2009 } else if (Tok.is(tok::kw_default)) {
Richard Smith7a614d82011-06-11 17:19:42 +00002010 if (IsFunction)
2011 Diag(Tok, diag::err_default_delete_in_multiple_declaration)
2012 << 0 /* default */;
2013 else
2014 Diag(ConsumeToken(), diag::err_default_special_members);
2015 return ExprResult();
2016 }
2017
2018 return ParseInitializer();
2019 } else
2020 return ExprError(Diag(Tok, diag::err_generalized_initializer_lists));
2021}
2022
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002023/// ParseCXXMemberSpecification - Parse the class definition.
2024///
2025/// member-specification:
2026/// member-declaration member-specification[opt]
2027/// access-specifier ':' member-specification[opt]
2028///
2029void Parser::ParseCXXMemberSpecification(SourceLocation RecordLoc,
John McCalld226f652010-08-21 09:40:31 +00002030 unsigned TagType, Decl *TagDecl) {
Sanjiv Gupta31fc07d2008-10-31 09:52:39 +00002031 assert((TagType == DeclSpec::TST_struct ||
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002032 TagType == DeclSpec::TST_union ||
Sanjiv Gupta31fc07d2008-10-31 09:52:39 +00002033 TagType == DeclSpec::TST_class) && "Invalid TagType!");
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002034
John McCallf312b1e2010-08-26 23:41:50 +00002035 PrettyDeclStackTraceEntry CrashInfo(Actions, TagDecl, RecordLoc,
2036 "parsing struct/union/class body");
Mike Stump1eb44332009-09-09 15:08:12 +00002037
Douglas Gregor26997fd2010-01-16 20:52:59 +00002038 // Determine whether this is a non-nested class. Note that local
2039 // classes are *not* considered to be nested classes.
2040 bool NonNestedClass = true;
2041 if (!ClassStack.empty()) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00002042 for (const Scope *S = getCurScope(); S; S = S->getParent()) {
Douglas Gregor26997fd2010-01-16 20:52:59 +00002043 if (S->isClassScope()) {
2044 // We're inside a class scope, so this is a nested class.
2045 NonNestedClass = false;
2046 break;
2047 }
2048
2049 if ((S->getFlags() & Scope::FnScope)) {
2050 // If we're in a function or function template declared in the
2051 // body of a class, then this is a local class rather than a
2052 // nested class.
2053 const Scope *Parent = S->getParent();
2054 if (Parent->isTemplateParamScope())
2055 Parent = Parent->getParent();
2056 if (Parent->isClassScope())
2057 break;
2058 }
2059 }
2060 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002061
2062 // Enter a scope for the class.
Douglas Gregor3218c4b2009-01-09 22:42:13 +00002063 ParseScope ClassScope(this, Scope::ClassScope|Scope::DeclScope);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002064
Douglas Gregor6569d682009-05-27 23:11:45 +00002065 // Note that we are parsing a new (potentially-nested) class definition.
Douglas Gregor26997fd2010-01-16 20:52:59 +00002066 ParsingClassDefinition ParsingDef(*this, TagDecl, NonNestedClass);
Douglas Gregor6569d682009-05-27 23:11:45 +00002067
Douglas Gregorddc29e12009-02-06 22:42:48 +00002068 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002069 Actions.ActOnTagStartDefinition(getCurScope(), TagDecl);
John McCallbd0dfa52009-12-19 21:48:58 +00002070
Anders Carlssonb184a182011-03-25 14:46:08 +00002071 SourceLocation FinalLoc;
2072
2073 // Parse the optional 'final' keyword.
2074 if (getLang().CPlusPlus && Tok.is(tok::identifier)) {
2075 IdentifierInfo *II = Tok.getIdentifierInfo();
2076
2077 // Initialize the contextual keywords.
2078 if (!Ident_final) {
2079 Ident_final = &PP.getIdentifierTable().get("final");
2080 Ident_override = &PP.getIdentifierTable().get("override");
2081 }
2082
2083 if (II == Ident_final)
2084 FinalLoc = ConsumeToken();
2085
2086 if (!getLang().CPlusPlus0x)
2087 Diag(FinalLoc, diag::ext_override_control_keyword) << "final";
2088 }
Anders Carlssoncc54d592011-01-22 16:56:46 +00002089
John McCallbd0dfa52009-12-19 21:48:58 +00002090 if (Tok.is(tok::colon)) {
2091 ParseBaseClause(TagDecl);
2092
2093 if (!Tok.is(tok::l_brace)) {
2094 Diag(Tok, diag::err_expected_lbrace_after_base_specifiers);
John McCalldb7bb4a2010-03-17 00:38:33 +00002095
2096 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002097 Actions.ActOnTagDefinitionError(getCurScope(), TagDecl);
John McCallbd0dfa52009-12-19 21:48:58 +00002098 return;
2099 }
2100 }
2101
2102 assert(Tok.is(tok::l_brace));
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002103 BalancedDelimiterTracker T(*this, tok::l_brace);
2104 T.consumeOpen();
John McCallbd0dfa52009-12-19 21:48:58 +00002105
John McCall42a4f662010-05-28 08:11:17 +00002106 if (TagDecl)
Anders Carlsson2c3ee542011-03-25 14:31:08 +00002107 Actions.ActOnStartCXXMemberDeclarations(getCurScope(), TagDecl, FinalLoc,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002108 T.getOpenLocation());
John McCallf9368152009-12-20 07:58:13 +00002109
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002110 // C++ 11p3: Members of a class defined with the keyword class are private
2111 // by default. Members of a class defined with the keywords struct or union
2112 // are public by default.
2113 AccessSpecifier CurAS;
2114 if (TagType == DeclSpec::TST_class)
2115 CurAS = AS_private;
2116 else
2117 CurAS = AS_public;
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00002118 ParsedAttributes AccessAttrs(AttrFactory);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002119
Douglas Gregor07976d22010-06-21 22:31:09 +00002120 if (TagDecl) {
2121 // While we still have something to read, read the member-declarations.
2122 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
2123 // Each iteration of this loop reads one member-declaration.
Mike Stump1eb44332009-09-09 15:08:12 +00002124
Francois Pichet62ec1f22011-09-17 17:15:52 +00002125 if (getLang().MicrosoftExt && (Tok.is(tok::kw___if_exists) ||
Francois Pichet563a6452011-05-25 10:19:49 +00002126 Tok.is(tok::kw___if_not_exists))) {
2127 ParseMicrosoftIfExistsClassDeclaration((DeclSpec::TST)TagType, CurAS);
2128 continue;
2129 }
2130
Douglas Gregor07976d22010-06-21 22:31:09 +00002131 // Check for extraneous top-level semicolon.
2132 if (Tok.is(tok::semi)) {
2133 Diag(Tok, diag::ext_extra_struct_semi)
2134 << DeclSpec::getSpecifierName((DeclSpec::TST)TagType)
2135 << FixItHint::CreateRemoval(Tok.getLocation());
2136 ConsumeToken();
2137 continue;
2138 }
2139
2140 AccessSpecifier AS = getAccessSpecifierIfPresent();
2141 if (AS != AS_none) {
2142 // Current token is a C++ access specifier.
2143 CurAS = AS;
2144 SourceLocation ASLoc = Tok.getLocation();
David Blaikie13f8daf2011-10-13 06:08:43 +00002145 unsigned TokLength = Tok.getLength();
Douglas Gregor07976d22010-06-21 22:31:09 +00002146 ConsumeToken();
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00002147 AccessAttrs.clear();
2148 MaybeParseGNUAttributes(AccessAttrs);
2149
David Blaikie13f8daf2011-10-13 06:08:43 +00002150 SourceLocation EndLoc;
2151 if (Tok.is(tok::colon)) {
2152 EndLoc = Tok.getLocation();
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00002153 if (Actions.ActOnAccessSpecifier(AS, ASLoc, EndLoc,
2154 AccessAttrs.getList())) {
2155 // found another attribute than only annotations
2156 AccessAttrs.clear();
2157 }
David Blaikie13f8daf2011-10-13 06:08:43 +00002158 ConsumeToken();
2159 } else if (Tok.is(tok::semi)) {
2160 EndLoc = Tok.getLocation();
2161 ConsumeToken();
2162 Diag(EndLoc, diag::err_expected_colon)
2163 << FixItHint::CreateReplacement(EndLoc, ":");
2164 } else {
2165 EndLoc = ASLoc.getLocWithOffset(TokLength);
2166 Diag(EndLoc, diag::err_expected_colon)
2167 << FixItHint::CreateInsertion(EndLoc, ":");
2168 }
2169 Actions.ActOnAccessSpecifier(AS, ASLoc, EndLoc);
Douglas Gregor07976d22010-06-21 22:31:09 +00002170 continue;
2171 }
2172
2173 // FIXME: Make sure we don't have a template here.
2174
2175 // Parse all the comma separated declarators.
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00002176 ParseCXXClassMemberDeclaration(CurAS, AccessAttrs.getList());
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002177 }
2178
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002179 T.consumeClose();
Douglas Gregor07976d22010-06-21 22:31:09 +00002180 } else {
2181 SkipUntil(tok::r_brace, false, false);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002182 }
Mike Stump1eb44332009-09-09 15:08:12 +00002183
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002184 // If attributes exist after class contents, parse them.
John McCall0b7e6782011-03-24 11:26:52 +00002185 ParsedAttributes attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +00002186 MaybeParseGNUAttributes(attrs);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002187
John McCall42a4f662010-05-28 08:11:17 +00002188 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002189 Actions.ActOnFinishCXXMemberSpecification(getCurScope(), RecordLoc, TagDecl,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002190 T.getOpenLocation(),
2191 T.getCloseLocation(),
John McCall7f040a92010-12-24 02:08:15 +00002192 attrs.getList());
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002193
Richard Smith7a614d82011-06-11 17:19:42 +00002194 // C++0x [class.mem]p2: Within the class member-specification, the class is
2195 // regarded as complete within function bodies, default arguments, exception-
2196 // specifications, and brace-or-equal-initializers for non-static data
2197 // members (including such things in nested classes).
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002198 //
Richard Smith7a614d82011-06-11 17:19:42 +00002199 // FIXME: Only function bodies and brace-or-equal-initializers are currently
2200 // handled. Fix the others!
Douglas Gregor07976d22010-06-21 22:31:09 +00002201 if (TagDecl && NonNestedClass) {
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002202 // We are not inside a nested class. This class and its nested classes
Douglas Gregor72b505b2008-12-16 21:30:33 +00002203 // are complete and we can parse the delayed portions of method
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00002204 // declarations and the lexed inline method definitions, along with any
2205 // delayed attributes.
Douglas Gregore0cc0472010-06-16 23:45:56 +00002206 SourceLocation SavedPrevTokLocation = PrevTokLocation;
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00002207 ParseLexedAttributes(getCurrentClass());
Douglas Gregor6569d682009-05-27 23:11:45 +00002208 ParseLexedMethodDeclarations(getCurrentClass());
Richard Smith7a614d82011-06-11 17:19:42 +00002209 ParseLexedMemberInitializers(getCurrentClass());
Douglas Gregor6569d682009-05-27 23:11:45 +00002210 ParseLexedMethodDefs(getCurrentClass());
Douglas Gregore0cc0472010-06-16 23:45:56 +00002211 PrevTokLocation = SavedPrevTokLocation;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002212 }
2213
John McCall42a4f662010-05-28 08:11:17 +00002214 if (TagDecl)
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002215 Actions.ActOnTagFinishDefinition(getCurScope(), TagDecl,
2216 T.getCloseLocation());
John McCalldb7bb4a2010-03-17 00:38:33 +00002217
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002218 // Leave the class scope.
Douglas Gregor6569d682009-05-27 23:11:45 +00002219 ParsingDef.Pop();
Douglas Gregor8935b8b2008-12-10 06:34:36 +00002220 ClassScope.Exit();
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002221}
Douglas Gregor7ad83902008-11-05 04:29:56 +00002222
2223/// ParseConstructorInitializer - Parse a C++ constructor initializer,
2224/// which explicitly initializes the members or base classes of a
2225/// class (C++ [class.base.init]). For example, the three initializers
2226/// after the ':' in the Derived constructor below:
2227///
2228/// @code
2229/// class Base { };
2230/// class Derived : Base {
2231/// int x;
2232/// float f;
2233/// public:
2234/// Derived(float f) : Base(), x(17), f(f) { }
2235/// };
2236/// @endcode
2237///
Mike Stump1eb44332009-09-09 15:08:12 +00002238/// [C++] ctor-initializer:
2239/// ':' mem-initializer-list
Douglas Gregor7ad83902008-11-05 04:29:56 +00002240///
Mike Stump1eb44332009-09-09 15:08:12 +00002241/// [C++] mem-initializer-list:
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002242/// mem-initializer ...[opt]
2243/// mem-initializer ...[opt] , mem-initializer-list
John McCalld226f652010-08-21 09:40:31 +00002244void Parser::ParseConstructorInitializer(Decl *ConstructorDecl) {
Douglas Gregor7ad83902008-11-05 04:29:56 +00002245 assert(Tok.is(tok::colon) && "Constructor initializer always starts with ':'");
2246
John Wiegley28bbe4b2011-04-28 01:08:34 +00002247 // Poison the SEH identifiers so they are flagged as illegal in constructor initializers
2248 PoisonSEHIdentifiersRAIIObject PoisonSEHIdentifiers(*this, true);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002249 SourceLocation ColonLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00002250
Chris Lattner5f9e2722011-07-23 10:55:15 +00002251 SmallVector<CXXCtorInitializer*, 4> MemInitializers;
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002252 bool AnyErrors = false;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002253
Douglas Gregor7ad83902008-11-05 04:29:56 +00002254 do {
Douglas Gregor0133f522010-08-28 00:00:50 +00002255 if (Tok.is(tok::code_completion)) {
2256 Actions.CodeCompleteConstructorInitializer(ConstructorDecl,
2257 MemInitializers.data(),
2258 MemInitializers.size());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002259 return cutOffParsing();
Douglas Gregor0133f522010-08-28 00:00:50 +00002260 } else {
2261 MemInitResult MemInit = ParseMemInitializer(ConstructorDecl);
2262 if (!MemInit.isInvalid())
2263 MemInitializers.push_back(MemInit.get());
2264 else
2265 AnyErrors = true;
2266 }
2267
Douglas Gregor7ad83902008-11-05 04:29:56 +00002268 if (Tok.is(tok::comma))
2269 ConsumeToken();
2270 else if (Tok.is(tok::l_brace))
2271 break;
Douglas Gregorb1f6fa42010-09-07 14:35:10 +00002272 // If the next token looks like a base or member initializer, assume that
2273 // we're just missing a comma.
Douglas Gregor751f6922010-09-07 14:51:08 +00002274 else if (Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) {
2275 SourceLocation Loc = PP.getLocForEndOfToken(PrevTokLocation);
2276 Diag(Loc, diag::err_ctor_init_missing_comma)
2277 << FixItHint::CreateInsertion(Loc, ", ");
2278 } else {
Douglas Gregor7ad83902008-11-05 04:29:56 +00002279 // Skip over garbage, until we get to '{'. Don't eat the '{'.
Sebastian Redld3a413d2009-04-26 20:35:05 +00002280 Diag(Tok.getLocation(), diag::err_expected_lbrace_or_comma);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002281 SkipUntil(tok::l_brace, true, true);
2282 break;
2283 }
2284 } while (true);
2285
Mike Stump1eb44332009-09-09 15:08:12 +00002286 Actions.ActOnMemInitializers(ConstructorDecl, ColonLoc,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002287 MemInitializers.data(), MemInitializers.size(),
2288 AnyErrors);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002289}
2290
2291/// ParseMemInitializer - Parse a C++ member initializer, which is
2292/// part of a constructor initializer that explicitly initializes one
2293/// member or base class (C++ [class.base.init]). See
2294/// ParseConstructorInitializer for an example.
2295///
2296/// [C++] mem-initializer:
2297/// mem-initializer-id '(' expression-list[opt] ')'
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002298/// [C++0x] mem-initializer-id braced-init-list
Mike Stump1eb44332009-09-09 15:08:12 +00002299///
Douglas Gregor7ad83902008-11-05 04:29:56 +00002300/// [C++] mem-initializer-id:
2301/// '::'[opt] nested-name-specifier[opt] class-name
2302/// identifier
John McCalld226f652010-08-21 09:40:31 +00002303Parser::MemInitResult Parser::ParseMemInitializer(Decl *ConstructorDecl) {
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00002304 // parse '::'[opt] nested-name-specifier[opt]
2305 CXXScopeSpec SS;
John McCallb3d87482010-08-24 05:47:05 +00002306 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
2307 ParsedType TemplateTypeTy;
Fariborz Jahanian96174332009-07-01 19:21:19 +00002308 if (Tok.is(tok::annot_template_id)) {
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +00002309 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregord9b600c2010-01-12 17:52:59 +00002310 if (TemplateId->Kind == TNK_Type_template ||
2311 TemplateId->Kind == TNK_Dependent_template_name) {
Douglas Gregor059101f2011-03-02 00:47:37 +00002312 AnnotateTemplateIdTokenAsType();
Fariborz Jahanian96174332009-07-01 19:21:19 +00002313 assert(Tok.is(tok::annot_typename) && "template-id -> type failed");
John McCallb3d87482010-08-24 05:47:05 +00002314 TemplateTypeTy = getTypeAnnotation(Tok);
Fariborz Jahanian96174332009-07-01 19:21:19 +00002315 }
Fariborz Jahanian96174332009-07-01 19:21:19 +00002316 }
2317 if (!TemplateTypeTy && Tok.isNot(tok::identifier)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00002318 Diag(Tok, diag::err_expected_member_or_base_name);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002319 return true;
2320 }
Mike Stump1eb44332009-09-09 15:08:12 +00002321
Douglas Gregor7ad83902008-11-05 04:29:56 +00002322 // Get the identifier. This may be a member name or a class name,
2323 // but we'll let the semantic analysis determine which it is.
Fariborz Jahanian96174332009-07-01 19:21:19 +00002324 IdentifierInfo *II = Tok.is(tok::identifier) ? Tok.getIdentifierInfo() : 0;
Douglas Gregor7ad83902008-11-05 04:29:56 +00002325 SourceLocation IdLoc = ConsumeToken();
2326
2327 // Parse the '('.
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002328 if (getLang().CPlusPlus0x && Tok.is(tok::l_brace)) {
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)) {
2625 ParseAlignmentSpecifier(attrs, endLoc);
2626 return;
2627 }
2628
Sean Huntbbd37c62009-11-21 08:43:09 +00002629 assert(Tok.is(tok::l_square) && NextToken().is(tok::l_square)
2630 && "Not a C++0x attribute list");
2631
Sean Huntbbd37c62009-11-21 08:43:09 +00002632 ConsumeBracket();
2633 ConsumeBracket();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002634
Sean Huntbbd37c62009-11-21 08:43:09 +00002635 if (Tok.is(tok::comma)) {
2636 Diag(Tok.getLocation(), diag::err_expected_ident);
2637 ConsumeToken();
2638 }
2639
2640 while (Tok.is(tok::identifier) || Tok.is(tok::comma)) {
2641 // attribute not present
2642 if (Tok.is(tok::comma)) {
2643 ConsumeToken();
2644 continue;
2645 }
2646
2647 IdentifierInfo *ScopeName = 0, *AttrName = Tok.getIdentifierInfo();
2648 SourceLocation ScopeLoc, AttrLoc = ConsumeToken();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002649
Sean Huntbbd37c62009-11-21 08:43:09 +00002650 // scoped attribute
2651 if (Tok.is(tok::coloncolon)) {
2652 ConsumeToken();
2653
2654 if (!Tok.is(tok::identifier)) {
2655 Diag(Tok.getLocation(), diag::err_expected_ident);
2656 SkipUntil(tok::r_square, tok::comma, true, true);
2657 continue;
2658 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002659
Sean Huntbbd37c62009-11-21 08:43:09 +00002660 ScopeName = AttrName;
2661 ScopeLoc = AttrLoc;
2662
2663 AttrName = Tok.getIdentifierInfo();
2664 AttrLoc = ConsumeToken();
2665 }
2666
2667 bool AttrParsed = false;
2668 // No scoped names are supported; ideally we could put all non-standard
2669 // attributes into namespaces.
2670 if (!ScopeName) {
2671 switch(AttributeList::getKind(AttrName))
2672 {
2673 // No arguments
Sean Hunt7725e672009-11-25 04:20:27 +00002674 case AttributeList::AT_carries_dependency:
Anders Carlsson15e14a22011-01-23 21:33:18 +00002675 case AttributeList::AT_noreturn: {
Sean Huntbbd37c62009-11-21 08:43:09 +00002676 if (Tok.is(tok::l_paren)) {
2677 Diag(Tok.getLocation(), diag::err_cxx0x_attribute_forbids_arguments)
2678 << AttrName->getName();
2679 break;
2680 }
2681
John McCall0b7e6782011-03-24 11:26:52 +00002682 attrs.addNew(AttrName, AttrLoc, 0, AttrLoc, 0,
2683 SourceLocation(), 0, 0, false, true);
Sean Huntbbd37c62009-11-21 08:43:09 +00002684 AttrParsed = true;
2685 break;
2686 }
2687
Sean Huntbbd37c62009-11-21 08:43:09 +00002688 // Silence warnings
2689 default: break;
2690 }
2691 }
2692
2693 // Skip the entire parameter clause, if any
2694 if (!AttrParsed && Tok.is(tok::l_paren)) {
2695 ConsumeParen();
2696 // SkipUntil maintains the balancedness of tokens.
2697 SkipUntil(tok::r_paren, false);
2698 }
2699 }
2700
2701 if (ExpectAndConsume(tok::r_square, diag::err_expected_rsquare))
2702 SkipUntil(tok::r_square, false);
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002703 if (endLoc)
2704 *endLoc = Tok.getLocation();
Sean Huntbbd37c62009-11-21 08:43:09 +00002705 if (ExpectAndConsume(tok::r_square, diag::err_expected_rsquare))
2706 SkipUntil(tok::r_square, false);
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002707}
Sean Huntbbd37c62009-11-21 08:43:09 +00002708
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002709/// ParseCXX0XAttributes - Parse a C++0x attribute-specifier-seq.
2710///
2711/// attribute-specifier-seq:
2712/// attribute-specifier-seq[opt] attribute-specifier
2713void Parser::ParseCXX0XAttributes(ParsedAttributesWithRange &attrs,
2714 SourceLocation *endLoc) {
2715 SourceLocation StartLoc = Tok.getLocation(), Loc;
2716 if (!endLoc)
2717 endLoc = &Loc;
2718
Douglas Gregor8828ee72011-10-07 20:35:25 +00002719 do {
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002720 ParseCXX0XAttributeSpecifier(attrs, endLoc);
Douglas Gregor8828ee72011-10-07 20:35:25 +00002721 } while (isCXX0XAttributeSpecifier());
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002722
2723 attrs.Range = SourceRange(StartLoc, *endLoc);
Sean Huntbbd37c62009-11-21 08:43:09 +00002724}
2725
Francois Pichet334d47e2010-10-11 12:59:39 +00002726/// ParseMicrosoftAttributes - Parse a Microsoft attribute [Attr]
2727///
2728/// [MS] ms-attribute:
2729/// '[' token-seq ']'
2730///
2731/// [MS] ms-attribute-seq:
2732/// ms-attribute[opt]
2733/// ms-attribute ms-attribute-seq
John McCall7f040a92010-12-24 02:08:15 +00002734void Parser::ParseMicrosoftAttributes(ParsedAttributes &attrs,
2735 SourceLocation *endLoc) {
Francois Pichet334d47e2010-10-11 12:59:39 +00002736 assert(Tok.is(tok::l_square) && "Not a Microsoft attribute list");
2737
2738 while (Tok.is(tok::l_square)) {
2739 ConsumeBracket();
2740 SkipUntil(tok::r_square, true, true);
John McCall7f040a92010-12-24 02:08:15 +00002741 if (endLoc) *endLoc = Tok.getLocation();
Francois Pichet334d47e2010-10-11 12:59:39 +00002742 ExpectAndConsume(tok::r_square, diag::err_expected_rsquare);
2743 }
2744}
Francois Pichet563a6452011-05-25 10:19:49 +00002745
2746void Parser::ParseMicrosoftIfExistsClassDeclaration(DeclSpec::TST TagType,
2747 AccessSpecifier& CurAS) {
2748 bool Result;
2749 if (ParseMicrosoftIfExistsCondition(Result))
2750 return;
2751
2752 if (Tok.isNot(tok::l_brace)) {
2753 Diag(Tok, diag::err_expected_lbrace);
2754 return;
2755 }
2756 ConsumeBrace();
2757
2758 // Condition is false skip all inside the {}.
2759 if (!Result) {
2760 SkipUntil(tok::r_brace, false);
2761 return;
2762 }
2763
2764 // Condition is true, parse the declaration.
2765 while (Tok.isNot(tok::r_brace)) {
2766
2767 // __if_exists, __if_not_exists can nest.
2768 if ((Tok.is(tok::kw___if_exists) || Tok.is(tok::kw___if_not_exists))) {
2769 ParseMicrosoftIfExistsClassDeclaration((DeclSpec::TST)TagType, CurAS);
2770 continue;
2771 }
2772
2773 // Check for extraneous top-level semicolon.
2774 if (Tok.is(tok::semi)) {
2775 Diag(Tok, diag::ext_extra_struct_semi)
2776 << DeclSpec::getSpecifierName((DeclSpec::TST)TagType)
2777 << FixItHint::CreateRemoval(Tok.getLocation());
2778 ConsumeToken();
2779 continue;
2780 }
2781
2782 AccessSpecifier AS = getAccessSpecifierIfPresent();
2783 if (AS != AS_none) {
2784 // Current token is a C++ access specifier.
2785 CurAS = AS;
2786 SourceLocation ASLoc = Tok.getLocation();
2787 ConsumeToken();
2788 if (Tok.is(tok::colon))
2789 Actions.ActOnAccessSpecifier(AS, ASLoc, Tok.getLocation());
2790 else
2791 Diag(Tok, diag::err_expected_colon);
2792 ConsumeToken();
2793 continue;
2794 }
2795
2796 // Parse all the comma separated declarators.
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00002797 ParseCXXClassMemberDeclaration(CurAS, 0);
Francois Pichet563a6452011-05-25 10:19:49 +00002798 }
2799
2800 if (Tok.isNot(tok::r_brace)) {
2801 Diag(Tok, diag::err_expected_rbrace);
2802 return;
2803 }
2804 ConsumeBrace();
2805}