blob: 640e50176bc3c3c471fbcbf067d220c443ad62d1 [file] [log] [blame]
Chris Lattner8f08cb72007-08-25 06:57:03 +00001//===--- ParseDeclCXX.cpp - C++ Declaration Parsing -----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner8f08cb72007-08-25 06:57:03 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the C++ Declaration portions of the Parser interfaces.
11//
12//===----------------------------------------------------------------------===//
13
Anders Carlsson0c6139d2009-06-27 00:27:47 +000014#include "clang/Basic/OperatorKinds.h"
Douglas Gregor1b7f8982008-04-14 00:13:42 +000015#include "clang/Parse/Parser.h"
Chris Lattner500d3292009-01-29 05:15:15 +000016#include "clang/Parse/ParseDiagnostic.h"
John McCall19510852010-08-20 18:27:03 +000017#include "clang/Sema/DeclSpec.h"
18#include "clang/Sema/Scope.h"
19#include "clang/Sema/ParsedTemplate.h"
John McCallf312b1e2010-08-26 23:41:50 +000020#include "clang/Sema/PrettyDeclStackTrace.h"
Chris Lattnerd167ca02009-12-10 00:21:05 +000021#include "RAIIObjectsForParser.h"
Chris Lattner8f08cb72007-08-25 06:57:03 +000022using namespace clang;
23
24/// ParseNamespace - We know that the current token is a namespace keyword. This
Sebastian Redld078e642010-08-27 23:12:46 +000025/// may either be a top level namespace or a block-level namespace alias. If
26/// there was an inline keyword, it has already been parsed.
Chris Lattner8f08cb72007-08-25 06:57:03 +000027///
28/// namespace-definition: [C++ 7.3: basic.namespace]
29/// named-namespace-definition
30/// unnamed-namespace-definition
31///
32/// unnamed-namespace-definition:
Sebastian Redld078e642010-08-27 23:12:46 +000033/// 'inline'[opt] 'namespace' attributes[opt] '{' namespace-body '}'
Chris Lattner8f08cb72007-08-25 06:57:03 +000034///
35/// named-namespace-definition:
36/// original-namespace-definition
37/// extension-namespace-definition
38///
39/// original-namespace-definition:
Sebastian Redld078e642010-08-27 23:12:46 +000040/// 'inline'[opt] 'namespace' identifier attributes[opt]
41/// '{' namespace-body '}'
Chris Lattner8f08cb72007-08-25 06:57:03 +000042///
43/// extension-namespace-definition:
Sebastian Redld078e642010-08-27 23:12:46 +000044/// 'inline'[opt] 'namespace' original-namespace-name
45/// '{' namespace-body '}'
Mike Stump1eb44332009-09-09 15:08:12 +000046///
Chris Lattner8f08cb72007-08-25 06:57:03 +000047/// namespace-alias-definition: [C++ 7.3.2: namespace.alias]
48/// 'namespace' identifier '=' qualified-namespace-specifier ';'
49///
John McCalld226f652010-08-21 09:40:31 +000050Decl *Parser::ParseNamespace(unsigned Context,
Sebastian Redld078e642010-08-27 23:12:46 +000051 SourceLocation &DeclEnd,
52 SourceLocation InlineLoc) {
Chris Lattner04d66662007-10-09 17:33:22 +000053 assert(Tok.is(tok::kw_namespace) && "Not a namespace!");
Chris Lattner8f08cb72007-08-25 06:57:03 +000054 SourceLocation NamespaceLoc = ConsumeToken(); // eat the 'namespace'.
Mike Stump1eb44332009-09-09 15:08:12 +000055
Douglas Gregor49f40bd2009-09-18 19:03:04 +000056 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +000057 Actions.CodeCompleteNamespaceDecl(getCurScope());
Douglas Gregordc845342010-05-25 05:58:43 +000058 ConsumeCodeCompletionToken();
Douglas Gregor49f40bd2009-09-18 19:03:04 +000059 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +000060
Chris Lattner8f08cb72007-08-25 06:57:03 +000061 SourceLocation IdentLoc;
62 IdentifierInfo *Ident = 0;
Richard Trieuf858bd82011-05-26 20:11:09 +000063 std::vector<SourceLocation> ExtraIdentLoc;
64 std::vector<IdentifierInfo*> ExtraIdent;
65 std::vector<SourceLocation> ExtraNamespaceLoc;
Douglas Gregor6a588dd2009-06-17 19:49:00 +000066
67 Token attrTok;
Mike Stump1eb44332009-09-09 15:08:12 +000068
Chris Lattner04d66662007-10-09 17:33:22 +000069 if (Tok.is(tok::identifier)) {
Chris Lattner8f08cb72007-08-25 06:57:03 +000070 Ident = Tok.getIdentifierInfo();
71 IdentLoc = ConsumeToken(); // eat the identifier.
Richard Trieuf858bd82011-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 Lattner8f08cb72007-08-25 06:57:03 +000077 }
Mike Stump1eb44332009-09-09 15:08:12 +000078
Chris Lattner8f08cb72007-08-25 06:57:03 +000079 // Read label attributes, if present.
John McCall0b7e6782011-03-24 11:26:52 +000080 ParsedAttributes attrs(AttrFactory);
Douglas Gregor6a588dd2009-06-17 19:49:00 +000081 if (Tok.is(tok::kw___attribute)) {
82 attrTok = Tok;
John McCall7f040a92010-12-24 02:08:15 +000083 ParseGNUAttributes(attrs);
Douglas Gregor6a588dd2009-06-17 19:49:00 +000084 }
Mike Stump1eb44332009-09-09 15:08:12 +000085
Douglas Gregor6a588dd2009-06-17 19:49:00 +000086 if (Tok.is(tok::equal)) {
John McCall7f040a92010-12-24 02:08:15 +000087 if (!attrs.empty())
Douglas Gregor6a588dd2009-06-17 19:49:00 +000088 Diag(attrTok, diag::err_unexpected_namespace_attributes_alias);
Sebastian Redld078e642010-08-27 23:12:46 +000089 if (InlineLoc.isValid())
90 Diag(InlineLoc, diag::err_inline_namespace_alias)
91 << FixItHint::CreateRemoval(InlineLoc);
Douglas Gregor6a588dd2009-06-17 19:49:00 +000092
Chris Lattner97144fc2009-04-02 04:16:50 +000093 return ParseNamespaceAlias(NamespaceLoc, IdentLoc, Ident, DeclEnd);
Douglas Gregor6a588dd2009-06-17 19:49:00 +000094 }
Mike Stump1eb44332009-09-09 15:08:12 +000095
Richard Trieuf858bd82011-05-26 20:11:09 +000096
Chris Lattner51448322009-03-29 14:02:43 +000097 if (Tok.isNot(tok::l_brace)) {
Richard Trieuf858bd82011-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 Stump1eb44332009-09-09 15:08:12 +0000102 Diag(Tok, Ident ? diag::err_expected_lbrace :
Chris Lattner51448322009-03-29 14:02:43 +0000103 diag::err_expected_ident_lbrace);
John McCalld226f652010-08-21 09:40:31 +0000104 return 0;
Chris Lattner8f08cb72007-08-25 06:57:03 +0000105 }
Mike Stump1eb44332009-09-09 15:08:12 +0000106
Chris Lattner51448322009-03-29 14:02:43 +0000107 SourceLocation LBrace = ConsumeBrace();
108
Douglas Gregor23c94db2010-07-02 17:43:08 +0000109 if (getCurScope()->isClassScope() || getCurScope()->isTemplateParamScope() ||
110 getCurScope()->isInObjcMethodScope() || getCurScope()->getBlockParent() ||
111 getCurScope()->getFnParent()) {
Richard Trieuf858bd82011-05-26 20:11:09 +0000112 if (!ExtraIdent.empty()) {
113 Diag(ExtraNamespaceLoc[0], diag::err_nested_namespaces_with_double_colon)
114 << SourceRange(ExtraNamespaceLoc.front(), ExtraIdentLoc.back());
115 }
Douglas Gregor95f1b152010-05-14 05:08:22 +0000116 Diag(LBrace, diag::err_namespace_nonnamespace_scope);
117 SkipUntil(tok::r_brace, false);
John McCalld226f652010-08-21 09:40:31 +0000118 return 0;
Douglas Gregor95f1b152010-05-14 05:08:22 +0000119 }
120
Richard Trieuf858bd82011-05-26 20:11:09 +0000121 if (!ExtraIdent.empty()) {
122 TentativeParsingAction TPA(*this);
123 SkipUntil(tok::r_brace, /*StopAtSemi*/false, /*DontConsume*/true);
124 Token rBraceToken = Tok;
125 TPA.Revert();
126
127 if (!rBraceToken.is(tok::r_brace)) {
128 Diag(ExtraNamespaceLoc[0], diag::err_nested_namespaces_with_double_colon)
129 << SourceRange(ExtraNamespaceLoc.front(), ExtraIdentLoc.back());
130 } else {
Benjamin Kramer9910df02011-05-26 21:32:30 +0000131 std::string NamespaceFix;
Richard Trieuf858bd82011-05-26 20:11:09 +0000132 for (std::vector<IdentifierInfo*>::iterator I = ExtraIdent.begin(),
133 E = ExtraIdent.end(); I != E; ++I) {
134 NamespaceFix += " { namespace ";
135 NamespaceFix += (*I)->getName();
136 }
Benjamin Kramer9910df02011-05-26 21:32:30 +0000137
Richard Trieuf858bd82011-05-26 20:11:09 +0000138 std::string RBraces;
Benjamin Kramer9910df02011-05-26 21:32:30 +0000139 for (unsigned i = 0, e = ExtraIdent.size(); i != e; ++i)
Richard Trieuf858bd82011-05-26 20:11:09 +0000140 RBraces += "} ";
Benjamin Kramer9910df02011-05-26 21:32:30 +0000141
Richard Trieuf858bd82011-05-26 20:11:09 +0000142 Diag(ExtraNamespaceLoc[0], diag::err_nested_namespaces_with_double_colon)
143 << FixItHint::CreateReplacement(SourceRange(ExtraNamespaceLoc.front(),
144 ExtraIdentLoc.back()),
145 NamespaceFix)
146 << FixItHint::CreateInsertion(rBraceToken.getLocation(), RBraces);
147 }
148 }
149
Sebastian Redl88e64ca2010-08-31 00:36:45 +0000150 // If we're still good, complain about inline namespaces in non-C++0x now.
151 if (!getLang().CPlusPlus0x && InlineLoc.isValid())
152 Diag(InlineLoc, diag::ext_inline_namespace);
153
Chris Lattner51448322009-03-29 14:02:43 +0000154 // Enter a scope for the namespace.
155 ParseScope NamespaceScope(this, Scope::DeclScope);
156
John McCalld226f652010-08-21 09:40:31 +0000157 Decl *NamespcDecl =
Abramo Bagnaraacba90f2011-03-08 12:38:20 +0000158 Actions.ActOnStartNamespaceDef(getCurScope(), InlineLoc, NamespaceLoc,
159 IdentLoc, Ident, LBrace, attrs.getList());
Chris Lattner51448322009-03-29 14:02:43 +0000160
John McCallf312b1e2010-08-26 23:41:50 +0000161 PrettyDeclStackTraceEntry CrashInfo(Actions, NamespcDecl, NamespaceLoc,
162 "parsing namespace");
Mike Stump1eb44332009-09-09 15:08:12 +0000163
Richard Trieuf858bd82011-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 Stump1eb44332009-09-09 15:08:12 +0000169
Chris Lattner51448322009-03-29 14:02:43 +0000170 // Leave the namespace scope.
171 NamespaceScope.Exit();
172
Chris Lattner97144fc2009-04-02 04:16:50 +0000173 Actions.ActOnFinishNamespaceDef(NamespcDecl, RBraceLoc);
Chris Lattner51448322009-03-29 14:02:43 +0000174
Chris Lattner97144fc2009-04-02 04:16:50 +0000175 DeclEnd = RBraceLoc;
Chris Lattner51448322009-03-29 14:02:43 +0000176 return NamespcDecl;
Chris Lattner8f08cb72007-08-25 06:57:03 +0000177}
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000178
Richard Trieuf858bd82011-05-26 20:11:09 +0000179/// ParseInnerNamespace - Parse the contents of a namespace.
180void Parser::ParseInnerNamespace(std::vector<SourceLocation>& IdentLoc,
181 std::vector<IdentifierInfo*>& Ident,
182 std::vector<SourceLocation>& NamespaceLoc,
183 unsigned int index, SourceLocation& InlineLoc,
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 Carlssonf67606a2009-03-28 04:07:16 +0000214/// ParseNamespaceAlias - Parse the part after the '=' in a namespace
215/// alias definition.
216///
John McCalld226f652010-08-21 09:40:31 +0000217Decl *Parser::ParseNamespaceAlias(SourceLocation NamespaceLoc,
John McCall0b7e6782011-03-24 11:26:52 +0000218 SourceLocation AliasLoc,
219 IdentifierInfo *Alias,
220 SourceLocation &DeclEnd) {
Anders Carlssonf67606a2009-03-28 04:07:16 +0000221 assert(Tok.is(tok::equal) && "Not equal token");
Mike Stump1eb44332009-09-09 15:08:12 +0000222
Anders Carlssonf67606a2009-03-28 04:07:16 +0000223 ConsumeToken(); // eat the '='.
Mike Stump1eb44332009-09-09 15:08:12 +0000224
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000225 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000226 Actions.CodeCompleteNamespaceAliasDecl(getCurScope());
Douglas Gregordc845342010-05-25 05:58:43 +0000227 ConsumeCodeCompletionToken();
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000228 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000229
Anders Carlssonf67606a2009-03-28 04:07:16 +0000230 CXXScopeSpec SS;
231 // Parse (optional) nested-name-specifier.
John McCallb3d87482010-08-24 05:47:05 +0000232 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
Anders Carlssonf67606a2009-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 McCalld226f652010-08-21 09:40:31 +0000238 return 0;
Anders Carlssonf67606a2009-03-28 04:07:16 +0000239 }
240
241 // Parse identifier.
Anders Carlsson03bd5a12009-03-28 22:53:22 +0000242 IdentifierInfo *Ident = Tok.getIdentifierInfo();
243 SourceLocation IdentLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000244
Anders Carlssonf67606a2009-03-28 04:07:16 +0000245 // Eat the ';'.
Chris Lattner97144fc2009-04-02 04:16:50 +0000246 DeclEnd = Tok.getLocation();
Chris Lattner6869d8e2009-06-14 00:07:48 +0000247 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_namespace_name,
248 "", tok::semi);
Mike Stump1eb44332009-09-09 15:08:12 +0000249
Douglas Gregor23c94db2010-07-02 17:43:08 +0000250 return Actions.ActOnNamespaceAliasDef(getCurScope(), NamespaceLoc, AliasLoc, Alias,
Anders Carlsson03bd5a12009-03-28 22:53:22 +0000251 SS, IdentLoc, Ident);
Anders Carlssonf67606a2009-03-28 04:07:16 +0000252}
253
Chris Lattnerc6fdc342008-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 Lattner7d642712010-11-09 20:15:55 +0000261Decl *Parser::ParseLinkage(ParsingDeclSpec &DS, unsigned Context) {
Douglas Gregorc19923d2008-11-21 16:10:08 +0000262 assert(Tok.is(tok::string_literal) && "Not a string literal!");
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000263 llvm::SmallString<8> LangBuffer;
Douglas Gregor453091c2010-03-16 22:30:13 +0000264 bool Invalid = false;
265 llvm::StringRef Lang = PP.getSpelling(Tok, LangBuffer, &Invalid);
266 if (Invalid)
John McCalld226f652010-08-21 09:40:31 +0000267 return 0;
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000268
269 SourceLocation Loc = ConsumeStringToken();
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000270
Douglas Gregor074149e2009-01-05 19:45:36 +0000271 ParseScope LinkageScope(this, Scope::DeclScope);
John McCalld226f652010-08-21 09:40:31 +0000272 Decl *LinkageSpec
Douglas Gregor23c94db2010-07-02 17:43:08 +0000273 = Actions.ActOnStartLinkageSpecification(getCurScope(),
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000274 DS.getSourceRange().getBegin(),
Benjamin Kramerd5663812010-05-03 13:08:54 +0000275 Loc, Lang,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000276 Tok.is(tok::l_brace) ? Tok.getLocation()
Douglas Gregor074149e2009-01-05 19:45:36 +0000277 : SourceLocation());
278
John McCall0b7e6782011-03-24 11:26:52 +0000279 ParsedAttributesWithRange attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +0000280 MaybeParseCXX0XAttributes(attrs);
281 MaybeParseMicrosoftAttributes(attrs);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000282
Douglas Gregor074149e2009-01-05 19:45:36 +0000283 if (Tok.isNot(tok::l_brace)) {
Abramo Bagnaraf41e33c2011-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 Bagnara35f9a192010-07-30 16:47:02 +0000289 DS.setExternInLinkageSpec(true);
John McCall7f040a92010-12-24 02:08:15 +0000290 ParseExternalDeclaration(attrs, &DS);
Douglas Gregor23c94db2010-07-02 17:43:08 +0000291 return Actions.ActOnFinishLinkageSpecification(getCurScope(), LinkageSpec,
Douglas Gregor074149e2009-01-05 19:45:36 +0000292 SourceLocation());
Mike Stump1eb44332009-09-09 15:08:12 +0000293 }
Douglas Gregorf44515a2008-12-16 22:23:02 +0000294
Douglas Gregor63a01132010-02-07 08:38:28 +0000295 DS.abort();
296
John McCall7f040a92010-12-24 02:08:15 +0000297 ProhibitAttributes(attrs);
Sean Huntbbd37c62009-11-21 08:43:09 +0000298
Douglas Gregorf44515a2008-12-16 22:23:02 +0000299 SourceLocation LBrace = ConsumeBrace();
Douglas Gregorf44515a2008-12-16 22:23:02 +0000300 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
John McCall0b7e6782011-03-24 11:26:52 +0000301 ParsedAttributesWithRange attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +0000302 MaybeParseCXX0XAttributes(attrs);
303 MaybeParseMicrosoftAttributes(attrs);
304 ParseExternalDeclaration(attrs);
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000305 }
306
Douglas Gregorf44515a2008-12-16 22:23:02 +0000307 SourceLocation RBrace = MatchRHSPunctuation(tok::r_brace, LBrace);
Chris Lattner7d642712010-11-09 20:15:55 +0000308 return Actions.ActOnFinishLinkageSpecification(getCurScope(), LinkageSpec,
309 RBrace);
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000310}
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000311
Douglas Gregorf780abc2008-12-30 03:27:21 +0000312/// ParseUsingDirectiveOrDeclaration - Parse C++ using using-declaration or
313/// using-directive. Assumes that current token is 'using'.
John McCalld226f652010-08-21 09:40:31 +0000314Decl *Parser::ParseUsingDirectiveOrDeclaration(unsigned Context,
John McCall78b81052010-11-10 02:40:36 +0000315 const ParsedTemplateInfo &TemplateInfo,
316 SourceLocation &DeclEnd,
John McCall7f040a92010-12-24 02:08:15 +0000317 ParsedAttributesWithRange &attrs) {
Douglas Gregorf780abc2008-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 Gregor49f40bd2009-09-18 19:03:04 +0000323 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000324 Actions.CodeCompleteUsing(getCurScope());
Douglas Gregordc845342010-05-25 05:58:43 +0000325 ConsumeCodeCompletionToken();
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000326 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000327
John McCall78b81052010-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 }
Sean Huntbbd37c62009-11-21 08:43:09 +0000336
John McCall7f040a92010-12-24 02:08:15 +0000337 return ParseUsingDirective(Context, UsingLoc, DeclEnd, attrs);
John McCall78b81052010-11-10 02:40:36 +0000338 }
339
Richard Smith162e1c12011-04-15 14:24:37 +0000340 // Otherwise, it must be a using-declaration or an alias-declaration.
John McCall78b81052010-11-10 02:40:36 +0000341
342 // Using declarations can't have attributes.
John McCall7f040a92010-12-24 02:08:15 +0000343 ProhibitAttributes(attrs);
Chris Lattner2f274772009-01-06 06:55:51 +0000344
John McCall78b81052010-11-10 02:40:36 +0000345 return ParseUsingDeclaration(Context, TemplateInfo, UsingLoc, DeclEnd);
Douglas Gregorf780abc2008-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 McCalld226f652010-08-21 09:40:31 +0000358Decl *Parser::ParseUsingDirective(unsigned Context,
John McCall78b81052010-11-10 02:40:36 +0000359 SourceLocation UsingLoc,
360 SourceLocation &DeclEnd,
John McCall7f040a92010-12-24 02:08:15 +0000361 ParsedAttributes &attrs) {
Douglas Gregorf780abc2008-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 Gregor49f40bd2009-09-18 19:03:04 +0000367 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000368 Actions.CodeCompleteUsingDirective(getCurScope());
Douglas Gregordc845342010-05-25 05:58:43 +0000369 ConsumeCodeCompletionToken();
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000370 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000371
Douglas Gregorf780abc2008-12-30 03:27:21 +0000372 CXXScopeSpec SS;
373 // Parse (optional) nested-name-specifier.
John McCallb3d87482010-08-24 05:47:05 +0000374 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000375
Douglas Gregorf780abc2008-12-30 03:27:21 +0000376 IdentifierInfo *NamespcName = 0;
377 SourceLocation IdentLoc = SourceLocation();
378
379 // Parse namespace-name.
Chris Lattner823c44e2009-01-06 07:27:21 +0000380 if (SS.isInvalid() || Tok.isNot(tok::identifier)) {
Douglas Gregorf780abc2008-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 McCalld226f652010-08-21 09:40:31 +0000385 return 0;
Douglas Gregorf780abc2008-12-30 03:27:21 +0000386 }
Mike Stump1eb44332009-09-09 15:08:12 +0000387
Chris Lattner823c44e2009-01-06 07:27:21 +0000388 // Parse identifier.
389 NamespcName = Tok.getIdentifierInfo();
390 IdentLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000391
Chris Lattner823c44e2009-01-06 07:27:21 +0000392 // Parse (optional) attributes (most likely GNU strong-using extension).
Sean Huntbbd37c62009-11-21 08:43:09 +0000393 bool GNUAttr = false;
394 if (Tok.is(tok::kw___attribute)) {
395 GNUAttr = true;
John McCall7f040a92010-12-24 02:08:15 +0000396 ParseGNUAttributes(attrs);
Sean Huntbbd37c62009-11-21 08:43:09 +0000397 }
Mike Stump1eb44332009-09-09 15:08:12 +0000398
Chris Lattner823c44e2009-01-06 07:27:21 +0000399 // Eat ';'.
Chris Lattner97144fc2009-04-02 04:16:50 +0000400 DeclEnd = Tok.getLocation();
Chris Lattner6869d8e2009-06-14 00:07:48 +0000401 ExpectAndConsume(tok::semi,
Douglas Gregor9ba23b42010-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 Gregorf780abc2008-12-30 03:27:21 +0000405
Douglas Gregor23c94db2010-07-02 17:43:08 +0000406 return Actions.ActOnUsingDirective(getCurScope(), UsingLoc, NamespcLoc, SS,
John McCall7f040a92010-12-24 02:08:15 +0000407 IdentLoc, NamespcName, attrs.getList());
Douglas Gregorf780abc2008-12-30 03:27:21 +0000408}
409
Richard Smith162e1c12011-04-15 14:24:37 +0000410/// ParseUsingDeclaration - Parse C++ using-declaration or alias-declaration.
411/// Assumes that 'using' was already seen.
Douglas Gregorf780abc2008-12-30 03:27:21 +0000412///
413/// using-declaration: [C++ 7.3.p3: namespace.udecl]
414/// 'using' 'typename'[opt] ::[opt] nested-name-specifier
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000415/// unqualified-id
416/// 'using' :: unqualified-id
Douglas Gregorf780abc2008-12-30 03:27:21 +0000417///
Richard Smith162e1c12011-04-15 14:24:37 +0000418/// alias-declaration: C++0x [decl.typedef]p2
419/// 'using' identifier = type-id ;
420///
John McCalld226f652010-08-21 09:40:31 +0000421Decl *Parser::ParseUsingDeclaration(unsigned Context,
John McCall78b81052010-11-10 02:40:36 +0000422 const ParsedTemplateInfo &TemplateInfo,
423 SourceLocation UsingLoc,
424 SourceLocation &DeclEnd,
425 AccessSpecifier AS) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000426 CXXScopeSpec SS;
John McCall7ba107a2009-11-18 02:36:19 +0000427 SourceLocation TypenameLoc;
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000428 bool IsTypeName;
429
430 // Ignore optional 'typename'.
Douglas Gregor12c118a2009-11-04 16:30:06 +0000431 // FIXME: This is wrong; we should parse this as a typename-specifier.
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000432 if (Tok.is(tok::kw_typename)) {
John McCall7ba107a2009-11-18 02:36:19 +0000433 TypenameLoc = Tok.getLocation();
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000434 ConsumeToken();
435 IsTypeName = true;
436 }
437 else
438 IsTypeName = false;
439
440 // Parse nested-name-specifier.
John McCallb3d87482010-08-24 05:47:05 +0000441 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000442
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000443 // Check nested-name specifier.
444 if (SS.isInvalid()) {
445 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000446 return 0;
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000447 }
Douglas Gregor12c118a2009-11-04 16:30:06 +0000448
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000449 // Parse the unqualified-id. We allow parsing of both constructor and
Douglas Gregor12c118a2009-11-04 16:30:06 +0000450 // destructor names and allow the action module to diagnose any semantic
451 // errors.
452 UnqualifiedId Name;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000453 if (ParseUnqualifiedId(SS,
Douglas Gregor12c118a2009-11-04 16:30:06 +0000454 /*EnteringContext=*/false,
455 /*AllowDestructorName=*/true,
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000456 /*AllowConstructorName=*/true,
John McCallb3d87482010-08-24 05:47:05 +0000457 ParsedType(),
Douglas Gregor12c118a2009-11-04 16:30:06 +0000458 Name)) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000459 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000460 return 0;
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000461 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000462
John McCall0b7e6782011-03-24 11:26:52 +0000463 ParsedAttributes attrs(AttrFactory);
Richard Smith162e1c12011-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 Smith3e4c6c42011-05-05 21:57:07 +0000469 // TODO: Attribute support. C++0x attributes may appear before the equals.
470 // Where can GNU attributes appear?
Richard Smith162e1c12011-04-15 14:24:37 +0000471 ConsumeToken();
472
473 if (!getLang().CPlusPlus0x)
474 Diag(Tok.getLocation(), diag::ext_alias_declaration);
475
Richard Smith3e4c6c42011-05-05 21:57:07 +0000476 // Type alias templates cannot be specialized.
477 int SpecKind = -1;
Richard Smith536e9c12011-05-05 22:36:10 +0000478 if (TemplateInfo.Kind == ParsedTemplateInfo::Template &&
479 Name.getKind() == UnqualifiedId::IK_TemplateId)
Richard Smith3e4c6c42011-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 Smith162e1c12011-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 Smith3e4c6c42011-05-05 21:57:07 +0000512 TypeAlias = ParseTypeName(0, TemplateInfo.Kind ?
513 Declarator::AliasTemplateContext :
514 Declarator::AliasDeclContext);
Richard Smith162e1c12011-04-15 14:24:37 +0000515 } else
516 // Parse (optional) attributes (most likely GNU strong-using extension).
517 MaybeParseGNUAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +0000518
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000519 // Eat ';'.
520 DeclEnd = Tok.getLocation();
521 ExpectAndConsume(tok::semi, diag::err_expected_semi_after,
Richard Smith162e1c12011-04-15 14:24:37 +0000522 !attrs.empty() ? "attributes list" :
523 IsAliasDecl ? "alias declaration" : "using declaration",
Douglas Gregor12c118a2009-11-04 16:30:06 +0000524 tok::semi);
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000525
John McCall78b81052010-11-10 02:40:36 +0000526 // Diagnose an attempt to declare a templated using-declaration.
Richard Smith3e4c6c42011-05-05 21:57:07 +0000527 // In C++0x, alias-declarations can be templates:
Richard Smith162e1c12011-04-15 14:24:37 +0000528 // template <...> using id = type;
Richard Smith3e4c6c42011-05-05 21:57:07 +0000529 if (TemplateInfo.Kind && !IsAliasDecl) {
John McCall78b81052010-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 Smith3e4c6c42011-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 Smith162e1c12011-04-15 14:24:37 +0000548
Ted Kremenek8113ecf2010-11-10 05:59:39 +0000549 return Actions.ActOnUsingDeclaration(getCurScope(), AS, true, UsingLoc, SS,
John McCall7f040a92010-12-24 02:08:15 +0000550 Name, attrs.getList(),
551 IsTypeName, TypenameLoc);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000552}
553
Peter Collingbournec6eb44b2011-04-15 00:35:57 +0000554/// ParseStaticAssertDeclaration - Parse C++0x or C1X static_assert-declaration.
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000555///
Peter Collingbournec6eb44b2011-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 Carlsson511d7ab2009-03-11 16:27:10 +0000561///
John McCalld226f652010-08-21 09:40:31 +0000562Decl *Parser::ParseStaticAssertDeclaration(SourceLocation &DeclEnd){
Peter Collingbournec6eb44b2011-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 Carlsson511d7ab2009-03-11 16:27:10 +0000569 SourceLocation StaticAssertLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000570
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000571 if (Tok.isNot(tok::l_paren)) {
572 Diag(Tok, diag::err_expected_lparen);
John McCalld226f652010-08-21 09:40:31 +0000573 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000574 }
Mike Stump1eb44332009-09-09 15:08:12 +0000575
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000576 SourceLocation LParenLoc = ConsumeParen();
Douglas Gregore0762c92009-06-19 23:52:42 +0000577
John McCall60d7b3a2010-08-24 06:29:42 +0000578 ExprResult AssertExpr(ParseConstantExpression());
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000579 if (AssertExpr.isInvalid()) {
580 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000581 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000582 }
Mike Stump1eb44332009-09-09 15:08:12 +0000583
Anders Carlssonad5f9602009-03-13 23:29:20 +0000584 if (ExpectAndConsume(tok::comma, diag::err_expected_comma, "", tok::semi))
John McCalld226f652010-08-21 09:40:31 +0000585 return 0;
Anders Carlssonad5f9602009-03-13 23:29:20 +0000586
Anders Carlsson511d7ab2009-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 McCalld226f652010-08-21 09:40:31 +0000590 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000591 }
Mike Stump1eb44332009-09-09 15:08:12 +0000592
John McCall60d7b3a2010-08-24 06:29:42 +0000593 ExprResult AssertMessage(ParseStringLiteralExpression());
Mike Stump1eb44332009-09-09 15:08:12 +0000594 if (AssertMessage.isInvalid())
John McCalld226f652010-08-21 09:40:31 +0000595 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000596
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000597 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000598
Chris Lattner97144fc2009-04-02 04:16:50 +0000599 DeclEnd = Tok.getLocation();
Douglas Gregor9ba23b42010-09-07 15:23:11 +0000600 ExpectAndConsumeSemi(diag::err_expected_semi_after_static_assert);
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000601
John McCall9ae2f072010-08-23 23:25:46 +0000602 return Actions.ActOnStaticAssertDeclaration(StaticAssertLoc,
603 AssertExpr.take(),
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000604 AssertMessage.take(),
605 RParenLoc);
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000606}
607
Anders Carlsson6fd634f2009-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 Stump1eb44332009-09-09 15:08:12 +0000617
618 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after,
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000619 "decltype")) {
620 SkipUntil(tok::r_paren);
621 return;
622 }
Mike Stump1eb44332009-09-09 15:08:12 +0000623
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000624 // Parse the expression
Mike Stump1eb44332009-09-09 15:08:12 +0000625
Anders Carlsson6fd634f2009-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 McCallf312b1e2010-08-26 23:41:50 +0000629 Sema::Unevaluated);
John McCall60d7b3a2010-08-24 06:29:42 +0000630 ExprResult Result = ParseExpression();
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000631 if (Result.isInvalid()) {
632 SkipUntil(tok::r_paren);
633 return;
634 }
Mike Stump1eb44332009-09-09 15:08:12 +0000635
Anders Carlsson6fd634f2009-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 Stump1eb44332009-09-09 15:08:12 +0000642
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000643 if (RParenLoc.isInvalid())
644 return;
645
646 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +0000647 unsigned DiagID;
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000648 // Check for duplicate type specifiers (e.g. "int decltype(a)").
Mike Stump1eb44332009-09-09 15:08:12 +0000649 if (DS.SetTypeSpecType(DeclSpec::TST_decltype, StartLoc, PrevSpec,
John McCallfec54012009-08-03 20:12:06 +0000650 DiagID, Result.release()))
651 Diag(StartLoc, DiagID) << PrevSpec;
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000652}
653
Sean Huntdb5d44b2011-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;
Sean Huntca63c202011-05-24 22:41:36 +0000685 if (DS.SetTypeSpecType(DeclSpec::TST_underlyingType, StartLoc, PrevSpec,
Sean Huntdb5d44b2011-05-19 05:37:45 +0000686 DiagID, Result.release()))
687 Diag(StartLoc, DiagID) << PrevSpec;
688}
689
Douglas Gregor42a552f2008-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 Gregor7f43d672009-02-25 23:52:28 +0000693/// either a type or NULL, depending on whether a type name was
Douglas Gregor42a552f2008-11-05 20:51:48 +0000694/// found.
695///
696/// class-name: [C++ 9.1]
697/// identifier
Douglas Gregor7f43d672009-02-25 23:52:28 +0000698/// simple-template-id
Mike Stump1eb44332009-09-09 15:08:12 +0000699///
Douglas Gregor31a19b62009-04-01 21:51:26 +0000700Parser::TypeResult Parser::ParseClassName(SourceLocation &EndLocation,
Douglas Gregor059101f2011-03-02 00:47:37 +0000701 CXXScopeSpec &SS) {
Douglas Gregor7f43d672009-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)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000704 TemplateIdAnnotation *TemplateId
Douglas Gregor7f43d672009-02-25 23:52:28 +0000705 = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
Douglas Gregord9b600c2010-01-12 17:52:59 +0000706 if (TemplateId->Kind == TNK_Type_template ||
707 TemplateId->Kind == TNK_Dependent_template_name) {
Douglas Gregor059101f2011-03-02 00:47:37 +0000708 AnnotateTemplateIdTokenAsType();
Douglas Gregor7f43d672009-02-25 23:52:28 +0000709
710 assert(Tok.is(tok::annot_typename) && "template-id -> type failed");
John McCallb3d87482010-08-24 05:47:05 +0000711 ParsedType Type = getTypeAnnotation(Tok);
Douglas Gregor7f43d672009-02-25 23:52:28 +0000712 EndLocation = Tok.getAnnotationEndLoc();
713 ConsumeToken();
Douglas Gregor31a19b62009-04-01 21:51:26 +0000714
715 if (Type)
716 return Type;
717 return true;
Douglas Gregor7f43d672009-02-25 23:52:28 +0000718 }
719
720 // Fall through to produce an error below.
721 }
722
Douglas Gregor42a552f2008-11-05 20:51:48 +0000723 if (Tok.isNot(tok::identifier)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000724 Diag(Tok, diag::err_expected_class_name);
Douglas Gregor31a19b62009-04-01 21:51:26 +0000725 return true;
Douglas Gregor42a552f2008-11-05 20:51:48 +0000726 }
727
Douglas Gregor84d0a192010-01-12 21:28:44 +0000728 IdentifierInfo *Id = Tok.getIdentifierInfo();
729 SourceLocation IdLoc = ConsumeToken();
730
731 if (Tok.is(tok::less)) {
732 // It looks the user intended to write a template-id here, but the
733 // template-name was wrong. Try to fix that.
734 TemplateNameKind TNK = TNK_Type_template;
735 TemplateTy Template;
Douglas Gregor23c94db2010-07-02 17:43:08 +0000736 if (!Actions.DiagnoseUnknownTemplateName(*Id, IdLoc, getCurScope(),
Douglas Gregor059101f2011-03-02 00:47:37 +0000737 &SS, Template, TNK)) {
Douglas Gregor84d0a192010-01-12 21:28:44 +0000738 Diag(IdLoc, diag::err_unknown_template_name)
739 << Id;
740 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000741
Douglas Gregor84d0a192010-01-12 21:28:44 +0000742 if (!Template)
743 return true;
744
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000745 // Form the template name
Douglas Gregor84d0a192010-01-12 21:28:44 +0000746 UnqualifiedId TemplateName;
747 TemplateName.setIdentifier(Id, IdLoc);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000748
Douglas Gregor84d0a192010-01-12 21:28:44 +0000749 // Parse the full template-id, then turn it into a type.
750 if (AnnotateTemplateIdToken(Template, TNK, SS, TemplateName,
751 SourceLocation(), true))
752 return true;
753 if (TNK == TNK_Dependent_template_name)
Douglas Gregor059101f2011-03-02 00:47:37 +0000754 AnnotateTemplateIdTokenAsType();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000755
Douglas Gregor84d0a192010-01-12 21:28:44 +0000756 // If we didn't end up with a typename token, there's nothing more we
757 // can do.
758 if (Tok.isNot(tok::annot_typename))
759 return true;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000760
Douglas Gregor84d0a192010-01-12 21:28:44 +0000761 // Retrieve the type from the annotation token, consume that token, and
762 // return.
763 EndLocation = Tok.getAnnotationEndLoc();
John McCallb3d87482010-08-24 05:47:05 +0000764 ParsedType Type = getTypeAnnotation(Tok);
Douglas Gregor84d0a192010-01-12 21:28:44 +0000765 ConsumeToken();
766 return Type;
767 }
768
Douglas Gregor42a552f2008-11-05 20:51:48 +0000769 // We have an identifier; check whether it is actually a type.
Douglas Gregor059101f2011-03-02 00:47:37 +0000770 ParsedType Type = Actions.getTypeName(*Id, IdLoc, getCurScope(), &SS, true,
Douglas Gregor9e876872011-03-01 18:12:44 +0000771 false, ParsedType(),
772 /*NonTrivialTypeSourceInfo=*/true);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000773 if (!Type) {
Douglas Gregor124b8782010-02-16 19:09:40 +0000774 Diag(IdLoc, diag::err_expected_class_name);
Douglas Gregor31a19b62009-04-01 21:51:26 +0000775 return true;
Douglas Gregor42a552f2008-11-05 20:51:48 +0000776 }
777
778 // Consume the identifier.
Douglas Gregor84d0a192010-01-12 21:28:44 +0000779 EndLocation = IdLoc;
Nick Lewycky56062202010-07-26 16:56:01 +0000780
781 // Fake up a Declarator to use with ActOnTypeName.
John McCall0b7e6782011-03-24 11:26:52 +0000782 DeclSpec DS(AttrFactory);
Nick Lewycky56062202010-07-26 16:56:01 +0000783 DS.SetRangeStart(IdLoc);
784 DS.SetRangeEnd(EndLocation);
Douglas Gregor059101f2011-03-02 00:47:37 +0000785 DS.getTypeSpecScope() = SS;
Nick Lewycky56062202010-07-26 16:56:01 +0000786
787 const char *PrevSpec = 0;
788 unsigned DiagID;
789 DS.SetTypeSpecType(TST_typename, IdLoc, PrevSpec, DiagID, Type);
790
791 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
792 return Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
Douglas Gregor42a552f2008-11-05 20:51:48 +0000793}
794
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000795/// ParseClassSpecifier - Parse a C++ class-specifier [C++ class] or
796/// elaborated-type-specifier [C++ dcl.type.elab]; we can't tell which
797/// until we reach the start of a definition or see a token that
Sebastian Redld9bafa72010-02-03 21:21:43 +0000798/// cannot start a definition. If SuppressDeclarations is true, we do know.
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000799///
800/// class-specifier: [C++ class]
801/// class-head '{' member-specification[opt] '}'
802/// class-head '{' member-specification[opt] '}' attributes[opt]
803/// class-head:
804/// class-key identifier[opt] base-clause[opt]
805/// class-key nested-name-specifier identifier base-clause[opt]
806/// class-key nested-name-specifier[opt] simple-template-id
807/// base-clause[opt]
808/// [GNU] class-key attributes[opt] identifier[opt] base-clause[opt]
Mike Stump1eb44332009-09-09 15:08:12 +0000809/// [GNU] class-key attributes[opt] nested-name-specifier
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000810/// identifier base-clause[opt]
Mike Stump1eb44332009-09-09 15:08:12 +0000811/// [GNU] class-key attributes[opt] nested-name-specifier[opt]
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000812/// simple-template-id base-clause[opt]
813/// class-key:
814/// 'class'
815/// 'struct'
816/// 'union'
817///
818/// elaborated-type-specifier: [C++ dcl.type.elab]
Mike Stump1eb44332009-09-09 15:08:12 +0000819/// class-key ::[opt] nested-name-specifier[opt] identifier
820/// class-key ::[opt] nested-name-specifier[opt] 'template'[opt]
821/// simple-template-id
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000822///
823/// Note that the C++ class-specifier and elaborated-type-specifier,
824/// together, subsume the C99 struct-or-union-specifier:
825///
826/// struct-or-union-specifier: [C99 6.7.2.1]
827/// struct-or-union identifier[opt] '{' struct-contents '}'
828/// struct-or-union identifier
829/// [GNU] struct-or-union attributes[opt] identifier[opt] '{' struct-contents
830/// '}' attributes[opt]
831/// [GNU] struct-or-union attributes[opt] identifier
832/// struct-or-union:
833/// 'struct'
834/// 'union'
Chris Lattner4c97d762009-04-12 21:49:30 +0000835void Parser::ParseClassSpecifier(tok::TokenKind TagTokKind,
836 SourceLocation StartLoc, DeclSpec &DS,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000837 const ParsedTemplateInfo &TemplateInfo,
Sebastian Redld9bafa72010-02-03 21:21:43 +0000838 AccessSpecifier AS, bool SuppressDeclarations){
Chris Lattner4c97d762009-04-12 21:49:30 +0000839 DeclSpec::TST TagType;
840 if (TagTokKind == tok::kw_struct)
841 TagType = DeclSpec::TST_struct;
842 else if (TagTokKind == tok::kw_class)
843 TagType = DeclSpec::TST_class;
844 else {
845 assert(TagTokKind == tok::kw_union && "Not a class specifier");
846 TagType = DeclSpec::TST_union;
847 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000848
Douglas Gregor374929f2009-09-18 15:37:17 +0000849 if (Tok.is(tok::code_completion)) {
850 // Code completion for a struct, class, or union name.
Douglas Gregor23c94db2010-07-02 17:43:08 +0000851 Actions.CodeCompleteTag(getCurScope(), TagType);
Douglas Gregordc845342010-05-25 05:58:43 +0000852 ConsumeCodeCompletionToken();
Douglas Gregor374929f2009-09-18 15:37:17 +0000853 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000854
Chandler Carruth926c4b42010-06-28 08:39:25 +0000855 // C++03 [temp.explicit] 14.7.2/8:
856 // The usual access checking rules do not apply to names used to specify
857 // explicit instantiations.
858 //
859 // As an extension we do not perform access checking on the names used to
860 // specify explicit specializations either. This is important to allow
861 // specializing traits classes for private types.
862 bool SuppressingAccessChecks = false;
863 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation ||
864 TemplateInfo.Kind == ParsedTemplateInfo::ExplicitSpecialization) {
865 Actions.ActOnStartSuppressingAccessChecks();
866 SuppressingAccessChecks = true;
867 }
868
John McCall0b7e6782011-03-24 11:26:52 +0000869 ParsedAttributes attrs(AttrFactory);
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000870 // If attributes exist after tag, parse them.
871 if (Tok.is(tok::kw___attribute))
John McCall7f040a92010-12-24 02:08:15 +0000872 ParseGNUAttributes(attrs);
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000873
Steve Narofff59e17e2008-12-24 20:59:21 +0000874 // If declspecs exist after tag, parse them.
John McCallb1d397c2010-08-05 17:13:11 +0000875 while (Tok.is(tok::kw___declspec))
John McCall7f040a92010-12-24 02:08:15 +0000876 ParseMicrosoftDeclSpec(attrs);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000877
Sean Huntbbd37c62009-11-21 08:43:09 +0000878 // If C++0x attributes exist here, parse them.
879 // FIXME: Are we consistent with the ordering of parsing of different
880 // styles of attributes?
John McCall7f040a92010-12-24 02:08:15 +0000881 MaybeParseCXX0XAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +0000882
John Wiegley20c0da72011-04-27 23:09:49 +0000883 if (TagType == DeclSpec::TST_struct &&
Douglas Gregorb467cda2011-04-29 15:31:39 +0000884 !Tok.is(tok::identifier) &&
885 Tok.getIdentifierInfo() &&
886 (Tok.is(tok::kw___is_arithmetic) ||
887 Tok.is(tok::kw___is_convertible) ||
John Wiegley20c0da72011-04-27 23:09:49 +0000888 Tok.is(tok::kw___is_empty) ||
Douglas Gregorb467cda2011-04-29 15:31:39 +0000889 Tok.is(tok::kw___is_floating_point) ||
890 Tok.is(tok::kw___is_function) ||
John Wiegley20c0da72011-04-27 23:09:49 +0000891 Tok.is(tok::kw___is_fundamental) ||
Douglas Gregorb467cda2011-04-29 15:31:39 +0000892 Tok.is(tok::kw___is_integral) ||
893 Tok.is(tok::kw___is_member_function_pointer) ||
894 Tok.is(tok::kw___is_member_pointer) ||
895 Tok.is(tok::kw___is_pod) ||
896 Tok.is(tok::kw___is_pointer) ||
897 Tok.is(tok::kw___is_same) ||
Douglas Gregor877222e2011-04-29 01:38:03 +0000898 Tok.is(tok::kw___is_scalar) ||
Douglas Gregorb467cda2011-04-29 15:31:39 +0000899 Tok.is(tok::kw___is_signed) ||
900 Tok.is(tok::kw___is_unsigned) ||
901 Tok.is(tok::kw___is_void))) {
902 // GNU libstdc++ 4.2 and libc++ uaw certain intrinsic names as the
903 // name of struct templates, but some are keywords in GCC >= 4.3
904 // and Clang. Therefore, when we see the token sequence "struct
905 // X", make X into a normal identifier rather than a keyword, to
906 // allow libstdc++ 4.2 and libc++ to work properly.
Argyrios Kyrtzidis646395b2010-08-11 22:55:12 +0000907 Tok.getIdentifierInfo()->RevertTokenIDToIdentifier();
Douglas Gregorb117a602009-09-04 05:53:02 +0000908 Tok.setKind(tok::identifier);
909 }
Mike Stump1eb44332009-09-09 15:08:12 +0000910
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000911 // Parse the (optional) nested-name-specifier.
John McCallaa87d332009-12-12 11:40:51 +0000912 CXXScopeSpec &SS = DS.getTypeSpecScope();
Chris Lattner08d92ec2009-12-10 00:32:41 +0000913 if (getLang().CPlusPlus) {
914 // "FOO : BAR" is not a potential typo for "FOO::BAR".
915 ColonProtectionRAIIObject X(*this);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000916
John McCallb3d87482010-08-24 05:47:05 +0000917 if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(), true))
John McCall207014e2010-07-30 06:26:29 +0000918 DS.SetTypeSpecError();
John McCall9ba61662010-02-26 08:45:28 +0000919 if (SS.isSet())
Chris Lattner08d92ec2009-12-10 00:32:41 +0000920 if (Tok.isNot(tok::identifier) && Tok.isNot(tok::annot_template_id))
921 Diag(Tok, diag::err_expected_ident);
922 }
Douglas Gregorcc636682009-02-17 23:15:12 +0000923
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000924 TemplateParameterLists *TemplateParams = TemplateInfo.TemplateParams;
925
Douglas Gregorcc636682009-02-17 23:15:12 +0000926 // Parse the (optional) class name or simple-template-id.
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000927 IdentifierInfo *Name = 0;
928 SourceLocation NameLoc;
Douglas Gregor39a8de12009-02-25 19:37:18 +0000929 TemplateIdAnnotation *TemplateId = 0;
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000930 if (Tok.is(tok::identifier)) {
931 Name = Tok.getIdentifierInfo();
932 NameLoc = ConsumeToken();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000933
Douglas Gregor5ee37342010-05-30 22:30:21 +0000934 if (Tok.is(tok::less) && getLang().CPlusPlus) {
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000935 // The name was supposed to refer to a template, but didn't.
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000936 // Eat the template argument list and try to continue parsing this as
937 // a class (or template thereof).
938 TemplateArgList TemplateArgs;
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000939 SourceLocation LAngleLoc, RAngleLoc;
Douglas Gregor059101f2011-03-02 00:47:37 +0000940 if (ParseTemplateIdAfterTemplateName(TemplateTy(), NameLoc, SS,
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000941 true, LAngleLoc,
Douglas Gregor314b97f2009-11-10 19:49:08 +0000942 TemplateArgs, RAngleLoc)) {
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000943 // We couldn't parse the template argument list at all, so don't
944 // try to give any location information for the list.
945 LAngleLoc = RAngleLoc = SourceLocation();
946 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000947
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000948 Diag(NameLoc, diag::err_explicit_spec_non_template)
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000949 << (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation)
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000950 << (TagType == DeclSpec::TST_class? 0
951 : TagType == DeclSpec::TST_struct? 1
952 : 2)
953 << Name
954 << SourceRange(LAngleLoc, RAngleLoc);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000955
956 // Strip off the last template parameter list if it was empty, since
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000957 // we've removed its template argument list.
958 if (TemplateParams && TemplateInfo.LastParameterListWasEmpty) {
959 if (TemplateParams && TemplateParams->size() > 1) {
960 TemplateParams->pop_back();
961 } else {
962 TemplateParams = 0;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000963 const_cast<ParsedTemplateInfo&>(TemplateInfo).Kind
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000964 = ParsedTemplateInfo::NonTemplate;
965 }
966 } else if (TemplateInfo.Kind
967 == ParsedTemplateInfo::ExplicitInstantiation) {
968 // Pretend this is just a forward declaration.
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000969 TemplateParams = 0;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000970 const_cast<ParsedTemplateInfo&>(TemplateInfo).Kind
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000971 = ParsedTemplateInfo::NonTemplate;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000972 const_cast<ParsedTemplateInfo&>(TemplateInfo).TemplateLoc
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000973 = SourceLocation();
974 const_cast<ParsedTemplateInfo&>(TemplateInfo).ExternLoc
975 = SourceLocation();
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000976 }
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000977 }
Douglas Gregor39a8de12009-02-25 19:37:18 +0000978 } else if (Tok.is(tok::annot_template_id)) {
979 TemplateId = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
980 NameLoc = ConsumeToken();
Douglas Gregorcc636682009-02-17 23:15:12 +0000981
Douglas Gregor059101f2011-03-02 00:47:37 +0000982 if (TemplateId->Kind != TNK_Type_template &&
983 TemplateId->Kind != TNK_Dependent_template_name) {
Douglas Gregor39a8de12009-02-25 19:37:18 +0000984 // The template-name in the simple-template-id refers to
985 // something other than a class template. Give an appropriate
986 // error message and skip to the ';'.
987 SourceRange Range(NameLoc);
988 if (SS.isNotEmpty())
989 Range.setBegin(SS.getBeginLoc());
Douglas Gregorcc636682009-02-17 23:15:12 +0000990
Douglas Gregor39a8de12009-02-25 19:37:18 +0000991 Diag(TemplateId->LAngleLoc, diag::err_template_spec_syntax_non_template)
992 << Name << static_cast<int>(TemplateId->Kind) << Range;
Mike Stump1eb44332009-09-09 15:08:12 +0000993
Douglas Gregor39a8de12009-02-25 19:37:18 +0000994 DS.SetTypeSpecError();
995 SkipUntil(tok::semi, false, true);
996 TemplateId->Destroy();
Chandler Carruth926c4b42010-06-28 08:39:25 +0000997 if (SuppressingAccessChecks)
998 Actions.ActOnStopSuppressingAccessChecks();
999
Douglas Gregor39a8de12009-02-25 19:37:18 +00001000 return;
Douglas Gregorcc636682009-02-17 23:15:12 +00001001 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001002 }
1003
Chandler Carruth926c4b42010-06-28 08:39:25 +00001004 // As soon as we're finished parsing the class's template-id, turn access
1005 // checking back on.
1006 if (SuppressingAccessChecks)
1007 Actions.ActOnStopSuppressingAccessChecks();
1008
John McCall67d1a672009-08-06 02:15:43 +00001009 // There are four options here. If we have 'struct foo;', then this
1010 // is either a forward declaration or a friend declaration, which
Anders Carlssoncc54d592011-01-22 16:56:46 +00001011 // have to be treated differently. If we have 'struct foo {...',
Anders Carlsson1d209272011-03-25 14:55:14 +00001012 // 'struct foo :...' or 'struct foo final[opt]' then this is a
Anders Carlssoncc54d592011-01-22 16:56:46 +00001013 // definition. Otherwise we have something like 'struct foo xyz', a reference.
Sebastian Redld9bafa72010-02-03 21:21:43 +00001014 // However, in some contexts, things look like declarations but are just
1015 // references, e.g.
1016 // new struct s;
1017 // or
1018 // &T::operator struct s;
1019 // For these, SuppressDeclarations is true.
John McCallf312b1e2010-08-26 23:41:50 +00001020 Sema::TagUseKind TUK;
Sebastian Redld9bafa72010-02-03 21:21:43 +00001021 if (SuppressDeclarations)
John McCallf312b1e2010-08-26 23:41:50 +00001022 TUK = Sema::TUK_Reference;
Anders Carlssoncc54d592011-01-22 16:56:46 +00001023 else if (Tok.is(tok::l_brace) ||
1024 (getLang().CPlusPlus && Tok.is(tok::colon)) ||
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001025 isCXX0XFinalKeyword()) {
Douglas Gregord85bea22009-09-26 06:47:28 +00001026 if (DS.isFriendSpecified()) {
1027 // C++ [class.friend]p2:
1028 // A class shall not be defined in a friend declaration.
1029 Diag(Tok.getLocation(), diag::err_friend_decl_defines_class)
1030 << SourceRange(DS.getFriendSpecLoc());
1031
1032 // Skip everything up to the semicolon, so that this looks like a proper
1033 // friend class (or template thereof) declaration.
1034 SkipUntil(tok::semi, true, true);
John McCallf312b1e2010-08-26 23:41:50 +00001035 TUK = Sema::TUK_Friend;
Douglas Gregord85bea22009-09-26 06:47:28 +00001036 } else {
1037 // Okay, this is a class definition.
John McCallf312b1e2010-08-26 23:41:50 +00001038 TUK = Sema::TUK_Definition;
Douglas Gregord85bea22009-09-26 06:47:28 +00001039 }
1040 } else if (Tok.is(tok::semi))
John McCallf312b1e2010-08-26 23:41:50 +00001041 TUK = DS.isFriendSpecified() ? Sema::TUK_Friend : Sema::TUK_Declaration;
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001042 else
John McCallf312b1e2010-08-26 23:41:50 +00001043 TUK = Sema::TUK_Reference;
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001044
John McCall207014e2010-07-30 06:26:29 +00001045 if (!Name && !TemplateId && (DS.getTypeSpecType() == DeclSpec::TST_error ||
John McCallf312b1e2010-08-26 23:41:50 +00001046 TUK != Sema::TUK_Definition)) {
John McCall207014e2010-07-30 06:26:29 +00001047 if (DS.getTypeSpecType() != DeclSpec::TST_error) {
1048 // We have a declaration or reference to an anonymous class.
1049 Diag(StartLoc, diag::err_anon_type_definition)
1050 << DeclSpec::getSpecifierName(TagType);
1051 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001052
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001053 SkipUntil(tok::comma, true);
Douglas Gregor39a8de12009-02-25 19:37:18 +00001054
1055 if (TemplateId)
1056 TemplateId->Destroy();
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001057 return;
1058 }
1059
Douglas Gregorddc29e12009-02-06 22:42:48 +00001060 // Create the tag portion of the class or class template.
John McCalld226f652010-08-21 09:40:31 +00001061 DeclResult TagOrTempResult = true; // invalid
1062 TypeResult TypeResult = true; // invalid
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001063
Douglas Gregor402abb52009-05-28 23:31:59 +00001064 bool Owned = false;
John McCallf1bbbb42009-09-04 01:14:41 +00001065 if (TemplateId) {
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001066 // Explicit specialization, class template partial specialization,
1067 // or explicit instantiation.
Mike Stump1eb44332009-09-09 15:08:12 +00001068 ASTTemplateArgsPtr TemplateArgsPtr(Actions,
Douglas Gregor39a8de12009-02-25 19:37:18 +00001069 TemplateId->getTemplateArgs(),
Douglas Gregor39a8de12009-02-25 19:37:18 +00001070 TemplateId->NumArgs);
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001071 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallf312b1e2010-08-26 23:41:50 +00001072 TUK == Sema::TUK_Declaration) {
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001073 // This is an explicit instantiation of a class template.
1074 TagOrTempResult
Douglas Gregor23c94db2010-07-02 17:43:08 +00001075 = Actions.ActOnExplicitInstantiation(getCurScope(),
Douglas Gregor45f96552009-09-04 06:33:52 +00001076 TemplateInfo.ExternLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001077 TemplateInfo.TemplateLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001078 TagType,
Mike Stump1eb44332009-09-09 15:08:12 +00001079 StartLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001080 SS,
John McCall2b5289b2010-08-23 07:28:44 +00001081 TemplateId->Template,
Mike Stump1eb44332009-09-09 15:08:12 +00001082 TemplateId->TemplateNameLoc,
1083 TemplateId->LAngleLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001084 TemplateArgsPtr,
Mike Stump1eb44332009-09-09 15:08:12 +00001085 TemplateId->RAngleLoc,
John McCall7f040a92010-12-24 02:08:15 +00001086 attrs.getList());
John McCall74256f52010-04-14 00:24:33 +00001087
1088 // Friend template-ids are treated as references unless
1089 // they have template headers, in which case they're ill-formed
1090 // (FIXME: "template <class T> friend class A<T>::B<int>;").
1091 // We diagnose this error in ActOnClassTemplateSpecialization.
John McCallf312b1e2010-08-26 23:41:50 +00001092 } else if (TUK == Sema::TUK_Reference ||
1093 (TUK == Sema::TUK_Friend &&
John McCall74256f52010-04-14 00:24:33 +00001094 TemplateInfo.Kind == ParsedTemplateInfo::NonTemplate)) {
Douglas Gregor059101f2011-03-02 00:47:37 +00001095 TypeResult = Actions.ActOnTagTemplateIdType(TUK, TagType,
1096 StartLoc,
1097 TemplateId->SS,
1098 TemplateId->Template,
1099 TemplateId->TemplateNameLoc,
1100 TemplateId->LAngleLoc,
1101 TemplateArgsPtr,
1102 TemplateId->RAngleLoc);
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001103 } else {
1104 // This is an explicit specialization or a class template
1105 // partial specialization.
1106 TemplateParameterLists FakedParamLists;
1107
1108 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation) {
1109 // This looks like an explicit instantiation, because we have
1110 // something like
1111 //
1112 // template class Foo<X>
1113 //
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001114 // but it actually has a definition. Most likely, this was
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001115 // meant to be an explicit specialization, but the user forgot
1116 // the '<>' after 'template'.
John McCallf312b1e2010-08-26 23:41:50 +00001117 assert(TUK == Sema::TUK_Definition && "Expected a definition here");
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001118
Mike Stump1eb44332009-09-09 15:08:12 +00001119 SourceLocation LAngleLoc
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001120 = PP.getLocForEndOfToken(TemplateInfo.TemplateLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00001121 Diag(TemplateId->TemplateNameLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001122 diag::err_explicit_instantiation_with_definition)
1123 << SourceRange(TemplateInfo.TemplateLoc)
Douglas Gregor849b2432010-03-31 17:46:05 +00001124 << FixItHint::CreateInsertion(LAngleLoc, "<>");
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001125
1126 // Create a fake template parameter list that contains only
1127 // "template<>", so that we treat this construct as a class
1128 // template specialization.
1129 FakedParamLists.push_back(
Mike Stump1eb44332009-09-09 15:08:12 +00001130 Actions.ActOnTemplateParameterList(0, SourceLocation(),
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001131 TemplateInfo.TemplateLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001132 LAngleLoc,
1133 0, 0,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001134 LAngleLoc));
1135 TemplateParams = &FakedParamLists;
1136 }
1137
1138 // Build the class template specialization.
1139 TagOrTempResult
Douglas Gregor23c94db2010-07-02 17:43:08 +00001140 = Actions.ActOnClassTemplateSpecialization(getCurScope(), TagType, TUK,
Douglas Gregor39a8de12009-02-25 19:37:18 +00001141 StartLoc, SS,
John McCall2b5289b2010-08-23 07:28:44 +00001142 TemplateId->Template,
Mike Stump1eb44332009-09-09 15:08:12 +00001143 TemplateId->TemplateNameLoc,
1144 TemplateId->LAngleLoc,
Douglas Gregor39a8de12009-02-25 19:37:18 +00001145 TemplateArgsPtr,
Mike Stump1eb44332009-09-09 15:08:12 +00001146 TemplateId->RAngleLoc,
John McCall7f040a92010-12-24 02:08:15 +00001147 attrs.getList(),
John McCallf312b1e2010-08-26 23:41:50 +00001148 MultiTemplateParamsArg(Actions,
Douglas Gregorcc636682009-02-17 23:15:12 +00001149 TemplateParams? &(*TemplateParams)[0] : 0,
1150 TemplateParams? TemplateParams->size() : 0));
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001151 }
Douglas Gregor39a8de12009-02-25 19:37:18 +00001152 TemplateId->Destroy();
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001153 } else if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallf312b1e2010-08-26 23:41:50 +00001154 TUK == Sema::TUK_Declaration) {
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001155 // Explicit instantiation of a member of a class template
1156 // specialization, e.g.,
1157 //
1158 // template struct Outer<int>::Inner;
1159 //
1160 TagOrTempResult
Douglas Gregor23c94db2010-07-02 17:43:08 +00001161 = Actions.ActOnExplicitInstantiation(getCurScope(),
Douglas Gregor45f96552009-09-04 06:33:52 +00001162 TemplateInfo.ExternLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001163 TemplateInfo.TemplateLoc,
1164 TagType, StartLoc, SS, Name,
John McCall7f040a92010-12-24 02:08:15 +00001165 NameLoc, attrs.getList());
John McCall9a34edb2010-10-19 01:40:49 +00001166 } else if (TUK == Sema::TUK_Friend &&
1167 TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate) {
1168 TagOrTempResult =
1169 Actions.ActOnTemplatedFriendTag(getCurScope(), DS.getFriendSpecLoc(),
1170 TagType, StartLoc, SS,
John McCall7f040a92010-12-24 02:08:15 +00001171 Name, NameLoc, attrs.getList(),
John McCall9a34edb2010-10-19 01:40:49 +00001172 MultiTemplateParamsArg(Actions,
1173 TemplateParams? &(*TemplateParams)[0] : 0,
1174 TemplateParams? TemplateParams->size() : 0));
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001175 } else {
1176 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallf312b1e2010-08-26 23:41:50 +00001177 TUK == Sema::TUK_Definition) {
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001178 // FIXME: Diagnose this particular error.
1179 }
1180
John McCallc4e70192009-09-11 04:59:25 +00001181 bool IsDependent = false;
1182
John McCalla25c4082010-10-19 18:40:57 +00001183 // Don't pass down template parameter lists if this is just a tag
1184 // reference. For example, we don't need the template parameters here:
1185 // template <class T> class A *makeA(T t);
1186 MultiTemplateParamsArg TParams;
1187 if (TUK != Sema::TUK_Reference && TemplateParams)
1188 TParams =
1189 MultiTemplateParamsArg(&(*TemplateParams)[0], TemplateParams->size());
1190
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001191 // Declaration or definition of a class type
John McCall9a34edb2010-10-19 01:40:49 +00001192 TagOrTempResult = Actions.ActOnTag(getCurScope(), TagType, TUK, StartLoc,
John McCall7f040a92010-12-24 02:08:15 +00001193 SS, Name, NameLoc, attrs.getList(), AS,
John McCalla25c4082010-10-19 18:40:57 +00001194 TParams, Owned, IsDependent, false,
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +00001195 false, clang::TypeResult());
John McCallc4e70192009-09-11 04:59:25 +00001196
1197 // If ActOnTag said the type was dependent, try again with the
1198 // less common call.
John McCall9a34edb2010-10-19 01:40:49 +00001199 if (IsDependent) {
1200 assert(TUK == Sema::TUK_Reference || TUK == Sema::TUK_Friend);
Douglas Gregor23c94db2010-07-02 17:43:08 +00001201 TypeResult = Actions.ActOnDependentTag(getCurScope(), TagType, TUK,
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001202 SS, Name, StartLoc, NameLoc);
John McCall9a34edb2010-10-19 01:40:49 +00001203 }
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001204 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001205
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001206 // If there is a body, parse it and inform the actions module.
John McCallf312b1e2010-08-26 23:41:50 +00001207 if (TUK == Sema::TUK_Definition) {
John McCallbd0dfa52009-12-19 21:48:58 +00001208 assert(Tok.is(tok::l_brace) ||
Anders Carlssoncc54d592011-01-22 16:56:46 +00001209 (getLang().CPlusPlus && Tok.is(tok::colon)) ||
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001210 isCXX0XFinalKeyword());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001211 if (getLang().CPlusPlus)
Douglas Gregor212e81c2009-03-25 00:13:59 +00001212 ParseCXXMemberSpecification(StartLoc, TagType, TagOrTempResult.get());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001213 else
Douglas Gregor212e81c2009-03-25 00:13:59 +00001214 ParseStructUnionBody(StartLoc, TagType, TagOrTempResult.get());
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001215 }
1216
John McCallb3d87482010-08-24 05:47:05 +00001217 const char *PrevSpec = 0;
1218 unsigned DiagID;
1219 bool Result;
John McCallc4e70192009-09-11 04:59:25 +00001220 if (!TypeResult.isInvalid()) {
Abramo Bagnara0daaf322011-03-16 20:16:18 +00001221 Result = DS.SetTypeSpecType(DeclSpec::TST_typename, StartLoc,
1222 NameLoc.isValid() ? NameLoc : StartLoc,
John McCallb3d87482010-08-24 05:47:05 +00001223 PrevSpec, DiagID, TypeResult.get());
John McCallc4e70192009-09-11 04:59:25 +00001224 } else if (!TagOrTempResult.isInvalid()) {
Abramo Bagnara0daaf322011-03-16 20:16:18 +00001225 Result = DS.SetTypeSpecType(TagType, StartLoc,
1226 NameLoc.isValid() ? NameLoc : StartLoc,
1227 PrevSpec, DiagID, TagOrTempResult.get(), Owned);
John McCallc4e70192009-09-11 04:59:25 +00001228 } else {
Douglas Gregorddc29e12009-02-06 22:42:48 +00001229 DS.SetTypeSpecError();
Anders Carlsson66e99772009-05-11 22:27:47 +00001230 return;
1231 }
Mike Stump1eb44332009-09-09 15:08:12 +00001232
John McCallb3d87482010-08-24 05:47:05 +00001233 if (Result)
John McCallfec54012009-08-03 20:12:06 +00001234 Diag(StartLoc, DiagID) << PrevSpec;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001235
Chris Lattner4ed5d912010-02-02 01:23:29 +00001236 // At this point, we've successfully parsed a class-specifier in 'definition'
1237 // form (e.g. "struct foo { int x; }". While we could just return here, we're
1238 // going to look at what comes after it to improve error recovery. If an
1239 // impossible token occurs next, we assume that the programmer forgot a ; at
1240 // the end of the declaration and recover that way.
1241 //
1242 // This switch enumerates the valid "follow" set for definition.
John McCallf312b1e2010-08-26 23:41:50 +00001243 if (TUK == Sema::TUK_Definition) {
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001244 bool ExpectedSemi = true;
Chris Lattner4ed5d912010-02-02 01:23:29 +00001245 switch (Tok.getKind()) {
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001246 default: break;
Chris Lattner4ed5d912010-02-02 01:23:29 +00001247 case tok::semi: // struct foo {...} ;
Chris Lattner99c95202010-02-02 17:32:27 +00001248 case tok::star: // struct foo {...} * P;
1249 case tok::amp: // struct foo {...} & R = ...
1250 case tok::identifier: // struct foo {...} V ;
1251 case tok::r_paren: //(struct foo {...} ) {4}
1252 case tok::annot_cxxscope: // struct foo {...} a:: b;
1253 case tok::annot_typename: // struct foo {...} a ::b;
1254 case tok::annot_template_id: // struct foo {...} a<int> ::b;
Chris Lattnerc2e1c1a2010-02-03 20:41:24 +00001255 case tok::l_paren: // struct foo {...} ( x);
Chris Lattner16acfee2010-02-03 01:45:03 +00001256 case tok::comma: // __builtin_offsetof(struct foo{...} ,
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001257 ExpectedSemi = false;
1258 break;
1259 // Type qualifiers
1260 case tok::kw_const: // struct foo {...} const x;
1261 case tok::kw_volatile: // struct foo {...} volatile x;
1262 case tok::kw_restrict: // struct foo {...} restrict x;
1263 case tok::kw_inline: // struct foo {...} inline foo() {};
Chris Lattner99c95202010-02-02 17:32:27 +00001264 // Storage-class specifiers
1265 case tok::kw_static: // struct foo {...} static x;
1266 case tok::kw_extern: // struct foo {...} extern x;
1267 case tok::kw_typedef: // struct foo {...} typedef x;
1268 case tok::kw_register: // struct foo {...} register x;
1269 case tok::kw_auto: // struct foo {...} auto x;
Douglas Gregor33f99242010-05-17 18:19:56 +00001270 case tok::kw_mutable: // struct foo {...} mutable x;
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001271 // As shown above, type qualifiers and storage class specifiers absolutely
1272 // can occur after class specifiers according to the grammar. However,
Chris Lattnerfc8f0e12011-04-15 05:22:18 +00001273 // almost no one actually writes code like this. If we see one of these,
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001274 // it is much more likely that someone missed a semi colon and the
1275 // type/storage class specifier we're seeing is part of the *next*
1276 // intended declaration, as in:
1277 //
1278 // struct foo { ... }
1279 // typedef int X;
1280 //
1281 // We'd really like to emit a missing semicolon error instead of emitting
1282 // an error on the 'int' saying that you can't have two type specifiers in
1283 // the same declaration of X. Because of this, we look ahead past this
1284 // token to see if it's a type specifier. If so, we know the code is
1285 // otherwise invalid, so we can produce the expected semi error.
1286 if (!isKnownToBeTypeSpecifier(NextToken()))
1287 ExpectedSemi = false;
Chris Lattner4ed5d912010-02-02 01:23:29 +00001288 break;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001289
1290 case tok::r_brace: // struct bar { struct foo {...} }
Chris Lattner4ed5d912010-02-02 01:23:29 +00001291 // Missing ';' at end of struct is accepted as an extension in C mode.
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001292 if (!getLang().CPlusPlus)
1293 ExpectedSemi = false;
1294 break;
1295 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001296
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001297 if (ExpectedSemi) {
Chris Lattner4ed5d912010-02-02 01:23:29 +00001298 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_tagdecl,
1299 TagType == DeclSpec::TST_class ? "class"
1300 : TagType == DeclSpec::TST_struct? "struct" : "union");
1301 // Push this token back into the preprocessor and change our current token
1302 // to ';' so that the rest of the code recovers as though there were an
1303 // ';' after the definition.
1304 PP.EnterToken(Tok);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001305 Tok.setKind(tok::semi);
Chris Lattner4ed5d912010-02-02 01:23:29 +00001306 }
1307 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001308}
1309
Mike Stump1eb44332009-09-09 15:08:12 +00001310/// ParseBaseClause - Parse the base-clause of a C++ class [C++ class.derived].
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001311///
1312/// base-clause : [C++ class.derived]
1313/// ':' base-specifier-list
1314/// base-specifier-list:
1315/// base-specifier '...'[opt]
1316/// base-specifier-list ',' base-specifier '...'[opt]
John McCalld226f652010-08-21 09:40:31 +00001317void Parser::ParseBaseClause(Decl *ClassDecl) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001318 assert(Tok.is(tok::colon) && "Not a base clause");
1319 ConsumeToken();
1320
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001321 // Build up an array of parsed base specifiers.
John McCallca0408f2010-08-23 06:44:23 +00001322 llvm::SmallVector<CXXBaseSpecifier *, 8> BaseInfo;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001323
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001324 while (true) {
1325 // Parse a base-specifier.
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001326 BaseResult Result = ParseBaseSpecifier(ClassDecl);
Douglas Gregor5ac8aff2009-01-26 22:44:13 +00001327 if (Result.isInvalid()) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001328 // Skip the rest of this base specifier, up until the comma or
1329 // opening brace.
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001330 SkipUntil(tok::comma, tok::l_brace, true, true);
1331 } else {
1332 // Add this to our array of base specifiers.
Douglas Gregor5ac8aff2009-01-26 22:44:13 +00001333 BaseInfo.push_back(Result.get());
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001334 }
1335
1336 // If the next token is a comma, consume it and keep reading
1337 // base-specifiers.
1338 if (Tok.isNot(tok::comma)) break;
Mike Stump1eb44332009-09-09 15:08:12 +00001339
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001340 // Consume the comma.
1341 ConsumeToken();
1342 }
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001343
1344 // Attach the base specifiers
Jay Foadbeaaccd2009-05-21 09:52:38 +00001345 Actions.ActOnBaseSpecifiers(ClassDecl, BaseInfo.data(), BaseInfo.size());
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001346}
1347
1348/// ParseBaseSpecifier - Parse a C++ base-specifier. A base-specifier is
1349/// one entry in the base class list of a class specifier, for example:
1350/// class foo : public bar, virtual private baz {
1351/// 'public bar' and 'virtual private baz' are each base-specifiers.
1352///
1353/// base-specifier: [C++ class.derived]
1354/// ::[opt] nested-name-specifier[opt] class-name
1355/// 'virtual' access-specifier[opt] ::[opt] nested-name-specifier[opt]
1356/// class-name
1357/// access-specifier 'virtual'[opt] ::[opt] nested-name-specifier[opt]
1358/// class-name
John McCalld226f652010-08-21 09:40:31 +00001359Parser::BaseResult Parser::ParseBaseSpecifier(Decl *ClassDecl) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001360 bool IsVirtual = false;
1361 SourceLocation StartLoc = Tok.getLocation();
1362
1363 // Parse the 'virtual' keyword.
1364 if (Tok.is(tok::kw_virtual)) {
1365 ConsumeToken();
1366 IsVirtual = true;
1367 }
1368
1369 // Parse an (optional) access specifier.
1370 AccessSpecifier Access = getAccessSpecifierIfPresent();
John McCall92f88312010-01-23 00:46:32 +00001371 if (Access != AS_none)
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001372 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001373
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001374 // Parse the 'virtual' keyword (again!), in case it came after the
1375 // access specifier.
1376 if (Tok.is(tok::kw_virtual)) {
1377 SourceLocation VirtualLoc = ConsumeToken();
1378 if (IsVirtual) {
1379 // Complain about duplicate 'virtual'
Chris Lattner1ab3b962008-11-18 07:48:38 +00001380 Diag(VirtualLoc, diag::err_dup_virtual)
Douglas Gregor849b2432010-03-31 17:46:05 +00001381 << FixItHint::CreateRemoval(VirtualLoc);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001382 }
1383
1384 IsVirtual = true;
1385 }
1386
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001387 // Parse optional '::' and optional nested-name-specifier.
1388 CXXScopeSpec SS;
John McCallb3d87482010-08-24 05:47:05 +00001389 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), /*EnteringContext=*/false);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001390
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001391 // The location of the base class itself.
1392 SourceLocation BaseLoc = Tok.getLocation();
Douglas Gregor42a552f2008-11-05 20:51:48 +00001393
1394 // Parse the class-name.
Douglas Gregor7f43d672009-02-25 23:52:28 +00001395 SourceLocation EndLocation;
Douglas Gregor059101f2011-03-02 00:47:37 +00001396 TypeResult BaseType = ParseClassName(EndLocation, SS);
Douglas Gregor31a19b62009-04-01 21:51:26 +00001397 if (BaseType.isInvalid())
Douglas Gregor42a552f2008-11-05 20:51:48 +00001398 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001399
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001400 // Parse the optional ellipsis (for a pack expansion). The ellipsis is
1401 // actually part of the base-specifier-list grammar productions, but we
1402 // parse it here for convenience.
1403 SourceLocation EllipsisLoc;
1404 if (Tok.is(tok::ellipsis))
1405 EllipsisLoc = ConsumeToken();
1406
Mike Stump1eb44332009-09-09 15:08:12 +00001407 // Find the complete source range for the base-specifier.
Douglas Gregor7f43d672009-02-25 23:52:28 +00001408 SourceRange Range(StartLoc, EndLocation);
Mike Stump1eb44332009-09-09 15:08:12 +00001409
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001410 // Notify semantic analysis that we have parsed a complete
1411 // base-specifier.
Sebastian Redla55e52c2008-11-25 22:21:31 +00001412 return Actions.ActOnBaseSpecifier(ClassDecl, Range, IsVirtual, Access,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001413 BaseType.get(), BaseLoc, EllipsisLoc);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001414}
1415
1416/// getAccessSpecifierIfPresent - Determine whether the next token is
1417/// a C++ access-specifier.
1418///
1419/// access-specifier: [C++ class.derived]
1420/// 'private'
1421/// 'protected'
1422/// 'public'
Mike Stump1eb44332009-09-09 15:08:12 +00001423AccessSpecifier Parser::getAccessSpecifierIfPresent() const {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001424 switch (Tok.getKind()) {
1425 default: return AS_none;
1426 case tok::kw_private: return AS_private;
1427 case tok::kw_protected: return AS_protected;
1428 case tok::kw_public: return AS_public;
1429 }
1430}
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001431
Eli Friedmand33133c2009-07-22 21:45:50 +00001432void Parser::HandleMemberFunctionDefaultArgs(Declarator& DeclaratorInfo,
John McCalld226f652010-08-21 09:40:31 +00001433 Decl *ThisDecl) {
Eli Friedmand33133c2009-07-22 21:45:50 +00001434 // We just declared a member function. If this member function
1435 // has any default arguments, we'll need to parse them later.
1436 LateParsedMethodDeclaration *LateMethod = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001437 DeclaratorChunk::FunctionTypeInfo &FTI
Abramo Bagnara075f8f12010-12-10 16:29:40 +00001438 = DeclaratorInfo.getFunctionTypeInfo();
Eli Friedmand33133c2009-07-22 21:45:50 +00001439 for (unsigned ParamIdx = 0; ParamIdx < FTI.NumArgs; ++ParamIdx) {
1440 if (LateMethod || FTI.ArgInfo[ParamIdx].DefaultArgTokens) {
1441 if (!LateMethod) {
1442 // Push this method onto the stack of late-parsed method
1443 // declarations.
Douglas Gregord54eb442010-10-12 16:25:54 +00001444 LateMethod = new LateParsedMethodDeclaration(this, ThisDecl);
1445 getCurrentClass().LateParsedDeclarations.push_back(LateMethod);
Douglas Gregor23c94db2010-07-02 17:43:08 +00001446 LateMethod->TemplateScope = getCurScope()->isTemplateParamScope();
Eli Friedmand33133c2009-07-22 21:45:50 +00001447
1448 // Add all of the parameters prior to this one (they don't
1449 // have default arguments).
1450 LateMethod->DefaultArgs.reserve(FTI.NumArgs);
1451 for (unsigned I = 0; I < ParamIdx; ++I)
1452 LateMethod->DefaultArgs.push_back(
Douglas Gregor8f8210c2010-03-02 01:29:43 +00001453 LateParsedDefaultArgument(FTI.ArgInfo[I].Param));
Eli Friedmand33133c2009-07-22 21:45:50 +00001454 }
1455
1456 // Add this parameter to the list of parameters (it or may
1457 // not have a default argument).
1458 LateMethod->DefaultArgs.push_back(
1459 LateParsedDefaultArgument(FTI.ArgInfo[ParamIdx].Param,
1460 FTI.ArgInfo[ParamIdx].DefaultArgTokens));
1461 }
1462 }
1463}
1464
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001465/// isCXX0XVirtSpecifier - Determine whether the next token is a C++0x
1466/// virt-specifier.
1467///
1468/// virt-specifier:
1469/// override
1470/// final
Anders Carlssoncc54d592011-01-22 16:56:46 +00001471VirtSpecifiers::Specifier Parser::isCXX0XVirtSpecifier() const {
Anders Carlssonce93a7c2011-01-22 23:01:49 +00001472 if (!getLang().CPlusPlus)
Anders Carlssoncc54d592011-01-22 16:56:46 +00001473 return VirtSpecifiers::VS_None;
1474
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001475 if (Tok.is(tok::identifier)) {
1476 IdentifierInfo *II = Tok.getIdentifierInfo();
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001477
Anders Carlsson7eeb4ec2011-01-20 03:47:08 +00001478 // Initialize the contextual keywords.
1479 if (!Ident_final) {
1480 Ident_final = &PP.getIdentifierTable().get("final");
1481 Ident_override = &PP.getIdentifierTable().get("override");
1482 }
1483
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001484 if (II == Ident_override)
1485 return VirtSpecifiers::VS_Override;
1486
1487 if (II == Ident_final)
1488 return VirtSpecifiers::VS_Final;
1489 }
1490
1491 return VirtSpecifiers::VS_None;
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001492}
1493
1494/// ParseOptionalCXX0XVirtSpecifierSeq - Parse a virt-specifier-seq.
1495///
1496/// virt-specifier-seq:
1497/// virt-specifier
1498/// virt-specifier-seq virt-specifier
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001499void Parser::ParseOptionalCXX0XVirtSpecifierSeq(VirtSpecifiers &VS) {
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001500 while (true) {
Anders Carlssoncc54d592011-01-22 16:56:46 +00001501 VirtSpecifiers::Specifier Specifier = isCXX0XVirtSpecifier();
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001502 if (Specifier == VirtSpecifiers::VS_None)
1503 return;
1504
1505 // C++ [class.mem]p8:
1506 // A virt-specifier-seq shall contain at most one of each virt-specifier.
Anders Carlssoncc54d592011-01-22 16:56:46 +00001507 const char *PrevSpec = 0;
Anders Carlsson46127a92011-01-22 15:58:16 +00001508 if (VS.SetSpecifier(Specifier, Tok.getLocation(), PrevSpec))
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001509 Diag(Tok.getLocation(), diag::err_duplicate_virt_specifier)
1510 << PrevSpec
1511 << FixItHint::CreateRemoval(Tok.getLocation());
1512
Anders Carlssonce93a7c2011-01-22 23:01:49 +00001513 if (!getLang().CPlusPlus0x)
1514 Diag(Tok.getLocation(), diag::ext_override_control_keyword)
1515 << VirtSpecifiers::getSpecifierName(Specifier);
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001516 ConsumeToken();
1517 }
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001518}
1519
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001520/// isCXX0XFinalKeyword - Determine whether the next token is a C++0x
1521/// contextual 'final' keyword.
1522bool Parser::isCXX0XFinalKeyword() const {
Anders Carlssonce93a7c2011-01-22 23:01:49 +00001523 if (!getLang().CPlusPlus)
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001524 return false;
Anders Carlssoncc54d592011-01-22 16:56:46 +00001525
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001526 if (!Tok.is(tok::identifier))
1527 return false;
Anders Carlssoncc54d592011-01-22 16:56:46 +00001528
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001529 // Initialize the contextual keywords.
1530 if (!Ident_final) {
1531 Ident_final = &PP.getIdentifierTable().get("final");
1532 Ident_override = &PP.getIdentifierTable().get("override");
1533 }
Anders Carlssoncc54d592011-01-22 16:56:46 +00001534
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001535 return Tok.getIdentifierInfo() == Ident_final;
Anders Carlssoncc54d592011-01-22 16:56:46 +00001536}
1537
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001538/// ParseCXXClassMemberDeclaration - Parse a C++ class member declaration.
1539///
1540/// member-declaration:
1541/// decl-specifier-seq[opt] member-declarator-list[opt] ';'
1542/// function-definition ';'[opt]
1543/// ::[opt] nested-name-specifier template[opt] unqualified-id ';'[TODO]
1544/// using-declaration [TODO]
Anders Carlsson511d7ab2009-03-11 16:27:10 +00001545/// [C++0x] static_assert-declaration
Anders Carlsson5aeccdb2009-03-26 00:52:18 +00001546/// template-declaration
Chris Lattnerbc8d5642008-12-18 01:12:00 +00001547/// [GNU] '__extension__' member-declaration
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001548///
1549/// member-declarator-list:
1550/// member-declarator
1551/// member-declarator-list ',' member-declarator
1552///
1553/// member-declarator:
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001554/// declarator virt-specifier-seq[opt] pure-specifier[opt]
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001555/// declarator constant-initializer[opt]
Richard Smith7a614d82011-06-11 17:19:42 +00001556/// [C++11] declarator brace-or-equal-initializer[opt]
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001557/// identifier[opt] ':' constant-expression
1558///
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001559/// virt-specifier-seq:
1560/// virt-specifier
1561/// virt-specifier-seq virt-specifier
1562///
1563/// virt-specifier:
1564/// override
1565/// final
1566/// new
1567///
Sebastian Redle2b68332009-04-12 17:16:29 +00001568/// pure-specifier:
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001569/// '= 0'
1570///
1571/// constant-initializer:
1572/// '=' constant-expression
1573///
Douglas Gregor37b372b2009-08-20 22:52:58 +00001574void Parser::ParseCXXClassMemberDeclaration(AccessSpecifier AS,
John McCallc9068d72010-07-16 08:13:16 +00001575 const ParsedTemplateInfo &TemplateInfo,
1576 ParsingDeclRAIIObject *TemplateDiags) {
Douglas Gregor8a9013d2011-04-14 17:21:19 +00001577 if (Tok.is(tok::at)) {
1578 if (getLang().ObjC1 && NextToken().isObjCAtKeyword(tok::objc_defs))
1579 Diag(Tok, diag::err_at_defs_cxx);
1580 else
1581 Diag(Tok, diag::err_at_in_class);
1582
1583 ConsumeToken();
1584 SkipUntil(tok::r_brace);
1585 return;
1586 }
1587
John McCall60fa3cf2009-12-11 02:10:03 +00001588 // Access declarations.
1589 if (!TemplateInfo.Kind &&
1590 (Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) &&
John McCall9ba61662010-02-26 08:45:28 +00001591 !TryAnnotateCXXScopeToken() &&
John McCall60fa3cf2009-12-11 02:10:03 +00001592 Tok.is(tok::annot_cxxscope)) {
1593 bool isAccessDecl = false;
1594 if (NextToken().is(tok::identifier))
1595 isAccessDecl = GetLookAheadToken(2).is(tok::semi);
1596 else
1597 isAccessDecl = NextToken().is(tok::kw_operator);
1598
1599 if (isAccessDecl) {
1600 // Collect the scope specifier token we annotated earlier.
1601 CXXScopeSpec SS;
John McCallb3d87482010-08-24 05:47:05 +00001602 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
John McCall60fa3cf2009-12-11 02:10:03 +00001603
1604 // Try to parse an unqualified-id.
1605 UnqualifiedId Name;
John McCallb3d87482010-08-24 05:47:05 +00001606 if (ParseUnqualifiedId(SS, false, true, true, ParsedType(), Name)) {
John McCall60fa3cf2009-12-11 02:10:03 +00001607 SkipUntil(tok::semi);
1608 return;
1609 }
1610
1611 // TODO: recover from mistakenly-qualified operator declarations.
1612 if (ExpectAndConsume(tok::semi,
1613 diag::err_expected_semi_after,
1614 "access declaration",
1615 tok::semi))
1616 return;
1617
Douglas Gregor23c94db2010-07-02 17:43:08 +00001618 Actions.ActOnUsingDeclaration(getCurScope(), AS,
John McCall60fa3cf2009-12-11 02:10:03 +00001619 false, SourceLocation(),
1620 SS, Name,
1621 /* AttrList */ 0,
1622 /* IsTypeName */ false,
1623 SourceLocation());
1624 return;
1625 }
1626 }
1627
Anders Carlsson511d7ab2009-03-11 16:27:10 +00001628 // static_assert-declaration
Peter Collingbournec6eb44b2011-04-15 00:35:57 +00001629 if (Tok.is(tok::kw_static_assert) || Tok.is(tok::kw__Static_assert)) {
Douglas Gregor37b372b2009-08-20 22:52:58 +00001630 // FIXME: Check for templates
Chris Lattner97144fc2009-04-02 04:16:50 +00001631 SourceLocation DeclEnd;
1632 ParseStaticAssertDeclaration(DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +00001633 return;
1634 }
Mike Stump1eb44332009-09-09 15:08:12 +00001635
Chris Lattner682bf922009-03-29 16:50:03 +00001636 if (Tok.is(tok::kw_template)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001637 assert(!TemplateInfo.TemplateParams &&
Douglas Gregor37b372b2009-08-20 22:52:58 +00001638 "Nested template improperly parsed?");
Chris Lattner97144fc2009-04-02 04:16:50 +00001639 SourceLocation DeclEnd;
Mike Stump1eb44332009-09-09 15:08:12 +00001640 ParseDeclarationStartingWithTemplate(Declarator::MemberContext, DeclEnd,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001641 AS);
Chris Lattner682bf922009-03-29 16:50:03 +00001642 return;
1643 }
Anders Carlsson5aeccdb2009-03-26 00:52:18 +00001644
Chris Lattnerbc8d5642008-12-18 01:12:00 +00001645 // Handle: member-declaration ::= '__extension__' member-declaration
1646 if (Tok.is(tok::kw___extension__)) {
1647 // __extension__ silences extension warnings in the subexpression.
1648 ExtensionRAIIObject O(Diags); // Use RAII to do this.
1649 ConsumeToken();
John McCallc9068d72010-07-16 08:13:16 +00001650 return ParseCXXClassMemberDeclaration(AS, TemplateInfo, TemplateDiags);
Chris Lattnerbc8d5642008-12-18 01:12:00 +00001651 }
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001652
Chris Lattner4ed5d912010-02-02 01:23:29 +00001653 // Don't parse FOO:BAR as if it were a typo for FOO::BAR, in this context it
1654 // is a bitfield.
Chris Lattnera1efc8c2009-12-10 01:59:24 +00001655 ColonProtectionRAIIObject X(*this);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001656
John McCall0b7e6782011-03-24 11:26:52 +00001657 ParsedAttributesWithRange attrs(AttrFactory);
Sean Huntbbd37c62009-11-21 08:43:09 +00001658 // Optional C++0x attribute-specifier
John McCall7f040a92010-12-24 02:08:15 +00001659 MaybeParseCXX0XAttributes(attrs);
1660 MaybeParseMicrosoftAttributes(attrs);
Sean Huntbbd37c62009-11-21 08:43:09 +00001661
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001662 if (Tok.is(tok::kw_using)) {
John McCall7f040a92010-12-24 02:08:15 +00001663 ProhibitAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +00001664
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001665 // Eat 'using'.
1666 SourceLocation UsingLoc = ConsumeToken();
1667
1668 if (Tok.is(tok::kw_namespace)) {
1669 Diag(UsingLoc, diag::err_using_namespace_in_class);
1670 SkipUntil(tok::semi, true, true);
Chris Lattnerae50d502010-02-02 00:43:15 +00001671 } else {
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001672 SourceLocation DeclEnd;
Richard Smith3e4c6c42011-05-05 21:57:07 +00001673 // Otherwise, it must be a using-declaration or an alias-declaration.
John McCall78b81052010-11-10 02:40:36 +00001674 ParseUsingDeclaration(Declarator::MemberContext, TemplateInfo,
1675 UsingLoc, DeclEnd, AS);
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001676 }
1677 return;
1678 }
1679
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001680 // decl-specifier-seq:
1681 // Parse the common declaration-specifiers piece.
John McCallc9068d72010-07-16 08:13:16 +00001682 ParsingDeclSpec DS(*this, TemplateDiags);
John McCall7f040a92010-12-24 02:08:15 +00001683 DS.takeAttributesFrom(attrs);
Douglas Gregor37b372b2009-08-20 22:52:58 +00001684 ParseDeclarationSpecifiers(DS, TemplateInfo, AS, DSC_class);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001685
John McCallf312b1e2010-08-26 23:41:50 +00001686 MultiTemplateParamsArg TemplateParams(Actions,
John McCalldd4a3b02009-09-16 22:47:08 +00001687 TemplateInfo.TemplateParams? TemplateInfo.TemplateParams->data() : 0,
1688 TemplateInfo.TemplateParams? TemplateInfo.TemplateParams->size() : 0);
1689
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001690 if (Tok.is(tok::semi)) {
1691 ConsumeToken();
John McCalld226f652010-08-21 09:40:31 +00001692 Decl *TheDecl =
Chandler Carruth0f4be742011-05-03 18:35:10 +00001693 Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS, DS, TemplateParams);
John McCallc9068d72010-07-16 08:13:16 +00001694 DS.complete(TheDecl);
John McCall67d1a672009-08-06 02:15:43 +00001695 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001696 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001697
John McCall54abf7d2009-11-04 02:18:39 +00001698 ParsingDeclarator DeclaratorInfo(*this, DS, Declarator::MemberContext);
Nico Weber48673472011-01-28 06:07:34 +00001699 VirtSpecifiers VS;
Francois Pichet6a247472011-05-11 02:14:46 +00001700 ExprResult Init;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001701
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001702 if (Tok.isNot(tok::colon)) {
Chris Lattnera1efc8c2009-12-10 01:59:24 +00001703 // Don't parse FOO:BAR as if it were a typo for FOO::BAR.
1704 ColonProtectionRAIIObject X(*this);
1705
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001706 // Parse the first declarator.
1707 ParseDeclarator(DeclaratorInfo);
1708 // Error parsing the declarator?
Douglas Gregor10bd3682008-11-17 22:58:34 +00001709 if (!DeclaratorInfo.hasName()) {
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001710 // If so, skip until the semi-colon or a }.
Sebastian Redld941fa42011-04-24 16:27:48 +00001711 SkipUntil(tok::r_brace, true, true);
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001712 if (Tok.is(tok::semi))
1713 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001714 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001715 }
1716
Nico Weber48673472011-01-28 06:07:34 +00001717 ParseOptionalCXX0XVirtSpecifierSeq(VS);
1718
John Thompson1b2fc0f2009-11-25 22:58:06 +00001719 // If attributes exist after the declarator, but before an '{', parse them.
John McCall7f040a92010-12-24 02:08:15 +00001720 MaybeParseGNUAttributes(DeclaratorInfo);
John Thompson1b2fc0f2009-11-25 22:58:06 +00001721
Francois Pichet6a247472011-05-11 02:14:46 +00001722 // MSVC permits pure specifier on inline functions declared at class scope.
1723 // Hence check for =0 before checking for function definition.
1724 if (getLang().Microsoft && Tok.is(tok::equal) &&
1725 DeclaratorInfo.isFunctionDeclarator() &&
1726 NextToken().is(tok::numeric_constant)) {
1727 ConsumeToken();
1728 Init = ParseInitializer();
1729 if (Init.isInvalid())
1730 SkipUntil(tok::comma, true, true);
1731 }
1732
Sean Hunte4246a62011-05-12 06:15:49 +00001733 bool IsDefinition = false;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001734 // function-definition:
Richard Smith7a614d82011-06-11 17:19:42 +00001735 //
1736 // In C++11, a non-function declarator followed by an open brace is a
1737 // braced-init-list for an in-class member initialization, not an
1738 // erroneous function definition.
1739 if (Tok.is(tok::l_brace) && !getLang().CPlusPlus0x) {
Sean Hunte4246a62011-05-12 06:15:49 +00001740 IsDefinition = true;
1741 } else if (DeclaratorInfo.isFunctionDeclarator()) {
Richard Smith7a614d82011-06-11 17:19:42 +00001742 if (Tok.is(tok::l_brace) || Tok.is(tok::colon) || Tok.is(tok::kw_try)) {
Sean Hunte4246a62011-05-12 06:15:49 +00001743 IsDefinition = true;
1744 } else if (Tok.is(tok::equal)) {
1745 const Token &KW = NextToken();
1746 if (KW.is(tok::kw_default) || KW.is(tok::kw_delete))
1747 IsDefinition = true;
1748 }
1749 }
1750
1751 if (IsDefinition) {
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001752 if (!DeclaratorInfo.isFunctionDeclarator()) {
1753 Diag(Tok, diag::err_func_def_no_params);
1754 ConsumeBrace();
1755 SkipUntil(tok::r_brace, true);
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001756
1757 // Consume the optional ';'
1758 if (Tok.is(tok::semi))
1759 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001760 return;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001761 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001762
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001763 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
1764 Diag(Tok, diag::err_function_declared_typedef);
1765 // This recovery skips the entire function body. It would be nice
1766 // to simply call ParseCXXInlineMethodDef() below, however Sema
1767 // assumes the declarator represents a function, not a typedef.
1768 ConsumeBrace();
1769 SkipUntil(tok::r_brace, true);
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001770
1771 // Consume the optional ';'
1772 if (Tok.is(tok::semi))
1773 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001774 return;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001775 }
1776
Francois Pichet6a247472011-05-11 02:14:46 +00001777 ParseCXXInlineMethodDef(AS, DeclaratorInfo, TemplateInfo, VS, Init);
Sean Hunte4246a62011-05-12 06:15:49 +00001778
1779 // Consume the ';' - it's optional unless we have a delete or default
1780 if (Tok.is(tok::semi)) {
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001781 ConsumeToken();
Sean Hunte4246a62011-05-12 06:15:49 +00001782 }
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001783
Chris Lattner682bf922009-03-29 16:50:03 +00001784 return;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001785 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001786 }
1787
1788 // member-declarator-list:
1789 // member-declarator
1790 // member-declarator-list ',' member-declarator
1791
John McCalld226f652010-08-21 09:40:31 +00001792 llvm::SmallVector<Decl *, 8> DeclsInGroup;
John McCall60d7b3a2010-08-24 06:29:42 +00001793 ExprResult BitfieldSize;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001794
1795 while (1) {
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001796 // member-declarator:
1797 // declarator pure-specifier[opt]
Richard Smith7a614d82011-06-11 17:19:42 +00001798 // declarator brace-or-equal-initializer[opt]
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001799 // identifier[opt] ':' constant-expression
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001800 if (Tok.is(tok::colon)) {
1801 ConsumeToken();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001802 BitfieldSize = ParseConstantExpression();
1803 if (BitfieldSize.isInvalid())
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001804 SkipUntil(tok::comma, true, true);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001805 }
Mike Stump1eb44332009-09-09 15:08:12 +00001806
Chris Lattnere6563252010-06-13 05:34:18 +00001807 // If a simple-asm-expr is present, parse it.
1808 if (Tok.is(tok::kw_asm)) {
1809 SourceLocation Loc;
John McCall60d7b3a2010-08-24 06:29:42 +00001810 ExprResult AsmLabel(ParseSimpleAsm(&Loc));
Chris Lattnere6563252010-06-13 05:34:18 +00001811 if (AsmLabel.isInvalid())
1812 SkipUntil(tok::comma, true, true);
1813
1814 DeclaratorInfo.setAsmLabel(AsmLabel.release());
1815 DeclaratorInfo.SetRangeEnd(Loc);
1816 }
1817
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001818 // If attributes exist after the declarator, parse them.
John McCall7f040a92010-12-24 02:08:15 +00001819 MaybeParseGNUAttributes(DeclaratorInfo);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001820
Richard Smith7a614d82011-06-11 17:19:42 +00001821 // FIXME: When g++ adds support for this, we'll need to check whether it
1822 // goes before or after the GNU attributes and __asm__.
1823 ParseOptionalCXX0XVirtSpecifierSeq(VS);
1824
1825 bool HasDeferredInitializer = false;
1826 if (Tok.is(tok::equal) || Tok.is(tok::l_brace)) {
1827 if (BitfieldSize.get()) {
1828 Diag(Tok, diag::err_bitfield_member_init);
1829 SkipUntil(tok::comma, true, true);
1830 } else {
1831 HasDeferredInitializer = !DeclaratorInfo.isFunctionDeclarator() &&
1832 DeclaratorInfo.getDeclSpec().getStorageClassSpec()
Richard Smithc2cdd532011-06-12 11:43:46 +00001833 != DeclSpec::SCS_static &&
1834 DeclaratorInfo.getDeclSpec().getStorageClassSpec()
1835 != DeclSpec::SCS_typedef;
Richard Smith7a614d82011-06-11 17:19:42 +00001836
1837 if (!HasDeferredInitializer) {
1838 SourceLocation EqualLoc;
1839 Init = ParseCXXMemberInitializer(
1840 DeclaratorInfo.isFunctionDeclarator(), EqualLoc);
1841 if (Init.isInvalid())
1842 SkipUntil(tok::comma, true, true);
1843 }
1844 }
1845 }
1846
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001847 // NOTE: If Sema is the Action module and declarator is an instance field,
Chris Lattner682bf922009-03-29 16:50:03 +00001848 // this call will *not* return the created decl; It will return null.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001849 // See Sema::ActOnCXXMemberDeclarator for details.
John McCall67d1a672009-08-06 02:15:43 +00001850
John McCalld226f652010-08-21 09:40:31 +00001851 Decl *ThisDecl = 0;
John McCall67d1a672009-08-06 02:15:43 +00001852 if (DS.isFriendSpecified()) {
John McCallbbbcdd92009-09-11 21:02:39 +00001853 // TODO: handle initializers, bitfields, 'delete'
Douglas Gregor23c94db2010-07-02 17:43:08 +00001854 ThisDecl = Actions.ActOnFriendFunctionDecl(getCurScope(), DeclaratorInfo,
John McCallbbbcdd92009-09-11 21:02:39 +00001855 /*IsDefinition*/ false,
1856 move(TemplateParams));
Douglas Gregor37b372b2009-08-20 22:52:58 +00001857 } else {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001858 ThisDecl = Actions.ActOnCXXMemberDeclarator(getCurScope(), AS,
John McCall67d1a672009-08-06 02:15:43 +00001859 DeclaratorInfo,
Douglas Gregor37b372b2009-08-20 22:52:58 +00001860 move(TemplateParams),
John McCall67d1a672009-08-06 02:15:43 +00001861 BitfieldSize.release(),
Richard Smith7a614d82011-06-11 17:19:42 +00001862 VS, Init.release(),
1863 HasDeferredInitializer,
1864 /*IsDefinition*/ false);
Douglas Gregor37b372b2009-08-20 22:52:58 +00001865 }
Chris Lattner682bf922009-03-29 16:50:03 +00001866 if (ThisDecl)
1867 DeclsInGroup.push_back(ThisDecl);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001868
Douglas Gregor72b505b2008-12-16 21:30:33 +00001869 if (DeclaratorInfo.isFunctionDeclarator() &&
Mike Stump1eb44332009-09-09 15:08:12 +00001870 DeclaratorInfo.getDeclSpec().getStorageClassSpec()
Douglas Gregor72b505b2008-12-16 21:30:33 +00001871 != DeclSpec::SCS_typedef) {
Eli Friedmand33133c2009-07-22 21:45:50 +00001872 HandleMemberFunctionDefaultArgs(DeclaratorInfo, ThisDecl);
Douglas Gregor72b505b2008-12-16 21:30:33 +00001873 }
1874
John McCall54abf7d2009-11-04 02:18:39 +00001875 DeclaratorInfo.complete(ThisDecl);
1876
Richard Smith7a614d82011-06-11 17:19:42 +00001877 if (HasDeferredInitializer) {
1878 if (!getLang().CPlusPlus0x)
1879 Diag(Tok, diag::warn_nonstatic_member_init_accepted_as_extension);
1880
1881 if (DeclaratorInfo.isArrayOfUnknownBound()) {
1882 // C++0x [dcl.array]p3: An array bound may also be omitted when the
1883 // declarator is followed by an initializer.
1884 //
1885 // A brace-or-equal-initializer for a member-declarator is not an
1886 // initializer in the gramamr, so this is ill-formed.
1887 Diag(Tok, diag::err_incomplete_array_member_init);
1888 SkipUntil(tok::comma, true, true);
1889 // Avoid later warnings about a class member of incomplete type.
1890 ThisDecl->setInvalidDecl();
1891 } else
1892 ParseCXXNonStaticMemberInitializer(ThisDecl);
1893 }
1894
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001895 // If we don't have a comma, it is either the end of the list (a ';')
1896 // or an error, bail out.
1897 if (Tok.isNot(tok::comma))
1898 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001899
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001900 // Consume the comma.
1901 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001902
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001903 // Parse the next declarator.
1904 DeclaratorInfo.clear();
Nico Weber48673472011-01-28 06:07:34 +00001905 VS.clear();
Sebastian Redl15faa7f2008-12-09 20:22:58 +00001906 BitfieldSize = 0;
1907 Init = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001908
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001909 // Attributes are only allowed on the second declarator.
John McCall7f040a92010-12-24 02:08:15 +00001910 MaybeParseGNUAttributes(DeclaratorInfo);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001911
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001912 if (Tok.isNot(tok::colon))
1913 ParseDeclarator(DeclaratorInfo);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001914 }
1915
Chris Lattnerae50d502010-02-02 00:43:15 +00001916 if (ExpectAndConsume(tok::semi, diag::err_expected_semi_decl_list)) {
1917 // Skip to end of block or statement.
1918 SkipUntil(tok::r_brace, true, true);
1919 // If we stopped at a ';', eat it.
1920 if (Tok.is(tok::semi)) ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001921 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001922 }
1923
Douglas Gregor23c94db2010-07-02 17:43:08 +00001924 Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup.data(),
Chris Lattnerae50d502010-02-02 00:43:15 +00001925 DeclsInGroup.size());
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001926}
1927
Richard Smith7a614d82011-06-11 17:19:42 +00001928/// ParseCXXMemberInitializer - Parse the brace-or-equal-initializer or
1929/// pure-specifier. Also detect and reject any attempted defaulted/deleted
1930/// function definition. The location of the '=', if any, will be placed in
1931/// EqualLoc.
1932///
1933/// pure-specifier:
1934/// '= 0'
1935///
1936/// brace-or-equal-initializer:
1937/// '=' initializer-expression
1938/// braced-init-list [TODO]
1939///
1940/// initializer-clause:
1941/// assignment-expression
1942/// braced-init-list [TODO]
1943///
1944/// defaulted/deleted function-definition:
1945/// '=' 'default'
1946/// '=' 'delete'
1947///
1948/// Prior to C++0x, the assignment-expression in an initializer-clause must
1949/// be a constant-expression.
1950ExprResult Parser::ParseCXXMemberInitializer(bool IsFunction,
1951 SourceLocation &EqualLoc) {
1952 assert((Tok.is(tok::equal) || Tok.is(tok::l_brace))
1953 && "Data member initializer not starting with '=' or '{'");
1954
1955 if (Tok.is(tok::equal)) {
1956 EqualLoc = ConsumeToken();
1957 if (Tok.is(tok::kw_delete)) {
1958 // In principle, an initializer of '= delete p;' is legal, but it will
1959 // never type-check. It's better to diagnose it as an ill-formed expression
1960 // than as an ill-formed deleted non-function member.
1961 // An initializer of '= delete p, foo' will never be parsed, because
1962 // a top-level comma always ends the initializer expression.
1963 const Token &Next = NextToken();
1964 if (IsFunction || Next.is(tok::semi) || Next.is(tok::comma) ||
1965 Next.is(tok::eof)) {
1966 if (IsFunction)
1967 Diag(ConsumeToken(), diag::err_default_delete_in_multiple_declaration)
1968 << 1 /* delete */;
1969 else
1970 Diag(ConsumeToken(), diag::err_deleted_non_function);
1971 return ExprResult();
1972 }
1973 } else if (Tok.is(tok::kw_default)) {
1974 Diag(ConsumeToken(), diag::err_default_special_members);
1975 if (IsFunction)
1976 Diag(Tok, diag::err_default_delete_in_multiple_declaration)
1977 << 0 /* default */;
1978 else
1979 Diag(ConsumeToken(), diag::err_default_special_members);
1980 return ExprResult();
1981 }
1982
1983 return ParseInitializer();
1984 } else
1985 return ExprError(Diag(Tok, diag::err_generalized_initializer_lists));
1986}
1987
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001988/// ParseCXXMemberSpecification - Parse the class definition.
1989///
1990/// member-specification:
1991/// member-declaration member-specification[opt]
1992/// access-specifier ':' member-specification[opt]
1993///
1994void Parser::ParseCXXMemberSpecification(SourceLocation RecordLoc,
John McCalld226f652010-08-21 09:40:31 +00001995 unsigned TagType, Decl *TagDecl) {
Sanjiv Gupta31fc07d2008-10-31 09:52:39 +00001996 assert((TagType == DeclSpec::TST_struct ||
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001997 TagType == DeclSpec::TST_union ||
Sanjiv Gupta31fc07d2008-10-31 09:52:39 +00001998 TagType == DeclSpec::TST_class) && "Invalid TagType!");
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001999
John McCallf312b1e2010-08-26 23:41:50 +00002000 PrettyDeclStackTraceEntry CrashInfo(Actions, TagDecl, RecordLoc,
2001 "parsing struct/union/class body");
Mike Stump1eb44332009-09-09 15:08:12 +00002002
Douglas Gregor26997fd2010-01-16 20:52:59 +00002003 // Determine whether this is a non-nested class. Note that local
2004 // classes are *not* considered to be nested classes.
2005 bool NonNestedClass = true;
2006 if (!ClassStack.empty()) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00002007 for (const Scope *S = getCurScope(); S; S = S->getParent()) {
Douglas Gregor26997fd2010-01-16 20:52:59 +00002008 if (S->isClassScope()) {
2009 // We're inside a class scope, so this is a nested class.
2010 NonNestedClass = false;
2011 break;
2012 }
2013
2014 if ((S->getFlags() & Scope::FnScope)) {
2015 // If we're in a function or function template declared in the
2016 // body of a class, then this is a local class rather than a
2017 // nested class.
2018 const Scope *Parent = S->getParent();
2019 if (Parent->isTemplateParamScope())
2020 Parent = Parent->getParent();
2021 if (Parent->isClassScope())
2022 break;
2023 }
2024 }
2025 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002026
2027 // Enter a scope for the class.
Douglas Gregor3218c4b2009-01-09 22:42:13 +00002028 ParseScope ClassScope(this, Scope::ClassScope|Scope::DeclScope);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002029
Douglas Gregor6569d682009-05-27 23:11:45 +00002030 // Note that we are parsing a new (potentially-nested) class definition.
Douglas Gregor26997fd2010-01-16 20:52:59 +00002031 ParsingClassDefinition ParsingDef(*this, TagDecl, NonNestedClass);
Douglas Gregor6569d682009-05-27 23:11:45 +00002032
Douglas Gregorddc29e12009-02-06 22:42:48 +00002033 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002034 Actions.ActOnTagStartDefinition(getCurScope(), TagDecl);
John McCallbd0dfa52009-12-19 21:48:58 +00002035
Anders Carlssonb184a182011-03-25 14:46:08 +00002036 SourceLocation FinalLoc;
2037
2038 // Parse the optional 'final' keyword.
2039 if (getLang().CPlusPlus && Tok.is(tok::identifier)) {
2040 IdentifierInfo *II = Tok.getIdentifierInfo();
2041
2042 // Initialize the contextual keywords.
2043 if (!Ident_final) {
2044 Ident_final = &PP.getIdentifierTable().get("final");
2045 Ident_override = &PP.getIdentifierTable().get("override");
2046 }
2047
2048 if (II == Ident_final)
2049 FinalLoc = ConsumeToken();
2050
2051 if (!getLang().CPlusPlus0x)
2052 Diag(FinalLoc, diag::ext_override_control_keyword) << "final";
2053 }
Anders Carlssoncc54d592011-01-22 16:56:46 +00002054
John McCallbd0dfa52009-12-19 21:48:58 +00002055 if (Tok.is(tok::colon)) {
2056 ParseBaseClause(TagDecl);
2057
2058 if (!Tok.is(tok::l_brace)) {
2059 Diag(Tok, diag::err_expected_lbrace_after_base_specifiers);
John McCalldb7bb4a2010-03-17 00:38:33 +00002060
2061 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002062 Actions.ActOnTagDefinitionError(getCurScope(), TagDecl);
John McCallbd0dfa52009-12-19 21:48:58 +00002063 return;
2064 }
2065 }
2066
2067 assert(Tok.is(tok::l_brace));
2068
2069 SourceLocation LBraceLoc = ConsumeBrace();
2070
John McCall42a4f662010-05-28 08:11:17 +00002071 if (TagDecl)
Anders Carlsson2c3ee542011-03-25 14:31:08 +00002072 Actions.ActOnStartCXXMemberDeclarations(getCurScope(), TagDecl, FinalLoc,
Anders Carlssondfc2f102011-01-22 17:51:53 +00002073 LBraceLoc);
John McCallf9368152009-12-20 07:58:13 +00002074
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002075 // C++ 11p3: Members of a class defined with the keyword class are private
2076 // by default. Members of a class defined with the keywords struct or union
2077 // are public by default.
2078 AccessSpecifier CurAS;
2079 if (TagType == DeclSpec::TST_class)
2080 CurAS = AS_private;
2081 else
2082 CurAS = AS_public;
2083
Douglas Gregor07976d22010-06-21 22:31:09 +00002084 SourceLocation RBraceLoc;
2085 if (TagDecl) {
2086 // While we still have something to read, read the member-declarations.
2087 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
2088 // Each iteration of this loop reads one member-declaration.
Mike Stump1eb44332009-09-09 15:08:12 +00002089
Francois Pichet563a6452011-05-25 10:19:49 +00002090 if (getLang().Microsoft && (Tok.is(tok::kw___if_exists) ||
2091 Tok.is(tok::kw___if_not_exists))) {
2092 ParseMicrosoftIfExistsClassDeclaration((DeclSpec::TST)TagType, CurAS);
2093 continue;
2094 }
2095
Douglas Gregor07976d22010-06-21 22:31:09 +00002096 // Check for extraneous top-level semicolon.
2097 if (Tok.is(tok::semi)) {
2098 Diag(Tok, diag::ext_extra_struct_semi)
2099 << DeclSpec::getSpecifierName((DeclSpec::TST)TagType)
2100 << FixItHint::CreateRemoval(Tok.getLocation());
2101 ConsumeToken();
2102 continue;
2103 }
2104
2105 AccessSpecifier AS = getAccessSpecifierIfPresent();
2106 if (AS != AS_none) {
2107 // Current token is a C++ access specifier.
2108 CurAS = AS;
2109 SourceLocation ASLoc = Tok.getLocation();
2110 ConsumeToken();
2111 if (Tok.is(tok::colon))
2112 Actions.ActOnAccessSpecifier(AS, ASLoc, Tok.getLocation());
2113 else
2114 Diag(Tok, diag::err_expected_colon);
2115 ConsumeToken();
2116 continue;
2117 }
2118
2119 // FIXME: Make sure we don't have a template here.
2120
2121 // Parse all the comma separated declarators.
2122 ParseCXXClassMemberDeclaration(CurAS);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002123 }
2124
Douglas Gregor07976d22010-06-21 22:31:09 +00002125 RBraceLoc = MatchRHSPunctuation(tok::r_brace, LBraceLoc);
2126 } else {
2127 SkipUntil(tok::r_brace, false, false);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002128 }
Mike Stump1eb44332009-09-09 15:08:12 +00002129
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002130 // If attributes exist after class contents, parse them.
John McCall0b7e6782011-03-24 11:26:52 +00002131 ParsedAttributes attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +00002132 MaybeParseGNUAttributes(attrs);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002133
John McCall42a4f662010-05-28 08:11:17 +00002134 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002135 Actions.ActOnFinishCXXMemberSpecification(getCurScope(), RecordLoc, TagDecl,
John McCall42a4f662010-05-28 08:11:17 +00002136 LBraceLoc, RBraceLoc,
John McCall7f040a92010-12-24 02:08:15 +00002137 attrs.getList());
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002138
Richard Smith7a614d82011-06-11 17:19:42 +00002139 // C++0x [class.mem]p2: Within the class member-specification, the class is
2140 // regarded as complete within function bodies, default arguments, exception-
2141 // specifications, and brace-or-equal-initializers for non-static data
2142 // members (including such things in nested classes).
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002143 //
Richard Smith7a614d82011-06-11 17:19:42 +00002144 // FIXME: Only function bodies and brace-or-equal-initializers are currently
2145 // handled. Fix the others!
Douglas Gregor07976d22010-06-21 22:31:09 +00002146 if (TagDecl && NonNestedClass) {
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002147 // We are not inside a nested class. This class and its nested classes
Douglas Gregor72b505b2008-12-16 21:30:33 +00002148 // are complete and we can parse the delayed portions of method
2149 // declarations and the lexed inline method definitions.
Douglas Gregore0cc0472010-06-16 23:45:56 +00002150 SourceLocation SavedPrevTokLocation = PrevTokLocation;
Douglas Gregor6569d682009-05-27 23:11:45 +00002151 ParseLexedMethodDeclarations(getCurrentClass());
Richard Smith7a614d82011-06-11 17:19:42 +00002152 ParseLexedMemberInitializers(getCurrentClass());
Douglas Gregor6569d682009-05-27 23:11:45 +00002153 ParseLexedMethodDefs(getCurrentClass());
Douglas Gregore0cc0472010-06-16 23:45:56 +00002154 PrevTokLocation = SavedPrevTokLocation;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002155 }
2156
John McCall42a4f662010-05-28 08:11:17 +00002157 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002158 Actions.ActOnTagFinishDefinition(getCurScope(), TagDecl, RBraceLoc);
John McCalldb7bb4a2010-03-17 00:38:33 +00002159
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002160 // Leave the class scope.
Douglas Gregor6569d682009-05-27 23:11:45 +00002161 ParsingDef.Pop();
Douglas Gregor8935b8b2008-12-10 06:34:36 +00002162 ClassScope.Exit();
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002163}
Douglas Gregor7ad83902008-11-05 04:29:56 +00002164
2165/// ParseConstructorInitializer - Parse a C++ constructor initializer,
2166/// which explicitly initializes the members or base classes of a
2167/// class (C++ [class.base.init]). For example, the three initializers
2168/// after the ':' in the Derived constructor below:
2169///
2170/// @code
2171/// class Base { };
2172/// class Derived : Base {
2173/// int x;
2174/// float f;
2175/// public:
2176/// Derived(float f) : Base(), x(17), f(f) { }
2177/// };
2178/// @endcode
2179///
Mike Stump1eb44332009-09-09 15:08:12 +00002180/// [C++] ctor-initializer:
2181/// ':' mem-initializer-list
Douglas Gregor7ad83902008-11-05 04:29:56 +00002182///
Mike Stump1eb44332009-09-09 15:08:12 +00002183/// [C++] mem-initializer-list:
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002184/// mem-initializer ...[opt]
2185/// mem-initializer ...[opt] , mem-initializer-list
John McCalld226f652010-08-21 09:40:31 +00002186void Parser::ParseConstructorInitializer(Decl *ConstructorDecl) {
Douglas Gregor7ad83902008-11-05 04:29:56 +00002187 assert(Tok.is(tok::colon) && "Constructor initializer always starts with ':'");
2188
John Wiegley28bbe4b2011-04-28 01:08:34 +00002189 // Poison the SEH identifiers so they are flagged as illegal in constructor initializers
2190 PoisonSEHIdentifiersRAIIObject PoisonSEHIdentifiers(*this, true);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002191 SourceLocation ColonLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00002192
Sean Huntcbb67482011-01-08 20:30:50 +00002193 llvm::SmallVector<CXXCtorInitializer*, 4> MemInitializers;
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002194 bool AnyErrors = false;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002195
Douglas Gregor7ad83902008-11-05 04:29:56 +00002196 do {
Douglas Gregor0133f522010-08-28 00:00:50 +00002197 if (Tok.is(tok::code_completion)) {
2198 Actions.CodeCompleteConstructorInitializer(ConstructorDecl,
2199 MemInitializers.data(),
2200 MemInitializers.size());
2201 ConsumeCodeCompletionToken();
2202 } else {
2203 MemInitResult MemInit = ParseMemInitializer(ConstructorDecl);
2204 if (!MemInit.isInvalid())
2205 MemInitializers.push_back(MemInit.get());
2206 else
2207 AnyErrors = true;
2208 }
2209
Douglas Gregor7ad83902008-11-05 04:29:56 +00002210 if (Tok.is(tok::comma))
2211 ConsumeToken();
2212 else if (Tok.is(tok::l_brace))
2213 break;
Douglas Gregorb1f6fa42010-09-07 14:35:10 +00002214 // If the next token looks like a base or member initializer, assume that
2215 // we're just missing a comma.
Douglas Gregor751f6922010-09-07 14:51:08 +00002216 else if (Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) {
2217 SourceLocation Loc = PP.getLocForEndOfToken(PrevTokLocation);
2218 Diag(Loc, diag::err_ctor_init_missing_comma)
2219 << FixItHint::CreateInsertion(Loc, ", ");
2220 } else {
Douglas Gregor7ad83902008-11-05 04:29:56 +00002221 // Skip over garbage, until we get to '{'. Don't eat the '{'.
Sebastian Redld3a413d2009-04-26 20:35:05 +00002222 Diag(Tok.getLocation(), diag::err_expected_lbrace_or_comma);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002223 SkipUntil(tok::l_brace, true, true);
2224 break;
2225 }
2226 } while (true);
2227
Mike Stump1eb44332009-09-09 15:08:12 +00002228 Actions.ActOnMemInitializers(ConstructorDecl, ColonLoc,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002229 MemInitializers.data(), MemInitializers.size(),
2230 AnyErrors);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002231}
2232
2233/// ParseMemInitializer - Parse a C++ member initializer, which is
2234/// part of a constructor initializer that explicitly initializes one
2235/// member or base class (C++ [class.base.init]). See
2236/// ParseConstructorInitializer for an example.
2237///
2238/// [C++] mem-initializer:
2239/// mem-initializer-id '(' expression-list[opt] ')'
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002240/// [C++0x] mem-initializer-id braced-init-list
Mike Stump1eb44332009-09-09 15:08:12 +00002241///
Douglas Gregor7ad83902008-11-05 04:29:56 +00002242/// [C++] mem-initializer-id:
2243/// '::'[opt] nested-name-specifier[opt] class-name
2244/// identifier
John McCalld226f652010-08-21 09:40:31 +00002245Parser::MemInitResult Parser::ParseMemInitializer(Decl *ConstructorDecl) {
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00002246 // parse '::'[opt] nested-name-specifier[opt]
2247 CXXScopeSpec SS;
John McCallb3d87482010-08-24 05:47:05 +00002248 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
2249 ParsedType TemplateTypeTy;
Fariborz Jahanian96174332009-07-01 19:21:19 +00002250 if (Tok.is(tok::annot_template_id)) {
2251 TemplateIdAnnotation *TemplateId
2252 = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
Douglas Gregord9b600c2010-01-12 17:52:59 +00002253 if (TemplateId->Kind == TNK_Type_template ||
2254 TemplateId->Kind == TNK_Dependent_template_name) {
Douglas Gregor059101f2011-03-02 00:47:37 +00002255 AnnotateTemplateIdTokenAsType();
Fariborz Jahanian96174332009-07-01 19:21:19 +00002256 assert(Tok.is(tok::annot_typename) && "template-id -> type failed");
John McCallb3d87482010-08-24 05:47:05 +00002257 TemplateTypeTy = getTypeAnnotation(Tok);
Fariborz Jahanian96174332009-07-01 19:21:19 +00002258 }
Fariborz Jahanian96174332009-07-01 19:21:19 +00002259 }
2260 if (!TemplateTypeTy && Tok.isNot(tok::identifier)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00002261 Diag(Tok, diag::err_expected_member_or_base_name);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002262 return true;
2263 }
Mike Stump1eb44332009-09-09 15:08:12 +00002264
Douglas Gregor7ad83902008-11-05 04:29:56 +00002265 // Get the identifier. This may be a member name or a class name,
2266 // but we'll let the semantic analysis determine which it is.
Fariborz Jahanian96174332009-07-01 19:21:19 +00002267 IdentifierInfo *II = Tok.is(tok::identifier) ? Tok.getIdentifierInfo() : 0;
Douglas Gregor7ad83902008-11-05 04:29:56 +00002268 SourceLocation IdLoc = ConsumeToken();
2269
2270 // Parse the '('.
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002271 if (getLang().CPlusPlus0x && Tok.is(tok::l_brace)) {
2272 // FIXME: Do something with the braced-init-list.
2273 ParseBraceInitializer();
Douglas Gregor7ad83902008-11-05 04:29:56 +00002274 return true;
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002275 } else if(Tok.is(tok::l_paren)) {
2276 SourceLocation LParenLoc = ConsumeParen();
Douglas Gregor7ad83902008-11-05 04:29:56 +00002277
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002278 // Parse the optional expression-list.
2279 ExprVector ArgExprs(Actions);
2280 CommaLocsTy CommaLocs;
2281 if (Tok.isNot(tok::r_paren) && ParseExpressionList(ArgExprs, CommaLocs)) {
2282 SkipUntil(tok::r_paren);
2283 return true;
2284 }
2285
2286 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
2287
2288 SourceLocation EllipsisLoc;
2289 if (Tok.is(tok::ellipsis))
2290 EllipsisLoc = ConsumeToken();
2291
2292 return Actions.ActOnMemInitializer(ConstructorDecl, getCurScope(), SS, II,
2293 TemplateTypeTy, IdLoc,
2294 LParenLoc, ArgExprs.take(),
2295 ArgExprs.size(), RParenLoc,
2296 EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002297 }
2298
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002299 Diag(Tok, getLang().CPlusPlus0x ? diag::err_expected_lparen_or_lbrace
2300 : diag::err_expected_lparen);
2301 return true;
Douglas Gregor7ad83902008-11-05 04:29:56 +00002302}
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002303
Sebastian Redl7acafd02011-03-05 14:45:16 +00002304/// \brief Parse a C++ exception-specification if present (C++0x [except.spec]).
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002305///
Douglas Gregora4745612008-12-01 18:00:20 +00002306/// exception-specification:
Sebastian Redl7acafd02011-03-05 14:45:16 +00002307/// dynamic-exception-specification
2308/// noexcept-specification
2309///
2310/// noexcept-specification:
2311/// 'noexcept'
2312/// 'noexcept' '(' constant-expression ')'
2313ExceptionSpecificationType
2314Parser::MaybeParseExceptionSpecification(SourceRange &SpecificationRange,
2315 llvm::SmallVectorImpl<ParsedType> &DynamicExceptions,
2316 llvm::SmallVectorImpl<SourceRange> &DynamicExceptionRanges,
2317 ExprResult &NoexceptExpr) {
2318 ExceptionSpecificationType Result = EST_None;
2319
2320 // See if there's a dynamic specification.
2321 if (Tok.is(tok::kw_throw)) {
2322 Result = ParseDynamicExceptionSpecification(SpecificationRange,
2323 DynamicExceptions,
2324 DynamicExceptionRanges);
2325 assert(DynamicExceptions.size() == DynamicExceptionRanges.size() &&
2326 "Produced different number of exception types and ranges.");
2327 }
2328
2329 // If there's no noexcept specification, we're done.
2330 if (Tok.isNot(tok::kw_noexcept))
2331 return Result;
2332
2333 // If we already had a dynamic specification, parse the noexcept for,
2334 // recovery, but emit a diagnostic and don't store the results.
2335 SourceRange NoexceptRange;
2336 ExceptionSpecificationType NoexceptType = EST_None;
2337
2338 SourceLocation KeywordLoc = ConsumeToken();
2339 if (Tok.is(tok::l_paren)) {
2340 // There is an argument.
2341 SourceLocation LParenLoc = ConsumeParen();
2342 NoexceptType = EST_ComputedNoexcept;
2343 NoexceptExpr = ParseConstantExpression();
Sebastian Redl60618fa2011-03-12 11:50:43 +00002344 // The argument must be contextually convertible to bool. We use
2345 // ActOnBooleanCondition for this purpose.
2346 if (!NoexceptExpr.isInvalid())
2347 NoexceptExpr = Actions.ActOnBooleanCondition(getCurScope(), KeywordLoc,
2348 NoexceptExpr.get());
Sebastian Redl7acafd02011-03-05 14:45:16 +00002349 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
2350 NoexceptRange = SourceRange(KeywordLoc, RParenLoc);
2351 } else {
2352 // There is no argument.
2353 NoexceptType = EST_BasicNoexcept;
2354 NoexceptRange = SourceRange(KeywordLoc, KeywordLoc);
2355 }
2356
2357 if (Result == EST_None) {
2358 SpecificationRange = NoexceptRange;
2359 Result = NoexceptType;
2360
2361 // If there's a dynamic specification after a noexcept specification,
2362 // parse that and ignore the results.
2363 if (Tok.is(tok::kw_throw)) {
2364 Diag(Tok.getLocation(), diag::err_dynamic_and_noexcept_specification);
2365 ParseDynamicExceptionSpecification(NoexceptRange, DynamicExceptions,
2366 DynamicExceptionRanges);
2367 }
2368 } else {
2369 Diag(Tok.getLocation(), diag::err_dynamic_and_noexcept_specification);
2370 }
2371
2372 return Result;
2373}
2374
2375/// ParseDynamicExceptionSpecification - Parse a C++
2376/// dynamic-exception-specification (C++ [except.spec]).
2377///
2378/// dynamic-exception-specification:
Douglas Gregora4745612008-12-01 18:00:20 +00002379/// 'throw' '(' type-id-list [opt] ')'
2380/// [MS] 'throw' '(' '...' ')'
Mike Stump1eb44332009-09-09 15:08:12 +00002381///
Douglas Gregora4745612008-12-01 18:00:20 +00002382/// type-id-list:
Douglas Gregora04426c2010-12-20 23:57:46 +00002383/// type-id ... [opt]
2384/// type-id-list ',' type-id ... [opt]
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002385///
Sebastian Redl7acafd02011-03-05 14:45:16 +00002386ExceptionSpecificationType Parser::ParseDynamicExceptionSpecification(
2387 SourceRange &SpecificationRange,
2388 llvm::SmallVectorImpl<ParsedType> &Exceptions,
2389 llvm::SmallVectorImpl<SourceRange> &Ranges) {
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002390 assert(Tok.is(tok::kw_throw) && "expected throw");
Mike Stump1eb44332009-09-09 15:08:12 +00002391
Sebastian Redl7acafd02011-03-05 14:45:16 +00002392 SpecificationRange.setBegin(ConsumeToken());
Mike Stump1eb44332009-09-09 15:08:12 +00002393
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002394 if (!Tok.is(tok::l_paren)) {
Sebastian Redl7acafd02011-03-05 14:45:16 +00002395 Diag(Tok, diag::err_expected_lparen_after) << "throw";
2396 SpecificationRange.setEnd(SpecificationRange.getBegin());
Sebastian Redl60618fa2011-03-12 11:50:43 +00002397 return EST_DynamicNone;
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002398 }
2399 SourceLocation LParenLoc = ConsumeParen();
2400
Douglas Gregora4745612008-12-01 18:00:20 +00002401 // Parse throw(...), a Microsoft extension that means "this function
2402 // can throw anything".
2403 if (Tok.is(tok::ellipsis)) {
2404 SourceLocation EllipsisLoc = ConsumeToken();
2405 if (!getLang().Microsoft)
2406 Diag(EllipsisLoc, diag::ext_ellipsis_exception_spec);
Sebastian Redl7acafd02011-03-05 14:45:16 +00002407 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
2408 SpecificationRange.setEnd(RParenLoc);
Sebastian Redl60618fa2011-03-12 11:50:43 +00002409 return EST_MSAny;
Douglas Gregora4745612008-12-01 18:00:20 +00002410 }
2411
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002412 // Parse the sequence of type-ids.
Sebastian Redlef65f062009-05-29 18:02:33 +00002413 SourceRange Range;
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002414 while (Tok.isNot(tok::r_paren)) {
Sebastian Redlef65f062009-05-29 18:02:33 +00002415 TypeResult Res(ParseTypeName(&Range));
Sebastian Redl7acafd02011-03-05 14:45:16 +00002416
Douglas Gregora04426c2010-12-20 23:57:46 +00002417 if (Tok.is(tok::ellipsis)) {
2418 // C++0x [temp.variadic]p5:
2419 // - In a dynamic-exception-specification (15.4); the pattern is a
2420 // type-id.
2421 SourceLocation Ellipsis = ConsumeToken();
Sebastian Redl7acafd02011-03-05 14:45:16 +00002422 Range.setEnd(Ellipsis);
Douglas Gregora04426c2010-12-20 23:57:46 +00002423 if (!Res.isInvalid())
2424 Res = Actions.ActOnPackExpansion(Res.get(), Ellipsis);
2425 }
Sebastian Redl7acafd02011-03-05 14:45:16 +00002426
Sebastian Redlef65f062009-05-29 18:02:33 +00002427 if (!Res.isInvalid()) {
Sebastian Redl7dc81342009-04-29 17:30:04 +00002428 Exceptions.push_back(Res.get());
Sebastian Redlef65f062009-05-29 18:02:33 +00002429 Ranges.push_back(Range);
2430 }
Douglas Gregora04426c2010-12-20 23:57:46 +00002431
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002432 if (Tok.is(tok::comma))
2433 ConsumeToken();
Sebastian Redl7dc81342009-04-29 17:30:04 +00002434 else
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002435 break;
2436 }
2437
Sebastian Redl7acafd02011-03-05 14:45:16 +00002438 SpecificationRange.setEnd(MatchRHSPunctuation(tok::r_paren, LParenLoc));
Sebastian Redl60618fa2011-03-12 11:50:43 +00002439 return Exceptions.empty() ? EST_DynamicNone : EST_Dynamic;
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002440}
Douglas Gregor6569d682009-05-27 23:11:45 +00002441
Douglas Gregordab60ad2010-10-01 18:44:50 +00002442/// ParseTrailingReturnType - Parse a trailing return type on a new-style
2443/// function declaration.
2444TypeResult Parser::ParseTrailingReturnType() {
2445 assert(Tok.is(tok::arrow) && "expected arrow");
2446
2447 ConsumeToken();
2448
2449 // FIXME: Need to suppress declarations when parsing this typename.
2450 // Otherwise in this function definition:
2451 //
2452 // auto f() -> struct X {}
2453 //
2454 // struct X is parsed as class definition because of the trailing
2455 // brace.
2456
2457 SourceRange Range;
2458 return ParseTypeName(&Range);
2459}
2460
Douglas Gregor6569d682009-05-27 23:11:45 +00002461/// \brief We have just started parsing the definition of a new class,
2462/// so push that class onto our stack of classes that is currently
2463/// being parsed.
John McCalleee1d542011-02-14 07:13:47 +00002464Sema::ParsingClassState
2465Parser::PushParsingClass(Decl *ClassDecl, bool NonNestedClass) {
Douglas Gregor26997fd2010-01-16 20:52:59 +00002466 assert((NonNestedClass || !ClassStack.empty()) &&
Douglas Gregor6569d682009-05-27 23:11:45 +00002467 "Nested class without outer class");
Douglas Gregor26997fd2010-01-16 20:52:59 +00002468 ClassStack.push(new ParsingClass(ClassDecl, NonNestedClass));
John McCalleee1d542011-02-14 07:13:47 +00002469 return Actions.PushParsingClass();
Douglas Gregor6569d682009-05-27 23:11:45 +00002470}
2471
2472/// \brief Deallocate the given parsed class and all of its nested
2473/// classes.
2474void Parser::DeallocateParsedClasses(Parser::ParsingClass *Class) {
Douglas Gregord54eb442010-10-12 16:25:54 +00002475 for (unsigned I = 0, N = Class->LateParsedDeclarations.size(); I != N; ++I)
2476 delete Class->LateParsedDeclarations[I];
Douglas Gregor6569d682009-05-27 23:11:45 +00002477 delete Class;
2478}
2479
2480/// \brief Pop the top class of the stack of classes that are
2481/// currently being parsed.
2482///
2483/// This routine should be called when we have finished parsing the
2484/// definition of a class, but have not yet popped the Scope
2485/// associated with the class's definition.
2486///
2487/// \returns true if the class we've popped is a top-level class,
2488/// false otherwise.
John McCalleee1d542011-02-14 07:13:47 +00002489void Parser::PopParsingClass(Sema::ParsingClassState state) {
Douglas Gregor6569d682009-05-27 23:11:45 +00002490 assert(!ClassStack.empty() && "Mismatched push/pop for class parsing");
Mike Stump1eb44332009-09-09 15:08:12 +00002491
John McCalleee1d542011-02-14 07:13:47 +00002492 Actions.PopParsingClass(state);
2493
Douglas Gregor6569d682009-05-27 23:11:45 +00002494 ParsingClass *Victim = ClassStack.top();
2495 ClassStack.pop();
2496 if (Victim->TopLevelClass) {
2497 // Deallocate all of the nested classes of this class,
2498 // recursively: we don't need to keep any of this information.
2499 DeallocateParsedClasses(Victim);
2500 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002501 }
Douglas Gregor6569d682009-05-27 23:11:45 +00002502 assert(!ClassStack.empty() && "Missing top-level class?");
2503
Douglas Gregord54eb442010-10-12 16:25:54 +00002504 if (Victim->LateParsedDeclarations.empty()) {
Douglas Gregor6569d682009-05-27 23:11:45 +00002505 // The victim is a nested class, but we will not need to perform
2506 // any processing after the definition of this class since it has
2507 // no members whose handling was delayed. Therefore, we can just
2508 // remove this nested class.
Douglas Gregord54eb442010-10-12 16:25:54 +00002509 DeallocateParsedClasses(Victim);
Douglas Gregor6569d682009-05-27 23:11:45 +00002510 return;
2511 }
2512
2513 // This nested class has some members that will need to be processed
2514 // after the top-level class is completely defined. Therefore, add
2515 // it to the list of nested classes within its parent.
Douglas Gregor23c94db2010-07-02 17:43:08 +00002516 assert(getCurScope()->isClassScope() && "Nested class outside of class scope?");
Douglas Gregord54eb442010-10-12 16:25:54 +00002517 ClassStack.top()->LateParsedDeclarations.push_back(new LateParsedClass(this, Victim));
Douglas Gregor23c94db2010-07-02 17:43:08 +00002518 Victim->TemplateScope = getCurScope()->getParent()->isTemplateParamScope();
Douglas Gregor6569d682009-05-27 23:11:45 +00002519}
Sean Huntbbd37c62009-11-21 08:43:09 +00002520
2521/// ParseCXX0XAttributes - Parse a C++0x attribute-specifier. Currently only
2522/// parses standard attributes.
2523///
2524/// [C++0x] attribute-specifier:
2525/// '[' '[' attribute-list ']' ']'
2526///
2527/// [C++0x] attribute-list:
2528/// attribute[opt]
2529/// attribute-list ',' attribute[opt]
2530///
2531/// [C++0x] attribute:
2532/// attribute-token attribute-argument-clause[opt]
2533///
2534/// [C++0x] attribute-token:
2535/// identifier
2536/// attribute-scoped-token
2537///
2538/// [C++0x] attribute-scoped-token:
2539/// attribute-namespace '::' identifier
2540///
2541/// [C++0x] attribute-namespace:
2542/// identifier
2543///
2544/// [C++0x] attribute-argument-clause:
2545/// '(' balanced-token-seq ')'
2546///
2547/// [C++0x] balanced-token-seq:
2548/// balanced-token
2549/// balanced-token-seq balanced-token
2550///
2551/// [C++0x] balanced-token:
2552/// '(' balanced-token-seq ')'
2553/// '[' balanced-token-seq ']'
2554/// '{' balanced-token-seq '}'
2555/// any token but '(', ')', '[', ']', '{', or '}'
John McCall7f040a92010-12-24 02:08:15 +00002556void Parser::ParseCXX0XAttributes(ParsedAttributesWithRange &attrs,
2557 SourceLocation *endLoc) {
Sean Huntbbd37c62009-11-21 08:43:09 +00002558 assert(Tok.is(tok::l_square) && NextToken().is(tok::l_square)
2559 && "Not a C++0x attribute list");
2560
2561 SourceLocation StartLoc = Tok.getLocation(), Loc;
Sean Huntbbd37c62009-11-21 08:43:09 +00002562
2563 ConsumeBracket();
2564 ConsumeBracket();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002565
Sean Huntbbd37c62009-11-21 08:43:09 +00002566 if (Tok.is(tok::comma)) {
2567 Diag(Tok.getLocation(), diag::err_expected_ident);
2568 ConsumeToken();
2569 }
2570
2571 while (Tok.is(tok::identifier) || Tok.is(tok::comma)) {
2572 // attribute not present
2573 if (Tok.is(tok::comma)) {
2574 ConsumeToken();
2575 continue;
2576 }
2577
2578 IdentifierInfo *ScopeName = 0, *AttrName = Tok.getIdentifierInfo();
2579 SourceLocation ScopeLoc, AttrLoc = ConsumeToken();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002580
Sean Huntbbd37c62009-11-21 08:43:09 +00002581 // scoped attribute
2582 if (Tok.is(tok::coloncolon)) {
2583 ConsumeToken();
2584
2585 if (!Tok.is(tok::identifier)) {
2586 Diag(Tok.getLocation(), diag::err_expected_ident);
2587 SkipUntil(tok::r_square, tok::comma, true, true);
2588 continue;
2589 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002590
Sean Huntbbd37c62009-11-21 08:43:09 +00002591 ScopeName = AttrName;
2592 ScopeLoc = AttrLoc;
2593
2594 AttrName = Tok.getIdentifierInfo();
2595 AttrLoc = ConsumeToken();
2596 }
2597
2598 bool AttrParsed = false;
2599 // No scoped names are supported; ideally we could put all non-standard
2600 // attributes into namespaces.
2601 if (!ScopeName) {
2602 switch(AttributeList::getKind(AttrName))
2603 {
2604 // No arguments
Sean Hunt7725e672009-11-25 04:20:27 +00002605 case AttributeList::AT_carries_dependency:
Anders Carlsson15e14a22011-01-23 21:33:18 +00002606 case AttributeList::AT_noreturn: {
Sean Huntbbd37c62009-11-21 08:43:09 +00002607 if (Tok.is(tok::l_paren)) {
2608 Diag(Tok.getLocation(), diag::err_cxx0x_attribute_forbids_arguments)
2609 << AttrName->getName();
2610 break;
2611 }
2612
John McCall0b7e6782011-03-24 11:26:52 +00002613 attrs.addNew(AttrName, AttrLoc, 0, AttrLoc, 0,
2614 SourceLocation(), 0, 0, false, true);
Sean Huntbbd37c62009-11-21 08:43:09 +00002615 AttrParsed = true;
2616 break;
2617 }
2618
2619 // One argument; must be a type-id or assignment-expression
2620 case AttributeList::AT_aligned: {
2621 if (Tok.isNot(tok::l_paren)) {
2622 Diag(Tok.getLocation(), diag::err_cxx0x_attribute_requires_arguments)
2623 << AttrName->getName();
2624 break;
2625 }
2626 SourceLocation ParamLoc = ConsumeParen();
2627
John McCall60d7b3a2010-08-24 06:29:42 +00002628 ExprResult ArgExpr = ParseCXX0XAlignArgument(ParamLoc);
Sean Huntbbd37c62009-11-21 08:43:09 +00002629
2630 MatchRHSPunctuation(tok::r_paren, ParamLoc);
2631
2632 ExprVector ArgExprs(Actions);
2633 ArgExprs.push_back(ArgExpr.release());
John McCall0b7e6782011-03-24 11:26:52 +00002634 attrs.addNew(AttrName, AttrLoc, 0, AttrLoc,
2635 0, ParamLoc, ArgExprs.take(), 1,
2636 false, true);
Sean Huntbbd37c62009-11-21 08:43:09 +00002637
2638 AttrParsed = true;
2639 break;
2640 }
2641
2642 // Silence warnings
2643 default: break;
2644 }
2645 }
2646
2647 // Skip the entire parameter clause, if any
2648 if (!AttrParsed && Tok.is(tok::l_paren)) {
2649 ConsumeParen();
2650 // SkipUntil maintains the balancedness of tokens.
2651 SkipUntil(tok::r_paren, false);
2652 }
2653 }
2654
2655 if (ExpectAndConsume(tok::r_square, diag::err_expected_rsquare))
2656 SkipUntil(tok::r_square, false);
2657 Loc = Tok.getLocation();
2658 if (ExpectAndConsume(tok::r_square, diag::err_expected_rsquare))
2659 SkipUntil(tok::r_square, false);
2660
John McCall7f040a92010-12-24 02:08:15 +00002661 attrs.Range = SourceRange(StartLoc, Loc);
Sean Huntbbd37c62009-11-21 08:43:09 +00002662}
2663
2664/// ParseCXX0XAlignArgument - Parse the argument to C++0x's [[align]]
2665/// attribute.
2666///
2667/// FIXME: Simply returns an alignof() expression if the argument is a
2668/// type. Ideally, the type should be propagated directly into Sema.
2669///
2670/// [C++0x] 'align' '(' type-id ')'
2671/// [C++0x] 'align' '(' assignment-expression ')'
John McCall60d7b3a2010-08-24 06:29:42 +00002672ExprResult Parser::ParseCXX0XAlignArgument(SourceLocation Start) {
Sean Huntbbd37c62009-11-21 08:43:09 +00002673 if (isTypeIdInParens()) {
John McCallf312b1e2010-08-26 23:41:50 +00002674 EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated);
Sean Huntbbd37c62009-11-21 08:43:09 +00002675 SourceLocation TypeLoc = Tok.getLocation();
John McCallb3d87482010-08-24 05:47:05 +00002676 ParsedType Ty = ParseTypeName().get();
Sean Huntbbd37c62009-11-21 08:43:09 +00002677 SourceRange TypeRange(Start, Tok.getLocation());
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002678 return Actions.ActOnUnaryExprOrTypeTraitExpr(TypeLoc, UETT_AlignOf, true,
2679 Ty.getAsOpaquePtr(), TypeRange);
Sean Huntbbd37c62009-11-21 08:43:09 +00002680 } else
2681 return ParseConstantExpression();
2682}
Francois Pichet334d47e2010-10-11 12:59:39 +00002683
2684/// ParseMicrosoftAttributes - Parse a Microsoft attribute [Attr]
2685///
2686/// [MS] ms-attribute:
2687/// '[' token-seq ']'
2688///
2689/// [MS] ms-attribute-seq:
2690/// ms-attribute[opt]
2691/// ms-attribute ms-attribute-seq
John McCall7f040a92010-12-24 02:08:15 +00002692void Parser::ParseMicrosoftAttributes(ParsedAttributes &attrs,
2693 SourceLocation *endLoc) {
Francois Pichet334d47e2010-10-11 12:59:39 +00002694 assert(Tok.is(tok::l_square) && "Not a Microsoft attribute list");
2695
2696 while (Tok.is(tok::l_square)) {
2697 ConsumeBracket();
2698 SkipUntil(tok::r_square, true, true);
John McCall7f040a92010-12-24 02:08:15 +00002699 if (endLoc) *endLoc = Tok.getLocation();
Francois Pichet334d47e2010-10-11 12:59:39 +00002700 ExpectAndConsume(tok::r_square, diag::err_expected_rsquare);
2701 }
2702}
Francois Pichet563a6452011-05-25 10:19:49 +00002703
2704void Parser::ParseMicrosoftIfExistsClassDeclaration(DeclSpec::TST TagType,
2705 AccessSpecifier& CurAS) {
2706 bool Result;
2707 if (ParseMicrosoftIfExistsCondition(Result))
2708 return;
2709
2710 if (Tok.isNot(tok::l_brace)) {
2711 Diag(Tok, diag::err_expected_lbrace);
2712 return;
2713 }
2714 ConsumeBrace();
2715
2716 // Condition is false skip all inside the {}.
2717 if (!Result) {
2718 SkipUntil(tok::r_brace, false);
2719 return;
2720 }
2721
2722 // Condition is true, parse the declaration.
2723 while (Tok.isNot(tok::r_brace)) {
2724
2725 // __if_exists, __if_not_exists can nest.
2726 if ((Tok.is(tok::kw___if_exists) || Tok.is(tok::kw___if_not_exists))) {
2727 ParseMicrosoftIfExistsClassDeclaration((DeclSpec::TST)TagType, CurAS);
2728 continue;
2729 }
2730
2731 // Check for extraneous top-level semicolon.
2732 if (Tok.is(tok::semi)) {
2733 Diag(Tok, diag::ext_extra_struct_semi)
2734 << DeclSpec::getSpecifierName((DeclSpec::TST)TagType)
2735 << FixItHint::CreateRemoval(Tok.getLocation());
2736 ConsumeToken();
2737 continue;
2738 }
2739
2740 AccessSpecifier AS = getAccessSpecifierIfPresent();
2741 if (AS != AS_none) {
2742 // Current token is a C++ access specifier.
2743 CurAS = AS;
2744 SourceLocation ASLoc = Tok.getLocation();
2745 ConsumeToken();
2746 if (Tok.is(tok::colon))
2747 Actions.ActOnAccessSpecifier(AS, ASLoc, Tok.getLocation());
2748 else
2749 Diag(Tok, diag::err_expected_colon);
2750 ConsumeToken();
2751 continue;
2752 }
2753
2754 // Parse all the comma separated declarators.
2755 ParseCXXClassMemberDeclaration(CurAS);
2756 }
2757
2758 if (Tok.isNot(tok::r_brace)) {
2759 Diag(Tok, diag::err_expected_rbrace);
2760 return;
2761 }
2762 ConsumeBrace();
2763}