blob: b123461f1d5060f48e0addbbc3f364a7ddb8481d [file] [log] [blame]
Chris Lattnera5235172007-08-25 06:57:03 +00001//===--- ParseDeclCXX.cpp - C++ Declaration Parsing -----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5b12ab82007-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 Lattnera5235172007-08-25 06:57:03 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the C++ Declaration portions of the Parser interfaces.
11//
12//===----------------------------------------------------------------------===//
13
Anders Carlsson74d7f0d2009-06-27 00:27:47 +000014#include "clang/Basic/OperatorKinds.h"
Douglas Gregor423984d2008-04-14 00:13:42 +000015#include "clang/Parse/Parser.h"
Chris Lattner60f36222009-01-29 05:15:15 +000016#include "clang/Parse/ParseDiagnostic.h"
John McCall8b0666c2010-08-20 18:27:03 +000017#include "clang/Sema/DeclSpec.h"
18#include "clang/Sema/Scope.h"
19#include "clang/Sema/ParsedTemplate.h"
John McCallfaf5fb42010-08-26 23:41:50 +000020#include "clang/Sema/PrettyDeclStackTrace.h"
Chris Lattner8a9a97a2009-12-10 00:21:05 +000021#include "RAIIObjectsForParser.h"
Chris Lattnera5235172007-08-25 06:57:03 +000022using namespace clang;
23
24/// ParseNamespace - We know that the current token is a namespace keyword. This
Sebastian Redl67667942010-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 Lattnera5235172007-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 Redl67667942010-08-27 23:12:46 +000033/// 'inline'[opt] 'namespace' attributes[opt] '{' namespace-body '}'
Chris Lattnera5235172007-08-25 06:57:03 +000034///
35/// named-namespace-definition:
36/// original-namespace-definition
37/// extension-namespace-definition
38///
39/// original-namespace-definition:
Sebastian Redl67667942010-08-27 23:12:46 +000040/// 'inline'[opt] 'namespace' identifier attributes[opt]
41/// '{' namespace-body '}'
Chris Lattnera5235172007-08-25 06:57:03 +000042///
43/// extension-namespace-definition:
Sebastian Redl67667942010-08-27 23:12:46 +000044/// 'inline'[opt] 'namespace' original-namespace-name
45/// '{' namespace-body '}'
Mike Stump11289f42009-09-09 15:08:12 +000046///
Chris Lattnera5235172007-08-25 06:57:03 +000047/// namespace-alias-definition: [C++ 7.3.2: namespace.alias]
48/// 'namespace' identifier '=' qualified-namespace-specifier ';'
49///
John McCall48871652010-08-21 09:40:31 +000050Decl *Parser::ParseNamespace(unsigned Context,
Sebastian Redl67667942010-08-27 23:12:46 +000051 SourceLocation &DeclEnd,
52 SourceLocation InlineLoc) {
Chris Lattner76c72282007-10-09 17:33:22 +000053 assert(Tok.is(tok::kw_namespace) && "Not a namespace!");
Chris Lattnera5235172007-08-25 06:57:03 +000054 SourceLocation NamespaceLoc = ConsumeToken(); // eat the 'namespace'.
Mike Stump11289f42009-09-09 15:08:12 +000055
Douglas Gregor7e90c6d2009-09-18 19:03:04 +000056 if (Tok.is(tok::code_completion)) {
Douglas Gregor0be31a22010-07-02 17:43:08 +000057 Actions.CodeCompleteNamespaceDecl(getCurScope());
Douglas Gregor6da3db42010-05-25 05:58:43 +000058 ConsumeCodeCompletionToken();
Douglas Gregor7e90c6d2009-09-18 19:03:04 +000059 }
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +000060
Chris Lattnera5235172007-08-25 06:57:03 +000061 SourceLocation IdentLoc;
62 IdentifierInfo *Ident = 0;
Richard Trieu61384cb2011-05-26 20:11:09 +000063 std::vector<SourceLocation> ExtraIdentLoc;
64 std::vector<IdentifierInfo*> ExtraIdent;
65 std::vector<SourceLocation> ExtraNamespaceLoc;
Douglas Gregor6b6bba42009-06-17 19:49:00 +000066
67 Token attrTok;
Mike Stump11289f42009-09-09 15:08:12 +000068
Chris Lattner76c72282007-10-09 17:33:22 +000069 if (Tok.is(tok::identifier)) {
Chris Lattnera5235172007-08-25 06:57:03 +000070 Ident = Tok.getIdentifierInfo();
71 IdentLoc = ConsumeToken(); // eat the identifier.
Richard Trieu61384cb2011-05-26 20:11:09 +000072 while (Tok.is(tok::coloncolon) && NextToken().is(tok::identifier)) {
73 ExtraNamespaceLoc.push_back(ConsumeToken());
74 ExtraIdent.push_back(Tok.getIdentifierInfo());
75 ExtraIdentLoc.push_back(ConsumeToken());
76 }
Chris Lattnera5235172007-08-25 06:57:03 +000077 }
Mike Stump11289f42009-09-09 15:08:12 +000078
Chris Lattnera5235172007-08-25 06:57:03 +000079 // Read label attributes, if present.
John McCall084e83d2011-03-24 11:26:52 +000080 ParsedAttributes attrs(AttrFactory);
Douglas Gregor6b6bba42009-06-17 19:49:00 +000081 if (Tok.is(tok::kw___attribute)) {
82 attrTok = Tok;
John McCall53fa7142010-12-24 02:08:15 +000083 ParseGNUAttributes(attrs);
Douglas Gregor6b6bba42009-06-17 19:49:00 +000084 }
Mike Stump11289f42009-09-09 15:08:12 +000085
Douglas Gregor6b6bba42009-06-17 19:49:00 +000086 if (Tok.is(tok::equal)) {
John McCall53fa7142010-12-24 02:08:15 +000087 if (!attrs.empty())
Douglas Gregor6b6bba42009-06-17 19:49:00 +000088 Diag(attrTok, diag::err_unexpected_namespace_attributes_alias);
Sebastian Redl67667942010-08-27 23:12:46 +000089 if (InlineLoc.isValid())
90 Diag(InlineLoc, diag::err_inline_namespace_alias)
91 << FixItHint::CreateRemoval(InlineLoc);
Douglas Gregor6b6bba42009-06-17 19:49:00 +000092
Chris Lattner49836b42009-04-02 04:16:50 +000093 return ParseNamespaceAlias(NamespaceLoc, IdentLoc, Ident, DeclEnd);
Douglas Gregor6b6bba42009-06-17 19:49:00 +000094 }
Mike Stump11289f42009-09-09 15:08:12 +000095
Richard Trieu61384cb2011-05-26 20:11:09 +000096
Chris Lattner4de55aa2009-03-29 14:02:43 +000097 if (Tok.isNot(tok::l_brace)) {
Richard Trieu61384cb2011-05-26 20:11:09 +000098 if (!ExtraIdent.empty()) {
99 Diag(ExtraNamespaceLoc[0], diag::err_nested_namespaces_with_double_colon)
100 << SourceRange(ExtraNamespaceLoc.front(), ExtraIdentLoc.back());
101 }
Mike Stump11289f42009-09-09 15:08:12 +0000102 Diag(Tok, Ident ? diag::err_expected_lbrace :
Chris Lattner4de55aa2009-03-29 14:02:43 +0000103 diag::err_expected_ident_lbrace);
John McCall48871652010-08-21 09:40:31 +0000104 return 0;
Chris Lattnera5235172007-08-25 06:57:03 +0000105 }
Mike Stump11289f42009-09-09 15:08:12 +0000106
Chris Lattner4de55aa2009-03-29 14:02:43 +0000107 SourceLocation LBrace = ConsumeBrace();
108
Douglas Gregor0be31a22010-07-02 17:43:08 +0000109 if (getCurScope()->isClassScope() || getCurScope()->isTemplateParamScope() ||
110 getCurScope()->isInObjcMethodScope() || getCurScope()->getBlockParent() ||
111 getCurScope()->getFnParent()) {
Richard Trieu61384cb2011-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 Gregor05cfc292010-05-14 05:08:22 +0000116 Diag(LBrace, diag::err_namespace_nonnamespace_scope);
117 SkipUntil(tok::r_brace, false);
John McCall48871652010-08-21 09:40:31 +0000118 return 0;
Douglas Gregor05cfc292010-05-14 05:08:22 +0000119 }
120
Richard Trieu61384cb2011-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 Kramerf546f412011-05-26 21:32:30 +0000131 std::string NamespaceFix;
Richard Trieu61384cb2011-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 Kramerf546f412011-05-26 21:32:30 +0000137
Richard Trieu61384cb2011-05-26 20:11:09 +0000138 std::string RBraces;
Benjamin Kramerf546f412011-05-26 21:32:30 +0000139 for (unsigned i = 0, e = ExtraIdent.size(); i != e; ++i)
Richard Trieu61384cb2011-05-26 20:11:09 +0000140 RBraces += "} ";
Benjamin Kramerf546f412011-05-26 21:32:30 +0000141
Richard Trieu61384cb2011-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 Redl5a5f2c72010-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 Lattner4de55aa2009-03-29 14:02:43 +0000154 // Enter a scope for the namespace.
155 ParseScope NamespaceScope(this, Scope::DeclScope);
156
John McCall48871652010-08-21 09:40:31 +0000157 Decl *NamespcDecl =
Abramo Bagnarab5545be2011-03-08 12:38:20 +0000158 Actions.ActOnStartNamespaceDef(getCurScope(), InlineLoc, NamespaceLoc,
159 IdentLoc, Ident, LBrace, attrs.getList());
Chris Lattner4de55aa2009-03-29 14:02:43 +0000160
John McCallfaf5fb42010-08-26 23:41:50 +0000161 PrettyDeclStackTraceEntry CrashInfo(Actions, NamespcDecl, NamespaceLoc,
162 "parsing namespace");
Mike Stump11289f42009-09-09 15:08:12 +0000163
Richard Trieu61384cb2011-05-26 20:11:09 +0000164 SourceLocation RBraceLoc;
165 // Parse the contents of the namespace. This includes parsing recovery on
166 // any improperly nested namespaces.
167 ParseInnerNamespace(ExtraIdentLoc, ExtraIdent, ExtraNamespaceLoc, 0,
168 InlineLoc, LBrace, attrs, RBraceLoc);
Mike Stump11289f42009-09-09 15:08:12 +0000169
Chris Lattner4de55aa2009-03-29 14:02:43 +0000170 // Leave the namespace scope.
171 NamespaceScope.Exit();
172
Chris Lattner49836b42009-04-02 04:16:50 +0000173 Actions.ActOnFinishNamespaceDef(NamespcDecl, RBraceLoc);
Chris Lattner4de55aa2009-03-29 14:02:43 +0000174
Chris Lattner49836b42009-04-02 04:16:50 +0000175 DeclEnd = RBraceLoc;
Chris Lattner4de55aa2009-03-29 14:02:43 +0000176 return NamespcDecl;
Chris Lattnera5235172007-08-25 06:57:03 +0000177}
Chris Lattner38376f12008-01-12 07:05:38 +0000178
Richard Trieu61384cb2011-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,
184 SourceLocation& LBrace,
185 ParsedAttributes& attrs,
186 SourceLocation& RBraceLoc) {
187 if (index == Ident.size()) {
188 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
189 ParsedAttributesWithRange attrs(AttrFactory);
190 MaybeParseCXX0XAttributes(attrs);
191 MaybeParseMicrosoftAttributes(attrs);
192 ParseExternalDeclaration(attrs);
193 }
194 RBraceLoc = MatchRHSPunctuation(tok::r_brace, LBrace);
195
196 return;
197 }
198
199 // Parse improperly nested namespaces.
200 ParseScope NamespaceScope(this, Scope::DeclScope);
201 Decl *NamespcDecl =
202 Actions.ActOnStartNamespaceDef(getCurScope(), SourceLocation(),
203 NamespaceLoc[index], IdentLoc[index],
204 Ident[index], LBrace, attrs.getList());
205
206 ParseInnerNamespace(IdentLoc, Ident, NamespaceLoc, ++index, InlineLoc,
207 LBrace, attrs, RBraceLoc);
208
209 NamespaceScope.Exit();
210
211 Actions.ActOnFinishNamespaceDef(NamespcDecl, RBraceLoc);
212}
213
Anders Carlsson1894f0d42009-03-28 04:07:16 +0000214/// ParseNamespaceAlias - Parse the part after the '=' in a namespace
215/// alias definition.
216///
John McCall48871652010-08-21 09:40:31 +0000217Decl *Parser::ParseNamespaceAlias(SourceLocation NamespaceLoc,
John McCall084e83d2011-03-24 11:26:52 +0000218 SourceLocation AliasLoc,
219 IdentifierInfo *Alias,
220 SourceLocation &DeclEnd) {
Anders Carlsson1894f0d42009-03-28 04:07:16 +0000221 assert(Tok.is(tok::equal) && "Not equal token");
Mike Stump11289f42009-09-09 15:08:12 +0000222
Anders Carlsson1894f0d42009-03-28 04:07:16 +0000223 ConsumeToken(); // eat the '='.
Mike Stump11289f42009-09-09 15:08:12 +0000224
Douglas Gregor7e90c6d2009-09-18 19:03:04 +0000225 if (Tok.is(tok::code_completion)) {
Douglas Gregor0be31a22010-07-02 17:43:08 +0000226 Actions.CodeCompleteNamespaceAliasDecl(getCurScope());
Douglas Gregor6da3db42010-05-25 05:58:43 +0000227 ConsumeCodeCompletionToken();
Douglas Gregor7e90c6d2009-09-18 19:03:04 +0000228 }
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +0000229
Anders Carlsson1894f0d42009-03-28 04:07:16 +0000230 CXXScopeSpec SS;
231 // Parse (optional) nested-name-specifier.
John McCallba7bf592010-08-24 05:47:05 +0000232 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
Anders Carlsson1894f0d42009-03-28 04:07:16 +0000233
234 if (SS.isInvalid() || Tok.isNot(tok::identifier)) {
235 Diag(Tok, diag::err_expected_namespace_name);
236 // Skip to end of the definition and eat the ';'.
237 SkipUntil(tok::semi);
John McCall48871652010-08-21 09:40:31 +0000238 return 0;
Anders Carlsson1894f0d42009-03-28 04:07:16 +0000239 }
240
241 // Parse identifier.
Anders Carlsson47952ae2009-03-28 22:53:22 +0000242 IdentifierInfo *Ident = Tok.getIdentifierInfo();
243 SourceLocation IdentLoc = ConsumeToken();
Mike Stump11289f42009-09-09 15:08:12 +0000244
Anders Carlsson1894f0d42009-03-28 04:07:16 +0000245 // Eat the ';'.
Chris Lattner49836b42009-04-02 04:16:50 +0000246 DeclEnd = Tok.getLocation();
Chris Lattner34a95662009-06-14 00:07:48 +0000247 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_namespace_name,
248 "", tok::semi);
Mike Stump11289f42009-09-09 15:08:12 +0000249
Douglas Gregor0be31a22010-07-02 17:43:08 +0000250 return Actions.ActOnNamespaceAliasDef(getCurScope(), NamespaceLoc, AliasLoc, Alias,
Anders Carlsson47952ae2009-03-28 22:53:22 +0000251 SS, IdentLoc, Ident);
Anders Carlsson1894f0d42009-03-28 04:07:16 +0000252}
253
Chris Lattner38376f12008-01-12 07:05:38 +0000254/// ParseLinkage - We know that the current token is a string_literal
255/// and just before that, that extern was seen.
256///
257/// linkage-specification: [C++ 7.5p2: dcl.link]
258/// 'extern' string-literal '{' declaration-seq[opt] '}'
259/// 'extern' string-literal declaration
260///
Chris Lattner8ea64422010-11-09 20:15:55 +0000261Decl *Parser::ParseLinkage(ParsingDeclSpec &DS, unsigned Context) {
Douglas Gregor15799fd2008-11-21 16:10:08 +0000262 assert(Tok.is(tok::string_literal) && "Not a string literal!");
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +0000263 llvm::SmallString<8> LangBuffer;
Douglas Gregordc970f02010-03-16 22:30:13 +0000264 bool Invalid = false;
265 llvm::StringRef Lang = PP.getSpelling(Tok, LangBuffer, &Invalid);
266 if (Invalid)
John McCall48871652010-08-21 09:40:31 +0000267 return 0;
Chris Lattner38376f12008-01-12 07:05:38 +0000268
269 SourceLocation Loc = ConsumeStringToken();
Chris Lattner38376f12008-01-12 07:05:38 +0000270
Douglas Gregor07665a62009-01-05 19:45:36 +0000271 ParseScope LinkageScope(this, Scope::DeclScope);
John McCall48871652010-08-21 09:40:31 +0000272 Decl *LinkageSpec
Douglas Gregor0be31a22010-07-02 17:43:08 +0000273 = Actions.ActOnStartLinkageSpecification(getCurScope(),
Abramo Bagnaraea947882011-03-08 16:41:52 +0000274 DS.getSourceRange().getBegin(),
Benjamin Kramerbebee842010-05-03 13:08:54 +0000275 Loc, Lang,
Abramo Bagnaraea947882011-03-08 16:41:52 +0000276 Tok.is(tok::l_brace) ? Tok.getLocation()
Douglas Gregor07665a62009-01-05 19:45:36 +0000277 : SourceLocation());
278
John McCall084e83d2011-03-24 11:26:52 +0000279 ParsedAttributesWithRange attrs(AttrFactory);
John McCall53fa7142010-12-24 02:08:15 +0000280 MaybeParseCXX0XAttributes(attrs);
281 MaybeParseMicrosoftAttributes(attrs);
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +0000282
Douglas Gregor07665a62009-01-05 19:45:36 +0000283 if (Tok.isNot(tok::l_brace)) {
Abramo Bagnara4d423992011-05-01 16:25:54 +0000284 // Reset the source range in DS, as the leading "extern"
285 // does not really belong to the inner declaration ...
286 DS.SetRangeStart(SourceLocation());
287 DS.SetRangeEnd(SourceLocation());
288 // ... but anyway remember that such an "extern" was seen.
Abramo Bagnaraed5b6892010-07-30 16:47:02 +0000289 DS.setExternInLinkageSpec(true);
John McCall53fa7142010-12-24 02:08:15 +0000290 ParseExternalDeclaration(attrs, &DS);
Douglas Gregor0be31a22010-07-02 17:43:08 +0000291 return Actions.ActOnFinishLinkageSpecification(getCurScope(), LinkageSpec,
Douglas Gregor07665a62009-01-05 19:45:36 +0000292 SourceLocation());
Mike Stump11289f42009-09-09 15:08:12 +0000293 }
Douglas Gregor29ff7d02008-12-16 22:23:02 +0000294
Douglas Gregorb65a9132010-02-07 08:38:28 +0000295 DS.abort();
296
John McCall53fa7142010-12-24 02:08:15 +0000297 ProhibitAttributes(attrs);
Alexis Hunt96d5c762009-11-21 08:43:09 +0000298
Douglas Gregor29ff7d02008-12-16 22:23:02 +0000299 SourceLocation LBrace = ConsumeBrace();
Douglas Gregor29ff7d02008-12-16 22:23:02 +0000300 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
John McCall084e83d2011-03-24 11:26:52 +0000301 ParsedAttributesWithRange attrs(AttrFactory);
John McCall53fa7142010-12-24 02:08:15 +0000302 MaybeParseCXX0XAttributes(attrs);
303 MaybeParseMicrosoftAttributes(attrs);
304 ParseExternalDeclaration(attrs);
Chris Lattner38376f12008-01-12 07:05:38 +0000305 }
306
Douglas Gregor29ff7d02008-12-16 22:23:02 +0000307 SourceLocation RBrace = MatchRHSPunctuation(tok::r_brace, LBrace);
Chris Lattner8ea64422010-11-09 20:15:55 +0000308 return Actions.ActOnFinishLinkageSpecification(getCurScope(), LinkageSpec,
309 RBrace);
Chris Lattner38376f12008-01-12 07:05:38 +0000310}
Douglas Gregor556877c2008-04-13 21:30:24 +0000311
Douglas Gregord7c4d982008-12-30 03:27:21 +0000312/// ParseUsingDirectiveOrDeclaration - Parse C++ using using-declaration or
313/// using-directive. Assumes that current token is 'using'.
John McCall48871652010-08-21 09:40:31 +0000314Decl *Parser::ParseUsingDirectiveOrDeclaration(unsigned Context,
John McCall9b72f892010-11-10 02:40:36 +0000315 const ParsedTemplateInfo &TemplateInfo,
316 SourceLocation &DeclEnd,
John McCall53fa7142010-12-24 02:08:15 +0000317 ParsedAttributesWithRange &attrs) {
Douglas Gregord7c4d982008-12-30 03:27:21 +0000318 assert(Tok.is(tok::kw_using) && "Not using token");
319
320 // Eat 'using'.
321 SourceLocation UsingLoc = ConsumeToken();
322
Douglas Gregor7e90c6d2009-09-18 19:03:04 +0000323 if (Tok.is(tok::code_completion)) {
Douglas Gregor0be31a22010-07-02 17:43:08 +0000324 Actions.CodeCompleteUsing(getCurScope());
Douglas Gregor6da3db42010-05-25 05:58:43 +0000325 ConsumeCodeCompletionToken();
Douglas Gregor7e90c6d2009-09-18 19:03:04 +0000326 }
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +0000327
John McCall9b72f892010-11-10 02:40:36 +0000328 // 'using namespace' means this is a using-directive.
329 if (Tok.is(tok::kw_namespace)) {
330 // Template parameters are always an error here.
331 if (TemplateInfo.Kind) {
332 SourceRange R = TemplateInfo.getSourceRange();
333 Diag(UsingLoc, diag::err_templated_using_directive)
334 << R << FixItHint::CreateRemoval(R);
335 }
Alexis Hunt96d5c762009-11-21 08:43:09 +0000336
John McCall53fa7142010-12-24 02:08:15 +0000337 return ParseUsingDirective(Context, UsingLoc, DeclEnd, attrs);
John McCall9b72f892010-11-10 02:40:36 +0000338 }
339
Richard Smithdda56e42011-04-15 14:24:37 +0000340 // Otherwise, it must be a using-declaration or an alias-declaration.
John McCall9b72f892010-11-10 02:40:36 +0000341
342 // Using declarations can't have attributes.
John McCall53fa7142010-12-24 02:08:15 +0000343 ProhibitAttributes(attrs);
Chris Lattner9b01ca12009-01-06 06:55:51 +0000344
John McCall9b72f892010-11-10 02:40:36 +0000345 return ParseUsingDeclaration(Context, TemplateInfo, UsingLoc, DeclEnd);
Douglas Gregord7c4d982008-12-30 03:27:21 +0000346}
347
348/// ParseUsingDirective - Parse C++ using-directive, assumes
349/// that current token is 'namespace' and 'using' was already parsed.
350///
351/// using-directive: [C++ 7.3.p4: namespace.udir]
352/// 'using' 'namespace' ::[opt] nested-name-specifier[opt]
353/// namespace-name ;
354/// [GNU] using-directive:
355/// 'using' 'namespace' ::[opt] nested-name-specifier[opt]
356/// namespace-name attributes[opt] ;
357///
John McCall48871652010-08-21 09:40:31 +0000358Decl *Parser::ParseUsingDirective(unsigned Context,
John McCall9b72f892010-11-10 02:40:36 +0000359 SourceLocation UsingLoc,
360 SourceLocation &DeclEnd,
John McCall53fa7142010-12-24 02:08:15 +0000361 ParsedAttributes &attrs) {
Douglas Gregord7c4d982008-12-30 03:27:21 +0000362 assert(Tok.is(tok::kw_namespace) && "Not 'namespace' token");
363
364 // Eat 'namespace'.
365 SourceLocation NamespcLoc = ConsumeToken();
366
Douglas Gregor7e90c6d2009-09-18 19:03:04 +0000367 if (Tok.is(tok::code_completion)) {
Douglas Gregor0be31a22010-07-02 17:43:08 +0000368 Actions.CodeCompleteUsingDirective(getCurScope());
Douglas Gregor6da3db42010-05-25 05:58:43 +0000369 ConsumeCodeCompletionToken();
Douglas Gregor7e90c6d2009-09-18 19:03:04 +0000370 }
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +0000371
Douglas Gregord7c4d982008-12-30 03:27:21 +0000372 CXXScopeSpec SS;
373 // Parse (optional) nested-name-specifier.
John McCallba7bf592010-08-24 05:47:05 +0000374 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
Douglas Gregord7c4d982008-12-30 03:27:21 +0000375
Douglas Gregord7c4d982008-12-30 03:27:21 +0000376 IdentifierInfo *NamespcName = 0;
377 SourceLocation IdentLoc = SourceLocation();
378
379 // Parse namespace-name.
Chris Lattnerce1da2c2009-01-06 07:27:21 +0000380 if (SS.isInvalid() || Tok.isNot(tok::identifier)) {
Douglas Gregord7c4d982008-12-30 03:27:21 +0000381 Diag(Tok, diag::err_expected_namespace_name);
382 // If there was invalid namespace name, skip to end of decl, and eat ';'.
383 SkipUntil(tok::semi);
384 // FIXME: Are there cases, when we would like to call ActOnUsingDirective?
John McCall48871652010-08-21 09:40:31 +0000385 return 0;
Douglas Gregord7c4d982008-12-30 03:27:21 +0000386 }
Mike Stump11289f42009-09-09 15:08:12 +0000387
Chris Lattnerce1da2c2009-01-06 07:27:21 +0000388 // Parse identifier.
389 NamespcName = Tok.getIdentifierInfo();
390 IdentLoc = ConsumeToken();
Mike Stump11289f42009-09-09 15:08:12 +0000391
Chris Lattnerce1da2c2009-01-06 07:27:21 +0000392 // Parse (optional) attributes (most likely GNU strong-using extension).
Alexis Hunt96d5c762009-11-21 08:43:09 +0000393 bool GNUAttr = false;
394 if (Tok.is(tok::kw___attribute)) {
395 GNUAttr = true;
John McCall53fa7142010-12-24 02:08:15 +0000396 ParseGNUAttributes(attrs);
Alexis Hunt96d5c762009-11-21 08:43:09 +0000397 }
Mike Stump11289f42009-09-09 15:08:12 +0000398
Chris Lattnerce1da2c2009-01-06 07:27:21 +0000399 // Eat ';'.
Chris Lattner49836b42009-04-02 04:16:50 +0000400 DeclEnd = Tok.getLocation();
Chris Lattner34a95662009-06-14 00:07:48 +0000401 ExpectAndConsume(tok::semi,
Douglas Gregor45d6bdf2010-09-07 15:23:11 +0000402 GNUAttr ? diag::err_expected_semi_after_attribute_list
403 : diag::err_expected_semi_after_namespace_name,
404 "", tok::semi);
Douglas Gregord7c4d982008-12-30 03:27:21 +0000405
Douglas Gregor0be31a22010-07-02 17:43:08 +0000406 return Actions.ActOnUsingDirective(getCurScope(), UsingLoc, NamespcLoc, SS,
John McCall53fa7142010-12-24 02:08:15 +0000407 IdentLoc, NamespcName, attrs.getList());
Douglas Gregord7c4d982008-12-30 03:27:21 +0000408}
409
Richard Smithdda56e42011-04-15 14:24:37 +0000410/// ParseUsingDeclaration - Parse C++ using-declaration or alias-declaration.
411/// Assumes that 'using' was already seen.
Douglas Gregord7c4d982008-12-30 03:27:21 +0000412///
413/// using-declaration: [C++ 7.3.p3: namespace.udecl]
414/// 'using' 'typename'[opt] ::[opt] nested-name-specifier
Douglas Gregorfec52632009-06-20 00:51:54 +0000415/// unqualified-id
416/// 'using' :: unqualified-id
Douglas Gregord7c4d982008-12-30 03:27:21 +0000417///
Richard Smithdda56e42011-04-15 14:24:37 +0000418/// alias-declaration: C++0x [decl.typedef]p2
419/// 'using' identifier = type-id ;
420///
John McCall48871652010-08-21 09:40:31 +0000421Decl *Parser::ParseUsingDeclaration(unsigned Context,
John McCall9b72f892010-11-10 02:40:36 +0000422 const ParsedTemplateInfo &TemplateInfo,
423 SourceLocation UsingLoc,
424 SourceLocation &DeclEnd,
425 AccessSpecifier AS) {
Douglas Gregorfec52632009-06-20 00:51:54 +0000426 CXXScopeSpec SS;
John McCalle61f2ba2009-11-18 02:36:19 +0000427 SourceLocation TypenameLoc;
Douglas Gregorfec52632009-06-20 00:51:54 +0000428 bool IsTypeName;
429
430 // Ignore optional 'typename'.
Douglas Gregor220f4272009-11-04 16:30:06 +0000431 // FIXME: This is wrong; we should parse this as a typename-specifier.
Douglas Gregorfec52632009-06-20 00:51:54 +0000432 if (Tok.is(tok::kw_typename)) {
John McCalle61f2ba2009-11-18 02:36:19 +0000433 TypenameLoc = Tok.getLocation();
Douglas Gregorfec52632009-06-20 00:51:54 +0000434 ConsumeToken();
435 IsTypeName = true;
436 }
437 else
438 IsTypeName = false;
439
440 // Parse nested-name-specifier.
John McCallba7bf592010-08-24 05:47:05 +0000441 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
Douglas Gregorfec52632009-06-20 00:51:54 +0000442
Douglas Gregorfec52632009-06-20 00:51:54 +0000443 // Check nested-name specifier.
444 if (SS.isInvalid()) {
445 SkipUntil(tok::semi);
John McCall48871652010-08-21 09:40:31 +0000446 return 0;
Douglas Gregorfec52632009-06-20 00:51:54 +0000447 }
Douglas Gregor220f4272009-11-04 16:30:06 +0000448
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +0000449 // Parse the unqualified-id. We allow parsing of both constructor and
Douglas Gregor220f4272009-11-04 16:30:06 +0000450 // destructor names and allow the action module to diagnose any semantic
451 // errors.
452 UnqualifiedId Name;
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +0000453 if (ParseUnqualifiedId(SS,
Douglas Gregor220f4272009-11-04 16:30:06 +0000454 /*EnteringContext=*/false,
455 /*AllowDestructorName=*/true,
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +0000456 /*AllowConstructorName=*/true,
John McCallba7bf592010-08-24 05:47:05 +0000457 ParsedType(),
Douglas Gregor220f4272009-11-04 16:30:06 +0000458 Name)) {
Douglas Gregorfec52632009-06-20 00:51:54 +0000459 SkipUntil(tok::semi);
John McCall48871652010-08-21 09:40:31 +0000460 return 0;
Douglas Gregorfec52632009-06-20 00:51:54 +0000461 }
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +0000462
John McCall084e83d2011-03-24 11:26:52 +0000463 ParsedAttributes attrs(AttrFactory);
Richard Smithdda56e42011-04-15 14:24:37 +0000464
465 // Maybe this is an alias-declaration.
466 bool IsAliasDecl = Tok.is(tok::equal);
467 TypeResult TypeAlias;
468 if (IsAliasDecl) {
Richard Smith3f1b5d02011-05-05 21:57:07 +0000469 // TODO: Attribute support. C++0x attributes may appear before the equals.
470 // Where can GNU attributes appear?
Richard Smithdda56e42011-04-15 14:24:37 +0000471 ConsumeToken();
472
473 if (!getLang().CPlusPlus0x)
474 Diag(Tok.getLocation(), diag::ext_alias_declaration);
475
Richard Smith3f1b5d02011-05-05 21:57:07 +0000476 // Type alias templates cannot be specialized.
477 int SpecKind = -1;
Richard Smith14034022011-05-05 22:36:10 +0000478 if (TemplateInfo.Kind == ParsedTemplateInfo::Template &&
479 Name.getKind() == UnqualifiedId::IK_TemplateId)
Richard Smith3f1b5d02011-05-05 21:57:07 +0000480 SpecKind = 0;
481 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitSpecialization)
482 SpecKind = 1;
483 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation)
484 SpecKind = 2;
485 if (SpecKind != -1) {
486 SourceRange Range;
487 if (SpecKind == 0)
488 Range = SourceRange(Name.TemplateId->LAngleLoc,
489 Name.TemplateId->RAngleLoc);
490 else
491 Range = TemplateInfo.getSourceRange();
492 Diag(Range.getBegin(), diag::err_alias_declaration_specialization)
493 << SpecKind << Range;
494 SkipUntil(tok::semi);
495 return 0;
496 }
497
Richard Smithdda56e42011-04-15 14:24:37 +0000498 // Name must be an identifier.
499 if (Name.getKind() != UnqualifiedId::IK_Identifier) {
500 Diag(Name.StartLocation, diag::err_alias_declaration_not_identifier);
501 // No removal fixit: can't recover from this.
502 SkipUntil(tok::semi);
503 return 0;
504 } else if (IsTypeName)
505 Diag(TypenameLoc, diag::err_alias_declaration_not_identifier)
506 << FixItHint::CreateRemoval(SourceRange(TypenameLoc,
507 SS.isNotEmpty() ? SS.getEndLoc() : TypenameLoc));
508 else if (SS.isNotEmpty())
509 Diag(SS.getBeginLoc(), diag::err_alias_declaration_not_identifier)
510 << FixItHint::CreateRemoval(SS.getRange());
511
Richard Smith3f1b5d02011-05-05 21:57:07 +0000512 TypeAlias = ParseTypeName(0, TemplateInfo.Kind ?
513 Declarator::AliasTemplateContext :
514 Declarator::AliasDeclContext);
Richard Smithdda56e42011-04-15 14:24:37 +0000515 } else
516 // Parse (optional) attributes (most likely GNU strong-using extension).
517 MaybeParseGNUAttributes(attrs);
Mike Stump11289f42009-09-09 15:08:12 +0000518
Douglas Gregorfec52632009-06-20 00:51:54 +0000519 // Eat ';'.
520 DeclEnd = Tok.getLocation();
521 ExpectAndConsume(tok::semi, diag::err_expected_semi_after,
Richard Smithdda56e42011-04-15 14:24:37 +0000522 !attrs.empty() ? "attributes list" :
523 IsAliasDecl ? "alias declaration" : "using declaration",
Douglas Gregor220f4272009-11-04 16:30:06 +0000524 tok::semi);
Douglas Gregorfec52632009-06-20 00:51:54 +0000525
John McCall9b72f892010-11-10 02:40:36 +0000526 // Diagnose an attempt to declare a templated using-declaration.
Richard Smith3f1b5d02011-05-05 21:57:07 +0000527 // In C++0x, alias-declarations can be templates:
Richard Smithdda56e42011-04-15 14:24:37 +0000528 // template <...> using id = type;
Richard Smith3f1b5d02011-05-05 21:57:07 +0000529 if (TemplateInfo.Kind && !IsAliasDecl) {
John McCall9b72f892010-11-10 02:40:36 +0000530 SourceRange R = TemplateInfo.getSourceRange();
531 Diag(UsingLoc, diag::err_templated_using_declaration)
532 << R << FixItHint::CreateRemoval(R);
533
534 // Unfortunately, we have to bail out instead of recovering by
535 // ignoring the parameters, just in case the nested name specifier
536 // depends on the parameters.
537 return 0;
538 }
539
Richard Smith3f1b5d02011-05-05 21:57:07 +0000540 if (IsAliasDecl) {
541 TemplateParameterLists *TemplateParams = TemplateInfo.TemplateParams;
542 MultiTemplateParamsArg TemplateParamsArg(Actions,
543 TemplateParams ? TemplateParams->data() : 0,
544 TemplateParams ? TemplateParams->size() : 0);
545 return Actions.ActOnAliasDeclaration(getCurScope(), AS, TemplateParamsArg,
546 UsingLoc, Name, TypeAlias);
547 }
Richard Smithdda56e42011-04-15 14:24:37 +0000548
Ted Kremenek5eec2b02010-11-10 05:59:39 +0000549 return Actions.ActOnUsingDeclaration(getCurScope(), AS, true, UsingLoc, SS,
John McCall53fa7142010-12-24 02:08:15 +0000550 Name, attrs.getList(),
551 IsTypeName, TypenameLoc);
Douglas Gregord7c4d982008-12-30 03:27:21 +0000552}
553
Peter Collingbourne3d9cbdc2011-04-15 00:35:57 +0000554/// ParseStaticAssertDeclaration - Parse C++0x or C1X static_assert-declaration.
Anders Carlssonf24fcff62009-03-11 16:27:10 +0000555///
Peter Collingbourne3d9cbdc2011-04-15 00:35:57 +0000556/// [C++0x] static_assert-declaration:
557/// static_assert ( constant-expression , string-literal ) ;
558///
559/// [C1X] static_assert-declaration:
560/// _Static_assert ( constant-expression , string-literal ) ;
Anders Carlssonf24fcff62009-03-11 16:27:10 +0000561///
John McCall48871652010-08-21 09:40:31 +0000562Decl *Parser::ParseStaticAssertDeclaration(SourceLocation &DeclEnd){
Peter Collingbourne3d9cbdc2011-04-15 00:35:57 +0000563 assert((Tok.is(tok::kw_static_assert) || Tok.is(tok::kw__Static_assert)) &&
564 "Not a static_assert declaration");
565
566 if (Tok.is(tok::kw__Static_assert) && !getLang().C1X)
567 Diag(Tok, diag::ext_c1x_static_assert);
568
Anders Carlssonf24fcff62009-03-11 16:27:10 +0000569 SourceLocation StaticAssertLoc = ConsumeToken();
Mike Stump11289f42009-09-09 15:08:12 +0000570
Anders Carlssonf24fcff62009-03-11 16:27:10 +0000571 if (Tok.isNot(tok::l_paren)) {
572 Diag(Tok, diag::err_expected_lparen);
John McCall48871652010-08-21 09:40:31 +0000573 return 0;
Anders Carlssonf24fcff62009-03-11 16:27:10 +0000574 }
Mike Stump11289f42009-09-09 15:08:12 +0000575
Anders Carlssonf24fcff62009-03-11 16:27:10 +0000576 SourceLocation LParenLoc = ConsumeParen();
Douglas Gregorc9c02ed2009-06-19 23:52:42 +0000577
John McCalldadc5752010-08-24 06:29:42 +0000578 ExprResult AssertExpr(ParseConstantExpression());
Anders Carlssonf24fcff62009-03-11 16:27:10 +0000579 if (AssertExpr.isInvalid()) {
580 SkipUntil(tok::semi);
John McCall48871652010-08-21 09:40:31 +0000581 return 0;
Anders Carlssonf24fcff62009-03-11 16:27:10 +0000582 }
Mike Stump11289f42009-09-09 15:08:12 +0000583
Anders Carlssonb4cf3ad2009-03-13 23:29:20 +0000584 if (ExpectAndConsume(tok::comma, diag::err_expected_comma, "", tok::semi))
John McCall48871652010-08-21 09:40:31 +0000585 return 0;
Anders Carlssonb4cf3ad2009-03-13 23:29:20 +0000586
Anders Carlssonf24fcff62009-03-11 16:27:10 +0000587 if (Tok.isNot(tok::string_literal)) {
588 Diag(Tok, diag::err_expected_string_literal);
589 SkipUntil(tok::semi);
John McCall48871652010-08-21 09:40:31 +0000590 return 0;
Anders Carlssonf24fcff62009-03-11 16:27:10 +0000591 }
Mike Stump11289f42009-09-09 15:08:12 +0000592
John McCalldadc5752010-08-24 06:29:42 +0000593 ExprResult AssertMessage(ParseStringLiteralExpression());
Mike Stump11289f42009-09-09 15:08:12 +0000594 if (AssertMessage.isInvalid())
John McCall48871652010-08-21 09:40:31 +0000595 return 0;
Anders Carlssonf24fcff62009-03-11 16:27:10 +0000596
Abramo Bagnaraea947882011-03-08 16:41:52 +0000597 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
Mike Stump11289f42009-09-09 15:08:12 +0000598
Chris Lattner49836b42009-04-02 04:16:50 +0000599 DeclEnd = Tok.getLocation();
Douglas Gregor45d6bdf2010-09-07 15:23:11 +0000600 ExpectAndConsumeSemi(diag::err_expected_semi_after_static_assert);
Anders Carlssonf24fcff62009-03-11 16:27:10 +0000601
John McCallb268a282010-08-23 23:25:46 +0000602 return Actions.ActOnStaticAssertDeclaration(StaticAssertLoc,
603 AssertExpr.take(),
Abramo Bagnaraea947882011-03-08 16:41:52 +0000604 AssertMessage.take(),
605 RParenLoc);
Anders Carlssonf24fcff62009-03-11 16:27:10 +0000606}
607
Anders Carlsson74948d02009-06-24 17:47:40 +0000608/// ParseDecltypeSpecifier - Parse a C++0x decltype specifier.
609///
610/// 'decltype' ( expression )
611///
612void Parser::ParseDecltypeSpecifier(DeclSpec &DS) {
613 assert(Tok.is(tok::kw_decltype) && "Not a decltype specifier");
614
615 SourceLocation StartLoc = ConsumeToken();
616 SourceLocation LParenLoc = Tok.getLocation();
Mike Stump11289f42009-09-09 15:08:12 +0000617
618 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after,
Anders Carlsson74948d02009-06-24 17:47:40 +0000619 "decltype")) {
620 SkipUntil(tok::r_paren);
621 return;
622 }
Mike Stump11289f42009-09-09 15:08:12 +0000623
Anders Carlsson74948d02009-06-24 17:47:40 +0000624 // Parse the expression
Mike Stump11289f42009-09-09 15:08:12 +0000625
Anders Carlsson74948d02009-06-24 17:47:40 +0000626 // C++0x [dcl.type.simple]p4:
627 // The operand of the decltype specifier is an unevaluated operand.
628 EnterExpressionEvaluationContext Unevaluated(Actions,
John McCallfaf5fb42010-08-26 23:41:50 +0000629 Sema::Unevaluated);
John McCalldadc5752010-08-24 06:29:42 +0000630 ExprResult Result = ParseExpression();
Anders Carlsson74948d02009-06-24 17:47:40 +0000631 if (Result.isInvalid()) {
632 SkipUntil(tok::r_paren);
633 return;
634 }
Mike Stump11289f42009-09-09 15:08:12 +0000635
Anders Carlsson74948d02009-06-24 17:47:40 +0000636 // Match the ')'
637 SourceLocation RParenLoc;
638 if (Tok.is(tok::r_paren))
639 RParenLoc = ConsumeParen();
640 else
641 MatchRHSPunctuation(tok::r_paren, LParenLoc);
Mike Stump11289f42009-09-09 15:08:12 +0000642
Anders Carlsson74948d02009-06-24 17:47:40 +0000643 if (RParenLoc.isInvalid())
644 return;
645
646 const char *PrevSpec = 0;
John McCall49bfce42009-08-03 20:12:06 +0000647 unsigned DiagID;
Anders Carlsson74948d02009-06-24 17:47:40 +0000648 // Check for duplicate type specifiers (e.g. "int decltype(a)").
Mike Stump11289f42009-09-09 15:08:12 +0000649 if (DS.SetTypeSpecType(DeclSpec::TST_decltype, StartLoc, PrevSpec,
John McCall49bfce42009-08-03 20:12:06 +0000650 DiagID, Result.release()))
651 Diag(StartLoc, DiagID) << PrevSpec;
Anders Carlsson74948d02009-06-24 17:47:40 +0000652}
653
Alexis Hunt4a257072011-05-19 05:37:45 +0000654void Parser::ParseUnderlyingTypeSpecifier(DeclSpec &DS) {
655 assert(Tok.is(tok::kw___underlying_type) &&
656 "Not an underlying type specifier");
657
658 SourceLocation StartLoc = ConsumeToken();
659 SourceLocation LParenLoc = Tok.getLocation();
660
661 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after,
662 "__underlying_type")) {
663 SkipUntil(tok::r_paren);
664 return;
665 }
666
667 TypeResult Result = ParseTypeName();
668 if (Result.isInvalid()) {
669 SkipUntil(tok::r_paren);
670 return;
671 }
672
673 // Match the ')'
674 SourceLocation RParenLoc;
675 if (Tok.is(tok::r_paren))
676 RParenLoc = ConsumeParen();
677 else
678 MatchRHSPunctuation(tok::r_paren, LParenLoc);
679
680 if (RParenLoc.isInvalid())
681 return;
682
683 const char *PrevSpec = 0;
684 unsigned DiagID;
Alexis Hunte852b102011-05-24 22:41:36 +0000685 if (DS.SetTypeSpecType(DeclSpec::TST_underlyingType, StartLoc, PrevSpec,
Alexis Hunt4a257072011-05-19 05:37:45 +0000686 DiagID, Result.release()))
687 Diag(StartLoc, DiagID) << PrevSpec;
688}
689
Douglas Gregor831c93f2008-11-05 20:51:48 +0000690/// ParseClassName - Parse a C++ class-name, which names a class. Note
691/// that we only check that the result names a type; semantic analysis
692/// will need to verify that the type names a class. The result is
Douglas Gregord54dfb82009-02-25 23:52:28 +0000693/// either a type or NULL, depending on whether a type name was
Douglas Gregor831c93f2008-11-05 20:51:48 +0000694/// found.
695///
696/// class-name: [C++ 9.1]
697/// identifier
Douglas Gregord54dfb82009-02-25 23:52:28 +0000698/// simple-template-id
Mike Stump11289f42009-09-09 15:08:12 +0000699///
Douglas Gregorfe3d7d02009-04-01 21:51:26 +0000700Parser::TypeResult Parser::ParseClassName(SourceLocation &EndLocation,
Douglas Gregore7c20652011-03-02 00:47:37 +0000701 CXXScopeSpec &SS) {
Douglas Gregord54dfb82009-02-25 23:52:28 +0000702 // Check whether we have a template-id that names a type.
703 if (Tok.is(tok::annot_template_id)) {
Argyrios Kyrtzidisc0c5dd22011-06-22 06:09:49 +0000704 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregor46c59612010-01-12 17:52:59 +0000705 if (TemplateId->Kind == TNK_Type_template ||
706 TemplateId->Kind == TNK_Dependent_template_name) {
Douglas Gregore7c20652011-03-02 00:47:37 +0000707 AnnotateTemplateIdTokenAsType();
Douglas Gregord54dfb82009-02-25 23:52:28 +0000708
709 assert(Tok.is(tok::annot_typename) && "template-id -> type failed");
John McCallba7bf592010-08-24 05:47:05 +0000710 ParsedType Type = getTypeAnnotation(Tok);
Douglas Gregord54dfb82009-02-25 23:52:28 +0000711 EndLocation = Tok.getAnnotationEndLoc();
712 ConsumeToken();
Douglas Gregorfe3d7d02009-04-01 21:51:26 +0000713
714 if (Type)
715 return Type;
716 return true;
Douglas Gregord54dfb82009-02-25 23:52:28 +0000717 }
718
719 // Fall through to produce an error below.
720 }
721
Douglas Gregor831c93f2008-11-05 20:51:48 +0000722 if (Tok.isNot(tok::identifier)) {
Chris Lattner6d29c102008-11-18 07:48:38 +0000723 Diag(Tok, diag::err_expected_class_name);
Douglas Gregorfe3d7d02009-04-01 21:51:26 +0000724 return true;
Douglas Gregor831c93f2008-11-05 20:51:48 +0000725 }
726
Douglas Gregor18473f32010-01-12 21:28:44 +0000727 IdentifierInfo *Id = Tok.getIdentifierInfo();
728 SourceLocation IdLoc = ConsumeToken();
729
730 if (Tok.is(tok::less)) {
731 // It looks the user intended to write a template-id here, but the
732 // template-name was wrong. Try to fix that.
733 TemplateNameKind TNK = TNK_Type_template;
734 TemplateTy Template;
Douglas Gregor0be31a22010-07-02 17:43:08 +0000735 if (!Actions.DiagnoseUnknownTemplateName(*Id, IdLoc, getCurScope(),
Douglas Gregore7c20652011-03-02 00:47:37 +0000736 &SS, Template, TNK)) {
Douglas Gregor18473f32010-01-12 21:28:44 +0000737 Diag(IdLoc, diag::err_unknown_template_name)
738 << Id;
739 }
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +0000740
Douglas Gregor18473f32010-01-12 21:28:44 +0000741 if (!Template)
742 return true;
743
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +0000744 // Form the template name
Douglas Gregor18473f32010-01-12 21:28:44 +0000745 UnqualifiedId TemplateName;
746 TemplateName.setIdentifier(Id, IdLoc);
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +0000747
Douglas Gregor18473f32010-01-12 21:28:44 +0000748 // Parse the full template-id, then turn it into a type.
749 if (AnnotateTemplateIdToken(Template, TNK, SS, TemplateName,
750 SourceLocation(), true))
751 return true;
752 if (TNK == TNK_Dependent_template_name)
Douglas Gregore7c20652011-03-02 00:47:37 +0000753 AnnotateTemplateIdTokenAsType();
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +0000754
Douglas Gregor18473f32010-01-12 21:28:44 +0000755 // If we didn't end up with a typename token, there's nothing more we
756 // can do.
757 if (Tok.isNot(tok::annot_typename))
758 return true;
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +0000759
Douglas Gregor18473f32010-01-12 21:28:44 +0000760 // Retrieve the type from the annotation token, consume that token, and
761 // return.
762 EndLocation = Tok.getAnnotationEndLoc();
John McCallba7bf592010-08-24 05:47:05 +0000763 ParsedType Type = getTypeAnnotation(Tok);
Douglas Gregor18473f32010-01-12 21:28:44 +0000764 ConsumeToken();
765 return Type;
766 }
767
Douglas Gregor831c93f2008-11-05 20:51:48 +0000768 // We have an identifier; check whether it is actually a type.
Douglas Gregore7c20652011-03-02 00:47:37 +0000769 ParsedType Type = Actions.getTypeName(*Id, IdLoc, getCurScope(), &SS, true,
Douglas Gregor844cb502011-03-01 18:12:44 +0000770 false, ParsedType(),
771 /*NonTrivialTypeSourceInfo=*/true);
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +0000772 if (!Type) {
Douglas Gregorfe17d252010-02-16 19:09:40 +0000773 Diag(IdLoc, diag::err_expected_class_name);
Douglas Gregorfe3d7d02009-04-01 21:51:26 +0000774 return true;
Douglas Gregor831c93f2008-11-05 20:51:48 +0000775 }
776
777 // Consume the identifier.
Douglas Gregor18473f32010-01-12 21:28:44 +0000778 EndLocation = IdLoc;
Nick Lewycky19b9f952010-07-26 16:56:01 +0000779
780 // Fake up a Declarator to use with ActOnTypeName.
John McCall084e83d2011-03-24 11:26:52 +0000781 DeclSpec DS(AttrFactory);
Nick Lewycky19b9f952010-07-26 16:56:01 +0000782 DS.SetRangeStart(IdLoc);
783 DS.SetRangeEnd(EndLocation);
Douglas Gregore7c20652011-03-02 00:47:37 +0000784 DS.getTypeSpecScope() = SS;
Nick Lewycky19b9f952010-07-26 16:56:01 +0000785
786 const char *PrevSpec = 0;
787 unsigned DiagID;
788 DS.SetTypeSpecType(TST_typename, IdLoc, PrevSpec, DiagID, Type);
789
790 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
791 return Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
Douglas Gregor831c93f2008-11-05 20:51:48 +0000792}
793
Douglas Gregor556877c2008-04-13 21:30:24 +0000794/// ParseClassSpecifier - Parse a C++ class-specifier [C++ class] or
795/// elaborated-type-specifier [C++ dcl.type.elab]; we can't tell which
796/// until we reach the start of a definition or see a token that
Sebastian Redl2b372722010-02-03 21:21:43 +0000797/// cannot start a definition. If SuppressDeclarations is true, we do know.
Douglas Gregor556877c2008-04-13 21:30:24 +0000798///
799/// class-specifier: [C++ class]
800/// class-head '{' member-specification[opt] '}'
801/// class-head '{' member-specification[opt] '}' attributes[opt]
802/// class-head:
803/// class-key identifier[opt] base-clause[opt]
804/// class-key nested-name-specifier identifier base-clause[opt]
805/// class-key nested-name-specifier[opt] simple-template-id
806/// base-clause[opt]
807/// [GNU] class-key attributes[opt] identifier[opt] base-clause[opt]
Mike Stump11289f42009-09-09 15:08:12 +0000808/// [GNU] class-key attributes[opt] nested-name-specifier
Douglas Gregor556877c2008-04-13 21:30:24 +0000809/// identifier base-clause[opt]
Mike Stump11289f42009-09-09 15:08:12 +0000810/// [GNU] class-key attributes[opt] nested-name-specifier[opt]
Douglas Gregor556877c2008-04-13 21:30:24 +0000811/// simple-template-id base-clause[opt]
812/// class-key:
813/// 'class'
814/// 'struct'
815/// 'union'
816///
817/// elaborated-type-specifier: [C++ dcl.type.elab]
Mike Stump11289f42009-09-09 15:08:12 +0000818/// class-key ::[opt] nested-name-specifier[opt] identifier
819/// class-key ::[opt] nested-name-specifier[opt] 'template'[opt]
820/// simple-template-id
Douglas Gregor556877c2008-04-13 21:30:24 +0000821///
822/// Note that the C++ class-specifier and elaborated-type-specifier,
823/// together, subsume the C99 struct-or-union-specifier:
824///
825/// struct-or-union-specifier: [C99 6.7.2.1]
826/// struct-or-union identifier[opt] '{' struct-contents '}'
827/// struct-or-union identifier
828/// [GNU] struct-or-union attributes[opt] identifier[opt] '{' struct-contents
829/// '}' attributes[opt]
830/// [GNU] struct-or-union attributes[opt] identifier
831/// struct-or-union:
832/// 'struct'
833/// 'union'
Chris Lattnerffaa0e62009-04-12 21:49:30 +0000834void Parser::ParseClassSpecifier(tok::TokenKind TagTokKind,
835 SourceLocation StartLoc, DeclSpec &DS,
Douglas Gregor1b57ff32009-05-12 23:25:50 +0000836 const ParsedTemplateInfo &TemplateInfo,
Sebastian Redl2b372722010-02-03 21:21:43 +0000837 AccessSpecifier AS, bool SuppressDeclarations){
Chris Lattnerffaa0e62009-04-12 21:49:30 +0000838 DeclSpec::TST TagType;
839 if (TagTokKind == tok::kw_struct)
840 TagType = DeclSpec::TST_struct;
841 else if (TagTokKind == tok::kw_class)
842 TagType = DeclSpec::TST_class;
843 else {
844 assert(TagTokKind == tok::kw_union && "Not a class specifier");
845 TagType = DeclSpec::TST_union;
846 }
Douglas Gregor556877c2008-04-13 21:30:24 +0000847
Douglas Gregorf45b0cf2009-09-18 15:37:17 +0000848 if (Tok.is(tok::code_completion)) {
849 // Code completion for a struct, class, or union name.
Douglas Gregor0be31a22010-07-02 17:43:08 +0000850 Actions.CodeCompleteTag(getCurScope(), TagType);
Douglas Gregor6da3db42010-05-25 05:58:43 +0000851 ConsumeCodeCompletionToken();
Douglas Gregorf45b0cf2009-09-18 15:37:17 +0000852 }
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +0000853
Chandler Carruth2d69ec72010-06-28 08:39:25 +0000854 // C++03 [temp.explicit] 14.7.2/8:
855 // The usual access checking rules do not apply to names used to specify
856 // explicit instantiations.
857 //
858 // As an extension we do not perform access checking on the names used to
859 // specify explicit specializations either. This is important to allow
860 // specializing traits classes for private types.
861 bool SuppressingAccessChecks = false;
862 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation ||
863 TemplateInfo.Kind == ParsedTemplateInfo::ExplicitSpecialization) {
864 Actions.ActOnStartSuppressingAccessChecks();
865 SuppressingAccessChecks = true;
866 }
867
John McCall084e83d2011-03-24 11:26:52 +0000868 ParsedAttributes attrs(AttrFactory);
Douglas Gregor556877c2008-04-13 21:30:24 +0000869 // If attributes exist after tag, parse them.
870 if (Tok.is(tok::kw___attribute))
John McCall53fa7142010-12-24 02:08:15 +0000871 ParseGNUAttributes(attrs);
Douglas Gregor556877c2008-04-13 21:30:24 +0000872
Steve Naroff3a9b7e02008-12-24 20:59:21 +0000873 // If declspecs exist after tag, parse them.
John McCall0f8ccc42010-08-05 17:13:11 +0000874 while (Tok.is(tok::kw___declspec))
John McCall53fa7142010-12-24 02:08:15 +0000875 ParseMicrosoftDeclSpec(attrs);
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +0000876
Alexis Hunt96d5c762009-11-21 08:43:09 +0000877 // If C++0x attributes exist here, parse them.
878 // FIXME: Are we consistent with the ordering of parsing of different
879 // styles of attributes?
John McCall53fa7142010-12-24 02:08:15 +0000880 MaybeParseCXX0XAttributes(attrs);
Mike Stump11289f42009-09-09 15:08:12 +0000881
John Wiegley65497cc2011-04-27 23:09:49 +0000882 if (TagType == DeclSpec::TST_struct &&
Douglas Gregorf1fce5d2011-04-29 15:31:39 +0000883 !Tok.is(tok::identifier) &&
884 Tok.getIdentifierInfo() &&
885 (Tok.is(tok::kw___is_arithmetic) ||
886 Tok.is(tok::kw___is_convertible) ||
John Wiegley65497cc2011-04-27 23:09:49 +0000887 Tok.is(tok::kw___is_empty) ||
Douglas Gregorf1fce5d2011-04-29 15:31:39 +0000888 Tok.is(tok::kw___is_floating_point) ||
889 Tok.is(tok::kw___is_function) ||
John Wiegley65497cc2011-04-27 23:09:49 +0000890 Tok.is(tok::kw___is_fundamental) ||
Douglas Gregorf1fce5d2011-04-29 15:31:39 +0000891 Tok.is(tok::kw___is_integral) ||
892 Tok.is(tok::kw___is_member_function_pointer) ||
893 Tok.is(tok::kw___is_member_pointer) ||
894 Tok.is(tok::kw___is_pod) ||
895 Tok.is(tok::kw___is_pointer) ||
896 Tok.is(tok::kw___is_same) ||
Douglas Gregor63180b12011-04-29 01:38:03 +0000897 Tok.is(tok::kw___is_scalar) ||
Douglas Gregorf1fce5d2011-04-29 15:31:39 +0000898 Tok.is(tok::kw___is_signed) ||
899 Tok.is(tok::kw___is_unsigned) ||
900 Tok.is(tok::kw___is_void))) {
901 // GNU libstdc++ 4.2 and libc++ uaw certain intrinsic names as the
902 // name of struct templates, but some are keywords in GCC >= 4.3
903 // and Clang. Therefore, when we see the token sequence "struct
904 // X", make X into a normal identifier rather than a keyword, to
905 // allow libstdc++ 4.2 and libc++ to work properly.
Argyrios Kyrtzidis3084a612010-08-11 22:55:12 +0000906 Tok.getIdentifierInfo()->RevertTokenIDToIdentifier();
Douglas Gregor119b0c72009-09-04 05:53:02 +0000907 Tok.setKind(tok::identifier);
908 }
Mike Stump11289f42009-09-09 15:08:12 +0000909
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000910 // Parse the (optional) nested-name-specifier.
John McCall9dab4e62009-12-12 11:40:51 +0000911 CXXScopeSpec &SS = DS.getTypeSpecScope();
Chris Lattnerd5c1c9d2009-12-10 00:32:41 +0000912 if (getLang().CPlusPlus) {
913 // "FOO : BAR" is not a potential typo for "FOO::BAR".
914 ColonProtectionRAIIObject X(*this);
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +0000915
John McCallba7bf592010-08-24 05:47:05 +0000916 if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(), true))
John McCall413021a2010-07-30 06:26:29 +0000917 DS.SetTypeSpecError();
John McCall1f476a12010-02-26 08:45:28 +0000918 if (SS.isSet())
Chris Lattnerd5c1c9d2009-12-10 00:32:41 +0000919 if (Tok.isNot(tok::identifier) && Tok.isNot(tok::annot_template_id))
920 Diag(Tok, diag::err_expected_ident);
921 }
Douglas Gregor67a65642009-02-17 23:15:12 +0000922
Douglas Gregor916462b2009-10-30 21:46:58 +0000923 TemplateParameterLists *TemplateParams = TemplateInfo.TemplateParams;
924
Douglas Gregor67a65642009-02-17 23:15:12 +0000925 // Parse the (optional) class name or simple-template-id.
Douglas Gregor556877c2008-04-13 21:30:24 +0000926 IdentifierInfo *Name = 0;
927 SourceLocation NameLoc;
Douglas Gregor7f741122009-02-25 19:37:18 +0000928 TemplateIdAnnotation *TemplateId = 0;
Douglas Gregor556877c2008-04-13 21:30:24 +0000929 if (Tok.is(tok::identifier)) {
930 Name = Tok.getIdentifierInfo();
931 NameLoc = ConsumeToken();
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +0000932
Douglas Gregord5a479c2010-05-30 22:30:21 +0000933 if (Tok.is(tok::less) && getLang().CPlusPlus) {
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +0000934 // The name was supposed to refer to a template, but didn't.
Douglas Gregor916462b2009-10-30 21:46:58 +0000935 // Eat the template argument list and try to continue parsing this as
936 // a class (or template thereof).
937 TemplateArgList TemplateArgs;
Douglas Gregor916462b2009-10-30 21:46:58 +0000938 SourceLocation LAngleLoc, RAngleLoc;
Douglas Gregore7c20652011-03-02 00:47:37 +0000939 if (ParseTemplateIdAfterTemplateName(TemplateTy(), NameLoc, SS,
Douglas Gregor916462b2009-10-30 21:46:58 +0000940 true, LAngleLoc,
Douglas Gregorb53edfb2009-11-10 19:49:08 +0000941 TemplateArgs, RAngleLoc)) {
Douglas Gregor916462b2009-10-30 21:46:58 +0000942 // We couldn't parse the template argument list at all, so don't
943 // try to give any location information for the list.
944 LAngleLoc = RAngleLoc = SourceLocation();
945 }
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +0000946
Douglas Gregor916462b2009-10-30 21:46:58 +0000947 Diag(NameLoc, diag::err_explicit_spec_non_template)
Douglas Gregor1d0015f2009-10-30 22:09:44 +0000948 << (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation)
Douglas Gregor916462b2009-10-30 21:46:58 +0000949 << (TagType == DeclSpec::TST_class? 0
950 : TagType == DeclSpec::TST_struct? 1
951 : 2)
952 << Name
953 << SourceRange(LAngleLoc, RAngleLoc);
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +0000954
955 // Strip off the last template parameter list if it was empty, since
Douglas Gregor1d0015f2009-10-30 22:09:44 +0000956 // we've removed its template argument list.
957 if (TemplateParams && TemplateInfo.LastParameterListWasEmpty) {
958 if (TemplateParams && TemplateParams->size() > 1) {
959 TemplateParams->pop_back();
960 } else {
961 TemplateParams = 0;
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +0000962 const_cast<ParsedTemplateInfo&>(TemplateInfo).Kind
Douglas Gregor1d0015f2009-10-30 22:09:44 +0000963 = ParsedTemplateInfo::NonTemplate;
964 }
965 } else if (TemplateInfo.Kind
966 == ParsedTemplateInfo::ExplicitInstantiation) {
967 // Pretend this is just a forward declaration.
Douglas Gregor916462b2009-10-30 21:46:58 +0000968 TemplateParams = 0;
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +0000969 const_cast<ParsedTemplateInfo&>(TemplateInfo).Kind
Douglas Gregor916462b2009-10-30 21:46:58 +0000970 = ParsedTemplateInfo::NonTemplate;
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +0000971 const_cast<ParsedTemplateInfo&>(TemplateInfo).TemplateLoc
Douglas Gregor1d0015f2009-10-30 22:09:44 +0000972 = SourceLocation();
973 const_cast<ParsedTemplateInfo&>(TemplateInfo).ExternLoc
974 = SourceLocation();
Douglas Gregor916462b2009-10-30 21:46:58 +0000975 }
Douglas Gregor916462b2009-10-30 21:46:58 +0000976 }
Douglas Gregor7f741122009-02-25 19:37:18 +0000977 } else if (Tok.is(tok::annot_template_id)) {
Argyrios Kyrtzidisc0c5dd22011-06-22 06:09:49 +0000978 TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregor7f741122009-02-25 19:37:18 +0000979 NameLoc = ConsumeToken();
Douglas Gregor67a65642009-02-17 23:15:12 +0000980
Douglas Gregore7c20652011-03-02 00:47:37 +0000981 if (TemplateId->Kind != TNK_Type_template &&
982 TemplateId->Kind != TNK_Dependent_template_name) {
Douglas Gregor7f741122009-02-25 19:37:18 +0000983 // The template-name in the simple-template-id refers to
984 // something other than a class template. Give an appropriate
985 // error message and skip to the ';'.
986 SourceRange Range(NameLoc);
987 if (SS.isNotEmpty())
988 Range.setBegin(SS.getBeginLoc());
Douglas Gregor67a65642009-02-17 23:15:12 +0000989
Douglas Gregor7f741122009-02-25 19:37:18 +0000990 Diag(TemplateId->LAngleLoc, diag::err_template_spec_syntax_non_template)
991 << Name << static_cast<int>(TemplateId->Kind) << Range;
Mike Stump11289f42009-09-09 15:08:12 +0000992
Douglas Gregor7f741122009-02-25 19:37:18 +0000993 DS.SetTypeSpecError();
994 SkipUntil(tok::semi, false, true);
Chandler Carruth2d69ec72010-06-28 08:39:25 +0000995 if (SuppressingAccessChecks)
996 Actions.ActOnStopSuppressingAccessChecks();
997
Douglas Gregor7f741122009-02-25 19:37:18 +0000998 return;
Douglas Gregor67a65642009-02-17 23:15:12 +0000999 }
Douglas Gregor556877c2008-04-13 21:30:24 +00001000 }
1001
Chandler Carruth2d69ec72010-06-28 08:39:25 +00001002 // As soon as we're finished parsing the class's template-id, turn access
1003 // checking back on.
1004 if (SuppressingAccessChecks)
1005 Actions.ActOnStopSuppressingAccessChecks();
1006
John McCall07e91c02009-08-06 02:15:43 +00001007 // There are four options here. If we have 'struct foo;', then this
1008 // is either a forward declaration or a friend declaration, which
Anders Carlsson4b63d0e2011-01-22 16:56:46 +00001009 // have to be treated differently. If we have 'struct foo {...',
Anders Carlsson65c76d32011-03-25 14:55:14 +00001010 // 'struct foo :...' or 'struct foo final[opt]' then this is a
Anders Carlsson4b63d0e2011-01-22 16:56:46 +00001011 // definition. Otherwise we have something like 'struct foo xyz', a reference.
Sebastian Redl2b372722010-02-03 21:21:43 +00001012 // However, in some contexts, things look like declarations but are just
1013 // references, e.g.
1014 // new struct s;
1015 // or
1016 // &T::operator struct s;
1017 // For these, SuppressDeclarations is true.
John McCallfaf5fb42010-08-26 23:41:50 +00001018 Sema::TagUseKind TUK;
Sebastian Redl2b372722010-02-03 21:21:43 +00001019 if (SuppressDeclarations)
John McCallfaf5fb42010-08-26 23:41:50 +00001020 TUK = Sema::TUK_Reference;
Anders Carlsson4b63d0e2011-01-22 16:56:46 +00001021 else if (Tok.is(tok::l_brace) ||
1022 (getLang().CPlusPlus && Tok.is(tok::colon)) ||
Anders Carlssoncafbab72011-03-25 14:53:29 +00001023 isCXX0XFinalKeyword()) {
Douglas Gregor3dad8422009-09-26 06:47:28 +00001024 if (DS.isFriendSpecified()) {
1025 // C++ [class.friend]p2:
1026 // A class shall not be defined in a friend declaration.
1027 Diag(Tok.getLocation(), diag::err_friend_decl_defines_class)
1028 << SourceRange(DS.getFriendSpecLoc());
1029
1030 // Skip everything up to the semicolon, so that this looks like a proper
1031 // friend class (or template thereof) declaration.
1032 SkipUntil(tok::semi, true, true);
John McCallfaf5fb42010-08-26 23:41:50 +00001033 TUK = Sema::TUK_Friend;
Douglas Gregor3dad8422009-09-26 06:47:28 +00001034 } else {
1035 // Okay, this is a class definition.
John McCallfaf5fb42010-08-26 23:41:50 +00001036 TUK = Sema::TUK_Definition;
Douglas Gregor3dad8422009-09-26 06:47:28 +00001037 }
1038 } else if (Tok.is(tok::semi))
John McCallfaf5fb42010-08-26 23:41:50 +00001039 TUK = DS.isFriendSpecified() ? Sema::TUK_Friend : Sema::TUK_Declaration;
Douglas Gregor556877c2008-04-13 21:30:24 +00001040 else
John McCallfaf5fb42010-08-26 23:41:50 +00001041 TUK = Sema::TUK_Reference;
Douglas Gregor556877c2008-04-13 21:30:24 +00001042
John McCall413021a2010-07-30 06:26:29 +00001043 if (!Name && !TemplateId && (DS.getTypeSpecType() == DeclSpec::TST_error ||
John McCallfaf5fb42010-08-26 23:41:50 +00001044 TUK != Sema::TUK_Definition)) {
John McCall413021a2010-07-30 06:26:29 +00001045 if (DS.getTypeSpecType() != DeclSpec::TST_error) {
1046 // We have a declaration or reference to an anonymous class.
1047 Diag(StartLoc, diag::err_anon_type_definition)
1048 << DeclSpec::getSpecifierName(TagType);
1049 }
Douglas Gregor556877c2008-04-13 21:30:24 +00001050
Douglas Gregor556877c2008-04-13 21:30:24 +00001051 SkipUntil(tok::comma, true);
1052 return;
1053 }
1054
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001055 // Create the tag portion of the class or class template.
John McCall48871652010-08-21 09:40:31 +00001056 DeclResult TagOrTempResult = true; // invalid
1057 TypeResult TypeResult = true; // invalid
Douglas Gregor1b57ff32009-05-12 23:25:50 +00001058
Douglas Gregord6ab8742009-05-28 23:31:59 +00001059 bool Owned = false;
John McCall06f6fe8d2009-09-04 01:14:41 +00001060 if (TemplateId) {
Douglas Gregor1b57ff32009-05-12 23:25:50 +00001061 // Explicit specialization, class template partial specialization,
1062 // or explicit instantiation.
Mike Stump11289f42009-09-09 15:08:12 +00001063 ASTTemplateArgsPtr TemplateArgsPtr(Actions,
Douglas Gregor7f741122009-02-25 19:37:18 +00001064 TemplateId->getTemplateArgs(),
Douglas Gregor7f741122009-02-25 19:37:18 +00001065 TemplateId->NumArgs);
Douglas Gregor1b57ff32009-05-12 23:25:50 +00001066 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallfaf5fb42010-08-26 23:41:50 +00001067 TUK == Sema::TUK_Declaration) {
Douglas Gregor1b57ff32009-05-12 23:25:50 +00001068 // This is an explicit instantiation of a class template.
1069 TagOrTempResult
Douglas Gregor0be31a22010-07-02 17:43:08 +00001070 = Actions.ActOnExplicitInstantiation(getCurScope(),
Douglas Gregor43e75172009-09-04 06:33:52 +00001071 TemplateInfo.ExternLoc,
Mike Stump11289f42009-09-09 15:08:12 +00001072 TemplateInfo.TemplateLoc,
Douglas Gregor1b57ff32009-05-12 23:25:50 +00001073 TagType,
Mike Stump11289f42009-09-09 15:08:12 +00001074 StartLoc,
Douglas Gregor1b57ff32009-05-12 23:25:50 +00001075 SS,
John McCall3e56fd42010-08-23 07:28:44 +00001076 TemplateId->Template,
Mike Stump11289f42009-09-09 15:08:12 +00001077 TemplateId->TemplateNameLoc,
1078 TemplateId->LAngleLoc,
Douglas Gregor1b57ff32009-05-12 23:25:50 +00001079 TemplateArgsPtr,
Mike Stump11289f42009-09-09 15:08:12 +00001080 TemplateId->RAngleLoc,
John McCall53fa7142010-12-24 02:08:15 +00001081 attrs.getList());
John McCallb7c5c272010-04-14 00:24:33 +00001082
1083 // Friend template-ids are treated as references unless
1084 // they have template headers, in which case they're ill-formed
1085 // (FIXME: "template <class T> friend class A<T>::B<int>;").
1086 // We diagnose this error in ActOnClassTemplateSpecialization.
John McCallfaf5fb42010-08-26 23:41:50 +00001087 } else if (TUK == Sema::TUK_Reference ||
1088 (TUK == Sema::TUK_Friend &&
John McCallb7c5c272010-04-14 00:24:33 +00001089 TemplateInfo.Kind == ParsedTemplateInfo::NonTemplate)) {
Douglas Gregore7c20652011-03-02 00:47:37 +00001090 TypeResult = Actions.ActOnTagTemplateIdType(TUK, TagType,
1091 StartLoc,
1092 TemplateId->SS,
1093 TemplateId->Template,
1094 TemplateId->TemplateNameLoc,
1095 TemplateId->LAngleLoc,
1096 TemplateArgsPtr,
1097 TemplateId->RAngleLoc);
Douglas Gregor1b57ff32009-05-12 23:25:50 +00001098 } else {
1099 // This is an explicit specialization or a class template
1100 // partial specialization.
1101 TemplateParameterLists FakedParamLists;
1102
1103 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation) {
1104 // This looks like an explicit instantiation, because we have
1105 // something like
1106 //
1107 // template class Foo<X>
1108 //
Douglas Gregor2ec748c2009-05-14 00:28:11 +00001109 // but it actually has a definition. Most likely, this was
Douglas Gregor1b57ff32009-05-12 23:25:50 +00001110 // meant to be an explicit specialization, but the user forgot
1111 // the '<>' after 'template'.
John McCallfaf5fb42010-08-26 23:41:50 +00001112 assert(TUK == Sema::TUK_Definition && "Expected a definition here");
Douglas Gregor1b57ff32009-05-12 23:25:50 +00001113
Mike Stump11289f42009-09-09 15:08:12 +00001114 SourceLocation LAngleLoc
Douglas Gregor1b57ff32009-05-12 23:25:50 +00001115 = PP.getLocForEndOfToken(TemplateInfo.TemplateLoc);
Mike Stump11289f42009-09-09 15:08:12 +00001116 Diag(TemplateId->TemplateNameLoc,
Douglas Gregor1b57ff32009-05-12 23:25:50 +00001117 diag::err_explicit_instantiation_with_definition)
1118 << SourceRange(TemplateInfo.TemplateLoc)
Douglas Gregora771f462010-03-31 17:46:05 +00001119 << FixItHint::CreateInsertion(LAngleLoc, "<>");
Douglas Gregor1b57ff32009-05-12 23:25:50 +00001120
1121 // Create a fake template parameter list that contains only
1122 // "template<>", so that we treat this construct as a class
1123 // template specialization.
1124 FakedParamLists.push_back(
Mike Stump11289f42009-09-09 15:08:12 +00001125 Actions.ActOnTemplateParameterList(0, SourceLocation(),
Douglas Gregor1b57ff32009-05-12 23:25:50 +00001126 TemplateInfo.TemplateLoc,
Mike Stump11289f42009-09-09 15:08:12 +00001127 LAngleLoc,
1128 0, 0,
Douglas Gregor1b57ff32009-05-12 23:25:50 +00001129 LAngleLoc));
1130 TemplateParams = &FakedParamLists;
1131 }
1132
1133 // Build the class template specialization.
1134 TagOrTempResult
Douglas Gregor0be31a22010-07-02 17:43:08 +00001135 = Actions.ActOnClassTemplateSpecialization(getCurScope(), TagType, TUK,
Douglas Gregor7f741122009-02-25 19:37:18 +00001136 StartLoc, SS,
John McCall3e56fd42010-08-23 07:28:44 +00001137 TemplateId->Template,
Mike Stump11289f42009-09-09 15:08:12 +00001138 TemplateId->TemplateNameLoc,
1139 TemplateId->LAngleLoc,
Douglas Gregor7f741122009-02-25 19:37:18 +00001140 TemplateArgsPtr,
Mike Stump11289f42009-09-09 15:08:12 +00001141 TemplateId->RAngleLoc,
John McCall53fa7142010-12-24 02:08:15 +00001142 attrs.getList(),
John McCallfaf5fb42010-08-26 23:41:50 +00001143 MultiTemplateParamsArg(Actions,
Douglas Gregor67a65642009-02-17 23:15:12 +00001144 TemplateParams? &(*TemplateParams)[0] : 0,
1145 TemplateParams? TemplateParams->size() : 0));
Douglas Gregor1b57ff32009-05-12 23:25:50 +00001146 }
Douglas Gregor2ec748c2009-05-14 00:28:11 +00001147 } else if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallfaf5fb42010-08-26 23:41:50 +00001148 TUK == Sema::TUK_Declaration) {
Douglas Gregor2ec748c2009-05-14 00:28:11 +00001149 // Explicit instantiation of a member of a class template
1150 // specialization, e.g.,
1151 //
1152 // template struct Outer<int>::Inner;
1153 //
1154 TagOrTempResult
Douglas Gregor0be31a22010-07-02 17:43:08 +00001155 = Actions.ActOnExplicitInstantiation(getCurScope(),
Douglas Gregor43e75172009-09-04 06:33:52 +00001156 TemplateInfo.ExternLoc,
Mike Stump11289f42009-09-09 15:08:12 +00001157 TemplateInfo.TemplateLoc,
1158 TagType, StartLoc, SS, Name,
John McCall53fa7142010-12-24 02:08:15 +00001159 NameLoc, attrs.getList());
John McCallace48cd2010-10-19 01:40:49 +00001160 } else if (TUK == Sema::TUK_Friend &&
1161 TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate) {
1162 TagOrTempResult =
1163 Actions.ActOnTemplatedFriendTag(getCurScope(), DS.getFriendSpecLoc(),
1164 TagType, StartLoc, SS,
John McCall53fa7142010-12-24 02:08:15 +00001165 Name, NameLoc, attrs.getList(),
John McCallace48cd2010-10-19 01:40:49 +00001166 MultiTemplateParamsArg(Actions,
1167 TemplateParams? &(*TemplateParams)[0] : 0,
1168 TemplateParams? TemplateParams->size() : 0));
Douglas Gregor2ec748c2009-05-14 00:28:11 +00001169 } else {
1170 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallfaf5fb42010-08-26 23:41:50 +00001171 TUK == Sema::TUK_Definition) {
Douglas Gregor2ec748c2009-05-14 00:28:11 +00001172 // FIXME: Diagnose this particular error.
1173 }
1174
John McCall7f41d982009-09-11 04:59:25 +00001175 bool IsDependent = false;
1176
John McCall32723e92010-10-19 18:40:57 +00001177 // Don't pass down template parameter lists if this is just a tag
1178 // reference. For example, we don't need the template parameters here:
1179 // template <class T> class A *makeA(T t);
1180 MultiTemplateParamsArg TParams;
1181 if (TUK != Sema::TUK_Reference && TemplateParams)
1182 TParams =
1183 MultiTemplateParamsArg(&(*TemplateParams)[0], TemplateParams->size());
1184
Douglas Gregor2ec748c2009-05-14 00:28:11 +00001185 // Declaration or definition of a class type
John McCallace48cd2010-10-19 01:40:49 +00001186 TagOrTempResult = Actions.ActOnTag(getCurScope(), TagType, TUK, StartLoc,
John McCall53fa7142010-12-24 02:08:15 +00001187 SS, Name, NameLoc, attrs.getList(), AS,
John McCall32723e92010-10-19 18:40:57 +00001188 TParams, Owned, IsDependent, false,
Abramo Bagnara0e05e242010-12-03 18:54:17 +00001189 false, clang::TypeResult());
John McCall7f41d982009-09-11 04:59:25 +00001190
1191 // If ActOnTag said the type was dependent, try again with the
1192 // less common call.
John McCallace48cd2010-10-19 01:40:49 +00001193 if (IsDependent) {
1194 assert(TUK == Sema::TUK_Reference || TUK == Sema::TUK_Friend);
Douglas Gregor0be31a22010-07-02 17:43:08 +00001195 TypeResult = Actions.ActOnDependentTag(getCurScope(), TagType, TUK,
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00001196 SS, Name, StartLoc, NameLoc);
John McCallace48cd2010-10-19 01:40:49 +00001197 }
Douglas Gregor2ec748c2009-05-14 00:28:11 +00001198 }
Douglas Gregor556877c2008-04-13 21:30:24 +00001199
Douglas Gregor556877c2008-04-13 21:30:24 +00001200 // If there is a body, parse it and inform the actions module.
John McCallfaf5fb42010-08-26 23:41:50 +00001201 if (TUK == Sema::TUK_Definition) {
John McCall2d814c32009-12-19 21:48:58 +00001202 assert(Tok.is(tok::l_brace) ||
Anders Carlsson4b63d0e2011-01-22 16:56:46 +00001203 (getLang().CPlusPlus && Tok.is(tok::colon)) ||
Anders Carlssoncafbab72011-03-25 14:53:29 +00001204 isCXX0XFinalKeyword());
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001205 if (getLang().CPlusPlus)
Douglas Gregorc08f4892009-03-25 00:13:59 +00001206 ParseCXXMemberSpecification(StartLoc, TagType, TagOrTempResult.get());
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001207 else
Douglas Gregorc08f4892009-03-25 00:13:59 +00001208 ParseStructUnionBody(StartLoc, TagType, TagOrTempResult.get());
Douglas Gregor556877c2008-04-13 21:30:24 +00001209 }
1210
John McCallba7bf592010-08-24 05:47:05 +00001211 const char *PrevSpec = 0;
1212 unsigned DiagID;
1213 bool Result;
John McCall7f41d982009-09-11 04:59:25 +00001214 if (!TypeResult.isInvalid()) {
Abramo Bagnara9875a3c2011-03-16 20:16:18 +00001215 Result = DS.SetTypeSpecType(DeclSpec::TST_typename, StartLoc,
1216 NameLoc.isValid() ? NameLoc : StartLoc,
John McCallba7bf592010-08-24 05:47:05 +00001217 PrevSpec, DiagID, TypeResult.get());
John McCall7f41d982009-09-11 04:59:25 +00001218 } else if (!TagOrTempResult.isInvalid()) {
Abramo Bagnara9875a3c2011-03-16 20:16:18 +00001219 Result = DS.SetTypeSpecType(TagType, StartLoc,
1220 NameLoc.isValid() ? NameLoc : StartLoc,
1221 PrevSpec, DiagID, TagOrTempResult.get(), Owned);
John McCall7f41d982009-09-11 04:59:25 +00001222 } else {
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001223 DS.SetTypeSpecError();
Anders Carlssonf83c9fa2009-05-11 22:27:47 +00001224 return;
1225 }
Mike Stump11289f42009-09-09 15:08:12 +00001226
John McCallba7bf592010-08-24 05:47:05 +00001227 if (Result)
John McCall49bfce42009-08-03 20:12:06 +00001228 Diag(StartLoc, DiagID) << PrevSpec;
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00001229
Chris Lattnercf251412010-02-02 01:23:29 +00001230 // At this point, we've successfully parsed a class-specifier in 'definition'
1231 // form (e.g. "struct foo { int x; }". While we could just return here, we're
1232 // going to look at what comes after it to improve error recovery. If an
1233 // impossible token occurs next, we assume that the programmer forgot a ; at
1234 // the end of the declaration and recover that way.
1235 //
1236 // This switch enumerates the valid "follow" set for definition.
John McCallfaf5fb42010-08-26 23:41:50 +00001237 if (TUK == Sema::TUK_Definition) {
Chris Lattnerfd48afe2010-02-28 18:18:36 +00001238 bool ExpectedSemi = true;
Chris Lattnercf251412010-02-02 01:23:29 +00001239 switch (Tok.getKind()) {
Chris Lattnerfd48afe2010-02-28 18:18:36 +00001240 default: break;
Chris Lattnercf251412010-02-02 01:23:29 +00001241 case tok::semi: // struct foo {...} ;
Chris Lattnerafe6a842010-02-02 17:32:27 +00001242 case tok::star: // struct foo {...} * P;
1243 case tok::amp: // struct foo {...} & R = ...
1244 case tok::identifier: // struct foo {...} V ;
1245 case tok::r_paren: //(struct foo {...} ) {4}
1246 case tok::annot_cxxscope: // struct foo {...} a:: b;
1247 case tok::annot_typename: // struct foo {...} a ::b;
1248 case tok::annot_template_id: // struct foo {...} a<int> ::b;
Chris Lattner5e854b92010-02-03 20:41:24 +00001249 case tok::l_paren: // struct foo {...} ( x);
Chris Lattner35af0ab2010-02-03 01:45:03 +00001250 case tok::comma: // __builtin_offsetof(struct foo{...} ,
Chris Lattnerfd48afe2010-02-28 18:18:36 +00001251 ExpectedSemi = false;
1252 break;
1253 // Type qualifiers
1254 case tok::kw_const: // struct foo {...} const x;
1255 case tok::kw_volatile: // struct foo {...} volatile x;
1256 case tok::kw_restrict: // struct foo {...} restrict x;
1257 case tok::kw_inline: // struct foo {...} inline foo() {};
Chris Lattnerafe6a842010-02-02 17:32:27 +00001258 // Storage-class specifiers
1259 case tok::kw_static: // struct foo {...} static x;
1260 case tok::kw_extern: // struct foo {...} extern x;
1261 case tok::kw_typedef: // struct foo {...} typedef x;
1262 case tok::kw_register: // struct foo {...} register x;
1263 case tok::kw_auto: // struct foo {...} auto x;
Douglas Gregorc9a99c52010-05-17 18:19:56 +00001264 case tok::kw_mutable: // struct foo {...} mutable x;
Chris Lattnerfd48afe2010-02-28 18:18:36 +00001265 // As shown above, type qualifiers and storage class specifiers absolutely
1266 // can occur after class specifiers according to the grammar. However,
Chris Lattner57540c52011-04-15 05:22:18 +00001267 // almost no one actually writes code like this. If we see one of these,
Chris Lattnerfd48afe2010-02-28 18:18:36 +00001268 // it is much more likely that someone missed a semi colon and the
1269 // type/storage class specifier we're seeing is part of the *next*
1270 // intended declaration, as in:
1271 //
1272 // struct foo { ... }
1273 // typedef int X;
1274 //
1275 // We'd really like to emit a missing semicolon error instead of emitting
1276 // an error on the 'int' saying that you can't have two type specifiers in
1277 // the same declaration of X. Because of this, we look ahead past this
1278 // token to see if it's a type specifier. If so, we know the code is
1279 // otherwise invalid, so we can produce the expected semi error.
1280 if (!isKnownToBeTypeSpecifier(NextToken()))
1281 ExpectedSemi = false;
Chris Lattnercf251412010-02-02 01:23:29 +00001282 break;
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00001283
1284 case tok::r_brace: // struct bar { struct foo {...} }
Chris Lattnercf251412010-02-02 01:23:29 +00001285 // Missing ';' at end of struct is accepted as an extension in C mode.
Chris Lattnerfd48afe2010-02-28 18:18:36 +00001286 if (!getLang().CPlusPlus)
1287 ExpectedSemi = false;
1288 break;
1289 }
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00001290
Chris Lattnerfd48afe2010-02-28 18:18:36 +00001291 if (ExpectedSemi) {
Chris Lattnercf251412010-02-02 01:23:29 +00001292 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_tagdecl,
1293 TagType == DeclSpec::TST_class ? "class"
1294 : TagType == DeclSpec::TST_struct? "struct" : "union");
1295 // Push this token back into the preprocessor and change our current token
1296 // to ';' so that the rest of the code recovers as though there were an
1297 // ';' after the definition.
1298 PP.EnterToken(Tok);
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00001299 Tok.setKind(tok::semi);
Chris Lattnercf251412010-02-02 01:23:29 +00001300 }
1301 }
Douglas Gregor556877c2008-04-13 21:30:24 +00001302}
1303
Mike Stump11289f42009-09-09 15:08:12 +00001304/// ParseBaseClause - Parse the base-clause of a C++ class [C++ class.derived].
Douglas Gregor556877c2008-04-13 21:30:24 +00001305///
1306/// base-clause : [C++ class.derived]
1307/// ':' base-specifier-list
1308/// base-specifier-list:
1309/// base-specifier '...'[opt]
1310/// base-specifier-list ',' base-specifier '...'[opt]
John McCall48871652010-08-21 09:40:31 +00001311void Parser::ParseBaseClause(Decl *ClassDecl) {
Douglas Gregor556877c2008-04-13 21:30:24 +00001312 assert(Tok.is(tok::colon) && "Not a base clause");
1313 ConsumeToken();
1314
Douglas Gregor29a92472008-10-22 17:49:05 +00001315 // Build up an array of parsed base specifiers.
John McCall37ad5512010-08-23 06:44:23 +00001316 llvm::SmallVector<CXXBaseSpecifier *, 8> BaseInfo;
Douglas Gregor29a92472008-10-22 17:49:05 +00001317
Douglas Gregor556877c2008-04-13 21:30:24 +00001318 while (true) {
1319 // Parse a base-specifier.
Douglas Gregor29a92472008-10-22 17:49:05 +00001320 BaseResult Result = ParseBaseSpecifier(ClassDecl);
Douglas Gregorf8298252009-01-26 22:44:13 +00001321 if (Result.isInvalid()) {
Douglas Gregor556877c2008-04-13 21:30:24 +00001322 // Skip the rest of this base specifier, up until the comma or
1323 // opening brace.
Douglas Gregor29a92472008-10-22 17:49:05 +00001324 SkipUntil(tok::comma, tok::l_brace, true, true);
1325 } else {
1326 // Add this to our array of base specifiers.
Douglas Gregorf8298252009-01-26 22:44:13 +00001327 BaseInfo.push_back(Result.get());
Douglas Gregor556877c2008-04-13 21:30:24 +00001328 }
1329
1330 // If the next token is a comma, consume it and keep reading
1331 // base-specifiers.
1332 if (Tok.isNot(tok::comma)) break;
Mike Stump11289f42009-09-09 15:08:12 +00001333
Douglas Gregor556877c2008-04-13 21:30:24 +00001334 // Consume the comma.
1335 ConsumeToken();
1336 }
Douglas Gregor29a92472008-10-22 17:49:05 +00001337
1338 // Attach the base specifiers
Jay Foad7d0479f2009-05-21 09:52:38 +00001339 Actions.ActOnBaseSpecifiers(ClassDecl, BaseInfo.data(), BaseInfo.size());
Douglas Gregor556877c2008-04-13 21:30:24 +00001340}
1341
1342/// ParseBaseSpecifier - Parse a C++ base-specifier. A base-specifier is
1343/// one entry in the base class list of a class specifier, for example:
1344/// class foo : public bar, virtual private baz {
1345/// 'public bar' and 'virtual private baz' are each base-specifiers.
1346///
1347/// base-specifier: [C++ class.derived]
1348/// ::[opt] nested-name-specifier[opt] class-name
1349/// 'virtual' access-specifier[opt] ::[opt] nested-name-specifier[opt]
1350/// class-name
1351/// access-specifier 'virtual'[opt] ::[opt] nested-name-specifier[opt]
1352/// class-name
John McCall48871652010-08-21 09:40:31 +00001353Parser::BaseResult Parser::ParseBaseSpecifier(Decl *ClassDecl) {
Douglas Gregor556877c2008-04-13 21:30:24 +00001354 bool IsVirtual = false;
1355 SourceLocation StartLoc = Tok.getLocation();
1356
1357 // Parse the 'virtual' keyword.
1358 if (Tok.is(tok::kw_virtual)) {
1359 ConsumeToken();
1360 IsVirtual = true;
1361 }
1362
1363 // Parse an (optional) access specifier.
1364 AccessSpecifier Access = getAccessSpecifierIfPresent();
John McCall553c0792010-01-23 00:46:32 +00001365 if (Access != AS_none)
Douglas Gregor556877c2008-04-13 21:30:24 +00001366 ConsumeToken();
Mike Stump11289f42009-09-09 15:08:12 +00001367
Douglas Gregor556877c2008-04-13 21:30:24 +00001368 // Parse the 'virtual' keyword (again!), in case it came after the
1369 // access specifier.
1370 if (Tok.is(tok::kw_virtual)) {
1371 SourceLocation VirtualLoc = ConsumeToken();
1372 if (IsVirtual) {
1373 // Complain about duplicate 'virtual'
Chris Lattner6d29c102008-11-18 07:48:38 +00001374 Diag(VirtualLoc, diag::err_dup_virtual)
Douglas Gregora771f462010-03-31 17:46:05 +00001375 << FixItHint::CreateRemoval(VirtualLoc);
Douglas Gregor556877c2008-04-13 21:30:24 +00001376 }
1377
1378 IsVirtual = true;
1379 }
1380
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00001381 // Parse optional '::' and optional nested-name-specifier.
1382 CXXScopeSpec SS;
John McCallba7bf592010-08-24 05:47:05 +00001383 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), /*EnteringContext=*/false);
Douglas Gregor556877c2008-04-13 21:30:24 +00001384
Douglas Gregor556877c2008-04-13 21:30:24 +00001385 // The location of the base class itself.
1386 SourceLocation BaseLoc = Tok.getLocation();
Douglas Gregor831c93f2008-11-05 20:51:48 +00001387
1388 // Parse the class-name.
Douglas Gregord54dfb82009-02-25 23:52:28 +00001389 SourceLocation EndLocation;
Douglas Gregore7c20652011-03-02 00:47:37 +00001390 TypeResult BaseType = ParseClassName(EndLocation, SS);
Douglas Gregorfe3d7d02009-04-01 21:51:26 +00001391 if (BaseType.isInvalid())
Douglas Gregor831c93f2008-11-05 20:51:48 +00001392 return true;
Mike Stump11289f42009-09-09 15:08:12 +00001393
Douglas Gregor752a5952011-01-03 22:36:02 +00001394 // Parse the optional ellipsis (for a pack expansion). The ellipsis is
1395 // actually part of the base-specifier-list grammar productions, but we
1396 // parse it here for convenience.
1397 SourceLocation EllipsisLoc;
1398 if (Tok.is(tok::ellipsis))
1399 EllipsisLoc = ConsumeToken();
1400
Mike Stump11289f42009-09-09 15:08:12 +00001401 // Find the complete source range for the base-specifier.
Douglas Gregord54dfb82009-02-25 23:52:28 +00001402 SourceRange Range(StartLoc, EndLocation);
Mike Stump11289f42009-09-09 15:08:12 +00001403
Douglas Gregor556877c2008-04-13 21:30:24 +00001404 // Notify semantic analysis that we have parsed a complete
1405 // base-specifier.
Sebastian Redl511ed552008-11-25 22:21:31 +00001406 return Actions.ActOnBaseSpecifier(ClassDecl, Range, IsVirtual, Access,
Douglas Gregor752a5952011-01-03 22:36:02 +00001407 BaseType.get(), BaseLoc, EllipsisLoc);
Douglas Gregor556877c2008-04-13 21:30:24 +00001408}
1409
1410/// getAccessSpecifierIfPresent - Determine whether the next token is
1411/// a C++ access-specifier.
1412///
1413/// access-specifier: [C++ class.derived]
1414/// 'private'
1415/// 'protected'
1416/// 'public'
Mike Stump11289f42009-09-09 15:08:12 +00001417AccessSpecifier Parser::getAccessSpecifierIfPresent() const {
Douglas Gregor556877c2008-04-13 21:30:24 +00001418 switch (Tok.getKind()) {
1419 default: return AS_none;
1420 case tok::kw_private: return AS_private;
1421 case tok::kw_protected: return AS_protected;
1422 case tok::kw_public: return AS_public;
1423 }
1424}
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001425
Eli Friedman3af2a772009-07-22 21:45:50 +00001426void Parser::HandleMemberFunctionDefaultArgs(Declarator& DeclaratorInfo,
John McCall48871652010-08-21 09:40:31 +00001427 Decl *ThisDecl) {
Eli Friedman3af2a772009-07-22 21:45:50 +00001428 // We just declared a member function. If this member function
1429 // has any default arguments, we'll need to parse them later.
1430 LateParsedMethodDeclaration *LateMethod = 0;
Mike Stump11289f42009-09-09 15:08:12 +00001431 DeclaratorChunk::FunctionTypeInfo &FTI
Abramo Bagnara924a8f32010-12-10 16:29:40 +00001432 = DeclaratorInfo.getFunctionTypeInfo();
Eli Friedman3af2a772009-07-22 21:45:50 +00001433 for (unsigned ParamIdx = 0; ParamIdx < FTI.NumArgs; ++ParamIdx) {
1434 if (LateMethod || FTI.ArgInfo[ParamIdx].DefaultArgTokens) {
1435 if (!LateMethod) {
1436 // Push this method onto the stack of late-parsed method
1437 // declarations.
Douglas Gregorefc46952010-10-12 16:25:54 +00001438 LateMethod = new LateParsedMethodDeclaration(this, ThisDecl);
1439 getCurrentClass().LateParsedDeclarations.push_back(LateMethod);
Douglas Gregor0be31a22010-07-02 17:43:08 +00001440 LateMethod->TemplateScope = getCurScope()->isTemplateParamScope();
Eli Friedman3af2a772009-07-22 21:45:50 +00001441
1442 // Add all of the parameters prior to this one (they don't
1443 // have default arguments).
1444 LateMethod->DefaultArgs.reserve(FTI.NumArgs);
1445 for (unsigned I = 0; I < ParamIdx; ++I)
1446 LateMethod->DefaultArgs.push_back(
Douglas Gregor1d85d292010-03-02 01:29:43 +00001447 LateParsedDefaultArgument(FTI.ArgInfo[I].Param));
Eli Friedman3af2a772009-07-22 21:45:50 +00001448 }
1449
1450 // Add this parameter to the list of parameters (it or may
1451 // not have a default argument).
1452 LateMethod->DefaultArgs.push_back(
1453 LateParsedDefaultArgument(FTI.ArgInfo[ParamIdx].Param,
1454 FTI.ArgInfo[ParamIdx].DefaultArgTokens));
1455 }
1456 }
1457}
1458
Anders Carlsson11fdbbc2011-01-16 23:56:42 +00001459/// isCXX0XVirtSpecifier - Determine whether the next token is a C++0x
1460/// virt-specifier.
1461///
1462/// virt-specifier:
1463/// override
1464/// final
Anders Carlsson4b63d0e2011-01-22 16:56:46 +00001465VirtSpecifiers::Specifier Parser::isCXX0XVirtSpecifier() const {
Anders Carlsson5a72fdb2011-01-22 23:01:49 +00001466 if (!getLang().CPlusPlus)
Anders Carlsson4b63d0e2011-01-22 16:56:46 +00001467 return VirtSpecifiers::VS_None;
1468
Anders Carlsson56104902011-01-17 03:05:47 +00001469 if (Tok.is(tok::identifier)) {
1470 IdentifierInfo *II = Tok.getIdentifierInfo();
Anders Carlsson11fdbbc2011-01-16 23:56:42 +00001471
Anders Carlsson428803b2011-01-20 03:47:08 +00001472 // Initialize the contextual keywords.
1473 if (!Ident_final) {
1474 Ident_final = &PP.getIdentifierTable().get("final");
1475 Ident_override = &PP.getIdentifierTable().get("override");
1476 }
1477
Anders Carlsson56104902011-01-17 03:05:47 +00001478 if (II == Ident_override)
1479 return VirtSpecifiers::VS_Override;
1480
1481 if (II == Ident_final)
1482 return VirtSpecifiers::VS_Final;
1483 }
1484
1485 return VirtSpecifiers::VS_None;
Anders Carlsson11fdbbc2011-01-16 23:56:42 +00001486}
1487
1488/// ParseOptionalCXX0XVirtSpecifierSeq - Parse a virt-specifier-seq.
1489///
1490/// virt-specifier-seq:
1491/// virt-specifier
1492/// virt-specifier-seq virt-specifier
Anders Carlsson56104902011-01-17 03:05:47 +00001493void Parser::ParseOptionalCXX0XVirtSpecifierSeq(VirtSpecifiers &VS) {
Anders Carlsson56104902011-01-17 03:05:47 +00001494 while (true) {
Anders Carlsson4b63d0e2011-01-22 16:56:46 +00001495 VirtSpecifiers::Specifier Specifier = isCXX0XVirtSpecifier();
Anders Carlsson56104902011-01-17 03:05:47 +00001496 if (Specifier == VirtSpecifiers::VS_None)
1497 return;
1498
1499 // C++ [class.mem]p8:
1500 // A virt-specifier-seq shall contain at most one of each virt-specifier.
Anders Carlsson4b63d0e2011-01-22 16:56:46 +00001501 const char *PrevSpec = 0;
Anders Carlssonf2ca3892011-01-22 15:58:16 +00001502 if (VS.SetSpecifier(Specifier, Tok.getLocation(), PrevSpec))
Anders Carlsson56104902011-01-17 03:05:47 +00001503 Diag(Tok.getLocation(), diag::err_duplicate_virt_specifier)
1504 << PrevSpec
1505 << FixItHint::CreateRemoval(Tok.getLocation());
1506
Anders Carlsson5a72fdb2011-01-22 23:01:49 +00001507 if (!getLang().CPlusPlus0x)
1508 Diag(Tok.getLocation(), diag::ext_override_control_keyword)
1509 << VirtSpecifiers::getSpecifierName(Specifier);
Anders Carlsson56104902011-01-17 03:05:47 +00001510 ConsumeToken();
1511 }
Anders Carlsson11fdbbc2011-01-16 23:56:42 +00001512}
1513
Anders Carlssoncafbab72011-03-25 14:53:29 +00001514/// isCXX0XFinalKeyword - Determine whether the next token is a C++0x
1515/// contextual 'final' keyword.
1516bool Parser::isCXX0XFinalKeyword() const {
Anders Carlsson5a72fdb2011-01-22 23:01:49 +00001517 if (!getLang().CPlusPlus)
Anders Carlssoncafbab72011-03-25 14:53:29 +00001518 return false;
Anders Carlsson4b63d0e2011-01-22 16:56:46 +00001519
Anders Carlssoncafbab72011-03-25 14:53:29 +00001520 if (!Tok.is(tok::identifier))
1521 return false;
Anders Carlsson4b63d0e2011-01-22 16:56:46 +00001522
Anders Carlssoncafbab72011-03-25 14:53:29 +00001523 // Initialize the contextual keywords.
1524 if (!Ident_final) {
1525 Ident_final = &PP.getIdentifierTable().get("final");
1526 Ident_override = &PP.getIdentifierTable().get("override");
1527 }
Anders Carlsson4b63d0e2011-01-22 16:56:46 +00001528
Anders Carlssoncafbab72011-03-25 14:53:29 +00001529 return Tok.getIdentifierInfo() == Ident_final;
Anders Carlsson4b63d0e2011-01-22 16:56:46 +00001530}
1531
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001532/// ParseCXXClassMemberDeclaration - Parse a C++ class member declaration.
1533///
1534/// member-declaration:
1535/// decl-specifier-seq[opt] member-declarator-list[opt] ';'
1536/// function-definition ';'[opt]
1537/// ::[opt] nested-name-specifier template[opt] unqualified-id ';'[TODO]
1538/// using-declaration [TODO]
Anders Carlssonf24fcff62009-03-11 16:27:10 +00001539/// [C++0x] static_assert-declaration
Anders Carlssondfbbdf62009-03-26 00:52:18 +00001540/// template-declaration
Chris Lattnerd19c1c02008-12-18 01:12:00 +00001541/// [GNU] '__extension__' member-declaration
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001542///
1543/// member-declarator-list:
1544/// member-declarator
1545/// member-declarator-list ',' member-declarator
1546///
1547/// member-declarator:
Anders Carlsson11fdbbc2011-01-16 23:56:42 +00001548/// declarator virt-specifier-seq[opt] pure-specifier[opt]
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001549/// declarator constant-initializer[opt]
Richard Smith938f40b2011-06-11 17:19:42 +00001550/// [C++11] declarator brace-or-equal-initializer[opt]
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001551/// identifier[opt] ':' constant-expression
1552///
Anders Carlsson11fdbbc2011-01-16 23:56:42 +00001553/// virt-specifier-seq:
1554/// virt-specifier
1555/// virt-specifier-seq virt-specifier
1556///
1557/// virt-specifier:
1558/// override
1559/// final
1560/// new
1561///
Sebastian Redl42e92c42009-04-12 17:16:29 +00001562/// pure-specifier:
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001563/// '= 0'
1564///
1565/// constant-initializer:
1566/// '=' constant-expression
1567///
Douglas Gregor3447e762009-08-20 22:52:58 +00001568void Parser::ParseCXXClassMemberDeclaration(AccessSpecifier AS,
John McCall796c2a52010-07-16 08:13:16 +00001569 const ParsedTemplateInfo &TemplateInfo,
1570 ParsingDeclRAIIObject *TemplateDiags) {
Douglas Gregor23c84762011-04-14 17:21:19 +00001571 if (Tok.is(tok::at)) {
1572 if (getLang().ObjC1 && NextToken().isObjCAtKeyword(tok::objc_defs))
1573 Diag(Tok, diag::err_at_defs_cxx);
1574 else
1575 Diag(Tok, diag::err_at_in_class);
1576
1577 ConsumeToken();
1578 SkipUntil(tok::r_brace);
1579 return;
1580 }
1581
John McCalla0097262009-12-11 02:10:03 +00001582 // Access declarations.
1583 if (!TemplateInfo.Kind &&
1584 (Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) &&
John McCall1f476a12010-02-26 08:45:28 +00001585 !TryAnnotateCXXScopeToken() &&
John McCalla0097262009-12-11 02:10:03 +00001586 Tok.is(tok::annot_cxxscope)) {
1587 bool isAccessDecl = false;
1588 if (NextToken().is(tok::identifier))
1589 isAccessDecl = GetLookAheadToken(2).is(tok::semi);
1590 else
1591 isAccessDecl = NextToken().is(tok::kw_operator);
1592
1593 if (isAccessDecl) {
1594 // Collect the scope specifier token we annotated earlier.
1595 CXXScopeSpec SS;
John McCallba7bf592010-08-24 05:47:05 +00001596 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
John McCalla0097262009-12-11 02:10:03 +00001597
1598 // Try to parse an unqualified-id.
1599 UnqualifiedId Name;
John McCallba7bf592010-08-24 05:47:05 +00001600 if (ParseUnqualifiedId(SS, false, true, true, ParsedType(), Name)) {
John McCalla0097262009-12-11 02:10:03 +00001601 SkipUntil(tok::semi);
1602 return;
1603 }
1604
1605 // TODO: recover from mistakenly-qualified operator declarations.
1606 if (ExpectAndConsume(tok::semi,
1607 diag::err_expected_semi_after,
1608 "access declaration",
1609 tok::semi))
1610 return;
1611
Douglas Gregor0be31a22010-07-02 17:43:08 +00001612 Actions.ActOnUsingDeclaration(getCurScope(), AS,
John McCalla0097262009-12-11 02:10:03 +00001613 false, SourceLocation(),
1614 SS, Name,
1615 /* AttrList */ 0,
1616 /* IsTypeName */ false,
1617 SourceLocation());
1618 return;
1619 }
1620 }
1621
Anders Carlssonf24fcff62009-03-11 16:27:10 +00001622 // static_assert-declaration
Peter Collingbourne3d9cbdc2011-04-15 00:35:57 +00001623 if (Tok.is(tok::kw_static_assert) || Tok.is(tok::kw__Static_assert)) {
Douglas Gregor3447e762009-08-20 22:52:58 +00001624 // FIXME: Check for templates
Chris Lattner49836b42009-04-02 04:16:50 +00001625 SourceLocation DeclEnd;
1626 ParseStaticAssertDeclaration(DeclEnd);
Chris Lattner5bbb3c82009-03-29 16:50:03 +00001627 return;
1628 }
Mike Stump11289f42009-09-09 15:08:12 +00001629
Chris Lattner5bbb3c82009-03-29 16:50:03 +00001630 if (Tok.is(tok::kw_template)) {
Mike Stump11289f42009-09-09 15:08:12 +00001631 assert(!TemplateInfo.TemplateParams &&
Douglas Gregor3447e762009-08-20 22:52:58 +00001632 "Nested template improperly parsed?");
Chris Lattner49836b42009-04-02 04:16:50 +00001633 SourceLocation DeclEnd;
Mike Stump11289f42009-09-09 15:08:12 +00001634 ParseDeclarationStartingWithTemplate(Declarator::MemberContext, DeclEnd,
Douglas Gregor1b57ff32009-05-12 23:25:50 +00001635 AS);
Chris Lattner5bbb3c82009-03-29 16:50:03 +00001636 return;
1637 }
Anders Carlssondfbbdf62009-03-26 00:52:18 +00001638
Chris Lattnerd19c1c02008-12-18 01:12:00 +00001639 // Handle: member-declaration ::= '__extension__' member-declaration
1640 if (Tok.is(tok::kw___extension__)) {
1641 // __extension__ silences extension warnings in the subexpression.
1642 ExtensionRAIIObject O(Diags); // Use RAII to do this.
1643 ConsumeToken();
John McCall796c2a52010-07-16 08:13:16 +00001644 return ParseCXXClassMemberDeclaration(AS, TemplateInfo, TemplateDiags);
Chris Lattnerd19c1c02008-12-18 01:12:00 +00001645 }
Douglas Gregorfec52632009-06-20 00:51:54 +00001646
Chris Lattnercf251412010-02-02 01:23:29 +00001647 // Don't parse FOO:BAR as if it were a typo for FOO::BAR, in this context it
1648 // is a bitfield.
Chris Lattner17c3b1f2009-12-10 01:59:24 +00001649 ColonProtectionRAIIObject X(*this);
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00001650
John McCall084e83d2011-03-24 11:26:52 +00001651 ParsedAttributesWithRange attrs(AttrFactory);
Alexis Hunt96d5c762009-11-21 08:43:09 +00001652 // Optional C++0x attribute-specifier
John McCall53fa7142010-12-24 02:08:15 +00001653 MaybeParseCXX0XAttributes(attrs);
1654 MaybeParseMicrosoftAttributes(attrs);
Alexis Hunt96d5c762009-11-21 08:43:09 +00001655
Douglas Gregorfec52632009-06-20 00:51:54 +00001656 if (Tok.is(tok::kw_using)) {
John McCall53fa7142010-12-24 02:08:15 +00001657 ProhibitAttributes(attrs);
Mike Stump11289f42009-09-09 15:08:12 +00001658
Douglas Gregorfec52632009-06-20 00:51:54 +00001659 // Eat 'using'.
1660 SourceLocation UsingLoc = ConsumeToken();
1661
1662 if (Tok.is(tok::kw_namespace)) {
1663 Diag(UsingLoc, diag::err_using_namespace_in_class);
1664 SkipUntil(tok::semi, true, true);
Chris Lattner916dbf12010-02-02 00:43:15 +00001665 } else {
Douglas Gregorfec52632009-06-20 00:51:54 +00001666 SourceLocation DeclEnd;
Richard Smith3f1b5d02011-05-05 21:57:07 +00001667 // Otherwise, it must be a using-declaration or an alias-declaration.
John McCall9b72f892010-11-10 02:40:36 +00001668 ParseUsingDeclaration(Declarator::MemberContext, TemplateInfo,
1669 UsingLoc, DeclEnd, AS);
Douglas Gregorfec52632009-06-20 00:51:54 +00001670 }
1671 return;
1672 }
1673
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001674 // decl-specifier-seq:
1675 // Parse the common declaration-specifiers piece.
John McCall796c2a52010-07-16 08:13:16 +00001676 ParsingDeclSpec DS(*this, TemplateDiags);
John McCall53fa7142010-12-24 02:08:15 +00001677 DS.takeAttributesFrom(attrs);
Douglas Gregor3447e762009-08-20 22:52:58 +00001678 ParseDeclarationSpecifiers(DS, TemplateInfo, AS, DSC_class);
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001679
John McCallfaf5fb42010-08-26 23:41:50 +00001680 MultiTemplateParamsArg TemplateParams(Actions,
John McCall11083da2009-09-16 22:47:08 +00001681 TemplateInfo.TemplateParams? TemplateInfo.TemplateParams->data() : 0,
1682 TemplateInfo.TemplateParams? TemplateInfo.TemplateParams->size() : 0);
1683
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001684 if (Tok.is(tok::semi)) {
1685 ConsumeToken();
John McCall48871652010-08-21 09:40:31 +00001686 Decl *TheDecl =
Chandler Carruth7c9856d2011-05-03 18:35:10 +00001687 Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS, DS, TemplateParams);
John McCall796c2a52010-07-16 08:13:16 +00001688 DS.complete(TheDecl);
John McCall07e91c02009-08-06 02:15:43 +00001689 return;
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001690 }
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001691
John McCall28a6aea2009-11-04 02:18:39 +00001692 ParsingDeclarator DeclaratorInfo(*this, DS, Declarator::MemberContext);
Nico Weber24b2a822011-01-28 06:07:34 +00001693 VirtSpecifiers VS;
Francois Pichet3abc9b82011-05-11 02:14:46 +00001694 ExprResult Init;
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001695
Argyrios Kyrtzidisf4ebe9e2008-06-28 08:10:48 +00001696 if (Tok.isNot(tok::colon)) {
Chris Lattner17c3b1f2009-12-10 01:59:24 +00001697 // Don't parse FOO:BAR as if it were a typo for FOO::BAR.
1698 ColonProtectionRAIIObject X(*this);
1699
Argyrios Kyrtzidisf4ebe9e2008-06-28 08:10:48 +00001700 // Parse the first declarator.
1701 ParseDeclarator(DeclaratorInfo);
1702 // Error parsing the declarator?
Douglas Gregor92751d42008-11-17 22:58:34 +00001703 if (!DeclaratorInfo.hasName()) {
Argyrios Kyrtzidisf4ebe9e2008-06-28 08:10:48 +00001704 // If so, skip until the semi-colon or a }.
Sebastian Redl83f3b852011-04-24 16:27:48 +00001705 SkipUntil(tok::r_brace, true, true);
Argyrios Kyrtzidisf4ebe9e2008-06-28 08:10:48 +00001706 if (Tok.is(tok::semi))
1707 ConsumeToken();
Chris Lattner5bbb3c82009-03-29 16:50:03 +00001708 return;
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001709 }
1710
Nico Weber24b2a822011-01-28 06:07:34 +00001711 ParseOptionalCXX0XVirtSpecifierSeq(VS);
1712
John Thompson5bc5cbe2009-11-25 22:58:06 +00001713 // If attributes exist after the declarator, but before an '{', parse them.
John McCall53fa7142010-12-24 02:08:15 +00001714 MaybeParseGNUAttributes(DeclaratorInfo);
John Thompson5bc5cbe2009-11-25 22:58:06 +00001715
Francois Pichet3abc9b82011-05-11 02:14:46 +00001716 // MSVC permits pure specifier on inline functions declared at class scope.
1717 // Hence check for =0 before checking for function definition.
1718 if (getLang().Microsoft && Tok.is(tok::equal) &&
1719 DeclaratorInfo.isFunctionDeclarator() &&
1720 NextToken().is(tok::numeric_constant)) {
1721 ConsumeToken();
1722 Init = ParseInitializer();
1723 if (Init.isInvalid())
1724 SkipUntil(tok::comma, true, true);
1725 }
1726
Alexis Hunt5a7fa252011-05-12 06:15:49 +00001727 bool IsDefinition = false;
Argyrios Kyrtzidisf4ebe9e2008-06-28 08:10:48 +00001728 // function-definition:
Richard Smith938f40b2011-06-11 17:19:42 +00001729 //
1730 // In C++11, a non-function declarator followed by an open brace is a
1731 // braced-init-list for an in-class member initialization, not an
1732 // erroneous function definition.
1733 if (Tok.is(tok::l_brace) && !getLang().CPlusPlus0x) {
Alexis Hunt5a7fa252011-05-12 06:15:49 +00001734 IsDefinition = true;
1735 } else if (DeclaratorInfo.isFunctionDeclarator()) {
Richard Smith938f40b2011-06-11 17:19:42 +00001736 if (Tok.is(tok::l_brace) || Tok.is(tok::colon) || Tok.is(tok::kw_try)) {
Alexis Hunt5a7fa252011-05-12 06:15:49 +00001737 IsDefinition = true;
1738 } else if (Tok.is(tok::equal)) {
1739 const Token &KW = NextToken();
1740 if (KW.is(tok::kw_default) || KW.is(tok::kw_delete))
1741 IsDefinition = true;
1742 }
1743 }
1744
1745 if (IsDefinition) {
Argyrios Kyrtzidisf4ebe9e2008-06-28 08:10:48 +00001746 if (!DeclaratorInfo.isFunctionDeclarator()) {
1747 Diag(Tok, diag::err_func_def_no_params);
1748 ConsumeBrace();
1749 SkipUntil(tok::r_brace, true);
Douglas Gregor8a4db832011-01-19 16:41:58 +00001750
1751 // Consume the optional ';'
1752 if (Tok.is(tok::semi))
1753 ConsumeToken();
Chris Lattner5bbb3c82009-03-29 16:50:03 +00001754 return;
Argyrios Kyrtzidisf4ebe9e2008-06-28 08:10:48 +00001755 }
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001756
Argyrios Kyrtzidisf4ebe9e2008-06-28 08:10:48 +00001757 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
1758 Diag(Tok, diag::err_function_declared_typedef);
1759 // This recovery skips the entire function body. It would be nice
1760 // to simply call ParseCXXInlineMethodDef() below, however Sema
1761 // assumes the declarator represents a function, not a typedef.
1762 ConsumeBrace();
1763 SkipUntil(tok::r_brace, true);
Douglas Gregor8a4db832011-01-19 16:41:58 +00001764
1765 // Consume the optional ';'
1766 if (Tok.is(tok::semi))
1767 ConsumeToken();
Chris Lattner5bbb3c82009-03-29 16:50:03 +00001768 return;
Argyrios Kyrtzidisf4ebe9e2008-06-28 08:10:48 +00001769 }
1770
Francois Pichet3abc9b82011-05-11 02:14:46 +00001771 ParseCXXInlineMethodDef(AS, DeclaratorInfo, TemplateInfo, VS, Init);
Alexis Hunt5a7fa252011-05-12 06:15:49 +00001772
1773 // Consume the ';' - it's optional unless we have a delete or default
1774 if (Tok.is(tok::semi)) {
Douglas Gregor8a4db832011-01-19 16:41:58 +00001775 ConsumeToken();
Alexis Hunt5a7fa252011-05-12 06:15:49 +00001776 }
Douglas Gregor8a4db832011-01-19 16:41:58 +00001777
Chris Lattner5bbb3c82009-03-29 16:50:03 +00001778 return;
Argyrios Kyrtzidisf4ebe9e2008-06-28 08:10:48 +00001779 }
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001780 }
1781
1782 // member-declarator-list:
1783 // member-declarator
1784 // member-declarator-list ',' member-declarator
1785
John McCall48871652010-08-21 09:40:31 +00001786 llvm::SmallVector<Decl *, 8> DeclsInGroup;
John McCalldadc5752010-08-24 06:29:42 +00001787 ExprResult BitfieldSize;
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001788
1789 while (1) {
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001790 // member-declarator:
1791 // declarator pure-specifier[opt]
Richard Smith938f40b2011-06-11 17:19:42 +00001792 // declarator brace-or-equal-initializer[opt]
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001793 // identifier[opt] ':' constant-expression
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001794 if (Tok.is(tok::colon)) {
1795 ConsumeToken();
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00001796 BitfieldSize = ParseConstantExpression();
1797 if (BitfieldSize.isInvalid())
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001798 SkipUntil(tok::comma, true, true);
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001799 }
Mike Stump11289f42009-09-09 15:08:12 +00001800
Chris Lattnerf3d3b362010-06-13 05:34:18 +00001801 // If a simple-asm-expr is present, parse it.
1802 if (Tok.is(tok::kw_asm)) {
1803 SourceLocation Loc;
John McCalldadc5752010-08-24 06:29:42 +00001804 ExprResult AsmLabel(ParseSimpleAsm(&Loc));
Chris Lattnerf3d3b362010-06-13 05:34:18 +00001805 if (AsmLabel.isInvalid())
1806 SkipUntil(tok::comma, true, true);
1807
1808 DeclaratorInfo.setAsmLabel(AsmLabel.release());
1809 DeclaratorInfo.SetRangeEnd(Loc);
1810 }
1811
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001812 // If attributes exist after the declarator, parse them.
John McCall53fa7142010-12-24 02:08:15 +00001813 MaybeParseGNUAttributes(DeclaratorInfo);
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001814
Richard Smith938f40b2011-06-11 17:19:42 +00001815 // FIXME: When g++ adds support for this, we'll need to check whether it
1816 // goes before or after the GNU attributes and __asm__.
1817 ParseOptionalCXX0XVirtSpecifierSeq(VS);
1818
1819 bool HasDeferredInitializer = false;
1820 if (Tok.is(tok::equal) || Tok.is(tok::l_brace)) {
1821 if (BitfieldSize.get()) {
1822 Diag(Tok, diag::err_bitfield_member_init);
1823 SkipUntil(tok::comma, true, true);
1824 } else {
Douglas Gregorc15b0cf2011-06-25 00:56:27 +00001825 HasDeferredInitializer = !DeclaratorInfo.isDeclarationOfFunction() &&
Richard Smith938f40b2011-06-11 17:19:42 +00001826 DeclaratorInfo.getDeclSpec().getStorageClassSpec()
Richard Smith4a4beec2011-06-12 11:43:46 +00001827 != DeclSpec::SCS_static &&
1828 DeclaratorInfo.getDeclSpec().getStorageClassSpec()
1829 != DeclSpec::SCS_typedef;
Richard Smith938f40b2011-06-11 17:19:42 +00001830
1831 if (!HasDeferredInitializer) {
1832 SourceLocation EqualLoc;
1833 Init = ParseCXXMemberInitializer(
Douglas Gregorc15b0cf2011-06-25 00:56:27 +00001834 DeclaratorInfo.isDeclarationOfFunction(), EqualLoc);
Richard Smith938f40b2011-06-11 17:19:42 +00001835 if (Init.isInvalid())
1836 SkipUntil(tok::comma, true, true);
1837 }
1838 }
1839 }
1840
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001841 // NOTE: If Sema is the Action module and declarator is an instance field,
Chris Lattner5bbb3c82009-03-29 16:50:03 +00001842 // this call will *not* return the created decl; It will return null.
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001843 // See Sema::ActOnCXXMemberDeclarator for details.
John McCall07e91c02009-08-06 02:15:43 +00001844
John McCall48871652010-08-21 09:40:31 +00001845 Decl *ThisDecl = 0;
John McCall07e91c02009-08-06 02:15:43 +00001846 if (DS.isFriendSpecified()) {
John McCall2f212b32009-09-11 21:02:39 +00001847 // TODO: handle initializers, bitfields, 'delete'
Douglas Gregor0be31a22010-07-02 17:43:08 +00001848 ThisDecl = Actions.ActOnFriendFunctionDecl(getCurScope(), DeclaratorInfo,
John McCall2f212b32009-09-11 21:02:39 +00001849 /*IsDefinition*/ false,
1850 move(TemplateParams));
Douglas Gregor3447e762009-08-20 22:52:58 +00001851 } else {
Douglas Gregor0be31a22010-07-02 17:43:08 +00001852 ThisDecl = Actions.ActOnCXXMemberDeclarator(getCurScope(), AS,
John McCall07e91c02009-08-06 02:15:43 +00001853 DeclaratorInfo,
Douglas Gregor3447e762009-08-20 22:52:58 +00001854 move(TemplateParams),
John McCall07e91c02009-08-06 02:15:43 +00001855 BitfieldSize.release(),
Richard Smith938f40b2011-06-11 17:19:42 +00001856 VS, Init.release(),
1857 HasDeferredInitializer,
1858 /*IsDefinition*/ false);
Douglas Gregor3447e762009-08-20 22:52:58 +00001859 }
Chris Lattner5bbb3c82009-03-29 16:50:03 +00001860 if (ThisDecl)
1861 DeclsInGroup.push_back(ThisDecl);
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001862
Douglas Gregor4d87df52008-12-16 21:30:33 +00001863 if (DeclaratorInfo.isFunctionDeclarator() &&
Mike Stump11289f42009-09-09 15:08:12 +00001864 DeclaratorInfo.getDeclSpec().getStorageClassSpec()
Douglas Gregor4d87df52008-12-16 21:30:33 +00001865 != DeclSpec::SCS_typedef) {
Eli Friedman3af2a772009-07-22 21:45:50 +00001866 HandleMemberFunctionDefaultArgs(DeclaratorInfo, ThisDecl);
Douglas Gregor4d87df52008-12-16 21:30:33 +00001867 }
1868
John McCall28a6aea2009-11-04 02:18:39 +00001869 DeclaratorInfo.complete(ThisDecl);
1870
Richard Smith938f40b2011-06-11 17:19:42 +00001871 if (HasDeferredInitializer) {
1872 if (!getLang().CPlusPlus0x)
1873 Diag(Tok, diag::warn_nonstatic_member_init_accepted_as_extension);
1874
1875 if (DeclaratorInfo.isArrayOfUnknownBound()) {
1876 // C++0x [dcl.array]p3: An array bound may also be omitted when the
1877 // declarator is followed by an initializer.
1878 //
1879 // A brace-or-equal-initializer for a member-declarator is not an
1880 // initializer in the gramamr, so this is ill-formed.
1881 Diag(Tok, diag::err_incomplete_array_member_init);
1882 SkipUntil(tok::comma, true, true);
1883 // Avoid later warnings about a class member of incomplete type.
1884 ThisDecl->setInvalidDecl();
1885 } else
1886 ParseCXXNonStaticMemberInitializer(ThisDecl);
1887 }
1888
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001889 // If we don't have a comma, it is either the end of the list (a ';')
1890 // or an error, bail out.
1891 if (Tok.isNot(tok::comma))
1892 break;
Mike Stump11289f42009-09-09 15:08:12 +00001893
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001894 // Consume the comma.
1895 ConsumeToken();
Mike Stump11289f42009-09-09 15:08:12 +00001896
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001897 // Parse the next declarator.
1898 DeclaratorInfo.clear();
Nico Weber24b2a822011-01-28 06:07:34 +00001899 VS.clear();
Sebastian Redlc13f2682008-12-09 20:22:58 +00001900 BitfieldSize = 0;
1901 Init = 0;
Mike Stump11289f42009-09-09 15:08:12 +00001902
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001903 // Attributes are only allowed on the second declarator.
John McCall53fa7142010-12-24 02:08:15 +00001904 MaybeParseGNUAttributes(DeclaratorInfo);
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001905
Argyrios Kyrtzidisf4ebe9e2008-06-28 08:10:48 +00001906 if (Tok.isNot(tok::colon))
1907 ParseDeclarator(DeclaratorInfo);
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001908 }
1909
Chris Lattner916dbf12010-02-02 00:43:15 +00001910 if (ExpectAndConsume(tok::semi, diag::err_expected_semi_decl_list)) {
1911 // Skip to end of block or statement.
1912 SkipUntil(tok::r_brace, true, true);
1913 // If we stopped at a ';', eat it.
1914 if (Tok.is(tok::semi)) ConsumeToken();
Chris Lattner5bbb3c82009-03-29 16:50:03 +00001915 return;
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001916 }
1917
Douglas Gregor0be31a22010-07-02 17:43:08 +00001918 Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup.data(),
Chris Lattner916dbf12010-02-02 00:43:15 +00001919 DeclsInGroup.size());
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001920}
1921
Richard Smith938f40b2011-06-11 17:19:42 +00001922/// ParseCXXMemberInitializer - Parse the brace-or-equal-initializer or
1923/// pure-specifier. Also detect and reject any attempted defaulted/deleted
1924/// function definition. The location of the '=', if any, will be placed in
1925/// EqualLoc.
1926///
1927/// pure-specifier:
1928/// '= 0'
1929///
1930/// brace-or-equal-initializer:
1931/// '=' initializer-expression
1932/// braced-init-list [TODO]
1933///
1934/// initializer-clause:
1935/// assignment-expression
1936/// braced-init-list [TODO]
1937///
1938/// defaulted/deleted function-definition:
1939/// '=' 'default'
1940/// '=' 'delete'
1941///
1942/// Prior to C++0x, the assignment-expression in an initializer-clause must
1943/// be a constant-expression.
1944ExprResult Parser::ParseCXXMemberInitializer(bool IsFunction,
1945 SourceLocation &EqualLoc) {
1946 assert((Tok.is(tok::equal) || Tok.is(tok::l_brace))
1947 && "Data member initializer not starting with '=' or '{'");
1948
1949 if (Tok.is(tok::equal)) {
1950 EqualLoc = ConsumeToken();
1951 if (Tok.is(tok::kw_delete)) {
1952 // In principle, an initializer of '= delete p;' is legal, but it will
1953 // never type-check. It's better to diagnose it as an ill-formed expression
1954 // than as an ill-formed deleted non-function member.
1955 // An initializer of '= delete p, foo' will never be parsed, because
1956 // a top-level comma always ends the initializer expression.
1957 const Token &Next = NextToken();
1958 if (IsFunction || Next.is(tok::semi) || Next.is(tok::comma) ||
1959 Next.is(tok::eof)) {
1960 if (IsFunction)
1961 Diag(ConsumeToken(), diag::err_default_delete_in_multiple_declaration)
1962 << 1 /* delete */;
1963 else
1964 Diag(ConsumeToken(), diag::err_deleted_non_function);
1965 return ExprResult();
1966 }
1967 } else if (Tok.is(tok::kw_default)) {
1968 Diag(ConsumeToken(), diag::err_default_special_members);
1969 if (IsFunction)
1970 Diag(Tok, diag::err_default_delete_in_multiple_declaration)
1971 << 0 /* default */;
1972 else
1973 Diag(ConsumeToken(), diag::err_default_special_members);
1974 return ExprResult();
1975 }
1976
1977 return ParseInitializer();
1978 } else
1979 return ExprError(Diag(Tok, diag::err_generalized_initializer_lists));
1980}
1981
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001982/// ParseCXXMemberSpecification - Parse the class definition.
1983///
1984/// member-specification:
1985/// member-declaration member-specification[opt]
1986/// access-specifier ':' member-specification[opt]
1987///
1988void Parser::ParseCXXMemberSpecification(SourceLocation RecordLoc,
John McCall48871652010-08-21 09:40:31 +00001989 unsigned TagType, Decl *TagDecl) {
Sanjiv Guptad7959242008-10-31 09:52:39 +00001990 assert((TagType == DeclSpec::TST_struct ||
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001991 TagType == DeclSpec::TST_union ||
Sanjiv Guptad7959242008-10-31 09:52:39 +00001992 TagType == DeclSpec::TST_class) && "Invalid TagType!");
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00001993
John McCallfaf5fb42010-08-26 23:41:50 +00001994 PrettyDeclStackTraceEntry CrashInfo(Actions, TagDecl, RecordLoc,
1995 "parsing struct/union/class body");
Mike Stump11289f42009-09-09 15:08:12 +00001996
Douglas Gregoredf8f392010-01-16 20:52:59 +00001997 // Determine whether this is a non-nested class. Note that local
1998 // classes are *not* considered to be nested classes.
1999 bool NonNestedClass = true;
2000 if (!ClassStack.empty()) {
Douglas Gregor0be31a22010-07-02 17:43:08 +00002001 for (const Scope *S = getCurScope(); S; S = S->getParent()) {
Douglas Gregoredf8f392010-01-16 20:52:59 +00002002 if (S->isClassScope()) {
2003 // We're inside a class scope, so this is a nested class.
2004 NonNestedClass = false;
2005 break;
2006 }
2007
2008 if ((S->getFlags() & Scope::FnScope)) {
2009 // If we're in a function or function template declared in the
2010 // body of a class, then this is a local class rather than a
2011 // nested class.
2012 const Scope *Parent = S->getParent();
2013 if (Parent->isTemplateParamScope())
2014 Parent = Parent->getParent();
2015 if (Parent->isClassScope())
2016 break;
2017 }
2018 }
2019 }
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00002020
2021 // Enter a scope for the class.
Douglas Gregor658b9552009-01-09 22:42:13 +00002022 ParseScope ClassScope(this, Scope::ClassScope|Scope::DeclScope);
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00002023
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002024 // Note that we are parsing a new (potentially-nested) class definition.
Douglas Gregoredf8f392010-01-16 20:52:59 +00002025 ParsingClassDefinition ParsingDef(*this, TagDecl, NonNestedClass);
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002026
Douglas Gregorcd72ba92009-02-06 22:42:48 +00002027 if (TagDecl)
Douglas Gregor0be31a22010-07-02 17:43:08 +00002028 Actions.ActOnTagStartDefinition(getCurScope(), TagDecl);
John McCall2d814c32009-12-19 21:48:58 +00002029
Anders Carlssonf9eb63b2011-03-25 14:46:08 +00002030 SourceLocation FinalLoc;
2031
2032 // Parse the optional 'final' keyword.
2033 if (getLang().CPlusPlus && Tok.is(tok::identifier)) {
2034 IdentifierInfo *II = Tok.getIdentifierInfo();
2035
2036 // Initialize the contextual keywords.
2037 if (!Ident_final) {
2038 Ident_final = &PP.getIdentifierTable().get("final");
2039 Ident_override = &PP.getIdentifierTable().get("override");
2040 }
2041
2042 if (II == Ident_final)
2043 FinalLoc = ConsumeToken();
2044
2045 if (!getLang().CPlusPlus0x)
2046 Diag(FinalLoc, diag::ext_override_control_keyword) << "final";
2047 }
Anders Carlsson4b63d0e2011-01-22 16:56:46 +00002048
John McCall2d814c32009-12-19 21:48:58 +00002049 if (Tok.is(tok::colon)) {
2050 ParseBaseClause(TagDecl);
2051
2052 if (!Tok.is(tok::l_brace)) {
2053 Diag(Tok, diag::err_expected_lbrace_after_base_specifiers);
John McCall2ff380a2010-03-17 00:38:33 +00002054
2055 if (TagDecl)
Douglas Gregor0be31a22010-07-02 17:43:08 +00002056 Actions.ActOnTagDefinitionError(getCurScope(), TagDecl);
John McCall2d814c32009-12-19 21:48:58 +00002057 return;
2058 }
2059 }
2060
2061 assert(Tok.is(tok::l_brace));
2062
2063 SourceLocation LBraceLoc = ConsumeBrace();
2064
John McCall08bede42010-05-28 08:11:17 +00002065 if (TagDecl)
Anders Carlsson30f29442011-03-25 14:31:08 +00002066 Actions.ActOnStartCXXMemberDeclarations(getCurScope(), TagDecl, FinalLoc,
Anders Carlssonfc1eef42011-01-22 17:51:53 +00002067 LBraceLoc);
John McCall1c7e6ec2009-12-20 07:58:13 +00002068
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00002069 // C++ 11p3: Members of a class defined with the keyword class are private
2070 // by default. Members of a class defined with the keywords struct or union
2071 // are public by default.
2072 AccessSpecifier CurAS;
2073 if (TagType == DeclSpec::TST_class)
2074 CurAS = AS_private;
2075 else
2076 CurAS = AS_public;
2077
Douglas Gregor9377c822010-06-21 22:31:09 +00002078 SourceLocation RBraceLoc;
2079 if (TagDecl) {
2080 // While we still have something to read, read the member-declarations.
2081 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
2082 // Each iteration of this loop reads one member-declaration.
Mike Stump11289f42009-09-09 15:08:12 +00002083
Francois Pichet8f981d52011-05-25 10:19:49 +00002084 if (getLang().Microsoft && (Tok.is(tok::kw___if_exists) ||
2085 Tok.is(tok::kw___if_not_exists))) {
2086 ParseMicrosoftIfExistsClassDeclaration((DeclSpec::TST)TagType, CurAS);
2087 continue;
2088 }
2089
Douglas Gregor9377c822010-06-21 22:31:09 +00002090 // Check for extraneous top-level semicolon.
2091 if (Tok.is(tok::semi)) {
2092 Diag(Tok, diag::ext_extra_struct_semi)
2093 << DeclSpec::getSpecifierName((DeclSpec::TST)TagType)
2094 << FixItHint::CreateRemoval(Tok.getLocation());
2095 ConsumeToken();
2096 continue;
2097 }
2098
2099 AccessSpecifier AS = getAccessSpecifierIfPresent();
2100 if (AS != AS_none) {
2101 // Current token is a C++ access specifier.
2102 CurAS = AS;
2103 SourceLocation ASLoc = Tok.getLocation();
2104 ConsumeToken();
2105 if (Tok.is(tok::colon))
2106 Actions.ActOnAccessSpecifier(AS, ASLoc, Tok.getLocation());
2107 else
2108 Diag(Tok, diag::err_expected_colon);
2109 ConsumeToken();
2110 continue;
2111 }
2112
2113 // FIXME: Make sure we don't have a template here.
2114
2115 // Parse all the comma separated declarators.
2116 ParseCXXClassMemberDeclaration(CurAS);
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00002117 }
2118
Douglas Gregor9377c822010-06-21 22:31:09 +00002119 RBraceLoc = MatchRHSPunctuation(tok::r_brace, LBraceLoc);
2120 } else {
2121 SkipUntil(tok::r_brace, false, false);
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00002122 }
Mike Stump11289f42009-09-09 15:08:12 +00002123
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00002124 // If attributes exist after class contents, parse them.
John McCall084e83d2011-03-24 11:26:52 +00002125 ParsedAttributes attrs(AttrFactory);
John McCall53fa7142010-12-24 02:08:15 +00002126 MaybeParseGNUAttributes(attrs);
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00002127
John McCall08bede42010-05-28 08:11:17 +00002128 if (TagDecl)
Douglas Gregor0be31a22010-07-02 17:43:08 +00002129 Actions.ActOnFinishCXXMemberSpecification(getCurScope(), RecordLoc, TagDecl,
John McCall08bede42010-05-28 08:11:17 +00002130 LBraceLoc, RBraceLoc,
John McCall53fa7142010-12-24 02:08:15 +00002131 attrs.getList());
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00002132
Richard Smith938f40b2011-06-11 17:19:42 +00002133 // C++0x [class.mem]p2: Within the class member-specification, the class is
2134 // regarded as complete within function bodies, default arguments, exception-
2135 // specifications, and brace-or-equal-initializers for non-static data
2136 // members (including such things in nested classes).
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00002137 //
Richard Smith938f40b2011-06-11 17:19:42 +00002138 // FIXME: Only function bodies and brace-or-equal-initializers are currently
2139 // handled. Fix the others!
Douglas Gregor9377c822010-06-21 22:31:09 +00002140 if (TagDecl && NonNestedClass) {
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00002141 // We are not inside a nested class. This class and its nested classes
Douglas Gregor4d87df52008-12-16 21:30:33 +00002142 // are complete and we can parse the delayed portions of method
2143 // declarations and the lexed inline method definitions.
Douglas Gregor428119e2010-06-16 23:45:56 +00002144 SourceLocation SavedPrevTokLocation = PrevTokLocation;
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002145 ParseLexedMethodDeclarations(getCurrentClass());
Richard Smith938f40b2011-06-11 17:19:42 +00002146 ParseLexedMemberInitializers(getCurrentClass());
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002147 ParseLexedMethodDefs(getCurrentClass());
Douglas Gregor428119e2010-06-16 23:45:56 +00002148 PrevTokLocation = SavedPrevTokLocation;
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00002149 }
2150
John McCall08bede42010-05-28 08:11:17 +00002151 if (TagDecl)
Douglas Gregor0be31a22010-07-02 17:43:08 +00002152 Actions.ActOnTagFinishDefinition(getCurScope(), TagDecl, RBraceLoc);
John McCall2ff380a2010-03-17 00:38:33 +00002153
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00002154 // Leave the class scope.
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002155 ParsingDef.Pop();
Douglas Gregor7307d6c2008-12-10 06:34:36 +00002156 ClassScope.Exit();
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +00002157}
Douglas Gregore8381c02008-11-05 04:29:56 +00002158
2159/// ParseConstructorInitializer - Parse a C++ constructor initializer,
2160/// which explicitly initializes the members or base classes of a
2161/// class (C++ [class.base.init]). For example, the three initializers
2162/// after the ':' in the Derived constructor below:
2163///
2164/// @code
2165/// class Base { };
2166/// class Derived : Base {
2167/// int x;
2168/// float f;
2169/// public:
2170/// Derived(float f) : Base(), x(17), f(f) { }
2171/// };
2172/// @endcode
2173///
Mike Stump11289f42009-09-09 15:08:12 +00002174/// [C++] ctor-initializer:
2175/// ':' mem-initializer-list
Douglas Gregore8381c02008-11-05 04:29:56 +00002176///
Mike Stump11289f42009-09-09 15:08:12 +00002177/// [C++] mem-initializer-list:
Douglas Gregor44e7df62011-01-04 00:32:56 +00002178/// mem-initializer ...[opt]
2179/// mem-initializer ...[opt] , mem-initializer-list
John McCall48871652010-08-21 09:40:31 +00002180void Parser::ParseConstructorInitializer(Decl *ConstructorDecl) {
Douglas Gregore8381c02008-11-05 04:29:56 +00002181 assert(Tok.is(tok::colon) && "Constructor initializer always starts with ':'");
2182
John Wiegley1c0675e2011-04-28 01:08:34 +00002183 // Poison the SEH identifiers so they are flagged as illegal in constructor initializers
2184 PoisonSEHIdentifiersRAIIObject PoisonSEHIdentifiers(*this, true);
Douglas Gregore8381c02008-11-05 04:29:56 +00002185 SourceLocation ColonLoc = ConsumeToken();
Mike Stump11289f42009-09-09 15:08:12 +00002186
Alexis Hunt1d792652011-01-08 20:30:50 +00002187 llvm::SmallVector<CXXCtorInitializer*, 4> MemInitializers;
Douglas Gregor7ae2d772010-01-31 09:12:51 +00002188 bool AnyErrors = false;
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00002189
Douglas Gregore8381c02008-11-05 04:29:56 +00002190 do {
Douglas Gregoreaeeca92010-08-28 00:00:50 +00002191 if (Tok.is(tok::code_completion)) {
2192 Actions.CodeCompleteConstructorInitializer(ConstructorDecl,
2193 MemInitializers.data(),
2194 MemInitializers.size());
2195 ConsumeCodeCompletionToken();
2196 } else {
2197 MemInitResult MemInit = ParseMemInitializer(ConstructorDecl);
2198 if (!MemInit.isInvalid())
2199 MemInitializers.push_back(MemInit.get());
2200 else
2201 AnyErrors = true;
2202 }
2203
Douglas Gregore8381c02008-11-05 04:29:56 +00002204 if (Tok.is(tok::comma))
2205 ConsumeToken();
2206 else if (Tok.is(tok::l_brace))
2207 break;
Douglas Gregor3465e262010-09-07 14:35:10 +00002208 // If the next token looks like a base or member initializer, assume that
2209 // we're just missing a comma.
Douglas Gregorce66d022010-09-07 14:51:08 +00002210 else if (Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) {
2211 SourceLocation Loc = PP.getLocForEndOfToken(PrevTokLocation);
2212 Diag(Loc, diag::err_ctor_init_missing_comma)
2213 << FixItHint::CreateInsertion(Loc, ", ");
2214 } else {
Douglas Gregore8381c02008-11-05 04:29:56 +00002215 // Skip over garbage, until we get to '{'. Don't eat the '{'.
Sebastian Redla7b98a72009-04-26 20:35:05 +00002216 Diag(Tok.getLocation(), diag::err_expected_lbrace_or_comma);
Douglas Gregore8381c02008-11-05 04:29:56 +00002217 SkipUntil(tok::l_brace, true, true);
2218 break;
2219 }
2220 } while (true);
2221
Mike Stump11289f42009-09-09 15:08:12 +00002222 Actions.ActOnMemInitializers(ConstructorDecl, ColonLoc,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00002223 MemInitializers.data(), MemInitializers.size(),
2224 AnyErrors);
Douglas Gregore8381c02008-11-05 04:29:56 +00002225}
2226
2227/// ParseMemInitializer - Parse a C++ member initializer, which is
2228/// part of a constructor initializer that explicitly initializes one
2229/// member or base class (C++ [class.base.init]). See
2230/// ParseConstructorInitializer for an example.
2231///
2232/// [C++] mem-initializer:
2233/// mem-initializer-id '(' expression-list[opt] ')'
Sebastian Redl3da34892011-06-05 12:23:16 +00002234/// [C++0x] mem-initializer-id braced-init-list
Mike Stump11289f42009-09-09 15:08:12 +00002235///
Douglas Gregore8381c02008-11-05 04:29:56 +00002236/// [C++] mem-initializer-id:
2237/// '::'[opt] nested-name-specifier[opt] class-name
2238/// identifier
John McCall48871652010-08-21 09:40:31 +00002239Parser::MemInitResult Parser::ParseMemInitializer(Decl *ConstructorDecl) {
Fariborz Jahanian302bb662009-06-30 23:26:25 +00002240 // parse '::'[opt] nested-name-specifier[opt]
2241 CXXScopeSpec SS;
John McCallba7bf592010-08-24 05:47:05 +00002242 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
2243 ParsedType TemplateTypeTy;
Fariborz Jahanianc1fc3ec2009-07-01 19:21:19 +00002244 if (Tok.is(tok::annot_template_id)) {
Argyrios Kyrtzidisc0c5dd22011-06-22 06:09:49 +00002245 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregor46c59612010-01-12 17:52:59 +00002246 if (TemplateId->Kind == TNK_Type_template ||
2247 TemplateId->Kind == TNK_Dependent_template_name) {
Douglas Gregore7c20652011-03-02 00:47:37 +00002248 AnnotateTemplateIdTokenAsType();
Fariborz Jahanianc1fc3ec2009-07-01 19:21:19 +00002249 assert(Tok.is(tok::annot_typename) && "template-id -> type failed");
John McCallba7bf592010-08-24 05:47:05 +00002250 TemplateTypeTy = getTypeAnnotation(Tok);
Fariborz Jahanianc1fc3ec2009-07-01 19:21:19 +00002251 }
Fariborz Jahanianc1fc3ec2009-07-01 19:21:19 +00002252 }
2253 if (!TemplateTypeTy && Tok.isNot(tok::identifier)) {
Chris Lattner6d29c102008-11-18 07:48:38 +00002254 Diag(Tok, diag::err_expected_member_or_base_name);
Douglas Gregore8381c02008-11-05 04:29:56 +00002255 return true;
2256 }
Mike Stump11289f42009-09-09 15:08:12 +00002257
Douglas Gregore8381c02008-11-05 04:29:56 +00002258 // Get the identifier. This may be a member name or a class name,
2259 // but we'll let the semantic analysis determine which it is.
Fariborz Jahanianc1fc3ec2009-07-01 19:21:19 +00002260 IdentifierInfo *II = Tok.is(tok::identifier) ? Tok.getIdentifierInfo() : 0;
Douglas Gregore8381c02008-11-05 04:29:56 +00002261 SourceLocation IdLoc = ConsumeToken();
2262
2263 // Parse the '('.
Sebastian Redl3da34892011-06-05 12:23:16 +00002264 if (getLang().CPlusPlus0x && Tok.is(tok::l_brace)) {
2265 // FIXME: Do something with the braced-init-list.
2266 ParseBraceInitializer();
Douglas Gregore8381c02008-11-05 04:29:56 +00002267 return true;
Sebastian Redl3da34892011-06-05 12:23:16 +00002268 } else if(Tok.is(tok::l_paren)) {
2269 SourceLocation LParenLoc = ConsumeParen();
Douglas Gregore8381c02008-11-05 04:29:56 +00002270
Sebastian Redl3da34892011-06-05 12:23:16 +00002271 // Parse the optional expression-list.
2272 ExprVector ArgExprs(Actions);
2273 CommaLocsTy CommaLocs;
2274 if (Tok.isNot(tok::r_paren) && ParseExpressionList(ArgExprs, CommaLocs)) {
2275 SkipUntil(tok::r_paren);
2276 return true;
2277 }
2278
2279 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
2280
2281 SourceLocation EllipsisLoc;
2282 if (Tok.is(tok::ellipsis))
2283 EllipsisLoc = ConsumeToken();
2284
2285 return Actions.ActOnMemInitializer(ConstructorDecl, getCurScope(), SS, II,
2286 TemplateTypeTy, IdLoc,
2287 LParenLoc, ArgExprs.take(),
2288 ArgExprs.size(), RParenLoc,
2289 EllipsisLoc);
Douglas Gregore8381c02008-11-05 04:29:56 +00002290 }
2291
Sebastian Redl3da34892011-06-05 12:23:16 +00002292 Diag(Tok, getLang().CPlusPlus0x ? diag::err_expected_lparen_or_lbrace
2293 : diag::err_expected_lparen);
2294 return true;
Douglas Gregore8381c02008-11-05 04:29:56 +00002295}
Douglas Gregor2afd0be2008-11-25 03:22:00 +00002296
Sebastian Redl965b0e32011-03-05 14:45:16 +00002297/// \brief Parse a C++ exception-specification if present (C++0x [except.spec]).
Douglas Gregor2afd0be2008-11-25 03:22:00 +00002298///
Douglas Gregor356513d2008-12-01 18:00:20 +00002299/// exception-specification:
Sebastian Redl965b0e32011-03-05 14:45:16 +00002300/// dynamic-exception-specification
2301/// noexcept-specification
2302///
2303/// noexcept-specification:
2304/// 'noexcept'
2305/// 'noexcept' '(' constant-expression ')'
2306ExceptionSpecificationType
2307Parser::MaybeParseExceptionSpecification(SourceRange &SpecificationRange,
2308 llvm::SmallVectorImpl<ParsedType> &DynamicExceptions,
2309 llvm::SmallVectorImpl<SourceRange> &DynamicExceptionRanges,
2310 ExprResult &NoexceptExpr) {
2311 ExceptionSpecificationType Result = EST_None;
2312
2313 // See if there's a dynamic specification.
2314 if (Tok.is(tok::kw_throw)) {
2315 Result = ParseDynamicExceptionSpecification(SpecificationRange,
2316 DynamicExceptions,
2317 DynamicExceptionRanges);
2318 assert(DynamicExceptions.size() == DynamicExceptionRanges.size() &&
2319 "Produced different number of exception types and ranges.");
2320 }
2321
2322 // If there's no noexcept specification, we're done.
2323 if (Tok.isNot(tok::kw_noexcept))
2324 return Result;
2325
2326 // If we already had a dynamic specification, parse the noexcept for,
2327 // recovery, but emit a diagnostic and don't store the results.
2328 SourceRange NoexceptRange;
2329 ExceptionSpecificationType NoexceptType = EST_None;
2330
2331 SourceLocation KeywordLoc = ConsumeToken();
2332 if (Tok.is(tok::l_paren)) {
2333 // There is an argument.
2334 SourceLocation LParenLoc = ConsumeParen();
2335 NoexceptType = EST_ComputedNoexcept;
2336 NoexceptExpr = ParseConstantExpression();
Sebastian Redlfa453cf2011-03-12 11:50:43 +00002337 // The argument must be contextually convertible to bool. We use
2338 // ActOnBooleanCondition for this purpose.
2339 if (!NoexceptExpr.isInvalid())
2340 NoexceptExpr = Actions.ActOnBooleanCondition(getCurScope(), KeywordLoc,
2341 NoexceptExpr.get());
Sebastian Redl965b0e32011-03-05 14:45:16 +00002342 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
2343 NoexceptRange = SourceRange(KeywordLoc, RParenLoc);
2344 } else {
2345 // There is no argument.
2346 NoexceptType = EST_BasicNoexcept;
2347 NoexceptRange = SourceRange(KeywordLoc, KeywordLoc);
2348 }
2349
2350 if (Result == EST_None) {
2351 SpecificationRange = NoexceptRange;
2352 Result = NoexceptType;
2353
2354 // If there's a dynamic specification after a noexcept specification,
2355 // parse that and ignore the results.
2356 if (Tok.is(tok::kw_throw)) {
2357 Diag(Tok.getLocation(), diag::err_dynamic_and_noexcept_specification);
2358 ParseDynamicExceptionSpecification(NoexceptRange, DynamicExceptions,
2359 DynamicExceptionRanges);
2360 }
2361 } else {
2362 Diag(Tok.getLocation(), diag::err_dynamic_and_noexcept_specification);
2363 }
2364
2365 return Result;
2366}
2367
2368/// ParseDynamicExceptionSpecification - Parse a C++
2369/// dynamic-exception-specification (C++ [except.spec]).
2370///
2371/// dynamic-exception-specification:
Douglas Gregor356513d2008-12-01 18:00:20 +00002372/// 'throw' '(' type-id-list [opt] ')'
2373/// [MS] 'throw' '(' '...' ')'
Mike Stump11289f42009-09-09 15:08:12 +00002374///
Douglas Gregor356513d2008-12-01 18:00:20 +00002375/// type-id-list:
Douglas Gregor830837d2010-12-20 23:57:46 +00002376/// type-id ... [opt]
2377/// type-id-list ',' type-id ... [opt]
Douglas Gregor2afd0be2008-11-25 03:22:00 +00002378///
Sebastian Redl965b0e32011-03-05 14:45:16 +00002379ExceptionSpecificationType Parser::ParseDynamicExceptionSpecification(
2380 SourceRange &SpecificationRange,
2381 llvm::SmallVectorImpl<ParsedType> &Exceptions,
2382 llvm::SmallVectorImpl<SourceRange> &Ranges) {
Douglas Gregor2afd0be2008-11-25 03:22:00 +00002383 assert(Tok.is(tok::kw_throw) && "expected throw");
Mike Stump11289f42009-09-09 15:08:12 +00002384
Sebastian Redl965b0e32011-03-05 14:45:16 +00002385 SpecificationRange.setBegin(ConsumeToken());
Mike Stump11289f42009-09-09 15:08:12 +00002386
Douglas Gregor2afd0be2008-11-25 03:22:00 +00002387 if (!Tok.is(tok::l_paren)) {
Sebastian Redl965b0e32011-03-05 14:45:16 +00002388 Diag(Tok, diag::err_expected_lparen_after) << "throw";
2389 SpecificationRange.setEnd(SpecificationRange.getBegin());
Sebastian Redlfa453cf2011-03-12 11:50:43 +00002390 return EST_DynamicNone;
Douglas Gregor2afd0be2008-11-25 03:22:00 +00002391 }
2392 SourceLocation LParenLoc = ConsumeParen();
2393
Douglas Gregor356513d2008-12-01 18:00:20 +00002394 // Parse throw(...), a Microsoft extension that means "this function
2395 // can throw anything".
2396 if (Tok.is(tok::ellipsis)) {
2397 SourceLocation EllipsisLoc = ConsumeToken();
2398 if (!getLang().Microsoft)
2399 Diag(EllipsisLoc, diag::ext_ellipsis_exception_spec);
Sebastian Redl965b0e32011-03-05 14:45:16 +00002400 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
2401 SpecificationRange.setEnd(RParenLoc);
Sebastian Redlfa453cf2011-03-12 11:50:43 +00002402 return EST_MSAny;
Douglas Gregor356513d2008-12-01 18:00:20 +00002403 }
2404
Douglas Gregor2afd0be2008-11-25 03:22:00 +00002405 // Parse the sequence of type-ids.
Sebastian Redld6434562009-05-29 18:02:33 +00002406 SourceRange Range;
Douglas Gregor2afd0be2008-11-25 03:22:00 +00002407 while (Tok.isNot(tok::r_paren)) {
Sebastian Redld6434562009-05-29 18:02:33 +00002408 TypeResult Res(ParseTypeName(&Range));
Sebastian Redl965b0e32011-03-05 14:45:16 +00002409
Douglas Gregor830837d2010-12-20 23:57:46 +00002410 if (Tok.is(tok::ellipsis)) {
2411 // C++0x [temp.variadic]p5:
2412 // - In a dynamic-exception-specification (15.4); the pattern is a
2413 // type-id.
2414 SourceLocation Ellipsis = ConsumeToken();
Sebastian Redl965b0e32011-03-05 14:45:16 +00002415 Range.setEnd(Ellipsis);
Douglas Gregor830837d2010-12-20 23:57:46 +00002416 if (!Res.isInvalid())
2417 Res = Actions.ActOnPackExpansion(Res.get(), Ellipsis);
2418 }
Sebastian Redl965b0e32011-03-05 14:45:16 +00002419
Sebastian Redld6434562009-05-29 18:02:33 +00002420 if (!Res.isInvalid()) {
Sebastian Redl2b9cacb2009-04-29 17:30:04 +00002421 Exceptions.push_back(Res.get());
Sebastian Redld6434562009-05-29 18:02:33 +00002422 Ranges.push_back(Range);
2423 }
Douglas Gregor830837d2010-12-20 23:57:46 +00002424
Douglas Gregor2afd0be2008-11-25 03:22:00 +00002425 if (Tok.is(tok::comma))
2426 ConsumeToken();
Sebastian Redl2b9cacb2009-04-29 17:30:04 +00002427 else
Douglas Gregor2afd0be2008-11-25 03:22:00 +00002428 break;
2429 }
2430
Sebastian Redl965b0e32011-03-05 14:45:16 +00002431 SpecificationRange.setEnd(MatchRHSPunctuation(tok::r_paren, LParenLoc));
Sebastian Redlfa453cf2011-03-12 11:50:43 +00002432 return Exceptions.empty() ? EST_DynamicNone : EST_Dynamic;
Douglas Gregor2afd0be2008-11-25 03:22:00 +00002433}
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002434
Douglas Gregor7fb25412010-10-01 18:44:50 +00002435/// ParseTrailingReturnType - Parse a trailing return type on a new-style
2436/// function declaration.
2437TypeResult Parser::ParseTrailingReturnType() {
2438 assert(Tok.is(tok::arrow) && "expected arrow");
2439
2440 ConsumeToken();
2441
2442 // FIXME: Need to suppress declarations when parsing this typename.
2443 // Otherwise in this function definition:
2444 //
2445 // auto f() -> struct X {}
2446 //
2447 // struct X is parsed as class definition because of the trailing
2448 // brace.
2449
2450 SourceRange Range;
2451 return ParseTypeName(&Range);
2452}
2453
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002454/// \brief We have just started parsing the definition of a new class,
2455/// so push that class onto our stack of classes that is currently
2456/// being parsed.
John McCallc1465822011-02-14 07:13:47 +00002457Sema::ParsingClassState
2458Parser::PushParsingClass(Decl *ClassDecl, bool NonNestedClass) {
Douglas Gregoredf8f392010-01-16 20:52:59 +00002459 assert((NonNestedClass || !ClassStack.empty()) &&
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002460 "Nested class without outer class");
Douglas Gregoredf8f392010-01-16 20:52:59 +00002461 ClassStack.push(new ParsingClass(ClassDecl, NonNestedClass));
John McCallc1465822011-02-14 07:13:47 +00002462 return Actions.PushParsingClass();
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002463}
2464
2465/// \brief Deallocate the given parsed class and all of its nested
2466/// classes.
2467void Parser::DeallocateParsedClasses(Parser::ParsingClass *Class) {
Douglas Gregorefc46952010-10-12 16:25:54 +00002468 for (unsigned I = 0, N = Class->LateParsedDeclarations.size(); I != N; ++I)
2469 delete Class->LateParsedDeclarations[I];
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002470 delete Class;
2471}
2472
2473/// \brief Pop the top class of the stack of classes that are
2474/// currently being parsed.
2475///
2476/// This routine should be called when we have finished parsing the
2477/// definition of a class, but have not yet popped the Scope
2478/// associated with the class's definition.
2479///
2480/// \returns true if the class we've popped is a top-level class,
2481/// false otherwise.
John McCallc1465822011-02-14 07:13:47 +00002482void Parser::PopParsingClass(Sema::ParsingClassState state) {
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002483 assert(!ClassStack.empty() && "Mismatched push/pop for class parsing");
Mike Stump11289f42009-09-09 15:08:12 +00002484
John McCallc1465822011-02-14 07:13:47 +00002485 Actions.PopParsingClass(state);
2486
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002487 ParsingClass *Victim = ClassStack.top();
2488 ClassStack.pop();
2489 if (Victim->TopLevelClass) {
2490 // Deallocate all of the nested classes of this class,
2491 // recursively: we don't need to keep any of this information.
2492 DeallocateParsedClasses(Victim);
2493 return;
Mike Stump11289f42009-09-09 15:08:12 +00002494 }
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002495 assert(!ClassStack.empty() && "Missing top-level class?");
2496
Douglas Gregorefc46952010-10-12 16:25:54 +00002497 if (Victim->LateParsedDeclarations.empty()) {
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002498 // The victim is a nested class, but we will not need to perform
2499 // any processing after the definition of this class since it has
2500 // no members whose handling was delayed. Therefore, we can just
2501 // remove this nested class.
Douglas Gregorefc46952010-10-12 16:25:54 +00002502 DeallocateParsedClasses(Victim);
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002503 return;
2504 }
2505
2506 // This nested class has some members that will need to be processed
2507 // after the top-level class is completely defined. Therefore, add
2508 // it to the list of nested classes within its parent.
Douglas Gregor0be31a22010-07-02 17:43:08 +00002509 assert(getCurScope()->isClassScope() && "Nested class outside of class scope?");
Douglas Gregorefc46952010-10-12 16:25:54 +00002510 ClassStack.top()->LateParsedDeclarations.push_back(new LateParsedClass(this, Victim));
Douglas Gregor0be31a22010-07-02 17:43:08 +00002511 Victim->TemplateScope = getCurScope()->getParent()->isTemplateParamScope();
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002512}
Alexis Hunt96d5c762009-11-21 08:43:09 +00002513
2514/// ParseCXX0XAttributes - Parse a C++0x attribute-specifier. Currently only
2515/// parses standard attributes.
2516///
2517/// [C++0x] attribute-specifier:
2518/// '[' '[' attribute-list ']' ']'
2519///
2520/// [C++0x] attribute-list:
2521/// attribute[opt]
2522/// attribute-list ',' attribute[opt]
2523///
2524/// [C++0x] attribute:
2525/// attribute-token attribute-argument-clause[opt]
2526///
2527/// [C++0x] attribute-token:
2528/// identifier
2529/// attribute-scoped-token
2530///
2531/// [C++0x] attribute-scoped-token:
2532/// attribute-namespace '::' identifier
2533///
2534/// [C++0x] attribute-namespace:
2535/// identifier
2536///
2537/// [C++0x] attribute-argument-clause:
2538/// '(' balanced-token-seq ')'
2539///
2540/// [C++0x] balanced-token-seq:
2541/// balanced-token
2542/// balanced-token-seq balanced-token
2543///
2544/// [C++0x] balanced-token:
2545/// '(' balanced-token-seq ')'
2546/// '[' balanced-token-seq ']'
2547/// '{' balanced-token-seq '}'
2548/// any token but '(', ')', '[', ']', '{', or '}'
John McCall53fa7142010-12-24 02:08:15 +00002549void Parser::ParseCXX0XAttributes(ParsedAttributesWithRange &attrs,
2550 SourceLocation *endLoc) {
Alexis Hunt96d5c762009-11-21 08:43:09 +00002551 assert(Tok.is(tok::l_square) && NextToken().is(tok::l_square)
2552 && "Not a C++0x attribute list");
2553
2554 SourceLocation StartLoc = Tok.getLocation(), Loc;
Alexis Hunt96d5c762009-11-21 08:43:09 +00002555
2556 ConsumeBracket();
2557 ConsumeBracket();
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00002558
Alexis Hunt96d5c762009-11-21 08:43:09 +00002559 if (Tok.is(tok::comma)) {
2560 Diag(Tok.getLocation(), diag::err_expected_ident);
2561 ConsumeToken();
2562 }
2563
2564 while (Tok.is(tok::identifier) || Tok.is(tok::comma)) {
2565 // attribute not present
2566 if (Tok.is(tok::comma)) {
2567 ConsumeToken();
2568 continue;
2569 }
2570
2571 IdentifierInfo *ScopeName = 0, *AttrName = Tok.getIdentifierInfo();
2572 SourceLocation ScopeLoc, AttrLoc = ConsumeToken();
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00002573
Alexis Hunt96d5c762009-11-21 08:43:09 +00002574 // scoped attribute
2575 if (Tok.is(tok::coloncolon)) {
2576 ConsumeToken();
2577
2578 if (!Tok.is(tok::identifier)) {
2579 Diag(Tok.getLocation(), diag::err_expected_ident);
2580 SkipUntil(tok::r_square, tok::comma, true, true);
2581 continue;
2582 }
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00002583
Alexis Hunt96d5c762009-11-21 08:43:09 +00002584 ScopeName = AttrName;
2585 ScopeLoc = AttrLoc;
2586
2587 AttrName = Tok.getIdentifierInfo();
2588 AttrLoc = ConsumeToken();
2589 }
2590
2591 bool AttrParsed = false;
2592 // No scoped names are supported; ideally we could put all non-standard
2593 // attributes into namespaces.
2594 if (!ScopeName) {
2595 switch(AttributeList::getKind(AttrName))
2596 {
2597 // No arguments
Alexis Hunt54a02542009-11-25 04:20:27 +00002598 case AttributeList::AT_carries_dependency:
Anders Carlssone30621b2011-01-23 21:33:18 +00002599 case AttributeList::AT_noreturn: {
Alexis Hunt96d5c762009-11-21 08:43:09 +00002600 if (Tok.is(tok::l_paren)) {
2601 Diag(Tok.getLocation(), diag::err_cxx0x_attribute_forbids_arguments)
2602 << AttrName->getName();
2603 break;
2604 }
2605
John McCall084e83d2011-03-24 11:26:52 +00002606 attrs.addNew(AttrName, AttrLoc, 0, AttrLoc, 0,
2607 SourceLocation(), 0, 0, false, true);
Alexis Hunt96d5c762009-11-21 08:43:09 +00002608 AttrParsed = true;
2609 break;
2610 }
2611
2612 // One argument; must be a type-id or assignment-expression
2613 case AttributeList::AT_aligned: {
2614 if (Tok.isNot(tok::l_paren)) {
2615 Diag(Tok.getLocation(), diag::err_cxx0x_attribute_requires_arguments)
2616 << AttrName->getName();
2617 break;
2618 }
2619 SourceLocation ParamLoc = ConsumeParen();
2620
John McCalldadc5752010-08-24 06:29:42 +00002621 ExprResult ArgExpr = ParseCXX0XAlignArgument(ParamLoc);
Alexis Hunt96d5c762009-11-21 08:43:09 +00002622
2623 MatchRHSPunctuation(tok::r_paren, ParamLoc);
2624
2625 ExprVector ArgExprs(Actions);
2626 ArgExprs.push_back(ArgExpr.release());
John McCall084e83d2011-03-24 11:26:52 +00002627 attrs.addNew(AttrName, AttrLoc, 0, AttrLoc,
2628 0, ParamLoc, ArgExprs.take(), 1,
2629 false, true);
Alexis Hunt96d5c762009-11-21 08:43:09 +00002630
2631 AttrParsed = true;
2632 break;
2633 }
2634
2635 // Silence warnings
2636 default: break;
2637 }
2638 }
2639
2640 // Skip the entire parameter clause, if any
2641 if (!AttrParsed && Tok.is(tok::l_paren)) {
2642 ConsumeParen();
2643 // SkipUntil maintains the balancedness of tokens.
2644 SkipUntil(tok::r_paren, false);
2645 }
2646 }
2647
2648 if (ExpectAndConsume(tok::r_square, diag::err_expected_rsquare))
2649 SkipUntil(tok::r_square, false);
2650 Loc = Tok.getLocation();
2651 if (ExpectAndConsume(tok::r_square, diag::err_expected_rsquare))
2652 SkipUntil(tok::r_square, false);
2653
John McCall53fa7142010-12-24 02:08:15 +00002654 attrs.Range = SourceRange(StartLoc, Loc);
Alexis Hunt96d5c762009-11-21 08:43:09 +00002655}
2656
2657/// ParseCXX0XAlignArgument - Parse the argument to C++0x's [[align]]
2658/// attribute.
2659///
2660/// FIXME: Simply returns an alignof() expression if the argument is a
2661/// type. Ideally, the type should be propagated directly into Sema.
2662///
2663/// [C++0x] 'align' '(' type-id ')'
2664/// [C++0x] 'align' '(' assignment-expression ')'
John McCalldadc5752010-08-24 06:29:42 +00002665ExprResult Parser::ParseCXX0XAlignArgument(SourceLocation Start) {
Alexis Hunt96d5c762009-11-21 08:43:09 +00002666 if (isTypeIdInParens()) {
John McCallfaf5fb42010-08-26 23:41:50 +00002667 EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated);
Alexis Hunt96d5c762009-11-21 08:43:09 +00002668 SourceLocation TypeLoc = Tok.getLocation();
John McCallba7bf592010-08-24 05:47:05 +00002669 ParsedType Ty = ParseTypeName().get();
Alexis Hunt96d5c762009-11-21 08:43:09 +00002670 SourceRange TypeRange(Start, Tok.getLocation());
Peter Collingbournee190dee2011-03-11 19:24:49 +00002671 return Actions.ActOnUnaryExprOrTypeTraitExpr(TypeLoc, UETT_AlignOf, true,
2672 Ty.getAsOpaquePtr(), TypeRange);
Alexis Hunt96d5c762009-11-21 08:43:09 +00002673 } else
2674 return ParseConstantExpression();
2675}
Francois Pichetc2bc5ac2010-10-11 12:59:39 +00002676
2677/// ParseMicrosoftAttributes - Parse a Microsoft attribute [Attr]
2678///
2679/// [MS] ms-attribute:
2680/// '[' token-seq ']'
2681///
2682/// [MS] ms-attribute-seq:
2683/// ms-attribute[opt]
2684/// ms-attribute ms-attribute-seq
John McCall53fa7142010-12-24 02:08:15 +00002685void Parser::ParseMicrosoftAttributes(ParsedAttributes &attrs,
2686 SourceLocation *endLoc) {
Francois Pichetc2bc5ac2010-10-11 12:59:39 +00002687 assert(Tok.is(tok::l_square) && "Not a Microsoft attribute list");
2688
2689 while (Tok.is(tok::l_square)) {
2690 ConsumeBracket();
2691 SkipUntil(tok::r_square, true, true);
John McCall53fa7142010-12-24 02:08:15 +00002692 if (endLoc) *endLoc = Tok.getLocation();
Francois Pichetc2bc5ac2010-10-11 12:59:39 +00002693 ExpectAndConsume(tok::r_square, diag::err_expected_rsquare);
2694 }
2695}
Francois Pichet8f981d52011-05-25 10:19:49 +00002696
2697void Parser::ParseMicrosoftIfExistsClassDeclaration(DeclSpec::TST TagType,
2698 AccessSpecifier& CurAS) {
2699 bool Result;
2700 if (ParseMicrosoftIfExistsCondition(Result))
2701 return;
2702
2703 if (Tok.isNot(tok::l_brace)) {
2704 Diag(Tok, diag::err_expected_lbrace);
2705 return;
2706 }
2707 ConsumeBrace();
2708
2709 // Condition is false skip all inside the {}.
2710 if (!Result) {
2711 SkipUntil(tok::r_brace, false);
2712 return;
2713 }
2714
2715 // Condition is true, parse the declaration.
2716 while (Tok.isNot(tok::r_brace)) {
2717
2718 // __if_exists, __if_not_exists can nest.
2719 if ((Tok.is(tok::kw___if_exists) || Tok.is(tok::kw___if_not_exists))) {
2720 ParseMicrosoftIfExistsClassDeclaration((DeclSpec::TST)TagType, CurAS);
2721 continue;
2722 }
2723
2724 // Check for extraneous top-level semicolon.
2725 if (Tok.is(tok::semi)) {
2726 Diag(Tok, diag::ext_extra_struct_semi)
2727 << DeclSpec::getSpecifierName((DeclSpec::TST)TagType)
2728 << FixItHint::CreateRemoval(Tok.getLocation());
2729 ConsumeToken();
2730 continue;
2731 }
2732
2733 AccessSpecifier AS = getAccessSpecifierIfPresent();
2734 if (AS != AS_none) {
2735 // Current token is a C++ access specifier.
2736 CurAS = AS;
2737 SourceLocation ASLoc = Tok.getLocation();
2738 ConsumeToken();
2739 if (Tok.is(tok::colon))
2740 Actions.ActOnAccessSpecifier(AS, ASLoc, Tok.getLocation());
2741 else
2742 Diag(Tok, diag::err_expected_colon);
2743 ConsumeToken();
2744 continue;
2745 }
2746
2747 // Parse all the comma separated declarators.
2748 ParseCXXClassMemberDeclaration(CurAS);
2749 }
2750
2751 if (Tok.isNot(tok::r_brace)) {
2752 Diag(Tok, diag::err_expected_rbrace);
2753 return;
2754 }
2755 ConsumeBrace();
2756}