blob: 1d42ad47a66e670363698bacee6ae05edb784e9b [file] [log] [blame]
Chris Lattner8f08cb72007-08-25 06:57:03 +00001//===--- ParseDeclCXX.cpp - C++ Declaration Parsing -----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner8f08cb72007-08-25 06:57:03 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the C++ Declaration portions of the Parser interfaces.
11//
12//===----------------------------------------------------------------------===//
13
Anders Carlsson0c6139d2009-06-27 00:27:47 +000014#include "clang/Basic/OperatorKinds.h"
Douglas Gregor1b7f8982008-04-14 00:13:42 +000015#include "clang/Parse/Parser.h"
Chris Lattner500d3292009-01-29 05:15:15 +000016#include "clang/Parse/ParseDiagnostic.h"
John McCall19510852010-08-20 18:27:03 +000017#include "clang/Sema/DeclSpec.h"
18#include "clang/Sema/Scope.h"
19#include "clang/Sema/ParsedTemplate.h"
John McCallf312b1e2010-08-26 23:41:50 +000020#include "clang/Sema/PrettyDeclStackTrace.h"
Chris Lattnerd167ca02009-12-10 00:21:05 +000021#include "RAIIObjectsForParser.h"
Chris Lattner8f08cb72007-08-25 06:57:03 +000022using namespace clang;
23
24/// ParseNamespace - We know that the current token is a namespace keyword. This
Sebastian Redld078e642010-08-27 23:12:46 +000025/// may either be a top level namespace or a block-level namespace alias. If
26/// there was an inline keyword, it has already been parsed.
Chris Lattner8f08cb72007-08-25 06:57:03 +000027///
28/// namespace-definition: [C++ 7.3: basic.namespace]
29/// named-namespace-definition
30/// unnamed-namespace-definition
31///
32/// unnamed-namespace-definition:
Sebastian Redld078e642010-08-27 23:12:46 +000033/// 'inline'[opt] 'namespace' attributes[opt] '{' namespace-body '}'
Chris Lattner8f08cb72007-08-25 06:57:03 +000034///
35/// named-namespace-definition:
36/// original-namespace-definition
37/// extension-namespace-definition
38///
39/// original-namespace-definition:
Sebastian Redld078e642010-08-27 23:12:46 +000040/// 'inline'[opt] 'namespace' identifier attributes[opt]
41/// '{' namespace-body '}'
Chris Lattner8f08cb72007-08-25 06:57:03 +000042///
43/// extension-namespace-definition:
Sebastian Redld078e642010-08-27 23:12:46 +000044/// 'inline'[opt] 'namespace' original-namespace-name
45/// '{' namespace-body '}'
Mike Stump1eb44332009-09-09 15:08:12 +000046///
Chris Lattner8f08cb72007-08-25 06:57:03 +000047/// namespace-alias-definition: [C++ 7.3.2: namespace.alias]
48/// 'namespace' identifier '=' qualified-namespace-specifier ';'
49///
John McCalld226f652010-08-21 09:40:31 +000050Decl *Parser::ParseNamespace(unsigned Context,
Sebastian Redld078e642010-08-27 23:12:46 +000051 SourceLocation &DeclEnd,
52 SourceLocation InlineLoc) {
Chris Lattner04d66662007-10-09 17:33:22 +000053 assert(Tok.is(tok::kw_namespace) && "Not a namespace!");
Chris Lattner8f08cb72007-08-25 06:57:03 +000054 SourceLocation NamespaceLoc = ConsumeToken(); // eat the 'namespace'.
Fariborz Jahanian9735c5e2011-08-22 17:59:19 +000055 ObjCDeclContextSwitch ObjCDC(*this);
Fariborz Jahaniana28948f2011-08-22 15:54:49 +000056
Douglas Gregor49f40bd2009-09-18 19:03:04 +000057 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +000058 Actions.CodeCompleteNamespaceDecl(getCurScope());
Douglas Gregordc845342010-05-25 05:58:43 +000059 ConsumeCodeCompletionToken();
Douglas Gregor49f40bd2009-09-18 19:03:04 +000060 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +000061
Chris Lattner8f08cb72007-08-25 06:57:03 +000062 SourceLocation IdentLoc;
63 IdentifierInfo *Ident = 0;
Richard Trieuf858bd82011-05-26 20:11:09 +000064 std::vector<SourceLocation> ExtraIdentLoc;
65 std::vector<IdentifierInfo*> ExtraIdent;
66 std::vector<SourceLocation> ExtraNamespaceLoc;
Douglas Gregor6a588dd2009-06-17 19:49:00 +000067
68 Token attrTok;
Mike Stump1eb44332009-09-09 15:08:12 +000069
Chris Lattner04d66662007-10-09 17:33:22 +000070 if (Tok.is(tok::identifier)) {
Chris Lattner8f08cb72007-08-25 06:57:03 +000071 Ident = Tok.getIdentifierInfo();
72 IdentLoc = ConsumeToken(); // eat the identifier.
Richard Trieuf858bd82011-05-26 20:11:09 +000073 while (Tok.is(tok::coloncolon) && NextToken().is(tok::identifier)) {
74 ExtraNamespaceLoc.push_back(ConsumeToken());
75 ExtraIdent.push_back(Tok.getIdentifierInfo());
76 ExtraIdentLoc.push_back(ConsumeToken());
77 }
Chris Lattner8f08cb72007-08-25 06:57:03 +000078 }
Mike Stump1eb44332009-09-09 15:08:12 +000079
Chris Lattner8f08cb72007-08-25 06:57:03 +000080 // Read label attributes, if present.
John McCall0b7e6782011-03-24 11:26:52 +000081 ParsedAttributes attrs(AttrFactory);
Douglas Gregor6a588dd2009-06-17 19:49:00 +000082 if (Tok.is(tok::kw___attribute)) {
83 attrTok = Tok;
John McCall7f040a92010-12-24 02:08:15 +000084 ParseGNUAttributes(attrs);
Douglas Gregor6a588dd2009-06-17 19:49:00 +000085 }
Mike Stump1eb44332009-09-09 15:08:12 +000086
Douglas Gregor6a588dd2009-06-17 19:49:00 +000087 if (Tok.is(tok::equal)) {
John McCall7f040a92010-12-24 02:08:15 +000088 if (!attrs.empty())
Douglas Gregor6a588dd2009-06-17 19:49:00 +000089 Diag(attrTok, diag::err_unexpected_namespace_attributes_alias);
Sebastian Redld078e642010-08-27 23:12:46 +000090 if (InlineLoc.isValid())
91 Diag(InlineLoc, diag::err_inline_namespace_alias)
92 << FixItHint::CreateRemoval(InlineLoc);
Fariborz Jahanian9735c5e2011-08-22 17:59:19 +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;
Chris Lattner5f9e2722011-07-23 10:55:15 +0000265 StringRef Lang = PP.getSpelling(Tok, LangBuffer, &Invalid);
Douglas Gregor453091c2010-03-16 22:30:13 +0000266 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,
Richard Smithc89edf52011-07-01 19:46:12 +0000317 ParsedAttributesWithRange &attrs,
318 Decl **OwnedType) {
Douglas Gregorf780abc2008-12-30 03:27:21 +0000319 assert(Tok.is(tok::kw_using) && "Not using token");
Fariborz Jahanian9735c5e2011-08-22 17:59:19 +0000320 ObjCDeclContextSwitch ObjCDC(*this);
321
Douglas Gregorf780abc2008-12-30 03:27:21 +0000322 // Eat 'using'.
323 SourceLocation UsingLoc = ConsumeToken();
324
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000325 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000326 Actions.CodeCompleteUsing(getCurScope());
Douglas Gregordc845342010-05-25 05:58:43 +0000327 ConsumeCodeCompletionToken();
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000328 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000329
John McCall78b81052010-11-10 02:40:36 +0000330 // 'using namespace' means this is a using-directive.
331 if (Tok.is(tok::kw_namespace)) {
332 // Template parameters are always an error here.
333 if (TemplateInfo.Kind) {
334 SourceRange R = TemplateInfo.getSourceRange();
335 Diag(UsingLoc, diag::err_templated_using_directive)
336 << R << FixItHint::CreateRemoval(R);
337 }
Sean Huntbbd37c62009-11-21 08:43:09 +0000338
Fariborz Jahanian9735c5e2011-08-22 17:59:19 +0000339 return ParseUsingDirective(Context, UsingLoc, DeclEnd, attrs);
John McCall78b81052010-11-10 02:40:36 +0000340 }
341
Richard Smith162e1c12011-04-15 14:24:37 +0000342 // Otherwise, it must be a using-declaration or an alias-declaration.
John McCall78b81052010-11-10 02:40:36 +0000343
344 // Using declarations can't have attributes.
John McCall7f040a92010-12-24 02:08:15 +0000345 ProhibitAttributes(attrs);
Chris Lattner2f274772009-01-06 06:55:51 +0000346
Fariborz Jahanian9735c5e2011-08-22 17:59:19 +0000347 return ParseUsingDeclaration(Context, TemplateInfo, UsingLoc, DeclEnd,
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000348 AS_none, OwnedType);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000349}
350
351/// ParseUsingDirective - Parse C++ using-directive, assumes
352/// that current token is 'namespace' and 'using' was already parsed.
353///
354/// using-directive: [C++ 7.3.p4: namespace.udir]
355/// 'using' 'namespace' ::[opt] nested-name-specifier[opt]
356/// namespace-name ;
357/// [GNU] using-directive:
358/// 'using' 'namespace' ::[opt] nested-name-specifier[opt]
359/// namespace-name attributes[opt] ;
360///
John McCalld226f652010-08-21 09:40:31 +0000361Decl *Parser::ParseUsingDirective(unsigned Context,
John McCall78b81052010-11-10 02:40:36 +0000362 SourceLocation UsingLoc,
363 SourceLocation &DeclEnd,
John McCall7f040a92010-12-24 02:08:15 +0000364 ParsedAttributes &attrs) {
Douglas Gregorf780abc2008-12-30 03:27:21 +0000365 assert(Tok.is(tok::kw_namespace) && "Not 'namespace' token");
366
367 // Eat 'namespace'.
368 SourceLocation NamespcLoc = ConsumeToken();
369
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000370 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000371 Actions.CodeCompleteUsingDirective(getCurScope());
Douglas Gregordc845342010-05-25 05:58:43 +0000372 ConsumeCodeCompletionToken();
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000373 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000374
Douglas Gregorf780abc2008-12-30 03:27:21 +0000375 CXXScopeSpec SS;
376 // Parse (optional) nested-name-specifier.
John McCallb3d87482010-08-24 05:47:05 +0000377 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000378
Douglas Gregorf780abc2008-12-30 03:27:21 +0000379 IdentifierInfo *NamespcName = 0;
380 SourceLocation IdentLoc = SourceLocation();
381
382 // Parse namespace-name.
Chris Lattner823c44e2009-01-06 07:27:21 +0000383 if (SS.isInvalid() || Tok.isNot(tok::identifier)) {
Douglas Gregorf780abc2008-12-30 03:27:21 +0000384 Diag(Tok, diag::err_expected_namespace_name);
385 // If there was invalid namespace name, skip to end of decl, and eat ';'.
386 SkipUntil(tok::semi);
387 // FIXME: Are there cases, when we would like to call ActOnUsingDirective?
John McCalld226f652010-08-21 09:40:31 +0000388 return 0;
Douglas Gregorf780abc2008-12-30 03:27:21 +0000389 }
Mike Stump1eb44332009-09-09 15:08:12 +0000390
Chris Lattner823c44e2009-01-06 07:27:21 +0000391 // Parse identifier.
392 NamespcName = Tok.getIdentifierInfo();
393 IdentLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000394
Chris Lattner823c44e2009-01-06 07:27:21 +0000395 // Parse (optional) attributes (most likely GNU strong-using extension).
Sean Huntbbd37c62009-11-21 08:43:09 +0000396 bool GNUAttr = false;
397 if (Tok.is(tok::kw___attribute)) {
398 GNUAttr = true;
John McCall7f040a92010-12-24 02:08:15 +0000399 ParseGNUAttributes(attrs);
Sean Huntbbd37c62009-11-21 08:43:09 +0000400 }
Mike Stump1eb44332009-09-09 15:08:12 +0000401
Chris Lattner823c44e2009-01-06 07:27:21 +0000402 // Eat ';'.
Chris Lattner97144fc2009-04-02 04:16:50 +0000403 DeclEnd = Tok.getLocation();
Chris Lattner6869d8e2009-06-14 00:07:48 +0000404 ExpectAndConsume(tok::semi,
Douglas Gregor9ba23b42010-09-07 15:23:11 +0000405 GNUAttr ? diag::err_expected_semi_after_attribute_list
406 : diag::err_expected_semi_after_namespace_name,
407 "", tok::semi);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000408
Douglas Gregor23c94db2010-07-02 17:43:08 +0000409 return Actions.ActOnUsingDirective(getCurScope(), UsingLoc, NamespcLoc, SS,
John McCall7f040a92010-12-24 02:08:15 +0000410 IdentLoc, NamespcName, attrs.getList());
Douglas Gregorf780abc2008-12-30 03:27:21 +0000411}
412
Richard Smith162e1c12011-04-15 14:24:37 +0000413/// ParseUsingDeclaration - Parse C++ using-declaration or alias-declaration.
414/// Assumes that 'using' was already seen.
Douglas Gregorf780abc2008-12-30 03:27:21 +0000415///
416/// using-declaration: [C++ 7.3.p3: namespace.udecl]
417/// 'using' 'typename'[opt] ::[opt] nested-name-specifier
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000418/// unqualified-id
419/// 'using' :: unqualified-id
Douglas Gregorf780abc2008-12-30 03:27:21 +0000420///
Richard Smith162e1c12011-04-15 14:24:37 +0000421/// alias-declaration: C++0x [decl.typedef]p2
422/// 'using' identifier = type-id ;
423///
John McCalld226f652010-08-21 09:40:31 +0000424Decl *Parser::ParseUsingDeclaration(unsigned Context,
John McCall78b81052010-11-10 02:40:36 +0000425 const ParsedTemplateInfo &TemplateInfo,
426 SourceLocation UsingLoc,
427 SourceLocation &DeclEnd,
Richard Smithc89edf52011-07-01 19:46:12 +0000428 AccessSpecifier AS,
429 Decl **OwnedType) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000430 CXXScopeSpec SS;
John McCall7ba107a2009-11-18 02:36:19 +0000431 SourceLocation TypenameLoc;
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000432 bool IsTypeName;
433
434 // Ignore optional 'typename'.
Douglas Gregor12c118a2009-11-04 16:30:06 +0000435 // FIXME: This is wrong; we should parse this as a typename-specifier.
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000436 if (Tok.is(tok::kw_typename)) {
John McCall7ba107a2009-11-18 02:36:19 +0000437 TypenameLoc = Tok.getLocation();
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000438 ConsumeToken();
439 IsTypeName = true;
440 }
441 else
442 IsTypeName = false;
443
444 // Parse nested-name-specifier.
John McCallb3d87482010-08-24 05:47:05 +0000445 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000446
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000447 // Check nested-name specifier.
448 if (SS.isInvalid()) {
449 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000450 return 0;
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000451 }
Douglas Gregor12c118a2009-11-04 16:30:06 +0000452
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000453 // Parse the unqualified-id. We allow parsing of both constructor and
Douglas Gregor12c118a2009-11-04 16:30:06 +0000454 // destructor names and allow the action module to diagnose any semantic
455 // errors.
456 UnqualifiedId Name;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000457 if (ParseUnqualifiedId(SS,
Douglas Gregor12c118a2009-11-04 16:30:06 +0000458 /*EnteringContext=*/false,
459 /*AllowDestructorName=*/true,
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000460 /*AllowConstructorName=*/true,
John McCallb3d87482010-08-24 05:47:05 +0000461 ParsedType(),
Douglas Gregor12c118a2009-11-04 16:30:06 +0000462 Name)) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000463 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000464 return 0;
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000465 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000466
John McCall0b7e6782011-03-24 11:26:52 +0000467 ParsedAttributes attrs(AttrFactory);
Richard Smith162e1c12011-04-15 14:24:37 +0000468
469 // Maybe this is an alias-declaration.
470 bool IsAliasDecl = Tok.is(tok::equal);
471 TypeResult TypeAlias;
472 if (IsAliasDecl) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000473 // TODO: Attribute support. C++0x attributes may appear before the equals.
474 // Where can GNU attributes appear?
Richard Smith162e1c12011-04-15 14:24:37 +0000475 ConsumeToken();
476
477 if (!getLang().CPlusPlus0x)
478 Diag(Tok.getLocation(), diag::ext_alias_declaration);
479
Richard Smith3e4c6c42011-05-05 21:57:07 +0000480 // Type alias templates cannot be specialized.
481 int SpecKind = -1;
Richard Smith536e9c12011-05-05 22:36:10 +0000482 if (TemplateInfo.Kind == ParsedTemplateInfo::Template &&
483 Name.getKind() == UnqualifiedId::IK_TemplateId)
Richard Smith3e4c6c42011-05-05 21:57:07 +0000484 SpecKind = 0;
485 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitSpecialization)
486 SpecKind = 1;
487 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation)
488 SpecKind = 2;
489 if (SpecKind != -1) {
490 SourceRange Range;
491 if (SpecKind == 0)
492 Range = SourceRange(Name.TemplateId->LAngleLoc,
493 Name.TemplateId->RAngleLoc);
494 else
495 Range = TemplateInfo.getSourceRange();
496 Diag(Range.getBegin(), diag::err_alias_declaration_specialization)
497 << SpecKind << Range;
498 SkipUntil(tok::semi);
499 return 0;
500 }
501
Richard Smith162e1c12011-04-15 14:24:37 +0000502 // Name must be an identifier.
503 if (Name.getKind() != UnqualifiedId::IK_Identifier) {
504 Diag(Name.StartLocation, diag::err_alias_declaration_not_identifier);
505 // No removal fixit: can't recover from this.
506 SkipUntil(tok::semi);
507 return 0;
508 } else if (IsTypeName)
509 Diag(TypenameLoc, diag::err_alias_declaration_not_identifier)
510 << FixItHint::CreateRemoval(SourceRange(TypenameLoc,
511 SS.isNotEmpty() ? SS.getEndLoc() : TypenameLoc));
512 else if (SS.isNotEmpty())
513 Diag(SS.getBeginLoc(), diag::err_alias_declaration_not_identifier)
514 << FixItHint::CreateRemoval(SS.getRange());
515
Richard Smith3e4c6c42011-05-05 21:57:07 +0000516 TypeAlias = ParseTypeName(0, TemplateInfo.Kind ?
517 Declarator::AliasTemplateContext :
Richard Smithc89edf52011-07-01 19:46:12 +0000518 Declarator::AliasDeclContext, 0, AS, OwnedType);
Richard Smith162e1c12011-04-15 14:24:37 +0000519 } else
520 // Parse (optional) attributes (most likely GNU strong-using extension).
521 MaybeParseGNUAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +0000522
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000523 // Eat ';'.
524 DeclEnd = Tok.getLocation();
525 ExpectAndConsume(tok::semi, diag::err_expected_semi_after,
Richard Smith162e1c12011-04-15 14:24:37 +0000526 !attrs.empty() ? "attributes list" :
527 IsAliasDecl ? "alias declaration" : "using declaration",
Douglas Gregor12c118a2009-11-04 16:30:06 +0000528 tok::semi);
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000529
John McCall78b81052010-11-10 02:40:36 +0000530 // Diagnose an attempt to declare a templated using-declaration.
Richard Smith3e4c6c42011-05-05 21:57:07 +0000531 // In C++0x, alias-declarations can be templates:
Richard Smith162e1c12011-04-15 14:24:37 +0000532 // template <...> using id = type;
Richard Smith3e4c6c42011-05-05 21:57:07 +0000533 if (TemplateInfo.Kind && !IsAliasDecl) {
John McCall78b81052010-11-10 02:40:36 +0000534 SourceRange R = TemplateInfo.getSourceRange();
535 Diag(UsingLoc, diag::err_templated_using_declaration)
536 << R << FixItHint::CreateRemoval(R);
537
538 // Unfortunately, we have to bail out instead of recovering by
539 // ignoring the parameters, just in case the nested name specifier
540 // depends on the parameters.
541 return 0;
542 }
543
Richard Smith3e4c6c42011-05-05 21:57:07 +0000544 if (IsAliasDecl) {
545 TemplateParameterLists *TemplateParams = TemplateInfo.TemplateParams;
546 MultiTemplateParamsArg TemplateParamsArg(Actions,
547 TemplateParams ? TemplateParams->data() : 0,
548 TemplateParams ? TemplateParams->size() : 0);
549 return Actions.ActOnAliasDeclaration(getCurScope(), AS, TemplateParamsArg,
550 UsingLoc, Name, TypeAlias);
551 }
Richard Smith162e1c12011-04-15 14:24:37 +0000552
Ted Kremenek8113ecf2010-11-10 05:59:39 +0000553 return Actions.ActOnUsingDeclaration(getCurScope(), AS, true, UsingLoc, SS,
John McCall7f040a92010-12-24 02:08:15 +0000554 Name, attrs.getList(),
555 IsTypeName, TypenameLoc);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000556}
557
Peter Collingbournec6eb44b2011-04-15 00:35:57 +0000558/// ParseStaticAssertDeclaration - Parse C++0x or C1X static_assert-declaration.
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000559///
Peter Collingbournec6eb44b2011-04-15 00:35:57 +0000560/// [C++0x] static_assert-declaration:
561/// static_assert ( constant-expression , string-literal ) ;
562///
563/// [C1X] static_assert-declaration:
564/// _Static_assert ( constant-expression , string-literal ) ;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000565///
John McCalld226f652010-08-21 09:40:31 +0000566Decl *Parser::ParseStaticAssertDeclaration(SourceLocation &DeclEnd){
Peter Collingbournec6eb44b2011-04-15 00:35:57 +0000567 assert((Tok.is(tok::kw_static_assert) || Tok.is(tok::kw__Static_assert)) &&
568 "Not a static_assert declaration");
569
570 if (Tok.is(tok::kw__Static_assert) && !getLang().C1X)
571 Diag(Tok, diag::ext_c1x_static_assert);
572
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000573 SourceLocation StaticAssertLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000574
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000575 if (Tok.isNot(tok::l_paren)) {
576 Diag(Tok, diag::err_expected_lparen);
John McCalld226f652010-08-21 09:40:31 +0000577 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000578 }
Mike Stump1eb44332009-09-09 15:08:12 +0000579
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000580 SourceLocation LParenLoc = ConsumeParen();
Douglas Gregore0762c92009-06-19 23:52:42 +0000581
John McCall60d7b3a2010-08-24 06:29:42 +0000582 ExprResult AssertExpr(ParseConstantExpression());
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000583 if (AssertExpr.isInvalid()) {
584 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000585 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000586 }
Mike Stump1eb44332009-09-09 15:08:12 +0000587
Anders Carlssonad5f9602009-03-13 23:29:20 +0000588 if (ExpectAndConsume(tok::comma, diag::err_expected_comma, "", tok::semi))
John McCalld226f652010-08-21 09:40:31 +0000589 return 0;
Anders Carlssonad5f9602009-03-13 23:29:20 +0000590
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000591 if (Tok.isNot(tok::string_literal)) {
592 Diag(Tok, diag::err_expected_string_literal);
593 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000594 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000595 }
Mike Stump1eb44332009-09-09 15:08:12 +0000596
John McCall60d7b3a2010-08-24 06:29:42 +0000597 ExprResult AssertMessage(ParseStringLiteralExpression());
Mike Stump1eb44332009-09-09 15:08:12 +0000598 if (AssertMessage.isInvalid())
John McCalld226f652010-08-21 09:40:31 +0000599 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000600
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000601 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000602
Chris Lattner97144fc2009-04-02 04:16:50 +0000603 DeclEnd = Tok.getLocation();
Douglas Gregor9ba23b42010-09-07 15:23:11 +0000604 ExpectAndConsumeSemi(diag::err_expected_semi_after_static_assert);
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000605
John McCall9ae2f072010-08-23 23:25:46 +0000606 return Actions.ActOnStaticAssertDeclaration(StaticAssertLoc,
607 AssertExpr.take(),
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000608 AssertMessage.take(),
609 RParenLoc);
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000610}
611
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000612/// ParseDecltypeSpecifier - Parse a C++0x decltype specifier.
613///
614/// 'decltype' ( expression )
615///
616void Parser::ParseDecltypeSpecifier(DeclSpec &DS) {
617 assert(Tok.is(tok::kw_decltype) && "Not a decltype specifier");
618
619 SourceLocation StartLoc = ConsumeToken();
620 SourceLocation LParenLoc = Tok.getLocation();
Mike Stump1eb44332009-09-09 15:08:12 +0000621
622 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after,
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000623 "decltype")) {
624 SkipUntil(tok::r_paren);
625 return;
626 }
Mike Stump1eb44332009-09-09 15:08:12 +0000627
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000628 // Parse the expression
Mike Stump1eb44332009-09-09 15:08:12 +0000629
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000630 // C++0x [dcl.type.simple]p4:
631 // The operand of the decltype specifier is an unevaluated operand.
632 EnterExpressionEvaluationContext Unevaluated(Actions,
John McCallf312b1e2010-08-26 23:41:50 +0000633 Sema::Unevaluated);
John McCall60d7b3a2010-08-24 06:29:42 +0000634 ExprResult Result = ParseExpression();
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000635 if (Result.isInvalid()) {
636 SkipUntil(tok::r_paren);
637 return;
638 }
Mike Stump1eb44332009-09-09 15:08:12 +0000639
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000640 // Match the ')'
641 SourceLocation RParenLoc;
642 if (Tok.is(tok::r_paren))
643 RParenLoc = ConsumeParen();
644 else
645 MatchRHSPunctuation(tok::r_paren, LParenLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000646
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000647 if (RParenLoc.isInvalid())
648 return;
649
650 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +0000651 unsigned DiagID;
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000652 // Check for duplicate type specifiers (e.g. "int decltype(a)").
Mike Stump1eb44332009-09-09 15:08:12 +0000653 if (DS.SetTypeSpecType(DeclSpec::TST_decltype, StartLoc, PrevSpec,
John McCallfec54012009-08-03 20:12:06 +0000654 DiagID, Result.release()))
655 Diag(StartLoc, DiagID) << PrevSpec;
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000656}
657
Sean Huntdb5d44b2011-05-19 05:37:45 +0000658void Parser::ParseUnderlyingTypeSpecifier(DeclSpec &DS) {
659 assert(Tok.is(tok::kw___underlying_type) &&
660 "Not an underlying type specifier");
661
662 SourceLocation StartLoc = ConsumeToken();
663 SourceLocation LParenLoc = Tok.getLocation();
664
665 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after,
666 "__underlying_type")) {
667 SkipUntil(tok::r_paren);
668 return;
669 }
670
671 TypeResult Result = ParseTypeName();
672 if (Result.isInvalid()) {
673 SkipUntil(tok::r_paren);
674 return;
675 }
676
677 // Match the ')'
678 SourceLocation RParenLoc;
679 if (Tok.is(tok::r_paren))
680 RParenLoc = ConsumeParen();
681 else
682 MatchRHSPunctuation(tok::r_paren, LParenLoc);
683
684 if (RParenLoc.isInvalid())
685 return;
686
687 const char *PrevSpec = 0;
688 unsigned DiagID;
Sean Huntca63c202011-05-24 22:41:36 +0000689 if (DS.SetTypeSpecType(DeclSpec::TST_underlyingType, StartLoc, PrevSpec,
Sean Huntdb5d44b2011-05-19 05:37:45 +0000690 DiagID, Result.release()))
691 Diag(StartLoc, DiagID) << PrevSpec;
692}
693
Douglas Gregor42a552f2008-11-05 20:51:48 +0000694/// ParseClassName - Parse a C++ class-name, which names a class. Note
695/// that we only check that the result names a type; semantic analysis
696/// will need to verify that the type names a class. The result is
Douglas Gregor7f43d672009-02-25 23:52:28 +0000697/// either a type or NULL, depending on whether a type name was
Douglas Gregor42a552f2008-11-05 20:51:48 +0000698/// found.
699///
700/// class-name: [C++ 9.1]
701/// identifier
Douglas Gregor7f43d672009-02-25 23:52:28 +0000702/// simple-template-id
Mike Stump1eb44332009-09-09 15:08:12 +0000703///
Douglas Gregor31a19b62009-04-01 21:51:26 +0000704Parser::TypeResult Parser::ParseClassName(SourceLocation &EndLocation,
Douglas Gregor059101f2011-03-02 00:47:37 +0000705 CXXScopeSpec &SS) {
Douglas Gregor7f43d672009-02-25 23:52:28 +0000706 // Check whether we have a template-id that names a type.
707 if (Tok.is(tok::annot_template_id)) {
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +0000708 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregord9b600c2010-01-12 17:52:59 +0000709 if (TemplateId->Kind == TNK_Type_template ||
710 TemplateId->Kind == TNK_Dependent_template_name) {
Douglas Gregor059101f2011-03-02 00:47:37 +0000711 AnnotateTemplateIdTokenAsType();
Douglas Gregor7f43d672009-02-25 23:52:28 +0000712
713 assert(Tok.is(tok::annot_typename) && "template-id -> type failed");
John McCallb3d87482010-08-24 05:47:05 +0000714 ParsedType Type = getTypeAnnotation(Tok);
Douglas Gregor7f43d672009-02-25 23:52:28 +0000715 EndLocation = Tok.getAnnotationEndLoc();
716 ConsumeToken();
Douglas Gregor31a19b62009-04-01 21:51:26 +0000717
718 if (Type)
719 return Type;
720 return true;
Douglas Gregor7f43d672009-02-25 23:52:28 +0000721 }
722
723 // Fall through to produce an error below.
724 }
725
Douglas Gregor42a552f2008-11-05 20:51:48 +0000726 if (Tok.isNot(tok::identifier)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000727 Diag(Tok, diag::err_expected_class_name);
Douglas Gregor31a19b62009-04-01 21:51:26 +0000728 return true;
Douglas Gregor42a552f2008-11-05 20:51:48 +0000729 }
730
Douglas Gregor84d0a192010-01-12 21:28:44 +0000731 IdentifierInfo *Id = Tok.getIdentifierInfo();
732 SourceLocation IdLoc = ConsumeToken();
733
734 if (Tok.is(tok::less)) {
735 // It looks the user intended to write a template-id here, but the
736 // template-name was wrong. Try to fix that.
737 TemplateNameKind TNK = TNK_Type_template;
738 TemplateTy Template;
Douglas Gregor23c94db2010-07-02 17:43:08 +0000739 if (!Actions.DiagnoseUnknownTemplateName(*Id, IdLoc, getCurScope(),
Douglas Gregor059101f2011-03-02 00:47:37 +0000740 &SS, Template, TNK)) {
Douglas Gregor84d0a192010-01-12 21:28:44 +0000741 Diag(IdLoc, diag::err_unknown_template_name)
742 << Id;
743 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000744
Douglas Gregor84d0a192010-01-12 21:28:44 +0000745 if (!Template)
746 return true;
747
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000748 // Form the template name
Douglas Gregor84d0a192010-01-12 21:28:44 +0000749 UnqualifiedId TemplateName;
750 TemplateName.setIdentifier(Id, IdLoc);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000751
Douglas Gregor84d0a192010-01-12 21:28:44 +0000752 // Parse the full template-id, then turn it into a type.
753 if (AnnotateTemplateIdToken(Template, TNK, SS, TemplateName,
754 SourceLocation(), true))
755 return true;
756 if (TNK == TNK_Dependent_template_name)
Douglas Gregor059101f2011-03-02 00:47:37 +0000757 AnnotateTemplateIdTokenAsType();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000758
Douglas Gregor84d0a192010-01-12 21:28:44 +0000759 // If we didn't end up with a typename token, there's nothing more we
760 // can do.
761 if (Tok.isNot(tok::annot_typename))
762 return true;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000763
Douglas Gregor84d0a192010-01-12 21:28:44 +0000764 // Retrieve the type from the annotation token, consume that token, and
765 // return.
766 EndLocation = Tok.getAnnotationEndLoc();
John McCallb3d87482010-08-24 05:47:05 +0000767 ParsedType Type = getTypeAnnotation(Tok);
Douglas Gregor84d0a192010-01-12 21:28:44 +0000768 ConsumeToken();
769 return Type;
770 }
771
Douglas Gregor42a552f2008-11-05 20:51:48 +0000772 // We have an identifier; check whether it is actually a type.
Douglas Gregor059101f2011-03-02 00:47:37 +0000773 ParsedType Type = Actions.getTypeName(*Id, IdLoc, getCurScope(), &SS, true,
Douglas Gregor9e876872011-03-01 18:12:44 +0000774 false, ParsedType(),
775 /*NonTrivialTypeSourceInfo=*/true);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000776 if (!Type) {
Douglas Gregor124b8782010-02-16 19:09:40 +0000777 Diag(IdLoc, diag::err_expected_class_name);
Douglas Gregor31a19b62009-04-01 21:51:26 +0000778 return true;
Douglas Gregor42a552f2008-11-05 20:51:48 +0000779 }
780
781 // Consume the identifier.
Douglas Gregor84d0a192010-01-12 21:28:44 +0000782 EndLocation = IdLoc;
Nick Lewycky56062202010-07-26 16:56:01 +0000783
784 // Fake up a Declarator to use with ActOnTypeName.
John McCall0b7e6782011-03-24 11:26:52 +0000785 DeclSpec DS(AttrFactory);
Nick Lewycky56062202010-07-26 16:56:01 +0000786 DS.SetRangeStart(IdLoc);
787 DS.SetRangeEnd(EndLocation);
Douglas Gregor059101f2011-03-02 00:47:37 +0000788 DS.getTypeSpecScope() = SS;
Nick Lewycky56062202010-07-26 16:56:01 +0000789
790 const char *PrevSpec = 0;
791 unsigned DiagID;
792 DS.SetTypeSpecType(TST_typename, IdLoc, PrevSpec, DiagID, Type);
793
794 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
795 return Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
Douglas Gregor42a552f2008-11-05 20:51:48 +0000796}
797
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000798/// ParseClassSpecifier - Parse a C++ class-specifier [C++ class] or
799/// elaborated-type-specifier [C++ dcl.type.elab]; we can't tell which
800/// until we reach the start of a definition or see a token that
Sebastian Redld9bafa72010-02-03 21:21:43 +0000801/// cannot start a definition. If SuppressDeclarations is true, we do know.
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000802///
803/// class-specifier: [C++ class]
804/// class-head '{' member-specification[opt] '}'
805/// class-head '{' member-specification[opt] '}' attributes[opt]
806/// class-head:
807/// class-key identifier[opt] base-clause[opt]
808/// class-key nested-name-specifier identifier base-clause[opt]
809/// class-key nested-name-specifier[opt] simple-template-id
810/// base-clause[opt]
811/// [GNU] class-key attributes[opt] identifier[opt] base-clause[opt]
Mike Stump1eb44332009-09-09 15:08:12 +0000812/// [GNU] class-key attributes[opt] nested-name-specifier
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000813/// identifier base-clause[opt]
Mike Stump1eb44332009-09-09 15:08:12 +0000814/// [GNU] class-key attributes[opt] nested-name-specifier[opt]
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000815/// simple-template-id base-clause[opt]
816/// class-key:
817/// 'class'
818/// 'struct'
819/// 'union'
820///
821/// elaborated-type-specifier: [C++ dcl.type.elab]
Mike Stump1eb44332009-09-09 15:08:12 +0000822/// class-key ::[opt] nested-name-specifier[opt] identifier
823/// class-key ::[opt] nested-name-specifier[opt] 'template'[opt]
824/// simple-template-id
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000825///
826/// Note that the C++ class-specifier and elaborated-type-specifier,
827/// together, subsume the C99 struct-or-union-specifier:
828///
829/// struct-or-union-specifier: [C99 6.7.2.1]
830/// struct-or-union identifier[opt] '{' struct-contents '}'
831/// struct-or-union identifier
832/// [GNU] struct-or-union attributes[opt] identifier[opt] '{' struct-contents
833/// '}' attributes[opt]
834/// [GNU] struct-or-union attributes[opt] identifier
835/// struct-or-union:
836/// 'struct'
837/// 'union'
Chris Lattner4c97d762009-04-12 21:49:30 +0000838void Parser::ParseClassSpecifier(tok::TokenKind TagTokKind,
839 SourceLocation StartLoc, DeclSpec &DS,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000840 const ParsedTemplateInfo &TemplateInfo,
Sebastian Redld9bafa72010-02-03 21:21:43 +0000841 AccessSpecifier AS, bool SuppressDeclarations){
Chris Lattner4c97d762009-04-12 21:49:30 +0000842 DeclSpec::TST TagType;
843 if (TagTokKind == tok::kw_struct)
844 TagType = DeclSpec::TST_struct;
845 else if (TagTokKind == tok::kw_class)
846 TagType = DeclSpec::TST_class;
847 else {
848 assert(TagTokKind == tok::kw_union && "Not a class specifier");
849 TagType = DeclSpec::TST_union;
850 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000851
Douglas Gregor374929f2009-09-18 15:37:17 +0000852 if (Tok.is(tok::code_completion)) {
853 // Code completion for a struct, class, or union name.
Douglas Gregor23c94db2010-07-02 17:43:08 +0000854 Actions.CodeCompleteTag(getCurScope(), TagType);
Douglas Gregordc845342010-05-25 05:58:43 +0000855 ConsumeCodeCompletionToken();
Douglas Gregor374929f2009-09-18 15:37:17 +0000856 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000857
Chandler Carruth926c4b42010-06-28 08:39:25 +0000858 // C++03 [temp.explicit] 14.7.2/8:
859 // The usual access checking rules do not apply to names used to specify
860 // explicit instantiations.
861 //
862 // As an extension we do not perform access checking on the names used to
863 // specify explicit specializations either. This is important to allow
864 // specializing traits classes for private types.
865 bool SuppressingAccessChecks = false;
866 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation ||
867 TemplateInfo.Kind == ParsedTemplateInfo::ExplicitSpecialization) {
868 Actions.ActOnStartSuppressingAccessChecks();
869 SuppressingAccessChecks = true;
870 }
871
John McCall0b7e6782011-03-24 11:26:52 +0000872 ParsedAttributes attrs(AttrFactory);
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000873 // If attributes exist after tag, parse them.
874 if (Tok.is(tok::kw___attribute))
John McCall7f040a92010-12-24 02:08:15 +0000875 ParseGNUAttributes(attrs);
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000876
Steve Narofff59e17e2008-12-24 20:59:21 +0000877 // If declspecs exist after tag, parse them.
John McCallb1d397c2010-08-05 17:13:11 +0000878 while (Tok.is(tok::kw___declspec))
John McCall7f040a92010-12-24 02:08:15 +0000879 ParseMicrosoftDeclSpec(attrs);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000880
Sean Huntbbd37c62009-11-21 08:43:09 +0000881 // If C++0x attributes exist here, parse them.
882 // FIXME: Are we consistent with the ordering of parsing of different
883 // styles of attributes?
John McCall7f040a92010-12-24 02:08:15 +0000884 MaybeParseCXX0XAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +0000885
John Wiegley20c0da72011-04-27 23:09:49 +0000886 if (TagType == DeclSpec::TST_struct &&
Douglas Gregorb467cda2011-04-29 15:31:39 +0000887 !Tok.is(tok::identifier) &&
888 Tok.getIdentifierInfo() &&
889 (Tok.is(tok::kw___is_arithmetic) ||
890 Tok.is(tok::kw___is_convertible) ||
John Wiegley20c0da72011-04-27 23:09:49 +0000891 Tok.is(tok::kw___is_empty) ||
Douglas Gregorb467cda2011-04-29 15:31:39 +0000892 Tok.is(tok::kw___is_floating_point) ||
893 Tok.is(tok::kw___is_function) ||
John Wiegley20c0da72011-04-27 23:09:49 +0000894 Tok.is(tok::kw___is_fundamental) ||
Douglas Gregorb467cda2011-04-29 15:31:39 +0000895 Tok.is(tok::kw___is_integral) ||
896 Tok.is(tok::kw___is_member_function_pointer) ||
897 Tok.is(tok::kw___is_member_pointer) ||
898 Tok.is(tok::kw___is_pod) ||
899 Tok.is(tok::kw___is_pointer) ||
900 Tok.is(tok::kw___is_same) ||
Douglas Gregor877222e2011-04-29 01:38:03 +0000901 Tok.is(tok::kw___is_scalar) ||
Douglas Gregorb467cda2011-04-29 15:31:39 +0000902 Tok.is(tok::kw___is_signed) ||
903 Tok.is(tok::kw___is_unsigned) ||
904 Tok.is(tok::kw___is_void))) {
Douglas Gregor68876142011-07-30 07:01:49 +0000905 // GNU libstdc++ 4.2 and libc++ use certain intrinsic names as the
Douglas Gregorb467cda2011-04-29 15:31:39 +0000906 // name of struct templates, but some are keywords in GCC >= 4.3
907 // and Clang. Therefore, when we see the token sequence "struct
908 // X", make X into a normal identifier rather than a keyword, to
909 // allow libstdc++ 4.2 and libc++ to work properly.
Argyrios Kyrtzidis646395b2010-08-11 22:55:12 +0000910 Tok.getIdentifierInfo()->RevertTokenIDToIdentifier();
Douglas Gregorb117a602009-09-04 05:53:02 +0000911 Tok.setKind(tok::identifier);
912 }
Mike Stump1eb44332009-09-09 15:08:12 +0000913
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000914 // Parse the (optional) nested-name-specifier.
John McCallaa87d332009-12-12 11:40:51 +0000915 CXXScopeSpec &SS = DS.getTypeSpecScope();
Chris Lattner08d92ec2009-12-10 00:32:41 +0000916 if (getLang().CPlusPlus) {
917 // "FOO : BAR" is not a potential typo for "FOO::BAR".
918 ColonProtectionRAIIObject X(*this);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000919
John McCallb3d87482010-08-24 05:47:05 +0000920 if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(), true))
John McCall207014e2010-07-30 06:26:29 +0000921 DS.SetTypeSpecError();
John McCall9ba61662010-02-26 08:45:28 +0000922 if (SS.isSet())
Chris Lattner08d92ec2009-12-10 00:32:41 +0000923 if (Tok.isNot(tok::identifier) && Tok.isNot(tok::annot_template_id))
924 Diag(Tok, diag::err_expected_ident);
925 }
Douglas Gregorcc636682009-02-17 23:15:12 +0000926
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000927 TemplateParameterLists *TemplateParams = TemplateInfo.TemplateParams;
928
Douglas Gregorcc636682009-02-17 23:15:12 +0000929 // Parse the (optional) class name or simple-template-id.
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000930 IdentifierInfo *Name = 0;
931 SourceLocation NameLoc;
Douglas Gregor39a8de12009-02-25 19:37:18 +0000932 TemplateIdAnnotation *TemplateId = 0;
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000933 if (Tok.is(tok::identifier)) {
934 Name = Tok.getIdentifierInfo();
935 NameLoc = ConsumeToken();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000936
Douglas Gregor5ee37342010-05-30 22:30:21 +0000937 if (Tok.is(tok::less) && getLang().CPlusPlus) {
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000938 // The name was supposed to refer to a template, but didn't.
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000939 // Eat the template argument list and try to continue parsing this as
940 // a class (or template thereof).
941 TemplateArgList TemplateArgs;
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000942 SourceLocation LAngleLoc, RAngleLoc;
Douglas Gregor059101f2011-03-02 00:47:37 +0000943 if (ParseTemplateIdAfterTemplateName(TemplateTy(), NameLoc, SS,
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000944 true, LAngleLoc,
Douglas Gregor314b97f2009-11-10 19:49:08 +0000945 TemplateArgs, RAngleLoc)) {
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000946 // We couldn't parse the template argument list at all, so don't
947 // try to give any location information for the list.
948 LAngleLoc = RAngleLoc = SourceLocation();
949 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000950
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000951 Diag(NameLoc, diag::err_explicit_spec_non_template)
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000952 << (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation)
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000953 << (TagType == DeclSpec::TST_class? 0
954 : TagType == DeclSpec::TST_struct? 1
955 : 2)
956 << Name
957 << SourceRange(LAngleLoc, RAngleLoc);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000958
959 // Strip off the last template parameter list if it was empty, since
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000960 // we've removed its template argument list.
961 if (TemplateParams && TemplateInfo.LastParameterListWasEmpty) {
962 if (TemplateParams && TemplateParams->size() > 1) {
963 TemplateParams->pop_back();
964 } else {
965 TemplateParams = 0;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000966 const_cast<ParsedTemplateInfo&>(TemplateInfo).Kind
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000967 = ParsedTemplateInfo::NonTemplate;
968 }
969 } else if (TemplateInfo.Kind
970 == ParsedTemplateInfo::ExplicitInstantiation) {
971 // Pretend this is just a forward declaration.
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000972 TemplateParams = 0;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000973 const_cast<ParsedTemplateInfo&>(TemplateInfo).Kind
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000974 = ParsedTemplateInfo::NonTemplate;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000975 const_cast<ParsedTemplateInfo&>(TemplateInfo).TemplateLoc
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000976 = SourceLocation();
977 const_cast<ParsedTemplateInfo&>(TemplateInfo).ExternLoc
978 = SourceLocation();
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000979 }
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000980 }
Douglas Gregor39a8de12009-02-25 19:37:18 +0000981 } else if (Tok.is(tok::annot_template_id)) {
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +0000982 TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregor39a8de12009-02-25 19:37:18 +0000983 NameLoc = ConsumeToken();
Douglas Gregorcc636682009-02-17 23:15:12 +0000984
Douglas Gregor059101f2011-03-02 00:47:37 +0000985 if (TemplateId->Kind != TNK_Type_template &&
986 TemplateId->Kind != TNK_Dependent_template_name) {
Douglas Gregor39a8de12009-02-25 19:37:18 +0000987 // The template-name in the simple-template-id refers to
988 // something other than a class template. Give an appropriate
989 // error message and skip to the ';'.
990 SourceRange Range(NameLoc);
991 if (SS.isNotEmpty())
992 Range.setBegin(SS.getBeginLoc());
Douglas Gregorcc636682009-02-17 23:15:12 +0000993
Douglas Gregor39a8de12009-02-25 19:37:18 +0000994 Diag(TemplateId->LAngleLoc, diag::err_template_spec_syntax_non_template)
995 << Name << static_cast<int>(TemplateId->Kind) << Range;
Mike Stump1eb44332009-09-09 15:08:12 +0000996
Douglas Gregor39a8de12009-02-25 19:37:18 +0000997 DS.SetTypeSpecError();
998 SkipUntil(tok::semi, false, true);
Chandler Carruth926c4b42010-06-28 08:39:25 +0000999 if (SuppressingAccessChecks)
1000 Actions.ActOnStopSuppressingAccessChecks();
1001
Douglas Gregor39a8de12009-02-25 19:37:18 +00001002 return;
Douglas Gregorcc636682009-02-17 23:15:12 +00001003 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001004 }
1005
Chandler Carruth926c4b42010-06-28 08:39:25 +00001006 // As soon as we're finished parsing the class's template-id, turn access
1007 // checking back on.
1008 if (SuppressingAccessChecks)
1009 Actions.ActOnStopSuppressingAccessChecks();
1010
John McCall67d1a672009-08-06 02:15:43 +00001011 // There are four options here. If we have 'struct foo;', then this
1012 // is either a forward declaration or a friend declaration, which
Anders Carlssoncc54d592011-01-22 16:56:46 +00001013 // have to be treated differently. If we have 'struct foo {...',
Anders Carlsson1d209272011-03-25 14:55:14 +00001014 // 'struct foo :...' or 'struct foo final[opt]' then this is a
Anders Carlssoncc54d592011-01-22 16:56:46 +00001015 // definition. Otherwise we have something like 'struct foo xyz', a reference.
Sebastian Redld9bafa72010-02-03 21:21:43 +00001016 // However, in some contexts, things look like declarations but are just
1017 // references, e.g.
1018 // new struct s;
1019 // or
1020 // &T::operator struct s;
1021 // For these, SuppressDeclarations is true.
John McCallf312b1e2010-08-26 23:41:50 +00001022 Sema::TagUseKind TUK;
Sebastian Redld9bafa72010-02-03 21:21:43 +00001023 if (SuppressDeclarations)
John McCallf312b1e2010-08-26 23:41:50 +00001024 TUK = Sema::TUK_Reference;
Anders Carlssoncc54d592011-01-22 16:56:46 +00001025 else if (Tok.is(tok::l_brace) ||
1026 (getLang().CPlusPlus && Tok.is(tok::colon)) ||
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001027 isCXX0XFinalKeyword()) {
Douglas Gregord85bea22009-09-26 06:47:28 +00001028 if (DS.isFriendSpecified()) {
1029 // C++ [class.friend]p2:
1030 // A class shall not be defined in a friend declaration.
1031 Diag(Tok.getLocation(), diag::err_friend_decl_defines_class)
1032 << SourceRange(DS.getFriendSpecLoc());
1033
1034 // Skip everything up to the semicolon, so that this looks like a proper
1035 // friend class (or template thereof) declaration.
1036 SkipUntil(tok::semi, true, true);
John McCallf312b1e2010-08-26 23:41:50 +00001037 TUK = Sema::TUK_Friend;
Douglas Gregord85bea22009-09-26 06:47:28 +00001038 } else {
1039 // Okay, this is a class definition.
John McCallf312b1e2010-08-26 23:41:50 +00001040 TUK = Sema::TUK_Definition;
Douglas Gregord85bea22009-09-26 06:47:28 +00001041 }
1042 } else if (Tok.is(tok::semi))
John McCallf312b1e2010-08-26 23:41:50 +00001043 TUK = DS.isFriendSpecified() ? Sema::TUK_Friend : Sema::TUK_Declaration;
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001044 else
John McCallf312b1e2010-08-26 23:41:50 +00001045 TUK = Sema::TUK_Reference;
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001046
John McCall207014e2010-07-30 06:26:29 +00001047 if (!Name && !TemplateId && (DS.getTypeSpecType() == DeclSpec::TST_error ||
John McCallf312b1e2010-08-26 23:41:50 +00001048 TUK != Sema::TUK_Definition)) {
John McCall207014e2010-07-30 06:26:29 +00001049 if (DS.getTypeSpecType() != DeclSpec::TST_error) {
1050 // We have a declaration or reference to an anonymous class.
1051 Diag(StartLoc, diag::err_anon_type_definition)
1052 << DeclSpec::getSpecifierName(TagType);
1053 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001054
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001055 SkipUntil(tok::comma, true);
1056 return;
1057 }
1058
Douglas Gregorddc29e12009-02-06 22:42:48 +00001059 // Create the tag portion of the class or class template.
John McCalld226f652010-08-21 09:40:31 +00001060 DeclResult TagOrTempResult = true; // invalid
1061 TypeResult TypeResult = true; // invalid
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001062
Douglas Gregor402abb52009-05-28 23:31:59 +00001063 bool Owned = false;
John McCallf1bbbb42009-09-04 01:14:41 +00001064 if (TemplateId) {
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001065 // Explicit specialization, class template partial specialization,
1066 // or explicit instantiation.
Mike Stump1eb44332009-09-09 15:08:12 +00001067 ASTTemplateArgsPtr TemplateArgsPtr(Actions,
Douglas Gregor39a8de12009-02-25 19:37:18 +00001068 TemplateId->getTemplateArgs(),
Douglas Gregor39a8de12009-02-25 19:37:18 +00001069 TemplateId->NumArgs);
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001070 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallf312b1e2010-08-26 23:41:50 +00001071 TUK == Sema::TUK_Declaration) {
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001072 // This is an explicit instantiation of a class template.
1073 TagOrTempResult
Douglas Gregor23c94db2010-07-02 17:43:08 +00001074 = Actions.ActOnExplicitInstantiation(getCurScope(),
Douglas Gregor45f96552009-09-04 06:33:52 +00001075 TemplateInfo.ExternLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001076 TemplateInfo.TemplateLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001077 TagType,
Mike Stump1eb44332009-09-09 15:08:12 +00001078 StartLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001079 SS,
John McCall2b5289b2010-08-23 07:28:44 +00001080 TemplateId->Template,
Mike Stump1eb44332009-09-09 15:08:12 +00001081 TemplateId->TemplateNameLoc,
1082 TemplateId->LAngleLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001083 TemplateArgsPtr,
Mike Stump1eb44332009-09-09 15:08:12 +00001084 TemplateId->RAngleLoc,
John McCall7f040a92010-12-24 02:08:15 +00001085 attrs.getList());
John McCall74256f52010-04-14 00:24:33 +00001086
1087 // Friend template-ids are treated as references unless
1088 // they have template headers, in which case they're ill-formed
1089 // (FIXME: "template <class T> friend class A<T>::B<int>;").
1090 // We diagnose this error in ActOnClassTemplateSpecialization.
John McCallf312b1e2010-08-26 23:41:50 +00001091 } else if (TUK == Sema::TUK_Reference ||
1092 (TUK == Sema::TUK_Friend &&
John McCall74256f52010-04-14 00:24:33 +00001093 TemplateInfo.Kind == ParsedTemplateInfo::NonTemplate)) {
Douglas Gregor059101f2011-03-02 00:47:37 +00001094 TypeResult = Actions.ActOnTagTemplateIdType(TUK, TagType,
1095 StartLoc,
1096 TemplateId->SS,
1097 TemplateId->Template,
1098 TemplateId->TemplateNameLoc,
1099 TemplateId->LAngleLoc,
1100 TemplateArgsPtr,
1101 TemplateId->RAngleLoc);
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001102 } else {
1103 // This is an explicit specialization or a class template
1104 // partial specialization.
1105 TemplateParameterLists FakedParamLists;
1106
1107 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation) {
1108 // This looks like an explicit instantiation, because we have
1109 // something like
1110 //
1111 // template class Foo<X>
1112 //
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001113 // but it actually has a definition. Most likely, this was
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001114 // meant to be an explicit specialization, but the user forgot
1115 // the '<>' after 'template'.
John McCallf312b1e2010-08-26 23:41:50 +00001116 assert(TUK == Sema::TUK_Definition && "Expected a definition here");
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001117
Mike Stump1eb44332009-09-09 15:08:12 +00001118 SourceLocation LAngleLoc
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001119 = PP.getLocForEndOfToken(TemplateInfo.TemplateLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00001120 Diag(TemplateId->TemplateNameLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001121 diag::err_explicit_instantiation_with_definition)
1122 << SourceRange(TemplateInfo.TemplateLoc)
Douglas Gregor849b2432010-03-31 17:46:05 +00001123 << FixItHint::CreateInsertion(LAngleLoc, "<>");
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001124
1125 // Create a fake template parameter list that contains only
1126 // "template<>", so that we treat this construct as a class
1127 // template specialization.
1128 FakedParamLists.push_back(
Mike Stump1eb44332009-09-09 15:08:12 +00001129 Actions.ActOnTemplateParameterList(0, SourceLocation(),
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001130 TemplateInfo.TemplateLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001131 LAngleLoc,
1132 0, 0,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001133 LAngleLoc));
1134 TemplateParams = &FakedParamLists;
1135 }
1136
1137 // Build the class template specialization.
1138 TagOrTempResult
Douglas Gregor23c94db2010-07-02 17:43:08 +00001139 = Actions.ActOnClassTemplateSpecialization(getCurScope(), TagType, TUK,
Douglas Gregor39a8de12009-02-25 19:37:18 +00001140 StartLoc, SS,
John McCall2b5289b2010-08-23 07:28:44 +00001141 TemplateId->Template,
Mike Stump1eb44332009-09-09 15:08:12 +00001142 TemplateId->TemplateNameLoc,
1143 TemplateId->LAngleLoc,
Douglas Gregor39a8de12009-02-25 19:37:18 +00001144 TemplateArgsPtr,
Mike Stump1eb44332009-09-09 15:08:12 +00001145 TemplateId->RAngleLoc,
John McCall7f040a92010-12-24 02:08:15 +00001146 attrs.getList(),
John McCallf312b1e2010-08-26 23:41:50 +00001147 MultiTemplateParamsArg(Actions,
Douglas Gregorcc636682009-02-17 23:15:12 +00001148 TemplateParams? &(*TemplateParams)[0] : 0,
1149 TemplateParams? TemplateParams->size() : 0));
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001150 }
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001151 } else if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallf312b1e2010-08-26 23:41:50 +00001152 TUK == Sema::TUK_Declaration) {
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001153 // Explicit instantiation of a member of a class template
1154 // specialization, e.g.,
1155 //
1156 // template struct Outer<int>::Inner;
1157 //
1158 TagOrTempResult
Douglas Gregor23c94db2010-07-02 17:43:08 +00001159 = Actions.ActOnExplicitInstantiation(getCurScope(),
Douglas Gregor45f96552009-09-04 06:33:52 +00001160 TemplateInfo.ExternLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001161 TemplateInfo.TemplateLoc,
1162 TagType, StartLoc, SS, Name,
John McCall7f040a92010-12-24 02:08:15 +00001163 NameLoc, attrs.getList());
John McCall9a34edb2010-10-19 01:40:49 +00001164 } else if (TUK == Sema::TUK_Friend &&
1165 TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate) {
1166 TagOrTempResult =
1167 Actions.ActOnTemplatedFriendTag(getCurScope(), DS.getFriendSpecLoc(),
1168 TagType, StartLoc, SS,
John McCall7f040a92010-12-24 02:08:15 +00001169 Name, NameLoc, attrs.getList(),
John McCall9a34edb2010-10-19 01:40:49 +00001170 MultiTemplateParamsArg(Actions,
1171 TemplateParams? &(*TemplateParams)[0] : 0,
1172 TemplateParams? TemplateParams->size() : 0));
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001173 } else {
1174 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallf312b1e2010-08-26 23:41:50 +00001175 TUK == Sema::TUK_Definition) {
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001176 // FIXME: Diagnose this particular error.
1177 }
1178
John McCallc4e70192009-09-11 04:59:25 +00001179 bool IsDependent = false;
1180
John McCalla25c4082010-10-19 18:40:57 +00001181 // Don't pass down template parameter lists if this is just a tag
1182 // reference. For example, we don't need the template parameters here:
1183 // template <class T> class A *makeA(T t);
1184 MultiTemplateParamsArg TParams;
1185 if (TUK != Sema::TUK_Reference && TemplateParams)
1186 TParams =
1187 MultiTemplateParamsArg(&(*TemplateParams)[0], TemplateParams->size());
1188
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001189 // Declaration or definition of a class type
John McCall9a34edb2010-10-19 01:40:49 +00001190 TagOrTempResult = Actions.ActOnTag(getCurScope(), TagType, TUK, StartLoc,
John McCall7f040a92010-12-24 02:08:15 +00001191 SS, Name, NameLoc, attrs.getList(), AS,
John McCalla25c4082010-10-19 18:40:57 +00001192 TParams, Owned, IsDependent, false,
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +00001193 false, clang::TypeResult());
John McCallc4e70192009-09-11 04:59:25 +00001194
1195 // If ActOnTag said the type was dependent, try again with the
1196 // less common call.
John McCall9a34edb2010-10-19 01:40:49 +00001197 if (IsDependent) {
1198 assert(TUK == Sema::TUK_Reference || TUK == Sema::TUK_Friend);
Douglas Gregor23c94db2010-07-02 17:43:08 +00001199 TypeResult = Actions.ActOnDependentTag(getCurScope(), TagType, TUK,
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001200 SS, Name, StartLoc, NameLoc);
John McCall9a34edb2010-10-19 01:40:49 +00001201 }
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001202 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001203
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001204 // If there is a body, parse it and inform the actions module.
John McCallf312b1e2010-08-26 23:41:50 +00001205 if (TUK == Sema::TUK_Definition) {
John McCallbd0dfa52009-12-19 21:48:58 +00001206 assert(Tok.is(tok::l_brace) ||
Anders Carlssoncc54d592011-01-22 16:56:46 +00001207 (getLang().CPlusPlus && Tok.is(tok::colon)) ||
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001208 isCXX0XFinalKeyword());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001209 if (getLang().CPlusPlus)
Douglas Gregor212e81c2009-03-25 00:13:59 +00001210 ParseCXXMemberSpecification(StartLoc, TagType, TagOrTempResult.get());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001211 else
Douglas Gregor212e81c2009-03-25 00:13:59 +00001212 ParseStructUnionBody(StartLoc, TagType, TagOrTempResult.get());
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001213 }
1214
John McCallb3d87482010-08-24 05:47:05 +00001215 const char *PrevSpec = 0;
1216 unsigned DiagID;
1217 bool Result;
John McCallc4e70192009-09-11 04:59:25 +00001218 if (!TypeResult.isInvalid()) {
Abramo Bagnara0daaf322011-03-16 20:16:18 +00001219 Result = DS.SetTypeSpecType(DeclSpec::TST_typename, StartLoc,
1220 NameLoc.isValid() ? NameLoc : StartLoc,
John McCallb3d87482010-08-24 05:47:05 +00001221 PrevSpec, DiagID, TypeResult.get());
John McCallc4e70192009-09-11 04:59:25 +00001222 } else if (!TagOrTempResult.isInvalid()) {
Abramo Bagnara0daaf322011-03-16 20:16:18 +00001223 Result = DS.SetTypeSpecType(TagType, StartLoc,
1224 NameLoc.isValid() ? NameLoc : StartLoc,
1225 PrevSpec, DiagID, TagOrTempResult.get(), Owned);
John McCallc4e70192009-09-11 04:59:25 +00001226 } else {
Douglas Gregorddc29e12009-02-06 22:42:48 +00001227 DS.SetTypeSpecError();
Anders Carlsson66e99772009-05-11 22:27:47 +00001228 return;
1229 }
Mike Stump1eb44332009-09-09 15:08:12 +00001230
John McCallb3d87482010-08-24 05:47:05 +00001231 if (Result)
John McCallfec54012009-08-03 20:12:06 +00001232 Diag(StartLoc, DiagID) << PrevSpec;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001233
Chris Lattner4ed5d912010-02-02 01:23:29 +00001234 // At this point, we've successfully parsed a class-specifier in 'definition'
1235 // form (e.g. "struct foo { int x; }". While we could just return here, we're
1236 // going to look at what comes after it to improve error recovery. If an
1237 // impossible token occurs next, we assume that the programmer forgot a ; at
1238 // the end of the declaration and recover that way.
1239 //
1240 // This switch enumerates the valid "follow" set for definition.
John McCallf312b1e2010-08-26 23:41:50 +00001241 if (TUK == Sema::TUK_Definition) {
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001242 bool ExpectedSemi = true;
Chris Lattner4ed5d912010-02-02 01:23:29 +00001243 switch (Tok.getKind()) {
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001244 default: break;
Chris Lattner4ed5d912010-02-02 01:23:29 +00001245 case tok::semi: // struct foo {...} ;
Chris Lattner99c95202010-02-02 17:32:27 +00001246 case tok::star: // struct foo {...} * P;
1247 case tok::amp: // struct foo {...} & R = ...
1248 case tok::identifier: // struct foo {...} V ;
1249 case tok::r_paren: //(struct foo {...} ) {4}
1250 case tok::annot_cxxscope: // struct foo {...} a:: b;
1251 case tok::annot_typename: // struct foo {...} a ::b;
1252 case tok::annot_template_id: // struct foo {...} a<int> ::b;
Chris Lattnerc2e1c1a2010-02-03 20:41:24 +00001253 case tok::l_paren: // struct foo {...} ( x);
Chris Lattner16acfee2010-02-03 01:45:03 +00001254 case tok::comma: // __builtin_offsetof(struct foo{...} ,
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001255 ExpectedSemi = false;
1256 break;
1257 // Type qualifiers
1258 case tok::kw_const: // struct foo {...} const x;
1259 case tok::kw_volatile: // struct foo {...} volatile x;
1260 case tok::kw_restrict: // struct foo {...} restrict x;
1261 case tok::kw_inline: // struct foo {...} inline foo() {};
Chris Lattner99c95202010-02-02 17:32:27 +00001262 // Storage-class specifiers
1263 case tok::kw_static: // struct foo {...} static x;
1264 case tok::kw_extern: // struct foo {...} extern x;
1265 case tok::kw_typedef: // struct foo {...} typedef x;
1266 case tok::kw_register: // struct foo {...} register x;
1267 case tok::kw_auto: // struct foo {...} auto x;
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001268 case tok::kw_mutable: // struct foo {...} mutable x;
1269 case tok::kw_constexpr: // struct foo {...} constexpr x;
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001270 // As shown above, type qualifiers and storage class specifiers absolutely
1271 // can occur after class specifiers according to the grammar. However,
Chris Lattnerfc8f0e12011-04-15 05:22:18 +00001272 // almost no one actually writes code like this. If we see one of these,
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001273 // it is much more likely that someone missed a semi colon and the
1274 // type/storage class specifier we're seeing is part of the *next*
1275 // intended declaration, as in:
1276 //
1277 // struct foo { ... }
1278 // typedef int X;
1279 //
1280 // We'd really like to emit a missing semicolon error instead of emitting
1281 // an error on the 'int' saying that you can't have two type specifiers in
1282 // the same declaration of X. Because of this, we look ahead past this
1283 // token to see if it's a type specifier. If so, we know the code is
1284 // otherwise invalid, so we can produce the expected semi error.
1285 if (!isKnownToBeTypeSpecifier(NextToken()))
1286 ExpectedSemi = false;
Chris Lattner4ed5d912010-02-02 01:23:29 +00001287 break;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001288
1289 case tok::r_brace: // struct bar { struct foo {...} }
Chris Lattner4ed5d912010-02-02 01:23:29 +00001290 // Missing ';' at end of struct is accepted as an extension in C mode.
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001291 if (!getLang().CPlusPlus)
1292 ExpectedSemi = false;
1293 break;
1294 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001295
Richard Smithcf6b0a22011-07-14 21:35:26 +00001296 // C++ [temp]p3 In a template-declaration which defines a class, no
1297 // declarator is permitted.
1298 if (TemplateInfo.Kind)
1299 ExpectedSemi = true;
1300
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001301 if (ExpectedSemi) {
Chris Lattner4ed5d912010-02-02 01:23:29 +00001302 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_tagdecl,
1303 TagType == DeclSpec::TST_class ? "class"
1304 : TagType == DeclSpec::TST_struct? "struct" : "union");
1305 // Push this token back into the preprocessor and change our current token
1306 // to ';' so that the rest of the code recovers as though there were an
1307 // ';' after the definition.
1308 PP.EnterToken(Tok);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001309 Tok.setKind(tok::semi);
Chris Lattner4ed5d912010-02-02 01:23:29 +00001310 }
1311 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001312}
1313
Mike Stump1eb44332009-09-09 15:08:12 +00001314/// ParseBaseClause - Parse the base-clause of a C++ class [C++ class.derived].
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001315///
1316/// base-clause : [C++ class.derived]
1317/// ':' base-specifier-list
1318/// base-specifier-list:
1319/// base-specifier '...'[opt]
1320/// base-specifier-list ',' base-specifier '...'[opt]
John McCalld226f652010-08-21 09:40:31 +00001321void Parser::ParseBaseClause(Decl *ClassDecl) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001322 assert(Tok.is(tok::colon) && "Not a base clause");
1323 ConsumeToken();
1324
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001325 // Build up an array of parsed base specifiers.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001326 SmallVector<CXXBaseSpecifier *, 8> BaseInfo;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001327
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001328 while (true) {
1329 // Parse a base-specifier.
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001330 BaseResult Result = ParseBaseSpecifier(ClassDecl);
Douglas Gregor5ac8aff2009-01-26 22:44:13 +00001331 if (Result.isInvalid()) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001332 // Skip the rest of this base specifier, up until the comma or
1333 // opening brace.
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001334 SkipUntil(tok::comma, tok::l_brace, true, true);
1335 } else {
1336 // Add this to our array of base specifiers.
Douglas Gregor5ac8aff2009-01-26 22:44:13 +00001337 BaseInfo.push_back(Result.get());
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001338 }
1339
1340 // If the next token is a comma, consume it and keep reading
1341 // base-specifiers.
1342 if (Tok.isNot(tok::comma)) break;
Mike Stump1eb44332009-09-09 15:08:12 +00001343
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001344 // Consume the comma.
1345 ConsumeToken();
1346 }
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001347
1348 // Attach the base specifiers
Jay Foadbeaaccd2009-05-21 09:52:38 +00001349 Actions.ActOnBaseSpecifiers(ClassDecl, BaseInfo.data(), BaseInfo.size());
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001350}
1351
1352/// ParseBaseSpecifier - Parse a C++ base-specifier. A base-specifier is
1353/// one entry in the base class list of a class specifier, for example:
1354/// class foo : public bar, virtual private baz {
1355/// 'public bar' and 'virtual private baz' are each base-specifiers.
1356///
1357/// base-specifier: [C++ class.derived]
1358/// ::[opt] nested-name-specifier[opt] class-name
1359/// 'virtual' access-specifier[opt] ::[opt] nested-name-specifier[opt]
1360/// class-name
1361/// access-specifier 'virtual'[opt] ::[opt] nested-name-specifier[opt]
1362/// class-name
John McCalld226f652010-08-21 09:40:31 +00001363Parser::BaseResult Parser::ParseBaseSpecifier(Decl *ClassDecl) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001364 bool IsVirtual = false;
1365 SourceLocation StartLoc = Tok.getLocation();
1366
1367 // Parse the 'virtual' keyword.
1368 if (Tok.is(tok::kw_virtual)) {
1369 ConsumeToken();
1370 IsVirtual = true;
1371 }
1372
1373 // Parse an (optional) access specifier.
1374 AccessSpecifier Access = getAccessSpecifierIfPresent();
John McCall92f88312010-01-23 00:46:32 +00001375 if (Access != AS_none)
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001376 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001377
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001378 // Parse the 'virtual' keyword (again!), in case it came after the
1379 // access specifier.
1380 if (Tok.is(tok::kw_virtual)) {
1381 SourceLocation VirtualLoc = ConsumeToken();
1382 if (IsVirtual) {
1383 // Complain about duplicate 'virtual'
Chris Lattner1ab3b962008-11-18 07:48:38 +00001384 Diag(VirtualLoc, diag::err_dup_virtual)
Douglas Gregor849b2432010-03-31 17:46:05 +00001385 << FixItHint::CreateRemoval(VirtualLoc);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001386 }
1387
1388 IsVirtual = true;
1389 }
1390
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001391 // Parse optional '::' and optional nested-name-specifier.
1392 CXXScopeSpec SS;
John McCallb3d87482010-08-24 05:47:05 +00001393 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), /*EnteringContext=*/false);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001394
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001395 // The location of the base class itself.
1396 SourceLocation BaseLoc = Tok.getLocation();
Douglas Gregor42a552f2008-11-05 20:51:48 +00001397
1398 // Parse the class-name.
Douglas Gregor7f43d672009-02-25 23:52:28 +00001399 SourceLocation EndLocation;
Douglas Gregor059101f2011-03-02 00:47:37 +00001400 TypeResult BaseType = ParseClassName(EndLocation, SS);
Douglas Gregor31a19b62009-04-01 21:51:26 +00001401 if (BaseType.isInvalid())
Douglas Gregor42a552f2008-11-05 20:51:48 +00001402 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001403
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001404 // Parse the optional ellipsis (for a pack expansion). The ellipsis is
1405 // actually part of the base-specifier-list grammar productions, but we
1406 // parse it here for convenience.
1407 SourceLocation EllipsisLoc;
1408 if (Tok.is(tok::ellipsis))
1409 EllipsisLoc = ConsumeToken();
1410
Mike Stump1eb44332009-09-09 15:08:12 +00001411 // Find the complete source range for the base-specifier.
Douglas Gregor7f43d672009-02-25 23:52:28 +00001412 SourceRange Range(StartLoc, EndLocation);
Mike Stump1eb44332009-09-09 15:08:12 +00001413
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001414 // Notify semantic analysis that we have parsed a complete
1415 // base-specifier.
Sebastian Redla55e52c2008-11-25 22:21:31 +00001416 return Actions.ActOnBaseSpecifier(ClassDecl, Range, IsVirtual, Access,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001417 BaseType.get(), BaseLoc, EllipsisLoc);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001418}
1419
1420/// getAccessSpecifierIfPresent - Determine whether the next token is
1421/// a C++ access-specifier.
1422///
1423/// access-specifier: [C++ class.derived]
1424/// 'private'
1425/// 'protected'
1426/// 'public'
Mike Stump1eb44332009-09-09 15:08:12 +00001427AccessSpecifier Parser::getAccessSpecifierIfPresent() const {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001428 switch (Tok.getKind()) {
1429 default: return AS_none;
1430 case tok::kw_private: return AS_private;
1431 case tok::kw_protected: return AS_protected;
1432 case tok::kw_public: return AS_public;
1433 }
1434}
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001435
Eli Friedmand33133c2009-07-22 21:45:50 +00001436void Parser::HandleMemberFunctionDefaultArgs(Declarator& DeclaratorInfo,
John McCalld226f652010-08-21 09:40:31 +00001437 Decl *ThisDecl) {
Eli Friedmand33133c2009-07-22 21:45:50 +00001438 // We just declared a member function. If this member function
1439 // has any default arguments, we'll need to parse them later.
1440 LateParsedMethodDeclaration *LateMethod = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001441 DeclaratorChunk::FunctionTypeInfo &FTI
Abramo Bagnara075f8f12010-12-10 16:29:40 +00001442 = DeclaratorInfo.getFunctionTypeInfo();
Eli Friedmand33133c2009-07-22 21:45:50 +00001443 for (unsigned ParamIdx = 0; ParamIdx < FTI.NumArgs; ++ParamIdx) {
1444 if (LateMethod || FTI.ArgInfo[ParamIdx].DefaultArgTokens) {
1445 if (!LateMethod) {
1446 // Push this method onto the stack of late-parsed method
1447 // declarations.
Douglas Gregord54eb442010-10-12 16:25:54 +00001448 LateMethod = new LateParsedMethodDeclaration(this, ThisDecl);
1449 getCurrentClass().LateParsedDeclarations.push_back(LateMethod);
Douglas Gregor23c94db2010-07-02 17:43:08 +00001450 LateMethod->TemplateScope = getCurScope()->isTemplateParamScope();
Eli Friedmand33133c2009-07-22 21:45:50 +00001451
1452 // Add all of the parameters prior to this one (they don't
1453 // have default arguments).
1454 LateMethod->DefaultArgs.reserve(FTI.NumArgs);
1455 for (unsigned I = 0; I < ParamIdx; ++I)
1456 LateMethod->DefaultArgs.push_back(
Douglas Gregor8f8210c2010-03-02 01:29:43 +00001457 LateParsedDefaultArgument(FTI.ArgInfo[I].Param));
Eli Friedmand33133c2009-07-22 21:45:50 +00001458 }
1459
1460 // Add this parameter to the list of parameters (it or may
1461 // not have a default argument).
1462 LateMethod->DefaultArgs.push_back(
1463 LateParsedDefaultArgument(FTI.ArgInfo[ParamIdx].Param,
1464 FTI.ArgInfo[ParamIdx].DefaultArgTokens));
1465 }
1466 }
1467}
1468
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001469/// isCXX0XVirtSpecifier - Determine whether the next token is a C++0x
1470/// virt-specifier.
1471///
1472/// virt-specifier:
1473/// override
1474/// final
Anders Carlssoncc54d592011-01-22 16:56:46 +00001475VirtSpecifiers::Specifier Parser::isCXX0XVirtSpecifier() const {
Anders Carlssonce93a7c2011-01-22 23:01:49 +00001476 if (!getLang().CPlusPlus)
Anders Carlssoncc54d592011-01-22 16:56:46 +00001477 return VirtSpecifiers::VS_None;
1478
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001479 if (Tok.is(tok::identifier)) {
1480 IdentifierInfo *II = Tok.getIdentifierInfo();
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001481
Anders Carlsson7eeb4ec2011-01-20 03:47:08 +00001482 // Initialize the contextual keywords.
1483 if (!Ident_final) {
1484 Ident_final = &PP.getIdentifierTable().get("final");
1485 Ident_override = &PP.getIdentifierTable().get("override");
1486 }
1487
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001488 if (II == Ident_override)
1489 return VirtSpecifiers::VS_Override;
1490
1491 if (II == Ident_final)
1492 return VirtSpecifiers::VS_Final;
1493 }
1494
1495 return VirtSpecifiers::VS_None;
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001496}
1497
1498/// ParseOptionalCXX0XVirtSpecifierSeq - Parse a virt-specifier-seq.
1499///
1500/// virt-specifier-seq:
1501/// virt-specifier
1502/// virt-specifier-seq virt-specifier
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001503void Parser::ParseOptionalCXX0XVirtSpecifierSeq(VirtSpecifiers &VS) {
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001504 while (true) {
Anders Carlssoncc54d592011-01-22 16:56:46 +00001505 VirtSpecifiers::Specifier Specifier = isCXX0XVirtSpecifier();
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001506 if (Specifier == VirtSpecifiers::VS_None)
1507 return;
1508
1509 // C++ [class.mem]p8:
1510 // A virt-specifier-seq shall contain at most one of each virt-specifier.
Anders Carlssoncc54d592011-01-22 16:56:46 +00001511 const char *PrevSpec = 0;
Anders Carlsson46127a92011-01-22 15:58:16 +00001512 if (VS.SetSpecifier(Specifier, Tok.getLocation(), PrevSpec))
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001513 Diag(Tok.getLocation(), diag::err_duplicate_virt_specifier)
1514 << PrevSpec
1515 << FixItHint::CreateRemoval(Tok.getLocation());
1516
Anders Carlssonce93a7c2011-01-22 23:01:49 +00001517 if (!getLang().CPlusPlus0x)
1518 Diag(Tok.getLocation(), diag::ext_override_control_keyword)
1519 << VirtSpecifiers::getSpecifierName(Specifier);
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001520 ConsumeToken();
1521 }
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001522}
1523
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001524/// isCXX0XFinalKeyword - Determine whether the next token is a C++0x
1525/// contextual 'final' keyword.
1526bool Parser::isCXX0XFinalKeyword() const {
Anders Carlssonce93a7c2011-01-22 23:01:49 +00001527 if (!getLang().CPlusPlus)
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001528 return false;
Anders Carlssoncc54d592011-01-22 16:56:46 +00001529
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001530 if (!Tok.is(tok::identifier))
1531 return false;
Anders Carlssoncc54d592011-01-22 16:56:46 +00001532
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001533 // Initialize the contextual keywords.
1534 if (!Ident_final) {
1535 Ident_final = &PP.getIdentifierTable().get("final");
1536 Ident_override = &PP.getIdentifierTable().get("override");
1537 }
Anders Carlssoncc54d592011-01-22 16:56:46 +00001538
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001539 return Tok.getIdentifierInfo() == Ident_final;
Anders Carlssoncc54d592011-01-22 16:56:46 +00001540}
1541
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001542/// ParseCXXClassMemberDeclaration - Parse a C++ class member declaration.
1543///
1544/// member-declaration:
1545/// decl-specifier-seq[opt] member-declarator-list[opt] ';'
1546/// function-definition ';'[opt]
1547/// ::[opt] nested-name-specifier template[opt] unqualified-id ';'[TODO]
1548/// using-declaration [TODO]
Anders Carlsson511d7ab2009-03-11 16:27:10 +00001549/// [C++0x] static_assert-declaration
Anders Carlsson5aeccdb2009-03-26 00:52:18 +00001550/// template-declaration
Chris Lattnerbc8d5642008-12-18 01:12:00 +00001551/// [GNU] '__extension__' member-declaration
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001552///
1553/// member-declarator-list:
1554/// member-declarator
1555/// member-declarator-list ',' member-declarator
1556///
1557/// member-declarator:
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001558/// declarator virt-specifier-seq[opt] pure-specifier[opt]
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001559/// declarator constant-initializer[opt]
Richard Smith7a614d82011-06-11 17:19:42 +00001560/// [C++11] declarator brace-or-equal-initializer[opt]
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001561/// identifier[opt] ':' constant-expression
1562///
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001563/// virt-specifier-seq:
1564/// virt-specifier
1565/// virt-specifier-seq virt-specifier
1566///
1567/// virt-specifier:
1568/// override
1569/// final
1570/// new
1571///
Sebastian Redle2b68332009-04-12 17:16:29 +00001572/// pure-specifier:
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001573/// '= 0'
1574///
1575/// constant-initializer:
1576/// '=' constant-expression
1577///
Douglas Gregor37b372b2009-08-20 22:52:58 +00001578void Parser::ParseCXXClassMemberDeclaration(AccessSpecifier AS,
John McCallc9068d72010-07-16 08:13:16 +00001579 const ParsedTemplateInfo &TemplateInfo,
1580 ParsingDeclRAIIObject *TemplateDiags) {
Douglas Gregor8a9013d2011-04-14 17:21:19 +00001581 if (Tok.is(tok::at)) {
1582 if (getLang().ObjC1 && NextToken().isObjCAtKeyword(tok::objc_defs))
1583 Diag(Tok, diag::err_at_defs_cxx);
1584 else
1585 Diag(Tok, diag::err_at_in_class);
1586
1587 ConsumeToken();
1588 SkipUntil(tok::r_brace);
1589 return;
1590 }
1591
John McCall60fa3cf2009-12-11 02:10:03 +00001592 // Access declarations.
1593 if (!TemplateInfo.Kind &&
1594 (Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) &&
John McCall9ba61662010-02-26 08:45:28 +00001595 !TryAnnotateCXXScopeToken() &&
John McCall60fa3cf2009-12-11 02:10:03 +00001596 Tok.is(tok::annot_cxxscope)) {
1597 bool isAccessDecl = false;
1598 if (NextToken().is(tok::identifier))
1599 isAccessDecl = GetLookAheadToken(2).is(tok::semi);
1600 else
1601 isAccessDecl = NextToken().is(tok::kw_operator);
1602
1603 if (isAccessDecl) {
1604 // Collect the scope specifier token we annotated earlier.
1605 CXXScopeSpec SS;
John McCallb3d87482010-08-24 05:47:05 +00001606 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
John McCall60fa3cf2009-12-11 02:10:03 +00001607
1608 // Try to parse an unqualified-id.
1609 UnqualifiedId Name;
John McCallb3d87482010-08-24 05:47:05 +00001610 if (ParseUnqualifiedId(SS, false, true, true, ParsedType(), Name)) {
John McCall60fa3cf2009-12-11 02:10:03 +00001611 SkipUntil(tok::semi);
1612 return;
1613 }
1614
1615 // TODO: recover from mistakenly-qualified operator declarations.
1616 if (ExpectAndConsume(tok::semi,
1617 diag::err_expected_semi_after,
1618 "access declaration",
1619 tok::semi))
1620 return;
1621
Douglas Gregor23c94db2010-07-02 17:43:08 +00001622 Actions.ActOnUsingDeclaration(getCurScope(), AS,
John McCall60fa3cf2009-12-11 02:10:03 +00001623 false, SourceLocation(),
1624 SS, Name,
1625 /* AttrList */ 0,
1626 /* IsTypeName */ false,
1627 SourceLocation());
1628 return;
1629 }
1630 }
1631
Anders Carlsson511d7ab2009-03-11 16:27:10 +00001632 // static_assert-declaration
Peter Collingbournec6eb44b2011-04-15 00:35:57 +00001633 if (Tok.is(tok::kw_static_assert) || Tok.is(tok::kw__Static_assert)) {
Douglas Gregor37b372b2009-08-20 22:52:58 +00001634 // FIXME: Check for templates
Chris Lattner97144fc2009-04-02 04:16:50 +00001635 SourceLocation DeclEnd;
1636 ParseStaticAssertDeclaration(DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +00001637 return;
1638 }
Mike Stump1eb44332009-09-09 15:08:12 +00001639
Chris Lattner682bf922009-03-29 16:50:03 +00001640 if (Tok.is(tok::kw_template)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001641 assert(!TemplateInfo.TemplateParams &&
Douglas Gregor37b372b2009-08-20 22:52:58 +00001642 "Nested template improperly parsed?");
Chris Lattner97144fc2009-04-02 04:16:50 +00001643 SourceLocation DeclEnd;
Mike Stump1eb44332009-09-09 15:08:12 +00001644 ParseDeclarationStartingWithTemplate(Declarator::MemberContext, DeclEnd,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001645 AS);
Chris Lattner682bf922009-03-29 16:50:03 +00001646 return;
1647 }
Anders Carlsson5aeccdb2009-03-26 00:52:18 +00001648
Chris Lattnerbc8d5642008-12-18 01:12:00 +00001649 // Handle: member-declaration ::= '__extension__' member-declaration
1650 if (Tok.is(tok::kw___extension__)) {
1651 // __extension__ silences extension warnings in the subexpression.
1652 ExtensionRAIIObject O(Diags); // Use RAII to do this.
1653 ConsumeToken();
John McCallc9068d72010-07-16 08:13:16 +00001654 return ParseCXXClassMemberDeclaration(AS, TemplateInfo, TemplateDiags);
Chris Lattnerbc8d5642008-12-18 01:12:00 +00001655 }
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001656
Chris Lattner4ed5d912010-02-02 01:23:29 +00001657 // Don't parse FOO:BAR as if it were a typo for FOO::BAR, in this context it
1658 // is a bitfield.
Chris Lattnera1efc8c2009-12-10 01:59:24 +00001659 ColonProtectionRAIIObject X(*this);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001660
John McCall0b7e6782011-03-24 11:26:52 +00001661 ParsedAttributesWithRange attrs(AttrFactory);
Sean Huntbbd37c62009-11-21 08:43:09 +00001662 // Optional C++0x attribute-specifier
John McCall7f040a92010-12-24 02:08:15 +00001663 MaybeParseCXX0XAttributes(attrs);
1664 MaybeParseMicrosoftAttributes(attrs);
Sean Huntbbd37c62009-11-21 08:43:09 +00001665
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001666 if (Tok.is(tok::kw_using)) {
John McCall7f040a92010-12-24 02:08:15 +00001667 ProhibitAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +00001668
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001669 // Eat 'using'.
1670 SourceLocation UsingLoc = ConsumeToken();
1671
1672 if (Tok.is(tok::kw_namespace)) {
1673 Diag(UsingLoc, diag::err_using_namespace_in_class);
1674 SkipUntil(tok::semi, true, true);
Chris Lattnerae50d502010-02-02 00:43:15 +00001675 } else {
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001676 SourceLocation DeclEnd;
Richard Smith3e4c6c42011-05-05 21:57:07 +00001677 // Otherwise, it must be a using-declaration or an alias-declaration.
John McCall78b81052010-11-10 02:40:36 +00001678 ParseUsingDeclaration(Declarator::MemberContext, TemplateInfo,
1679 UsingLoc, DeclEnd, AS);
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001680 }
1681 return;
1682 }
1683
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001684 // decl-specifier-seq:
1685 // Parse the common declaration-specifiers piece.
John McCallc9068d72010-07-16 08:13:16 +00001686 ParsingDeclSpec DS(*this, TemplateDiags);
John McCall7f040a92010-12-24 02:08:15 +00001687 DS.takeAttributesFrom(attrs);
Douglas Gregor37b372b2009-08-20 22:52:58 +00001688 ParseDeclarationSpecifiers(DS, TemplateInfo, AS, DSC_class);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001689
John McCallf312b1e2010-08-26 23:41:50 +00001690 MultiTemplateParamsArg TemplateParams(Actions,
John McCalldd4a3b02009-09-16 22:47:08 +00001691 TemplateInfo.TemplateParams? TemplateInfo.TemplateParams->data() : 0,
1692 TemplateInfo.TemplateParams? TemplateInfo.TemplateParams->size() : 0);
1693
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001694 if (Tok.is(tok::semi)) {
1695 ConsumeToken();
John McCalld226f652010-08-21 09:40:31 +00001696 Decl *TheDecl =
Chandler Carruth0f4be742011-05-03 18:35:10 +00001697 Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS, DS, TemplateParams);
John McCallc9068d72010-07-16 08:13:16 +00001698 DS.complete(TheDecl);
John McCall67d1a672009-08-06 02:15:43 +00001699 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001700 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001701
John McCall54abf7d2009-11-04 02:18:39 +00001702 ParsingDeclarator DeclaratorInfo(*this, DS, Declarator::MemberContext);
Nico Weber48673472011-01-28 06:07:34 +00001703 VirtSpecifiers VS;
Francois Pichet6a247472011-05-11 02:14:46 +00001704 ExprResult Init;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001705
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001706 if (Tok.isNot(tok::colon)) {
Chris Lattnera1efc8c2009-12-10 01:59:24 +00001707 // Don't parse FOO:BAR as if it were a typo for FOO::BAR.
1708 ColonProtectionRAIIObject X(*this);
1709
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001710 // Parse the first declarator.
1711 ParseDeclarator(DeclaratorInfo);
1712 // Error parsing the declarator?
Douglas Gregor10bd3682008-11-17 22:58:34 +00001713 if (!DeclaratorInfo.hasName()) {
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001714 // If so, skip until the semi-colon or a }.
Sebastian Redld941fa42011-04-24 16:27:48 +00001715 SkipUntil(tok::r_brace, true, true);
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001716 if (Tok.is(tok::semi))
1717 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001718 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001719 }
1720
Nico Weber48673472011-01-28 06:07:34 +00001721 ParseOptionalCXX0XVirtSpecifierSeq(VS);
1722
John Thompson1b2fc0f2009-11-25 22:58:06 +00001723 // If attributes exist after the declarator, but before an '{', parse them.
John McCall7f040a92010-12-24 02:08:15 +00001724 MaybeParseGNUAttributes(DeclaratorInfo);
John Thompson1b2fc0f2009-11-25 22:58:06 +00001725
Francois Pichet6a247472011-05-11 02:14:46 +00001726 // MSVC permits pure specifier on inline functions declared at class scope.
1727 // Hence check for =0 before checking for function definition.
1728 if (getLang().Microsoft && Tok.is(tok::equal) &&
1729 DeclaratorInfo.isFunctionDeclarator() &&
1730 NextToken().is(tok::numeric_constant)) {
1731 ConsumeToken();
1732 Init = ParseInitializer();
1733 if (Init.isInvalid())
1734 SkipUntil(tok::comma, true, true);
1735 }
1736
Sean Hunte4246a62011-05-12 06:15:49 +00001737 bool IsDefinition = false;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001738 // function-definition:
Richard Smith7a614d82011-06-11 17:19:42 +00001739 //
1740 // In C++11, a non-function declarator followed by an open brace is a
1741 // braced-init-list for an in-class member initialization, not an
1742 // erroneous function definition.
1743 if (Tok.is(tok::l_brace) && !getLang().CPlusPlus0x) {
Sean Hunte4246a62011-05-12 06:15:49 +00001744 IsDefinition = true;
1745 } else if (DeclaratorInfo.isFunctionDeclarator()) {
Richard Smith7a614d82011-06-11 17:19:42 +00001746 if (Tok.is(tok::l_brace) || Tok.is(tok::colon) || Tok.is(tok::kw_try)) {
Sean Hunte4246a62011-05-12 06:15:49 +00001747 IsDefinition = true;
1748 } else if (Tok.is(tok::equal)) {
1749 const Token &KW = NextToken();
1750 if (KW.is(tok::kw_default) || KW.is(tok::kw_delete))
1751 IsDefinition = true;
1752 }
1753 }
1754
1755 if (IsDefinition) {
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001756 if (!DeclaratorInfo.isFunctionDeclarator()) {
1757 Diag(Tok, diag::err_func_def_no_params);
1758 ConsumeBrace();
1759 SkipUntil(tok::r_brace, true);
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001760
1761 // Consume the optional ';'
1762 if (Tok.is(tok::semi))
1763 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001764 return;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001765 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001766
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001767 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
1768 Diag(Tok, diag::err_function_declared_typedef);
1769 // This recovery skips the entire function body. It would be nice
1770 // to simply call ParseCXXInlineMethodDef() below, however Sema
1771 // assumes the declarator represents a function, not a typedef.
1772 ConsumeBrace();
1773 SkipUntil(tok::r_brace, true);
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001774
1775 // Consume the optional ';'
1776 if (Tok.is(tok::semi))
1777 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001778 return;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001779 }
1780
Francois Pichet6a247472011-05-11 02:14:46 +00001781 ParseCXXInlineMethodDef(AS, DeclaratorInfo, TemplateInfo, VS, Init);
Sean Hunte4246a62011-05-12 06:15:49 +00001782
1783 // Consume the ';' - it's optional unless we have a delete or default
1784 if (Tok.is(tok::semi)) {
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001785 ConsumeToken();
Sean Hunte4246a62011-05-12 06:15:49 +00001786 }
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001787
Chris Lattner682bf922009-03-29 16:50:03 +00001788 return;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001789 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001790 }
1791
1792 // member-declarator-list:
1793 // member-declarator
1794 // member-declarator-list ',' member-declarator
1795
Chris Lattner5f9e2722011-07-23 10:55:15 +00001796 SmallVector<Decl *, 8> DeclsInGroup;
John McCall60d7b3a2010-08-24 06:29:42 +00001797 ExprResult BitfieldSize;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001798
1799 while (1) {
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001800 // member-declarator:
1801 // declarator pure-specifier[opt]
Richard Smith7a614d82011-06-11 17:19:42 +00001802 // declarator brace-or-equal-initializer[opt]
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001803 // identifier[opt] ':' constant-expression
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001804 if (Tok.is(tok::colon)) {
1805 ConsumeToken();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001806 BitfieldSize = ParseConstantExpression();
1807 if (BitfieldSize.isInvalid())
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001808 SkipUntil(tok::comma, true, true);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001809 }
Mike Stump1eb44332009-09-09 15:08:12 +00001810
Chris Lattnere6563252010-06-13 05:34:18 +00001811 // If a simple-asm-expr is present, parse it.
1812 if (Tok.is(tok::kw_asm)) {
1813 SourceLocation Loc;
John McCall60d7b3a2010-08-24 06:29:42 +00001814 ExprResult AsmLabel(ParseSimpleAsm(&Loc));
Chris Lattnere6563252010-06-13 05:34:18 +00001815 if (AsmLabel.isInvalid())
1816 SkipUntil(tok::comma, true, true);
1817
1818 DeclaratorInfo.setAsmLabel(AsmLabel.release());
1819 DeclaratorInfo.SetRangeEnd(Loc);
1820 }
1821
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001822 // If attributes exist after the declarator, parse them.
John McCall7f040a92010-12-24 02:08:15 +00001823 MaybeParseGNUAttributes(DeclaratorInfo);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001824
Richard Smith7a614d82011-06-11 17:19:42 +00001825 // FIXME: When g++ adds support for this, we'll need to check whether it
1826 // goes before or after the GNU attributes and __asm__.
1827 ParseOptionalCXX0XVirtSpecifierSeq(VS);
1828
1829 bool HasDeferredInitializer = false;
1830 if (Tok.is(tok::equal) || Tok.is(tok::l_brace)) {
1831 if (BitfieldSize.get()) {
1832 Diag(Tok, diag::err_bitfield_member_init);
1833 SkipUntil(tok::comma, true, true);
1834 } else {
Douglas Gregor555f57e2011-06-25 00:56:27 +00001835 HasDeferredInitializer = !DeclaratorInfo.isDeclarationOfFunction() &&
Richard Smith7a614d82011-06-11 17:19:42 +00001836 DeclaratorInfo.getDeclSpec().getStorageClassSpec()
Richard Smithc2cdd532011-06-12 11:43:46 +00001837 != DeclSpec::SCS_static &&
1838 DeclaratorInfo.getDeclSpec().getStorageClassSpec()
1839 != DeclSpec::SCS_typedef;
Richard Smith7a614d82011-06-11 17:19:42 +00001840
1841 if (!HasDeferredInitializer) {
1842 SourceLocation EqualLoc;
1843 Init = ParseCXXMemberInitializer(
Douglas Gregor555f57e2011-06-25 00:56:27 +00001844 DeclaratorInfo.isDeclarationOfFunction(), EqualLoc);
Richard Smith7a614d82011-06-11 17:19:42 +00001845 if (Init.isInvalid())
1846 SkipUntil(tok::comma, true, true);
1847 }
1848 }
1849 }
1850
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001851 // NOTE: If Sema is the Action module and declarator is an instance field,
Chris Lattner682bf922009-03-29 16:50:03 +00001852 // this call will *not* return the created decl; It will return null.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001853 // See Sema::ActOnCXXMemberDeclarator for details.
John McCall67d1a672009-08-06 02:15:43 +00001854
John McCalld226f652010-08-21 09:40:31 +00001855 Decl *ThisDecl = 0;
John McCall67d1a672009-08-06 02:15:43 +00001856 if (DS.isFriendSpecified()) {
John McCallbbbcdd92009-09-11 21:02:39 +00001857 // TODO: handle initializers, bitfields, 'delete'
Douglas Gregor23c94db2010-07-02 17:43:08 +00001858 ThisDecl = Actions.ActOnFriendFunctionDecl(getCurScope(), DeclaratorInfo,
John McCallbbbcdd92009-09-11 21:02:39 +00001859 /*IsDefinition*/ false,
1860 move(TemplateParams));
Douglas Gregor37b372b2009-08-20 22:52:58 +00001861 } else {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001862 ThisDecl = Actions.ActOnCXXMemberDeclarator(getCurScope(), AS,
John McCall67d1a672009-08-06 02:15:43 +00001863 DeclaratorInfo,
Douglas Gregor37b372b2009-08-20 22:52:58 +00001864 move(TemplateParams),
John McCall67d1a672009-08-06 02:15:43 +00001865 BitfieldSize.release(),
Richard Smith7a614d82011-06-11 17:19:42 +00001866 VS, Init.release(),
1867 HasDeferredInitializer,
1868 /*IsDefinition*/ false);
Douglas Gregor37b372b2009-08-20 22:52:58 +00001869 }
Chris Lattner682bf922009-03-29 16:50:03 +00001870 if (ThisDecl)
1871 DeclsInGroup.push_back(ThisDecl);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001872
Douglas Gregor72b505b2008-12-16 21:30:33 +00001873 if (DeclaratorInfo.isFunctionDeclarator() &&
Mike Stump1eb44332009-09-09 15:08:12 +00001874 DeclaratorInfo.getDeclSpec().getStorageClassSpec()
Douglas Gregor72b505b2008-12-16 21:30:33 +00001875 != DeclSpec::SCS_typedef) {
Eli Friedmand33133c2009-07-22 21:45:50 +00001876 HandleMemberFunctionDefaultArgs(DeclaratorInfo, ThisDecl);
Douglas Gregor72b505b2008-12-16 21:30:33 +00001877 }
1878
John McCall54abf7d2009-11-04 02:18:39 +00001879 DeclaratorInfo.complete(ThisDecl);
1880
Richard Smith7a614d82011-06-11 17:19:42 +00001881 if (HasDeferredInitializer) {
1882 if (!getLang().CPlusPlus0x)
1883 Diag(Tok, diag::warn_nonstatic_member_init_accepted_as_extension);
1884
1885 if (DeclaratorInfo.isArrayOfUnknownBound()) {
1886 // C++0x [dcl.array]p3: An array bound may also be omitted when the
1887 // declarator is followed by an initializer.
1888 //
1889 // A brace-or-equal-initializer for a member-declarator is not an
1890 // initializer in the gramamr, so this is ill-formed.
1891 Diag(Tok, diag::err_incomplete_array_member_init);
1892 SkipUntil(tok::comma, true, true);
1893 // Avoid later warnings about a class member of incomplete type.
1894 ThisDecl->setInvalidDecl();
1895 } else
1896 ParseCXXNonStaticMemberInitializer(ThisDecl);
1897 }
1898
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001899 // If we don't have a comma, it is either the end of the list (a ';')
1900 // or an error, bail out.
1901 if (Tok.isNot(tok::comma))
1902 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001903
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001904 // Consume the comma.
1905 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001906
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001907 // Parse the next declarator.
1908 DeclaratorInfo.clear();
Nico Weber48673472011-01-28 06:07:34 +00001909 VS.clear();
Sebastian Redl15faa7f2008-12-09 20:22:58 +00001910 BitfieldSize = 0;
1911 Init = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001912
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001913 // Attributes are only allowed on the second declarator.
John McCall7f040a92010-12-24 02:08:15 +00001914 MaybeParseGNUAttributes(DeclaratorInfo);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001915
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001916 if (Tok.isNot(tok::colon))
1917 ParseDeclarator(DeclaratorInfo);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001918 }
1919
Chris Lattnerae50d502010-02-02 00:43:15 +00001920 if (ExpectAndConsume(tok::semi, diag::err_expected_semi_decl_list)) {
1921 // Skip to end of block or statement.
1922 SkipUntil(tok::r_brace, true, true);
1923 // If we stopped at a ';', eat it.
1924 if (Tok.is(tok::semi)) ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001925 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001926 }
1927
Douglas Gregor23c94db2010-07-02 17:43:08 +00001928 Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup.data(),
Chris Lattnerae50d502010-02-02 00:43:15 +00001929 DeclsInGroup.size());
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001930}
1931
Richard Smith7a614d82011-06-11 17:19:42 +00001932/// ParseCXXMemberInitializer - Parse the brace-or-equal-initializer or
1933/// pure-specifier. Also detect and reject any attempted defaulted/deleted
1934/// function definition. The location of the '=', if any, will be placed in
1935/// EqualLoc.
1936///
1937/// pure-specifier:
1938/// '= 0'
1939///
1940/// brace-or-equal-initializer:
1941/// '=' initializer-expression
1942/// braced-init-list [TODO]
1943///
1944/// initializer-clause:
1945/// assignment-expression
1946/// braced-init-list [TODO]
1947///
1948/// defaulted/deleted function-definition:
1949/// '=' 'default'
1950/// '=' 'delete'
1951///
1952/// Prior to C++0x, the assignment-expression in an initializer-clause must
1953/// be a constant-expression.
1954ExprResult Parser::ParseCXXMemberInitializer(bool IsFunction,
1955 SourceLocation &EqualLoc) {
1956 assert((Tok.is(tok::equal) || Tok.is(tok::l_brace))
1957 && "Data member initializer not starting with '=' or '{'");
1958
1959 if (Tok.is(tok::equal)) {
1960 EqualLoc = ConsumeToken();
1961 if (Tok.is(tok::kw_delete)) {
1962 // In principle, an initializer of '= delete p;' is legal, but it will
1963 // never type-check. It's better to diagnose it as an ill-formed expression
1964 // than as an ill-formed deleted non-function member.
1965 // An initializer of '= delete p, foo' will never be parsed, because
1966 // a top-level comma always ends the initializer expression.
1967 const Token &Next = NextToken();
1968 if (IsFunction || Next.is(tok::semi) || Next.is(tok::comma) ||
1969 Next.is(tok::eof)) {
1970 if (IsFunction)
1971 Diag(ConsumeToken(), diag::err_default_delete_in_multiple_declaration)
1972 << 1 /* delete */;
1973 else
1974 Diag(ConsumeToken(), diag::err_deleted_non_function);
1975 return ExprResult();
1976 }
1977 } else if (Tok.is(tok::kw_default)) {
1978 Diag(ConsumeToken(), diag::err_default_special_members);
1979 if (IsFunction)
1980 Diag(Tok, diag::err_default_delete_in_multiple_declaration)
1981 << 0 /* default */;
1982 else
1983 Diag(ConsumeToken(), diag::err_default_special_members);
1984 return ExprResult();
1985 }
1986
1987 return ParseInitializer();
1988 } else
1989 return ExprError(Diag(Tok, diag::err_generalized_initializer_lists));
1990}
1991
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001992/// ParseCXXMemberSpecification - Parse the class definition.
1993///
1994/// member-specification:
1995/// member-declaration member-specification[opt]
1996/// access-specifier ':' member-specification[opt]
1997///
1998void Parser::ParseCXXMemberSpecification(SourceLocation RecordLoc,
John McCalld226f652010-08-21 09:40:31 +00001999 unsigned TagType, Decl *TagDecl) {
Sanjiv Gupta31fc07d2008-10-31 09:52:39 +00002000 assert((TagType == DeclSpec::TST_struct ||
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002001 TagType == DeclSpec::TST_union ||
Sanjiv Gupta31fc07d2008-10-31 09:52:39 +00002002 TagType == DeclSpec::TST_class) && "Invalid TagType!");
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002003
John McCallf312b1e2010-08-26 23:41:50 +00002004 PrettyDeclStackTraceEntry CrashInfo(Actions, TagDecl, RecordLoc,
2005 "parsing struct/union/class body");
Mike Stump1eb44332009-09-09 15:08:12 +00002006
Douglas Gregor26997fd2010-01-16 20:52:59 +00002007 // Determine whether this is a non-nested class. Note that local
2008 // classes are *not* considered to be nested classes.
2009 bool NonNestedClass = true;
2010 if (!ClassStack.empty()) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00002011 for (const Scope *S = getCurScope(); S; S = S->getParent()) {
Douglas Gregor26997fd2010-01-16 20:52:59 +00002012 if (S->isClassScope()) {
2013 // We're inside a class scope, so this is a nested class.
2014 NonNestedClass = false;
2015 break;
2016 }
2017
2018 if ((S->getFlags() & Scope::FnScope)) {
2019 // If we're in a function or function template declared in the
2020 // body of a class, then this is a local class rather than a
2021 // nested class.
2022 const Scope *Parent = S->getParent();
2023 if (Parent->isTemplateParamScope())
2024 Parent = Parent->getParent();
2025 if (Parent->isClassScope())
2026 break;
2027 }
2028 }
2029 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002030
2031 // Enter a scope for the class.
Douglas Gregor3218c4b2009-01-09 22:42:13 +00002032 ParseScope ClassScope(this, Scope::ClassScope|Scope::DeclScope);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002033
Douglas Gregor6569d682009-05-27 23:11:45 +00002034 // Note that we are parsing a new (potentially-nested) class definition.
Douglas Gregor26997fd2010-01-16 20:52:59 +00002035 ParsingClassDefinition ParsingDef(*this, TagDecl, NonNestedClass);
Douglas Gregor6569d682009-05-27 23:11:45 +00002036
Douglas Gregorddc29e12009-02-06 22:42:48 +00002037 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002038 Actions.ActOnTagStartDefinition(getCurScope(), TagDecl);
John McCallbd0dfa52009-12-19 21:48:58 +00002039
Anders Carlssonb184a182011-03-25 14:46:08 +00002040 SourceLocation FinalLoc;
2041
2042 // Parse the optional 'final' keyword.
2043 if (getLang().CPlusPlus && Tok.is(tok::identifier)) {
2044 IdentifierInfo *II = Tok.getIdentifierInfo();
2045
2046 // Initialize the contextual keywords.
2047 if (!Ident_final) {
2048 Ident_final = &PP.getIdentifierTable().get("final");
2049 Ident_override = &PP.getIdentifierTable().get("override");
2050 }
2051
2052 if (II == Ident_final)
2053 FinalLoc = ConsumeToken();
2054
2055 if (!getLang().CPlusPlus0x)
2056 Diag(FinalLoc, diag::ext_override_control_keyword) << "final";
2057 }
Anders Carlssoncc54d592011-01-22 16:56:46 +00002058
John McCallbd0dfa52009-12-19 21:48:58 +00002059 if (Tok.is(tok::colon)) {
2060 ParseBaseClause(TagDecl);
2061
2062 if (!Tok.is(tok::l_brace)) {
2063 Diag(Tok, diag::err_expected_lbrace_after_base_specifiers);
John McCalldb7bb4a2010-03-17 00:38:33 +00002064
2065 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002066 Actions.ActOnTagDefinitionError(getCurScope(), TagDecl);
John McCallbd0dfa52009-12-19 21:48:58 +00002067 return;
2068 }
2069 }
2070
2071 assert(Tok.is(tok::l_brace));
2072
2073 SourceLocation LBraceLoc = ConsumeBrace();
2074
John McCall42a4f662010-05-28 08:11:17 +00002075 if (TagDecl)
Anders Carlsson2c3ee542011-03-25 14:31:08 +00002076 Actions.ActOnStartCXXMemberDeclarations(getCurScope(), TagDecl, FinalLoc,
Anders Carlssondfc2f102011-01-22 17:51:53 +00002077 LBraceLoc);
John McCallf9368152009-12-20 07:58:13 +00002078
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002079 // C++ 11p3: Members of a class defined with the keyword class are private
2080 // by default. Members of a class defined with the keywords struct or union
2081 // are public by default.
2082 AccessSpecifier CurAS;
2083 if (TagType == DeclSpec::TST_class)
2084 CurAS = AS_private;
2085 else
2086 CurAS = AS_public;
2087
Douglas Gregor07976d22010-06-21 22:31:09 +00002088 SourceLocation RBraceLoc;
2089 if (TagDecl) {
2090 // While we still have something to read, read the member-declarations.
2091 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
2092 // Each iteration of this loop reads one member-declaration.
Mike Stump1eb44332009-09-09 15:08:12 +00002093
Francois Pichet563a6452011-05-25 10:19:49 +00002094 if (getLang().Microsoft && (Tok.is(tok::kw___if_exists) ||
2095 Tok.is(tok::kw___if_not_exists))) {
2096 ParseMicrosoftIfExistsClassDeclaration((DeclSpec::TST)TagType, CurAS);
2097 continue;
2098 }
2099
Douglas Gregor07976d22010-06-21 22:31:09 +00002100 // Check for extraneous top-level semicolon.
2101 if (Tok.is(tok::semi)) {
2102 Diag(Tok, diag::ext_extra_struct_semi)
2103 << DeclSpec::getSpecifierName((DeclSpec::TST)TagType)
2104 << FixItHint::CreateRemoval(Tok.getLocation());
2105 ConsumeToken();
2106 continue;
2107 }
2108
2109 AccessSpecifier AS = getAccessSpecifierIfPresent();
2110 if (AS != AS_none) {
2111 // Current token is a C++ access specifier.
2112 CurAS = AS;
2113 SourceLocation ASLoc = Tok.getLocation();
2114 ConsumeToken();
2115 if (Tok.is(tok::colon))
2116 Actions.ActOnAccessSpecifier(AS, ASLoc, Tok.getLocation());
2117 else
2118 Diag(Tok, diag::err_expected_colon);
2119 ConsumeToken();
2120 continue;
2121 }
2122
2123 // FIXME: Make sure we don't have a template here.
2124
2125 // Parse all the comma separated declarators.
2126 ParseCXXClassMemberDeclaration(CurAS);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002127 }
2128
Douglas Gregor07976d22010-06-21 22:31:09 +00002129 RBraceLoc = MatchRHSPunctuation(tok::r_brace, LBraceLoc);
2130 } else {
2131 SkipUntil(tok::r_brace, false, false);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002132 }
Mike Stump1eb44332009-09-09 15:08:12 +00002133
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002134 // If attributes exist after class contents, parse them.
John McCall0b7e6782011-03-24 11:26:52 +00002135 ParsedAttributes attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +00002136 MaybeParseGNUAttributes(attrs);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002137
John McCall42a4f662010-05-28 08:11:17 +00002138 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002139 Actions.ActOnFinishCXXMemberSpecification(getCurScope(), RecordLoc, TagDecl,
John McCall42a4f662010-05-28 08:11:17 +00002140 LBraceLoc, RBraceLoc,
John McCall7f040a92010-12-24 02:08:15 +00002141 attrs.getList());
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002142
Richard Smith7a614d82011-06-11 17:19:42 +00002143 // C++0x [class.mem]p2: Within the class member-specification, the class is
2144 // regarded as complete within function bodies, default arguments, exception-
2145 // specifications, and brace-or-equal-initializers for non-static data
2146 // members (including such things in nested classes).
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002147 //
Richard Smith7a614d82011-06-11 17:19:42 +00002148 // FIXME: Only function bodies and brace-or-equal-initializers are currently
2149 // handled. Fix the others!
Douglas Gregor07976d22010-06-21 22:31:09 +00002150 if (TagDecl && NonNestedClass) {
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002151 // We are not inside a nested class. This class and its nested classes
Douglas Gregor72b505b2008-12-16 21:30:33 +00002152 // are complete and we can parse the delayed portions of method
2153 // declarations and the lexed inline method definitions.
Douglas Gregore0cc0472010-06-16 23:45:56 +00002154 SourceLocation SavedPrevTokLocation = PrevTokLocation;
Douglas Gregor6569d682009-05-27 23:11:45 +00002155 ParseLexedMethodDeclarations(getCurrentClass());
Richard Smith7a614d82011-06-11 17:19:42 +00002156 ParseLexedMemberInitializers(getCurrentClass());
Douglas Gregor6569d682009-05-27 23:11:45 +00002157 ParseLexedMethodDefs(getCurrentClass());
Douglas Gregore0cc0472010-06-16 23:45:56 +00002158 PrevTokLocation = SavedPrevTokLocation;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002159 }
2160
John McCall42a4f662010-05-28 08:11:17 +00002161 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002162 Actions.ActOnTagFinishDefinition(getCurScope(), TagDecl, RBraceLoc);
John McCalldb7bb4a2010-03-17 00:38:33 +00002163
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002164 // Leave the class scope.
Douglas Gregor6569d682009-05-27 23:11:45 +00002165 ParsingDef.Pop();
Douglas Gregor8935b8b2008-12-10 06:34:36 +00002166 ClassScope.Exit();
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002167}
Douglas Gregor7ad83902008-11-05 04:29:56 +00002168
2169/// ParseConstructorInitializer - Parse a C++ constructor initializer,
2170/// which explicitly initializes the members or base classes of a
2171/// class (C++ [class.base.init]). For example, the three initializers
2172/// after the ':' in the Derived constructor below:
2173///
2174/// @code
2175/// class Base { };
2176/// class Derived : Base {
2177/// int x;
2178/// float f;
2179/// public:
2180/// Derived(float f) : Base(), x(17), f(f) { }
2181/// };
2182/// @endcode
2183///
Mike Stump1eb44332009-09-09 15:08:12 +00002184/// [C++] ctor-initializer:
2185/// ':' mem-initializer-list
Douglas Gregor7ad83902008-11-05 04:29:56 +00002186///
Mike Stump1eb44332009-09-09 15:08:12 +00002187/// [C++] mem-initializer-list:
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002188/// mem-initializer ...[opt]
2189/// mem-initializer ...[opt] , mem-initializer-list
John McCalld226f652010-08-21 09:40:31 +00002190void Parser::ParseConstructorInitializer(Decl *ConstructorDecl) {
Douglas Gregor7ad83902008-11-05 04:29:56 +00002191 assert(Tok.is(tok::colon) && "Constructor initializer always starts with ':'");
2192
John Wiegley28bbe4b2011-04-28 01:08:34 +00002193 // Poison the SEH identifiers so they are flagged as illegal in constructor initializers
2194 PoisonSEHIdentifiersRAIIObject PoisonSEHIdentifiers(*this, true);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002195 SourceLocation ColonLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00002196
Chris Lattner5f9e2722011-07-23 10:55:15 +00002197 SmallVector<CXXCtorInitializer*, 4> MemInitializers;
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002198 bool AnyErrors = false;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002199
Douglas Gregor7ad83902008-11-05 04:29:56 +00002200 do {
Douglas Gregor0133f522010-08-28 00:00:50 +00002201 if (Tok.is(tok::code_completion)) {
2202 Actions.CodeCompleteConstructorInitializer(ConstructorDecl,
2203 MemInitializers.data(),
2204 MemInitializers.size());
2205 ConsumeCodeCompletionToken();
2206 } else {
2207 MemInitResult MemInit = ParseMemInitializer(ConstructorDecl);
2208 if (!MemInit.isInvalid())
2209 MemInitializers.push_back(MemInit.get());
2210 else
2211 AnyErrors = true;
2212 }
2213
Douglas Gregor7ad83902008-11-05 04:29:56 +00002214 if (Tok.is(tok::comma))
2215 ConsumeToken();
2216 else if (Tok.is(tok::l_brace))
2217 break;
Douglas Gregorb1f6fa42010-09-07 14:35:10 +00002218 // If the next token looks like a base or member initializer, assume that
2219 // we're just missing a comma.
Douglas Gregor751f6922010-09-07 14:51:08 +00002220 else if (Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) {
2221 SourceLocation Loc = PP.getLocForEndOfToken(PrevTokLocation);
2222 Diag(Loc, diag::err_ctor_init_missing_comma)
2223 << FixItHint::CreateInsertion(Loc, ", ");
2224 } else {
Douglas Gregor7ad83902008-11-05 04:29:56 +00002225 // Skip over garbage, until we get to '{'. Don't eat the '{'.
Sebastian Redld3a413d2009-04-26 20:35:05 +00002226 Diag(Tok.getLocation(), diag::err_expected_lbrace_or_comma);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002227 SkipUntil(tok::l_brace, true, true);
2228 break;
2229 }
2230 } while (true);
2231
Mike Stump1eb44332009-09-09 15:08:12 +00002232 Actions.ActOnMemInitializers(ConstructorDecl, ColonLoc,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002233 MemInitializers.data(), MemInitializers.size(),
2234 AnyErrors);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002235}
2236
2237/// ParseMemInitializer - Parse a C++ member initializer, which is
2238/// part of a constructor initializer that explicitly initializes one
2239/// member or base class (C++ [class.base.init]). See
2240/// ParseConstructorInitializer for an example.
2241///
2242/// [C++] mem-initializer:
2243/// mem-initializer-id '(' expression-list[opt] ')'
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002244/// [C++0x] mem-initializer-id braced-init-list
Mike Stump1eb44332009-09-09 15:08:12 +00002245///
Douglas Gregor7ad83902008-11-05 04:29:56 +00002246/// [C++] mem-initializer-id:
2247/// '::'[opt] nested-name-specifier[opt] class-name
2248/// identifier
John McCalld226f652010-08-21 09:40:31 +00002249Parser::MemInitResult Parser::ParseMemInitializer(Decl *ConstructorDecl) {
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00002250 // parse '::'[opt] nested-name-specifier[opt]
2251 CXXScopeSpec SS;
John McCallb3d87482010-08-24 05:47:05 +00002252 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
2253 ParsedType TemplateTypeTy;
Fariborz Jahanian96174332009-07-01 19:21:19 +00002254 if (Tok.is(tok::annot_template_id)) {
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +00002255 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregord9b600c2010-01-12 17:52:59 +00002256 if (TemplateId->Kind == TNK_Type_template ||
2257 TemplateId->Kind == TNK_Dependent_template_name) {
Douglas Gregor059101f2011-03-02 00:47:37 +00002258 AnnotateTemplateIdTokenAsType();
Fariborz Jahanian96174332009-07-01 19:21:19 +00002259 assert(Tok.is(tok::annot_typename) && "template-id -> type failed");
John McCallb3d87482010-08-24 05:47:05 +00002260 TemplateTypeTy = getTypeAnnotation(Tok);
Fariborz Jahanian96174332009-07-01 19:21:19 +00002261 }
Fariborz Jahanian96174332009-07-01 19:21:19 +00002262 }
2263 if (!TemplateTypeTy && Tok.isNot(tok::identifier)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00002264 Diag(Tok, diag::err_expected_member_or_base_name);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002265 return true;
2266 }
Mike Stump1eb44332009-09-09 15:08:12 +00002267
Douglas Gregor7ad83902008-11-05 04:29:56 +00002268 // Get the identifier. This may be a member name or a class name,
2269 // but we'll let the semantic analysis determine which it is.
Fariborz Jahanian96174332009-07-01 19:21:19 +00002270 IdentifierInfo *II = Tok.is(tok::identifier) ? Tok.getIdentifierInfo() : 0;
Douglas Gregor7ad83902008-11-05 04:29:56 +00002271 SourceLocation IdLoc = ConsumeToken();
2272
2273 // Parse the '('.
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002274 if (getLang().CPlusPlus0x && Tok.is(tok::l_brace)) {
2275 // FIXME: Do something with the braced-init-list.
2276 ParseBraceInitializer();
Douglas Gregor7ad83902008-11-05 04:29:56 +00002277 return true;
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002278 } else if(Tok.is(tok::l_paren)) {
2279 SourceLocation LParenLoc = ConsumeParen();
Douglas Gregor7ad83902008-11-05 04:29:56 +00002280
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002281 // Parse the optional expression-list.
2282 ExprVector ArgExprs(Actions);
2283 CommaLocsTy CommaLocs;
2284 if (Tok.isNot(tok::r_paren) && ParseExpressionList(ArgExprs, CommaLocs)) {
2285 SkipUntil(tok::r_paren);
2286 return true;
2287 }
2288
2289 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
2290
2291 SourceLocation EllipsisLoc;
2292 if (Tok.is(tok::ellipsis))
2293 EllipsisLoc = ConsumeToken();
2294
2295 return Actions.ActOnMemInitializer(ConstructorDecl, getCurScope(), SS, II,
2296 TemplateTypeTy, IdLoc,
2297 LParenLoc, ArgExprs.take(),
2298 ArgExprs.size(), RParenLoc,
2299 EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002300 }
2301
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002302 Diag(Tok, getLang().CPlusPlus0x ? diag::err_expected_lparen_or_lbrace
2303 : diag::err_expected_lparen);
2304 return true;
Douglas Gregor7ad83902008-11-05 04:29:56 +00002305}
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002306
Sebastian Redl7acafd02011-03-05 14:45:16 +00002307/// \brief Parse a C++ exception-specification if present (C++0x [except.spec]).
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002308///
Douglas Gregora4745612008-12-01 18:00:20 +00002309/// exception-specification:
Sebastian Redl7acafd02011-03-05 14:45:16 +00002310/// dynamic-exception-specification
2311/// noexcept-specification
2312///
2313/// noexcept-specification:
2314/// 'noexcept'
2315/// 'noexcept' '(' constant-expression ')'
2316ExceptionSpecificationType
2317Parser::MaybeParseExceptionSpecification(SourceRange &SpecificationRange,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002318 SmallVectorImpl<ParsedType> &DynamicExceptions,
2319 SmallVectorImpl<SourceRange> &DynamicExceptionRanges,
Sebastian Redl7acafd02011-03-05 14:45:16 +00002320 ExprResult &NoexceptExpr) {
2321 ExceptionSpecificationType Result = EST_None;
2322
2323 // See if there's a dynamic specification.
2324 if (Tok.is(tok::kw_throw)) {
2325 Result = ParseDynamicExceptionSpecification(SpecificationRange,
2326 DynamicExceptions,
2327 DynamicExceptionRanges);
2328 assert(DynamicExceptions.size() == DynamicExceptionRanges.size() &&
2329 "Produced different number of exception types and ranges.");
2330 }
2331
2332 // If there's no noexcept specification, we're done.
2333 if (Tok.isNot(tok::kw_noexcept))
2334 return Result;
2335
2336 // If we already had a dynamic specification, parse the noexcept for,
2337 // recovery, but emit a diagnostic and don't store the results.
2338 SourceRange NoexceptRange;
2339 ExceptionSpecificationType NoexceptType = EST_None;
2340
2341 SourceLocation KeywordLoc = ConsumeToken();
2342 if (Tok.is(tok::l_paren)) {
2343 // There is an argument.
2344 SourceLocation LParenLoc = ConsumeParen();
2345 NoexceptType = EST_ComputedNoexcept;
2346 NoexceptExpr = ParseConstantExpression();
Sebastian Redl60618fa2011-03-12 11:50:43 +00002347 // The argument must be contextually convertible to bool. We use
2348 // ActOnBooleanCondition for this purpose.
2349 if (!NoexceptExpr.isInvalid())
2350 NoexceptExpr = Actions.ActOnBooleanCondition(getCurScope(), KeywordLoc,
2351 NoexceptExpr.get());
Sebastian Redl7acafd02011-03-05 14:45:16 +00002352 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
2353 NoexceptRange = SourceRange(KeywordLoc, RParenLoc);
2354 } else {
2355 // There is no argument.
2356 NoexceptType = EST_BasicNoexcept;
2357 NoexceptRange = SourceRange(KeywordLoc, KeywordLoc);
2358 }
2359
2360 if (Result == EST_None) {
2361 SpecificationRange = NoexceptRange;
2362 Result = NoexceptType;
2363
2364 // If there's a dynamic specification after a noexcept specification,
2365 // parse that and ignore the results.
2366 if (Tok.is(tok::kw_throw)) {
2367 Diag(Tok.getLocation(), diag::err_dynamic_and_noexcept_specification);
2368 ParseDynamicExceptionSpecification(NoexceptRange, DynamicExceptions,
2369 DynamicExceptionRanges);
2370 }
2371 } else {
2372 Diag(Tok.getLocation(), diag::err_dynamic_and_noexcept_specification);
2373 }
2374
2375 return Result;
2376}
2377
2378/// ParseDynamicExceptionSpecification - Parse a C++
2379/// dynamic-exception-specification (C++ [except.spec]).
2380///
2381/// dynamic-exception-specification:
Douglas Gregora4745612008-12-01 18:00:20 +00002382/// 'throw' '(' type-id-list [opt] ')'
2383/// [MS] 'throw' '(' '...' ')'
Mike Stump1eb44332009-09-09 15:08:12 +00002384///
Douglas Gregora4745612008-12-01 18:00:20 +00002385/// type-id-list:
Douglas Gregora04426c2010-12-20 23:57:46 +00002386/// type-id ... [opt]
2387/// type-id-list ',' type-id ... [opt]
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002388///
Sebastian Redl7acafd02011-03-05 14:45:16 +00002389ExceptionSpecificationType Parser::ParseDynamicExceptionSpecification(
2390 SourceRange &SpecificationRange,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002391 SmallVectorImpl<ParsedType> &Exceptions,
2392 SmallVectorImpl<SourceRange> &Ranges) {
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002393 assert(Tok.is(tok::kw_throw) && "expected throw");
Mike Stump1eb44332009-09-09 15:08:12 +00002394
Sebastian Redl7acafd02011-03-05 14:45:16 +00002395 SpecificationRange.setBegin(ConsumeToken());
Mike Stump1eb44332009-09-09 15:08:12 +00002396
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002397 if (!Tok.is(tok::l_paren)) {
Sebastian Redl7acafd02011-03-05 14:45:16 +00002398 Diag(Tok, diag::err_expected_lparen_after) << "throw";
2399 SpecificationRange.setEnd(SpecificationRange.getBegin());
Sebastian Redl60618fa2011-03-12 11:50:43 +00002400 return EST_DynamicNone;
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002401 }
2402 SourceLocation LParenLoc = ConsumeParen();
2403
Douglas Gregora4745612008-12-01 18:00:20 +00002404 // Parse throw(...), a Microsoft extension that means "this function
2405 // can throw anything".
2406 if (Tok.is(tok::ellipsis)) {
2407 SourceLocation EllipsisLoc = ConsumeToken();
2408 if (!getLang().Microsoft)
2409 Diag(EllipsisLoc, diag::ext_ellipsis_exception_spec);
Sebastian Redl7acafd02011-03-05 14:45:16 +00002410 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
2411 SpecificationRange.setEnd(RParenLoc);
Sebastian Redl60618fa2011-03-12 11:50:43 +00002412 return EST_MSAny;
Douglas Gregora4745612008-12-01 18:00:20 +00002413 }
2414
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002415 // Parse the sequence of type-ids.
Sebastian Redlef65f062009-05-29 18:02:33 +00002416 SourceRange Range;
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002417 while (Tok.isNot(tok::r_paren)) {
Sebastian Redlef65f062009-05-29 18:02:33 +00002418 TypeResult Res(ParseTypeName(&Range));
Sebastian Redl7acafd02011-03-05 14:45:16 +00002419
Douglas Gregora04426c2010-12-20 23:57:46 +00002420 if (Tok.is(tok::ellipsis)) {
2421 // C++0x [temp.variadic]p5:
2422 // - In a dynamic-exception-specification (15.4); the pattern is a
2423 // type-id.
2424 SourceLocation Ellipsis = ConsumeToken();
Sebastian Redl7acafd02011-03-05 14:45:16 +00002425 Range.setEnd(Ellipsis);
Douglas Gregora04426c2010-12-20 23:57:46 +00002426 if (!Res.isInvalid())
2427 Res = Actions.ActOnPackExpansion(Res.get(), Ellipsis);
2428 }
Sebastian Redl7acafd02011-03-05 14:45:16 +00002429
Sebastian Redlef65f062009-05-29 18:02:33 +00002430 if (!Res.isInvalid()) {
Sebastian Redl7dc81342009-04-29 17:30:04 +00002431 Exceptions.push_back(Res.get());
Sebastian Redlef65f062009-05-29 18:02:33 +00002432 Ranges.push_back(Range);
2433 }
Douglas Gregora04426c2010-12-20 23:57:46 +00002434
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002435 if (Tok.is(tok::comma))
2436 ConsumeToken();
Sebastian Redl7dc81342009-04-29 17:30:04 +00002437 else
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002438 break;
2439 }
2440
Sebastian Redl7acafd02011-03-05 14:45:16 +00002441 SpecificationRange.setEnd(MatchRHSPunctuation(tok::r_paren, LParenLoc));
Sebastian Redl60618fa2011-03-12 11:50:43 +00002442 return Exceptions.empty() ? EST_DynamicNone : EST_Dynamic;
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002443}
Douglas Gregor6569d682009-05-27 23:11:45 +00002444
Douglas Gregordab60ad2010-10-01 18:44:50 +00002445/// ParseTrailingReturnType - Parse a trailing return type on a new-style
2446/// function declaration.
Douglas Gregorae7902c2011-08-04 15:30:47 +00002447TypeResult Parser::ParseTrailingReturnType(SourceRange &Range) {
Douglas Gregordab60ad2010-10-01 18:44:50 +00002448 assert(Tok.is(tok::arrow) && "expected arrow");
2449
2450 ConsumeToken();
2451
2452 // FIXME: Need to suppress declarations when parsing this typename.
2453 // Otherwise in this function definition:
2454 //
2455 // auto f() -> struct X {}
2456 //
2457 // struct X is parsed as class definition because of the trailing
2458 // brace.
Douglas Gregordab60ad2010-10-01 18:44:50 +00002459 return ParseTypeName(&Range);
2460}
2461
Douglas Gregor6569d682009-05-27 23:11:45 +00002462/// \brief We have just started parsing the definition of a new class,
2463/// so push that class onto our stack of classes that is currently
2464/// being parsed.
John McCalleee1d542011-02-14 07:13:47 +00002465Sema::ParsingClassState
2466Parser::PushParsingClass(Decl *ClassDecl, bool NonNestedClass) {
Douglas Gregor26997fd2010-01-16 20:52:59 +00002467 assert((NonNestedClass || !ClassStack.empty()) &&
Douglas Gregor6569d682009-05-27 23:11:45 +00002468 "Nested class without outer class");
Douglas Gregor26997fd2010-01-16 20:52:59 +00002469 ClassStack.push(new ParsingClass(ClassDecl, NonNestedClass));
John McCalleee1d542011-02-14 07:13:47 +00002470 return Actions.PushParsingClass();
Douglas Gregor6569d682009-05-27 23:11:45 +00002471}
2472
2473/// \brief Deallocate the given parsed class and all of its nested
2474/// classes.
2475void Parser::DeallocateParsedClasses(Parser::ParsingClass *Class) {
Douglas Gregord54eb442010-10-12 16:25:54 +00002476 for (unsigned I = 0, N = Class->LateParsedDeclarations.size(); I != N; ++I)
2477 delete Class->LateParsedDeclarations[I];
Douglas Gregor6569d682009-05-27 23:11:45 +00002478 delete Class;
2479}
2480
2481/// \brief Pop the top class of the stack of classes that are
2482/// currently being parsed.
2483///
2484/// This routine should be called when we have finished parsing the
2485/// definition of a class, but have not yet popped the Scope
2486/// associated with the class's definition.
2487///
2488/// \returns true if the class we've popped is a top-level class,
2489/// false otherwise.
John McCalleee1d542011-02-14 07:13:47 +00002490void Parser::PopParsingClass(Sema::ParsingClassState state) {
Douglas Gregor6569d682009-05-27 23:11:45 +00002491 assert(!ClassStack.empty() && "Mismatched push/pop for class parsing");
Mike Stump1eb44332009-09-09 15:08:12 +00002492
John McCalleee1d542011-02-14 07:13:47 +00002493 Actions.PopParsingClass(state);
2494
Douglas Gregor6569d682009-05-27 23:11:45 +00002495 ParsingClass *Victim = ClassStack.top();
2496 ClassStack.pop();
2497 if (Victim->TopLevelClass) {
2498 // Deallocate all of the nested classes of this class,
2499 // recursively: we don't need to keep any of this information.
2500 DeallocateParsedClasses(Victim);
2501 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002502 }
Douglas Gregor6569d682009-05-27 23:11:45 +00002503 assert(!ClassStack.empty() && "Missing top-level class?");
2504
Douglas Gregord54eb442010-10-12 16:25:54 +00002505 if (Victim->LateParsedDeclarations.empty()) {
Douglas Gregor6569d682009-05-27 23:11:45 +00002506 // The victim is a nested class, but we will not need to perform
2507 // any processing after the definition of this class since it has
2508 // no members whose handling was delayed. Therefore, we can just
2509 // remove this nested class.
Douglas Gregord54eb442010-10-12 16:25:54 +00002510 DeallocateParsedClasses(Victim);
Douglas Gregor6569d682009-05-27 23:11:45 +00002511 return;
2512 }
2513
2514 // This nested class has some members that will need to be processed
2515 // after the top-level class is completely defined. Therefore, add
2516 // it to the list of nested classes within its parent.
Douglas Gregor23c94db2010-07-02 17:43:08 +00002517 assert(getCurScope()->isClassScope() && "Nested class outside of class scope?");
Douglas Gregord54eb442010-10-12 16:25:54 +00002518 ClassStack.top()->LateParsedDeclarations.push_back(new LateParsedClass(this, Victim));
Douglas Gregor23c94db2010-07-02 17:43:08 +00002519 Victim->TemplateScope = getCurScope()->getParent()->isTemplateParamScope();
Douglas Gregor6569d682009-05-27 23:11:45 +00002520}
Sean Huntbbd37c62009-11-21 08:43:09 +00002521
2522/// ParseCXX0XAttributes - Parse a C++0x attribute-specifier. Currently only
2523/// parses standard attributes.
2524///
2525/// [C++0x] attribute-specifier:
2526/// '[' '[' attribute-list ']' ']'
2527///
2528/// [C++0x] attribute-list:
2529/// attribute[opt]
2530/// attribute-list ',' attribute[opt]
2531///
2532/// [C++0x] attribute:
2533/// attribute-token attribute-argument-clause[opt]
2534///
2535/// [C++0x] attribute-token:
2536/// identifier
2537/// attribute-scoped-token
2538///
2539/// [C++0x] attribute-scoped-token:
2540/// attribute-namespace '::' identifier
2541///
2542/// [C++0x] attribute-namespace:
2543/// identifier
2544///
2545/// [C++0x] attribute-argument-clause:
2546/// '(' balanced-token-seq ')'
2547///
2548/// [C++0x] balanced-token-seq:
2549/// balanced-token
2550/// balanced-token-seq balanced-token
2551///
2552/// [C++0x] balanced-token:
2553/// '(' balanced-token-seq ')'
2554/// '[' balanced-token-seq ']'
2555/// '{' balanced-token-seq '}'
2556/// any token but '(', ')', '[', ']', '{', or '}'
John McCall7f040a92010-12-24 02:08:15 +00002557void Parser::ParseCXX0XAttributes(ParsedAttributesWithRange &attrs,
2558 SourceLocation *endLoc) {
Sean Huntbbd37c62009-11-21 08:43:09 +00002559 assert(Tok.is(tok::l_square) && NextToken().is(tok::l_square)
2560 && "Not a C++0x attribute list");
2561
2562 SourceLocation StartLoc = Tok.getLocation(), Loc;
Sean Huntbbd37c62009-11-21 08:43:09 +00002563
2564 ConsumeBracket();
2565 ConsumeBracket();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002566
Sean Huntbbd37c62009-11-21 08:43:09 +00002567 if (Tok.is(tok::comma)) {
2568 Diag(Tok.getLocation(), diag::err_expected_ident);
2569 ConsumeToken();
2570 }
2571
2572 while (Tok.is(tok::identifier) || Tok.is(tok::comma)) {
2573 // attribute not present
2574 if (Tok.is(tok::comma)) {
2575 ConsumeToken();
2576 continue;
2577 }
2578
2579 IdentifierInfo *ScopeName = 0, *AttrName = Tok.getIdentifierInfo();
2580 SourceLocation ScopeLoc, AttrLoc = ConsumeToken();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002581
Sean Huntbbd37c62009-11-21 08:43:09 +00002582 // scoped attribute
2583 if (Tok.is(tok::coloncolon)) {
2584 ConsumeToken();
2585
2586 if (!Tok.is(tok::identifier)) {
2587 Diag(Tok.getLocation(), diag::err_expected_ident);
2588 SkipUntil(tok::r_square, tok::comma, true, true);
2589 continue;
2590 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002591
Sean Huntbbd37c62009-11-21 08:43:09 +00002592 ScopeName = AttrName;
2593 ScopeLoc = AttrLoc;
2594
2595 AttrName = Tok.getIdentifierInfo();
2596 AttrLoc = ConsumeToken();
2597 }
2598
2599 bool AttrParsed = false;
2600 // No scoped names are supported; ideally we could put all non-standard
2601 // attributes into namespaces.
2602 if (!ScopeName) {
2603 switch(AttributeList::getKind(AttrName))
2604 {
2605 // No arguments
Sean Hunt7725e672009-11-25 04:20:27 +00002606 case AttributeList::AT_carries_dependency:
Anders Carlsson15e14a22011-01-23 21:33:18 +00002607 case AttributeList::AT_noreturn: {
Sean Huntbbd37c62009-11-21 08:43:09 +00002608 if (Tok.is(tok::l_paren)) {
2609 Diag(Tok.getLocation(), diag::err_cxx0x_attribute_forbids_arguments)
2610 << AttrName->getName();
2611 break;
2612 }
2613
John McCall0b7e6782011-03-24 11:26:52 +00002614 attrs.addNew(AttrName, AttrLoc, 0, AttrLoc, 0,
2615 SourceLocation(), 0, 0, false, true);
Sean Huntbbd37c62009-11-21 08:43:09 +00002616 AttrParsed = true;
2617 break;
2618 }
2619
2620 // One argument; must be a type-id or assignment-expression
2621 case AttributeList::AT_aligned: {
2622 if (Tok.isNot(tok::l_paren)) {
2623 Diag(Tok.getLocation(), diag::err_cxx0x_attribute_requires_arguments)
2624 << AttrName->getName();
2625 break;
2626 }
2627 SourceLocation ParamLoc = ConsumeParen();
2628
John McCall60d7b3a2010-08-24 06:29:42 +00002629 ExprResult ArgExpr = ParseCXX0XAlignArgument(ParamLoc);
Sean Huntbbd37c62009-11-21 08:43:09 +00002630
2631 MatchRHSPunctuation(tok::r_paren, ParamLoc);
2632
2633 ExprVector ArgExprs(Actions);
2634 ArgExprs.push_back(ArgExpr.release());
John McCall0b7e6782011-03-24 11:26:52 +00002635 attrs.addNew(AttrName, AttrLoc, 0, AttrLoc,
2636 0, ParamLoc, ArgExprs.take(), 1,
2637 false, true);
Sean Huntbbd37c62009-11-21 08:43:09 +00002638
2639 AttrParsed = true;
2640 break;
2641 }
2642
2643 // Silence warnings
2644 default: break;
2645 }
2646 }
2647
2648 // Skip the entire parameter clause, if any
2649 if (!AttrParsed && Tok.is(tok::l_paren)) {
2650 ConsumeParen();
2651 // SkipUntil maintains the balancedness of tokens.
2652 SkipUntil(tok::r_paren, false);
2653 }
2654 }
2655
2656 if (ExpectAndConsume(tok::r_square, diag::err_expected_rsquare))
2657 SkipUntil(tok::r_square, false);
2658 Loc = Tok.getLocation();
2659 if (ExpectAndConsume(tok::r_square, diag::err_expected_rsquare))
2660 SkipUntil(tok::r_square, false);
2661
John McCall7f040a92010-12-24 02:08:15 +00002662 attrs.Range = SourceRange(StartLoc, Loc);
Sean Huntbbd37c62009-11-21 08:43:09 +00002663}
2664
2665/// ParseCXX0XAlignArgument - Parse the argument to C++0x's [[align]]
2666/// attribute.
2667///
2668/// FIXME: Simply returns an alignof() expression if the argument is a
2669/// type. Ideally, the type should be propagated directly into Sema.
2670///
2671/// [C++0x] 'align' '(' type-id ')'
2672/// [C++0x] 'align' '(' assignment-expression ')'
John McCall60d7b3a2010-08-24 06:29:42 +00002673ExprResult Parser::ParseCXX0XAlignArgument(SourceLocation Start) {
Sean Huntbbd37c62009-11-21 08:43:09 +00002674 if (isTypeIdInParens()) {
John McCallf312b1e2010-08-26 23:41:50 +00002675 EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated);
Sean Huntbbd37c62009-11-21 08:43:09 +00002676 SourceLocation TypeLoc = Tok.getLocation();
John McCallb3d87482010-08-24 05:47:05 +00002677 ParsedType Ty = ParseTypeName().get();
Sean Huntbbd37c62009-11-21 08:43:09 +00002678 SourceRange TypeRange(Start, Tok.getLocation());
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002679 return Actions.ActOnUnaryExprOrTypeTraitExpr(TypeLoc, UETT_AlignOf, true,
2680 Ty.getAsOpaquePtr(), TypeRange);
Sean Huntbbd37c62009-11-21 08:43:09 +00002681 } else
2682 return ParseConstantExpression();
2683}
Francois Pichet334d47e2010-10-11 12:59:39 +00002684
2685/// ParseMicrosoftAttributes - Parse a Microsoft attribute [Attr]
2686///
2687/// [MS] ms-attribute:
2688/// '[' token-seq ']'
2689///
2690/// [MS] ms-attribute-seq:
2691/// ms-attribute[opt]
2692/// ms-attribute ms-attribute-seq
John McCall7f040a92010-12-24 02:08:15 +00002693void Parser::ParseMicrosoftAttributes(ParsedAttributes &attrs,
2694 SourceLocation *endLoc) {
Francois Pichet334d47e2010-10-11 12:59:39 +00002695 assert(Tok.is(tok::l_square) && "Not a Microsoft attribute list");
2696
2697 while (Tok.is(tok::l_square)) {
2698 ConsumeBracket();
2699 SkipUntil(tok::r_square, true, true);
John McCall7f040a92010-12-24 02:08:15 +00002700 if (endLoc) *endLoc = Tok.getLocation();
Francois Pichet334d47e2010-10-11 12:59:39 +00002701 ExpectAndConsume(tok::r_square, diag::err_expected_rsquare);
2702 }
2703}
Francois Pichet563a6452011-05-25 10:19:49 +00002704
2705void Parser::ParseMicrosoftIfExistsClassDeclaration(DeclSpec::TST TagType,
2706 AccessSpecifier& CurAS) {
2707 bool Result;
2708 if (ParseMicrosoftIfExistsCondition(Result))
2709 return;
2710
2711 if (Tok.isNot(tok::l_brace)) {
2712 Diag(Tok, diag::err_expected_lbrace);
2713 return;
2714 }
2715 ConsumeBrace();
2716
2717 // Condition is false skip all inside the {}.
2718 if (!Result) {
2719 SkipUntil(tok::r_brace, false);
2720 return;
2721 }
2722
2723 // Condition is true, parse the declaration.
2724 while (Tok.isNot(tok::r_brace)) {
2725
2726 // __if_exists, __if_not_exists can nest.
2727 if ((Tok.is(tok::kw___if_exists) || Tok.is(tok::kw___if_not_exists))) {
2728 ParseMicrosoftIfExistsClassDeclaration((DeclSpec::TST)TagType, CurAS);
2729 continue;
2730 }
2731
2732 // Check for extraneous top-level semicolon.
2733 if (Tok.is(tok::semi)) {
2734 Diag(Tok, diag::ext_extra_struct_semi)
2735 << DeclSpec::getSpecifierName((DeclSpec::TST)TagType)
2736 << FixItHint::CreateRemoval(Tok.getLocation());
2737 ConsumeToken();
2738 continue;
2739 }
2740
2741 AccessSpecifier AS = getAccessSpecifierIfPresent();
2742 if (AS != AS_none) {
2743 // Current token is a C++ access specifier.
2744 CurAS = AS;
2745 SourceLocation ASLoc = Tok.getLocation();
2746 ConsumeToken();
2747 if (Tok.is(tok::colon))
2748 Actions.ActOnAccessSpecifier(AS, ASLoc, Tok.getLocation());
2749 else
2750 Diag(Tok, diag::err_expected_colon);
2751 ConsumeToken();
2752 continue;
2753 }
2754
2755 // Parse all the comma separated declarators.
2756 ParseCXXClassMemberDeclaration(CurAS);
2757 }
2758
2759 if (Tok.isNot(tok::r_brace)) {
2760 Diag(Tok, diag::err_expected_rbrace);
2761 return;
2762 }
2763 ConsumeBrace();
2764}