blob: 51aa01091e730ab4947bb685f6e6d2631426fc3c [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()
1833 != DeclSpec::SCS_static;
1834
1835 if (!HasDeferredInitializer) {
1836 SourceLocation EqualLoc;
1837 Init = ParseCXXMemberInitializer(
1838 DeclaratorInfo.isFunctionDeclarator(), EqualLoc);
1839 if (Init.isInvalid())
1840 SkipUntil(tok::comma, true, true);
1841 }
1842 }
1843 }
1844
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001845 // NOTE: If Sema is the Action module and declarator is an instance field,
Chris Lattner682bf922009-03-29 16:50:03 +00001846 // this call will *not* return the created decl; It will return null.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001847 // See Sema::ActOnCXXMemberDeclarator for details.
John McCall67d1a672009-08-06 02:15:43 +00001848
John McCalld226f652010-08-21 09:40:31 +00001849 Decl *ThisDecl = 0;
John McCall67d1a672009-08-06 02:15:43 +00001850 if (DS.isFriendSpecified()) {
John McCallbbbcdd92009-09-11 21:02:39 +00001851 // TODO: handle initializers, bitfields, 'delete'
Douglas Gregor23c94db2010-07-02 17:43:08 +00001852 ThisDecl = Actions.ActOnFriendFunctionDecl(getCurScope(), DeclaratorInfo,
John McCallbbbcdd92009-09-11 21:02:39 +00001853 /*IsDefinition*/ false,
1854 move(TemplateParams));
Douglas Gregor37b372b2009-08-20 22:52:58 +00001855 } else {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001856 ThisDecl = Actions.ActOnCXXMemberDeclarator(getCurScope(), AS,
John McCall67d1a672009-08-06 02:15:43 +00001857 DeclaratorInfo,
Douglas Gregor37b372b2009-08-20 22:52:58 +00001858 move(TemplateParams),
John McCall67d1a672009-08-06 02:15:43 +00001859 BitfieldSize.release(),
Richard Smith7a614d82011-06-11 17:19:42 +00001860 VS, Init.release(),
1861 HasDeferredInitializer,
1862 /*IsDefinition*/ false);
Douglas Gregor37b372b2009-08-20 22:52:58 +00001863 }
Chris Lattner682bf922009-03-29 16:50:03 +00001864 if (ThisDecl)
1865 DeclsInGroup.push_back(ThisDecl);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001866
Douglas Gregor72b505b2008-12-16 21:30:33 +00001867 if (DeclaratorInfo.isFunctionDeclarator() &&
Mike Stump1eb44332009-09-09 15:08:12 +00001868 DeclaratorInfo.getDeclSpec().getStorageClassSpec()
Douglas Gregor72b505b2008-12-16 21:30:33 +00001869 != DeclSpec::SCS_typedef) {
Eli Friedmand33133c2009-07-22 21:45:50 +00001870 HandleMemberFunctionDefaultArgs(DeclaratorInfo, ThisDecl);
Douglas Gregor72b505b2008-12-16 21:30:33 +00001871 }
1872
John McCall54abf7d2009-11-04 02:18:39 +00001873 DeclaratorInfo.complete(ThisDecl);
1874
Richard Smith7a614d82011-06-11 17:19:42 +00001875 if (HasDeferredInitializer) {
1876 if (!getLang().CPlusPlus0x)
1877 Diag(Tok, diag::warn_nonstatic_member_init_accepted_as_extension);
1878
1879 if (DeclaratorInfo.isArrayOfUnknownBound()) {
1880 // C++0x [dcl.array]p3: An array bound may also be omitted when the
1881 // declarator is followed by an initializer.
1882 //
1883 // A brace-or-equal-initializer for a member-declarator is not an
1884 // initializer in the gramamr, so this is ill-formed.
1885 Diag(Tok, diag::err_incomplete_array_member_init);
1886 SkipUntil(tok::comma, true, true);
1887 // Avoid later warnings about a class member of incomplete type.
1888 ThisDecl->setInvalidDecl();
1889 } else
1890 ParseCXXNonStaticMemberInitializer(ThisDecl);
1891 }
1892
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001893 // If we don't have a comma, it is either the end of the list (a ';')
1894 // or an error, bail out.
1895 if (Tok.isNot(tok::comma))
1896 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001897
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001898 // Consume the comma.
1899 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001900
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001901 // Parse the next declarator.
1902 DeclaratorInfo.clear();
Nico Weber48673472011-01-28 06:07:34 +00001903 VS.clear();
Sebastian Redl15faa7f2008-12-09 20:22:58 +00001904 BitfieldSize = 0;
1905 Init = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001906
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001907 // Attributes are only allowed on the second declarator.
John McCall7f040a92010-12-24 02:08:15 +00001908 MaybeParseGNUAttributes(DeclaratorInfo);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001909
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001910 if (Tok.isNot(tok::colon))
1911 ParseDeclarator(DeclaratorInfo);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001912 }
1913
Chris Lattnerae50d502010-02-02 00:43:15 +00001914 if (ExpectAndConsume(tok::semi, diag::err_expected_semi_decl_list)) {
1915 // Skip to end of block or statement.
1916 SkipUntil(tok::r_brace, true, true);
1917 // If we stopped at a ';', eat it.
1918 if (Tok.is(tok::semi)) ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001919 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001920 }
1921
Douglas Gregor23c94db2010-07-02 17:43:08 +00001922 Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup.data(),
Chris Lattnerae50d502010-02-02 00:43:15 +00001923 DeclsInGroup.size());
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001924}
1925
Richard Smith7a614d82011-06-11 17:19:42 +00001926/// ParseCXXMemberInitializer - Parse the brace-or-equal-initializer or
1927/// pure-specifier. Also detect and reject any attempted defaulted/deleted
1928/// function definition. The location of the '=', if any, will be placed in
1929/// EqualLoc.
1930///
1931/// pure-specifier:
1932/// '= 0'
1933///
1934/// brace-or-equal-initializer:
1935/// '=' initializer-expression
1936/// braced-init-list [TODO]
1937///
1938/// initializer-clause:
1939/// assignment-expression
1940/// braced-init-list [TODO]
1941///
1942/// defaulted/deleted function-definition:
1943/// '=' 'default'
1944/// '=' 'delete'
1945///
1946/// Prior to C++0x, the assignment-expression in an initializer-clause must
1947/// be a constant-expression.
1948ExprResult Parser::ParseCXXMemberInitializer(bool IsFunction,
1949 SourceLocation &EqualLoc) {
1950 assert((Tok.is(tok::equal) || Tok.is(tok::l_brace))
1951 && "Data member initializer not starting with '=' or '{'");
1952
1953 if (Tok.is(tok::equal)) {
1954 EqualLoc = ConsumeToken();
1955 if (Tok.is(tok::kw_delete)) {
1956 // In principle, an initializer of '= delete p;' is legal, but it will
1957 // never type-check. It's better to diagnose it as an ill-formed expression
1958 // than as an ill-formed deleted non-function member.
1959 // An initializer of '= delete p, foo' will never be parsed, because
1960 // a top-level comma always ends the initializer expression.
1961 const Token &Next = NextToken();
1962 if (IsFunction || Next.is(tok::semi) || Next.is(tok::comma) ||
1963 Next.is(tok::eof)) {
1964 if (IsFunction)
1965 Diag(ConsumeToken(), diag::err_default_delete_in_multiple_declaration)
1966 << 1 /* delete */;
1967 else
1968 Diag(ConsumeToken(), diag::err_deleted_non_function);
1969 return ExprResult();
1970 }
1971 } else if (Tok.is(tok::kw_default)) {
1972 Diag(ConsumeToken(), diag::err_default_special_members);
1973 if (IsFunction)
1974 Diag(Tok, diag::err_default_delete_in_multiple_declaration)
1975 << 0 /* default */;
1976 else
1977 Diag(ConsumeToken(), diag::err_default_special_members);
1978 return ExprResult();
1979 }
1980
1981 return ParseInitializer();
1982 } else
1983 return ExprError(Diag(Tok, diag::err_generalized_initializer_lists));
1984}
1985
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001986/// ParseCXXMemberSpecification - Parse the class definition.
1987///
1988/// member-specification:
1989/// member-declaration member-specification[opt]
1990/// access-specifier ':' member-specification[opt]
1991///
1992void Parser::ParseCXXMemberSpecification(SourceLocation RecordLoc,
John McCalld226f652010-08-21 09:40:31 +00001993 unsigned TagType, Decl *TagDecl) {
Sanjiv Gupta31fc07d2008-10-31 09:52:39 +00001994 assert((TagType == DeclSpec::TST_struct ||
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001995 TagType == DeclSpec::TST_union ||
Sanjiv Gupta31fc07d2008-10-31 09:52:39 +00001996 TagType == DeclSpec::TST_class) && "Invalid TagType!");
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001997
John McCallf312b1e2010-08-26 23:41:50 +00001998 PrettyDeclStackTraceEntry CrashInfo(Actions, TagDecl, RecordLoc,
1999 "parsing struct/union/class body");
Mike Stump1eb44332009-09-09 15:08:12 +00002000
Douglas Gregor26997fd2010-01-16 20:52:59 +00002001 // Determine whether this is a non-nested class. Note that local
2002 // classes are *not* considered to be nested classes.
2003 bool NonNestedClass = true;
2004 if (!ClassStack.empty()) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00002005 for (const Scope *S = getCurScope(); S; S = S->getParent()) {
Douglas Gregor26997fd2010-01-16 20:52:59 +00002006 if (S->isClassScope()) {
2007 // We're inside a class scope, so this is a nested class.
2008 NonNestedClass = false;
2009 break;
2010 }
2011
2012 if ((S->getFlags() & Scope::FnScope)) {
2013 // If we're in a function or function template declared in the
2014 // body of a class, then this is a local class rather than a
2015 // nested class.
2016 const Scope *Parent = S->getParent();
2017 if (Parent->isTemplateParamScope())
2018 Parent = Parent->getParent();
2019 if (Parent->isClassScope())
2020 break;
2021 }
2022 }
2023 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002024
2025 // Enter a scope for the class.
Douglas Gregor3218c4b2009-01-09 22:42:13 +00002026 ParseScope ClassScope(this, Scope::ClassScope|Scope::DeclScope);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002027
Douglas Gregor6569d682009-05-27 23:11:45 +00002028 // Note that we are parsing a new (potentially-nested) class definition.
Douglas Gregor26997fd2010-01-16 20:52:59 +00002029 ParsingClassDefinition ParsingDef(*this, TagDecl, NonNestedClass);
Douglas Gregor6569d682009-05-27 23:11:45 +00002030
Douglas Gregorddc29e12009-02-06 22:42:48 +00002031 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002032 Actions.ActOnTagStartDefinition(getCurScope(), TagDecl);
John McCallbd0dfa52009-12-19 21:48:58 +00002033
Anders Carlssonb184a182011-03-25 14:46:08 +00002034 SourceLocation FinalLoc;
2035
2036 // Parse the optional 'final' keyword.
2037 if (getLang().CPlusPlus && Tok.is(tok::identifier)) {
2038 IdentifierInfo *II = Tok.getIdentifierInfo();
2039
2040 // Initialize the contextual keywords.
2041 if (!Ident_final) {
2042 Ident_final = &PP.getIdentifierTable().get("final");
2043 Ident_override = &PP.getIdentifierTable().get("override");
2044 }
2045
2046 if (II == Ident_final)
2047 FinalLoc = ConsumeToken();
2048
2049 if (!getLang().CPlusPlus0x)
2050 Diag(FinalLoc, diag::ext_override_control_keyword) << "final";
2051 }
Anders Carlssoncc54d592011-01-22 16:56:46 +00002052
John McCallbd0dfa52009-12-19 21:48:58 +00002053 if (Tok.is(tok::colon)) {
2054 ParseBaseClause(TagDecl);
2055
2056 if (!Tok.is(tok::l_brace)) {
2057 Diag(Tok, diag::err_expected_lbrace_after_base_specifiers);
John McCalldb7bb4a2010-03-17 00:38:33 +00002058
2059 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002060 Actions.ActOnTagDefinitionError(getCurScope(), TagDecl);
John McCallbd0dfa52009-12-19 21:48:58 +00002061 return;
2062 }
2063 }
2064
2065 assert(Tok.is(tok::l_brace));
2066
2067 SourceLocation LBraceLoc = ConsumeBrace();
2068
John McCall42a4f662010-05-28 08:11:17 +00002069 if (TagDecl)
Anders Carlsson2c3ee542011-03-25 14:31:08 +00002070 Actions.ActOnStartCXXMemberDeclarations(getCurScope(), TagDecl, FinalLoc,
Anders Carlssondfc2f102011-01-22 17:51:53 +00002071 LBraceLoc);
John McCallf9368152009-12-20 07:58:13 +00002072
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002073 // C++ 11p3: Members of a class defined with the keyword class are private
2074 // by default. Members of a class defined with the keywords struct or union
2075 // are public by default.
2076 AccessSpecifier CurAS;
2077 if (TagType == DeclSpec::TST_class)
2078 CurAS = AS_private;
2079 else
2080 CurAS = AS_public;
2081
Douglas Gregor07976d22010-06-21 22:31:09 +00002082 SourceLocation RBraceLoc;
2083 if (TagDecl) {
2084 // While we still have something to read, read the member-declarations.
2085 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
2086 // Each iteration of this loop reads one member-declaration.
Mike Stump1eb44332009-09-09 15:08:12 +00002087
Francois Pichet563a6452011-05-25 10:19:49 +00002088 if (getLang().Microsoft && (Tok.is(tok::kw___if_exists) ||
2089 Tok.is(tok::kw___if_not_exists))) {
2090 ParseMicrosoftIfExistsClassDeclaration((DeclSpec::TST)TagType, CurAS);
2091 continue;
2092 }
2093
Douglas Gregor07976d22010-06-21 22:31:09 +00002094 // Check for extraneous top-level semicolon.
2095 if (Tok.is(tok::semi)) {
2096 Diag(Tok, diag::ext_extra_struct_semi)
2097 << DeclSpec::getSpecifierName((DeclSpec::TST)TagType)
2098 << FixItHint::CreateRemoval(Tok.getLocation());
2099 ConsumeToken();
2100 continue;
2101 }
2102
2103 AccessSpecifier AS = getAccessSpecifierIfPresent();
2104 if (AS != AS_none) {
2105 // Current token is a C++ access specifier.
2106 CurAS = AS;
2107 SourceLocation ASLoc = Tok.getLocation();
2108 ConsumeToken();
2109 if (Tok.is(tok::colon))
2110 Actions.ActOnAccessSpecifier(AS, ASLoc, Tok.getLocation());
2111 else
2112 Diag(Tok, diag::err_expected_colon);
2113 ConsumeToken();
2114 continue;
2115 }
2116
2117 // FIXME: Make sure we don't have a template here.
2118
2119 // Parse all the comma separated declarators.
2120 ParseCXXClassMemberDeclaration(CurAS);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002121 }
2122
Douglas Gregor07976d22010-06-21 22:31:09 +00002123 RBraceLoc = MatchRHSPunctuation(tok::r_brace, LBraceLoc);
2124 } else {
2125 SkipUntil(tok::r_brace, false, false);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002126 }
Mike Stump1eb44332009-09-09 15:08:12 +00002127
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002128 // If attributes exist after class contents, parse them.
John McCall0b7e6782011-03-24 11:26:52 +00002129 ParsedAttributes attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +00002130 MaybeParseGNUAttributes(attrs);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002131
John McCall42a4f662010-05-28 08:11:17 +00002132 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002133 Actions.ActOnFinishCXXMemberSpecification(getCurScope(), RecordLoc, TagDecl,
John McCall42a4f662010-05-28 08:11:17 +00002134 LBraceLoc, RBraceLoc,
John McCall7f040a92010-12-24 02:08:15 +00002135 attrs.getList());
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002136
Richard Smith7a614d82011-06-11 17:19:42 +00002137 // C++0x [class.mem]p2: Within the class member-specification, the class is
2138 // regarded as complete within function bodies, default arguments, exception-
2139 // specifications, and brace-or-equal-initializers for non-static data
2140 // members (including such things in nested classes).
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002141 //
Richard Smith7a614d82011-06-11 17:19:42 +00002142 // FIXME: Only function bodies and brace-or-equal-initializers are currently
2143 // handled. Fix the others!
Douglas Gregor07976d22010-06-21 22:31:09 +00002144 if (TagDecl && NonNestedClass) {
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002145 // We are not inside a nested class. This class and its nested classes
Douglas Gregor72b505b2008-12-16 21:30:33 +00002146 // are complete and we can parse the delayed portions of method
2147 // declarations and the lexed inline method definitions.
Douglas Gregore0cc0472010-06-16 23:45:56 +00002148 SourceLocation SavedPrevTokLocation = PrevTokLocation;
Douglas Gregor6569d682009-05-27 23:11:45 +00002149 ParseLexedMethodDeclarations(getCurrentClass());
Richard Smith7a614d82011-06-11 17:19:42 +00002150 ParseLexedMemberInitializers(getCurrentClass());
Douglas Gregor6569d682009-05-27 23:11:45 +00002151 ParseLexedMethodDefs(getCurrentClass());
Douglas Gregore0cc0472010-06-16 23:45:56 +00002152 PrevTokLocation = SavedPrevTokLocation;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002153 }
2154
John McCall42a4f662010-05-28 08:11:17 +00002155 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002156 Actions.ActOnTagFinishDefinition(getCurScope(), TagDecl, RBraceLoc);
John McCalldb7bb4a2010-03-17 00:38:33 +00002157
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002158 // Leave the class scope.
Douglas Gregor6569d682009-05-27 23:11:45 +00002159 ParsingDef.Pop();
Douglas Gregor8935b8b2008-12-10 06:34:36 +00002160 ClassScope.Exit();
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002161}
Douglas Gregor7ad83902008-11-05 04:29:56 +00002162
2163/// ParseConstructorInitializer - Parse a C++ constructor initializer,
2164/// which explicitly initializes the members or base classes of a
2165/// class (C++ [class.base.init]). For example, the three initializers
2166/// after the ':' in the Derived constructor below:
2167///
2168/// @code
2169/// class Base { };
2170/// class Derived : Base {
2171/// int x;
2172/// float f;
2173/// public:
2174/// Derived(float f) : Base(), x(17), f(f) { }
2175/// };
2176/// @endcode
2177///
Mike Stump1eb44332009-09-09 15:08:12 +00002178/// [C++] ctor-initializer:
2179/// ':' mem-initializer-list
Douglas Gregor7ad83902008-11-05 04:29:56 +00002180///
Mike Stump1eb44332009-09-09 15:08:12 +00002181/// [C++] mem-initializer-list:
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002182/// mem-initializer ...[opt]
2183/// mem-initializer ...[opt] , mem-initializer-list
John McCalld226f652010-08-21 09:40:31 +00002184void Parser::ParseConstructorInitializer(Decl *ConstructorDecl) {
Douglas Gregor7ad83902008-11-05 04:29:56 +00002185 assert(Tok.is(tok::colon) && "Constructor initializer always starts with ':'");
2186
John Wiegley28bbe4b2011-04-28 01:08:34 +00002187 // Poison the SEH identifiers so they are flagged as illegal in constructor initializers
2188 PoisonSEHIdentifiersRAIIObject PoisonSEHIdentifiers(*this, true);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002189 SourceLocation ColonLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00002190
Sean Huntcbb67482011-01-08 20:30:50 +00002191 llvm::SmallVector<CXXCtorInitializer*, 4> MemInitializers;
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002192 bool AnyErrors = false;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002193
Douglas Gregor7ad83902008-11-05 04:29:56 +00002194 do {
Douglas Gregor0133f522010-08-28 00:00:50 +00002195 if (Tok.is(tok::code_completion)) {
2196 Actions.CodeCompleteConstructorInitializer(ConstructorDecl,
2197 MemInitializers.data(),
2198 MemInitializers.size());
2199 ConsumeCodeCompletionToken();
2200 } else {
2201 MemInitResult MemInit = ParseMemInitializer(ConstructorDecl);
2202 if (!MemInit.isInvalid())
2203 MemInitializers.push_back(MemInit.get());
2204 else
2205 AnyErrors = true;
2206 }
2207
Douglas Gregor7ad83902008-11-05 04:29:56 +00002208 if (Tok.is(tok::comma))
2209 ConsumeToken();
2210 else if (Tok.is(tok::l_brace))
2211 break;
Douglas Gregorb1f6fa42010-09-07 14:35:10 +00002212 // If the next token looks like a base or member initializer, assume that
2213 // we're just missing a comma.
Douglas Gregor751f6922010-09-07 14:51:08 +00002214 else if (Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) {
2215 SourceLocation Loc = PP.getLocForEndOfToken(PrevTokLocation);
2216 Diag(Loc, diag::err_ctor_init_missing_comma)
2217 << FixItHint::CreateInsertion(Loc, ", ");
2218 } else {
Douglas Gregor7ad83902008-11-05 04:29:56 +00002219 // Skip over garbage, until we get to '{'. Don't eat the '{'.
Sebastian Redld3a413d2009-04-26 20:35:05 +00002220 Diag(Tok.getLocation(), diag::err_expected_lbrace_or_comma);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002221 SkipUntil(tok::l_brace, true, true);
2222 break;
2223 }
2224 } while (true);
2225
Mike Stump1eb44332009-09-09 15:08:12 +00002226 Actions.ActOnMemInitializers(ConstructorDecl, ColonLoc,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002227 MemInitializers.data(), MemInitializers.size(),
2228 AnyErrors);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002229}
2230
2231/// ParseMemInitializer - Parse a C++ member initializer, which is
2232/// part of a constructor initializer that explicitly initializes one
2233/// member or base class (C++ [class.base.init]). See
2234/// ParseConstructorInitializer for an example.
2235///
2236/// [C++] mem-initializer:
2237/// mem-initializer-id '(' expression-list[opt] ')'
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002238/// [C++0x] mem-initializer-id braced-init-list
Mike Stump1eb44332009-09-09 15:08:12 +00002239///
Douglas Gregor7ad83902008-11-05 04:29:56 +00002240/// [C++] mem-initializer-id:
2241/// '::'[opt] nested-name-specifier[opt] class-name
2242/// identifier
John McCalld226f652010-08-21 09:40:31 +00002243Parser::MemInitResult Parser::ParseMemInitializer(Decl *ConstructorDecl) {
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00002244 // parse '::'[opt] nested-name-specifier[opt]
2245 CXXScopeSpec SS;
John McCallb3d87482010-08-24 05:47:05 +00002246 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
2247 ParsedType TemplateTypeTy;
Fariborz Jahanian96174332009-07-01 19:21:19 +00002248 if (Tok.is(tok::annot_template_id)) {
2249 TemplateIdAnnotation *TemplateId
2250 = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
Douglas Gregord9b600c2010-01-12 17:52:59 +00002251 if (TemplateId->Kind == TNK_Type_template ||
2252 TemplateId->Kind == TNK_Dependent_template_name) {
Douglas Gregor059101f2011-03-02 00:47:37 +00002253 AnnotateTemplateIdTokenAsType();
Fariborz Jahanian96174332009-07-01 19:21:19 +00002254 assert(Tok.is(tok::annot_typename) && "template-id -> type failed");
John McCallb3d87482010-08-24 05:47:05 +00002255 TemplateTypeTy = getTypeAnnotation(Tok);
Fariborz Jahanian96174332009-07-01 19:21:19 +00002256 }
Fariborz Jahanian96174332009-07-01 19:21:19 +00002257 }
2258 if (!TemplateTypeTy && Tok.isNot(tok::identifier)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00002259 Diag(Tok, diag::err_expected_member_or_base_name);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002260 return true;
2261 }
Mike Stump1eb44332009-09-09 15:08:12 +00002262
Douglas Gregor7ad83902008-11-05 04:29:56 +00002263 // Get the identifier. This may be a member name or a class name,
2264 // but we'll let the semantic analysis determine which it is.
Fariborz Jahanian96174332009-07-01 19:21:19 +00002265 IdentifierInfo *II = Tok.is(tok::identifier) ? Tok.getIdentifierInfo() : 0;
Douglas Gregor7ad83902008-11-05 04:29:56 +00002266 SourceLocation IdLoc = ConsumeToken();
2267
2268 // Parse the '('.
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002269 if (getLang().CPlusPlus0x && Tok.is(tok::l_brace)) {
2270 // FIXME: Do something with the braced-init-list.
2271 ParseBraceInitializer();
Douglas Gregor7ad83902008-11-05 04:29:56 +00002272 return true;
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002273 } else if(Tok.is(tok::l_paren)) {
2274 SourceLocation LParenLoc = ConsumeParen();
Douglas Gregor7ad83902008-11-05 04:29:56 +00002275
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002276 // Parse the optional expression-list.
2277 ExprVector ArgExprs(Actions);
2278 CommaLocsTy CommaLocs;
2279 if (Tok.isNot(tok::r_paren) && ParseExpressionList(ArgExprs, CommaLocs)) {
2280 SkipUntil(tok::r_paren);
2281 return true;
2282 }
2283
2284 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
2285
2286 SourceLocation EllipsisLoc;
2287 if (Tok.is(tok::ellipsis))
2288 EllipsisLoc = ConsumeToken();
2289
2290 return Actions.ActOnMemInitializer(ConstructorDecl, getCurScope(), SS, II,
2291 TemplateTypeTy, IdLoc,
2292 LParenLoc, ArgExprs.take(),
2293 ArgExprs.size(), RParenLoc,
2294 EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002295 }
2296
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002297 Diag(Tok, getLang().CPlusPlus0x ? diag::err_expected_lparen_or_lbrace
2298 : diag::err_expected_lparen);
2299 return true;
Douglas Gregor7ad83902008-11-05 04:29:56 +00002300}
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002301
Sebastian Redl7acafd02011-03-05 14:45:16 +00002302/// \brief Parse a C++ exception-specification if present (C++0x [except.spec]).
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002303///
Douglas Gregora4745612008-12-01 18:00:20 +00002304/// exception-specification:
Sebastian Redl7acafd02011-03-05 14:45:16 +00002305/// dynamic-exception-specification
2306/// noexcept-specification
2307///
2308/// noexcept-specification:
2309/// 'noexcept'
2310/// 'noexcept' '(' constant-expression ')'
2311ExceptionSpecificationType
2312Parser::MaybeParseExceptionSpecification(SourceRange &SpecificationRange,
2313 llvm::SmallVectorImpl<ParsedType> &DynamicExceptions,
2314 llvm::SmallVectorImpl<SourceRange> &DynamicExceptionRanges,
2315 ExprResult &NoexceptExpr) {
2316 ExceptionSpecificationType Result = EST_None;
2317
2318 // See if there's a dynamic specification.
2319 if (Tok.is(tok::kw_throw)) {
2320 Result = ParseDynamicExceptionSpecification(SpecificationRange,
2321 DynamicExceptions,
2322 DynamicExceptionRanges);
2323 assert(DynamicExceptions.size() == DynamicExceptionRanges.size() &&
2324 "Produced different number of exception types and ranges.");
2325 }
2326
2327 // If there's no noexcept specification, we're done.
2328 if (Tok.isNot(tok::kw_noexcept))
2329 return Result;
2330
2331 // If we already had a dynamic specification, parse the noexcept for,
2332 // recovery, but emit a diagnostic and don't store the results.
2333 SourceRange NoexceptRange;
2334 ExceptionSpecificationType NoexceptType = EST_None;
2335
2336 SourceLocation KeywordLoc = ConsumeToken();
2337 if (Tok.is(tok::l_paren)) {
2338 // There is an argument.
2339 SourceLocation LParenLoc = ConsumeParen();
2340 NoexceptType = EST_ComputedNoexcept;
2341 NoexceptExpr = ParseConstantExpression();
Sebastian Redl60618fa2011-03-12 11:50:43 +00002342 // The argument must be contextually convertible to bool. We use
2343 // ActOnBooleanCondition for this purpose.
2344 if (!NoexceptExpr.isInvalid())
2345 NoexceptExpr = Actions.ActOnBooleanCondition(getCurScope(), KeywordLoc,
2346 NoexceptExpr.get());
Sebastian Redl7acafd02011-03-05 14:45:16 +00002347 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
2348 NoexceptRange = SourceRange(KeywordLoc, RParenLoc);
2349 } else {
2350 // There is no argument.
2351 NoexceptType = EST_BasicNoexcept;
2352 NoexceptRange = SourceRange(KeywordLoc, KeywordLoc);
2353 }
2354
2355 if (Result == EST_None) {
2356 SpecificationRange = NoexceptRange;
2357 Result = NoexceptType;
2358
2359 // If there's a dynamic specification after a noexcept specification,
2360 // parse that and ignore the results.
2361 if (Tok.is(tok::kw_throw)) {
2362 Diag(Tok.getLocation(), diag::err_dynamic_and_noexcept_specification);
2363 ParseDynamicExceptionSpecification(NoexceptRange, DynamicExceptions,
2364 DynamicExceptionRanges);
2365 }
2366 } else {
2367 Diag(Tok.getLocation(), diag::err_dynamic_and_noexcept_specification);
2368 }
2369
2370 return Result;
2371}
2372
2373/// ParseDynamicExceptionSpecification - Parse a C++
2374/// dynamic-exception-specification (C++ [except.spec]).
2375///
2376/// dynamic-exception-specification:
Douglas Gregora4745612008-12-01 18:00:20 +00002377/// 'throw' '(' type-id-list [opt] ')'
2378/// [MS] 'throw' '(' '...' ')'
Mike Stump1eb44332009-09-09 15:08:12 +00002379///
Douglas Gregora4745612008-12-01 18:00:20 +00002380/// type-id-list:
Douglas Gregora04426c2010-12-20 23:57:46 +00002381/// type-id ... [opt]
2382/// type-id-list ',' type-id ... [opt]
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002383///
Sebastian Redl7acafd02011-03-05 14:45:16 +00002384ExceptionSpecificationType Parser::ParseDynamicExceptionSpecification(
2385 SourceRange &SpecificationRange,
2386 llvm::SmallVectorImpl<ParsedType> &Exceptions,
2387 llvm::SmallVectorImpl<SourceRange> &Ranges) {
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002388 assert(Tok.is(tok::kw_throw) && "expected throw");
Mike Stump1eb44332009-09-09 15:08:12 +00002389
Sebastian Redl7acafd02011-03-05 14:45:16 +00002390 SpecificationRange.setBegin(ConsumeToken());
Mike Stump1eb44332009-09-09 15:08:12 +00002391
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002392 if (!Tok.is(tok::l_paren)) {
Sebastian Redl7acafd02011-03-05 14:45:16 +00002393 Diag(Tok, diag::err_expected_lparen_after) << "throw";
2394 SpecificationRange.setEnd(SpecificationRange.getBegin());
Sebastian Redl60618fa2011-03-12 11:50:43 +00002395 return EST_DynamicNone;
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002396 }
2397 SourceLocation LParenLoc = ConsumeParen();
2398
Douglas Gregora4745612008-12-01 18:00:20 +00002399 // Parse throw(...), a Microsoft extension that means "this function
2400 // can throw anything".
2401 if (Tok.is(tok::ellipsis)) {
2402 SourceLocation EllipsisLoc = ConsumeToken();
2403 if (!getLang().Microsoft)
2404 Diag(EllipsisLoc, diag::ext_ellipsis_exception_spec);
Sebastian Redl7acafd02011-03-05 14:45:16 +00002405 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
2406 SpecificationRange.setEnd(RParenLoc);
Sebastian Redl60618fa2011-03-12 11:50:43 +00002407 return EST_MSAny;
Douglas Gregora4745612008-12-01 18:00:20 +00002408 }
2409
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002410 // Parse the sequence of type-ids.
Sebastian Redlef65f062009-05-29 18:02:33 +00002411 SourceRange Range;
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002412 while (Tok.isNot(tok::r_paren)) {
Sebastian Redlef65f062009-05-29 18:02:33 +00002413 TypeResult Res(ParseTypeName(&Range));
Sebastian Redl7acafd02011-03-05 14:45:16 +00002414
Douglas Gregora04426c2010-12-20 23:57:46 +00002415 if (Tok.is(tok::ellipsis)) {
2416 // C++0x [temp.variadic]p5:
2417 // - In a dynamic-exception-specification (15.4); the pattern is a
2418 // type-id.
2419 SourceLocation Ellipsis = ConsumeToken();
Sebastian Redl7acafd02011-03-05 14:45:16 +00002420 Range.setEnd(Ellipsis);
Douglas Gregora04426c2010-12-20 23:57:46 +00002421 if (!Res.isInvalid())
2422 Res = Actions.ActOnPackExpansion(Res.get(), Ellipsis);
2423 }
Sebastian Redl7acafd02011-03-05 14:45:16 +00002424
Sebastian Redlef65f062009-05-29 18:02:33 +00002425 if (!Res.isInvalid()) {
Sebastian Redl7dc81342009-04-29 17:30:04 +00002426 Exceptions.push_back(Res.get());
Sebastian Redlef65f062009-05-29 18:02:33 +00002427 Ranges.push_back(Range);
2428 }
Douglas Gregora04426c2010-12-20 23:57:46 +00002429
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002430 if (Tok.is(tok::comma))
2431 ConsumeToken();
Sebastian Redl7dc81342009-04-29 17:30:04 +00002432 else
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002433 break;
2434 }
2435
Sebastian Redl7acafd02011-03-05 14:45:16 +00002436 SpecificationRange.setEnd(MatchRHSPunctuation(tok::r_paren, LParenLoc));
Sebastian Redl60618fa2011-03-12 11:50:43 +00002437 return Exceptions.empty() ? EST_DynamicNone : EST_Dynamic;
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002438}
Douglas Gregor6569d682009-05-27 23:11:45 +00002439
Douglas Gregordab60ad2010-10-01 18:44:50 +00002440/// ParseTrailingReturnType - Parse a trailing return type on a new-style
2441/// function declaration.
2442TypeResult Parser::ParseTrailingReturnType() {
2443 assert(Tok.is(tok::arrow) && "expected arrow");
2444
2445 ConsumeToken();
2446
2447 // FIXME: Need to suppress declarations when parsing this typename.
2448 // Otherwise in this function definition:
2449 //
2450 // auto f() -> struct X {}
2451 //
2452 // struct X is parsed as class definition because of the trailing
2453 // brace.
2454
2455 SourceRange Range;
2456 return ParseTypeName(&Range);
2457}
2458
Douglas Gregor6569d682009-05-27 23:11:45 +00002459/// \brief We have just started parsing the definition of a new class,
2460/// so push that class onto our stack of classes that is currently
2461/// being parsed.
John McCalleee1d542011-02-14 07:13:47 +00002462Sema::ParsingClassState
2463Parser::PushParsingClass(Decl *ClassDecl, bool NonNestedClass) {
Douglas Gregor26997fd2010-01-16 20:52:59 +00002464 assert((NonNestedClass || !ClassStack.empty()) &&
Douglas Gregor6569d682009-05-27 23:11:45 +00002465 "Nested class without outer class");
Douglas Gregor26997fd2010-01-16 20:52:59 +00002466 ClassStack.push(new ParsingClass(ClassDecl, NonNestedClass));
John McCalleee1d542011-02-14 07:13:47 +00002467 return Actions.PushParsingClass();
Douglas Gregor6569d682009-05-27 23:11:45 +00002468}
2469
2470/// \brief Deallocate the given parsed class and all of its nested
2471/// classes.
2472void Parser::DeallocateParsedClasses(Parser::ParsingClass *Class) {
Douglas Gregord54eb442010-10-12 16:25:54 +00002473 for (unsigned I = 0, N = Class->LateParsedDeclarations.size(); I != N; ++I)
2474 delete Class->LateParsedDeclarations[I];
Douglas Gregor6569d682009-05-27 23:11:45 +00002475 delete Class;
2476}
2477
2478/// \brief Pop the top class of the stack of classes that are
2479/// currently being parsed.
2480///
2481/// This routine should be called when we have finished parsing the
2482/// definition of a class, but have not yet popped the Scope
2483/// associated with the class's definition.
2484///
2485/// \returns true if the class we've popped is a top-level class,
2486/// false otherwise.
John McCalleee1d542011-02-14 07:13:47 +00002487void Parser::PopParsingClass(Sema::ParsingClassState state) {
Douglas Gregor6569d682009-05-27 23:11:45 +00002488 assert(!ClassStack.empty() && "Mismatched push/pop for class parsing");
Mike Stump1eb44332009-09-09 15:08:12 +00002489
John McCalleee1d542011-02-14 07:13:47 +00002490 Actions.PopParsingClass(state);
2491
Douglas Gregor6569d682009-05-27 23:11:45 +00002492 ParsingClass *Victim = ClassStack.top();
2493 ClassStack.pop();
2494 if (Victim->TopLevelClass) {
2495 // Deallocate all of the nested classes of this class,
2496 // recursively: we don't need to keep any of this information.
2497 DeallocateParsedClasses(Victim);
2498 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002499 }
Douglas Gregor6569d682009-05-27 23:11:45 +00002500 assert(!ClassStack.empty() && "Missing top-level class?");
2501
Douglas Gregord54eb442010-10-12 16:25:54 +00002502 if (Victim->LateParsedDeclarations.empty()) {
Douglas Gregor6569d682009-05-27 23:11:45 +00002503 // The victim is a nested class, but we will not need to perform
2504 // any processing after the definition of this class since it has
2505 // no members whose handling was delayed. Therefore, we can just
2506 // remove this nested class.
Douglas Gregord54eb442010-10-12 16:25:54 +00002507 DeallocateParsedClasses(Victim);
Douglas Gregor6569d682009-05-27 23:11:45 +00002508 return;
2509 }
2510
2511 // This nested class has some members that will need to be processed
2512 // after the top-level class is completely defined. Therefore, add
2513 // it to the list of nested classes within its parent.
Douglas Gregor23c94db2010-07-02 17:43:08 +00002514 assert(getCurScope()->isClassScope() && "Nested class outside of class scope?");
Douglas Gregord54eb442010-10-12 16:25:54 +00002515 ClassStack.top()->LateParsedDeclarations.push_back(new LateParsedClass(this, Victim));
Douglas Gregor23c94db2010-07-02 17:43:08 +00002516 Victim->TemplateScope = getCurScope()->getParent()->isTemplateParamScope();
Douglas Gregor6569d682009-05-27 23:11:45 +00002517}
Sean Huntbbd37c62009-11-21 08:43:09 +00002518
2519/// ParseCXX0XAttributes - Parse a C++0x attribute-specifier. Currently only
2520/// parses standard attributes.
2521///
2522/// [C++0x] attribute-specifier:
2523/// '[' '[' attribute-list ']' ']'
2524///
2525/// [C++0x] attribute-list:
2526/// attribute[opt]
2527/// attribute-list ',' attribute[opt]
2528///
2529/// [C++0x] attribute:
2530/// attribute-token attribute-argument-clause[opt]
2531///
2532/// [C++0x] attribute-token:
2533/// identifier
2534/// attribute-scoped-token
2535///
2536/// [C++0x] attribute-scoped-token:
2537/// attribute-namespace '::' identifier
2538///
2539/// [C++0x] attribute-namespace:
2540/// identifier
2541///
2542/// [C++0x] attribute-argument-clause:
2543/// '(' balanced-token-seq ')'
2544///
2545/// [C++0x] balanced-token-seq:
2546/// balanced-token
2547/// balanced-token-seq balanced-token
2548///
2549/// [C++0x] balanced-token:
2550/// '(' balanced-token-seq ')'
2551/// '[' balanced-token-seq ']'
2552/// '{' balanced-token-seq '}'
2553/// any token but '(', ')', '[', ']', '{', or '}'
John McCall7f040a92010-12-24 02:08:15 +00002554void Parser::ParseCXX0XAttributes(ParsedAttributesWithRange &attrs,
2555 SourceLocation *endLoc) {
Sean Huntbbd37c62009-11-21 08:43:09 +00002556 assert(Tok.is(tok::l_square) && NextToken().is(tok::l_square)
2557 && "Not a C++0x attribute list");
2558
2559 SourceLocation StartLoc = Tok.getLocation(), Loc;
Sean Huntbbd37c62009-11-21 08:43:09 +00002560
2561 ConsumeBracket();
2562 ConsumeBracket();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002563
Sean Huntbbd37c62009-11-21 08:43:09 +00002564 if (Tok.is(tok::comma)) {
2565 Diag(Tok.getLocation(), diag::err_expected_ident);
2566 ConsumeToken();
2567 }
2568
2569 while (Tok.is(tok::identifier) || Tok.is(tok::comma)) {
2570 // attribute not present
2571 if (Tok.is(tok::comma)) {
2572 ConsumeToken();
2573 continue;
2574 }
2575
2576 IdentifierInfo *ScopeName = 0, *AttrName = Tok.getIdentifierInfo();
2577 SourceLocation ScopeLoc, AttrLoc = ConsumeToken();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002578
Sean Huntbbd37c62009-11-21 08:43:09 +00002579 // scoped attribute
2580 if (Tok.is(tok::coloncolon)) {
2581 ConsumeToken();
2582
2583 if (!Tok.is(tok::identifier)) {
2584 Diag(Tok.getLocation(), diag::err_expected_ident);
2585 SkipUntil(tok::r_square, tok::comma, true, true);
2586 continue;
2587 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002588
Sean Huntbbd37c62009-11-21 08:43:09 +00002589 ScopeName = AttrName;
2590 ScopeLoc = AttrLoc;
2591
2592 AttrName = Tok.getIdentifierInfo();
2593 AttrLoc = ConsumeToken();
2594 }
2595
2596 bool AttrParsed = false;
2597 // No scoped names are supported; ideally we could put all non-standard
2598 // attributes into namespaces.
2599 if (!ScopeName) {
2600 switch(AttributeList::getKind(AttrName))
2601 {
2602 // No arguments
Sean Hunt7725e672009-11-25 04:20:27 +00002603 case AttributeList::AT_carries_dependency:
Anders Carlsson15e14a22011-01-23 21:33:18 +00002604 case AttributeList::AT_noreturn: {
Sean Huntbbd37c62009-11-21 08:43:09 +00002605 if (Tok.is(tok::l_paren)) {
2606 Diag(Tok.getLocation(), diag::err_cxx0x_attribute_forbids_arguments)
2607 << AttrName->getName();
2608 break;
2609 }
2610
John McCall0b7e6782011-03-24 11:26:52 +00002611 attrs.addNew(AttrName, AttrLoc, 0, AttrLoc, 0,
2612 SourceLocation(), 0, 0, false, true);
Sean Huntbbd37c62009-11-21 08:43:09 +00002613 AttrParsed = true;
2614 break;
2615 }
2616
2617 // One argument; must be a type-id or assignment-expression
2618 case AttributeList::AT_aligned: {
2619 if (Tok.isNot(tok::l_paren)) {
2620 Diag(Tok.getLocation(), diag::err_cxx0x_attribute_requires_arguments)
2621 << AttrName->getName();
2622 break;
2623 }
2624 SourceLocation ParamLoc = ConsumeParen();
2625
John McCall60d7b3a2010-08-24 06:29:42 +00002626 ExprResult ArgExpr = ParseCXX0XAlignArgument(ParamLoc);
Sean Huntbbd37c62009-11-21 08:43:09 +00002627
2628 MatchRHSPunctuation(tok::r_paren, ParamLoc);
2629
2630 ExprVector ArgExprs(Actions);
2631 ArgExprs.push_back(ArgExpr.release());
John McCall0b7e6782011-03-24 11:26:52 +00002632 attrs.addNew(AttrName, AttrLoc, 0, AttrLoc,
2633 0, ParamLoc, ArgExprs.take(), 1,
2634 false, true);
Sean Huntbbd37c62009-11-21 08:43:09 +00002635
2636 AttrParsed = true;
2637 break;
2638 }
2639
2640 // Silence warnings
2641 default: break;
2642 }
2643 }
2644
2645 // Skip the entire parameter clause, if any
2646 if (!AttrParsed && Tok.is(tok::l_paren)) {
2647 ConsumeParen();
2648 // SkipUntil maintains the balancedness of tokens.
2649 SkipUntil(tok::r_paren, false);
2650 }
2651 }
2652
2653 if (ExpectAndConsume(tok::r_square, diag::err_expected_rsquare))
2654 SkipUntil(tok::r_square, false);
2655 Loc = Tok.getLocation();
2656 if (ExpectAndConsume(tok::r_square, diag::err_expected_rsquare))
2657 SkipUntil(tok::r_square, false);
2658
John McCall7f040a92010-12-24 02:08:15 +00002659 attrs.Range = SourceRange(StartLoc, Loc);
Sean Huntbbd37c62009-11-21 08:43:09 +00002660}
2661
2662/// ParseCXX0XAlignArgument - Parse the argument to C++0x's [[align]]
2663/// attribute.
2664///
2665/// FIXME: Simply returns an alignof() expression if the argument is a
2666/// type. Ideally, the type should be propagated directly into Sema.
2667///
2668/// [C++0x] 'align' '(' type-id ')'
2669/// [C++0x] 'align' '(' assignment-expression ')'
John McCall60d7b3a2010-08-24 06:29:42 +00002670ExprResult Parser::ParseCXX0XAlignArgument(SourceLocation Start) {
Sean Huntbbd37c62009-11-21 08:43:09 +00002671 if (isTypeIdInParens()) {
John McCallf312b1e2010-08-26 23:41:50 +00002672 EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated);
Sean Huntbbd37c62009-11-21 08:43:09 +00002673 SourceLocation TypeLoc = Tok.getLocation();
John McCallb3d87482010-08-24 05:47:05 +00002674 ParsedType Ty = ParseTypeName().get();
Sean Huntbbd37c62009-11-21 08:43:09 +00002675 SourceRange TypeRange(Start, Tok.getLocation());
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002676 return Actions.ActOnUnaryExprOrTypeTraitExpr(TypeLoc, UETT_AlignOf, true,
2677 Ty.getAsOpaquePtr(), TypeRange);
Sean Huntbbd37c62009-11-21 08:43:09 +00002678 } else
2679 return ParseConstantExpression();
2680}
Francois Pichet334d47e2010-10-11 12:59:39 +00002681
2682/// ParseMicrosoftAttributes - Parse a Microsoft attribute [Attr]
2683///
2684/// [MS] ms-attribute:
2685/// '[' token-seq ']'
2686///
2687/// [MS] ms-attribute-seq:
2688/// ms-attribute[opt]
2689/// ms-attribute ms-attribute-seq
John McCall7f040a92010-12-24 02:08:15 +00002690void Parser::ParseMicrosoftAttributes(ParsedAttributes &attrs,
2691 SourceLocation *endLoc) {
Francois Pichet334d47e2010-10-11 12:59:39 +00002692 assert(Tok.is(tok::l_square) && "Not a Microsoft attribute list");
2693
2694 while (Tok.is(tok::l_square)) {
2695 ConsumeBracket();
2696 SkipUntil(tok::r_square, true, true);
John McCall7f040a92010-12-24 02:08:15 +00002697 if (endLoc) *endLoc = Tok.getLocation();
Francois Pichet334d47e2010-10-11 12:59:39 +00002698 ExpectAndConsume(tok::r_square, diag::err_expected_rsquare);
2699 }
2700}
Francois Pichet563a6452011-05-25 10:19:49 +00002701
2702void Parser::ParseMicrosoftIfExistsClassDeclaration(DeclSpec::TST TagType,
2703 AccessSpecifier& CurAS) {
2704 bool Result;
2705 if (ParseMicrosoftIfExistsCondition(Result))
2706 return;
2707
2708 if (Tok.isNot(tok::l_brace)) {
2709 Diag(Tok, diag::err_expected_lbrace);
2710 return;
2711 }
2712 ConsumeBrace();
2713
2714 // Condition is false skip all inside the {}.
2715 if (!Result) {
2716 SkipUntil(tok::r_brace, false);
2717 return;
2718 }
2719
2720 // Condition is true, parse the declaration.
2721 while (Tok.isNot(tok::r_brace)) {
2722
2723 // __if_exists, __if_not_exists can nest.
2724 if ((Tok.is(tok::kw___if_exists) || Tok.is(tok::kw___if_not_exists))) {
2725 ParseMicrosoftIfExistsClassDeclaration((DeclSpec::TST)TagType, CurAS);
2726 continue;
2727 }
2728
2729 // Check for extraneous top-level semicolon.
2730 if (Tok.is(tok::semi)) {
2731 Diag(Tok, diag::ext_extra_struct_semi)
2732 << DeclSpec::getSpecifierName((DeclSpec::TST)TagType)
2733 << FixItHint::CreateRemoval(Tok.getLocation());
2734 ConsumeToken();
2735 continue;
2736 }
2737
2738 AccessSpecifier AS = getAccessSpecifierIfPresent();
2739 if (AS != AS_none) {
2740 // Current token is a C++ access specifier.
2741 CurAS = AS;
2742 SourceLocation ASLoc = Tok.getLocation();
2743 ConsumeToken();
2744 if (Tok.is(tok::colon))
2745 Actions.ActOnAccessSpecifier(AS, ASLoc, Tok.getLocation());
2746 else
2747 Diag(Tok, diag::err_expected_colon);
2748 ConsumeToken();
2749 continue;
2750 }
2751
2752 // Parse all the comma separated declarators.
2753 ParseCXXClassMemberDeclaration(CurAS);
2754 }
2755
2756 if (Tok.isNot(tok::r_brace)) {
2757 Diag(Tok, diag::err_expected_rbrace);
2758 return;
2759 }
2760 ConsumeBrace();
2761}