blob: 4d16f033be79303f5b36f09a82c8ac950e430bca [file] [log] [blame]
Chris Lattner8f08cb72007-08-25 06:57:03 +00001//===--- ParseDeclCXX.cpp - C++ Declaration Parsing -----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner8f08cb72007-08-25 06:57:03 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the C++ Declaration portions of the Parser interfaces.
11//
12//===----------------------------------------------------------------------===//
13
Anders Carlsson0c6139d2009-06-27 00:27:47 +000014#include "clang/Basic/OperatorKinds.h"
Douglas Gregor1b7f8982008-04-14 00:13:42 +000015#include "clang/Parse/Parser.h"
Chris Lattner500d3292009-01-29 05:15:15 +000016#include "clang/Parse/ParseDiagnostic.h"
John McCall19510852010-08-20 18:27:03 +000017#include "clang/Sema/DeclSpec.h"
18#include "clang/Sema/Scope.h"
19#include "clang/Sema/ParsedTemplate.h"
John McCallf312b1e2010-08-26 23:41:50 +000020#include "clang/Sema/PrettyDeclStackTrace.h"
Chris Lattnerd167ca02009-12-10 00:21:05 +000021#include "RAIIObjectsForParser.h"
Chris Lattner8f08cb72007-08-25 06:57:03 +000022using namespace clang;
23
24/// ParseNamespace - We know that the current token is a namespace keyword. This
Sebastian Redld078e642010-08-27 23:12:46 +000025/// may either be a top level namespace or a block-level namespace alias. If
26/// there was an inline keyword, it has already been parsed.
Chris Lattner8f08cb72007-08-25 06:57:03 +000027///
28/// namespace-definition: [C++ 7.3: basic.namespace]
29/// named-namespace-definition
30/// unnamed-namespace-definition
31///
32/// unnamed-namespace-definition:
Sebastian Redld078e642010-08-27 23:12:46 +000033/// 'inline'[opt] 'namespace' attributes[opt] '{' namespace-body '}'
Chris Lattner8f08cb72007-08-25 06:57:03 +000034///
35/// named-namespace-definition:
36/// original-namespace-definition
37/// extension-namespace-definition
38///
39/// original-namespace-definition:
Sebastian Redld078e642010-08-27 23:12:46 +000040/// 'inline'[opt] 'namespace' identifier attributes[opt]
41/// '{' namespace-body '}'
Chris Lattner8f08cb72007-08-25 06:57:03 +000042///
43/// extension-namespace-definition:
Sebastian Redld078e642010-08-27 23:12:46 +000044/// 'inline'[opt] 'namespace' original-namespace-name
45/// '{' namespace-body '}'
Mike Stump1eb44332009-09-09 15:08:12 +000046///
Chris Lattner8f08cb72007-08-25 06:57:03 +000047/// namespace-alias-definition: [C++ 7.3.2: namespace.alias]
48/// 'namespace' identifier '=' qualified-namespace-specifier ';'
49///
John McCalld226f652010-08-21 09:40:31 +000050Decl *Parser::ParseNamespace(unsigned Context,
Sebastian Redld078e642010-08-27 23:12:46 +000051 SourceLocation &DeclEnd,
52 SourceLocation InlineLoc) {
Chris Lattner04d66662007-10-09 17:33:22 +000053 assert(Tok.is(tok::kw_namespace) && "Not a namespace!");
Chris Lattner8f08cb72007-08-25 06:57:03 +000054 SourceLocation NamespaceLoc = ConsumeToken(); // eat the 'namespace'.
Mike Stump1eb44332009-09-09 15:08:12 +000055
Douglas Gregor49f40bd2009-09-18 19:03:04 +000056 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +000057 Actions.CodeCompleteNamespaceDecl(getCurScope());
Douglas Gregordc845342010-05-25 05:58:43 +000058 ConsumeCodeCompletionToken();
Douglas Gregor49f40bd2009-09-18 19:03:04 +000059 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +000060
Chris Lattner8f08cb72007-08-25 06:57:03 +000061 SourceLocation IdentLoc;
62 IdentifierInfo *Ident = 0;
Douglas Gregor6a588dd2009-06-17 19:49:00 +000063
64 Token attrTok;
Mike Stump1eb44332009-09-09 15:08:12 +000065
Chris Lattner04d66662007-10-09 17:33:22 +000066 if (Tok.is(tok::identifier)) {
Chris Lattner8f08cb72007-08-25 06:57:03 +000067 Ident = Tok.getIdentifierInfo();
68 IdentLoc = ConsumeToken(); // eat the identifier.
69 }
Mike Stump1eb44332009-09-09 15:08:12 +000070
Chris Lattner8f08cb72007-08-25 06:57:03 +000071 // Read label attributes, if present.
John McCall7f040a92010-12-24 02:08:15 +000072 ParsedAttributes attrs;
Douglas Gregor6a588dd2009-06-17 19:49:00 +000073 if (Tok.is(tok::kw___attribute)) {
74 attrTok = Tok;
75
Chris Lattner8f08cb72007-08-25 06:57:03 +000076 // FIXME: save these somewhere.
John McCall7f040a92010-12-24 02:08:15 +000077 ParseGNUAttributes(attrs);
Douglas Gregor6a588dd2009-06-17 19:49:00 +000078 }
Mike Stump1eb44332009-09-09 15:08:12 +000079
Douglas Gregor6a588dd2009-06-17 19:49:00 +000080 if (Tok.is(tok::equal)) {
John McCall7f040a92010-12-24 02:08:15 +000081 if (!attrs.empty())
Douglas Gregor6a588dd2009-06-17 19:49:00 +000082 Diag(attrTok, diag::err_unexpected_namespace_attributes_alias);
Sebastian Redld078e642010-08-27 23:12:46 +000083 if (InlineLoc.isValid())
84 Diag(InlineLoc, diag::err_inline_namespace_alias)
85 << FixItHint::CreateRemoval(InlineLoc);
Douglas Gregor6a588dd2009-06-17 19:49:00 +000086
Chris Lattner97144fc2009-04-02 04:16:50 +000087 return ParseNamespaceAlias(NamespaceLoc, IdentLoc, Ident, DeclEnd);
Douglas Gregor6a588dd2009-06-17 19:49:00 +000088 }
Mike Stump1eb44332009-09-09 15:08:12 +000089
Chris Lattner51448322009-03-29 14:02:43 +000090 if (Tok.isNot(tok::l_brace)) {
Mike Stump1eb44332009-09-09 15:08:12 +000091 Diag(Tok, Ident ? diag::err_expected_lbrace :
Chris Lattner51448322009-03-29 14:02:43 +000092 diag::err_expected_ident_lbrace);
John McCalld226f652010-08-21 09:40:31 +000093 return 0;
Chris Lattner8f08cb72007-08-25 06:57:03 +000094 }
Mike Stump1eb44332009-09-09 15:08:12 +000095
Chris Lattner51448322009-03-29 14:02:43 +000096 SourceLocation LBrace = ConsumeBrace();
97
Douglas Gregor23c94db2010-07-02 17:43:08 +000098 if (getCurScope()->isClassScope() || getCurScope()->isTemplateParamScope() ||
99 getCurScope()->isInObjcMethodScope() || getCurScope()->getBlockParent() ||
100 getCurScope()->getFnParent()) {
Douglas Gregor95f1b152010-05-14 05:08:22 +0000101 Diag(LBrace, diag::err_namespace_nonnamespace_scope);
102 SkipUntil(tok::r_brace, false);
John McCalld226f652010-08-21 09:40:31 +0000103 return 0;
Douglas Gregor95f1b152010-05-14 05:08:22 +0000104 }
105
Sebastian Redl88e64ca2010-08-31 00:36:45 +0000106 // If we're still good, complain about inline namespaces in non-C++0x now.
107 if (!getLang().CPlusPlus0x && InlineLoc.isValid())
108 Diag(InlineLoc, diag::ext_inline_namespace);
109
Chris Lattner51448322009-03-29 14:02:43 +0000110 // Enter a scope for the namespace.
111 ParseScope NamespaceScope(this, Scope::DeclScope);
112
John McCalld226f652010-08-21 09:40:31 +0000113 Decl *NamespcDecl =
Sebastian Redld078e642010-08-27 23:12:46 +0000114 Actions.ActOnStartNamespaceDef(getCurScope(), InlineLoc, IdentLoc, Ident,
John McCall7f040a92010-12-24 02:08:15 +0000115 LBrace, attrs.getList());
Chris Lattner51448322009-03-29 14:02:43 +0000116
John McCallf312b1e2010-08-26 23:41:50 +0000117 PrettyDeclStackTraceEntry CrashInfo(Actions, NamespcDecl, NamespaceLoc,
118 "parsing namespace");
Mike Stump1eb44332009-09-09 15:08:12 +0000119
Sean Huntbbd37c62009-11-21 08:43:09 +0000120 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
John McCall7f040a92010-12-24 02:08:15 +0000121 ParsedAttributesWithRange attrs;
122 MaybeParseCXX0XAttributes(attrs);
123 MaybeParseMicrosoftAttributes(attrs);
124 ParseExternalDeclaration(attrs);
Sean Huntbbd37c62009-11-21 08:43:09 +0000125 }
Mike Stump1eb44332009-09-09 15:08:12 +0000126
Chris Lattner51448322009-03-29 14:02:43 +0000127 // Leave the namespace scope.
128 NamespaceScope.Exit();
129
Chris Lattner97144fc2009-04-02 04:16:50 +0000130 SourceLocation RBraceLoc = MatchRHSPunctuation(tok::r_brace, LBrace);
131 Actions.ActOnFinishNamespaceDef(NamespcDecl, RBraceLoc);
Chris Lattner51448322009-03-29 14:02:43 +0000132
Chris Lattner97144fc2009-04-02 04:16:50 +0000133 DeclEnd = RBraceLoc;
Chris Lattner51448322009-03-29 14:02:43 +0000134 return NamespcDecl;
Chris Lattner8f08cb72007-08-25 06:57:03 +0000135}
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000136
Anders Carlssonf67606a2009-03-28 04:07:16 +0000137/// ParseNamespaceAlias - Parse the part after the '=' in a namespace
138/// alias definition.
139///
John McCalld226f652010-08-21 09:40:31 +0000140Decl *Parser::ParseNamespaceAlias(SourceLocation NamespaceLoc,
Mike Stump1eb44332009-09-09 15:08:12 +0000141 SourceLocation AliasLoc,
Chris Lattner97144fc2009-04-02 04:16:50 +0000142 IdentifierInfo *Alias,
143 SourceLocation &DeclEnd) {
Anders Carlssonf67606a2009-03-28 04:07:16 +0000144 assert(Tok.is(tok::equal) && "Not equal token");
Mike Stump1eb44332009-09-09 15:08:12 +0000145
Anders Carlssonf67606a2009-03-28 04:07:16 +0000146 ConsumeToken(); // eat the '='.
Mike Stump1eb44332009-09-09 15:08:12 +0000147
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000148 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000149 Actions.CodeCompleteNamespaceAliasDecl(getCurScope());
Douglas Gregordc845342010-05-25 05:58:43 +0000150 ConsumeCodeCompletionToken();
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000151 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000152
Anders Carlssonf67606a2009-03-28 04:07:16 +0000153 CXXScopeSpec SS;
154 // Parse (optional) nested-name-specifier.
John McCallb3d87482010-08-24 05:47:05 +0000155 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
Anders Carlssonf67606a2009-03-28 04:07:16 +0000156
157 if (SS.isInvalid() || Tok.isNot(tok::identifier)) {
158 Diag(Tok, diag::err_expected_namespace_name);
159 // Skip to end of the definition and eat the ';'.
160 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000161 return 0;
Anders Carlssonf67606a2009-03-28 04:07:16 +0000162 }
163
164 // Parse identifier.
Anders Carlsson03bd5a12009-03-28 22:53:22 +0000165 IdentifierInfo *Ident = Tok.getIdentifierInfo();
166 SourceLocation IdentLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000167
Anders Carlssonf67606a2009-03-28 04:07:16 +0000168 // Eat the ';'.
Chris Lattner97144fc2009-04-02 04:16:50 +0000169 DeclEnd = Tok.getLocation();
Chris Lattner6869d8e2009-06-14 00:07:48 +0000170 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_namespace_name,
171 "", tok::semi);
Mike Stump1eb44332009-09-09 15:08:12 +0000172
Douglas Gregor23c94db2010-07-02 17:43:08 +0000173 return Actions.ActOnNamespaceAliasDef(getCurScope(), NamespaceLoc, AliasLoc, Alias,
Anders Carlsson03bd5a12009-03-28 22:53:22 +0000174 SS, IdentLoc, Ident);
Anders Carlssonf67606a2009-03-28 04:07:16 +0000175}
176
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000177/// ParseLinkage - We know that the current token is a string_literal
178/// and just before that, that extern was seen.
179///
180/// linkage-specification: [C++ 7.5p2: dcl.link]
181/// 'extern' string-literal '{' declaration-seq[opt] '}'
182/// 'extern' string-literal declaration
183///
Chris Lattner7d642712010-11-09 20:15:55 +0000184Decl *Parser::ParseLinkage(ParsingDeclSpec &DS, unsigned Context) {
Douglas Gregorc19923d2008-11-21 16:10:08 +0000185 assert(Tok.is(tok::string_literal) && "Not a string literal!");
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000186 llvm::SmallString<8> LangBuffer;
Douglas Gregor453091c2010-03-16 22:30:13 +0000187 bool Invalid = false;
188 llvm::StringRef Lang = PP.getSpelling(Tok, LangBuffer, &Invalid);
189 if (Invalid)
John McCalld226f652010-08-21 09:40:31 +0000190 return 0;
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000191
192 SourceLocation Loc = ConsumeStringToken();
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000193
Douglas Gregor074149e2009-01-05 19:45:36 +0000194 ParseScope LinkageScope(this, Scope::DeclScope);
John McCalld226f652010-08-21 09:40:31 +0000195 Decl *LinkageSpec
Douglas Gregor23c94db2010-07-02 17:43:08 +0000196 = Actions.ActOnStartLinkageSpecification(getCurScope(),
Douglas Gregor074149e2009-01-05 19:45:36 +0000197 /*FIXME: */SourceLocation(),
Benjamin Kramerd5663812010-05-03 13:08:54 +0000198 Loc, Lang,
Mike Stump1eb44332009-09-09 15:08:12 +0000199 Tok.is(tok::l_brace)? Tok.getLocation()
Douglas Gregor074149e2009-01-05 19:45:36 +0000200 : SourceLocation());
201
John McCall7f040a92010-12-24 02:08:15 +0000202 ParsedAttributesWithRange attrs;
203 MaybeParseCXX0XAttributes(attrs);
204 MaybeParseMicrosoftAttributes(attrs);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000205
Douglas Gregor074149e2009-01-05 19:45:36 +0000206 if (Tok.isNot(tok::l_brace)) {
Abramo Bagnara35f9a192010-07-30 16:47:02 +0000207 DS.setExternInLinkageSpec(true);
John McCall7f040a92010-12-24 02:08:15 +0000208 ParseExternalDeclaration(attrs, &DS);
Douglas Gregor23c94db2010-07-02 17:43:08 +0000209 return Actions.ActOnFinishLinkageSpecification(getCurScope(), LinkageSpec,
Douglas Gregor074149e2009-01-05 19:45:36 +0000210 SourceLocation());
Mike Stump1eb44332009-09-09 15:08:12 +0000211 }
Douglas Gregorf44515a2008-12-16 22:23:02 +0000212
Douglas Gregor63a01132010-02-07 08:38:28 +0000213 DS.abort();
214
John McCall7f040a92010-12-24 02:08:15 +0000215 ProhibitAttributes(attrs);
Sean Huntbbd37c62009-11-21 08:43:09 +0000216
Douglas Gregorf44515a2008-12-16 22:23:02 +0000217 SourceLocation LBrace = ConsumeBrace();
Douglas Gregorf44515a2008-12-16 22:23:02 +0000218 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
John McCall7f040a92010-12-24 02:08:15 +0000219 ParsedAttributesWithRange attrs;
220 MaybeParseCXX0XAttributes(attrs);
221 MaybeParseMicrosoftAttributes(attrs);
222 ParseExternalDeclaration(attrs);
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000223 }
224
Douglas Gregorf44515a2008-12-16 22:23:02 +0000225 SourceLocation RBrace = MatchRHSPunctuation(tok::r_brace, LBrace);
Chris Lattner7d642712010-11-09 20:15:55 +0000226 return Actions.ActOnFinishLinkageSpecification(getCurScope(), LinkageSpec,
227 RBrace);
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000228}
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000229
Douglas Gregorf780abc2008-12-30 03:27:21 +0000230/// ParseUsingDirectiveOrDeclaration - Parse C++ using using-declaration or
231/// using-directive. Assumes that current token is 'using'.
John McCalld226f652010-08-21 09:40:31 +0000232Decl *Parser::ParseUsingDirectiveOrDeclaration(unsigned Context,
John McCall78b81052010-11-10 02:40:36 +0000233 const ParsedTemplateInfo &TemplateInfo,
234 SourceLocation &DeclEnd,
John McCall7f040a92010-12-24 02:08:15 +0000235 ParsedAttributesWithRange &attrs) {
Douglas Gregorf780abc2008-12-30 03:27:21 +0000236 assert(Tok.is(tok::kw_using) && "Not using token");
237
238 // Eat 'using'.
239 SourceLocation UsingLoc = ConsumeToken();
240
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000241 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000242 Actions.CodeCompleteUsing(getCurScope());
Douglas Gregordc845342010-05-25 05:58:43 +0000243 ConsumeCodeCompletionToken();
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000244 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000245
John McCall78b81052010-11-10 02:40:36 +0000246 // 'using namespace' means this is a using-directive.
247 if (Tok.is(tok::kw_namespace)) {
248 // Template parameters are always an error here.
249 if (TemplateInfo.Kind) {
250 SourceRange R = TemplateInfo.getSourceRange();
251 Diag(UsingLoc, diag::err_templated_using_directive)
252 << R << FixItHint::CreateRemoval(R);
253 }
Sean Huntbbd37c62009-11-21 08:43:09 +0000254
John McCall7f040a92010-12-24 02:08:15 +0000255 return ParseUsingDirective(Context, UsingLoc, DeclEnd, attrs);
John McCall78b81052010-11-10 02:40:36 +0000256 }
257
258 // Otherwise, it must be a using-declaration.
259
260 // Using declarations can't have attributes.
John McCall7f040a92010-12-24 02:08:15 +0000261 ProhibitAttributes(attrs);
Chris Lattner2f274772009-01-06 06:55:51 +0000262
John McCall78b81052010-11-10 02:40:36 +0000263 return ParseUsingDeclaration(Context, TemplateInfo, UsingLoc, DeclEnd);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000264}
265
266/// ParseUsingDirective - Parse C++ using-directive, assumes
267/// that current token is 'namespace' and 'using' was already parsed.
268///
269/// using-directive: [C++ 7.3.p4: namespace.udir]
270/// 'using' 'namespace' ::[opt] nested-name-specifier[opt]
271/// namespace-name ;
272/// [GNU] using-directive:
273/// 'using' 'namespace' ::[opt] nested-name-specifier[opt]
274/// namespace-name attributes[opt] ;
275///
John McCalld226f652010-08-21 09:40:31 +0000276Decl *Parser::ParseUsingDirective(unsigned Context,
John McCall78b81052010-11-10 02:40:36 +0000277 SourceLocation UsingLoc,
278 SourceLocation &DeclEnd,
John McCall7f040a92010-12-24 02:08:15 +0000279 ParsedAttributes &attrs) {
Douglas Gregorf780abc2008-12-30 03:27:21 +0000280 assert(Tok.is(tok::kw_namespace) && "Not 'namespace' token");
281
282 // Eat 'namespace'.
283 SourceLocation NamespcLoc = ConsumeToken();
284
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000285 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000286 Actions.CodeCompleteUsingDirective(getCurScope());
Douglas Gregordc845342010-05-25 05:58:43 +0000287 ConsumeCodeCompletionToken();
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000288 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000289
Douglas Gregorf780abc2008-12-30 03:27:21 +0000290 CXXScopeSpec SS;
291 // Parse (optional) nested-name-specifier.
John McCallb3d87482010-08-24 05:47:05 +0000292 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000293
Douglas Gregorf780abc2008-12-30 03:27:21 +0000294 IdentifierInfo *NamespcName = 0;
295 SourceLocation IdentLoc = SourceLocation();
296
297 // Parse namespace-name.
Chris Lattner823c44e2009-01-06 07:27:21 +0000298 if (SS.isInvalid() || Tok.isNot(tok::identifier)) {
Douglas Gregorf780abc2008-12-30 03:27:21 +0000299 Diag(Tok, diag::err_expected_namespace_name);
300 // If there was invalid namespace name, skip to end of decl, and eat ';'.
301 SkipUntil(tok::semi);
302 // FIXME: Are there cases, when we would like to call ActOnUsingDirective?
John McCalld226f652010-08-21 09:40:31 +0000303 return 0;
Douglas Gregorf780abc2008-12-30 03:27:21 +0000304 }
Mike Stump1eb44332009-09-09 15:08:12 +0000305
Chris Lattner823c44e2009-01-06 07:27:21 +0000306 // Parse identifier.
307 NamespcName = Tok.getIdentifierInfo();
308 IdentLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000309
Chris Lattner823c44e2009-01-06 07:27:21 +0000310 // Parse (optional) attributes (most likely GNU strong-using extension).
Sean Huntbbd37c62009-11-21 08:43:09 +0000311 bool GNUAttr = false;
312 if (Tok.is(tok::kw___attribute)) {
313 GNUAttr = true;
John McCall7f040a92010-12-24 02:08:15 +0000314 ParseGNUAttributes(attrs);
Sean Huntbbd37c62009-11-21 08:43:09 +0000315 }
Mike Stump1eb44332009-09-09 15:08:12 +0000316
Chris Lattner823c44e2009-01-06 07:27:21 +0000317 // Eat ';'.
Chris Lattner97144fc2009-04-02 04:16:50 +0000318 DeclEnd = Tok.getLocation();
Chris Lattner6869d8e2009-06-14 00:07:48 +0000319 ExpectAndConsume(tok::semi,
Douglas Gregor9ba23b42010-09-07 15:23:11 +0000320 GNUAttr ? diag::err_expected_semi_after_attribute_list
321 : diag::err_expected_semi_after_namespace_name,
322 "", tok::semi);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000323
Douglas Gregor23c94db2010-07-02 17:43:08 +0000324 return Actions.ActOnUsingDirective(getCurScope(), UsingLoc, NamespcLoc, SS,
John McCall7f040a92010-12-24 02:08:15 +0000325 IdentLoc, NamespcName, attrs.getList());
Douglas Gregorf780abc2008-12-30 03:27:21 +0000326}
327
328/// ParseUsingDeclaration - Parse C++ using-declaration. Assumes that
329/// 'using' was already seen.
330///
331/// using-declaration: [C++ 7.3.p3: namespace.udecl]
332/// 'using' 'typename'[opt] ::[opt] nested-name-specifier
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000333/// unqualified-id
334/// 'using' :: unqualified-id
Douglas Gregorf780abc2008-12-30 03:27:21 +0000335///
John McCalld226f652010-08-21 09:40:31 +0000336Decl *Parser::ParseUsingDeclaration(unsigned Context,
John McCall78b81052010-11-10 02:40:36 +0000337 const ParsedTemplateInfo &TemplateInfo,
338 SourceLocation UsingLoc,
339 SourceLocation &DeclEnd,
340 AccessSpecifier AS) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000341 CXXScopeSpec SS;
John McCall7ba107a2009-11-18 02:36:19 +0000342 SourceLocation TypenameLoc;
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000343 bool IsTypeName;
344
John McCall78b81052010-11-10 02:40:36 +0000345 // TODO: in C++0x, if we have template parameters this must be a
346 // template alias:
347 // template <...> using id = type;
348
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000349 // Ignore optional 'typename'.
Douglas Gregor12c118a2009-11-04 16:30:06 +0000350 // FIXME: This is wrong; we should parse this as a typename-specifier.
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000351 if (Tok.is(tok::kw_typename)) {
John McCall7ba107a2009-11-18 02:36:19 +0000352 TypenameLoc = Tok.getLocation();
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000353 ConsumeToken();
354 IsTypeName = true;
355 }
356 else
357 IsTypeName = false;
358
359 // Parse nested-name-specifier.
John McCallb3d87482010-08-24 05:47:05 +0000360 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000361
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000362 // Check nested-name specifier.
363 if (SS.isInvalid()) {
364 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000365 return 0;
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000366 }
Douglas Gregor12c118a2009-11-04 16:30:06 +0000367
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000368 // Parse the unqualified-id. We allow parsing of both constructor and
Douglas Gregor12c118a2009-11-04 16:30:06 +0000369 // destructor names and allow the action module to diagnose any semantic
370 // errors.
371 UnqualifiedId Name;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000372 if (ParseUnqualifiedId(SS,
Douglas Gregor12c118a2009-11-04 16:30:06 +0000373 /*EnteringContext=*/false,
374 /*AllowDestructorName=*/true,
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000375 /*AllowConstructorName=*/true,
John McCallb3d87482010-08-24 05:47:05 +0000376 ParsedType(),
Douglas Gregor12c118a2009-11-04 16:30:06 +0000377 Name)) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000378 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000379 return 0;
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000380 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000381
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000382 // Parse (optional) attributes (most likely GNU strong-using extension).
John McCall7f040a92010-12-24 02:08:15 +0000383 ParsedAttributes attrs;
384 MaybeParseGNUAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +0000385
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000386 // Eat ';'.
387 DeclEnd = Tok.getLocation();
388 ExpectAndConsume(tok::semi, diag::err_expected_semi_after,
John McCall7f040a92010-12-24 02:08:15 +0000389 !attrs.empty() ? "attributes list" : "using declaration",
Douglas Gregor12c118a2009-11-04 16:30:06 +0000390 tok::semi);
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000391
John McCall78b81052010-11-10 02:40:36 +0000392 // Diagnose an attempt to declare a templated using-declaration.
393 if (TemplateInfo.Kind) {
394 SourceRange R = TemplateInfo.getSourceRange();
395 Diag(UsingLoc, diag::err_templated_using_declaration)
396 << R << FixItHint::CreateRemoval(R);
397
398 // Unfortunately, we have to bail out instead of recovering by
399 // ignoring the parameters, just in case the nested name specifier
400 // depends on the parameters.
401 return 0;
402 }
403
Ted Kremenek8113ecf2010-11-10 05:59:39 +0000404 return Actions.ActOnUsingDeclaration(getCurScope(), AS, true, UsingLoc, SS,
John McCall7f040a92010-12-24 02:08:15 +0000405 Name, attrs.getList(),
406 IsTypeName, TypenameLoc);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000407}
408
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000409/// ParseStaticAssertDeclaration - Parse C++0x static_assert-declaratoion.
410///
411/// static_assert-declaration:
412/// static_assert ( constant-expression , string-literal ) ;
413///
John McCalld226f652010-08-21 09:40:31 +0000414Decl *Parser::ParseStaticAssertDeclaration(SourceLocation &DeclEnd){
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000415 assert(Tok.is(tok::kw_static_assert) && "Not a static_assert declaration");
416 SourceLocation StaticAssertLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000417
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000418 if (Tok.isNot(tok::l_paren)) {
419 Diag(Tok, diag::err_expected_lparen);
John McCalld226f652010-08-21 09:40:31 +0000420 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000421 }
Mike Stump1eb44332009-09-09 15:08:12 +0000422
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000423 SourceLocation LParenLoc = ConsumeParen();
Douglas Gregore0762c92009-06-19 23:52:42 +0000424
John McCall60d7b3a2010-08-24 06:29:42 +0000425 ExprResult AssertExpr(ParseConstantExpression());
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000426 if (AssertExpr.isInvalid()) {
427 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000428 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000429 }
Mike Stump1eb44332009-09-09 15:08:12 +0000430
Anders Carlssonad5f9602009-03-13 23:29:20 +0000431 if (ExpectAndConsume(tok::comma, diag::err_expected_comma, "", tok::semi))
John McCalld226f652010-08-21 09:40:31 +0000432 return 0;
Anders Carlssonad5f9602009-03-13 23:29:20 +0000433
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000434 if (Tok.isNot(tok::string_literal)) {
435 Diag(Tok, diag::err_expected_string_literal);
436 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000437 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000438 }
Mike Stump1eb44332009-09-09 15:08:12 +0000439
John McCall60d7b3a2010-08-24 06:29:42 +0000440 ExprResult AssertMessage(ParseStringLiteralExpression());
Mike Stump1eb44332009-09-09 15:08:12 +0000441 if (AssertMessage.isInvalid())
John McCalld226f652010-08-21 09:40:31 +0000442 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000443
Anders Carlsson94b15fb2009-03-15 18:44:04 +0000444 MatchRHSPunctuation(tok::r_paren, LParenLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000445
Chris Lattner97144fc2009-04-02 04:16:50 +0000446 DeclEnd = Tok.getLocation();
Douglas Gregor9ba23b42010-09-07 15:23:11 +0000447 ExpectAndConsumeSemi(diag::err_expected_semi_after_static_assert);
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000448
John McCall9ae2f072010-08-23 23:25:46 +0000449 return Actions.ActOnStaticAssertDeclaration(StaticAssertLoc,
450 AssertExpr.take(),
451 AssertMessage.take());
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000452}
453
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000454/// ParseDecltypeSpecifier - Parse a C++0x decltype specifier.
455///
456/// 'decltype' ( expression )
457///
458void Parser::ParseDecltypeSpecifier(DeclSpec &DS) {
459 assert(Tok.is(tok::kw_decltype) && "Not a decltype specifier");
460
461 SourceLocation StartLoc = ConsumeToken();
462 SourceLocation LParenLoc = Tok.getLocation();
Mike Stump1eb44332009-09-09 15:08:12 +0000463
464 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after,
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000465 "decltype")) {
466 SkipUntil(tok::r_paren);
467 return;
468 }
Mike Stump1eb44332009-09-09 15:08:12 +0000469
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000470 // Parse the expression
Mike Stump1eb44332009-09-09 15:08:12 +0000471
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000472 // C++0x [dcl.type.simple]p4:
473 // The operand of the decltype specifier is an unevaluated operand.
474 EnterExpressionEvaluationContext Unevaluated(Actions,
John McCallf312b1e2010-08-26 23:41:50 +0000475 Sema::Unevaluated);
John McCall60d7b3a2010-08-24 06:29:42 +0000476 ExprResult Result = ParseExpression();
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000477 if (Result.isInvalid()) {
478 SkipUntil(tok::r_paren);
479 return;
480 }
Mike Stump1eb44332009-09-09 15:08:12 +0000481
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000482 // Match the ')'
483 SourceLocation RParenLoc;
484 if (Tok.is(tok::r_paren))
485 RParenLoc = ConsumeParen();
486 else
487 MatchRHSPunctuation(tok::r_paren, LParenLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000488
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000489 if (RParenLoc.isInvalid())
490 return;
491
492 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +0000493 unsigned DiagID;
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000494 // Check for duplicate type specifiers (e.g. "int decltype(a)").
Mike Stump1eb44332009-09-09 15:08:12 +0000495 if (DS.SetTypeSpecType(DeclSpec::TST_decltype, StartLoc, PrevSpec,
John McCallfec54012009-08-03 20:12:06 +0000496 DiagID, Result.release()))
497 Diag(StartLoc, DiagID) << PrevSpec;
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000498}
499
Douglas Gregor42a552f2008-11-05 20:51:48 +0000500/// ParseClassName - Parse a C++ class-name, which names a class. Note
501/// that we only check that the result names a type; semantic analysis
502/// will need to verify that the type names a class. The result is
Douglas Gregor7f43d672009-02-25 23:52:28 +0000503/// either a type or NULL, depending on whether a type name was
Douglas Gregor42a552f2008-11-05 20:51:48 +0000504/// found.
505///
506/// class-name: [C++ 9.1]
507/// identifier
Douglas Gregor7f43d672009-02-25 23:52:28 +0000508/// simple-template-id
Mike Stump1eb44332009-09-09 15:08:12 +0000509///
Douglas Gregor31a19b62009-04-01 21:51:26 +0000510Parser::TypeResult Parser::ParseClassName(SourceLocation &EndLocation,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +0000511 CXXScopeSpec *SS) {
Douglas Gregor7f43d672009-02-25 23:52:28 +0000512 // Check whether we have a template-id that names a type.
513 if (Tok.is(tok::annot_template_id)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000514 TemplateIdAnnotation *TemplateId
Douglas Gregor7f43d672009-02-25 23:52:28 +0000515 = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
Douglas Gregord9b600c2010-01-12 17:52:59 +0000516 if (TemplateId->Kind == TNK_Type_template ||
517 TemplateId->Kind == TNK_Dependent_template_name) {
Douglas Gregor31a19b62009-04-01 21:51:26 +0000518 AnnotateTemplateIdTokenAsType(SS);
Douglas Gregor7f43d672009-02-25 23:52:28 +0000519
520 assert(Tok.is(tok::annot_typename) && "template-id -> type failed");
John McCallb3d87482010-08-24 05:47:05 +0000521 ParsedType Type = getTypeAnnotation(Tok);
Douglas Gregor7f43d672009-02-25 23:52:28 +0000522 EndLocation = Tok.getAnnotationEndLoc();
523 ConsumeToken();
Douglas Gregor31a19b62009-04-01 21:51:26 +0000524
525 if (Type)
526 return Type;
527 return true;
Douglas Gregor7f43d672009-02-25 23:52:28 +0000528 }
529
530 // Fall through to produce an error below.
531 }
532
Douglas Gregor42a552f2008-11-05 20:51:48 +0000533 if (Tok.isNot(tok::identifier)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000534 Diag(Tok, diag::err_expected_class_name);
Douglas Gregor31a19b62009-04-01 21:51:26 +0000535 return true;
Douglas Gregor42a552f2008-11-05 20:51:48 +0000536 }
537
Douglas Gregor84d0a192010-01-12 21:28:44 +0000538 IdentifierInfo *Id = Tok.getIdentifierInfo();
539 SourceLocation IdLoc = ConsumeToken();
540
541 if (Tok.is(tok::less)) {
542 // It looks the user intended to write a template-id here, but the
543 // template-name was wrong. Try to fix that.
544 TemplateNameKind TNK = TNK_Type_template;
545 TemplateTy Template;
Douglas Gregor23c94db2010-07-02 17:43:08 +0000546 if (!Actions.DiagnoseUnknownTemplateName(*Id, IdLoc, getCurScope(),
Douglas Gregor84d0a192010-01-12 21:28:44 +0000547 SS, Template, TNK)) {
548 Diag(IdLoc, diag::err_unknown_template_name)
549 << Id;
550 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000551
Douglas Gregor84d0a192010-01-12 21:28:44 +0000552 if (!Template)
553 return true;
554
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000555 // Form the template name
Douglas Gregor84d0a192010-01-12 21:28:44 +0000556 UnqualifiedId TemplateName;
557 TemplateName.setIdentifier(Id, IdLoc);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000558
Douglas Gregor84d0a192010-01-12 21:28:44 +0000559 // Parse the full template-id, then turn it into a type.
560 if (AnnotateTemplateIdToken(Template, TNK, SS, TemplateName,
561 SourceLocation(), true))
562 return true;
563 if (TNK == TNK_Dependent_template_name)
564 AnnotateTemplateIdTokenAsType(SS);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000565
Douglas Gregor84d0a192010-01-12 21:28:44 +0000566 // If we didn't end up with a typename token, there's nothing more we
567 // can do.
568 if (Tok.isNot(tok::annot_typename))
569 return true;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000570
Douglas Gregor84d0a192010-01-12 21:28:44 +0000571 // Retrieve the type from the annotation token, consume that token, and
572 // return.
573 EndLocation = Tok.getAnnotationEndLoc();
John McCallb3d87482010-08-24 05:47:05 +0000574 ParsedType Type = getTypeAnnotation(Tok);
Douglas Gregor84d0a192010-01-12 21:28:44 +0000575 ConsumeToken();
576 return Type;
577 }
578
Douglas Gregor42a552f2008-11-05 20:51:48 +0000579 // We have an identifier; check whether it is actually a type.
John McCallb3d87482010-08-24 05:47:05 +0000580 ParsedType Type = Actions.getTypeName(*Id, IdLoc, getCurScope(), SS, true);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000581 if (!Type) {
Douglas Gregor124b8782010-02-16 19:09:40 +0000582 Diag(IdLoc, diag::err_expected_class_name);
Douglas Gregor31a19b62009-04-01 21:51:26 +0000583 return true;
Douglas Gregor42a552f2008-11-05 20:51:48 +0000584 }
585
586 // Consume the identifier.
Douglas Gregor84d0a192010-01-12 21:28:44 +0000587 EndLocation = IdLoc;
Nick Lewycky56062202010-07-26 16:56:01 +0000588
589 // Fake up a Declarator to use with ActOnTypeName.
590 DeclSpec DS;
591 DS.SetRangeStart(IdLoc);
592 DS.SetRangeEnd(EndLocation);
593 DS.getTypeSpecScope() = *SS;
594
595 const char *PrevSpec = 0;
596 unsigned DiagID;
597 DS.SetTypeSpecType(TST_typename, IdLoc, PrevSpec, DiagID, Type);
598
599 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
600 return Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
Douglas Gregor42a552f2008-11-05 20:51:48 +0000601}
602
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000603/// ParseClassSpecifier - Parse a C++ class-specifier [C++ class] or
604/// elaborated-type-specifier [C++ dcl.type.elab]; we can't tell which
605/// until we reach the start of a definition or see a token that
Sebastian Redld9bafa72010-02-03 21:21:43 +0000606/// cannot start a definition. If SuppressDeclarations is true, we do know.
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000607///
608/// class-specifier: [C++ class]
609/// class-head '{' member-specification[opt] '}'
610/// class-head '{' member-specification[opt] '}' attributes[opt]
611/// class-head:
612/// class-key identifier[opt] base-clause[opt]
613/// class-key nested-name-specifier identifier base-clause[opt]
614/// class-key nested-name-specifier[opt] simple-template-id
615/// base-clause[opt]
616/// [GNU] class-key attributes[opt] identifier[opt] base-clause[opt]
Mike Stump1eb44332009-09-09 15:08:12 +0000617/// [GNU] class-key attributes[opt] nested-name-specifier
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000618/// identifier base-clause[opt]
Mike Stump1eb44332009-09-09 15:08:12 +0000619/// [GNU] class-key attributes[opt] nested-name-specifier[opt]
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000620/// simple-template-id base-clause[opt]
621/// class-key:
622/// 'class'
623/// 'struct'
624/// 'union'
625///
626/// elaborated-type-specifier: [C++ dcl.type.elab]
Mike Stump1eb44332009-09-09 15:08:12 +0000627/// class-key ::[opt] nested-name-specifier[opt] identifier
628/// class-key ::[opt] nested-name-specifier[opt] 'template'[opt]
629/// simple-template-id
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000630///
631/// Note that the C++ class-specifier and elaborated-type-specifier,
632/// together, subsume the C99 struct-or-union-specifier:
633///
634/// struct-or-union-specifier: [C99 6.7.2.1]
635/// struct-or-union identifier[opt] '{' struct-contents '}'
636/// struct-or-union identifier
637/// [GNU] struct-or-union attributes[opt] identifier[opt] '{' struct-contents
638/// '}' attributes[opt]
639/// [GNU] struct-or-union attributes[opt] identifier
640/// struct-or-union:
641/// 'struct'
642/// 'union'
Chris Lattner4c97d762009-04-12 21:49:30 +0000643void Parser::ParseClassSpecifier(tok::TokenKind TagTokKind,
644 SourceLocation StartLoc, DeclSpec &DS,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000645 const ParsedTemplateInfo &TemplateInfo,
Sebastian Redld9bafa72010-02-03 21:21:43 +0000646 AccessSpecifier AS, bool SuppressDeclarations){
Chris Lattner4c97d762009-04-12 21:49:30 +0000647 DeclSpec::TST TagType;
648 if (TagTokKind == tok::kw_struct)
649 TagType = DeclSpec::TST_struct;
650 else if (TagTokKind == tok::kw_class)
651 TagType = DeclSpec::TST_class;
652 else {
653 assert(TagTokKind == tok::kw_union && "Not a class specifier");
654 TagType = DeclSpec::TST_union;
655 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000656
Douglas Gregor374929f2009-09-18 15:37:17 +0000657 if (Tok.is(tok::code_completion)) {
658 // Code completion for a struct, class, or union name.
Douglas Gregor23c94db2010-07-02 17:43:08 +0000659 Actions.CodeCompleteTag(getCurScope(), TagType);
Douglas Gregordc845342010-05-25 05:58:43 +0000660 ConsumeCodeCompletionToken();
Douglas Gregor374929f2009-09-18 15:37:17 +0000661 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000662
Chandler Carruth926c4b42010-06-28 08:39:25 +0000663 // C++03 [temp.explicit] 14.7.2/8:
664 // The usual access checking rules do not apply to names used to specify
665 // explicit instantiations.
666 //
667 // As an extension we do not perform access checking on the names used to
668 // specify explicit specializations either. This is important to allow
669 // specializing traits classes for private types.
670 bool SuppressingAccessChecks = false;
671 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation ||
672 TemplateInfo.Kind == ParsedTemplateInfo::ExplicitSpecialization) {
673 Actions.ActOnStartSuppressingAccessChecks();
674 SuppressingAccessChecks = true;
675 }
676
John McCall7f040a92010-12-24 02:08:15 +0000677 ParsedAttributes attrs;
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000678 // If attributes exist after tag, parse them.
679 if (Tok.is(tok::kw___attribute))
John McCall7f040a92010-12-24 02:08:15 +0000680 ParseGNUAttributes(attrs);
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000681
Steve Narofff59e17e2008-12-24 20:59:21 +0000682 // If declspecs exist after tag, parse them.
John McCallb1d397c2010-08-05 17:13:11 +0000683 while (Tok.is(tok::kw___declspec))
John McCall7f040a92010-12-24 02:08:15 +0000684 ParseMicrosoftDeclSpec(attrs);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000685
Sean Huntbbd37c62009-11-21 08:43:09 +0000686 // If C++0x attributes exist here, parse them.
687 // FIXME: Are we consistent with the ordering of parsing of different
688 // styles of attributes?
John McCall7f040a92010-12-24 02:08:15 +0000689 MaybeParseCXX0XAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +0000690
Douglas Gregorb117a602009-09-04 05:53:02 +0000691 if (TagType == DeclSpec::TST_struct && Tok.is(tok::kw___is_pod)) {
692 // GNU libstdc++ 4.2 uses __is_pod as the name of a struct template, but
693 // __is_pod is a keyword in GCC >= 4.3. Therefore, when we see the
Mike Stump1eb44332009-09-09 15:08:12 +0000694 // token sequence "struct __is_pod", make __is_pod into a normal
Douglas Gregorb117a602009-09-04 05:53:02 +0000695 // identifier rather than a keyword, to allow libstdc++ 4.2 to work
696 // properly.
Argyrios Kyrtzidis646395b2010-08-11 22:55:12 +0000697 Tok.getIdentifierInfo()->RevertTokenIDToIdentifier();
Douglas Gregorb117a602009-09-04 05:53:02 +0000698 Tok.setKind(tok::identifier);
699 }
700
701 if (TagType == DeclSpec::TST_struct && Tok.is(tok::kw___is_empty)) {
702 // GNU libstdc++ 4.2 uses __is_empty as the name of a struct template, but
703 // __is_empty is a keyword in GCC >= 4.3. Therefore, when we see the
Mike Stump1eb44332009-09-09 15:08:12 +0000704 // token sequence "struct __is_empty", make __is_empty into a normal
Douglas Gregorb117a602009-09-04 05:53:02 +0000705 // identifier rather than a keyword, to allow libstdc++ 4.2 to work
706 // properly.
Argyrios Kyrtzidis646395b2010-08-11 22:55:12 +0000707 Tok.getIdentifierInfo()->RevertTokenIDToIdentifier();
Douglas Gregorb117a602009-09-04 05:53:02 +0000708 Tok.setKind(tok::identifier);
709 }
Mike Stump1eb44332009-09-09 15:08:12 +0000710
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000711 // Parse the (optional) nested-name-specifier.
John McCallaa87d332009-12-12 11:40:51 +0000712 CXXScopeSpec &SS = DS.getTypeSpecScope();
Chris Lattner08d92ec2009-12-10 00:32:41 +0000713 if (getLang().CPlusPlus) {
714 // "FOO : BAR" is not a potential typo for "FOO::BAR".
715 ColonProtectionRAIIObject X(*this);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000716
John McCallb3d87482010-08-24 05:47:05 +0000717 if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(), true))
John McCall207014e2010-07-30 06:26:29 +0000718 DS.SetTypeSpecError();
John McCall9ba61662010-02-26 08:45:28 +0000719 if (SS.isSet())
Chris Lattner08d92ec2009-12-10 00:32:41 +0000720 if (Tok.isNot(tok::identifier) && Tok.isNot(tok::annot_template_id))
721 Diag(Tok, diag::err_expected_ident);
722 }
Douglas Gregorcc636682009-02-17 23:15:12 +0000723
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000724 TemplateParameterLists *TemplateParams = TemplateInfo.TemplateParams;
725
Douglas Gregorcc636682009-02-17 23:15:12 +0000726 // Parse the (optional) class name or simple-template-id.
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000727 IdentifierInfo *Name = 0;
728 SourceLocation NameLoc;
Douglas Gregor39a8de12009-02-25 19:37:18 +0000729 TemplateIdAnnotation *TemplateId = 0;
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000730 if (Tok.is(tok::identifier)) {
731 Name = Tok.getIdentifierInfo();
732 NameLoc = ConsumeToken();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000733
Douglas Gregor5ee37342010-05-30 22:30:21 +0000734 if (Tok.is(tok::less) && getLang().CPlusPlus) {
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000735 // The name was supposed to refer to a template, but didn't.
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000736 // Eat the template argument list and try to continue parsing this as
737 // a class (or template thereof).
738 TemplateArgList TemplateArgs;
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000739 SourceLocation LAngleLoc, RAngleLoc;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000740 if (ParseTemplateIdAfterTemplateName(TemplateTy(), NameLoc, &SS,
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000741 true, LAngleLoc,
Douglas Gregor314b97f2009-11-10 19:49:08 +0000742 TemplateArgs, RAngleLoc)) {
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000743 // We couldn't parse the template argument list at all, so don't
744 // try to give any location information for the list.
745 LAngleLoc = RAngleLoc = SourceLocation();
746 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000747
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000748 Diag(NameLoc, diag::err_explicit_spec_non_template)
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000749 << (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation)
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000750 << (TagType == DeclSpec::TST_class? 0
751 : TagType == DeclSpec::TST_struct? 1
752 : 2)
753 << Name
754 << SourceRange(LAngleLoc, RAngleLoc);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000755
756 // Strip off the last template parameter list if it was empty, since
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000757 // we've removed its template argument list.
758 if (TemplateParams && TemplateInfo.LastParameterListWasEmpty) {
759 if (TemplateParams && TemplateParams->size() > 1) {
760 TemplateParams->pop_back();
761 } else {
762 TemplateParams = 0;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000763 const_cast<ParsedTemplateInfo&>(TemplateInfo).Kind
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000764 = ParsedTemplateInfo::NonTemplate;
765 }
766 } else if (TemplateInfo.Kind
767 == ParsedTemplateInfo::ExplicitInstantiation) {
768 // Pretend this is just a forward declaration.
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000769 TemplateParams = 0;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000770 const_cast<ParsedTemplateInfo&>(TemplateInfo).Kind
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000771 = ParsedTemplateInfo::NonTemplate;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000772 const_cast<ParsedTemplateInfo&>(TemplateInfo).TemplateLoc
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000773 = SourceLocation();
774 const_cast<ParsedTemplateInfo&>(TemplateInfo).ExternLoc
775 = SourceLocation();
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000776 }
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000777 }
Douglas Gregor39a8de12009-02-25 19:37:18 +0000778 } else if (Tok.is(tok::annot_template_id)) {
779 TemplateId = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
780 NameLoc = ConsumeToken();
Douglas Gregorcc636682009-02-17 23:15:12 +0000781
Douglas Gregorc45c2322009-03-31 00:43:58 +0000782 if (TemplateId->Kind != TNK_Type_template) {
Douglas Gregor39a8de12009-02-25 19:37:18 +0000783 // The template-name in the simple-template-id refers to
784 // something other than a class template. Give an appropriate
785 // error message and skip to the ';'.
786 SourceRange Range(NameLoc);
787 if (SS.isNotEmpty())
788 Range.setBegin(SS.getBeginLoc());
Douglas Gregorcc636682009-02-17 23:15:12 +0000789
Douglas Gregor39a8de12009-02-25 19:37:18 +0000790 Diag(TemplateId->LAngleLoc, diag::err_template_spec_syntax_non_template)
791 << Name << static_cast<int>(TemplateId->Kind) << Range;
Mike Stump1eb44332009-09-09 15:08:12 +0000792
Douglas Gregor39a8de12009-02-25 19:37:18 +0000793 DS.SetTypeSpecError();
794 SkipUntil(tok::semi, false, true);
795 TemplateId->Destroy();
Chandler Carruth926c4b42010-06-28 08:39:25 +0000796 if (SuppressingAccessChecks)
797 Actions.ActOnStopSuppressingAccessChecks();
798
Douglas Gregor39a8de12009-02-25 19:37:18 +0000799 return;
Douglas Gregorcc636682009-02-17 23:15:12 +0000800 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000801 }
802
Chandler Carruth926c4b42010-06-28 08:39:25 +0000803 // As soon as we're finished parsing the class's template-id, turn access
804 // checking back on.
805 if (SuppressingAccessChecks)
806 Actions.ActOnStopSuppressingAccessChecks();
807
John McCall67d1a672009-08-06 02:15:43 +0000808 // There are four options here. If we have 'struct foo;', then this
809 // is either a forward declaration or a friend declaration, which
Anders Carlssoncc54d592011-01-22 16:56:46 +0000810 // have to be treated differently. If we have 'struct foo {...',
811 // 'struct foo :...' or 'struct foo <class-virt-specifier>' then this is a
812 // definition. Otherwise we have something like 'struct foo xyz', a reference.
Sebastian Redld9bafa72010-02-03 21:21:43 +0000813 // However, in some contexts, things look like declarations but are just
814 // references, e.g.
815 // new struct s;
816 // or
817 // &T::operator struct s;
818 // For these, SuppressDeclarations is true.
John McCallf312b1e2010-08-26 23:41:50 +0000819 Sema::TagUseKind TUK;
Sebastian Redld9bafa72010-02-03 21:21:43 +0000820 if (SuppressDeclarations)
John McCallf312b1e2010-08-26 23:41:50 +0000821 TUK = Sema::TUK_Reference;
Anders Carlssoncc54d592011-01-22 16:56:46 +0000822 else if (Tok.is(tok::l_brace) ||
823 (getLang().CPlusPlus && Tok.is(tok::colon)) ||
824 isCXX0XClassVirtSpecifier() != ClassVirtSpecifiers::CVS_None) {
Douglas Gregord85bea22009-09-26 06:47:28 +0000825 if (DS.isFriendSpecified()) {
826 // C++ [class.friend]p2:
827 // A class shall not be defined in a friend declaration.
828 Diag(Tok.getLocation(), diag::err_friend_decl_defines_class)
829 << SourceRange(DS.getFriendSpecLoc());
830
831 // Skip everything up to the semicolon, so that this looks like a proper
832 // friend class (or template thereof) declaration.
833 SkipUntil(tok::semi, true, true);
John McCallf312b1e2010-08-26 23:41:50 +0000834 TUK = Sema::TUK_Friend;
Douglas Gregord85bea22009-09-26 06:47:28 +0000835 } else {
836 // Okay, this is a class definition.
John McCallf312b1e2010-08-26 23:41:50 +0000837 TUK = Sema::TUK_Definition;
Douglas Gregord85bea22009-09-26 06:47:28 +0000838 }
839 } else if (Tok.is(tok::semi))
John McCallf312b1e2010-08-26 23:41:50 +0000840 TUK = DS.isFriendSpecified() ? Sema::TUK_Friend : Sema::TUK_Declaration;
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000841 else
John McCallf312b1e2010-08-26 23:41:50 +0000842 TUK = Sema::TUK_Reference;
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000843
John McCall207014e2010-07-30 06:26:29 +0000844 if (!Name && !TemplateId && (DS.getTypeSpecType() == DeclSpec::TST_error ||
John McCallf312b1e2010-08-26 23:41:50 +0000845 TUK != Sema::TUK_Definition)) {
John McCall207014e2010-07-30 06:26:29 +0000846 if (DS.getTypeSpecType() != DeclSpec::TST_error) {
847 // We have a declaration or reference to an anonymous class.
848 Diag(StartLoc, diag::err_anon_type_definition)
849 << DeclSpec::getSpecifierName(TagType);
850 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000851
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000852 SkipUntil(tok::comma, true);
Douglas Gregor39a8de12009-02-25 19:37:18 +0000853
854 if (TemplateId)
855 TemplateId->Destroy();
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000856 return;
857 }
858
Douglas Gregorddc29e12009-02-06 22:42:48 +0000859 // Create the tag portion of the class or class template.
John McCalld226f652010-08-21 09:40:31 +0000860 DeclResult TagOrTempResult = true; // invalid
861 TypeResult TypeResult = true; // invalid
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000862
Douglas Gregor402abb52009-05-28 23:31:59 +0000863 bool Owned = false;
John McCallf1bbbb42009-09-04 01:14:41 +0000864 if (TemplateId) {
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000865 // Explicit specialization, class template partial specialization,
866 // or explicit instantiation.
Mike Stump1eb44332009-09-09 15:08:12 +0000867 ASTTemplateArgsPtr TemplateArgsPtr(Actions,
Douglas Gregor39a8de12009-02-25 19:37:18 +0000868 TemplateId->getTemplateArgs(),
Douglas Gregor39a8de12009-02-25 19:37:18 +0000869 TemplateId->NumArgs);
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000870 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallf312b1e2010-08-26 23:41:50 +0000871 TUK == Sema::TUK_Declaration) {
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000872 // This is an explicit instantiation of a class template.
873 TagOrTempResult
Douglas Gregor23c94db2010-07-02 17:43:08 +0000874 = Actions.ActOnExplicitInstantiation(getCurScope(),
Douglas Gregor45f96552009-09-04 06:33:52 +0000875 TemplateInfo.ExternLoc,
Mike Stump1eb44332009-09-09 15:08:12 +0000876 TemplateInfo.TemplateLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000877 TagType,
Mike Stump1eb44332009-09-09 15:08:12 +0000878 StartLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000879 SS,
John McCall2b5289b2010-08-23 07:28:44 +0000880 TemplateId->Template,
Mike Stump1eb44332009-09-09 15:08:12 +0000881 TemplateId->TemplateNameLoc,
882 TemplateId->LAngleLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000883 TemplateArgsPtr,
Mike Stump1eb44332009-09-09 15:08:12 +0000884 TemplateId->RAngleLoc,
John McCall7f040a92010-12-24 02:08:15 +0000885 attrs.getList());
John McCall74256f52010-04-14 00:24:33 +0000886
887 // Friend template-ids are treated as references unless
888 // they have template headers, in which case they're ill-formed
889 // (FIXME: "template <class T> friend class A<T>::B<int>;").
890 // We diagnose this error in ActOnClassTemplateSpecialization.
John McCallf312b1e2010-08-26 23:41:50 +0000891 } else if (TUK == Sema::TUK_Reference ||
892 (TUK == Sema::TUK_Friend &&
John McCall74256f52010-04-14 00:24:33 +0000893 TemplateInfo.Kind == ParsedTemplateInfo::NonTemplate)) {
John McCallc4e70192009-09-11 04:59:25 +0000894 TypeResult
John McCall2b5289b2010-08-23 07:28:44 +0000895 = Actions.ActOnTemplateIdType(TemplateId->Template,
John McCall6b2becf2009-09-08 17:47:29 +0000896 TemplateId->TemplateNameLoc,
897 TemplateId->LAngleLoc,
898 TemplateArgsPtr,
John McCall6b2becf2009-09-08 17:47:29 +0000899 TemplateId->RAngleLoc);
900
Craig Silverstein45ab4b52010-11-18 08:32:02 +0000901 TypeResult = Actions.ActOnTagTemplateIdType(SS, TypeResult, TUK,
John McCallc4e70192009-09-11 04:59:25 +0000902 TagType, StartLoc);
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000903 } else {
904 // This is an explicit specialization or a class template
905 // partial specialization.
906 TemplateParameterLists FakedParamLists;
907
908 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation) {
909 // This looks like an explicit instantiation, because we have
910 // something like
911 //
912 // template class Foo<X>
913 //
Douglas Gregor3f5b61c2009-05-14 00:28:11 +0000914 // but it actually has a definition. Most likely, this was
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000915 // meant to be an explicit specialization, but the user forgot
916 // the '<>' after 'template'.
John McCallf312b1e2010-08-26 23:41:50 +0000917 assert(TUK == Sema::TUK_Definition && "Expected a definition here");
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000918
Mike Stump1eb44332009-09-09 15:08:12 +0000919 SourceLocation LAngleLoc
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000920 = PP.getLocForEndOfToken(TemplateInfo.TemplateLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000921 Diag(TemplateId->TemplateNameLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000922 diag::err_explicit_instantiation_with_definition)
923 << SourceRange(TemplateInfo.TemplateLoc)
Douglas Gregor849b2432010-03-31 17:46:05 +0000924 << FixItHint::CreateInsertion(LAngleLoc, "<>");
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000925
926 // Create a fake template parameter list that contains only
927 // "template<>", so that we treat this construct as a class
928 // template specialization.
929 FakedParamLists.push_back(
Mike Stump1eb44332009-09-09 15:08:12 +0000930 Actions.ActOnTemplateParameterList(0, SourceLocation(),
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000931 TemplateInfo.TemplateLoc,
Mike Stump1eb44332009-09-09 15:08:12 +0000932 LAngleLoc,
933 0, 0,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000934 LAngleLoc));
935 TemplateParams = &FakedParamLists;
936 }
937
938 // Build the class template specialization.
939 TagOrTempResult
Douglas Gregor23c94db2010-07-02 17:43:08 +0000940 = Actions.ActOnClassTemplateSpecialization(getCurScope(), TagType, TUK,
Douglas Gregor39a8de12009-02-25 19:37:18 +0000941 StartLoc, SS,
John McCall2b5289b2010-08-23 07:28:44 +0000942 TemplateId->Template,
Mike Stump1eb44332009-09-09 15:08:12 +0000943 TemplateId->TemplateNameLoc,
944 TemplateId->LAngleLoc,
Douglas Gregor39a8de12009-02-25 19:37:18 +0000945 TemplateArgsPtr,
Mike Stump1eb44332009-09-09 15:08:12 +0000946 TemplateId->RAngleLoc,
John McCall7f040a92010-12-24 02:08:15 +0000947 attrs.getList(),
John McCallf312b1e2010-08-26 23:41:50 +0000948 MultiTemplateParamsArg(Actions,
Douglas Gregorcc636682009-02-17 23:15:12 +0000949 TemplateParams? &(*TemplateParams)[0] : 0,
950 TemplateParams? TemplateParams->size() : 0));
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000951 }
Douglas Gregor39a8de12009-02-25 19:37:18 +0000952 TemplateId->Destroy();
Douglas Gregor3f5b61c2009-05-14 00:28:11 +0000953 } else if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallf312b1e2010-08-26 23:41:50 +0000954 TUK == Sema::TUK_Declaration) {
Douglas Gregor3f5b61c2009-05-14 00:28:11 +0000955 // Explicit instantiation of a member of a class template
956 // specialization, e.g.,
957 //
958 // template struct Outer<int>::Inner;
959 //
960 TagOrTempResult
Douglas Gregor23c94db2010-07-02 17:43:08 +0000961 = Actions.ActOnExplicitInstantiation(getCurScope(),
Douglas Gregor45f96552009-09-04 06:33:52 +0000962 TemplateInfo.ExternLoc,
Mike Stump1eb44332009-09-09 15:08:12 +0000963 TemplateInfo.TemplateLoc,
964 TagType, StartLoc, SS, Name,
John McCall7f040a92010-12-24 02:08:15 +0000965 NameLoc, attrs.getList());
John McCall9a34edb2010-10-19 01:40:49 +0000966 } else if (TUK == Sema::TUK_Friend &&
967 TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate) {
968 TagOrTempResult =
969 Actions.ActOnTemplatedFriendTag(getCurScope(), DS.getFriendSpecLoc(),
970 TagType, StartLoc, SS,
John McCall7f040a92010-12-24 02:08:15 +0000971 Name, NameLoc, attrs.getList(),
John McCall9a34edb2010-10-19 01:40:49 +0000972 MultiTemplateParamsArg(Actions,
973 TemplateParams? &(*TemplateParams)[0] : 0,
974 TemplateParams? TemplateParams->size() : 0));
Douglas Gregor3f5b61c2009-05-14 00:28:11 +0000975 } else {
976 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallf312b1e2010-08-26 23:41:50 +0000977 TUK == Sema::TUK_Definition) {
Douglas Gregor3f5b61c2009-05-14 00:28:11 +0000978 // FIXME: Diagnose this particular error.
979 }
980
John McCallc4e70192009-09-11 04:59:25 +0000981 bool IsDependent = false;
982
John McCalla25c4082010-10-19 18:40:57 +0000983 // Don't pass down template parameter lists if this is just a tag
984 // reference. For example, we don't need the template parameters here:
985 // template <class T> class A *makeA(T t);
986 MultiTemplateParamsArg TParams;
987 if (TUK != Sema::TUK_Reference && TemplateParams)
988 TParams =
989 MultiTemplateParamsArg(&(*TemplateParams)[0], TemplateParams->size());
990
Douglas Gregor3f5b61c2009-05-14 00:28:11 +0000991 // Declaration or definition of a class type
John McCall9a34edb2010-10-19 01:40:49 +0000992 TagOrTempResult = Actions.ActOnTag(getCurScope(), TagType, TUK, StartLoc,
John McCall7f040a92010-12-24 02:08:15 +0000993 SS, Name, NameLoc, attrs.getList(), AS,
John McCalla25c4082010-10-19 18:40:57 +0000994 TParams, Owned, IsDependent, false,
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +0000995 false, clang::TypeResult());
John McCallc4e70192009-09-11 04:59:25 +0000996
997 // If ActOnTag said the type was dependent, try again with the
998 // less common call.
John McCall9a34edb2010-10-19 01:40:49 +0000999 if (IsDependent) {
1000 assert(TUK == Sema::TUK_Reference || TUK == Sema::TUK_Friend);
Douglas Gregor23c94db2010-07-02 17:43:08 +00001001 TypeResult = Actions.ActOnDependentTag(getCurScope(), TagType, TUK,
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001002 SS, Name, StartLoc, NameLoc);
John McCall9a34edb2010-10-19 01:40:49 +00001003 }
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001004 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001005
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001006 // If there is a body, parse it and inform the actions module.
John McCallf312b1e2010-08-26 23:41:50 +00001007 if (TUK == Sema::TUK_Definition) {
John McCallbd0dfa52009-12-19 21:48:58 +00001008 assert(Tok.is(tok::l_brace) ||
Anders Carlssoncc54d592011-01-22 16:56:46 +00001009 (getLang().CPlusPlus && Tok.is(tok::colon)) ||
1010 isCXX0XClassVirtSpecifier() != ClassVirtSpecifiers::CVS_None);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001011 if (getLang().CPlusPlus)
Douglas Gregor212e81c2009-03-25 00:13:59 +00001012 ParseCXXMemberSpecification(StartLoc, TagType, TagOrTempResult.get());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001013 else
Douglas Gregor212e81c2009-03-25 00:13:59 +00001014 ParseStructUnionBody(StartLoc, TagType, TagOrTempResult.get());
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001015 }
1016
John McCallb3d87482010-08-24 05:47:05 +00001017 // FIXME: The DeclSpec should keep the locations of both the keyword and the
1018 // name (if there is one).
1019 SourceLocation TSTLoc = NameLoc.isValid()? NameLoc : StartLoc;
1020
1021 const char *PrevSpec = 0;
1022 unsigned DiagID;
1023 bool Result;
John McCallc4e70192009-09-11 04:59:25 +00001024 if (!TypeResult.isInvalid()) {
John McCallb3d87482010-08-24 05:47:05 +00001025 Result = DS.SetTypeSpecType(DeclSpec::TST_typename, TSTLoc,
1026 PrevSpec, DiagID, TypeResult.get());
John McCallc4e70192009-09-11 04:59:25 +00001027 } else if (!TagOrTempResult.isInvalid()) {
John McCallb3d87482010-08-24 05:47:05 +00001028 Result = DS.SetTypeSpecType(TagType, TSTLoc, PrevSpec, DiagID,
1029 TagOrTempResult.get(), Owned);
John McCallc4e70192009-09-11 04:59:25 +00001030 } else {
Douglas Gregorddc29e12009-02-06 22:42:48 +00001031 DS.SetTypeSpecError();
Anders Carlsson66e99772009-05-11 22:27:47 +00001032 return;
1033 }
Mike Stump1eb44332009-09-09 15:08:12 +00001034
John McCallb3d87482010-08-24 05:47:05 +00001035 if (Result)
John McCallfec54012009-08-03 20:12:06 +00001036 Diag(StartLoc, DiagID) << PrevSpec;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001037
Chris Lattner4ed5d912010-02-02 01:23:29 +00001038 // At this point, we've successfully parsed a class-specifier in 'definition'
1039 // form (e.g. "struct foo { int x; }". While we could just return here, we're
1040 // going to look at what comes after it to improve error recovery. If an
1041 // impossible token occurs next, we assume that the programmer forgot a ; at
1042 // the end of the declaration and recover that way.
1043 //
1044 // This switch enumerates the valid "follow" set for definition.
John McCallf312b1e2010-08-26 23:41:50 +00001045 if (TUK == Sema::TUK_Definition) {
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001046 bool ExpectedSemi = true;
Chris Lattner4ed5d912010-02-02 01:23:29 +00001047 switch (Tok.getKind()) {
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001048 default: break;
Chris Lattner4ed5d912010-02-02 01:23:29 +00001049 case tok::semi: // struct foo {...} ;
Chris Lattner99c95202010-02-02 17:32:27 +00001050 case tok::star: // struct foo {...} * P;
1051 case tok::amp: // struct foo {...} & R = ...
1052 case tok::identifier: // struct foo {...} V ;
1053 case tok::r_paren: //(struct foo {...} ) {4}
1054 case tok::annot_cxxscope: // struct foo {...} a:: b;
1055 case tok::annot_typename: // struct foo {...} a ::b;
1056 case tok::annot_template_id: // struct foo {...} a<int> ::b;
Chris Lattnerc2e1c1a2010-02-03 20:41:24 +00001057 case tok::l_paren: // struct foo {...} ( x);
Chris Lattner16acfee2010-02-03 01:45:03 +00001058 case tok::comma: // __builtin_offsetof(struct foo{...} ,
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001059 ExpectedSemi = false;
1060 break;
1061 // Type qualifiers
1062 case tok::kw_const: // struct foo {...} const x;
1063 case tok::kw_volatile: // struct foo {...} volatile x;
1064 case tok::kw_restrict: // struct foo {...} restrict x;
1065 case tok::kw_inline: // struct foo {...} inline foo() {};
Chris Lattner99c95202010-02-02 17:32:27 +00001066 // Storage-class specifiers
1067 case tok::kw_static: // struct foo {...} static x;
1068 case tok::kw_extern: // struct foo {...} extern x;
1069 case tok::kw_typedef: // struct foo {...} typedef x;
1070 case tok::kw_register: // struct foo {...} register x;
1071 case tok::kw_auto: // struct foo {...} auto x;
Douglas Gregor33f99242010-05-17 18:19:56 +00001072 case tok::kw_mutable: // struct foo {...} mutable x;
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001073 // As shown above, type qualifiers and storage class specifiers absolutely
1074 // can occur after class specifiers according to the grammar. However,
1075 // almost noone actually writes code like this. If we see one of these,
1076 // it is much more likely that someone missed a semi colon and the
1077 // type/storage class specifier we're seeing is part of the *next*
1078 // intended declaration, as in:
1079 //
1080 // struct foo { ... }
1081 // typedef int X;
1082 //
1083 // We'd really like to emit a missing semicolon error instead of emitting
1084 // an error on the 'int' saying that you can't have two type specifiers in
1085 // the same declaration of X. Because of this, we look ahead past this
1086 // token to see if it's a type specifier. If so, we know the code is
1087 // otherwise invalid, so we can produce the expected semi error.
1088 if (!isKnownToBeTypeSpecifier(NextToken()))
1089 ExpectedSemi = false;
Chris Lattner4ed5d912010-02-02 01:23:29 +00001090 break;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001091
1092 case tok::r_brace: // struct bar { struct foo {...} }
Chris Lattner4ed5d912010-02-02 01:23:29 +00001093 // Missing ';' at end of struct is accepted as an extension in C mode.
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001094 if (!getLang().CPlusPlus)
1095 ExpectedSemi = false;
1096 break;
1097 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001098
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001099 if (ExpectedSemi) {
Chris Lattner4ed5d912010-02-02 01:23:29 +00001100 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_tagdecl,
1101 TagType == DeclSpec::TST_class ? "class"
1102 : TagType == DeclSpec::TST_struct? "struct" : "union");
1103 // Push this token back into the preprocessor and change our current token
1104 // to ';' so that the rest of the code recovers as though there were an
1105 // ';' after the definition.
1106 PP.EnterToken(Tok);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001107 Tok.setKind(tok::semi);
Chris Lattner4ed5d912010-02-02 01:23:29 +00001108 }
1109 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001110}
1111
Mike Stump1eb44332009-09-09 15:08:12 +00001112/// ParseBaseClause - Parse the base-clause of a C++ class [C++ class.derived].
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001113///
1114/// base-clause : [C++ class.derived]
1115/// ':' base-specifier-list
1116/// base-specifier-list:
1117/// base-specifier '...'[opt]
1118/// base-specifier-list ',' base-specifier '...'[opt]
John McCalld226f652010-08-21 09:40:31 +00001119void Parser::ParseBaseClause(Decl *ClassDecl) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001120 assert(Tok.is(tok::colon) && "Not a base clause");
1121 ConsumeToken();
1122
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001123 // Build up an array of parsed base specifiers.
John McCallca0408f2010-08-23 06:44:23 +00001124 llvm::SmallVector<CXXBaseSpecifier *, 8> BaseInfo;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001125
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001126 while (true) {
1127 // Parse a base-specifier.
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001128 BaseResult Result = ParseBaseSpecifier(ClassDecl);
Douglas Gregor5ac8aff2009-01-26 22:44:13 +00001129 if (Result.isInvalid()) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001130 // Skip the rest of this base specifier, up until the comma or
1131 // opening brace.
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001132 SkipUntil(tok::comma, tok::l_brace, true, true);
1133 } else {
1134 // Add this to our array of base specifiers.
Douglas Gregor5ac8aff2009-01-26 22:44:13 +00001135 BaseInfo.push_back(Result.get());
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001136 }
1137
1138 // If the next token is a comma, consume it and keep reading
1139 // base-specifiers.
1140 if (Tok.isNot(tok::comma)) break;
Mike Stump1eb44332009-09-09 15:08:12 +00001141
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001142 // Consume the comma.
1143 ConsumeToken();
1144 }
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001145
1146 // Attach the base specifiers
Jay Foadbeaaccd2009-05-21 09:52:38 +00001147 Actions.ActOnBaseSpecifiers(ClassDecl, BaseInfo.data(), BaseInfo.size());
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001148}
1149
1150/// ParseBaseSpecifier - Parse a C++ base-specifier. A base-specifier is
1151/// one entry in the base class list of a class specifier, for example:
1152/// class foo : public bar, virtual private baz {
1153/// 'public bar' and 'virtual private baz' are each base-specifiers.
1154///
1155/// base-specifier: [C++ class.derived]
1156/// ::[opt] nested-name-specifier[opt] class-name
1157/// 'virtual' access-specifier[opt] ::[opt] nested-name-specifier[opt]
1158/// class-name
1159/// access-specifier 'virtual'[opt] ::[opt] nested-name-specifier[opt]
1160/// class-name
John McCalld226f652010-08-21 09:40:31 +00001161Parser::BaseResult Parser::ParseBaseSpecifier(Decl *ClassDecl) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001162 bool IsVirtual = false;
1163 SourceLocation StartLoc = Tok.getLocation();
1164
1165 // Parse the 'virtual' keyword.
1166 if (Tok.is(tok::kw_virtual)) {
1167 ConsumeToken();
1168 IsVirtual = true;
1169 }
1170
1171 // Parse an (optional) access specifier.
1172 AccessSpecifier Access = getAccessSpecifierIfPresent();
John McCall92f88312010-01-23 00:46:32 +00001173 if (Access != AS_none)
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001174 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001175
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001176 // Parse the 'virtual' keyword (again!), in case it came after the
1177 // access specifier.
1178 if (Tok.is(tok::kw_virtual)) {
1179 SourceLocation VirtualLoc = ConsumeToken();
1180 if (IsVirtual) {
1181 // Complain about duplicate 'virtual'
Chris Lattner1ab3b962008-11-18 07:48:38 +00001182 Diag(VirtualLoc, diag::err_dup_virtual)
Douglas Gregor849b2432010-03-31 17:46:05 +00001183 << FixItHint::CreateRemoval(VirtualLoc);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001184 }
1185
1186 IsVirtual = true;
1187 }
1188
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001189 // Parse optional '::' and optional nested-name-specifier.
1190 CXXScopeSpec SS;
John McCallb3d87482010-08-24 05:47:05 +00001191 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), /*EnteringContext=*/false);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001192
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001193 // The location of the base class itself.
1194 SourceLocation BaseLoc = Tok.getLocation();
Douglas Gregor42a552f2008-11-05 20:51:48 +00001195
1196 // Parse the class-name.
Douglas Gregor7f43d672009-02-25 23:52:28 +00001197 SourceLocation EndLocation;
Douglas Gregor31a19b62009-04-01 21:51:26 +00001198 TypeResult BaseType = ParseClassName(EndLocation, &SS);
1199 if (BaseType.isInvalid())
Douglas Gregor42a552f2008-11-05 20:51:48 +00001200 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001201
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001202 // Parse the optional ellipsis (for a pack expansion). The ellipsis is
1203 // actually part of the base-specifier-list grammar productions, but we
1204 // parse it here for convenience.
1205 SourceLocation EllipsisLoc;
1206 if (Tok.is(tok::ellipsis))
1207 EllipsisLoc = ConsumeToken();
1208
Mike Stump1eb44332009-09-09 15:08:12 +00001209 // Find the complete source range for the base-specifier.
Douglas Gregor7f43d672009-02-25 23:52:28 +00001210 SourceRange Range(StartLoc, EndLocation);
Mike Stump1eb44332009-09-09 15:08:12 +00001211
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001212 // Notify semantic analysis that we have parsed a complete
1213 // base-specifier.
Sebastian Redla55e52c2008-11-25 22:21:31 +00001214 return Actions.ActOnBaseSpecifier(ClassDecl, Range, IsVirtual, Access,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001215 BaseType.get(), BaseLoc, EllipsisLoc);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001216}
1217
1218/// getAccessSpecifierIfPresent - Determine whether the next token is
1219/// a C++ access-specifier.
1220///
1221/// access-specifier: [C++ class.derived]
1222/// 'private'
1223/// 'protected'
1224/// 'public'
Mike Stump1eb44332009-09-09 15:08:12 +00001225AccessSpecifier Parser::getAccessSpecifierIfPresent() const {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001226 switch (Tok.getKind()) {
1227 default: return AS_none;
1228 case tok::kw_private: return AS_private;
1229 case tok::kw_protected: return AS_protected;
1230 case tok::kw_public: return AS_public;
1231 }
1232}
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001233
Eli Friedmand33133c2009-07-22 21:45:50 +00001234void Parser::HandleMemberFunctionDefaultArgs(Declarator& DeclaratorInfo,
John McCalld226f652010-08-21 09:40:31 +00001235 Decl *ThisDecl) {
Eli Friedmand33133c2009-07-22 21:45:50 +00001236 // We just declared a member function. If this member function
1237 // has any default arguments, we'll need to parse them later.
1238 LateParsedMethodDeclaration *LateMethod = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001239 DeclaratorChunk::FunctionTypeInfo &FTI
Abramo Bagnara075f8f12010-12-10 16:29:40 +00001240 = DeclaratorInfo.getFunctionTypeInfo();
Eli Friedmand33133c2009-07-22 21:45:50 +00001241 for (unsigned ParamIdx = 0; ParamIdx < FTI.NumArgs; ++ParamIdx) {
1242 if (LateMethod || FTI.ArgInfo[ParamIdx].DefaultArgTokens) {
1243 if (!LateMethod) {
1244 // Push this method onto the stack of late-parsed method
1245 // declarations.
Douglas Gregord54eb442010-10-12 16:25:54 +00001246 LateMethod = new LateParsedMethodDeclaration(this, ThisDecl);
1247 getCurrentClass().LateParsedDeclarations.push_back(LateMethod);
Douglas Gregor23c94db2010-07-02 17:43:08 +00001248 LateMethod->TemplateScope = getCurScope()->isTemplateParamScope();
Eli Friedmand33133c2009-07-22 21:45:50 +00001249
1250 // Add all of the parameters prior to this one (they don't
1251 // have default arguments).
1252 LateMethod->DefaultArgs.reserve(FTI.NumArgs);
1253 for (unsigned I = 0; I < ParamIdx; ++I)
1254 LateMethod->DefaultArgs.push_back(
Douglas Gregor8f8210c2010-03-02 01:29:43 +00001255 LateParsedDefaultArgument(FTI.ArgInfo[I].Param));
Eli Friedmand33133c2009-07-22 21:45:50 +00001256 }
1257
1258 // Add this parameter to the list of parameters (it or may
1259 // not have a default argument).
1260 LateMethod->DefaultArgs.push_back(
1261 LateParsedDefaultArgument(FTI.ArgInfo[ParamIdx].Param,
1262 FTI.ArgInfo[ParamIdx].DefaultArgTokens));
1263 }
1264 }
1265}
1266
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001267/// isCXX0XVirtSpecifier - Determine whether the next token is a C++0x
1268/// virt-specifier.
1269///
1270/// virt-specifier:
1271/// override
1272/// final
1273/// new
Anders Carlssoncc54d592011-01-22 16:56:46 +00001274VirtSpecifiers::Specifier Parser::isCXX0XVirtSpecifier() const {
Anders Carlssonce93a7c2011-01-22 23:01:49 +00001275 if (!getLang().CPlusPlus)
Anders Carlssoncc54d592011-01-22 16:56:46 +00001276 return VirtSpecifiers::VS_None;
1277
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001278 if (Tok.is(tok::kw_new))
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001279 return VirtSpecifiers::VS_New;
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001280
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001281 if (Tok.is(tok::identifier)) {
1282 IdentifierInfo *II = Tok.getIdentifierInfo();
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001283
Anders Carlsson7eeb4ec2011-01-20 03:47:08 +00001284 // Initialize the contextual keywords.
1285 if (!Ident_final) {
1286 Ident_final = &PP.getIdentifierTable().get("final");
1287 Ident_override = &PP.getIdentifierTable().get("override");
1288 }
1289
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001290 if (II == Ident_override)
1291 return VirtSpecifiers::VS_Override;
1292
1293 if (II == Ident_final)
1294 return VirtSpecifiers::VS_Final;
1295 }
1296
1297 return VirtSpecifiers::VS_None;
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001298}
1299
1300/// ParseOptionalCXX0XVirtSpecifierSeq - Parse a virt-specifier-seq.
1301///
1302/// virt-specifier-seq:
1303/// virt-specifier
1304/// virt-specifier-seq virt-specifier
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001305void Parser::ParseOptionalCXX0XVirtSpecifierSeq(VirtSpecifiers &VS) {
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001306 while (true) {
Anders Carlssoncc54d592011-01-22 16:56:46 +00001307 VirtSpecifiers::Specifier Specifier = isCXX0XVirtSpecifier();
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001308 if (Specifier == VirtSpecifiers::VS_None)
1309 return;
1310
1311 // C++ [class.mem]p8:
1312 // A virt-specifier-seq shall contain at most one of each virt-specifier.
Anders Carlssoncc54d592011-01-22 16:56:46 +00001313 const char *PrevSpec = 0;
Anders Carlsson46127a92011-01-22 15:58:16 +00001314 if (VS.SetSpecifier(Specifier, Tok.getLocation(), PrevSpec))
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001315 Diag(Tok.getLocation(), diag::err_duplicate_virt_specifier)
1316 << PrevSpec
1317 << FixItHint::CreateRemoval(Tok.getLocation());
1318
Anders Carlssonce93a7c2011-01-22 23:01:49 +00001319 if (!getLang().CPlusPlus0x)
1320 Diag(Tok.getLocation(), diag::ext_override_control_keyword)
1321 << VirtSpecifiers::getSpecifierName(Specifier);
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001322 ConsumeToken();
1323 }
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001324}
1325
Anders Carlssoncc54d592011-01-22 16:56:46 +00001326/// isCXX0XClassVirtSpecifier - Determine whether the next token is a C++0x
1327/// class-virt-specifier.
1328///
1329/// class-virt-specifier:
1330/// final
1331/// explicit
1332ClassVirtSpecifiers::Specifier Parser::isCXX0XClassVirtSpecifier() const {
Anders Carlssonce93a7c2011-01-22 23:01:49 +00001333 if (!getLang().CPlusPlus)
Anders Carlssoncc54d592011-01-22 16:56:46 +00001334 return ClassVirtSpecifiers::CVS_None;
1335
1336 if (Tok.is(tok::kw_explicit))
1337 return ClassVirtSpecifiers::CVS_Explicit;
1338
1339 if (Tok.is(tok::identifier)) {
1340 IdentifierInfo *II = Tok.getIdentifierInfo();
1341
1342 // Initialize the contextual keywords.
1343 if (!Ident_final) {
1344 Ident_final = &PP.getIdentifierTable().get("final");
1345 Ident_override = &PP.getIdentifierTable().get("override");
1346 }
1347
1348 if (II == Ident_final)
1349 return ClassVirtSpecifiers::CVS_Final;
1350 }
1351
1352 return ClassVirtSpecifiers::CVS_None;
1353}
1354
1355/// ParseOptionalCXX0XClassVirtSpecifierSeq - Parse a class-virt-specifier-seq.
1356///
1357/// class-virt-specifier-seq:
1358/// class-virt-specifier
1359/// class-virt-specifier-seq class-virt-specifier
1360void Parser::ParseOptionalCXX0XClassVirtSpecifierSeq(ClassVirtSpecifiers &CVS) {
1361 while (true) {
1362 ClassVirtSpecifiers::Specifier Specifier = isCXX0XClassVirtSpecifier();
1363 if (Specifier == ClassVirtSpecifiers::CVS_None)
1364 return;
1365
1366 // C++ [class]p1:
1367 // A class-virt-specifier-seq shall contain at most one of each
1368 // class-virt-specifier.
1369 const char *PrevSpec = 0;
1370 if (CVS.SetSpecifier(Specifier, Tok.getLocation(), PrevSpec))
1371 Diag(Tok.getLocation(), diag::err_duplicate_class_virt_specifier)
1372 << PrevSpec
1373 << FixItHint::CreateRemoval(Tok.getLocation());
Anders Carlssonce93a7c2011-01-22 23:01:49 +00001374
1375 if (!getLang().CPlusPlus0x)
1376 Diag(Tok.getLocation(), diag::ext_override_control_keyword)
1377 << ClassVirtSpecifiers::getSpecifierName(Specifier);
1378
Anders Carlssoncc54d592011-01-22 16:56:46 +00001379 ConsumeToken();
1380 }
1381}
1382
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001383/// ParseCXXClassMemberDeclaration - Parse a C++ class member declaration.
1384///
1385/// member-declaration:
1386/// decl-specifier-seq[opt] member-declarator-list[opt] ';'
1387/// function-definition ';'[opt]
1388/// ::[opt] nested-name-specifier template[opt] unqualified-id ';'[TODO]
1389/// using-declaration [TODO]
Anders Carlsson511d7ab2009-03-11 16:27:10 +00001390/// [C++0x] static_assert-declaration
Anders Carlsson5aeccdb2009-03-26 00:52:18 +00001391/// template-declaration
Chris Lattnerbc8d5642008-12-18 01:12:00 +00001392/// [GNU] '__extension__' member-declaration
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001393///
1394/// member-declarator-list:
1395/// member-declarator
1396/// member-declarator-list ',' member-declarator
1397///
1398/// member-declarator:
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001399/// declarator virt-specifier-seq[opt] pure-specifier[opt]
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001400/// declarator constant-initializer[opt]
1401/// identifier[opt] ':' constant-expression
1402///
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001403/// virt-specifier-seq:
1404/// virt-specifier
1405/// virt-specifier-seq virt-specifier
1406///
1407/// virt-specifier:
1408/// override
1409/// final
1410/// new
1411///
Sebastian Redle2b68332009-04-12 17:16:29 +00001412/// pure-specifier:
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001413/// '= 0'
1414///
1415/// constant-initializer:
1416/// '=' constant-expression
1417///
Douglas Gregor37b372b2009-08-20 22:52:58 +00001418void Parser::ParseCXXClassMemberDeclaration(AccessSpecifier AS,
John McCallc9068d72010-07-16 08:13:16 +00001419 const ParsedTemplateInfo &TemplateInfo,
1420 ParsingDeclRAIIObject *TemplateDiags) {
John McCall60fa3cf2009-12-11 02:10:03 +00001421 // Access declarations.
1422 if (!TemplateInfo.Kind &&
1423 (Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) &&
John McCall9ba61662010-02-26 08:45:28 +00001424 !TryAnnotateCXXScopeToken() &&
John McCall60fa3cf2009-12-11 02:10:03 +00001425 Tok.is(tok::annot_cxxscope)) {
1426 bool isAccessDecl = false;
1427 if (NextToken().is(tok::identifier))
1428 isAccessDecl = GetLookAheadToken(2).is(tok::semi);
1429 else
1430 isAccessDecl = NextToken().is(tok::kw_operator);
1431
1432 if (isAccessDecl) {
1433 // Collect the scope specifier token we annotated earlier.
1434 CXXScopeSpec SS;
John McCallb3d87482010-08-24 05:47:05 +00001435 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
John McCall60fa3cf2009-12-11 02:10:03 +00001436
1437 // Try to parse an unqualified-id.
1438 UnqualifiedId Name;
John McCallb3d87482010-08-24 05:47:05 +00001439 if (ParseUnqualifiedId(SS, false, true, true, ParsedType(), Name)) {
John McCall60fa3cf2009-12-11 02:10:03 +00001440 SkipUntil(tok::semi);
1441 return;
1442 }
1443
1444 // TODO: recover from mistakenly-qualified operator declarations.
1445 if (ExpectAndConsume(tok::semi,
1446 diag::err_expected_semi_after,
1447 "access declaration",
1448 tok::semi))
1449 return;
1450
Douglas Gregor23c94db2010-07-02 17:43:08 +00001451 Actions.ActOnUsingDeclaration(getCurScope(), AS,
John McCall60fa3cf2009-12-11 02:10:03 +00001452 false, SourceLocation(),
1453 SS, Name,
1454 /* AttrList */ 0,
1455 /* IsTypeName */ false,
1456 SourceLocation());
1457 return;
1458 }
1459 }
1460
Anders Carlsson511d7ab2009-03-11 16:27:10 +00001461 // static_assert-declaration
Chris Lattner682bf922009-03-29 16:50:03 +00001462 if (Tok.is(tok::kw_static_assert)) {
Douglas Gregor37b372b2009-08-20 22:52:58 +00001463 // FIXME: Check for templates
Chris Lattner97144fc2009-04-02 04:16:50 +00001464 SourceLocation DeclEnd;
1465 ParseStaticAssertDeclaration(DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +00001466 return;
1467 }
Mike Stump1eb44332009-09-09 15:08:12 +00001468
Chris Lattner682bf922009-03-29 16:50:03 +00001469 if (Tok.is(tok::kw_template)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001470 assert(!TemplateInfo.TemplateParams &&
Douglas Gregor37b372b2009-08-20 22:52:58 +00001471 "Nested template improperly parsed?");
Chris Lattner97144fc2009-04-02 04:16:50 +00001472 SourceLocation DeclEnd;
Mike Stump1eb44332009-09-09 15:08:12 +00001473 ParseDeclarationStartingWithTemplate(Declarator::MemberContext, DeclEnd,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001474 AS);
Chris Lattner682bf922009-03-29 16:50:03 +00001475 return;
1476 }
Anders Carlsson5aeccdb2009-03-26 00:52:18 +00001477
Chris Lattnerbc8d5642008-12-18 01:12:00 +00001478 // Handle: member-declaration ::= '__extension__' member-declaration
1479 if (Tok.is(tok::kw___extension__)) {
1480 // __extension__ silences extension warnings in the subexpression.
1481 ExtensionRAIIObject O(Diags); // Use RAII to do this.
1482 ConsumeToken();
John McCallc9068d72010-07-16 08:13:16 +00001483 return ParseCXXClassMemberDeclaration(AS, TemplateInfo, TemplateDiags);
Chris Lattnerbc8d5642008-12-18 01:12:00 +00001484 }
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001485
Chris Lattner4ed5d912010-02-02 01:23:29 +00001486 // Don't parse FOO:BAR as if it were a typo for FOO::BAR, in this context it
1487 // is a bitfield.
Chris Lattnera1efc8c2009-12-10 01:59:24 +00001488 ColonProtectionRAIIObject X(*this);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001489
John McCall7f040a92010-12-24 02:08:15 +00001490 ParsedAttributesWithRange attrs;
Sean Huntbbd37c62009-11-21 08:43:09 +00001491 // Optional C++0x attribute-specifier
John McCall7f040a92010-12-24 02:08:15 +00001492 MaybeParseCXX0XAttributes(attrs);
1493 MaybeParseMicrosoftAttributes(attrs);
Sean Huntbbd37c62009-11-21 08:43:09 +00001494
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001495 if (Tok.is(tok::kw_using)) {
Douglas Gregor37b372b2009-08-20 22:52:58 +00001496 // FIXME: Check for template aliases
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001497
John McCall7f040a92010-12-24 02:08:15 +00001498 ProhibitAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +00001499
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001500 // Eat 'using'.
1501 SourceLocation UsingLoc = ConsumeToken();
1502
1503 if (Tok.is(tok::kw_namespace)) {
1504 Diag(UsingLoc, diag::err_using_namespace_in_class);
1505 SkipUntil(tok::semi, true, true);
Chris Lattnerae50d502010-02-02 00:43:15 +00001506 } else {
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001507 SourceLocation DeclEnd;
1508 // Otherwise, it must be using-declaration.
John McCall78b81052010-11-10 02:40:36 +00001509 ParseUsingDeclaration(Declarator::MemberContext, TemplateInfo,
1510 UsingLoc, DeclEnd, AS);
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001511 }
1512 return;
1513 }
1514
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001515 // decl-specifier-seq:
1516 // Parse the common declaration-specifiers piece.
John McCallc9068d72010-07-16 08:13:16 +00001517 ParsingDeclSpec DS(*this, TemplateDiags);
John McCall7f040a92010-12-24 02:08:15 +00001518 DS.takeAttributesFrom(attrs);
Douglas Gregor37b372b2009-08-20 22:52:58 +00001519 ParseDeclarationSpecifiers(DS, TemplateInfo, AS, DSC_class);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001520
John McCallf312b1e2010-08-26 23:41:50 +00001521 MultiTemplateParamsArg TemplateParams(Actions,
John McCalldd4a3b02009-09-16 22:47:08 +00001522 TemplateInfo.TemplateParams? TemplateInfo.TemplateParams->data() : 0,
1523 TemplateInfo.TemplateParams? TemplateInfo.TemplateParams->size() : 0);
1524
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001525 if (Tok.is(tok::semi)) {
1526 ConsumeToken();
John McCalld226f652010-08-21 09:40:31 +00001527 Decl *TheDecl =
John McCallc9068d72010-07-16 08:13:16 +00001528 Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS, DS);
1529 DS.complete(TheDecl);
John McCall67d1a672009-08-06 02:15:43 +00001530 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001531 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001532
John McCall54abf7d2009-11-04 02:18:39 +00001533 ParsingDeclarator DeclaratorInfo(*this, DS, Declarator::MemberContext);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001534
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001535 if (Tok.isNot(tok::colon)) {
Chris Lattnera1efc8c2009-12-10 01:59:24 +00001536 // Don't parse FOO:BAR as if it were a typo for FOO::BAR.
1537 ColonProtectionRAIIObject X(*this);
1538
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001539 // Parse the first declarator.
1540 ParseDeclarator(DeclaratorInfo);
1541 // Error parsing the declarator?
Douglas Gregor10bd3682008-11-17 22:58:34 +00001542 if (!DeclaratorInfo.hasName()) {
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001543 // If so, skip until the semi-colon or a }.
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001544 SkipUntil(tok::r_brace, true);
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001545 if (Tok.is(tok::semi))
1546 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001547 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001548 }
1549
John Thompson1b2fc0f2009-11-25 22:58:06 +00001550 // If attributes exist after the declarator, but before an '{', parse them.
John McCall7f040a92010-12-24 02:08:15 +00001551 MaybeParseGNUAttributes(DeclaratorInfo);
John Thompson1b2fc0f2009-11-25 22:58:06 +00001552
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001553 // function-definition:
Douglas Gregor7ad83902008-11-05 04:29:56 +00001554 if (Tok.is(tok::l_brace)
Sebastian Redld3a413d2009-04-26 20:35:05 +00001555 || (DeclaratorInfo.isFunctionDeclarator() &&
1556 (Tok.is(tok::colon) || Tok.is(tok::kw_try)))) {
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001557 if (!DeclaratorInfo.isFunctionDeclarator()) {
1558 Diag(Tok, diag::err_func_def_no_params);
1559 ConsumeBrace();
1560 SkipUntil(tok::r_brace, true);
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001561
1562 // Consume the optional ';'
1563 if (Tok.is(tok::semi))
1564 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001565 return;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001566 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001567
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001568 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
1569 Diag(Tok, diag::err_function_declared_typedef);
1570 // This recovery skips the entire function body. It would be nice
1571 // to simply call ParseCXXInlineMethodDef() below, however Sema
1572 // assumes the declarator represents a function, not a typedef.
1573 ConsumeBrace();
1574 SkipUntil(tok::r_brace, true);
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001575
1576 // Consume the optional ';'
1577 if (Tok.is(tok::semi))
1578 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001579 return;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001580 }
1581
Douglas Gregor37b372b2009-08-20 22:52:58 +00001582 ParseCXXInlineMethodDef(AS, DeclaratorInfo, TemplateInfo);
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001583 // Consume the optional ';'
1584 if (Tok.is(tok::semi))
1585 ConsumeToken();
1586
Chris Lattner682bf922009-03-29 16:50:03 +00001587 return;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001588 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001589 }
1590
1591 // member-declarator-list:
1592 // member-declarator
1593 // member-declarator-list ',' member-declarator
1594
John McCalld226f652010-08-21 09:40:31 +00001595 llvm::SmallVector<Decl *, 8> DeclsInGroup;
John McCall60d7b3a2010-08-24 06:29:42 +00001596 ExprResult BitfieldSize;
1597 ExprResult Init;
Sebastian Redle2b68332009-04-12 17:16:29 +00001598 bool Deleted = false;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001599
1600 while (1) {
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001601 // member-declarator:
1602 // declarator pure-specifier[opt]
1603 // declarator constant-initializer[opt]
1604 // identifier[opt] ':' constant-expression
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001605 if (Tok.is(tok::colon)) {
1606 ConsumeToken();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001607 BitfieldSize = ParseConstantExpression();
1608 if (BitfieldSize.isInvalid())
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001609 SkipUntil(tok::comma, true, true);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001610 }
Mike Stump1eb44332009-09-09 15:08:12 +00001611
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001612 VirtSpecifiers VS;
1613 ParseOptionalCXX0XVirtSpecifierSeq(VS);
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001614
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001615 // pure-specifier:
1616 // '= 0'
1617 //
1618 // constant-initializer:
1619 // '=' constant-expression
Sebastian Redle2b68332009-04-12 17:16:29 +00001620 //
1621 // defaulted/deleted function-definition:
1622 // '=' 'default' [TODO]
1623 // '=' 'delete'
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001624 if (Tok.is(tok::equal)) {
1625 ConsumeToken();
Anders Carlsson37bf9d22010-09-24 21:25:25 +00001626 if (Tok.is(tok::kw_delete)) {
1627 if (!getLang().CPlusPlus0x)
1628 Diag(Tok, diag::warn_deleted_function_accepted_as_extension);
Sebastian Redle2b68332009-04-12 17:16:29 +00001629 ConsumeToken();
1630 Deleted = true;
1631 } else {
1632 Init = ParseInitializer();
1633 if (Init.isInvalid())
1634 SkipUntil(tok::comma, true, true);
1635 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001636 }
1637
Chris Lattnere6563252010-06-13 05:34:18 +00001638 // If a simple-asm-expr is present, parse it.
1639 if (Tok.is(tok::kw_asm)) {
1640 SourceLocation Loc;
John McCall60d7b3a2010-08-24 06:29:42 +00001641 ExprResult AsmLabel(ParseSimpleAsm(&Loc));
Chris Lattnere6563252010-06-13 05:34:18 +00001642 if (AsmLabel.isInvalid())
1643 SkipUntil(tok::comma, true, true);
1644
1645 DeclaratorInfo.setAsmLabel(AsmLabel.release());
1646 DeclaratorInfo.SetRangeEnd(Loc);
1647 }
1648
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001649 // If attributes exist after the declarator, parse them.
John McCall7f040a92010-12-24 02:08:15 +00001650 MaybeParseGNUAttributes(DeclaratorInfo);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001651
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001652 // NOTE: If Sema is the Action module and declarator is an instance field,
Chris Lattner682bf922009-03-29 16:50:03 +00001653 // this call will *not* return the created decl; It will return null.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001654 // See Sema::ActOnCXXMemberDeclarator for details.
John McCall67d1a672009-08-06 02:15:43 +00001655
John McCalld226f652010-08-21 09:40:31 +00001656 Decl *ThisDecl = 0;
John McCall67d1a672009-08-06 02:15:43 +00001657 if (DS.isFriendSpecified()) {
John McCallbbbcdd92009-09-11 21:02:39 +00001658 // TODO: handle initializers, bitfields, 'delete'
Douglas Gregor23c94db2010-07-02 17:43:08 +00001659 ThisDecl = Actions.ActOnFriendFunctionDecl(getCurScope(), DeclaratorInfo,
John McCallbbbcdd92009-09-11 21:02:39 +00001660 /*IsDefinition*/ false,
1661 move(TemplateParams));
Douglas Gregor37b372b2009-08-20 22:52:58 +00001662 } else {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001663 ThisDecl = Actions.ActOnCXXMemberDeclarator(getCurScope(), AS,
John McCall67d1a672009-08-06 02:15:43 +00001664 DeclaratorInfo,
Douglas Gregor37b372b2009-08-20 22:52:58 +00001665 move(TemplateParams),
John McCall67d1a672009-08-06 02:15:43 +00001666 BitfieldSize.release(),
Anders Carlsson69a87352011-01-20 03:57:25 +00001667 VS, Init.release(),
Sebastian Redld1a78462009-11-24 23:38:44 +00001668 /*IsDefinition*/Deleted,
John McCall67d1a672009-08-06 02:15:43 +00001669 Deleted);
Douglas Gregor37b372b2009-08-20 22:52:58 +00001670 }
Chris Lattner682bf922009-03-29 16:50:03 +00001671 if (ThisDecl)
1672 DeclsInGroup.push_back(ThisDecl);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001673
Douglas Gregor72b505b2008-12-16 21:30:33 +00001674 if (DeclaratorInfo.isFunctionDeclarator() &&
Mike Stump1eb44332009-09-09 15:08:12 +00001675 DeclaratorInfo.getDeclSpec().getStorageClassSpec()
Douglas Gregor72b505b2008-12-16 21:30:33 +00001676 != DeclSpec::SCS_typedef) {
Eli Friedmand33133c2009-07-22 21:45:50 +00001677 HandleMemberFunctionDefaultArgs(DeclaratorInfo, ThisDecl);
Douglas Gregor72b505b2008-12-16 21:30:33 +00001678 }
1679
John McCall54abf7d2009-11-04 02:18:39 +00001680 DeclaratorInfo.complete(ThisDecl);
1681
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001682 // If we don't have a comma, it is either the end of the list (a ';')
1683 // or an error, bail out.
1684 if (Tok.isNot(tok::comma))
1685 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001686
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001687 // Consume the comma.
1688 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001689
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001690 // Parse the next declarator.
1691 DeclaratorInfo.clear();
Sebastian Redl15faa7f2008-12-09 20:22:58 +00001692 BitfieldSize = 0;
1693 Init = 0;
Sebastian Redle2b68332009-04-12 17:16:29 +00001694 Deleted = false;
Mike Stump1eb44332009-09-09 15:08:12 +00001695
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001696 // Attributes are only allowed on the second declarator.
John McCall7f040a92010-12-24 02:08:15 +00001697 MaybeParseGNUAttributes(DeclaratorInfo);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001698
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001699 if (Tok.isNot(tok::colon))
1700 ParseDeclarator(DeclaratorInfo);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001701 }
1702
Chris Lattnerae50d502010-02-02 00:43:15 +00001703 if (ExpectAndConsume(tok::semi, diag::err_expected_semi_decl_list)) {
1704 // Skip to end of block or statement.
1705 SkipUntil(tok::r_brace, true, true);
1706 // If we stopped at a ';', eat it.
1707 if (Tok.is(tok::semi)) ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001708 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001709 }
1710
Douglas Gregor23c94db2010-07-02 17:43:08 +00001711 Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup.data(),
Chris Lattnerae50d502010-02-02 00:43:15 +00001712 DeclsInGroup.size());
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001713}
1714
1715/// ParseCXXMemberSpecification - Parse the class definition.
1716///
1717/// member-specification:
1718/// member-declaration member-specification[opt]
1719/// access-specifier ':' member-specification[opt]
1720///
1721void Parser::ParseCXXMemberSpecification(SourceLocation RecordLoc,
John McCalld226f652010-08-21 09:40:31 +00001722 unsigned TagType, Decl *TagDecl) {
Sanjiv Gupta31fc07d2008-10-31 09:52:39 +00001723 assert((TagType == DeclSpec::TST_struct ||
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001724 TagType == DeclSpec::TST_union ||
Sanjiv Gupta31fc07d2008-10-31 09:52:39 +00001725 TagType == DeclSpec::TST_class) && "Invalid TagType!");
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001726
John McCallf312b1e2010-08-26 23:41:50 +00001727 PrettyDeclStackTraceEntry CrashInfo(Actions, TagDecl, RecordLoc,
1728 "parsing struct/union/class body");
Mike Stump1eb44332009-09-09 15:08:12 +00001729
Douglas Gregor26997fd2010-01-16 20:52:59 +00001730 // Determine whether this is a non-nested class. Note that local
1731 // classes are *not* considered to be nested classes.
1732 bool NonNestedClass = true;
1733 if (!ClassStack.empty()) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001734 for (const Scope *S = getCurScope(); S; S = S->getParent()) {
Douglas Gregor26997fd2010-01-16 20:52:59 +00001735 if (S->isClassScope()) {
1736 // We're inside a class scope, so this is a nested class.
1737 NonNestedClass = false;
1738 break;
1739 }
1740
1741 if ((S->getFlags() & Scope::FnScope)) {
1742 // If we're in a function or function template declared in the
1743 // body of a class, then this is a local class rather than a
1744 // nested class.
1745 const Scope *Parent = S->getParent();
1746 if (Parent->isTemplateParamScope())
1747 Parent = Parent->getParent();
1748 if (Parent->isClassScope())
1749 break;
1750 }
1751 }
1752 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001753
1754 // Enter a scope for the class.
Douglas Gregor3218c4b2009-01-09 22:42:13 +00001755 ParseScope ClassScope(this, Scope::ClassScope|Scope::DeclScope);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001756
Douglas Gregor6569d682009-05-27 23:11:45 +00001757 // Note that we are parsing a new (potentially-nested) class definition.
Douglas Gregor26997fd2010-01-16 20:52:59 +00001758 ParsingClassDefinition ParsingDef(*this, TagDecl, NonNestedClass);
Douglas Gregor6569d682009-05-27 23:11:45 +00001759
Douglas Gregorddc29e12009-02-06 22:42:48 +00001760 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00001761 Actions.ActOnTagStartDefinition(getCurScope(), TagDecl);
John McCallbd0dfa52009-12-19 21:48:58 +00001762
Anders Carlssoncc54d592011-01-22 16:56:46 +00001763 ClassVirtSpecifiers CVS;
1764 ParseOptionalCXX0XClassVirtSpecifierSeq(CVS);
1765
John McCallbd0dfa52009-12-19 21:48:58 +00001766 if (Tok.is(tok::colon)) {
1767 ParseBaseClause(TagDecl);
1768
1769 if (!Tok.is(tok::l_brace)) {
1770 Diag(Tok, diag::err_expected_lbrace_after_base_specifiers);
John McCalldb7bb4a2010-03-17 00:38:33 +00001771
1772 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00001773 Actions.ActOnTagDefinitionError(getCurScope(), TagDecl);
John McCallbd0dfa52009-12-19 21:48:58 +00001774 return;
1775 }
1776 }
1777
1778 assert(Tok.is(tok::l_brace));
1779
1780 SourceLocation LBraceLoc = ConsumeBrace();
1781
John McCall42a4f662010-05-28 08:11:17 +00001782 if (TagDecl)
Anders Carlssondfc2f102011-01-22 17:51:53 +00001783 Actions.ActOnStartCXXMemberDeclarations(getCurScope(), TagDecl, CVS,
1784 LBraceLoc);
John McCallf9368152009-12-20 07:58:13 +00001785
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001786 // C++ 11p3: Members of a class defined with the keyword class are private
1787 // by default. Members of a class defined with the keywords struct or union
1788 // are public by default.
1789 AccessSpecifier CurAS;
1790 if (TagType == DeclSpec::TST_class)
1791 CurAS = AS_private;
1792 else
1793 CurAS = AS_public;
1794
Douglas Gregor07976d22010-06-21 22:31:09 +00001795 SourceLocation RBraceLoc;
1796 if (TagDecl) {
1797 // While we still have something to read, read the member-declarations.
1798 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
1799 // Each iteration of this loop reads one member-declaration.
Mike Stump1eb44332009-09-09 15:08:12 +00001800
Douglas Gregor07976d22010-06-21 22:31:09 +00001801 // Check for extraneous top-level semicolon.
1802 if (Tok.is(tok::semi)) {
1803 Diag(Tok, diag::ext_extra_struct_semi)
1804 << DeclSpec::getSpecifierName((DeclSpec::TST)TagType)
1805 << FixItHint::CreateRemoval(Tok.getLocation());
1806 ConsumeToken();
1807 continue;
1808 }
1809
1810 AccessSpecifier AS = getAccessSpecifierIfPresent();
1811 if (AS != AS_none) {
1812 // Current token is a C++ access specifier.
1813 CurAS = AS;
1814 SourceLocation ASLoc = Tok.getLocation();
1815 ConsumeToken();
1816 if (Tok.is(tok::colon))
1817 Actions.ActOnAccessSpecifier(AS, ASLoc, Tok.getLocation());
1818 else
1819 Diag(Tok, diag::err_expected_colon);
1820 ConsumeToken();
1821 continue;
1822 }
1823
1824 // FIXME: Make sure we don't have a template here.
1825
1826 // Parse all the comma separated declarators.
1827 ParseCXXClassMemberDeclaration(CurAS);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001828 }
1829
Douglas Gregor07976d22010-06-21 22:31:09 +00001830 RBraceLoc = MatchRHSPunctuation(tok::r_brace, LBraceLoc);
1831 } else {
1832 SkipUntil(tok::r_brace, false, false);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001833 }
Mike Stump1eb44332009-09-09 15:08:12 +00001834
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001835 // If attributes exist after class contents, parse them.
John McCall7f040a92010-12-24 02:08:15 +00001836 ParsedAttributes attrs;
1837 MaybeParseGNUAttributes(attrs);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001838
John McCall42a4f662010-05-28 08:11:17 +00001839 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00001840 Actions.ActOnFinishCXXMemberSpecification(getCurScope(), RecordLoc, TagDecl,
John McCall42a4f662010-05-28 08:11:17 +00001841 LBraceLoc, RBraceLoc,
John McCall7f040a92010-12-24 02:08:15 +00001842 attrs.getList());
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001843
1844 // C++ 9.2p2: Within the class member-specification, the class is regarded as
1845 // complete within function bodies, default arguments,
1846 // exception-specifications, and constructor ctor-initializers (including
1847 // such things in nested classes).
1848 //
Douglas Gregor72b505b2008-12-16 21:30:33 +00001849 // FIXME: Only function bodies and constructor ctor-initializers are
1850 // parsed correctly, fix the rest.
Douglas Gregor07976d22010-06-21 22:31:09 +00001851 if (TagDecl && NonNestedClass) {
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001852 // We are not inside a nested class. This class and its nested classes
Douglas Gregor72b505b2008-12-16 21:30:33 +00001853 // are complete and we can parse the delayed portions of method
1854 // declarations and the lexed inline method definitions.
Douglas Gregore0cc0472010-06-16 23:45:56 +00001855 SourceLocation SavedPrevTokLocation = PrevTokLocation;
Douglas Gregor6569d682009-05-27 23:11:45 +00001856 ParseLexedMethodDeclarations(getCurrentClass());
1857 ParseLexedMethodDefs(getCurrentClass());
Douglas Gregore0cc0472010-06-16 23:45:56 +00001858 PrevTokLocation = SavedPrevTokLocation;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001859 }
1860
John McCall42a4f662010-05-28 08:11:17 +00001861 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00001862 Actions.ActOnTagFinishDefinition(getCurScope(), TagDecl, RBraceLoc);
John McCalldb7bb4a2010-03-17 00:38:33 +00001863
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001864 // Leave the class scope.
Douglas Gregor6569d682009-05-27 23:11:45 +00001865 ParsingDef.Pop();
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001866 ClassScope.Exit();
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001867}
Douglas Gregor7ad83902008-11-05 04:29:56 +00001868
1869/// ParseConstructorInitializer - Parse a C++ constructor initializer,
1870/// which explicitly initializes the members or base classes of a
1871/// class (C++ [class.base.init]). For example, the three initializers
1872/// after the ':' in the Derived constructor below:
1873///
1874/// @code
1875/// class Base { };
1876/// class Derived : Base {
1877/// int x;
1878/// float f;
1879/// public:
1880/// Derived(float f) : Base(), x(17), f(f) { }
1881/// };
1882/// @endcode
1883///
Mike Stump1eb44332009-09-09 15:08:12 +00001884/// [C++] ctor-initializer:
1885/// ':' mem-initializer-list
Douglas Gregor7ad83902008-11-05 04:29:56 +00001886///
Mike Stump1eb44332009-09-09 15:08:12 +00001887/// [C++] mem-initializer-list:
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001888/// mem-initializer ...[opt]
1889/// mem-initializer ...[opt] , mem-initializer-list
John McCalld226f652010-08-21 09:40:31 +00001890void Parser::ParseConstructorInitializer(Decl *ConstructorDecl) {
Douglas Gregor7ad83902008-11-05 04:29:56 +00001891 assert(Tok.is(tok::colon) && "Constructor initializer always starts with ':'");
1892
1893 SourceLocation ColonLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001894
Sean Huntcbb67482011-01-08 20:30:50 +00001895 llvm::SmallVector<CXXCtorInitializer*, 4> MemInitializers;
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001896 bool AnyErrors = false;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001897
Douglas Gregor7ad83902008-11-05 04:29:56 +00001898 do {
Douglas Gregor0133f522010-08-28 00:00:50 +00001899 if (Tok.is(tok::code_completion)) {
1900 Actions.CodeCompleteConstructorInitializer(ConstructorDecl,
1901 MemInitializers.data(),
1902 MemInitializers.size());
1903 ConsumeCodeCompletionToken();
1904 } else {
1905 MemInitResult MemInit = ParseMemInitializer(ConstructorDecl);
1906 if (!MemInit.isInvalid())
1907 MemInitializers.push_back(MemInit.get());
1908 else
1909 AnyErrors = true;
1910 }
1911
Douglas Gregor7ad83902008-11-05 04:29:56 +00001912 if (Tok.is(tok::comma))
1913 ConsumeToken();
1914 else if (Tok.is(tok::l_brace))
1915 break;
Douglas Gregorb1f6fa42010-09-07 14:35:10 +00001916 // If the next token looks like a base or member initializer, assume that
1917 // we're just missing a comma.
Douglas Gregor751f6922010-09-07 14:51:08 +00001918 else if (Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) {
1919 SourceLocation Loc = PP.getLocForEndOfToken(PrevTokLocation);
1920 Diag(Loc, diag::err_ctor_init_missing_comma)
1921 << FixItHint::CreateInsertion(Loc, ", ");
1922 } else {
Douglas Gregor7ad83902008-11-05 04:29:56 +00001923 // Skip over garbage, until we get to '{'. Don't eat the '{'.
Sebastian Redld3a413d2009-04-26 20:35:05 +00001924 Diag(Tok.getLocation(), diag::err_expected_lbrace_or_comma);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001925 SkipUntil(tok::l_brace, true, true);
1926 break;
1927 }
1928 } while (true);
1929
Mike Stump1eb44332009-09-09 15:08:12 +00001930 Actions.ActOnMemInitializers(ConstructorDecl, ColonLoc,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001931 MemInitializers.data(), MemInitializers.size(),
1932 AnyErrors);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001933}
1934
1935/// ParseMemInitializer - Parse a C++ member initializer, which is
1936/// part of a constructor initializer that explicitly initializes one
1937/// member or base class (C++ [class.base.init]). See
1938/// ParseConstructorInitializer for an example.
1939///
1940/// [C++] mem-initializer:
1941/// mem-initializer-id '(' expression-list[opt] ')'
Mike Stump1eb44332009-09-09 15:08:12 +00001942///
Douglas Gregor7ad83902008-11-05 04:29:56 +00001943/// [C++] mem-initializer-id:
1944/// '::'[opt] nested-name-specifier[opt] class-name
1945/// identifier
John McCalld226f652010-08-21 09:40:31 +00001946Parser::MemInitResult Parser::ParseMemInitializer(Decl *ConstructorDecl) {
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00001947 // parse '::'[opt] nested-name-specifier[opt]
1948 CXXScopeSpec SS;
John McCallb3d87482010-08-24 05:47:05 +00001949 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
1950 ParsedType TemplateTypeTy;
Fariborz Jahanian96174332009-07-01 19:21:19 +00001951 if (Tok.is(tok::annot_template_id)) {
1952 TemplateIdAnnotation *TemplateId
1953 = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
Douglas Gregord9b600c2010-01-12 17:52:59 +00001954 if (TemplateId->Kind == TNK_Type_template ||
1955 TemplateId->Kind == TNK_Dependent_template_name) {
Fariborz Jahanian96174332009-07-01 19:21:19 +00001956 AnnotateTemplateIdTokenAsType(&SS);
1957 assert(Tok.is(tok::annot_typename) && "template-id -> type failed");
John McCallb3d87482010-08-24 05:47:05 +00001958 TemplateTypeTy = getTypeAnnotation(Tok);
Fariborz Jahanian96174332009-07-01 19:21:19 +00001959 }
Fariborz Jahanian96174332009-07-01 19:21:19 +00001960 }
1961 if (!TemplateTypeTy && Tok.isNot(tok::identifier)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001962 Diag(Tok, diag::err_expected_member_or_base_name);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001963 return true;
1964 }
Mike Stump1eb44332009-09-09 15:08:12 +00001965
Douglas Gregor7ad83902008-11-05 04:29:56 +00001966 // Get the identifier. This may be a member name or a class name,
1967 // but we'll let the semantic analysis determine which it is.
Fariborz Jahanian96174332009-07-01 19:21:19 +00001968 IdentifierInfo *II = Tok.is(tok::identifier) ? Tok.getIdentifierInfo() : 0;
Douglas Gregor7ad83902008-11-05 04:29:56 +00001969 SourceLocation IdLoc = ConsumeToken();
1970
1971 // Parse the '('.
1972 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001973 Diag(Tok, diag::err_expected_lparen);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001974 return true;
1975 }
1976 SourceLocation LParenLoc = ConsumeParen();
1977
1978 // Parse the optional expression-list.
Sebastian Redla55e52c2008-11-25 22:21:31 +00001979 ExprVector ArgExprs(Actions);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001980 CommaLocsTy CommaLocs;
1981 if (Tok.isNot(tok::r_paren) && ParseExpressionList(ArgExprs, CommaLocs)) {
1982 SkipUntil(tok::r_paren);
1983 return true;
1984 }
1985
1986 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
1987
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001988 SourceLocation EllipsisLoc;
1989 if (Tok.is(tok::ellipsis))
1990 EllipsisLoc = ConsumeToken();
1991
Douglas Gregor23c94db2010-07-02 17:43:08 +00001992 return Actions.ActOnMemInitializer(ConstructorDecl, getCurScope(), SS, II,
Fariborz Jahanian96174332009-07-01 19:21:19 +00001993 TemplateTypeTy, IdLoc,
Sebastian Redla55e52c2008-11-25 22:21:31 +00001994 LParenLoc, ArgExprs.take(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001995 ArgExprs.size(), RParenLoc,
1996 EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001997}
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00001998
1999/// ParseExceptionSpecification - Parse a C++ exception-specification
2000/// (C++ [except.spec]).
2001///
Douglas Gregora4745612008-12-01 18:00:20 +00002002/// exception-specification:
2003/// 'throw' '(' type-id-list [opt] ')'
2004/// [MS] 'throw' '(' '...' ')'
Mike Stump1eb44332009-09-09 15:08:12 +00002005///
Douglas Gregora4745612008-12-01 18:00:20 +00002006/// type-id-list:
Douglas Gregora04426c2010-12-20 23:57:46 +00002007/// type-id ... [opt]
2008/// type-id-list ',' type-id ... [opt]
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002009///
Sebastian Redl7dc81342009-04-29 17:30:04 +00002010bool Parser::ParseExceptionSpecification(SourceLocation &EndLoc,
John McCallb3d87482010-08-24 05:47:05 +00002011 llvm::SmallVectorImpl<ParsedType>
Sebastian Redlef65f062009-05-29 18:02:33 +00002012 &Exceptions,
John McCallb3d87482010-08-24 05:47:05 +00002013 llvm::SmallVectorImpl<SourceRange>
Sebastian Redlef65f062009-05-29 18:02:33 +00002014 &Ranges,
Sebastian Redl7dc81342009-04-29 17:30:04 +00002015 bool &hasAnyExceptionSpec) {
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002016 assert(Tok.is(tok::kw_throw) && "expected throw");
Mike Stump1eb44332009-09-09 15:08:12 +00002017
Jeffrey Yasskindec09842011-01-18 02:00:16 +00002018 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00002019
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002020 if (!Tok.is(tok::l_paren)) {
2021 return Diag(Tok, diag::err_expected_lparen_after) << "throw";
2022 }
2023 SourceLocation LParenLoc = ConsumeParen();
2024
Douglas Gregora4745612008-12-01 18:00:20 +00002025 // Parse throw(...), a Microsoft extension that means "this function
2026 // can throw anything".
2027 if (Tok.is(tok::ellipsis)) {
Sebastian Redl7dc81342009-04-29 17:30:04 +00002028 hasAnyExceptionSpec = true;
Douglas Gregora4745612008-12-01 18:00:20 +00002029 SourceLocation EllipsisLoc = ConsumeToken();
2030 if (!getLang().Microsoft)
2031 Diag(EllipsisLoc, diag::ext_ellipsis_exception_spec);
Sebastian Redlab197ba2009-02-09 18:23:29 +00002032 EndLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
Douglas Gregora4745612008-12-01 18:00:20 +00002033 return false;
2034 }
2035
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002036 // Parse the sequence of type-ids.
Sebastian Redlef65f062009-05-29 18:02:33 +00002037 SourceRange Range;
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002038 while (Tok.isNot(tok::r_paren)) {
Sebastian Redlef65f062009-05-29 18:02:33 +00002039 TypeResult Res(ParseTypeName(&Range));
Douglas Gregora04426c2010-12-20 23:57:46 +00002040
2041 if (Tok.is(tok::ellipsis)) {
2042 // C++0x [temp.variadic]p5:
2043 // - In a dynamic-exception-specification (15.4); the pattern is a
2044 // type-id.
2045 SourceLocation Ellipsis = ConsumeToken();
2046 if (!Res.isInvalid())
2047 Res = Actions.ActOnPackExpansion(Res.get(), Ellipsis);
2048 }
2049
Sebastian Redlef65f062009-05-29 18:02:33 +00002050 if (!Res.isInvalid()) {
Sebastian Redl7dc81342009-04-29 17:30:04 +00002051 Exceptions.push_back(Res.get());
Sebastian Redlef65f062009-05-29 18:02:33 +00002052 Ranges.push_back(Range);
2053 }
Douglas Gregora04426c2010-12-20 23:57:46 +00002054
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002055 if (Tok.is(tok::comma))
2056 ConsumeToken();
Sebastian Redl7dc81342009-04-29 17:30:04 +00002057 else
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002058 break;
2059 }
2060
Sebastian Redlab197ba2009-02-09 18:23:29 +00002061 EndLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002062 return false;
2063}
Douglas Gregor6569d682009-05-27 23:11:45 +00002064
Douglas Gregordab60ad2010-10-01 18:44:50 +00002065/// ParseTrailingReturnType - Parse a trailing return type on a new-style
2066/// function declaration.
2067TypeResult Parser::ParseTrailingReturnType() {
2068 assert(Tok.is(tok::arrow) && "expected arrow");
2069
2070 ConsumeToken();
2071
2072 // FIXME: Need to suppress declarations when parsing this typename.
2073 // Otherwise in this function definition:
2074 //
2075 // auto f() -> struct X {}
2076 //
2077 // struct X is parsed as class definition because of the trailing
2078 // brace.
2079
2080 SourceRange Range;
2081 return ParseTypeName(&Range);
2082}
2083
Douglas Gregor6569d682009-05-27 23:11:45 +00002084/// \brief We have just started parsing the definition of a new class,
2085/// so push that class onto our stack of classes that is currently
2086/// being parsed.
John McCalld226f652010-08-21 09:40:31 +00002087void Parser::PushParsingClass(Decl *ClassDecl, bool NonNestedClass) {
Douglas Gregor26997fd2010-01-16 20:52:59 +00002088 assert((NonNestedClass || !ClassStack.empty()) &&
Douglas Gregor6569d682009-05-27 23:11:45 +00002089 "Nested class without outer class");
Douglas Gregor26997fd2010-01-16 20:52:59 +00002090 ClassStack.push(new ParsingClass(ClassDecl, NonNestedClass));
Douglas Gregor6569d682009-05-27 23:11:45 +00002091}
2092
2093/// \brief Deallocate the given parsed class and all of its nested
2094/// classes.
2095void Parser::DeallocateParsedClasses(Parser::ParsingClass *Class) {
Douglas Gregord54eb442010-10-12 16:25:54 +00002096 for (unsigned I = 0, N = Class->LateParsedDeclarations.size(); I != N; ++I)
2097 delete Class->LateParsedDeclarations[I];
Douglas Gregor6569d682009-05-27 23:11:45 +00002098 delete Class;
2099}
2100
2101/// \brief Pop the top class of the stack of classes that are
2102/// currently being parsed.
2103///
2104/// This routine should be called when we have finished parsing the
2105/// definition of a class, but have not yet popped the Scope
2106/// associated with the class's definition.
2107///
2108/// \returns true if the class we've popped is a top-level class,
2109/// false otherwise.
2110void Parser::PopParsingClass() {
2111 assert(!ClassStack.empty() && "Mismatched push/pop for class parsing");
Mike Stump1eb44332009-09-09 15:08:12 +00002112
Douglas Gregor6569d682009-05-27 23:11:45 +00002113 ParsingClass *Victim = ClassStack.top();
2114 ClassStack.pop();
2115 if (Victim->TopLevelClass) {
2116 // Deallocate all of the nested classes of this class,
2117 // recursively: we don't need to keep any of this information.
2118 DeallocateParsedClasses(Victim);
2119 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002120 }
Douglas Gregor6569d682009-05-27 23:11:45 +00002121 assert(!ClassStack.empty() && "Missing top-level class?");
2122
Douglas Gregord54eb442010-10-12 16:25:54 +00002123 if (Victim->LateParsedDeclarations.empty()) {
Douglas Gregor6569d682009-05-27 23:11:45 +00002124 // The victim is a nested class, but we will not need to perform
2125 // any processing after the definition of this class since it has
2126 // no members whose handling was delayed. Therefore, we can just
2127 // remove this nested class.
Douglas Gregord54eb442010-10-12 16:25:54 +00002128 DeallocateParsedClasses(Victim);
Douglas Gregor6569d682009-05-27 23:11:45 +00002129 return;
2130 }
2131
2132 // This nested class has some members that will need to be processed
2133 // after the top-level class is completely defined. Therefore, add
2134 // it to the list of nested classes within its parent.
Douglas Gregor23c94db2010-07-02 17:43:08 +00002135 assert(getCurScope()->isClassScope() && "Nested class outside of class scope?");
Douglas Gregord54eb442010-10-12 16:25:54 +00002136 ClassStack.top()->LateParsedDeclarations.push_back(new LateParsedClass(this, Victim));
Douglas Gregor23c94db2010-07-02 17:43:08 +00002137 Victim->TemplateScope = getCurScope()->getParent()->isTemplateParamScope();
Douglas Gregor6569d682009-05-27 23:11:45 +00002138}
Sean Huntbbd37c62009-11-21 08:43:09 +00002139
2140/// ParseCXX0XAttributes - Parse a C++0x attribute-specifier. Currently only
2141/// parses standard attributes.
2142///
2143/// [C++0x] attribute-specifier:
2144/// '[' '[' attribute-list ']' ']'
2145///
2146/// [C++0x] attribute-list:
2147/// attribute[opt]
2148/// attribute-list ',' attribute[opt]
2149///
2150/// [C++0x] attribute:
2151/// attribute-token attribute-argument-clause[opt]
2152///
2153/// [C++0x] attribute-token:
2154/// identifier
2155/// attribute-scoped-token
2156///
2157/// [C++0x] attribute-scoped-token:
2158/// attribute-namespace '::' identifier
2159///
2160/// [C++0x] attribute-namespace:
2161/// identifier
2162///
2163/// [C++0x] attribute-argument-clause:
2164/// '(' balanced-token-seq ')'
2165///
2166/// [C++0x] balanced-token-seq:
2167/// balanced-token
2168/// balanced-token-seq balanced-token
2169///
2170/// [C++0x] balanced-token:
2171/// '(' balanced-token-seq ')'
2172/// '[' balanced-token-seq ']'
2173/// '{' balanced-token-seq '}'
2174/// any token but '(', ')', '[', ']', '{', or '}'
John McCall7f040a92010-12-24 02:08:15 +00002175void Parser::ParseCXX0XAttributes(ParsedAttributesWithRange &attrs,
2176 SourceLocation *endLoc) {
Sean Huntbbd37c62009-11-21 08:43:09 +00002177 assert(Tok.is(tok::l_square) && NextToken().is(tok::l_square)
2178 && "Not a C++0x attribute list");
2179
2180 SourceLocation StartLoc = Tok.getLocation(), Loc;
Sean Huntbbd37c62009-11-21 08:43:09 +00002181
2182 ConsumeBracket();
2183 ConsumeBracket();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002184
Sean Huntbbd37c62009-11-21 08:43:09 +00002185 if (Tok.is(tok::comma)) {
2186 Diag(Tok.getLocation(), diag::err_expected_ident);
2187 ConsumeToken();
2188 }
2189
2190 while (Tok.is(tok::identifier) || Tok.is(tok::comma)) {
2191 // attribute not present
2192 if (Tok.is(tok::comma)) {
2193 ConsumeToken();
2194 continue;
2195 }
2196
2197 IdentifierInfo *ScopeName = 0, *AttrName = Tok.getIdentifierInfo();
2198 SourceLocation ScopeLoc, AttrLoc = ConsumeToken();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002199
Sean Huntbbd37c62009-11-21 08:43:09 +00002200 // scoped attribute
2201 if (Tok.is(tok::coloncolon)) {
2202 ConsumeToken();
2203
2204 if (!Tok.is(tok::identifier)) {
2205 Diag(Tok.getLocation(), diag::err_expected_ident);
2206 SkipUntil(tok::r_square, tok::comma, true, true);
2207 continue;
2208 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002209
Sean Huntbbd37c62009-11-21 08:43:09 +00002210 ScopeName = AttrName;
2211 ScopeLoc = AttrLoc;
2212
2213 AttrName = Tok.getIdentifierInfo();
2214 AttrLoc = ConsumeToken();
2215 }
2216
2217 bool AttrParsed = false;
2218 // No scoped names are supported; ideally we could put all non-standard
2219 // attributes into namespaces.
2220 if (!ScopeName) {
2221 switch(AttributeList::getKind(AttrName))
2222 {
2223 // No arguments
Sean Hunt7725e672009-11-25 04:20:27 +00002224 case AttributeList::AT_base_check:
2225 case AttributeList::AT_carries_dependency:
Sean Huntbbd37c62009-11-21 08:43:09 +00002226 case AttributeList::AT_final:
Sean Hunt7725e672009-11-25 04:20:27 +00002227 case AttributeList::AT_hiding:
2228 case AttributeList::AT_noreturn:
2229 case AttributeList::AT_override: {
Sean Huntbbd37c62009-11-21 08:43:09 +00002230 if (Tok.is(tok::l_paren)) {
2231 Diag(Tok.getLocation(), diag::err_cxx0x_attribute_forbids_arguments)
2232 << AttrName->getName();
2233 break;
2234 }
2235
John McCall7f040a92010-12-24 02:08:15 +00002236 attrs.add(AttrFactory.Create(AttrName, AttrLoc, 0, AttrLoc, 0,
2237 SourceLocation(), 0, 0, false, true));
Sean Huntbbd37c62009-11-21 08:43:09 +00002238 AttrParsed = true;
2239 break;
2240 }
2241
2242 // One argument; must be a type-id or assignment-expression
2243 case AttributeList::AT_aligned: {
2244 if (Tok.isNot(tok::l_paren)) {
2245 Diag(Tok.getLocation(), diag::err_cxx0x_attribute_requires_arguments)
2246 << AttrName->getName();
2247 break;
2248 }
2249 SourceLocation ParamLoc = ConsumeParen();
2250
John McCall60d7b3a2010-08-24 06:29:42 +00002251 ExprResult ArgExpr = ParseCXX0XAlignArgument(ParamLoc);
Sean Huntbbd37c62009-11-21 08:43:09 +00002252
2253 MatchRHSPunctuation(tok::r_paren, ParamLoc);
2254
2255 ExprVector ArgExprs(Actions);
2256 ArgExprs.push_back(ArgExpr.release());
John McCall7f040a92010-12-24 02:08:15 +00002257 attrs.add(AttrFactory.Create(AttrName, AttrLoc, 0, AttrLoc,
2258 0, ParamLoc, ArgExprs.take(), 1,
2259 false, true));
Sean Huntbbd37c62009-11-21 08:43:09 +00002260
2261 AttrParsed = true;
2262 break;
2263 }
2264
2265 // Silence warnings
2266 default: break;
2267 }
2268 }
2269
2270 // Skip the entire parameter clause, if any
2271 if (!AttrParsed && Tok.is(tok::l_paren)) {
2272 ConsumeParen();
2273 // SkipUntil maintains the balancedness of tokens.
2274 SkipUntil(tok::r_paren, false);
2275 }
2276 }
2277
2278 if (ExpectAndConsume(tok::r_square, diag::err_expected_rsquare))
2279 SkipUntil(tok::r_square, false);
2280 Loc = Tok.getLocation();
2281 if (ExpectAndConsume(tok::r_square, diag::err_expected_rsquare))
2282 SkipUntil(tok::r_square, false);
2283
John McCall7f040a92010-12-24 02:08:15 +00002284 attrs.Range = SourceRange(StartLoc, Loc);
Sean Huntbbd37c62009-11-21 08:43:09 +00002285}
2286
2287/// ParseCXX0XAlignArgument - Parse the argument to C++0x's [[align]]
2288/// attribute.
2289///
2290/// FIXME: Simply returns an alignof() expression if the argument is a
2291/// type. Ideally, the type should be propagated directly into Sema.
2292///
2293/// [C++0x] 'align' '(' type-id ')'
2294/// [C++0x] 'align' '(' assignment-expression ')'
John McCall60d7b3a2010-08-24 06:29:42 +00002295ExprResult Parser::ParseCXX0XAlignArgument(SourceLocation Start) {
Sean Huntbbd37c62009-11-21 08:43:09 +00002296 if (isTypeIdInParens()) {
John McCallf312b1e2010-08-26 23:41:50 +00002297 EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated);
Sean Huntbbd37c62009-11-21 08:43:09 +00002298 SourceLocation TypeLoc = Tok.getLocation();
John McCallb3d87482010-08-24 05:47:05 +00002299 ParsedType Ty = ParseTypeName().get();
Sean Huntbbd37c62009-11-21 08:43:09 +00002300 SourceRange TypeRange(Start, Tok.getLocation());
John McCallb3d87482010-08-24 05:47:05 +00002301 return Actions.ActOnSizeOfAlignOfExpr(TypeLoc, false, true,
2302 Ty.getAsOpaquePtr(), TypeRange);
Sean Huntbbd37c62009-11-21 08:43:09 +00002303 } else
2304 return ParseConstantExpression();
2305}
Francois Pichet334d47e2010-10-11 12:59:39 +00002306
2307/// ParseMicrosoftAttributes - Parse a Microsoft attribute [Attr]
2308///
2309/// [MS] ms-attribute:
2310/// '[' token-seq ']'
2311///
2312/// [MS] ms-attribute-seq:
2313/// ms-attribute[opt]
2314/// ms-attribute ms-attribute-seq
John McCall7f040a92010-12-24 02:08:15 +00002315void Parser::ParseMicrosoftAttributes(ParsedAttributes &attrs,
2316 SourceLocation *endLoc) {
Francois Pichet334d47e2010-10-11 12:59:39 +00002317 assert(Tok.is(tok::l_square) && "Not a Microsoft attribute list");
2318
2319 while (Tok.is(tok::l_square)) {
2320 ConsumeBracket();
2321 SkipUntil(tok::r_square, true, true);
John McCall7f040a92010-12-24 02:08:15 +00002322 if (endLoc) *endLoc = Tok.getLocation();
Francois Pichet334d47e2010-10-11 12:59:39 +00002323 ExpectAndConsume(tok::r_square, diag::err_expected_rsquare);
2324 }
2325}