blob: 2cd2398157c12fcb268c0ff4cfb83db83970ca15 [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 =
Abramo Bagnaraacba90f2011-03-08 12:38:20 +0000114 Actions.ActOnStartNamespaceDef(getCurScope(), InlineLoc, NamespaceLoc,
115 IdentLoc, Ident, 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(),
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000197 DS.getSourceRange().getBegin(),
Benjamin Kramerd5663812010-05-03 13:08:54 +0000198 Loc, Lang,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +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
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000444 SourceLocation RParenLoc = 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(),
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000451 AssertMessage.take(),
452 RParenLoc);
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000453}
454
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000455/// ParseDecltypeSpecifier - Parse a C++0x decltype specifier.
456///
457/// 'decltype' ( expression )
458///
459void Parser::ParseDecltypeSpecifier(DeclSpec &DS) {
460 assert(Tok.is(tok::kw_decltype) && "Not a decltype specifier");
461
462 SourceLocation StartLoc = ConsumeToken();
463 SourceLocation LParenLoc = Tok.getLocation();
Mike Stump1eb44332009-09-09 15:08:12 +0000464
465 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after,
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000466 "decltype")) {
467 SkipUntil(tok::r_paren);
468 return;
469 }
Mike Stump1eb44332009-09-09 15:08:12 +0000470
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000471 // Parse the expression
Mike Stump1eb44332009-09-09 15:08:12 +0000472
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000473 // C++0x [dcl.type.simple]p4:
474 // The operand of the decltype specifier is an unevaluated operand.
475 EnterExpressionEvaluationContext Unevaluated(Actions,
John McCallf312b1e2010-08-26 23:41:50 +0000476 Sema::Unevaluated);
John McCall60d7b3a2010-08-24 06:29:42 +0000477 ExprResult Result = ParseExpression();
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000478 if (Result.isInvalid()) {
479 SkipUntil(tok::r_paren);
480 return;
481 }
Mike Stump1eb44332009-09-09 15:08:12 +0000482
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000483 // Match the ')'
484 SourceLocation RParenLoc;
485 if (Tok.is(tok::r_paren))
486 RParenLoc = ConsumeParen();
487 else
488 MatchRHSPunctuation(tok::r_paren, LParenLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000489
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000490 if (RParenLoc.isInvalid())
491 return;
492
493 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +0000494 unsigned DiagID;
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000495 // Check for duplicate type specifiers (e.g. "int decltype(a)").
Mike Stump1eb44332009-09-09 15:08:12 +0000496 if (DS.SetTypeSpecType(DeclSpec::TST_decltype, StartLoc, PrevSpec,
John McCallfec54012009-08-03 20:12:06 +0000497 DiagID, Result.release()))
498 Diag(StartLoc, DiagID) << PrevSpec;
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000499}
500
Douglas Gregor42a552f2008-11-05 20:51:48 +0000501/// ParseClassName - Parse a C++ class-name, which names a class. Note
502/// that we only check that the result names a type; semantic analysis
503/// will need to verify that the type names a class. The result is
Douglas Gregor7f43d672009-02-25 23:52:28 +0000504/// either a type or NULL, depending on whether a type name was
Douglas Gregor42a552f2008-11-05 20:51:48 +0000505/// found.
506///
507/// class-name: [C++ 9.1]
508/// identifier
Douglas Gregor7f43d672009-02-25 23:52:28 +0000509/// simple-template-id
Mike Stump1eb44332009-09-09 15:08:12 +0000510///
Douglas Gregor31a19b62009-04-01 21:51:26 +0000511Parser::TypeResult Parser::ParseClassName(SourceLocation &EndLocation,
Douglas Gregor059101f2011-03-02 00:47:37 +0000512 CXXScopeSpec &SS) {
Douglas Gregor7f43d672009-02-25 23:52:28 +0000513 // Check whether we have a template-id that names a type.
514 if (Tok.is(tok::annot_template_id)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000515 TemplateIdAnnotation *TemplateId
Douglas Gregor7f43d672009-02-25 23:52:28 +0000516 = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
Douglas Gregord9b600c2010-01-12 17:52:59 +0000517 if (TemplateId->Kind == TNK_Type_template ||
518 TemplateId->Kind == TNK_Dependent_template_name) {
Douglas Gregor059101f2011-03-02 00:47:37 +0000519 AnnotateTemplateIdTokenAsType();
Douglas Gregor7f43d672009-02-25 23:52:28 +0000520
521 assert(Tok.is(tok::annot_typename) && "template-id -> type failed");
John McCallb3d87482010-08-24 05:47:05 +0000522 ParsedType Type = getTypeAnnotation(Tok);
Douglas Gregor7f43d672009-02-25 23:52:28 +0000523 EndLocation = Tok.getAnnotationEndLoc();
524 ConsumeToken();
Douglas Gregor31a19b62009-04-01 21:51:26 +0000525
526 if (Type)
527 return Type;
528 return true;
Douglas Gregor7f43d672009-02-25 23:52:28 +0000529 }
530
531 // Fall through to produce an error below.
532 }
533
Douglas Gregor42a552f2008-11-05 20:51:48 +0000534 if (Tok.isNot(tok::identifier)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000535 Diag(Tok, diag::err_expected_class_name);
Douglas Gregor31a19b62009-04-01 21:51:26 +0000536 return true;
Douglas Gregor42a552f2008-11-05 20:51:48 +0000537 }
538
Douglas Gregor84d0a192010-01-12 21:28:44 +0000539 IdentifierInfo *Id = Tok.getIdentifierInfo();
540 SourceLocation IdLoc = ConsumeToken();
541
542 if (Tok.is(tok::less)) {
543 // It looks the user intended to write a template-id here, but the
544 // template-name was wrong. Try to fix that.
545 TemplateNameKind TNK = TNK_Type_template;
546 TemplateTy Template;
Douglas Gregor23c94db2010-07-02 17:43:08 +0000547 if (!Actions.DiagnoseUnknownTemplateName(*Id, IdLoc, getCurScope(),
Douglas Gregor059101f2011-03-02 00:47:37 +0000548 &SS, Template, TNK)) {
Douglas Gregor84d0a192010-01-12 21:28:44 +0000549 Diag(IdLoc, diag::err_unknown_template_name)
550 << Id;
551 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000552
Douglas Gregor84d0a192010-01-12 21:28:44 +0000553 if (!Template)
554 return true;
555
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000556 // Form the template name
Douglas Gregor84d0a192010-01-12 21:28:44 +0000557 UnqualifiedId TemplateName;
558 TemplateName.setIdentifier(Id, IdLoc);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000559
Douglas Gregor84d0a192010-01-12 21:28:44 +0000560 // Parse the full template-id, then turn it into a type.
561 if (AnnotateTemplateIdToken(Template, TNK, SS, TemplateName,
562 SourceLocation(), true))
563 return true;
564 if (TNK == TNK_Dependent_template_name)
Douglas Gregor059101f2011-03-02 00:47:37 +0000565 AnnotateTemplateIdTokenAsType();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000566
Douglas Gregor84d0a192010-01-12 21:28:44 +0000567 // If we didn't end up with a typename token, there's nothing more we
568 // can do.
569 if (Tok.isNot(tok::annot_typename))
570 return true;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000571
Douglas Gregor84d0a192010-01-12 21:28:44 +0000572 // Retrieve the type from the annotation token, consume that token, and
573 // return.
574 EndLocation = Tok.getAnnotationEndLoc();
John McCallb3d87482010-08-24 05:47:05 +0000575 ParsedType Type = getTypeAnnotation(Tok);
Douglas Gregor84d0a192010-01-12 21:28:44 +0000576 ConsumeToken();
577 return Type;
578 }
579
Douglas Gregor42a552f2008-11-05 20:51:48 +0000580 // We have an identifier; check whether it is actually a type.
Douglas Gregor059101f2011-03-02 00:47:37 +0000581 ParsedType Type = Actions.getTypeName(*Id, IdLoc, getCurScope(), &SS, true,
Douglas Gregor9e876872011-03-01 18:12:44 +0000582 false, ParsedType(),
583 /*NonTrivialTypeSourceInfo=*/true);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000584 if (!Type) {
Douglas Gregor124b8782010-02-16 19:09:40 +0000585 Diag(IdLoc, diag::err_expected_class_name);
Douglas Gregor31a19b62009-04-01 21:51:26 +0000586 return true;
Douglas Gregor42a552f2008-11-05 20:51:48 +0000587 }
588
589 // Consume the identifier.
Douglas Gregor84d0a192010-01-12 21:28:44 +0000590 EndLocation = IdLoc;
Nick Lewycky56062202010-07-26 16:56:01 +0000591
592 // Fake up a Declarator to use with ActOnTypeName.
593 DeclSpec DS;
594 DS.SetRangeStart(IdLoc);
595 DS.SetRangeEnd(EndLocation);
Douglas Gregor059101f2011-03-02 00:47:37 +0000596 DS.getTypeSpecScope() = SS;
Nick Lewycky56062202010-07-26 16:56:01 +0000597
598 const char *PrevSpec = 0;
599 unsigned DiagID;
600 DS.SetTypeSpecType(TST_typename, IdLoc, PrevSpec, DiagID, Type);
601
602 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
603 return Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
Douglas Gregor42a552f2008-11-05 20:51:48 +0000604}
605
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000606/// ParseClassSpecifier - Parse a C++ class-specifier [C++ class] or
607/// elaborated-type-specifier [C++ dcl.type.elab]; we can't tell which
608/// until we reach the start of a definition or see a token that
Sebastian Redld9bafa72010-02-03 21:21:43 +0000609/// cannot start a definition. If SuppressDeclarations is true, we do know.
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000610///
611/// class-specifier: [C++ class]
612/// class-head '{' member-specification[opt] '}'
613/// class-head '{' member-specification[opt] '}' attributes[opt]
614/// class-head:
615/// class-key identifier[opt] base-clause[opt]
616/// class-key nested-name-specifier identifier base-clause[opt]
617/// class-key nested-name-specifier[opt] simple-template-id
618/// base-clause[opt]
619/// [GNU] class-key attributes[opt] identifier[opt] base-clause[opt]
Mike Stump1eb44332009-09-09 15:08:12 +0000620/// [GNU] class-key attributes[opt] nested-name-specifier
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000621/// identifier base-clause[opt]
Mike Stump1eb44332009-09-09 15:08:12 +0000622/// [GNU] class-key attributes[opt] nested-name-specifier[opt]
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000623/// simple-template-id base-clause[opt]
624/// class-key:
625/// 'class'
626/// 'struct'
627/// 'union'
628///
629/// elaborated-type-specifier: [C++ dcl.type.elab]
Mike Stump1eb44332009-09-09 15:08:12 +0000630/// class-key ::[opt] nested-name-specifier[opt] identifier
631/// class-key ::[opt] nested-name-specifier[opt] 'template'[opt]
632/// simple-template-id
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000633///
634/// Note that the C++ class-specifier and elaborated-type-specifier,
635/// together, subsume the C99 struct-or-union-specifier:
636///
637/// struct-or-union-specifier: [C99 6.7.2.1]
638/// struct-or-union identifier[opt] '{' struct-contents '}'
639/// struct-or-union identifier
640/// [GNU] struct-or-union attributes[opt] identifier[opt] '{' struct-contents
641/// '}' attributes[opt]
642/// [GNU] struct-or-union attributes[opt] identifier
643/// struct-or-union:
644/// 'struct'
645/// 'union'
Chris Lattner4c97d762009-04-12 21:49:30 +0000646void Parser::ParseClassSpecifier(tok::TokenKind TagTokKind,
647 SourceLocation StartLoc, DeclSpec &DS,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000648 const ParsedTemplateInfo &TemplateInfo,
Sebastian Redld9bafa72010-02-03 21:21:43 +0000649 AccessSpecifier AS, bool SuppressDeclarations){
Chris Lattner4c97d762009-04-12 21:49:30 +0000650 DeclSpec::TST TagType;
651 if (TagTokKind == tok::kw_struct)
652 TagType = DeclSpec::TST_struct;
653 else if (TagTokKind == tok::kw_class)
654 TagType = DeclSpec::TST_class;
655 else {
656 assert(TagTokKind == tok::kw_union && "Not a class specifier");
657 TagType = DeclSpec::TST_union;
658 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000659
Douglas Gregor374929f2009-09-18 15:37:17 +0000660 if (Tok.is(tok::code_completion)) {
661 // Code completion for a struct, class, or union name.
Douglas Gregor23c94db2010-07-02 17:43:08 +0000662 Actions.CodeCompleteTag(getCurScope(), TagType);
Douglas Gregordc845342010-05-25 05:58:43 +0000663 ConsumeCodeCompletionToken();
Douglas Gregor374929f2009-09-18 15:37:17 +0000664 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000665
Chandler Carruth926c4b42010-06-28 08:39:25 +0000666 // C++03 [temp.explicit] 14.7.2/8:
667 // The usual access checking rules do not apply to names used to specify
668 // explicit instantiations.
669 //
670 // As an extension we do not perform access checking on the names used to
671 // specify explicit specializations either. This is important to allow
672 // specializing traits classes for private types.
673 bool SuppressingAccessChecks = false;
674 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation ||
675 TemplateInfo.Kind == ParsedTemplateInfo::ExplicitSpecialization) {
676 Actions.ActOnStartSuppressingAccessChecks();
677 SuppressingAccessChecks = true;
678 }
679
John McCall7f040a92010-12-24 02:08:15 +0000680 ParsedAttributes attrs;
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000681 // If attributes exist after tag, parse them.
682 if (Tok.is(tok::kw___attribute))
John McCall7f040a92010-12-24 02:08:15 +0000683 ParseGNUAttributes(attrs);
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000684
Steve Narofff59e17e2008-12-24 20:59:21 +0000685 // If declspecs exist after tag, parse them.
John McCallb1d397c2010-08-05 17:13:11 +0000686 while (Tok.is(tok::kw___declspec))
John McCall7f040a92010-12-24 02:08:15 +0000687 ParseMicrosoftDeclSpec(attrs);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000688
Sean Huntbbd37c62009-11-21 08:43:09 +0000689 // If C++0x attributes exist here, parse them.
690 // FIXME: Are we consistent with the ordering of parsing of different
691 // styles of attributes?
John McCall7f040a92010-12-24 02:08:15 +0000692 MaybeParseCXX0XAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +0000693
Douglas Gregorb117a602009-09-04 05:53:02 +0000694 if (TagType == DeclSpec::TST_struct && Tok.is(tok::kw___is_pod)) {
695 // GNU libstdc++ 4.2 uses __is_pod as the name of a struct template, but
696 // __is_pod is a keyword in GCC >= 4.3. Therefore, when we see the
Mike Stump1eb44332009-09-09 15:08:12 +0000697 // token sequence "struct __is_pod", make __is_pod into a normal
Douglas Gregorb117a602009-09-04 05:53:02 +0000698 // identifier rather than a keyword, to allow libstdc++ 4.2 to work
699 // properly.
Argyrios Kyrtzidis646395b2010-08-11 22:55:12 +0000700 Tok.getIdentifierInfo()->RevertTokenIDToIdentifier();
Douglas Gregorb117a602009-09-04 05:53:02 +0000701 Tok.setKind(tok::identifier);
702 }
703
704 if (TagType == DeclSpec::TST_struct && Tok.is(tok::kw___is_empty)) {
705 // GNU libstdc++ 4.2 uses __is_empty as the name of a struct template, but
706 // __is_empty is a keyword in GCC >= 4.3. Therefore, when we see the
Mike Stump1eb44332009-09-09 15:08:12 +0000707 // token sequence "struct __is_empty", make __is_empty into a normal
Douglas Gregorb117a602009-09-04 05:53:02 +0000708 // identifier rather than a keyword, to allow libstdc++ 4.2 to work
709 // properly.
Argyrios Kyrtzidis646395b2010-08-11 22:55:12 +0000710 Tok.getIdentifierInfo()->RevertTokenIDToIdentifier();
Douglas Gregorb117a602009-09-04 05:53:02 +0000711 Tok.setKind(tok::identifier);
712 }
Mike Stump1eb44332009-09-09 15:08:12 +0000713
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000714 // Parse the (optional) nested-name-specifier.
John McCallaa87d332009-12-12 11:40:51 +0000715 CXXScopeSpec &SS = DS.getTypeSpecScope();
Chris Lattner08d92ec2009-12-10 00:32:41 +0000716 if (getLang().CPlusPlus) {
717 // "FOO : BAR" is not a potential typo for "FOO::BAR".
718 ColonProtectionRAIIObject X(*this);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000719
John McCallb3d87482010-08-24 05:47:05 +0000720 if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(), true))
John McCall207014e2010-07-30 06:26:29 +0000721 DS.SetTypeSpecError();
John McCall9ba61662010-02-26 08:45:28 +0000722 if (SS.isSet())
Chris Lattner08d92ec2009-12-10 00:32:41 +0000723 if (Tok.isNot(tok::identifier) && Tok.isNot(tok::annot_template_id))
724 Diag(Tok, diag::err_expected_ident);
725 }
Douglas Gregorcc636682009-02-17 23:15:12 +0000726
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000727 TemplateParameterLists *TemplateParams = TemplateInfo.TemplateParams;
728
Douglas Gregorcc636682009-02-17 23:15:12 +0000729 // Parse the (optional) class name or simple-template-id.
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000730 IdentifierInfo *Name = 0;
731 SourceLocation NameLoc;
Douglas Gregor39a8de12009-02-25 19:37:18 +0000732 TemplateIdAnnotation *TemplateId = 0;
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000733 if (Tok.is(tok::identifier)) {
734 Name = Tok.getIdentifierInfo();
735 NameLoc = ConsumeToken();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000736
Douglas Gregor5ee37342010-05-30 22:30:21 +0000737 if (Tok.is(tok::less) && getLang().CPlusPlus) {
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000738 // The name was supposed to refer to a template, but didn't.
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000739 // Eat the template argument list and try to continue parsing this as
740 // a class (or template thereof).
741 TemplateArgList TemplateArgs;
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000742 SourceLocation LAngleLoc, RAngleLoc;
Douglas Gregor059101f2011-03-02 00:47:37 +0000743 if (ParseTemplateIdAfterTemplateName(TemplateTy(), NameLoc, SS,
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000744 true, LAngleLoc,
Douglas Gregor314b97f2009-11-10 19:49:08 +0000745 TemplateArgs, RAngleLoc)) {
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000746 // We couldn't parse the template argument list at all, so don't
747 // try to give any location information for the list.
748 LAngleLoc = RAngleLoc = SourceLocation();
749 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000750
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000751 Diag(NameLoc, diag::err_explicit_spec_non_template)
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000752 << (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation)
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000753 << (TagType == DeclSpec::TST_class? 0
754 : TagType == DeclSpec::TST_struct? 1
755 : 2)
756 << Name
757 << SourceRange(LAngleLoc, RAngleLoc);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000758
759 // Strip off the last template parameter list if it was empty, since
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000760 // we've removed its template argument list.
761 if (TemplateParams && TemplateInfo.LastParameterListWasEmpty) {
762 if (TemplateParams && TemplateParams->size() > 1) {
763 TemplateParams->pop_back();
764 } else {
765 TemplateParams = 0;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000766 const_cast<ParsedTemplateInfo&>(TemplateInfo).Kind
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000767 = ParsedTemplateInfo::NonTemplate;
768 }
769 } else if (TemplateInfo.Kind
770 == ParsedTemplateInfo::ExplicitInstantiation) {
771 // Pretend this is just a forward declaration.
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000772 TemplateParams = 0;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000773 const_cast<ParsedTemplateInfo&>(TemplateInfo).Kind
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000774 = ParsedTemplateInfo::NonTemplate;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000775 const_cast<ParsedTemplateInfo&>(TemplateInfo).TemplateLoc
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000776 = SourceLocation();
777 const_cast<ParsedTemplateInfo&>(TemplateInfo).ExternLoc
778 = SourceLocation();
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000779 }
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000780 }
Douglas Gregor39a8de12009-02-25 19:37:18 +0000781 } else if (Tok.is(tok::annot_template_id)) {
782 TemplateId = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
783 NameLoc = ConsumeToken();
Douglas Gregorcc636682009-02-17 23:15:12 +0000784
Douglas Gregor059101f2011-03-02 00:47:37 +0000785 if (TemplateId->Kind != TNK_Type_template &&
786 TemplateId->Kind != TNK_Dependent_template_name) {
Douglas Gregor39a8de12009-02-25 19:37:18 +0000787 // The template-name in the simple-template-id refers to
788 // something other than a class template. Give an appropriate
789 // error message and skip to the ';'.
790 SourceRange Range(NameLoc);
791 if (SS.isNotEmpty())
792 Range.setBegin(SS.getBeginLoc());
Douglas Gregorcc636682009-02-17 23:15:12 +0000793
Douglas Gregor39a8de12009-02-25 19:37:18 +0000794 Diag(TemplateId->LAngleLoc, diag::err_template_spec_syntax_non_template)
795 << Name << static_cast<int>(TemplateId->Kind) << Range;
Mike Stump1eb44332009-09-09 15:08:12 +0000796
Douglas Gregor39a8de12009-02-25 19:37:18 +0000797 DS.SetTypeSpecError();
798 SkipUntil(tok::semi, false, true);
799 TemplateId->Destroy();
Chandler Carruth926c4b42010-06-28 08:39:25 +0000800 if (SuppressingAccessChecks)
801 Actions.ActOnStopSuppressingAccessChecks();
802
Douglas Gregor39a8de12009-02-25 19:37:18 +0000803 return;
Douglas Gregorcc636682009-02-17 23:15:12 +0000804 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000805 }
806
Chandler Carruth926c4b42010-06-28 08:39:25 +0000807 // As soon as we're finished parsing the class's template-id, turn access
808 // checking back on.
809 if (SuppressingAccessChecks)
810 Actions.ActOnStopSuppressingAccessChecks();
811
John McCall67d1a672009-08-06 02:15:43 +0000812 // There are four options here. If we have 'struct foo;', then this
813 // is either a forward declaration or a friend declaration, which
Anders Carlssoncc54d592011-01-22 16:56:46 +0000814 // have to be treated differently. If we have 'struct foo {...',
815 // 'struct foo :...' or 'struct foo <class-virt-specifier>' then this is a
816 // definition. Otherwise we have something like 'struct foo xyz', a reference.
Sebastian Redld9bafa72010-02-03 21:21:43 +0000817 // However, in some contexts, things look like declarations but are just
818 // references, e.g.
819 // new struct s;
820 // or
821 // &T::operator struct s;
822 // For these, SuppressDeclarations is true.
John McCallf312b1e2010-08-26 23:41:50 +0000823 Sema::TagUseKind TUK;
Sebastian Redld9bafa72010-02-03 21:21:43 +0000824 if (SuppressDeclarations)
John McCallf312b1e2010-08-26 23:41:50 +0000825 TUK = Sema::TUK_Reference;
Anders Carlssoncc54d592011-01-22 16:56:46 +0000826 else if (Tok.is(tok::l_brace) ||
827 (getLang().CPlusPlus && Tok.is(tok::colon)) ||
828 isCXX0XClassVirtSpecifier() != ClassVirtSpecifiers::CVS_None) {
Douglas Gregord85bea22009-09-26 06:47:28 +0000829 if (DS.isFriendSpecified()) {
830 // C++ [class.friend]p2:
831 // A class shall not be defined in a friend declaration.
832 Diag(Tok.getLocation(), diag::err_friend_decl_defines_class)
833 << SourceRange(DS.getFriendSpecLoc());
834
835 // Skip everything up to the semicolon, so that this looks like a proper
836 // friend class (or template thereof) declaration.
837 SkipUntil(tok::semi, true, true);
John McCallf312b1e2010-08-26 23:41:50 +0000838 TUK = Sema::TUK_Friend;
Douglas Gregord85bea22009-09-26 06:47:28 +0000839 } else {
840 // Okay, this is a class definition.
John McCallf312b1e2010-08-26 23:41:50 +0000841 TUK = Sema::TUK_Definition;
Douglas Gregord85bea22009-09-26 06:47:28 +0000842 }
843 } else if (Tok.is(tok::semi))
John McCallf312b1e2010-08-26 23:41:50 +0000844 TUK = DS.isFriendSpecified() ? Sema::TUK_Friend : Sema::TUK_Declaration;
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000845 else
John McCallf312b1e2010-08-26 23:41:50 +0000846 TUK = Sema::TUK_Reference;
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000847
John McCall207014e2010-07-30 06:26:29 +0000848 if (!Name && !TemplateId && (DS.getTypeSpecType() == DeclSpec::TST_error ||
John McCallf312b1e2010-08-26 23:41:50 +0000849 TUK != Sema::TUK_Definition)) {
John McCall207014e2010-07-30 06:26:29 +0000850 if (DS.getTypeSpecType() != DeclSpec::TST_error) {
851 // We have a declaration or reference to an anonymous class.
852 Diag(StartLoc, diag::err_anon_type_definition)
853 << DeclSpec::getSpecifierName(TagType);
854 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000855
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000856 SkipUntil(tok::comma, true);
Douglas Gregor39a8de12009-02-25 19:37:18 +0000857
858 if (TemplateId)
859 TemplateId->Destroy();
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000860 return;
861 }
862
Douglas Gregorddc29e12009-02-06 22:42:48 +0000863 // Create the tag portion of the class or class template.
John McCalld226f652010-08-21 09:40:31 +0000864 DeclResult TagOrTempResult = true; // invalid
865 TypeResult TypeResult = true; // invalid
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000866
Douglas Gregor402abb52009-05-28 23:31:59 +0000867 bool Owned = false;
John McCallf1bbbb42009-09-04 01:14:41 +0000868 if (TemplateId) {
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000869 // Explicit specialization, class template partial specialization,
870 // or explicit instantiation.
Mike Stump1eb44332009-09-09 15:08:12 +0000871 ASTTemplateArgsPtr TemplateArgsPtr(Actions,
Douglas Gregor39a8de12009-02-25 19:37:18 +0000872 TemplateId->getTemplateArgs(),
Douglas Gregor39a8de12009-02-25 19:37:18 +0000873 TemplateId->NumArgs);
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000874 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallf312b1e2010-08-26 23:41:50 +0000875 TUK == Sema::TUK_Declaration) {
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000876 // This is an explicit instantiation of a class template.
877 TagOrTempResult
Douglas Gregor23c94db2010-07-02 17:43:08 +0000878 = Actions.ActOnExplicitInstantiation(getCurScope(),
Douglas Gregor45f96552009-09-04 06:33:52 +0000879 TemplateInfo.ExternLoc,
Mike Stump1eb44332009-09-09 15:08:12 +0000880 TemplateInfo.TemplateLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000881 TagType,
Mike Stump1eb44332009-09-09 15:08:12 +0000882 StartLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000883 SS,
John McCall2b5289b2010-08-23 07:28:44 +0000884 TemplateId->Template,
Mike Stump1eb44332009-09-09 15:08:12 +0000885 TemplateId->TemplateNameLoc,
886 TemplateId->LAngleLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000887 TemplateArgsPtr,
Mike Stump1eb44332009-09-09 15:08:12 +0000888 TemplateId->RAngleLoc,
John McCall7f040a92010-12-24 02:08:15 +0000889 attrs.getList());
John McCall74256f52010-04-14 00:24:33 +0000890
891 // Friend template-ids are treated as references unless
892 // they have template headers, in which case they're ill-formed
893 // (FIXME: "template <class T> friend class A<T>::B<int>;").
894 // We diagnose this error in ActOnClassTemplateSpecialization.
John McCallf312b1e2010-08-26 23:41:50 +0000895 } else if (TUK == Sema::TUK_Reference ||
896 (TUK == Sema::TUK_Friend &&
John McCall74256f52010-04-14 00:24:33 +0000897 TemplateInfo.Kind == ParsedTemplateInfo::NonTemplate)) {
Douglas Gregor059101f2011-03-02 00:47:37 +0000898 TypeResult = Actions.ActOnTagTemplateIdType(TUK, TagType,
899 StartLoc,
900 TemplateId->SS,
901 TemplateId->Template,
902 TemplateId->TemplateNameLoc,
903 TemplateId->LAngleLoc,
904 TemplateArgsPtr,
905 TemplateId->RAngleLoc);
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000906 } else {
907 // This is an explicit specialization or a class template
908 // partial specialization.
909 TemplateParameterLists FakedParamLists;
910
911 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation) {
912 // This looks like an explicit instantiation, because we have
913 // something like
914 //
915 // template class Foo<X>
916 //
Douglas Gregor3f5b61c2009-05-14 00:28:11 +0000917 // but it actually has a definition. Most likely, this was
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000918 // meant to be an explicit specialization, but the user forgot
919 // the '<>' after 'template'.
John McCallf312b1e2010-08-26 23:41:50 +0000920 assert(TUK == Sema::TUK_Definition && "Expected a definition here");
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000921
Mike Stump1eb44332009-09-09 15:08:12 +0000922 SourceLocation LAngleLoc
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000923 = PP.getLocForEndOfToken(TemplateInfo.TemplateLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000924 Diag(TemplateId->TemplateNameLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000925 diag::err_explicit_instantiation_with_definition)
926 << SourceRange(TemplateInfo.TemplateLoc)
Douglas Gregor849b2432010-03-31 17:46:05 +0000927 << FixItHint::CreateInsertion(LAngleLoc, "<>");
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000928
929 // Create a fake template parameter list that contains only
930 // "template<>", so that we treat this construct as a class
931 // template specialization.
932 FakedParamLists.push_back(
Mike Stump1eb44332009-09-09 15:08:12 +0000933 Actions.ActOnTemplateParameterList(0, SourceLocation(),
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000934 TemplateInfo.TemplateLoc,
Mike Stump1eb44332009-09-09 15:08:12 +0000935 LAngleLoc,
936 0, 0,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000937 LAngleLoc));
938 TemplateParams = &FakedParamLists;
939 }
940
941 // Build the class template specialization.
942 TagOrTempResult
Douglas Gregor23c94db2010-07-02 17:43:08 +0000943 = Actions.ActOnClassTemplateSpecialization(getCurScope(), TagType, TUK,
Douglas Gregor39a8de12009-02-25 19:37:18 +0000944 StartLoc, SS,
John McCall2b5289b2010-08-23 07:28:44 +0000945 TemplateId->Template,
Mike Stump1eb44332009-09-09 15:08:12 +0000946 TemplateId->TemplateNameLoc,
947 TemplateId->LAngleLoc,
Douglas Gregor39a8de12009-02-25 19:37:18 +0000948 TemplateArgsPtr,
Mike Stump1eb44332009-09-09 15:08:12 +0000949 TemplateId->RAngleLoc,
John McCall7f040a92010-12-24 02:08:15 +0000950 attrs.getList(),
John McCallf312b1e2010-08-26 23:41:50 +0000951 MultiTemplateParamsArg(Actions,
Douglas Gregorcc636682009-02-17 23:15:12 +0000952 TemplateParams? &(*TemplateParams)[0] : 0,
953 TemplateParams? TemplateParams->size() : 0));
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000954 }
Douglas Gregor39a8de12009-02-25 19:37:18 +0000955 TemplateId->Destroy();
Douglas Gregor3f5b61c2009-05-14 00:28:11 +0000956 } else if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallf312b1e2010-08-26 23:41:50 +0000957 TUK == Sema::TUK_Declaration) {
Douglas Gregor3f5b61c2009-05-14 00:28:11 +0000958 // Explicit instantiation of a member of a class template
959 // specialization, e.g.,
960 //
961 // template struct Outer<int>::Inner;
962 //
963 TagOrTempResult
Douglas Gregor23c94db2010-07-02 17:43:08 +0000964 = Actions.ActOnExplicitInstantiation(getCurScope(),
Douglas Gregor45f96552009-09-04 06:33:52 +0000965 TemplateInfo.ExternLoc,
Mike Stump1eb44332009-09-09 15:08:12 +0000966 TemplateInfo.TemplateLoc,
967 TagType, StartLoc, SS, Name,
John McCall7f040a92010-12-24 02:08:15 +0000968 NameLoc, attrs.getList());
John McCall9a34edb2010-10-19 01:40:49 +0000969 } else if (TUK == Sema::TUK_Friend &&
970 TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate) {
971 TagOrTempResult =
972 Actions.ActOnTemplatedFriendTag(getCurScope(), DS.getFriendSpecLoc(),
973 TagType, StartLoc, SS,
John McCall7f040a92010-12-24 02:08:15 +0000974 Name, NameLoc, attrs.getList(),
John McCall9a34edb2010-10-19 01:40:49 +0000975 MultiTemplateParamsArg(Actions,
976 TemplateParams? &(*TemplateParams)[0] : 0,
977 TemplateParams? TemplateParams->size() : 0));
Douglas Gregor3f5b61c2009-05-14 00:28:11 +0000978 } else {
979 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallf312b1e2010-08-26 23:41:50 +0000980 TUK == Sema::TUK_Definition) {
Douglas Gregor3f5b61c2009-05-14 00:28:11 +0000981 // FIXME: Diagnose this particular error.
982 }
983
John McCallc4e70192009-09-11 04:59:25 +0000984 bool IsDependent = false;
985
John McCalla25c4082010-10-19 18:40:57 +0000986 // Don't pass down template parameter lists if this is just a tag
987 // reference. For example, we don't need the template parameters here:
988 // template <class T> class A *makeA(T t);
989 MultiTemplateParamsArg TParams;
990 if (TUK != Sema::TUK_Reference && TemplateParams)
991 TParams =
992 MultiTemplateParamsArg(&(*TemplateParams)[0], TemplateParams->size());
993
Douglas Gregor3f5b61c2009-05-14 00:28:11 +0000994 // Declaration or definition of a class type
John McCall9a34edb2010-10-19 01:40:49 +0000995 TagOrTempResult = Actions.ActOnTag(getCurScope(), TagType, TUK, StartLoc,
John McCall7f040a92010-12-24 02:08:15 +0000996 SS, Name, NameLoc, attrs.getList(), AS,
John McCalla25c4082010-10-19 18:40:57 +0000997 TParams, Owned, IsDependent, false,
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +0000998 false, clang::TypeResult());
John McCallc4e70192009-09-11 04:59:25 +0000999
1000 // If ActOnTag said the type was dependent, try again with the
1001 // less common call.
John McCall9a34edb2010-10-19 01:40:49 +00001002 if (IsDependent) {
1003 assert(TUK == Sema::TUK_Reference || TUK == Sema::TUK_Friend);
Douglas Gregor23c94db2010-07-02 17:43:08 +00001004 TypeResult = Actions.ActOnDependentTag(getCurScope(), TagType, TUK,
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001005 SS, Name, StartLoc, NameLoc);
John McCall9a34edb2010-10-19 01:40:49 +00001006 }
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001007 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001008
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001009 // If there is a body, parse it and inform the actions module.
John McCallf312b1e2010-08-26 23:41:50 +00001010 if (TUK == Sema::TUK_Definition) {
John McCallbd0dfa52009-12-19 21:48:58 +00001011 assert(Tok.is(tok::l_brace) ||
Anders Carlssoncc54d592011-01-22 16:56:46 +00001012 (getLang().CPlusPlus && Tok.is(tok::colon)) ||
1013 isCXX0XClassVirtSpecifier() != ClassVirtSpecifiers::CVS_None);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001014 if (getLang().CPlusPlus)
Douglas Gregor212e81c2009-03-25 00:13:59 +00001015 ParseCXXMemberSpecification(StartLoc, TagType, TagOrTempResult.get());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001016 else
Douglas Gregor212e81c2009-03-25 00:13:59 +00001017 ParseStructUnionBody(StartLoc, TagType, TagOrTempResult.get());
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001018 }
1019
John McCallb3d87482010-08-24 05:47:05 +00001020 // FIXME: The DeclSpec should keep the locations of both the keyword and the
1021 // name (if there is one).
1022 SourceLocation TSTLoc = NameLoc.isValid()? NameLoc : StartLoc;
1023
1024 const char *PrevSpec = 0;
1025 unsigned DiagID;
1026 bool Result;
John McCallc4e70192009-09-11 04:59:25 +00001027 if (!TypeResult.isInvalid()) {
John McCallb3d87482010-08-24 05:47:05 +00001028 Result = DS.SetTypeSpecType(DeclSpec::TST_typename, TSTLoc,
1029 PrevSpec, DiagID, TypeResult.get());
John McCallc4e70192009-09-11 04:59:25 +00001030 } else if (!TagOrTempResult.isInvalid()) {
John McCallb3d87482010-08-24 05:47:05 +00001031 Result = DS.SetTypeSpecType(TagType, TSTLoc, PrevSpec, DiagID,
1032 TagOrTempResult.get(), Owned);
John McCallc4e70192009-09-11 04:59:25 +00001033 } else {
Douglas Gregorddc29e12009-02-06 22:42:48 +00001034 DS.SetTypeSpecError();
Anders Carlsson66e99772009-05-11 22:27:47 +00001035 return;
1036 }
Mike Stump1eb44332009-09-09 15:08:12 +00001037
John McCallb3d87482010-08-24 05:47:05 +00001038 if (Result)
John McCallfec54012009-08-03 20:12:06 +00001039 Diag(StartLoc, DiagID) << PrevSpec;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001040
Chris Lattner4ed5d912010-02-02 01:23:29 +00001041 // At this point, we've successfully parsed a class-specifier in 'definition'
1042 // form (e.g. "struct foo { int x; }". While we could just return here, we're
1043 // going to look at what comes after it to improve error recovery. If an
1044 // impossible token occurs next, we assume that the programmer forgot a ; at
1045 // the end of the declaration and recover that way.
1046 //
1047 // This switch enumerates the valid "follow" set for definition.
John McCallf312b1e2010-08-26 23:41:50 +00001048 if (TUK == Sema::TUK_Definition) {
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001049 bool ExpectedSemi = true;
Chris Lattner4ed5d912010-02-02 01:23:29 +00001050 switch (Tok.getKind()) {
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001051 default: break;
Chris Lattner4ed5d912010-02-02 01:23:29 +00001052 case tok::semi: // struct foo {...} ;
Chris Lattner99c95202010-02-02 17:32:27 +00001053 case tok::star: // struct foo {...} * P;
1054 case tok::amp: // struct foo {...} & R = ...
1055 case tok::identifier: // struct foo {...} V ;
1056 case tok::r_paren: //(struct foo {...} ) {4}
1057 case tok::annot_cxxscope: // struct foo {...} a:: b;
1058 case tok::annot_typename: // struct foo {...} a ::b;
1059 case tok::annot_template_id: // struct foo {...} a<int> ::b;
Chris Lattnerc2e1c1a2010-02-03 20:41:24 +00001060 case tok::l_paren: // struct foo {...} ( x);
Chris Lattner16acfee2010-02-03 01:45:03 +00001061 case tok::comma: // __builtin_offsetof(struct foo{...} ,
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001062 ExpectedSemi = false;
1063 break;
1064 // Type qualifiers
1065 case tok::kw_const: // struct foo {...} const x;
1066 case tok::kw_volatile: // struct foo {...} volatile x;
1067 case tok::kw_restrict: // struct foo {...} restrict x;
1068 case tok::kw_inline: // struct foo {...} inline foo() {};
Chris Lattner99c95202010-02-02 17:32:27 +00001069 // Storage-class specifiers
1070 case tok::kw_static: // struct foo {...} static x;
1071 case tok::kw_extern: // struct foo {...} extern x;
1072 case tok::kw_typedef: // struct foo {...} typedef x;
1073 case tok::kw_register: // struct foo {...} register x;
1074 case tok::kw_auto: // struct foo {...} auto x;
Douglas Gregor33f99242010-05-17 18:19:56 +00001075 case tok::kw_mutable: // struct foo {...} mutable x;
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001076 // As shown above, type qualifiers and storage class specifiers absolutely
1077 // can occur after class specifiers according to the grammar. However,
1078 // almost noone actually writes code like this. If we see one of these,
1079 // it is much more likely that someone missed a semi colon and the
1080 // type/storage class specifier we're seeing is part of the *next*
1081 // intended declaration, as in:
1082 //
1083 // struct foo { ... }
1084 // typedef int X;
1085 //
1086 // We'd really like to emit a missing semicolon error instead of emitting
1087 // an error on the 'int' saying that you can't have two type specifiers in
1088 // the same declaration of X. Because of this, we look ahead past this
1089 // token to see if it's a type specifier. If so, we know the code is
1090 // otherwise invalid, so we can produce the expected semi error.
1091 if (!isKnownToBeTypeSpecifier(NextToken()))
1092 ExpectedSemi = false;
Chris Lattner4ed5d912010-02-02 01:23:29 +00001093 break;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001094
1095 case tok::r_brace: // struct bar { struct foo {...} }
Chris Lattner4ed5d912010-02-02 01:23:29 +00001096 // Missing ';' at end of struct is accepted as an extension in C mode.
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001097 if (!getLang().CPlusPlus)
1098 ExpectedSemi = false;
1099 break;
1100 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001101
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001102 if (ExpectedSemi) {
Chris Lattner4ed5d912010-02-02 01:23:29 +00001103 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_tagdecl,
1104 TagType == DeclSpec::TST_class ? "class"
1105 : TagType == DeclSpec::TST_struct? "struct" : "union");
1106 // Push this token back into the preprocessor and change our current token
1107 // to ';' so that the rest of the code recovers as though there were an
1108 // ';' after the definition.
1109 PP.EnterToken(Tok);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001110 Tok.setKind(tok::semi);
Chris Lattner4ed5d912010-02-02 01:23:29 +00001111 }
1112 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001113}
1114
Mike Stump1eb44332009-09-09 15:08:12 +00001115/// ParseBaseClause - Parse the base-clause of a C++ class [C++ class.derived].
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001116///
1117/// base-clause : [C++ class.derived]
1118/// ':' base-specifier-list
1119/// base-specifier-list:
1120/// base-specifier '...'[opt]
1121/// base-specifier-list ',' base-specifier '...'[opt]
John McCalld226f652010-08-21 09:40:31 +00001122void Parser::ParseBaseClause(Decl *ClassDecl) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001123 assert(Tok.is(tok::colon) && "Not a base clause");
1124 ConsumeToken();
1125
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001126 // Build up an array of parsed base specifiers.
John McCallca0408f2010-08-23 06:44:23 +00001127 llvm::SmallVector<CXXBaseSpecifier *, 8> BaseInfo;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001128
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001129 while (true) {
1130 // Parse a base-specifier.
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001131 BaseResult Result = ParseBaseSpecifier(ClassDecl);
Douglas Gregor5ac8aff2009-01-26 22:44:13 +00001132 if (Result.isInvalid()) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001133 // Skip the rest of this base specifier, up until the comma or
1134 // opening brace.
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001135 SkipUntil(tok::comma, tok::l_brace, true, true);
1136 } else {
1137 // Add this to our array of base specifiers.
Douglas Gregor5ac8aff2009-01-26 22:44:13 +00001138 BaseInfo.push_back(Result.get());
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001139 }
1140
1141 // If the next token is a comma, consume it and keep reading
1142 // base-specifiers.
1143 if (Tok.isNot(tok::comma)) break;
Mike Stump1eb44332009-09-09 15:08:12 +00001144
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001145 // Consume the comma.
1146 ConsumeToken();
1147 }
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001148
1149 // Attach the base specifiers
Jay Foadbeaaccd2009-05-21 09:52:38 +00001150 Actions.ActOnBaseSpecifiers(ClassDecl, BaseInfo.data(), BaseInfo.size());
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001151}
1152
1153/// ParseBaseSpecifier - Parse a C++ base-specifier. A base-specifier is
1154/// one entry in the base class list of a class specifier, for example:
1155/// class foo : public bar, virtual private baz {
1156/// 'public bar' and 'virtual private baz' are each base-specifiers.
1157///
1158/// base-specifier: [C++ class.derived]
1159/// ::[opt] nested-name-specifier[opt] class-name
1160/// 'virtual' access-specifier[opt] ::[opt] nested-name-specifier[opt]
1161/// class-name
1162/// access-specifier 'virtual'[opt] ::[opt] nested-name-specifier[opt]
1163/// class-name
John McCalld226f652010-08-21 09:40:31 +00001164Parser::BaseResult Parser::ParseBaseSpecifier(Decl *ClassDecl) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001165 bool IsVirtual = false;
1166 SourceLocation StartLoc = Tok.getLocation();
1167
1168 // Parse the 'virtual' keyword.
1169 if (Tok.is(tok::kw_virtual)) {
1170 ConsumeToken();
1171 IsVirtual = true;
1172 }
1173
1174 // Parse an (optional) access specifier.
1175 AccessSpecifier Access = getAccessSpecifierIfPresent();
John McCall92f88312010-01-23 00:46:32 +00001176 if (Access != AS_none)
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001177 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001178
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001179 // Parse the 'virtual' keyword (again!), in case it came after the
1180 // access specifier.
1181 if (Tok.is(tok::kw_virtual)) {
1182 SourceLocation VirtualLoc = ConsumeToken();
1183 if (IsVirtual) {
1184 // Complain about duplicate 'virtual'
Chris Lattner1ab3b962008-11-18 07:48:38 +00001185 Diag(VirtualLoc, diag::err_dup_virtual)
Douglas Gregor849b2432010-03-31 17:46:05 +00001186 << FixItHint::CreateRemoval(VirtualLoc);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001187 }
1188
1189 IsVirtual = true;
1190 }
1191
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001192 // Parse optional '::' and optional nested-name-specifier.
1193 CXXScopeSpec SS;
John McCallb3d87482010-08-24 05:47:05 +00001194 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), /*EnteringContext=*/false);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001195
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001196 // The location of the base class itself.
1197 SourceLocation BaseLoc = Tok.getLocation();
Douglas Gregor42a552f2008-11-05 20:51:48 +00001198
1199 // Parse the class-name.
Douglas Gregor7f43d672009-02-25 23:52:28 +00001200 SourceLocation EndLocation;
Douglas Gregor059101f2011-03-02 00:47:37 +00001201 TypeResult BaseType = ParseClassName(EndLocation, SS);
Douglas Gregor31a19b62009-04-01 21:51:26 +00001202 if (BaseType.isInvalid())
Douglas Gregor42a552f2008-11-05 20:51:48 +00001203 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001204
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001205 // Parse the optional ellipsis (for a pack expansion). The ellipsis is
1206 // actually part of the base-specifier-list grammar productions, but we
1207 // parse it here for convenience.
1208 SourceLocation EllipsisLoc;
1209 if (Tok.is(tok::ellipsis))
1210 EllipsisLoc = ConsumeToken();
1211
Mike Stump1eb44332009-09-09 15:08:12 +00001212 // Find the complete source range for the base-specifier.
Douglas Gregor7f43d672009-02-25 23:52:28 +00001213 SourceRange Range(StartLoc, EndLocation);
Mike Stump1eb44332009-09-09 15:08:12 +00001214
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001215 // Notify semantic analysis that we have parsed a complete
1216 // base-specifier.
Sebastian Redla55e52c2008-11-25 22:21:31 +00001217 return Actions.ActOnBaseSpecifier(ClassDecl, Range, IsVirtual, Access,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001218 BaseType.get(), BaseLoc, EllipsisLoc);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001219}
1220
1221/// getAccessSpecifierIfPresent - Determine whether the next token is
1222/// a C++ access-specifier.
1223///
1224/// access-specifier: [C++ class.derived]
1225/// 'private'
1226/// 'protected'
1227/// 'public'
Mike Stump1eb44332009-09-09 15:08:12 +00001228AccessSpecifier Parser::getAccessSpecifierIfPresent() const {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001229 switch (Tok.getKind()) {
1230 default: return AS_none;
1231 case tok::kw_private: return AS_private;
1232 case tok::kw_protected: return AS_protected;
1233 case tok::kw_public: return AS_public;
1234 }
1235}
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001236
Eli Friedmand33133c2009-07-22 21:45:50 +00001237void Parser::HandleMemberFunctionDefaultArgs(Declarator& DeclaratorInfo,
John McCalld226f652010-08-21 09:40:31 +00001238 Decl *ThisDecl) {
Eli Friedmand33133c2009-07-22 21:45:50 +00001239 // We just declared a member function. If this member function
1240 // has any default arguments, we'll need to parse them later.
1241 LateParsedMethodDeclaration *LateMethod = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001242 DeclaratorChunk::FunctionTypeInfo &FTI
Abramo Bagnara075f8f12010-12-10 16:29:40 +00001243 = DeclaratorInfo.getFunctionTypeInfo();
Eli Friedmand33133c2009-07-22 21:45:50 +00001244 for (unsigned ParamIdx = 0; ParamIdx < FTI.NumArgs; ++ParamIdx) {
1245 if (LateMethod || FTI.ArgInfo[ParamIdx].DefaultArgTokens) {
1246 if (!LateMethod) {
1247 // Push this method onto the stack of late-parsed method
1248 // declarations.
Douglas Gregord54eb442010-10-12 16:25:54 +00001249 LateMethod = new LateParsedMethodDeclaration(this, ThisDecl);
1250 getCurrentClass().LateParsedDeclarations.push_back(LateMethod);
Douglas Gregor23c94db2010-07-02 17:43:08 +00001251 LateMethod->TemplateScope = getCurScope()->isTemplateParamScope();
Eli Friedmand33133c2009-07-22 21:45:50 +00001252
1253 // Add all of the parameters prior to this one (they don't
1254 // have default arguments).
1255 LateMethod->DefaultArgs.reserve(FTI.NumArgs);
1256 for (unsigned I = 0; I < ParamIdx; ++I)
1257 LateMethod->DefaultArgs.push_back(
Douglas Gregor8f8210c2010-03-02 01:29:43 +00001258 LateParsedDefaultArgument(FTI.ArgInfo[I].Param));
Eli Friedmand33133c2009-07-22 21:45:50 +00001259 }
1260
1261 // Add this parameter to the list of parameters (it or may
1262 // not have a default argument).
1263 LateMethod->DefaultArgs.push_back(
1264 LateParsedDefaultArgument(FTI.ArgInfo[ParamIdx].Param,
1265 FTI.ArgInfo[ParamIdx].DefaultArgTokens));
1266 }
1267 }
1268}
1269
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001270/// isCXX0XVirtSpecifier - Determine whether the next token is a C++0x
1271/// virt-specifier.
1272///
1273/// virt-specifier:
1274/// override
1275/// final
1276/// new
Anders Carlssoncc54d592011-01-22 16:56:46 +00001277VirtSpecifiers::Specifier Parser::isCXX0XVirtSpecifier() const {
Anders Carlssonce93a7c2011-01-22 23:01:49 +00001278 if (!getLang().CPlusPlus)
Anders Carlssoncc54d592011-01-22 16:56:46 +00001279 return VirtSpecifiers::VS_None;
1280
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001281 if (Tok.is(tok::kw_new))
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001282 return VirtSpecifiers::VS_New;
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001283
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001284 if (Tok.is(tok::identifier)) {
1285 IdentifierInfo *II = Tok.getIdentifierInfo();
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001286
Anders Carlsson7eeb4ec2011-01-20 03:47:08 +00001287 // Initialize the contextual keywords.
1288 if (!Ident_final) {
1289 Ident_final = &PP.getIdentifierTable().get("final");
1290 Ident_override = &PP.getIdentifierTable().get("override");
1291 }
1292
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001293 if (II == Ident_override)
1294 return VirtSpecifiers::VS_Override;
1295
1296 if (II == Ident_final)
1297 return VirtSpecifiers::VS_Final;
1298 }
1299
1300 return VirtSpecifiers::VS_None;
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001301}
1302
1303/// ParseOptionalCXX0XVirtSpecifierSeq - Parse a virt-specifier-seq.
1304///
1305/// virt-specifier-seq:
1306/// virt-specifier
1307/// virt-specifier-seq virt-specifier
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001308void Parser::ParseOptionalCXX0XVirtSpecifierSeq(VirtSpecifiers &VS) {
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001309 while (true) {
Anders Carlssoncc54d592011-01-22 16:56:46 +00001310 VirtSpecifiers::Specifier Specifier = isCXX0XVirtSpecifier();
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001311 if (Specifier == VirtSpecifiers::VS_None)
1312 return;
1313
1314 // C++ [class.mem]p8:
1315 // A virt-specifier-seq shall contain at most one of each virt-specifier.
Anders Carlssoncc54d592011-01-22 16:56:46 +00001316 const char *PrevSpec = 0;
Anders Carlsson46127a92011-01-22 15:58:16 +00001317 if (VS.SetSpecifier(Specifier, Tok.getLocation(), PrevSpec))
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001318 Diag(Tok.getLocation(), diag::err_duplicate_virt_specifier)
1319 << PrevSpec
1320 << FixItHint::CreateRemoval(Tok.getLocation());
1321
Anders Carlssonce93a7c2011-01-22 23:01:49 +00001322 if (!getLang().CPlusPlus0x)
1323 Diag(Tok.getLocation(), diag::ext_override_control_keyword)
1324 << VirtSpecifiers::getSpecifierName(Specifier);
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001325 ConsumeToken();
1326 }
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001327}
1328
Anders Carlssoncc54d592011-01-22 16:56:46 +00001329/// isCXX0XClassVirtSpecifier - Determine whether the next token is a C++0x
1330/// class-virt-specifier.
1331///
1332/// class-virt-specifier:
1333/// final
1334/// explicit
1335ClassVirtSpecifiers::Specifier Parser::isCXX0XClassVirtSpecifier() const {
Anders Carlssonce93a7c2011-01-22 23:01:49 +00001336 if (!getLang().CPlusPlus)
Anders Carlssoncc54d592011-01-22 16:56:46 +00001337 return ClassVirtSpecifiers::CVS_None;
1338
1339 if (Tok.is(tok::kw_explicit))
1340 return ClassVirtSpecifiers::CVS_Explicit;
1341
1342 if (Tok.is(tok::identifier)) {
1343 IdentifierInfo *II = Tok.getIdentifierInfo();
1344
1345 // Initialize the contextual keywords.
1346 if (!Ident_final) {
1347 Ident_final = &PP.getIdentifierTable().get("final");
1348 Ident_override = &PP.getIdentifierTable().get("override");
1349 }
1350
1351 if (II == Ident_final)
1352 return ClassVirtSpecifiers::CVS_Final;
1353 }
1354
1355 return ClassVirtSpecifiers::CVS_None;
1356}
1357
1358/// ParseOptionalCXX0XClassVirtSpecifierSeq - Parse a class-virt-specifier-seq.
1359///
1360/// class-virt-specifier-seq:
1361/// class-virt-specifier
1362/// class-virt-specifier-seq class-virt-specifier
1363void Parser::ParseOptionalCXX0XClassVirtSpecifierSeq(ClassVirtSpecifiers &CVS) {
1364 while (true) {
1365 ClassVirtSpecifiers::Specifier Specifier = isCXX0XClassVirtSpecifier();
1366 if (Specifier == ClassVirtSpecifiers::CVS_None)
1367 return;
1368
1369 // C++ [class]p1:
1370 // A class-virt-specifier-seq shall contain at most one of each
1371 // class-virt-specifier.
1372 const char *PrevSpec = 0;
1373 if (CVS.SetSpecifier(Specifier, Tok.getLocation(), PrevSpec))
1374 Diag(Tok.getLocation(), diag::err_duplicate_class_virt_specifier)
1375 << PrevSpec
1376 << FixItHint::CreateRemoval(Tok.getLocation());
Anders Carlssonce93a7c2011-01-22 23:01:49 +00001377
1378 if (!getLang().CPlusPlus0x)
1379 Diag(Tok.getLocation(), diag::ext_override_control_keyword)
1380 << ClassVirtSpecifiers::getSpecifierName(Specifier);
1381
Anders Carlssoncc54d592011-01-22 16:56:46 +00001382 ConsumeToken();
1383 }
1384}
1385
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001386/// ParseCXXClassMemberDeclaration - Parse a C++ class member declaration.
1387///
1388/// member-declaration:
1389/// decl-specifier-seq[opt] member-declarator-list[opt] ';'
1390/// function-definition ';'[opt]
1391/// ::[opt] nested-name-specifier template[opt] unqualified-id ';'[TODO]
1392/// using-declaration [TODO]
Anders Carlsson511d7ab2009-03-11 16:27:10 +00001393/// [C++0x] static_assert-declaration
Anders Carlsson5aeccdb2009-03-26 00:52:18 +00001394/// template-declaration
Chris Lattnerbc8d5642008-12-18 01:12:00 +00001395/// [GNU] '__extension__' member-declaration
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001396///
1397/// member-declarator-list:
1398/// member-declarator
1399/// member-declarator-list ',' member-declarator
1400///
1401/// member-declarator:
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001402/// declarator virt-specifier-seq[opt] pure-specifier[opt]
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001403/// declarator constant-initializer[opt]
1404/// identifier[opt] ':' constant-expression
1405///
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001406/// virt-specifier-seq:
1407/// virt-specifier
1408/// virt-specifier-seq virt-specifier
1409///
1410/// virt-specifier:
1411/// override
1412/// final
1413/// new
1414///
Sebastian Redle2b68332009-04-12 17:16:29 +00001415/// pure-specifier:
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001416/// '= 0'
1417///
1418/// constant-initializer:
1419/// '=' constant-expression
1420///
Douglas Gregor37b372b2009-08-20 22:52:58 +00001421void Parser::ParseCXXClassMemberDeclaration(AccessSpecifier AS,
John McCallc9068d72010-07-16 08:13:16 +00001422 const ParsedTemplateInfo &TemplateInfo,
1423 ParsingDeclRAIIObject *TemplateDiags) {
John McCall60fa3cf2009-12-11 02:10:03 +00001424 // Access declarations.
1425 if (!TemplateInfo.Kind &&
1426 (Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) &&
John McCall9ba61662010-02-26 08:45:28 +00001427 !TryAnnotateCXXScopeToken() &&
John McCall60fa3cf2009-12-11 02:10:03 +00001428 Tok.is(tok::annot_cxxscope)) {
1429 bool isAccessDecl = false;
1430 if (NextToken().is(tok::identifier))
1431 isAccessDecl = GetLookAheadToken(2).is(tok::semi);
1432 else
1433 isAccessDecl = NextToken().is(tok::kw_operator);
1434
1435 if (isAccessDecl) {
1436 // Collect the scope specifier token we annotated earlier.
1437 CXXScopeSpec SS;
John McCallb3d87482010-08-24 05:47:05 +00001438 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
John McCall60fa3cf2009-12-11 02:10:03 +00001439
1440 // Try to parse an unqualified-id.
1441 UnqualifiedId Name;
John McCallb3d87482010-08-24 05:47:05 +00001442 if (ParseUnqualifiedId(SS, false, true, true, ParsedType(), Name)) {
John McCall60fa3cf2009-12-11 02:10:03 +00001443 SkipUntil(tok::semi);
1444 return;
1445 }
1446
1447 // TODO: recover from mistakenly-qualified operator declarations.
1448 if (ExpectAndConsume(tok::semi,
1449 diag::err_expected_semi_after,
1450 "access declaration",
1451 tok::semi))
1452 return;
1453
Douglas Gregor23c94db2010-07-02 17:43:08 +00001454 Actions.ActOnUsingDeclaration(getCurScope(), AS,
John McCall60fa3cf2009-12-11 02:10:03 +00001455 false, SourceLocation(),
1456 SS, Name,
1457 /* AttrList */ 0,
1458 /* IsTypeName */ false,
1459 SourceLocation());
1460 return;
1461 }
1462 }
1463
Anders Carlsson511d7ab2009-03-11 16:27:10 +00001464 // static_assert-declaration
Chris Lattner682bf922009-03-29 16:50:03 +00001465 if (Tok.is(tok::kw_static_assert)) {
Douglas Gregor37b372b2009-08-20 22:52:58 +00001466 // FIXME: Check for templates
Chris Lattner97144fc2009-04-02 04:16:50 +00001467 SourceLocation DeclEnd;
1468 ParseStaticAssertDeclaration(DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +00001469 return;
1470 }
Mike Stump1eb44332009-09-09 15:08:12 +00001471
Chris Lattner682bf922009-03-29 16:50:03 +00001472 if (Tok.is(tok::kw_template)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001473 assert(!TemplateInfo.TemplateParams &&
Douglas Gregor37b372b2009-08-20 22:52:58 +00001474 "Nested template improperly parsed?");
Chris Lattner97144fc2009-04-02 04:16:50 +00001475 SourceLocation DeclEnd;
Mike Stump1eb44332009-09-09 15:08:12 +00001476 ParseDeclarationStartingWithTemplate(Declarator::MemberContext, DeclEnd,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001477 AS);
Chris Lattner682bf922009-03-29 16:50:03 +00001478 return;
1479 }
Anders Carlsson5aeccdb2009-03-26 00:52:18 +00001480
Chris Lattnerbc8d5642008-12-18 01:12:00 +00001481 // Handle: member-declaration ::= '__extension__' member-declaration
1482 if (Tok.is(tok::kw___extension__)) {
1483 // __extension__ silences extension warnings in the subexpression.
1484 ExtensionRAIIObject O(Diags); // Use RAII to do this.
1485 ConsumeToken();
John McCallc9068d72010-07-16 08:13:16 +00001486 return ParseCXXClassMemberDeclaration(AS, TemplateInfo, TemplateDiags);
Chris Lattnerbc8d5642008-12-18 01:12:00 +00001487 }
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001488
Chris Lattner4ed5d912010-02-02 01:23:29 +00001489 // Don't parse FOO:BAR as if it were a typo for FOO::BAR, in this context it
1490 // is a bitfield.
Chris Lattnera1efc8c2009-12-10 01:59:24 +00001491 ColonProtectionRAIIObject X(*this);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001492
John McCall7f040a92010-12-24 02:08:15 +00001493 ParsedAttributesWithRange attrs;
Sean Huntbbd37c62009-11-21 08:43:09 +00001494 // Optional C++0x attribute-specifier
John McCall7f040a92010-12-24 02:08:15 +00001495 MaybeParseCXX0XAttributes(attrs);
1496 MaybeParseMicrosoftAttributes(attrs);
Sean Huntbbd37c62009-11-21 08:43:09 +00001497
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001498 if (Tok.is(tok::kw_using)) {
Douglas Gregor37b372b2009-08-20 22:52:58 +00001499 // FIXME: Check for template aliases
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001500
John McCall7f040a92010-12-24 02:08:15 +00001501 ProhibitAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +00001502
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001503 // Eat 'using'.
1504 SourceLocation UsingLoc = ConsumeToken();
1505
1506 if (Tok.is(tok::kw_namespace)) {
1507 Diag(UsingLoc, diag::err_using_namespace_in_class);
1508 SkipUntil(tok::semi, true, true);
Chris Lattnerae50d502010-02-02 00:43:15 +00001509 } else {
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001510 SourceLocation DeclEnd;
1511 // Otherwise, it must be using-declaration.
John McCall78b81052010-11-10 02:40:36 +00001512 ParseUsingDeclaration(Declarator::MemberContext, TemplateInfo,
1513 UsingLoc, DeclEnd, AS);
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001514 }
1515 return;
1516 }
1517
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001518 // decl-specifier-seq:
1519 // Parse the common declaration-specifiers piece.
John McCallc9068d72010-07-16 08:13:16 +00001520 ParsingDeclSpec DS(*this, TemplateDiags);
John McCall7f040a92010-12-24 02:08:15 +00001521 DS.takeAttributesFrom(attrs);
Douglas Gregor37b372b2009-08-20 22:52:58 +00001522 ParseDeclarationSpecifiers(DS, TemplateInfo, AS, DSC_class);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001523
John McCallf312b1e2010-08-26 23:41:50 +00001524 MultiTemplateParamsArg TemplateParams(Actions,
John McCalldd4a3b02009-09-16 22:47:08 +00001525 TemplateInfo.TemplateParams? TemplateInfo.TemplateParams->data() : 0,
1526 TemplateInfo.TemplateParams? TemplateInfo.TemplateParams->size() : 0);
1527
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001528 if (Tok.is(tok::semi)) {
1529 ConsumeToken();
John McCalld226f652010-08-21 09:40:31 +00001530 Decl *TheDecl =
John McCallc9068d72010-07-16 08:13:16 +00001531 Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS, DS);
1532 DS.complete(TheDecl);
John McCall67d1a672009-08-06 02:15:43 +00001533 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001534 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001535
John McCall54abf7d2009-11-04 02:18:39 +00001536 ParsingDeclarator DeclaratorInfo(*this, DS, Declarator::MemberContext);
Nico Weber48673472011-01-28 06:07:34 +00001537 VirtSpecifiers VS;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001538
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001539 if (Tok.isNot(tok::colon)) {
Chris Lattnera1efc8c2009-12-10 01:59:24 +00001540 // Don't parse FOO:BAR as if it were a typo for FOO::BAR.
1541 ColonProtectionRAIIObject X(*this);
1542
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001543 // Parse the first declarator.
1544 ParseDeclarator(DeclaratorInfo);
1545 // Error parsing the declarator?
Douglas Gregor10bd3682008-11-17 22:58:34 +00001546 if (!DeclaratorInfo.hasName()) {
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001547 // If so, skip until the semi-colon or a }.
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001548 SkipUntil(tok::r_brace, true);
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001549 if (Tok.is(tok::semi))
1550 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001551 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001552 }
1553
Nico Weber48673472011-01-28 06:07:34 +00001554 ParseOptionalCXX0XVirtSpecifierSeq(VS);
1555
John Thompson1b2fc0f2009-11-25 22:58:06 +00001556 // If attributes exist after the declarator, but before an '{', parse them.
John McCall7f040a92010-12-24 02:08:15 +00001557 MaybeParseGNUAttributes(DeclaratorInfo);
John Thompson1b2fc0f2009-11-25 22:58:06 +00001558
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001559 // function-definition:
Douglas Gregor7ad83902008-11-05 04:29:56 +00001560 if (Tok.is(tok::l_brace)
Sebastian Redld3a413d2009-04-26 20:35:05 +00001561 || (DeclaratorInfo.isFunctionDeclarator() &&
1562 (Tok.is(tok::colon) || Tok.is(tok::kw_try)))) {
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001563 if (!DeclaratorInfo.isFunctionDeclarator()) {
1564 Diag(Tok, diag::err_func_def_no_params);
1565 ConsumeBrace();
1566 SkipUntil(tok::r_brace, true);
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001567
1568 // Consume the optional ';'
1569 if (Tok.is(tok::semi))
1570 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001571 return;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001572 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001573
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001574 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
1575 Diag(Tok, diag::err_function_declared_typedef);
1576 // This recovery skips the entire function body. It would be nice
1577 // to simply call ParseCXXInlineMethodDef() below, however Sema
1578 // assumes the declarator represents a function, not a typedef.
1579 ConsumeBrace();
1580 SkipUntil(tok::r_brace, true);
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001581
1582 // Consume the optional ';'
1583 if (Tok.is(tok::semi))
1584 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001585 return;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001586 }
1587
Nico Weber48673472011-01-28 06:07:34 +00001588 ParseCXXInlineMethodDef(AS, DeclaratorInfo, TemplateInfo, VS);
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001589 // Consume the optional ';'
1590 if (Tok.is(tok::semi))
1591 ConsumeToken();
1592
Chris Lattner682bf922009-03-29 16:50:03 +00001593 return;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001594 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001595 }
1596
1597 // member-declarator-list:
1598 // member-declarator
1599 // member-declarator-list ',' member-declarator
1600
John McCalld226f652010-08-21 09:40:31 +00001601 llvm::SmallVector<Decl *, 8> DeclsInGroup;
John McCall60d7b3a2010-08-24 06:29:42 +00001602 ExprResult BitfieldSize;
1603 ExprResult Init;
Sebastian Redle2b68332009-04-12 17:16:29 +00001604 bool Deleted = false;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001605
1606 while (1) {
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001607 // member-declarator:
1608 // declarator pure-specifier[opt]
1609 // declarator constant-initializer[opt]
1610 // identifier[opt] ':' constant-expression
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001611 if (Tok.is(tok::colon)) {
1612 ConsumeToken();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001613 BitfieldSize = ParseConstantExpression();
1614 if (BitfieldSize.isInvalid())
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001615 SkipUntil(tok::comma, true, true);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001616 }
Mike Stump1eb44332009-09-09 15:08:12 +00001617
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001618 ParseOptionalCXX0XVirtSpecifierSeq(VS);
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001619
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001620 // pure-specifier:
1621 // '= 0'
1622 //
1623 // constant-initializer:
1624 // '=' constant-expression
Sebastian Redle2b68332009-04-12 17:16:29 +00001625 //
1626 // defaulted/deleted function-definition:
1627 // '=' 'default' [TODO]
1628 // '=' 'delete'
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001629 if (Tok.is(tok::equal)) {
1630 ConsumeToken();
Anders Carlsson37bf9d22010-09-24 21:25:25 +00001631 if (Tok.is(tok::kw_delete)) {
1632 if (!getLang().CPlusPlus0x)
1633 Diag(Tok, diag::warn_deleted_function_accepted_as_extension);
Sebastian Redle2b68332009-04-12 17:16:29 +00001634 ConsumeToken();
1635 Deleted = true;
1636 } else {
1637 Init = ParseInitializer();
1638 if (Init.isInvalid())
1639 SkipUntil(tok::comma, true, true);
1640 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001641 }
1642
Chris Lattnere6563252010-06-13 05:34:18 +00001643 // If a simple-asm-expr is present, parse it.
1644 if (Tok.is(tok::kw_asm)) {
1645 SourceLocation Loc;
John McCall60d7b3a2010-08-24 06:29:42 +00001646 ExprResult AsmLabel(ParseSimpleAsm(&Loc));
Chris Lattnere6563252010-06-13 05:34:18 +00001647 if (AsmLabel.isInvalid())
1648 SkipUntil(tok::comma, true, true);
1649
1650 DeclaratorInfo.setAsmLabel(AsmLabel.release());
1651 DeclaratorInfo.SetRangeEnd(Loc);
1652 }
1653
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001654 // If attributes exist after the declarator, parse them.
John McCall7f040a92010-12-24 02:08:15 +00001655 MaybeParseGNUAttributes(DeclaratorInfo);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001656
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001657 // NOTE: If Sema is the Action module and declarator is an instance field,
Chris Lattner682bf922009-03-29 16:50:03 +00001658 // this call will *not* return the created decl; It will return null.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001659 // See Sema::ActOnCXXMemberDeclarator for details.
John McCall67d1a672009-08-06 02:15:43 +00001660
John McCalld226f652010-08-21 09:40:31 +00001661 Decl *ThisDecl = 0;
John McCall67d1a672009-08-06 02:15:43 +00001662 if (DS.isFriendSpecified()) {
John McCallbbbcdd92009-09-11 21:02:39 +00001663 // TODO: handle initializers, bitfields, 'delete'
Douglas Gregor23c94db2010-07-02 17:43:08 +00001664 ThisDecl = Actions.ActOnFriendFunctionDecl(getCurScope(), DeclaratorInfo,
John McCallbbbcdd92009-09-11 21:02:39 +00001665 /*IsDefinition*/ false,
1666 move(TemplateParams));
Douglas Gregor37b372b2009-08-20 22:52:58 +00001667 } else {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001668 ThisDecl = Actions.ActOnCXXMemberDeclarator(getCurScope(), AS,
John McCall67d1a672009-08-06 02:15:43 +00001669 DeclaratorInfo,
Douglas Gregor37b372b2009-08-20 22:52:58 +00001670 move(TemplateParams),
John McCall67d1a672009-08-06 02:15:43 +00001671 BitfieldSize.release(),
Anders Carlsson69a87352011-01-20 03:57:25 +00001672 VS, Init.release(),
Sebastian Redld1a78462009-11-24 23:38:44 +00001673 /*IsDefinition*/Deleted,
John McCall67d1a672009-08-06 02:15:43 +00001674 Deleted);
Douglas Gregor37b372b2009-08-20 22:52:58 +00001675 }
Chris Lattner682bf922009-03-29 16:50:03 +00001676 if (ThisDecl)
1677 DeclsInGroup.push_back(ThisDecl);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001678
Douglas Gregor72b505b2008-12-16 21:30:33 +00001679 if (DeclaratorInfo.isFunctionDeclarator() &&
Mike Stump1eb44332009-09-09 15:08:12 +00001680 DeclaratorInfo.getDeclSpec().getStorageClassSpec()
Douglas Gregor72b505b2008-12-16 21:30:33 +00001681 != DeclSpec::SCS_typedef) {
Eli Friedmand33133c2009-07-22 21:45:50 +00001682 HandleMemberFunctionDefaultArgs(DeclaratorInfo, ThisDecl);
Douglas Gregor72b505b2008-12-16 21:30:33 +00001683 }
1684
John McCall54abf7d2009-11-04 02:18:39 +00001685 DeclaratorInfo.complete(ThisDecl);
1686
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001687 // If we don't have a comma, it is either the end of the list (a ';')
1688 // or an error, bail out.
1689 if (Tok.isNot(tok::comma))
1690 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001691
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001692 // Consume the comma.
1693 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001694
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001695 // Parse the next declarator.
1696 DeclaratorInfo.clear();
Nico Weber48673472011-01-28 06:07:34 +00001697 VS.clear();
Sebastian Redl15faa7f2008-12-09 20:22:58 +00001698 BitfieldSize = 0;
1699 Init = 0;
Sebastian Redle2b68332009-04-12 17:16:29 +00001700 Deleted = false;
Mike Stump1eb44332009-09-09 15:08:12 +00001701
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001702 // Attributes are only allowed on the second declarator.
John McCall7f040a92010-12-24 02:08:15 +00001703 MaybeParseGNUAttributes(DeclaratorInfo);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001704
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001705 if (Tok.isNot(tok::colon))
1706 ParseDeclarator(DeclaratorInfo);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001707 }
1708
Chris Lattnerae50d502010-02-02 00:43:15 +00001709 if (ExpectAndConsume(tok::semi, diag::err_expected_semi_decl_list)) {
1710 // Skip to end of block or statement.
1711 SkipUntil(tok::r_brace, true, true);
1712 // If we stopped at a ';', eat it.
1713 if (Tok.is(tok::semi)) ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001714 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001715 }
1716
Douglas Gregor23c94db2010-07-02 17:43:08 +00001717 Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup.data(),
Chris Lattnerae50d502010-02-02 00:43:15 +00001718 DeclsInGroup.size());
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001719}
1720
1721/// ParseCXXMemberSpecification - Parse the class definition.
1722///
1723/// member-specification:
1724/// member-declaration member-specification[opt]
1725/// access-specifier ':' member-specification[opt]
1726///
1727void Parser::ParseCXXMemberSpecification(SourceLocation RecordLoc,
John McCalld226f652010-08-21 09:40:31 +00001728 unsigned TagType, Decl *TagDecl) {
Sanjiv Gupta31fc07d2008-10-31 09:52:39 +00001729 assert((TagType == DeclSpec::TST_struct ||
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001730 TagType == DeclSpec::TST_union ||
Sanjiv Gupta31fc07d2008-10-31 09:52:39 +00001731 TagType == DeclSpec::TST_class) && "Invalid TagType!");
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001732
John McCallf312b1e2010-08-26 23:41:50 +00001733 PrettyDeclStackTraceEntry CrashInfo(Actions, TagDecl, RecordLoc,
1734 "parsing struct/union/class body");
Mike Stump1eb44332009-09-09 15:08:12 +00001735
Douglas Gregor26997fd2010-01-16 20:52:59 +00001736 // Determine whether this is a non-nested class. Note that local
1737 // classes are *not* considered to be nested classes.
1738 bool NonNestedClass = true;
1739 if (!ClassStack.empty()) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001740 for (const Scope *S = getCurScope(); S; S = S->getParent()) {
Douglas Gregor26997fd2010-01-16 20:52:59 +00001741 if (S->isClassScope()) {
1742 // We're inside a class scope, so this is a nested class.
1743 NonNestedClass = false;
1744 break;
1745 }
1746
1747 if ((S->getFlags() & Scope::FnScope)) {
1748 // If we're in a function or function template declared in the
1749 // body of a class, then this is a local class rather than a
1750 // nested class.
1751 const Scope *Parent = S->getParent();
1752 if (Parent->isTemplateParamScope())
1753 Parent = Parent->getParent();
1754 if (Parent->isClassScope())
1755 break;
1756 }
1757 }
1758 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001759
1760 // Enter a scope for the class.
Douglas Gregor3218c4b2009-01-09 22:42:13 +00001761 ParseScope ClassScope(this, Scope::ClassScope|Scope::DeclScope);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001762
Douglas Gregor6569d682009-05-27 23:11:45 +00001763 // Note that we are parsing a new (potentially-nested) class definition.
Douglas Gregor26997fd2010-01-16 20:52:59 +00001764 ParsingClassDefinition ParsingDef(*this, TagDecl, NonNestedClass);
Douglas Gregor6569d682009-05-27 23:11:45 +00001765
Douglas Gregorddc29e12009-02-06 22:42:48 +00001766 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00001767 Actions.ActOnTagStartDefinition(getCurScope(), TagDecl);
John McCallbd0dfa52009-12-19 21:48:58 +00001768
Anders Carlssoncc54d592011-01-22 16:56:46 +00001769 ClassVirtSpecifiers CVS;
1770 ParseOptionalCXX0XClassVirtSpecifierSeq(CVS);
1771
John McCallbd0dfa52009-12-19 21:48:58 +00001772 if (Tok.is(tok::colon)) {
1773 ParseBaseClause(TagDecl);
1774
1775 if (!Tok.is(tok::l_brace)) {
1776 Diag(Tok, diag::err_expected_lbrace_after_base_specifiers);
John McCalldb7bb4a2010-03-17 00:38:33 +00001777
1778 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00001779 Actions.ActOnTagDefinitionError(getCurScope(), TagDecl);
John McCallbd0dfa52009-12-19 21:48:58 +00001780 return;
1781 }
1782 }
1783
1784 assert(Tok.is(tok::l_brace));
1785
1786 SourceLocation LBraceLoc = ConsumeBrace();
1787
John McCall42a4f662010-05-28 08:11:17 +00001788 if (TagDecl)
Anders Carlssondfc2f102011-01-22 17:51:53 +00001789 Actions.ActOnStartCXXMemberDeclarations(getCurScope(), TagDecl, CVS,
1790 LBraceLoc);
John McCallf9368152009-12-20 07:58:13 +00001791
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001792 // C++ 11p3: Members of a class defined with the keyword class are private
1793 // by default. Members of a class defined with the keywords struct or union
1794 // are public by default.
1795 AccessSpecifier CurAS;
1796 if (TagType == DeclSpec::TST_class)
1797 CurAS = AS_private;
1798 else
1799 CurAS = AS_public;
1800
Douglas Gregor07976d22010-06-21 22:31:09 +00001801 SourceLocation RBraceLoc;
1802 if (TagDecl) {
1803 // While we still have something to read, read the member-declarations.
1804 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
1805 // Each iteration of this loop reads one member-declaration.
Mike Stump1eb44332009-09-09 15:08:12 +00001806
Douglas Gregor07976d22010-06-21 22:31:09 +00001807 // Check for extraneous top-level semicolon.
1808 if (Tok.is(tok::semi)) {
1809 Diag(Tok, diag::ext_extra_struct_semi)
1810 << DeclSpec::getSpecifierName((DeclSpec::TST)TagType)
1811 << FixItHint::CreateRemoval(Tok.getLocation());
1812 ConsumeToken();
1813 continue;
1814 }
1815
1816 AccessSpecifier AS = getAccessSpecifierIfPresent();
1817 if (AS != AS_none) {
1818 // Current token is a C++ access specifier.
1819 CurAS = AS;
1820 SourceLocation ASLoc = Tok.getLocation();
1821 ConsumeToken();
1822 if (Tok.is(tok::colon))
1823 Actions.ActOnAccessSpecifier(AS, ASLoc, Tok.getLocation());
1824 else
1825 Diag(Tok, diag::err_expected_colon);
1826 ConsumeToken();
1827 continue;
1828 }
1829
1830 // FIXME: Make sure we don't have a template here.
1831
1832 // Parse all the comma separated declarators.
1833 ParseCXXClassMemberDeclaration(CurAS);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001834 }
1835
Douglas Gregor07976d22010-06-21 22:31:09 +00001836 RBraceLoc = MatchRHSPunctuation(tok::r_brace, LBraceLoc);
1837 } else {
1838 SkipUntil(tok::r_brace, false, false);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001839 }
Mike Stump1eb44332009-09-09 15:08:12 +00001840
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001841 // If attributes exist after class contents, parse them.
John McCall7f040a92010-12-24 02:08:15 +00001842 ParsedAttributes attrs;
1843 MaybeParseGNUAttributes(attrs);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001844
John McCall42a4f662010-05-28 08:11:17 +00001845 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00001846 Actions.ActOnFinishCXXMemberSpecification(getCurScope(), RecordLoc, TagDecl,
John McCall42a4f662010-05-28 08:11:17 +00001847 LBraceLoc, RBraceLoc,
John McCall7f040a92010-12-24 02:08:15 +00001848 attrs.getList());
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001849
1850 // C++ 9.2p2: Within the class member-specification, the class is regarded as
1851 // complete within function bodies, default arguments,
1852 // exception-specifications, and constructor ctor-initializers (including
1853 // such things in nested classes).
1854 //
Douglas Gregor72b505b2008-12-16 21:30:33 +00001855 // FIXME: Only function bodies and constructor ctor-initializers are
1856 // parsed correctly, fix the rest.
Douglas Gregor07976d22010-06-21 22:31:09 +00001857 if (TagDecl && NonNestedClass) {
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001858 // We are not inside a nested class. This class and its nested classes
Douglas Gregor72b505b2008-12-16 21:30:33 +00001859 // are complete and we can parse the delayed portions of method
1860 // declarations and the lexed inline method definitions.
Douglas Gregore0cc0472010-06-16 23:45:56 +00001861 SourceLocation SavedPrevTokLocation = PrevTokLocation;
Douglas Gregor6569d682009-05-27 23:11:45 +00001862 ParseLexedMethodDeclarations(getCurrentClass());
1863 ParseLexedMethodDefs(getCurrentClass());
Douglas Gregore0cc0472010-06-16 23:45:56 +00001864 PrevTokLocation = SavedPrevTokLocation;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001865 }
1866
John McCall42a4f662010-05-28 08:11:17 +00001867 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00001868 Actions.ActOnTagFinishDefinition(getCurScope(), TagDecl, RBraceLoc);
John McCalldb7bb4a2010-03-17 00:38:33 +00001869
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001870 // Leave the class scope.
Douglas Gregor6569d682009-05-27 23:11:45 +00001871 ParsingDef.Pop();
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001872 ClassScope.Exit();
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001873}
Douglas Gregor7ad83902008-11-05 04:29:56 +00001874
1875/// ParseConstructorInitializer - Parse a C++ constructor initializer,
1876/// which explicitly initializes the members or base classes of a
1877/// class (C++ [class.base.init]). For example, the three initializers
1878/// after the ':' in the Derived constructor below:
1879///
1880/// @code
1881/// class Base { };
1882/// class Derived : Base {
1883/// int x;
1884/// float f;
1885/// public:
1886/// Derived(float f) : Base(), x(17), f(f) { }
1887/// };
1888/// @endcode
1889///
Mike Stump1eb44332009-09-09 15:08:12 +00001890/// [C++] ctor-initializer:
1891/// ':' mem-initializer-list
Douglas Gregor7ad83902008-11-05 04:29:56 +00001892///
Mike Stump1eb44332009-09-09 15:08:12 +00001893/// [C++] mem-initializer-list:
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001894/// mem-initializer ...[opt]
1895/// mem-initializer ...[opt] , mem-initializer-list
John McCalld226f652010-08-21 09:40:31 +00001896void Parser::ParseConstructorInitializer(Decl *ConstructorDecl) {
Douglas Gregor7ad83902008-11-05 04:29:56 +00001897 assert(Tok.is(tok::colon) && "Constructor initializer always starts with ':'");
1898
1899 SourceLocation ColonLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001900
Sean Huntcbb67482011-01-08 20:30:50 +00001901 llvm::SmallVector<CXXCtorInitializer*, 4> MemInitializers;
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001902 bool AnyErrors = false;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001903
Douglas Gregor7ad83902008-11-05 04:29:56 +00001904 do {
Douglas Gregor0133f522010-08-28 00:00:50 +00001905 if (Tok.is(tok::code_completion)) {
1906 Actions.CodeCompleteConstructorInitializer(ConstructorDecl,
1907 MemInitializers.data(),
1908 MemInitializers.size());
1909 ConsumeCodeCompletionToken();
1910 } else {
1911 MemInitResult MemInit = ParseMemInitializer(ConstructorDecl);
1912 if (!MemInit.isInvalid())
1913 MemInitializers.push_back(MemInit.get());
1914 else
1915 AnyErrors = true;
1916 }
1917
Douglas Gregor7ad83902008-11-05 04:29:56 +00001918 if (Tok.is(tok::comma))
1919 ConsumeToken();
1920 else if (Tok.is(tok::l_brace))
1921 break;
Douglas Gregorb1f6fa42010-09-07 14:35:10 +00001922 // If the next token looks like a base or member initializer, assume that
1923 // we're just missing a comma.
Douglas Gregor751f6922010-09-07 14:51:08 +00001924 else if (Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) {
1925 SourceLocation Loc = PP.getLocForEndOfToken(PrevTokLocation);
1926 Diag(Loc, diag::err_ctor_init_missing_comma)
1927 << FixItHint::CreateInsertion(Loc, ", ");
1928 } else {
Douglas Gregor7ad83902008-11-05 04:29:56 +00001929 // Skip over garbage, until we get to '{'. Don't eat the '{'.
Sebastian Redld3a413d2009-04-26 20:35:05 +00001930 Diag(Tok.getLocation(), diag::err_expected_lbrace_or_comma);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001931 SkipUntil(tok::l_brace, true, true);
1932 break;
1933 }
1934 } while (true);
1935
Mike Stump1eb44332009-09-09 15:08:12 +00001936 Actions.ActOnMemInitializers(ConstructorDecl, ColonLoc,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001937 MemInitializers.data(), MemInitializers.size(),
1938 AnyErrors);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001939}
1940
1941/// ParseMemInitializer - Parse a C++ member initializer, which is
1942/// part of a constructor initializer that explicitly initializes one
1943/// member or base class (C++ [class.base.init]). See
1944/// ParseConstructorInitializer for an example.
1945///
1946/// [C++] mem-initializer:
1947/// mem-initializer-id '(' expression-list[opt] ')'
Mike Stump1eb44332009-09-09 15:08:12 +00001948///
Douglas Gregor7ad83902008-11-05 04:29:56 +00001949/// [C++] mem-initializer-id:
1950/// '::'[opt] nested-name-specifier[opt] class-name
1951/// identifier
John McCalld226f652010-08-21 09:40:31 +00001952Parser::MemInitResult Parser::ParseMemInitializer(Decl *ConstructorDecl) {
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00001953 // parse '::'[opt] nested-name-specifier[opt]
1954 CXXScopeSpec SS;
John McCallb3d87482010-08-24 05:47:05 +00001955 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
1956 ParsedType TemplateTypeTy;
Fariborz Jahanian96174332009-07-01 19:21:19 +00001957 if (Tok.is(tok::annot_template_id)) {
1958 TemplateIdAnnotation *TemplateId
1959 = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
Douglas Gregord9b600c2010-01-12 17:52:59 +00001960 if (TemplateId->Kind == TNK_Type_template ||
1961 TemplateId->Kind == TNK_Dependent_template_name) {
Douglas Gregor059101f2011-03-02 00:47:37 +00001962 AnnotateTemplateIdTokenAsType();
Fariborz Jahanian96174332009-07-01 19:21:19 +00001963 assert(Tok.is(tok::annot_typename) && "template-id -> type failed");
John McCallb3d87482010-08-24 05:47:05 +00001964 TemplateTypeTy = getTypeAnnotation(Tok);
Fariborz Jahanian96174332009-07-01 19:21:19 +00001965 }
Fariborz Jahanian96174332009-07-01 19:21:19 +00001966 }
1967 if (!TemplateTypeTy && Tok.isNot(tok::identifier)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001968 Diag(Tok, diag::err_expected_member_or_base_name);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001969 return true;
1970 }
Mike Stump1eb44332009-09-09 15:08:12 +00001971
Douglas Gregor7ad83902008-11-05 04:29:56 +00001972 // Get the identifier. This may be a member name or a class name,
1973 // but we'll let the semantic analysis determine which it is.
Fariborz Jahanian96174332009-07-01 19:21:19 +00001974 IdentifierInfo *II = Tok.is(tok::identifier) ? Tok.getIdentifierInfo() : 0;
Douglas Gregor7ad83902008-11-05 04:29:56 +00001975 SourceLocation IdLoc = ConsumeToken();
1976
1977 // Parse the '('.
1978 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001979 Diag(Tok, diag::err_expected_lparen);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001980 return true;
1981 }
1982 SourceLocation LParenLoc = ConsumeParen();
1983
1984 // Parse the optional expression-list.
Sebastian Redla55e52c2008-11-25 22:21:31 +00001985 ExprVector ArgExprs(Actions);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001986 CommaLocsTy CommaLocs;
1987 if (Tok.isNot(tok::r_paren) && ParseExpressionList(ArgExprs, CommaLocs)) {
1988 SkipUntil(tok::r_paren);
1989 return true;
1990 }
1991
1992 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
1993
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001994 SourceLocation EllipsisLoc;
1995 if (Tok.is(tok::ellipsis))
1996 EllipsisLoc = ConsumeToken();
1997
Douglas Gregor23c94db2010-07-02 17:43:08 +00001998 return Actions.ActOnMemInitializer(ConstructorDecl, getCurScope(), SS, II,
Fariborz Jahanian96174332009-07-01 19:21:19 +00001999 TemplateTypeTy, IdLoc,
Sebastian Redla55e52c2008-11-25 22:21:31 +00002000 LParenLoc, ArgExprs.take(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002001 ArgExprs.size(), RParenLoc,
2002 EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002003}
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002004
Sebastian Redl7acafd02011-03-05 14:45:16 +00002005/// \brief Parse a C++ exception-specification if present (C++0x [except.spec]).
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002006///
Douglas Gregora4745612008-12-01 18:00:20 +00002007/// exception-specification:
Sebastian Redl7acafd02011-03-05 14:45:16 +00002008/// dynamic-exception-specification
2009/// noexcept-specification
2010///
2011/// noexcept-specification:
2012/// 'noexcept'
2013/// 'noexcept' '(' constant-expression ')'
2014ExceptionSpecificationType
2015Parser::MaybeParseExceptionSpecification(SourceRange &SpecificationRange,
2016 llvm::SmallVectorImpl<ParsedType> &DynamicExceptions,
2017 llvm::SmallVectorImpl<SourceRange> &DynamicExceptionRanges,
2018 ExprResult &NoexceptExpr) {
2019 ExceptionSpecificationType Result = EST_None;
2020
2021 // See if there's a dynamic specification.
2022 if (Tok.is(tok::kw_throw)) {
2023 Result = ParseDynamicExceptionSpecification(SpecificationRange,
2024 DynamicExceptions,
2025 DynamicExceptionRanges);
2026 assert(DynamicExceptions.size() == DynamicExceptionRanges.size() &&
2027 "Produced different number of exception types and ranges.");
2028 }
2029
2030 // If there's no noexcept specification, we're done.
2031 if (Tok.isNot(tok::kw_noexcept))
2032 return Result;
2033
2034 // If we already had a dynamic specification, parse the noexcept for,
2035 // recovery, but emit a diagnostic and don't store the results.
2036 SourceRange NoexceptRange;
2037 ExceptionSpecificationType NoexceptType = EST_None;
2038
2039 SourceLocation KeywordLoc = ConsumeToken();
2040 if (Tok.is(tok::l_paren)) {
2041 // There is an argument.
2042 SourceLocation LParenLoc = ConsumeParen();
2043 NoexceptType = EST_ComputedNoexcept;
2044 NoexceptExpr = ParseConstantExpression();
Sebastian Redl60618fa2011-03-12 11:50:43 +00002045 // The argument must be contextually convertible to bool. We use
2046 // ActOnBooleanCondition for this purpose.
2047 if (!NoexceptExpr.isInvalid())
2048 NoexceptExpr = Actions.ActOnBooleanCondition(getCurScope(), KeywordLoc,
2049 NoexceptExpr.get());
Sebastian Redl7acafd02011-03-05 14:45:16 +00002050 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
2051 NoexceptRange = SourceRange(KeywordLoc, RParenLoc);
2052 } else {
2053 // There is no argument.
2054 NoexceptType = EST_BasicNoexcept;
2055 NoexceptRange = SourceRange(KeywordLoc, KeywordLoc);
2056 }
2057
2058 if (Result == EST_None) {
2059 SpecificationRange = NoexceptRange;
2060 Result = NoexceptType;
2061
2062 // If there's a dynamic specification after a noexcept specification,
2063 // parse that and ignore the results.
2064 if (Tok.is(tok::kw_throw)) {
2065 Diag(Tok.getLocation(), diag::err_dynamic_and_noexcept_specification);
2066 ParseDynamicExceptionSpecification(NoexceptRange, DynamicExceptions,
2067 DynamicExceptionRanges);
2068 }
2069 } else {
2070 Diag(Tok.getLocation(), diag::err_dynamic_and_noexcept_specification);
2071 }
2072
2073 return Result;
2074}
2075
2076/// ParseDynamicExceptionSpecification - Parse a C++
2077/// dynamic-exception-specification (C++ [except.spec]).
2078///
2079/// dynamic-exception-specification:
Douglas Gregora4745612008-12-01 18:00:20 +00002080/// 'throw' '(' type-id-list [opt] ')'
2081/// [MS] 'throw' '(' '...' ')'
Mike Stump1eb44332009-09-09 15:08:12 +00002082///
Douglas Gregora4745612008-12-01 18:00:20 +00002083/// type-id-list:
Douglas Gregora04426c2010-12-20 23:57:46 +00002084/// type-id ... [opt]
2085/// type-id-list ',' type-id ... [opt]
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002086///
Sebastian Redl7acafd02011-03-05 14:45:16 +00002087ExceptionSpecificationType Parser::ParseDynamicExceptionSpecification(
2088 SourceRange &SpecificationRange,
2089 llvm::SmallVectorImpl<ParsedType> &Exceptions,
2090 llvm::SmallVectorImpl<SourceRange> &Ranges) {
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002091 assert(Tok.is(tok::kw_throw) && "expected throw");
Mike Stump1eb44332009-09-09 15:08:12 +00002092
Sebastian Redl7acafd02011-03-05 14:45:16 +00002093 SpecificationRange.setBegin(ConsumeToken());
Mike Stump1eb44332009-09-09 15:08:12 +00002094
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002095 if (!Tok.is(tok::l_paren)) {
Sebastian Redl7acafd02011-03-05 14:45:16 +00002096 Diag(Tok, diag::err_expected_lparen_after) << "throw";
2097 SpecificationRange.setEnd(SpecificationRange.getBegin());
Sebastian Redl60618fa2011-03-12 11:50:43 +00002098 return EST_DynamicNone;
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002099 }
2100 SourceLocation LParenLoc = ConsumeParen();
2101
Douglas Gregora4745612008-12-01 18:00:20 +00002102 // Parse throw(...), a Microsoft extension that means "this function
2103 // can throw anything".
2104 if (Tok.is(tok::ellipsis)) {
2105 SourceLocation EllipsisLoc = ConsumeToken();
2106 if (!getLang().Microsoft)
2107 Diag(EllipsisLoc, diag::ext_ellipsis_exception_spec);
Sebastian Redl7acafd02011-03-05 14:45:16 +00002108 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
2109 SpecificationRange.setEnd(RParenLoc);
Sebastian Redl60618fa2011-03-12 11:50:43 +00002110 return EST_MSAny;
Douglas Gregora4745612008-12-01 18:00:20 +00002111 }
2112
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002113 // Parse the sequence of type-ids.
Sebastian Redlef65f062009-05-29 18:02:33 +00002114 SourceRange Range;
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002115 while (Tok.isNot(tok::r_paren)) {
Sebastian Redlef65f062009-05-29 18:02:33 +00002116 TypeResult Res(ParseTypeName(&Range));
Sebastian Redl7acafd02011-03-05 14:45:16 +00002117
Douglas Gregora04426c2010-12-20 23:57:46 +00002118 if (Tok.is(tok::ellipsis)) {
2119 // C++0x [temp.variadic]p5:
2120 // - In a dynamic-exception-specification (15.4); the pattern is a
2121 // type-id.
2122 SourceLocation Ellipsis = ConsumeToken();
Sebastian Redl7acafd02011-03-05 14:45:16 +00002123 Range.setEnd(Ellipsis);
Douglas Gregora04426c2010-12-20 23:57:46 +00002124 if (!Res.isInvalid())
2125 Res = Actions.ActOnPackExpansion(Res.get(), Ellipsis);
2126 }
Sebastian Redl7acafd02011-03-05 14:45:16 +00002127
Sebastian Redlef65f062009-05-29 18:02:33 +00002128 if (!Res.isInvalid()) {
Sebastian Redl7dc81342009-04-29 17:30:04 +00002129 Exceptions.push_back(Res.get());
Sebastian Redlef65f062009-05-29 18:02:33 +00002130 Ranges.push_back(Range);
2131 }
Douglas Gregora04426c2010-12-20 23:57:46 +00002132
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002133 if (Tok.is(tok::comma))
2134 ConsumeToken();
Sebastian Redl7dc81342009-04-29 17:30:04 +00002135 else
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002136 break;
2137 }
2138
Sebastian Redl7acafd02011-03-05 14:45:16 +00002139 SpecificationRange.setEnd(MatchRHSPunctuation(tok::r_paren, LParenLoc));
Sebastian Redl60618fa2011-03-12 11:50:43 +00002140 return Exceptions.empty() ? EST_DynamicNone : EST_Dynamic;
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002141}
Douglas Gregor6569d682009-05-27 23:11:45 +00002142
Douglas Gregordab60ad2010-10-01 18:44:50 +00002143/// ParseTrailingReturnType - Parse a trailing return type on a new-style
2144/// function declaration.
2145TypeResult Parser::ParseTrailingReturnType() {
2146 assert(Tok.is(tok::arrow) && "expected arrow");
2147
2148 ConsumeToken();
2149
2150 // FIXME: Need to suppress declarations when parsing this typename.
2151 // Otherwise in this function definition:
2152 //
2153 // auto f() -> struct X {}
2154 //
2155 // struct X is parsed as class definition because of the trailing
2156 // brace.
2157
2158 SourceRange Range;
2159 return ParseTypeName(&Range);
2160}
2161
Douglas Gregor6569d682009-05-27 23:11:45 +00002162/// \brief We have just started parsing the definition of a new class,
2163/// so push that class onto our stack of classes that is currently
2164/// being parsed.
John McCalleee1d542011-02-14 07:13:47 +00002165Sema::ParsingClassState
2166Parser::PushParsingClass(Decl *ClassDecl, bool NonNestedClass) {
Douglas Gregor26997fd2010-01-16 20:52:59 +00002167 assert((NonNestedClass || !ClassStack.empty()) &&
Douglas Gregor6569d682009-05-27 23:11:45 +00002168 "Nested class without outer class");
Douglas Gregor26997fd2010-01-16 20:52:59 +00002169 ClassStack.push(new ParsingClass(ClassDecl, NonNestedClass));
John McCalleee1d542011-02-14 07:13:47 +00002170 return Actions.PushParsingClass();
Douglas Gregor6569d682009-05-27 23:11:45 +00002171}
2172
2173/// \brief Deallocate the given parsed class and all of its nested
2174/// classes.
2175void Parser::DeallocateParsedClasses(Parser::ParsingClass *Class) {
Douglas Gregord54eb442010-10-12 16:25:54 +00002176 for (unsigned I = 0, N = Class->LateParsedDeclarations.size(); I != N; ++I)
2177 delete Class->LateParsedDeclarations[I];
Douglas Gregor6569d682009-05-27 23:11:45 +00002178 delete Class;
2179}
2180
2181/// \brief Pop the top class of the stack of classes that are
2182/// currently being parsed.
2183///
2184/// This routine should be called when we have finished parsing the
2185/// definition of a class, but have not yet popped the Scope
2186/// associated with the class's definition.
2187///
2188/// \returns true if the class we've popped is a top-level class,
2189/// false otherwise.
John McCalleee1d542011-02-14 07:13:47 +00002190void Parser::PopParsingClass(Sema::ParsingClassState state) {
Douglas Gregor6569d682009-05-27 23:11:45 +00002191 assert(!ClassStack.empty() && "Mismatched push/pop for class parsing");
Mike Stump1eb44332009-09-09 15:08:12 +00002192
John McCalleee1d542011-02-14 07:13:47 +00002193 Actions.PopParsingClass(state);
2194
Douglas Gregor6569d682009-05-27 23:11:45 +00002195 ParsingClass *Victim = ClassStack.top();
2196 ClassStack.pop();
2197 if (Victim->TopLevelClass) {
2198 // Deallocate all of the nested classes of this class,
2199 // recursively: we don't need to keep any of this information.
2200 DeallocateParsedClasses(Victim);
2201 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002202 }
Douglas Gregor6569d682009-05-27 23:11:45 +00002203 assert(!ClassStack.empty() && "Missing top-level class?");
2204
Douglas Gregord54eb442010-10-12 16:25:54 +00002205 if (Victim->LateParsedDeclarations.empty()) {
Douglas Gregor6569d682009-05-27 23:11:45 +00002206 // The victim is a nested class, but we will not need to perform
2207 // any processing after the definition of this class since it has
2208 // no members whose handling was delayed. Therefore, we can just
2209 // remove this nested class.
Douglas Gregord54eb442010-10-12 16:25:54 +00002210 DeallocateParsedClasses(Victim);
Douglas Gregor6569d682009-05-27 23:11:45 +00002211 return;
2212 }
2213
2214 // This nested class has some members that will need to be processed
2215 // after the top-level class is completely defined. Therefore, add
2216 // it to the list of nested classes within its parent.
Douglas Gregor23c94db2010-07-02 17:43:08 +00002217 assert(getCurScope()->isClassScope() && "Nested class outside of class scope?");
Douglas Gregord54eb442010-10-12 16:25:54 +00002218 ClassStack.top()->LateParsedDeclarations.push_back(new LateParsedClass(this, Victim));
Douglas Gregor23c94db2010-07-02 17:43:08 +00002219 Victim->TemplateScope = getCurScope()->getParent()->isTemplateParamScope();
Douglas Gregor6569d682009-05-27 23:11:45 +00002220}
Sean Huntbbd37c62009-11-21 08:43:09 +00002221
2222/// ParseCXX0XAttributes - Parse a C++0x attribute-specifier. Currently only
2223/// parses standard attributes.
2224///
2225/// [C++0x] attribute-specifier:
2226/// '[' '[' attribute-list ']' ']'
2227///
2228/// [C++0x] attribute-list:
2229/// attribute[opt]
2230/// attribute-list ',' attribute[opt]
2231///
2232/// [C++0x] attribute:
2233/// attribute-token attribute-argument-clause[opt]
2234///
2235/// [C++0x] attribute-token:
2236/// identifier
2237/// attribute-scoped-token
2238///
2239/// [C++0x] attribute-scoped-token:
2240/// attribute-namespace '::' identifier
2241///
2242/// [C++0x] attribute-namespace:
2243/// identifier
2244///
2245/// [C++0x] attribute-argument-clause:
2246/// '(' balanced-token-seq ')'
2247///
2248/// [C++0x] balanced-token-seq:
2249/// balanced-token
2250/// balanced-token-seq balanced-token
2251///
2252/// [C++0x] balanced-token:
2253/// '(' balanced-token-seq ')'
2254/// '[' balanced-token-seq ']'
2255/// '{' balanced-token-seq '}'
2256/// any token but '(', ')', '[', ']', '{', or '}'
John McCall7f040a92010-12-24 02:08:15 +00002257void Parser::ParseCXX0XAttributes(ParsedAttributesWithRange &attrs,
2258 SourceLocation *endLoc) {
Sean Huntbbd37c62009-11-21 08:43:09 +00002259 assert(Tok.is(tok::l_square) && NextToken().is(tok::l_square)
2260 && "Not a C++0x attribute list");
2261
2262 SourceLocation StartLoc = Tok.getLocation(), Loc;
Sean Huntbbd37c62009-11-21 08:43:09 +00002263
2264 ConsumeBracket();
2265 ConsumeBracket();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002266
Sean Huntbbd37c62009-11-21 08:43:09 +00002267 if (Tok.is(tok::comma)) {
2268 Diag(Tok.getLocation(), diag::err_expected_ident);
2269 ConsumeToken();
2270 }
2271
2272 while (Tok.is(tok::identifier) || Tok.is(tok::comma)) {
2273 // attribute not present
2274 if (Tok.is(tok::comma)) {
2275 ConsumeToken();
2276 continue;
2277 }
2278
2279 IdentifierInfo *ScopeName = 0, *AttrName = Tok.getIdentifierInfo();
2280 SourceLocation ScopeLoc, AttrLoc = ConsumeToken();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002281
Sean Huntbbd37c62009-11-21 08:43:09 +00002282 // scoped attribute
2283 if (Tok.is(tok::coloncolon)) {
2284 ConsumeToken();
2285
2286 if (!Tok.is(tok::identifier)) {
2287 Diag(Tok.getLocation(), diag::err_expected_ident);
2288 SkipUntil(tok::r_square, tok::comma, true, true);
2289 continue;
2290 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002291
Sean Huntbbd37c62009-11-21 08:43:09 +00002292 ScopeName = AttrName;
2293 ScopeLoc = AttrLoc;
2294
2295 AttrName = Tok.getIdentifierInfo();
2296 AttrLoc = ConsumeToken();
2297 }
2298
2299 bool AttrParsed = false;
2300 // No scoped names are supported; ideally we could put all non-standard
2301 // attributes into namespaces.
2302 if (!ScopeName) {
2303 switch(AttributeList::getKind(AttrName))
2304 {
2305 // No arguments
Sean Hunt7725e672009-11-25 04:20:27 +00002306 case AttributeList::AT_carries_dependency:
Anders Carlsson15e14a22011-01-23 21:33:18 +00002307 case AttributeList::AT_noreturn: {
Sean Huntbbd37c62009-11-21 08:43:09 +00002308 if (Tok.is(tok::l_paren)) {
2309 Diag(Tok.getLocation(), diag::err_cxx0x_attribute_forbids_arguments)
2310 << AttrName->getName();
2311 break;
2312 }
2313
John McCall7f040a92010-12-24 02:08:15 +00002314 attrs.add(AttrFactory.Create(AttrName, AttrLoc, 0, AttrLoc, 0,
2315 SourceLocation(), 0, 0, false, true));
Sean Huntbbd37c62009-11-21 08:43:09 +00002316 AttrParsed = true;
2317 break;
2318 }
2319
2320 // One argument; must be a type-id or assignment-expression
2321 case AttributeList::AT_aligned: {
2322 if (Tok.isNot(tok::l_paren)) {
2323 Diag(Tok.getLocation(), diag::err_cxx0x_attribute_requires_arguments)
2324 << AttrName->getName();
2325 break;
2326 }
2327 SourceLocation ParamLoc = ConsumeParen();
2328
John McCall60d7b3a2010-08-24 06:29:42 +00002329 ExprResult ArgExpr = ParseCXX0XAlignArgument(ParamLoc);
Sean Huntbbd37c62009-11-21 08:43:09 +00002330
2331 MatchRHSPunctuation(tok::r_paren, ParamLoc);
2332
2333 ExprVector ArgExprs(Actions);
2334 ArgExprs.push_back(ArgExpr.release());
John McCall7f040a92010-12-24 02:08:15 +00002335 attrs.add(AttrFactory.Create(AttrName, AttrLoc, 0, AttrLoc,
2336 0, ParamLoc, ArgExprs.take(), 1,
2337 false, true));
Sean Huntbbd37c62009-11-21 08:43:09 +00002338
2339 AttrParsed = true;
2340 break;
2341 }
2342
2343 // Silence warnings
2344 default: break;
2345 }
2346 }
2347
2348 // Skip the entire parameter clause, if any
2349 if (!AttrParsed && Tok.is(tok::l_paren)) {
2350 ConsumeParen();
2351 // SkipUntil maintains the balancedness of tokens.
2352 SkipUntil(tok::r_paren, false);
2353 }
2354 }
2355
2356 if (ExpectAndConsume(tok::r_square, diag::err_expected_rsquare))
2357 SkipUntil(tok::r_square, false);
2358 Loc = Tok.getLocation();
2359 if (ExpectAndConsume(tok::r_square, diag::err_expected_rsquare))
2360 SkipUntil(tok::r_square, false);
2361
John McCall7f040a92010-12-24 02:08:15 +00002362 attrs.Range = SourceRange(StartLoc, Loc);
Sean Huntbbd37c62009-11-21 08:43:09 +00002363}
2364
2365/// ParseCXX0XAlignArgument - Parse the argument to C++0x's [[align]]
2366/// attribute.
2367///
2368/// FIXME: Simply returns an alignof() expression if the argument is a
2369/// type. Ideally, the type should be propagated directly into Sema.
2370///
2371/// [C++0x] 'align' '(' type-id ')'
2372/// [C++0x] 'align' '(' assignment-expression ')'
John McCall60d7b3a2010-08-24 06:29:42 +00002373ExprResult Parser::ParseCXX0XAlignArgument(SourceLocation Start) {
Sean Huntbbd37c62009-11-21 08:43:09 +00002374 if (isTypeIdInParens()) {
John McCallf312b1e2010-08-26 23:41:50 +00002375 EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated);
Sean Huntbbd37c62009-11-21 08:43:09 +00002376 SourceLocation TypeLoc = Tok.getLocation();
John McCallb3d87482010-08-24 05:47:05 +00002377 ParsedType Ty = ParseTypeName().get();
Sean Huntbbd37c62009-11-21 08:43:09 +00002378 SourceRange TypeRange(Start, Tok.getLocation());
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002379 return Actions.ActOnUnaryExprOrTypeTraitExpr(TypeLoc, UETT_AlignOf, true,
2380 Ty.getAsOpaquePtr(), TypeRange);
Sean Huntbbd37c62009-11-21 08:43:09 +00002381 } else
2382 return ParseConstantExpression();
2383}
Francois Pichet334d47e2010-10-11 12:59:39 +00002384
2385/// ParseMicrosoftAttributes - Parse a Microsoft attribute [Attr]
2386///
2387/// [MS] ms-attribute:
2388/// '[' token-seq ']'
2389///
2390/// [MS] ms-attribute-seq:
2391/// ms-attribute[opt]
2392/// ms-attribute ms-attribute-seq
John McCall7f040a92010-12-24 02:08:15 +00002393void Parser::ParseMicrosoftAttributes(ParsedAttributes &attrs,
2394 SourceLocation *endLoc) {
Francois Pichet334d47e2010-10-11 12:59:39 +00002395 assert(Tok.is(tok::l_square) && "Not a Microsoft attribute list");
2396
2397 while (Tok.is(tok::l_square)) {
2398 ConsumeBracket();
2399 SkipUntil(tok::r_square, true, true);
John McCall7f040a92010-12-24 02:08:15 +00002400 if (endLoc) *endLoc = Tok.getLocation();
Francois Pichet334d47e2010-10-11 12:59:39 +00002401 ExpectAndConsume(tok::r_square, diag::err_expected_rsquare);
2402 }
2403}