blob: b277156a0d069e039cf5b4b694b5db32bd37d510 [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.
Ted Kremenek1e377652010-02-11 02:19:13 +000072 llvm::OwningPtr<AttributeList> AttrList;
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.
Ted Kremenek1e377652010-02-11 02:19:13 +000077 AttrList.reset(ParseGNUAttributes());
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)) {
81 if (AttrList)
82 Diag(attrTok, diag::err_unexpected_namespace_attributes_alias);
Sebastian Redld078e642010-08-27 23:12:46 +000083 if (InlineLoc.isValid())
84 Diag(InlineLoc, diag::err_inline_namespace_alias)
85 << FixItHint::CreateRemoval(InlineLoc);
Douglas Gregor6a588dd2009-06-17 19:49:00 +000086
Chris Lattner97144fc2009-04-02 04:16:50 +000087 return ParseNamespaceAlias(NamespaceLoc, IdentLoc, Ident, DeclEnd);
Douglas Gregor6a588dd2009-06-17 19:49:00 +000088 }
Mike Stump1eb44332009-09-09 15:08:12 +000089
Chris Lattner51448322009-03-29 14:02:43 +000090 if (Tok.isNot(tok::l_brace)) {
Mike Stump1eb44332009-09-09 15:08:12 +000091 Diag(Tok, Ident ? diag::err_expected_lbrace :
Chris Lattner51448322009-03-29 14:02:43 +000092 diag::err_expected_ident_lbrace);
John McCalld226f652010-08-21 09:40:31 +000093 return 0;
Chris Lattner8f08cb72007-08-25 06:57:03 +000094 }
Mike Stump1eb44332009-09-09 15:08:12 +000095
Chris Lattner51448322009-03-29 14:02:43 +000096 SourceLocation LBrace = ConsumeBrace();
97
Douglas Gregor23c94db2010-07-02 17:43:08 +000098 if (getCurScope()->isClassScope() || getCurScope()->isTemplateParamScope() ||
99 getCurScope()->isInObjcMethodScope() || getCurScope()->getBlockParent() ||
100 getCurScope()->getFnParent()) {
Douglas Gregor95f1b152010-05-14 05:08:22 +0000101 Diag(LBrace, diag::err_namespace_nonnamespace_scope);
102 SkipUntil(tok::r_brace, false);
John McCalld226f652010-08-21 09:40:31 +0000103 return 0;
Douglas Gregor95f1b152010-05-14 05:08:22 +0000104 }
105
Sebastian Redl88e64ca2010-08-31 00:36:45 +0000106 // If we're still good, complain about inline namespaces in non-C++0x now.
107 if (!getLang().CPlusPlus0x && InlineLoc.isValid())
108 Diag(InlineLoc, diag::ext_inline_namespace);
109
Chris Lattner51448322009-03-29 14:02:43 +0000110 // Enter a scope for the namespace.
111 ParseScope NamespaceScope(this, Scope::DeclScope);
112
John McCalld226f652010-08-21 09:40:31 +0000113 Decl *NamespcDecl =
Sebastian Redld078e642010-08-27 23:12:46 +0000114 Actions.ActOnStartNamespaceDef(getCurScope(), InlineLoc, IdentLoc, Ident,
115 LBrace, AttrList.get());
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)) {
121 CXX0XAttributeList Attr;
122 if (getLang().CPlusPlus0x && isCXX0XAttributeSpecifier())
123 Attr = ParseCXX0XAttributes();
124 ParseExternalDeclaration(Attr);
125 }
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///
John McCalld226f652010-08-21 09:40:31 +0000184Decl *Parser::ParseLinkage(ParsingDeclSpec &DS,
Fariborz Jahanian3acd9aa2009-12-09 21:39:38 +0000185 unsigned Context) {
Douglas Gregorc19923d2008-11-21 16:10:08 +0000186 assert(Tok.is(tok::string_literal) && "Not a string literal!");
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000187 llvm::SmallString<8> LangBuffer;
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000188 // LangBuffer is guaranteed to be big enough.
Douglas Gregor453091c2010-03-16 22:30:13 +0000189 bool Invalid = false;
190 llvm::StringRef Lang = PP.getSpelling(Tok, LangBuffer, &Invalid);
191 if (Invalid)
John McCalld226f652010-08-21 09:40:31 +0000192 return 0;
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000193
194 SourceLocation Loc = ConsumeStringToken();
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000195
Douglas Gregor074149e2009-01-05 19:45:36 +0000196 ParseScope LinkageScope(this, Scope::DeclScope);
John McCalld226f652010-08-21 09:40:31 +0000197 Decl *LinkageSpec
Douglas Gregor23c94db2010-07-02 17:43:08 +0000198 = Actions.ActOnStartLinkageSpecification(getCurScope(),
Douglas Gregor074149e2009-01-05 19:45:36 +0000199 /*FIXME: */SourceLocation(),
Benjamin Kramerd5663812010-05-03 13:08:54 +0000200 Loc, Lang,
Mike Stump1eb44332009-09-09 15:08:12 +0000201 Tok.is(tok::l_brace)? Tok.getLocation()
Douglas Gregor074149e2009-01-05 19:45:36 +0000202 : SourceLocation());
203
Sean Huntbbd37c62009-11-21 08:43:09 +0000204 CXX0XAttributeList Attr;
205 if (getLang().CPlusPlus0x && isCXX0XAttributeSpecifier()) {
206 Attr = ParseCXX0XAttributes();
207 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000208
Douglas Gregor074149e2009-01-05 19:45:36 +0000209 if (Tok.isNot(tok::l_brace)) {
Abramo Bagnara35f9a192010-07-30 16:47:02 +0000210 DS.setExternInLinkageSpec(true);
Douglas Gregor09a63c92010-08-24 14:14:45 +0000211 ParseExternalDeclaration(Attr, &DS);
Douglas Gregor23c94db2010-07-02 17:43:08 +0000212 return Actions.ActOnFinishLinkageSpecification(getCurScope(), LinkageSpec,
Douglas Gregor074149e2009-01-05 19:45:36 +0000213 SourceLocation());
Mike Stump1eb44332009-09-09 15:08:12 +0000214 }
Douglas Gregorf44515a2008-12-16 22:23:02 +0000215
Douglas Gregor63a01132010-02-07 08:38:28 +0000216 DS.abort();
217
Sean Huntbbd37c62009-11-21 08:43:09 +0000218 if (Attr.HasAttr)
219 Diag(Attr.Range.getBegin(), diag::err_attributes_not_allowed)
220 << Attr.Range;
221
Douglas Gregorf44515a2008-12-16 22:23:02 +0000222 SourceLocation LBrace = ConsumeBrace();
Douglas Gregorf44515a2008-12-16 22:23:02 +0000223 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
Sean Huntbbd37c62009-11-21 08:43:09 +0000224 CXX0XAttributeList Attr;
225 if (getLang().CPlusPlus0x && isCXX0XAttributeSpecifier())
226 Attr = ParseCXX0XAttributes();
227 ParseExternalDeclaration(Attr);
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000228 }
229
Douglas Gregorf44515a2008-12-16 22:23:02 +0000230 SourceLocation RBrace = MatchRHSPunctuation(tok::r_brace, LBrace);
Douglas Gregor23c94db2010-07-02 17:43:08 +0000231 return Actions.ActOnFinishLinkageSpecification(getCurScope(), LinkageSpec, RBrace);
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000232}
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000233
Douglas Gregorf780abc2008-12-30 03:27:21 +0000234/// ParseUsingDirectiveOrDeclaration - Parse C++ using using-declaration or
235/// using-directive. Assumes that current token is 'using'.
John McCalld226f652010-08-21 09:40:31 +0000236Decl *Parser::ParseUsingDirectiveOrDeclaration(unsigned Context,
Sean Huntbbd37c62009-11-21 08:43:09 +0000237 SourceLocation &DeclEnd,
238 CXX0XAttributeList Attr) {
Douglas Gregorf780abc2008-12-30 03:27:21 +0000239 assert(Tok.is(tok::kw_using) && "Not using token");
240
241 // Eat 'using'.
242 SourceLocation UsingLoc = ConsumeToken();
243
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000244 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000245 Actions.CodeCompleteUsing(getCurScope());
Douglas Gregordc845342010-05-25 05:58:43 +0000246 ConsumeCodeCompletionToken();
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000247 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000248
Chris Lattner2f274772009-01-06 06:55:51 +0000249 if (Tok.is(tok::kw_namespace))
Douglas Gregorf780abc2008-12-30 03:27:21 +0000250 // Next token after 'using' is 'namespace' so it must be using-directive
Sean Huntbbd37c62009-11-21 08:43:09 +0000251 return ParseUsingDirective(Context, UsingLoc, DeclEnd, Attr.AttrList);
252
253 if (Attr.HasAttr)
254 Diag(Attr.Range.getBegin(), diag::err_attributes_not_allowed)
255 << Attr.Range;
Chris Lattner2f274772009-01-06 06:55:51 +0000256
257 // Otherwise, it must be using-declaration.
Sean Huntbbd37c62009-11-21 08:43:09 +0000258 // Ignore illegal attributes (the caller should already have issued an error.
Chris Lattner97144fc2009-04-02 04:16:50 +0000259 return ParseUsingDeclaration(Context, UsingLoc, DeclEnd);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000260}
261
262/// ParseUsingDirective - Parse C++ using-directive, assumes
263/// that current token is 'namespace' and 'using' was already parsed.
264///
265/// using-directive: [C++ 7.3.p4: namespace.udir]
266/// 'using' 'namespace' ::[opt] nested-name-specifier[opt]
267/// namespace-name ;
268/// [GNU] using-directive:
269/// 'using' 'namespace' ::[opt] nested-name-specifier[opt]
270/// namespace-name attributes[opt] ;
271///
John McCalld226f652010-08-21 09:40:31 +0000272Decl *Parser::ParseUsingDirective(unsigned Context,
Chris Lattner97144fc2009-04-02 04:16:50 +0000273 SourceLocation UsingLoc,
Sean Huntbbd37c62009-11-21 08:43:09 +0000274 SourceLocation &DeclEnd,
275 AttributeList *Attr) {
Douglas Gregorf780abc2008-12-30 03:27:21 +0000276 assert(Tok.is(tok::kw_namespace) && "Not 'namespace' token");
277
278 // Eat 'namespace'.
279 SourceLocation NamespcLoc = ConsumeToken();
280
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000281 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000282 Actions.CodeCompleteUsingDirective(getCurScope());
Douglas Gregordc845342010-05-25 05:58:43 +0000283 ConsumeCodeCompletionToken();
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000284 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000285
Douglas Gregorf780abc2008-12-30 03:27:21 +0000286 CXXScopeSpec SS;
287 // Parse (optional) nested-name-specifier.
John McCallb3d87482010-08-24 05:47:05 +0000288 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000289
Douglas Gregorf780abc2008-12-30 03:27:21 +0000290 IdentifierInfo *NamespcName = 0;
291 SourceLocation IdentLoc = SourceLocation();
292
293 // Parse namespace-name.
Chris Lattner823c44e2009-01-06 07:27:21 +0000294 if (SS.isInvalid() || Tok.isNot(tok::identifier)) {
Douglas Gregorf780abc2008-12-30 03:27:21 +0000295 Diag(Tok, diag::err_expected_namespace_name);
296 // If there was invalid namespace name, skip to end of decl, and eat ';'.
297 SkipUntil(tok::semi);
298 // FIXME: Are there cases, when we would like to call ActOnUsingDirective?
John McCalld226f652010-08-21 09:40:31 +0000299 return 0;
Douglas Gregorf780abc2008-12-30 03:27:21 +0000300 }
Mike Stump1eb44332009-09-09 15:08:12 +0000301
Chris Lattner823c44e2009-01-06 07:27:21 +0000302 // Parse identifier.
303 NamespcName = Tok.getIdentifierInfo();
304 IdentLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000305
Chris Lattner823c44e2009-01-06 07:27:21 +0000306 // Parse (optional) attributes (most likely GNU strong-using extension).
Sean Huntbbd37c62009-11-21 08:43:09 +0000307 bool GNUAttr = false;
308 if (Tok.is(tok::kw___attribute)) {
309 GNUAttr = true;
310 Attr = addAttributeLists(Attr, ParseGNUAttributes());
311 }
Mike Stump1eb44332009-09-09 15:08:12 +0000312
Chris Lattner823c44e2009-01-06 07:27:21 +0000313 // Eat ';'.
Chris Lattner97144fc2009-04-02 04:16:50 +0000314 DeclEnd = Tok.getLocation();
Chris Lattner6869d8e2009-06-14 00:07:48 +0000315 ExpectAndConsume(tok::semi,
Sean Huntbbd37c62009-11-21 08:43:09 +0000316 GNUAttr ? diag::err_expected_semi_after_attribute_list :
Chris Lattner6869d8e2009-06-14 00:07:48 +0000317 diag::err_expected_semi_after_namespace_name, "", tok::semi);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000318
Douglas Gregor23c94db2010-07-02 17:43:08 +0000319 return Actions.ActOnUsingDirective(getCurScope(), UsingLoc, NamespcLoc, SS,
Sean Huntbbd37c62009-11-21 08:43:09 +0000320 IdentLoc, NamespcName, Attr);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000321}
322
323/// ParseUsingDeclaration - Parse C++ using-declaration. Assumes that
324/// 'using' was already seen.
325///
326/// using-declaration: [C++ 7.3.p3: namespace.udecl]
327/// 'using' 'typename'[opt] ::[opt] nested-name-specifier
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000328/// unqualified-id
329/// 'using' :: unqualified-id
Douglas Gregorf780abc2008-12-30 03:27:21 +0000330///
John McCalld226f652010-08-21 09:40:31 +0000331Decl *Parser::ParseUsingDeclaration(unsigned Context,
Chris Lattner97144fc2009-04-02 04:16:50 +0000332 SourceLocation UsingLoc,
Anders Carlsson595adc12009-08-29 19:54:19 +0000333 SourceLocation &DeclEnd,
334 AccessSpecifier AS) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000335 CXXScopeSpec SS;
John McCall7ba107a2009-11-18 02:36:19 +0000336 SourceLocation TypenameLoc;
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000337 bool IsTypeName;
338
339 // Ignore optional 'typename'.
Douglas Gregor12c118a2009-11-04 16:30:06 +0000340 // FIXME: This is wrong; we should parse this as a typename-specifier.
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000341 if (Tok.is(tok::kw_typename)) {
John McCall7ba107a2009-11-18 02:36:19 +0000342 TypenameLoc = Tok.getLocation();
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000343 ConsumeToken();
344 IsTypeName = true;
345 }
346 else
347 IsTypeName = false;
348
349 // Parse nested-name-specifier.
John McCallb3d87482010-08-24 05:47:05 +0000350 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000351
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000352 // Check nested-name specifier.
353 if (SS.isInvalid()) {
354 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000355 return 0;
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000356 }
Douglas Gregor12c118a2009-11-04 16:30:06 +0000357
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000358 // Parse the unqualified-id. We allow parsing of both constructor and
Douglas Gregor12c118a2009-11-04 16:30:06 +0000359 // destructor names and allow the action module to diagnose any semantic
360 // errors.
361 UnqualifiedId Name;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000362 if (ParseUnqualifiedId(SS,
Douglas Gregor12c118a2009-11-04 16:30:06 +0000363 /*EnteringContext=*/false,
364 /*AllowDestructorName=*/true,
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000365 /*AllowConstructorName=*/true,
John McCallb3d87482010-08-24 05:47:05 +0000366 ParsedType(),
Douglas Gregor12c118a2009-11-04 16:30:06 +0000367 Name)) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000368 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000369 return 0;
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000370 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000371
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000372 // Parse (optional) attributes (most likely GNU strong-using extension).
Ted Kremenek1e377652010-02-11 02:19:13 +0000373 llvm::OwningPtr<AttributeList> AttrList;
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000374 if (Tok.is(tok::kw___attribute))
Ted Kremenek1e377652010-02-11 02:19:13 +0000375 AttrList.reset(ParseGNUAttributes());
Mike Stump1eb44332009-09-09 15:08:12 +0000376
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000377 // Eat ';'.
378 DeclEnd = Tok.getLocation();
379 ExpectAndConsume(tok::semi, diag::err_expected_semi_after,
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000380 AttrList ? "attributes list" : "using declaration",
Douglas Gregor12c118a2009-11-04 16:30:06 +0000381 tok::semi);
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000382
Douglas Gregor23c94db2010-07-02 17:43:08 +0000383 return Actions.ActOnUsingDeclaration(getCurScope(), AS, true, UsingLoc, SS, Name,
Ted Kremenek1e377652010-02-11 02:19:13 +0000384 AttrList.get(), IsTypeName, TypenameLoc);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000385}
386
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000387/// ParseStaticAssertDeclaration - Parse C++0x static_assert-declaratoion.
388///
389/// static_assert-declaration:
390/// static_assert ( constant-expression , string-literal ) ;
391///
John McCalld226f652010-08-21 09:40:31 +0000392Decl *Parser::ParseStaticAssertDeclaration(SourceLocation &DeclEnd){
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000393 assert(Tok.is(tok::kw_static_assert) && "Not a static_assert declaration");
394 SourceLocation StaticAssertLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000395
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000396 if (Tok.isNot(tok::l_paren)) {
397 Diag(Tok, diag::err_expected_lparen);
John McCalld226f652010-08-21 09:40:31 +0000398 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000399 }
Mike Stump1eb44332009-09-09 15:08:12 +0000400
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000401 SourceLocation LParenLoc = ConsumeParen();
Douglas Gregore0762c92009-06-19 23:52:42 +0000402
John McCall60d7b3a2010-08-24 06:29:42 +0000403 ExprResult AssertExpr(ParseConstantExpression());
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000404 if (AssertExpr.isInvalid()) {
405 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000406 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000407 }
Mike Stump1eb44332009-09-09 15:08:12 +0000408
Anders Carlssonad5f9602009-03-13 23:29:20 +0000409 if (ExpectAndConsume(tok::comma, diag::err_expected_comma, "", tok::semi))
John McCalld226f652010-08-21 09:40:31 +0000410 return 0;
Anders Carlssonad5f9602009-03-13 23:29:20 +0000411
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000412 if (Tok.isNot(tok::string_literal)) {
413 Diag(Tok, diag::err_expected_string_literal);
414 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000415 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000416 }
Mike Stump1eb44332009-09-09 15:08:12 +0000417
John McCall60d7b3a2010-08-24 06:29:42 +0000418 ExprResult AssertMessage(ParseStringLiteralExpression());
Mike Stump1eb44332009-09-09 15:08:12 +0000419 if (AssertMessage.isInvalid())
John McCalld226f652010-08-21 09:40:31 +0000420 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000421
Anders Carlsson94b15fb2009-03-15 18:44:04 +0000422 MatchRHSPunctuation(tok::r_paren, LParenLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000423
Chris Lattner97144fc2009-04-02 04:16:50 +0000424 DeclEnd = Tok.getLocation();
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000425 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_static_assert);
426
John McCall9ae2f072010-08-23 23:25:46 +0000427 return Actions.ActOnStaticAssertDeclaration(StaticAssertLoc,
428 AssertExpr.take(),
429 AssertMessage.take());
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000430}
431
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000432/// ParseDecltypeSpecifier - Parse a C++0x decltype specifier.
433///
434/// 'decltype' ( expression )
435///
436void Parser::ParseDecltypeSpecifier(DeclSpec &DS) {
437 assert(Tok.is(tok::kw_decltype) && "Not a decltype specifier");
438
439 SourceLocation StartLoc = ConsumeToken();
440 SourceLocation LParenLoc = Tok.getLocation();
Mike Stump1eb44332009-09-09 15:08:12 +0000441
442 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after,
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000443 "decltype")) {
444 SkipUntil(tok::r_paren);
445 return;
446 }
Mike Stump1eb44332009-09-09 15:08:12 +0000447
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000448 // Parse the expression
Mike Stump1eb44332009-09-09 15:08:12 +0000449
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000450 // C++0x [dcl.type.simple]p4:
451 // The operand of the decltype specifier is an unevaluated operand.
452 EnterExpressionEvaluationContext Unevaluated(Actions,
John McCallf312b1e2010-08-26 23:41:50 +0000453 Sema::Unevaluated);
John McCall60d7b3a2010-08-24 06:29:42 +0000454 ExprResult Result = ParseExpression();
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000455 if (Result.isInvalid()) {
456 SkipUntil(tok::r_paren);
457 return;
458 }
Mike Stump1eb44332009-09-09 15:08:12 +0000459
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000460 // Match the ')'
461 SourceLocation RParenLoc;
462 if (Tok.is(tok::r_paren))
463 RParenLoc = ConsumeParen();
464 else
465 MatchRHSPunctuation(tok::r_paren, LParenLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000466
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000467 if (RParenLoc.isInvalid())
468 return;
469
470 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +0000471 unsigned DiagID;
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000472 // Check for duplicate type specifiers (e.g. "int decltype(a)").
Mike Stump1eb44332009-09-09 15:08:12 +0000473 if (DS.SetTypeSpecType(DeclSpec::TST_decltype, StartLoc, PrevSpec,
John McCallfec54012009-08-03 20:12:06 +0000474 DiagID, Result.release()))
475 Diag(StartLoc, DiagID) << PrevSpec;
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000476}
477
Douglas Gregor42a552f2008-11-05 20:51:48 +0000478/// ParseClassName - Parse a C++ class-name, which names a class. Note
479/// that we only check that the result names a type; semantic analysis
480/// will need to verify that the type names a class. The result is
Douglas Gregor7f43d672009-02-25 23:52:28 +0000481/// either a type or NULL, depending on whether a type name was
Douglas Gregor42a552f2008-11-05 20:51:48 +0000482/// found.
483///
484/// class-name: [C++ 9.1]
485/// identifier
Douglas Gregor7f43d672009-02-25 23:52:28 +0000486/// simple-template-id
Mike Stump1eb44332009-09-09 15:08:12 +0000487///
Douglas Gregor31a19b62009-04-01 21:51:26 +0000488Parser::TypeResult Parser::ParseClassName(SourceLocation &EndLocation,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +0000489 CXXScopeSpec *SS) {
Douglas Gregor7f43d672009-02-25 23:52:28 +0000490 // Check whether we have a template-id that names a type.
491 if (Tok.is(tok::annot_template_id)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000492 TemplateIdAnnotation *TemplateId
Douglas Gregor7f43d672009-02-25 23:52:28 +0000493 = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
Douglas Gregord9b600c2010-01-12 17:52:59 +0000494 if (TemplateId->Kind == TNK_Type_template ||
495 TemplateId->Kind == TNK_Dependent_template_name) {
Douglas Gregor31a19b62009-04-01 21:51:26 +0000496 AnnotateTemplateIdTokenAsType(SS);
Douglas Gregor7f43d672009-02-25 23:52:28 +0000497
498 assert(Tok.is(tok::annot_typename) && "template-id -> type failed");
John McCallb3d87482010-08-24 05:47:05 +0000499 ParsedType Type = getTypeAnnotation(Tok);
Douglas Gregor7f43d672009-02-25 23:52:28 +0000500 EndLocation = Tok.getAnnotationEndLoc();
501 ConsumeToken();
Douglas Gregor31a19b62009-04-01 21:51:26 +0000502
503 if (Type)
504 return Type;
505 return true;
Douglas Gregor7f43d672009-02-25 23:52:28 +0000506 }
507
508 // Fall through to produce an error below.
509 }
510
Douglas Gregor42a552f2008-11-05 20:51:48 +0000511 if (Tok.isNot(tok::identifier)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000512 Diag(Tok, diag::err_expected_class_name);
Douglas Gregor31a19b62009-04-01 21:51:26 +0000513 return true;
Douglas Gregor42a552f2008-11-05 20:51:48 +0000514 }
515
Douglas Gregor84d0a192010-01-12 21:28:44 +0000516 IdentifierInfo *Id = Tok.getIdentifierInfo();
517 SourceLocation IdLoc = ConsumeToken();
518
519 if (Tok.is(tok::less)) {
520 // It looks the user intended to write a template-id here, but the
521 // template-name was wrong. Try to fix that.
522 TemplateNameKind TNK = TNK_Type_template;
523 TemplateTy Template;
Douglas Gregor23c94db2010-07-02 17:43:08 +0000524 if (!Actions.DiagnoseUnknownTemplateName(*Id, IdLoc, getCurScope(),
Douglas Gregor84d0a192010-01-12 21:28:44 +0000525 SS, Template, TNK)) {
526 Diag(IdLoc, diag::err_unknown_template_name)
527 << Id;
528 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000529
Douglas Gregor84d0a192010-01-12 21:28:44 +0000530 if (!Template)
531 return true;
532
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000533 // Form the template name
Douglas Gregor84d0a192010-01-12 21:28:44 +0000534 UnqualifiedId TemplateName;
535 TemplateName.setIdentifier(Id, IdLoc);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000536
Douglas Gregor84d0a192010-01-12 21:28:44 +0000537 // Parse the full template-id, then turn it into a type.
538 if (AnnotateTemplateIdToken(Template, TNK, SS, TemplateName,
539 SourceLocation(), true))
540 return true;
541 if (TNK == TNK_Dependent_template_name)
542 AnnotateTemplateIdTokenAsType(SS);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000543
Douglas Gregor84d0a192010-01-12 21:28:44 +0000544 // If we didn't end up with a typename token, there's nothing more we
545 // can do.
546 if (Tok.isNot(tok::annot_typename))
547 return true;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000548
Douglas Gregor84d0a192010-01-12 21:28:44 +0000549 // Retrieve the type from the annotation token, consume that token, and
550 // return.
551 EndLocation = Tok.getAnnotationEndLoc();
John McCallb3d87482010-08-24 05:47:05 +0000552 ParsedType Type = getTypeAnnotation(Tok);
Douglas Gregor84d0a192010-01-12 21:28:44 +0000553 ConsumeToken();
554 return Type;
555 }
556
Douglas Gregor42a552f2008-11-05 20:51:48 +0000557 // We have an identifier; check whether it is actually a type.
John McCallb3d87482010-08-24 05:47:05 +0000558 ParsedType Type = Actions.getTypeName(*Id, IdLoc, getCurScope(), SS, true);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000559 if (!Type) {
Douglas Gregor124b8782010-02-16 19:09:40 +0000560 Diag(IdLoc, diag::err_expected_class_name);
Douglas Gregor31a19b62009-04-01 21:51:26 +0000561 return true;
Douglas Gregor42a552f2008-11-05 20:51:48 +0000562 }
563
564 // Consume the identifier.
Douglas Gregor84d0a192010-01-12 21:28:44 +0000565 EndLocation = IdLoc;
Nick Lewycky56062202010-07-26 16:56:01 +0000566
567 // Fake up a Declarator to use with ActOnTypeName.
568 DeclSpec DS;
569 DS.SetRangeStart(IdLoc);
570 DS.SetRangeEnd(EndLocation);
571 DS.getTypeSpecScope() = *SS;
572
573 const char *PrevSpec = 0;
574 unsigned DiagID;
575 DS.SetTypeSpecType(TST_typename, IdLoc, PrevSpec, DiagID, Type);
576
577 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
578 return Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
Douglas Gregor42a552f2008-11-05 20:51:48 +0000579}
580
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000581/// ParseClassSpecifier - Parse a C++ class-specifier [C++ class] or
582/// elaborated-type-specifier [C++ dcl.type.elab]; we can't tell which
583/// until we reach the start of a definition or see a token that
Sebastian Redld9bafa72010-02-03 21:21:43 +0000584/// cannot start a definition. If SuppressDeclarations is true, we do know.
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000585///
586/// class-specifier: [C++ class]
587/// class-head '{' member-specification[opt] '}'
588/// class-head '{' member-specification[opt] '}' attributes[opt]
589/// class-head:
590/// class-key identifier[opt] base-clause[opt]
591/// class-key nested-name-specifier identifier base-clause[opt]
592/// class-key nested-name-specifier[opt] simple-template-id
593/// base-clause[opt]
594/// [GNU] class-key attributes[opt] identifier[opt] base-clause[opt]
Mike Stump1eb44332009-09-09 15:08:12 +0000595/// [GNU] class-key attributes[opt] nested-name-specifier
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000596/// identifier base-clause[opt]
Mike Stump1eb44332009-09-09 15:08:12 +0000597/// [GNU] class-key attributes[opt] nested-name-specifier[opt]
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000598/// simple-template-id base-clause[opt]
599/// class-key:
600/// 'class'
601/// 'struct'
602/// 'union'
603///
604/// elaborated-type-specifier: [C++ dcl.type.elab]
Mike Stump1eb44332009-09-09 15:08:12 +0000605/// class-key ::[opt] nested-name-specifier[opt] identifier
606/// class-key ::[opt] nested-name-specifier[opt] 'template'[opt]
607/// simple-template-id
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000608///
609/// Note that the C++ class-specifier and elaborated-type-specifier,
610/// together, subsume the C99 struct-or-union-specifier:
611///
612/// struct-or-union-specifier: [C99 6.7.2.1]
613/// struct-or-union identifier[opt] '{' struct-contents '}'
614/// struct-or-union identifier
615/// [GNU] struct-or-union attributes[opt] identifier[opt] '{' struct-contents
616/// '}' attributes[opt]
617/// [GNU] struct-or-union attributes[opt] identifier
618/// struct-or-union:
619/// 'struct'
620/// 'union'
Chris Lattner4c97d762009-04-12 21:49:30 +0000621void Parser::ParseClassSpecifier(tok::TokenKind TagTokKind,
622 SourceLocation StartLoc, DeclSpec &DS,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000623 const ParsedTemplateInfo &TemplateInfo,
Sebastian Redld9bafa72010-02-03 21:21:43 +0000624 AccessSpecifier AS, bool SuppressDeclarations){
Chris Lattner4c97d762009-04-12 21:49:30 +0000625 DeclSpec::TST TagType;
626 if (TagTokKind == tok::kw_struct)
627 TagType = DeclSpec::TST_struct;
628 else if (TagTokKind == tok::kw_class)
629 TagType = DeclSpec::TST_class;
630 else {
631 assert(TagTokKind == tok::kw_union && "Not a class specifier");
632 TagType = DeclSpec::TST_union;
633 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000634
Douglas Gregor374929f2009-09-18 15:37:17 +0000635 if (Tok.is(tok::code_completion)) {
636 // Code completion for a struct, class, or union name.
Douglas Gregor23c94db2010-07-02 17:43:08 +0000637 Actions.CodeCompleteTag(getCurScope(), TagType);
Douglas Gregordc845342010-05-25 05:58:43 +0000638 ConsumeCodeCompletionToken();
Douglas Gregor374929f2009-09-18 15:37:17 +0000639 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000640
Chandler Carruth926c4b42010-06-28 08:39:25 +0000641 // C++03 [temp.explicit] 14.7.2/8:
642 // The usual access checking rules do not apply to names used to specify
643 // explicit instantiations.
644 //
645 // As an extension we do not perform access checking on the names used to
646 // specify explicit specializations either. This is important to allow
647 // specializing traits classes for private types.
648 bool SuppressingAccessChecks = false;
649 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation ||
650 TemplateInfo.Kind == ParsedTemplateInfo::ExplicitSpecialization) {
651 Actions.ActOnStartSuppressingAccessChecks();
652 SuppressingAccessChecks = true;
653 }
654
Sean Huntbbd37c62009-11-21 08:43:09 +0000655 AttributeList *AttrList = 0;
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000656 // If attributes exist after tag, parse them.
657 if (Tok.is(tok::kw___attribute))
Sean Huntbbd37c62009-11-21 08:43:09 +0000658 AttrList = ParseGNUAttributes();
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000659
Steve Narofff59e17e2008-12-24 20:59:21 +0000660 // If declspecs exist after tag, parse them.
John McCallb1d397c2010-08-05 17:13:11 +0000661 while (Tok.is(tok::kw___declspec))
Sean Huntbbd37c62009-11-21 08:43:09 +0000662 AttrList = ParseMicrosoftDeclSpec(AttrList);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000663
Sean Huntbbd37c62009-11-21 08:43:09 +0000664 // If C++0x attributes exist here, parse them.
665 // FIXME: Are we consistent with the ordering of parsing of different
666 // styles of attributes?
667 if (isCXX0XAttributeSpecifier())
668 AttrList = addAttributeLists(AttrList, ParseCXX0XAttributes().AttrList);
Mike Stump1eb44332009-09-09 15:08:12 +0000669
Douglas Gregorb117a602009-09-04 05:53:02 +0000670 if (TagType == DeclSpec::TST_struct && Tok.is(tok::kw___is_pod)) {
671 // GNU libstdc++ 4.2 uses __is_pod as the name of a struct template, but
672 // __is_pod is a keyword in GCC >= 4.3. Therefore, when we see the
Mike Stump1eb44332009-09-09 15:08:12 +0000673 // token sequence "struct __is_pod", make __is_pod into a normal
Douglas Gregorb117a602009-09-04 05:53:02 +0000674 // identifier rather than a keyword, to allow libstdc++ 4.2 to work
675 // properly.
Argyrios Kyrtzidis646395b2010-08-11 22:55:12 +0000676 Tok.getIdentifierInfo()->RevertTokenIDToIdentifier();
Douglas Gregorb117a602009-09-04 05:53:02 +0000677 Tok.setKind(tok::identifier);
678 }
679
680 if (TagType == DeclSpec::TST_struct && Tok.is(tok::kw___is_empty)) {
681 // GNU libstdc++ 4.2 uses __is_empty as the name of a struct template, but
682 // __is_empty is a keyword in GCC >= 4.3. Therefore, when we see the
Mike Stump1eb44332009-09-09 15:08:12 +0000683 // token sequence "struct __is_empty", make __is_empty into a normal
Douglas Gregorb117a602009-09-04 05:53:02 +0000684 // identifier rather than a keyword, to allow libstdc++ 4.2 to work
685 // properly.
Argyrios Kyrtzidis646395b2010-08-11 22:55:12 +0000686 Tok.getIdentifierInfo()->RevertTokenIDToIdentifier();
Douglas Gregorb117a602009-09-04 05:53:02 +0000687 Tok.setKind(tok::identifier);
688 }
Mike Stump1eb44332009-09-09 15:08:12 +0000689
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000690 // Parse the (optional) nested-name-specifier.
John McCallaa87d332009-12-12 11:40:51 +0000691 CXXScopeSpec &SS = DS.getTypeSpecScope();
Chris Lattner08d92ec2009-12-10 00:32:41 +0000692 if (getLang().CPlusPlus) {
693 // "FOO : BAR" is not a potential typo for "FOO::BAR".
694 ColonProtectionRAIIObject X(*this);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000695
John McCallb3d87482010-08-24 05:47:05 +0000696 if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(), true))
John McCall207014e2010-07-30 06:26:29 +0000697 DS.SetTypeSpecError();
John McCall9ba61662010-02-26 08:45:28 +0000698 if (SS.isSet())
Chris Lattner08d92ec2009-12-10 00:32:41 +0000699 if (Tok.isNot(tok::identifier) && Tok.isNot(tok::annot_template_id))
700 Diag(Tok, diag::err_expected_ident);
701 }
Douglas Gregorcc636682009-02-17 23:15:12 +0000702
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000703 TemplateParameterLists *TemplateParams = TemplateInfo.TemplateParams;
704
Douglas Gregorcc636682009-02-17 23:15:12 +0000705 // Parse the (optional) class name or simple-template-id.
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000706 IdentifierInfo *Name = 0;
707 SourceLocation NameLoc;
Douglas Gregor39a8de12009-02-25 19:37:18 +0000708 TemplateIdAnnotation *TemplateId = 0;
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000709 if (Tok.is(tok::identifier)) {
710 Name = Tok.getIdentifierInfo();
711 NameLoc = ConsumeToken();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000712
Douglas Gregor5ee37342010-05-30 22:30:21 +0000713 if (Tok.is(tok::less) && getLang().CPlusPlus) {
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000714 // The name was supposed to refer to a template, but didn't.
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000715 // Eat the template argument list and try to continue parsing this as
716 // a class (or template thereof).
717 TemplateArgList TemplateArgs;
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000718 SourceLocation LAngleLoc, RAngleLoc;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000719 if (ParseTemplateIdAfterTemplateName(TemplateTy(), NameLoc, &SS,
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000720 true, LAngleLoc,
Douglas Gregor314b97f2009-11-10 19:49:08 +0000721 TemplateArgs, RAngleLoc)) {
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000722 // We couldn't parse the template argument list at all, so don't
723 // try to give any location information for the list.
724 LAngleLoc = RAngleLoc = SourceLocation();
725 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000726
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000727 Diag(NameLoc, diag::err_explicit_spec_non_template)
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000728 << (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation)
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000729 << (TagType == DeclSpec::TST_class? 0
730 : TagType == DeclSpec::TST_struct? 1
731 : 2)
732 << Name
733 << SourceRange(LAngleLoc, RAngleLoc);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000734
735 // Strip off the last template parameter list if it was empty, since
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000736 // we've removed its template argument list.
737 if (TemplateParams && TemplateInfo.LastParameterListWasEmpty) {
738 if (TemplateParams && TemplateParams->size() > 1) {
739 TemplateParams->pop_back();
740 } else {
741 TemplateParams = 0;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000742 const_cast<ParsedTemplateInfo&>(TemplateInfo).Kind
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000743 = ParsedTemplateInfo::NonTemplate;
744 }
745 } else if (TemplateInfo.Kind
746 == ParsedTemplateInfo::ExplicitInstantiation) {
747 // Pretend this is just a forward declaration.
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000748 TemplateParams = 0;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000749 const_cast<ParsedTemplateInfo&>(TemplateInfo).Kind
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000750 = ParsedTemplateInfo::NonTemplate;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000751 const_cast<ParsedTemplateInfo&>(TemplateInfo).TemplateLoc
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000752 = SourceLocation();
753 const_cast<ParsedTemplateInfo&>(TemplateInfo).ExternLoc
754 = SourceLocation();
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000755 }
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000756 }
Douglas Gregor39a8de12009-02-25 19:37:18 +0000757 } else if (Tok.is(tok::annot_template_id)) {
758 TemplateId = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
759 NameLoc = ConsumeToken();
Douglas Gregorcc636682009-02-17 23:15:12 +0000760
Douglas Gregorc45c2322009-03-31 00:43:58 +0000761 if (TemplateId->Kind != TNK_Type_template) {
Douglas Gregor39a8de12009-02-25 19:37:18 +0000762 // The template-name in the simple-template-id refers to
763 // something other than a class template. Give an appropriate
764 // error message and skip to the ';'.
765 SourceRange Range(NameLoc);
766 if (SS.isNotEmpty())
767 Range.setBegin(SS.getBeginLoc());
Douglas Gregorcc636682009-02-17 23:15:12 +0000768
Douglas Gregor39a8de12009-02-25 19:37:18 +0000769 Diag(TemplateId->LAngleLoc, diag::err_template_spec_syntax_non_template)
770 << Name << static_cast<int>(TemplateId->Kind) << Range;
Mike Stump1eb44332009-09-09 15:08:12 +0000771
Douglas Gregor39a8de12009-02-25 19:37:18 +0000772 DS.SetTypeSpecError();
773 SkipUntil(tok::semi, false, true);
774 TemplateId->Destroy();
Chandler Carruth926c4b42010-06-28 08:39:25 +0000775 if (SuppressingAccessChecks)
776 Actions.ActOnStopSuppressingAccessChecks();
777
Douglas Gregor39a8de12009-02-25 19:37:18 +0000778 return;
Douglas Gregorcc636682009-02-17 23:15:12 +0000779 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000780 }
781
Chandler Carruth926c4b42010-06-28 08:39:25 +0000782 // As soon as we're finished parsing the class's template-id, turn access
783 // checking back on.
784 if (SuppressingAccessChecks)
785 Actions.ActOnStopSuppressingAccessChecks();
786
John McCall67d1a672009-08-06 02:15:43 +0000787 // There are four options here. If we have 'struct foo;', then this
788 // is either a forward declaration or a friend declaration, which
789 // have to be treated differently. If we have 'struct foo {...' or
Douglas Gregor39a8de12009-02-25 19:37:18 +0000790 // 'struct foo :...' then this is a definition. Otherwise we have
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000791 // something like 'struct foo xyz', a reference.
Sebastian Redld9bafa72010-02-03 21:21:43 +0000792 // However, in some contexts, things look like declarations but are just
793 // references, e.g.
794 // new struct s;
795 // or
796 // &T::operator struct s;
797 // For these, SuppressDeclarations is true.
John McCallf312b1e2010-08-26 23:41:50 +0000798 Sema::TagUseKind TUK;
Sebastian Redld9bafa72010-02-03 21:21:43 +0000799 if (SuppressDeclarations)
John McCallf312b1e2010-08-26 23:41:50 +0000800 TUK = Sema::TUK_Reference;
Sebastian Redld9bafa72010-02-03 21:21:43 +0000801 else if (Tok.is(tok::l_brace) || (getLang().CPlusPlus && Tok.is(tok::colon))){
Douglas Gregord85bea22009-09-26 06:47:28 +0000802 if (DS.isFriendSpecified()) {
803 // C++ [class.friend]p2:
804 // A class shall not be defined in a friend declaration.
805 Diag(Tok.getLocation(), diag::err_friend_decl_defines_class)
806 << SourceRange(DS.getFriendSpecLoc());
807
808 // Skip everything up to the semicolon, so that this looks like a proper
809 // friend class (or template thereof) declaration.
810 SkipUntil(tok::semi, true, true);
John McCallf312b1e2010-08-26 23:41:50 +0000811 TUK = Sema::TUK_Friend;
Douglas Gregord85bea22009-09-26 06:47:28 +0000812 } else {
813 // Okay, this is a class definition.
John McCallf312b1e2010-08-26 23:41:50 +0000814 TUK = Sema::TUK_Definition;
Douglas Gregord85bea22009-09-26 06:47:28 +0000815 }
816 } else if (Tok.is(tok::semi))
John McCallf312b1e2010-08-26 23:41:50 +0000817 TUK = DS.isFriendSpecified() ? Sema::TUK_Friend : Sema::TUK_Declaration;
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000818 else
John McCallf312b1e2010-08-26 23:41:50 +0000819 TUK = Sema::TUK_Reference;
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000820
John McCall207014e2010-07-30 06:26:29 +0000821 if (!Name && !TemplateId && (DS.getTypeSpecType() == DeclSpec::TST_error ||
John McCallf312b1e2010-08-26 23:41:50 +0000822 TUK != Sema::TUK_Definition)) {
John McCall207014e2010-07-30 06:26:29 +0000823 if (DS.getTypeSpecType() != DeclSpec::TST_error) {
824 // We have a declaration or reference to an anonymous class.
825 Diag(StartLoc, diag::err_anon_type_definition)
826 << DeclSpec::getSpecifierName(TagType);
827 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000828
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000829 SkipUntil(tok::comma, true);
Douglas Gregor39a8de12009-02-25 19:37:18 +0000830
831 if (TemplateId)
832 TemplateId->Destroy();
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000833 return;
834 }
835
Douglas Gregorddc29e12009-02-06 22:42:48 +0000836 // Create the tag portion of the class or class template.
John McCalld226f652010-08-21 09:40:31 +0000837 DeclResult TagOrTempResult = true; // invalid
838 TypeResult TypeResult = true; // invalid
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000839
Douglas Gregor402abb52009-05-28 23:31:59 +0000840 bool Owned = false;
John McCallf1bbbb42009-09-04 01:14:41 +0000841 if (TemplateId) {
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000842 // Explicit specialization, class template partial specialization,
843 // or explicit instantiation.
Mike Stump1eb44332009-09-09 15:08:12 +0000844 ASTTemplateArgsPtr TemplateArgsPtr(Actions,
Douglas Gregor39a8de12009-02-25 19:37:18 +0000845 TemplateId->getTemplateArgs(),
Douglas Gregor39a8de12009-02-25 19:37:18 +0000846 TemplateId->NumArgs);
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000847 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallf312b1e2010-08-26 23:41:50 +0000848 TUK == Sema::TUK_Declaration) {
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000849 // This is an explicit instantiation of a class template.
850 TagOrTempResult
Douglas Gregor23c94db2010-07-02 17:43:08 +0000851 = Actions.ActOnExplicitInstantiation(getCurScope(),
Douglas Gregor45f96552009-09-04 06:33:52 +0000852 TemplateInfo.ExternLoc,
Mike Stump1eb44332009-09-09 15:08:12 +0000853 TemplateInfo.TemplateLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000854 TagType,
Mike Stump1eb44332009-09-09 15:08:12 +0000855 StartLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000856 SS,
John McCall2b5289b2010-08-23 07:28:44 +0000857 TemplateId->Template,
Mike Stump1eb44332009-09-09 15:08:12 +0000858 TemplateId->TemplateNameLoc,
859 TemplateId->LAngleLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000860 TemplateArgsPtr,
Mike Stump1eb44332009-09-09 15:08:12 +0000861 TemplateId->RAngleLoc,
Sean Huntbbd37c62009-11-21 08:43:09 +0000862 AttrList);
John McCall74256f52010-04-14 00:24:33 +0000863
864 // Friend template-ids are treated as references unless
865 // they have template headers, in which case they're ill-formed
866 // (FIXME: "template <class T> friend class A<T>::B<int>;").
867 // We diagnose this error in ActOnClassTemplateSpecialization.
John McCallf312b1e2010-08-26 23:41:50 +0000868 } else if (TUK == Sema::TUK_Reference ||
869 (TUK == Sema::TUK_Friend &&
John McCall74256f52010-04-14 00:24:33 +0000870 TemplateInfo.Kind == ParsedTemplateInfo::NonTemplate)) {
John McCallc4e70192009-09-11 04:59:25 +0000871 TypeResult
John McCall2b5289b2010-08-23 07:28:44 +0000872 = Actions.ActOnTemplateIdType(TemplateId->Template,
John McCall6b2becf2009-09-08 17:47:29 +0000873 TemplateId->TemplateNameLoc,
874 TemplateId->LAngleLoc,
875 TemplateArgsPtr,
John McCall6b2becf2009-09-08 17:47:29 +0000876 TemplateId->RAngleLoc);
877
John McCallc4e70192009-09-11 04:59:25 +0000878 TypeResult = Actions.ActOnTagTemplateIdType(TypeResult, TUK,
879 TagType, StartLoc);
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000880 } else {
881 // This is an explicit specialization or a class template
882 // partial specialization.
883 TemplateParameterLists FakedParamLists;
884
885 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation) {
886 // This looks like an explicit instantiation, because we have
887 // something like
888 //
889 // template class Foo<X>
890 //
Douglas Gregor3f5b61c2009-05-14 00:28:11 +0000891 // but it actually has a definition. Most likely, this was
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000892 // meant to be an explicit specialization, but the user forgot
893 // the '<>' after 'template'.
John McCallf312b1e2010-08-26 23:41:50 +0000894 assert(TUK == Sema::TUK_Definition && "Expected a definition here");
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000895
Mike Stump1eb44332009-09-09 15:08:12 +0000896 SourceLocation LAngleLoc
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000897 = PP.getLocForEndOfToken(TemplateInfo.TemplateLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000898 Diag(TemplateId->TemplateNameLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000899 diag::err_explicit_instantiation_with_definition)
900 << SourceRange(TemplateInfo.TemplateLoc)
Douglas Gregor849b2432010-03-31 17:46:05 +0000901 << FixItHint::CreateInsertion(LAngleLoc, "<>");
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000902
903 // Create a fake template parameter list that contains only
904 // "template<>", so that we treat this construct as a class
905 // template specialization.
906 FakedParamLists.push_back(
Mike Stump1eb44332009-09-09 15:08:12 +0000907 Actions.ActOnTemplateParameterList(0, SourceLocation(),
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000908 TemplateInfo.TemplateLoc,
Mike Stump1eb44332009-09-09 15:08:12 +0000909 LAngleLoc,
910 0, 0,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000911 LAngleLoc));
912 TemplateParams = &FakedParamLists;
913 }
914
915 // Build the class template specialization.
916 TagOrTempResult
Douglas Gregor23c94db2010-07-02 17:43:08 +0000917 = Actions.ActOnClassTemplateSpecialization(getCurScope(), TagType, TUK,
Douglas Gregor39a8de12009-02-25 19:37:18 +0000918 StartLoc, SS,
John McCall2b5289b2010-08-23 07:28:44 +0000919 TemplateId->Template,
Mike Stump1eb44332009-09-09 15:08:12 +0000920 TemplateId->TemplateNameLoc,
921 TemplateId->LAngleLoc,
Douglas Gregor39a8de12009-02-25 19:37:18 +0000922 TemplateArgsPtr,
Mike Stump1eb44332009-09-09 15:08:12 +0000923 TemplateId->RAngleLoc,
Sean Huntbbd37c62009-11-21 08:43:09 +0000924 AttrList,
John McCallf312b1e2010-08-26 23:41:50 +0000925 MultiTemplateParamsArg(Actions,
Douglas Gregorcc636682009-02-17 23:15:12 +0000926 TemplateParams? &(*TemplateParams)[0] : 0,
927 TemplateParams? TemplateParams->size() : 0));
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000928 }
Douglas Gregor39a8de12009-02-25 19:37:18 +0000929 TemplateId->Destroy();
Douglas Gregor3f5b61c2009-05-14 00:28:11 +0000930 } else if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallf312b1e2010-08-26 23:41:50 +0000931 TUK == Sema::TUK_Declaration) {
Douglas Gregor3f5b61c2009-05-14 00:28:11 +0000932 // Explicit instantiation of a member of a class template
933 // specialization, e.g.,
934 //
935 // template struct Outer<int>::Inner;
936 //
937 TagOrTempResult
Douglas Gregor23c94db2010-07-02 17:43:08 +0000938 = Actions.ActOnExplicitInstantiation(getCurScope(),
Douglas Gregor45f96552009-09-04 06:33:52 +0000939 TemplateInfo.ExternLoc,
Mike Stump1eb44332009-09-09 15:08:12 +0000940 TemplateInfo.TemplateLoc,
941 TagType, StartLoc, SS, Name,
Sean Huntbbd37c62009-11-21 08:43:09 +0000942 NameLoc, AttrList);
Douglas Gregor3f5b61c2009-05-14 00:28:11 +0000943 } else {
944 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallf312b1e2010-08-26 23:41:50 +0000945 TUK == Sema::TUK_Definition) {
Douglas Gregor3f5b61c2009-05-14 00:28:11 +0000946 // FIXME: Diagnose this particular error.
947 }
948
John McCallc4e70192009-09-11 04:59:25 +0000949 bool IsDependent = false;
950
Douglas Gregor3f5b61c2009-05-14 00:28:11 +0000951 // Declaration or definition of a class type
Douglas Gregor23c94db2010-07-02 17:43:08 +0000952 TagOrTempResult = Actions.ActOnTag(getCurScope(), TagType, TUK, StartLoc, SS,
Sean Huntbbd37c62009-11-21 08:43:09 +0000953 Name, NameLoc, AttrList, AS,
John McCallf312b1e2010-08-26 23:41:50 +0000954 MultiTemplateParamsArg(Actions,
Douglas Gregor7cdbc582009-07-22 23:48:44 +0000955 TemplateParams? &(*TemplateParams)[0] : 0,
956 TemplateParams? TemplateParams->size() : 0),
John McCallc4e70192009-09-11 04:59:25 +0000957 Owned, IsDependent);
958
959 // If ActOnTag said the type was dependent, try again with the
960 // less common call.
961 if (IsDependent)
Douglas Gregor23c94db2010-07-02 17:43:08 +0000962 TypeResult = Actions.ActOnDependentTag(getCurScope(), TagType, TUK,
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000963 SS, Name, StartLoc, NameLoc);
Douglas Gregor3f5b61c2009-05-14 00:28:11 +0000964 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000965
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000966 // If there is a body, parse it and inform the actions module.
John McCallf312b1e2010-08-26 23:41:50 +0000967 if (TUK == Sema::TUK_Definition) {
John McCallbd0dfa52009-12-19 21:48:58 +0000968 assert(Tok.is(tok::l_brace) ||
969 (getLang().CPlusPlus && Tok.is(tok::colon)));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000970 if (getLang().CPlusPlus)
Douglas Gregor212e81c2009-03-25 00:13:59 +0000971 ParseCXXMemberSpecification(StartLoc, TagType, TagOrTempResult.get());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000972 else
Douglas Gregor212e81c2009-03-25 00:13:59 +0000973 ParseStructUnionBody(StartLoc, TagType, TagOrTempResult.get());
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000974 }
975
John McCallb3d87482010-08-24 05:47:05 +0000976 // FIXME: The DeclSpec should keep the locations of both the keyword and the
977 // name (if there is one).
978 SourceLocation TSTLoc = NameLoc.isValid()? NameLoc : StartLoc;
979
980 const char *PrevSpec = 0;
981 unsigned DiagID;
982 bool Result;
John McCallc4e70192009-09-11 04:59:25 +0000983 if (!TypeResult.isInvalid()) {
John McCallb3d87482010-08-24 05:47:05 +0000984 Result = DS.SetTypeSpecType(DeclSpec::TST_typename, TSTLoc,
985 PrevSpec, DiagID, TypeResult.get());
John McCallc4e70192009-09-11 04:59:25 +0000986 } else if (!TagOrTempResult.isInvalid()) {
John McCallb3d87482010-08-24 05:47:05 +0000987 Result = DS.SetTypeSpecType(TagType, TSTLoc, PrevSpec, DiagID,
988 TagOrTempResult.get(), Owned);
John McCallc4e70192009-09-11 04:59:25 +0000989 } else {
Douglas Gregorddc29e12009-02-06 22:42:48 +0000990 DS.SetTypeSpecError();
Anders Carlsson66e99772009-05-11 22:27:47 +0000991 return;
992 }
Mike Stump1eb44332009-09-09 15:08:12 +0000993
John McCallb3d87482010-08-24 05:47:05 +0000994 if (Result)
John McCallfec54012009-08-03 20:12:06 +0000995 Diag(StartLoc, DiagID) << PrevSpec;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000996
Chris Lattner4ed5d912010-02-02 01:23:29 +0000997 // At this point, we've successfully parsed a class-specifier in 'definition'
998 // form (e.g. "struct foo { int x; }". While we could just return here, we're
999 // going to look at what comes after it to improve error recovery. If an
1000 // impossible token occurs next, we assume that the programmer forgot a ; at
1001 // the end of the declaration and recover that way.
1002 //
1003 // This switch enumerates the valid "follow" set for definition.
John McCallf312b1e2010-08-26 23:41:50 +00001004 if (TUK == Sema::TUK_Definition) {
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001005 bool ExpectedSemi = true;
Chris Lattner4ed5d912010-02-02 01:23:29 +00001006 switch (Tok.getKind()) {
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001007 default: break;
Chris Lattner4ed5d912010-02-02 01:23:29 +00001008 case tok::semi: // struct foo {...} ;
Chris Lattner99c95202010-02-02 17:32:27 +00001009 case tok::star: // struct foo {...} * P;
1010 case tok::amp: // struct foo {...} & R = ...
1011 case tok::identifier: // struct foo {...} V ;
1012 case tok::r_paren: //(struct foo {...} ) {4}
1013 case tok::annot_cxxscope: // struct foo {...} a:: b;
1014 case tok::annot_typename: // struct foo {...} a ::b;
1015 case tok::annot_template_id: // struct foo {...} a<int> ::b;
Chris Lattnerc2e1c1a2010-02-03 20:41:24 +00001016 case tok::l_paren: // struct foo {...} ( x);
Chris Lattner16acfee2010-02-03 01:45:03 +00001017 case tok::comma: // __builtin_offsetof(struct foo{...} ,
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001018 ExpectedSemi = false;
1019 break;
1020 // Type qualifiers
1021 case tok::kw_const: // struct foo {...} const x;
1022 case tok::kw_volatile: // struct foo {...} volatile x;
1023 case tok::kw_restrict: // struct foo {...} restrict x;
1024 case tok::kw_inline: // struct foo {...} inline foo() {};
Chris Lattner99c95202010-02-02 17:32:27 +00001025 // Storage-class specifiers
1026 case tok::kw_static: // struct foo {...} static x;
1027 case tok::kw_extern: // struct foo {...} extern x;
1028 case tok::kw_typedef: // struct foo {...} typedef x;
1029 case tok::kw_register: // struct foo {...} register x;
1030 case tok::kw_auto: // struct foo {...} auto x;
Douglas Gregor33f99242010-05-17 18:19:56 +00001031 case tok::kw_mutable: // struct foo {...} mutable x;
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001032 // As shown above, type qualifiers and storage class specifiers absolutely
1033 // can occur after class specifiers according to the grammar. However,
1034 // almost noone actually writes code like this. If we see one of these,
1035 // it is much more likely that someone missed a semi colon and the
1036 // type/storage class specifier we're seeing is part of the *next*
1037 // intended declaration, as in:
1038 //
1039 // struct foo { ... }
1040 // typedef int X;
1041 //
1042 // We'd really like to emit a missing semicolon error instead of emitting
1043 // an error on the 'int' saying that you can't have two type specifiers in
1044 // the same declaration of X. Because of this, we look ahead past this
1045 // token to see if it's a type specifier. If so, we know the code is
1046 // otherwise invalid, so we can produce the expected semi error.
1047 if (!isKnownToBeTypeSpecifier(NextToken()))
1048 ExpectedSemi = false;
Chris Lattner4ed5d912010-02-02 01:23:29 +00001049 break;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001050
1051 case tok::r_brace: // struct bar { struct foo {...} }
Chris Lattner4ed5d912010-02-02 01:23:29 +00001052 // Missing ';' at end of struct is accepted as an extension in C mode.
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001053 if (!getLang().CPlusPlus)
1054 ExpectedSemi = false;
1055 break;
1056 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001057
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001058 if (ExpectedSemi) {
Chris Lattner4ed5d912010-02-02 01:23:29 +00001059 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_tagdecl,
1060 TagType == DeclSpec::TST_class ? "class"
1061 : TagType == DeclSpec::TST_struct? "struct" : "union");
1062 // Push this token back into the preprocessor and change our current token
1063 // to ';' so that the rest of the code recovers as though there were an
1064 // ';' after the definition.
1065 PP.EnterToken(Tok);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001066 Tok.setKind(tok::semi);
Chris Lattner4ed5d912010-02-02 01:23:29 +00001067 }
1068 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001069}
1070
Mike Stump1eb44332009-09-09 15:08:12 +00001071/// ParseBaseClause - Parse the base-clause of a C++ class [C++ class.derived].
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001072///
1073/// base-clause : [C++ class.derived]
1074/// ':' base-specifier-list
1075/// base-specifier-list:
1076/// base-specifier '...'[opt]
1077/// base-specifier-list ',' base-specifier '...'[opt]
John McCalld226f652010-08-21 09:40:31 +00001078void Parser::ParseBaseClause(Decl *ClassDecl) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001079 assert(Tok.is(tok::colon) && "Not a base clause");
1080 ConsumeToken();
1081
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001082 // Build up an array of parsed base specifiers.
John McCallca0408f2010-08-23 06:44:23 +00001083 llvm::SmallVector<CXXBaseSpecifier *, 8> BaseInfo;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001084
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001085 while (true) {
1086 // Parse a base-specifier.
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001087 BaseResult Result = ParseBaseSpecifier(ClassDecl);
Douglas Gregor5ac8aff2009-01-26 22:44:13 +00001088 if (Result.isInvalid()) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001089 // Skip the rest of this base specifier, up until the comma or
1090 // opening brace.
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001091 SkipUntil(tok::comma, tok::l_brace, true, true);
1092 } else {
1093 // Add this to our array of base specifiers.
Douglas Gregor5ac8aff2009-01-26 22:44:13 +00001094 BaseInfo.push_back(Result.get());
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001095 }
1096
1097 // If the next token is a comma, consume it and keep reading
1098 // base-specifiers.
1099 if (Tok.isNot(tok::comma)) break;
Mike Stump1eb44332009-09-09 15:08:12 +00001100
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001101 // Consume the comma.
1102 ConsumeToken();
1103 }
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001104
1105 // Attach the base specifiers
Jay Foadbeaaccd2009-05-21 09:52:38 +00001106 Actions.ActOnBaseSpecifiers(ClassDecl, BaseInfo.data(), BaseInfo.size());
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001107}
1108
1109/// ParseBaseSpecifier - Parse a C++ base-specifier. A base-specifier is
1110/// one entry in the base class list of a class specifier, for example:
1111/// class foo : public bar, virtual private baz {
1112/// 'public bar' and 'virtual private baz' are each base-specifiers.
1113///
1114/// base-specifier: [C++ class.derived]
1115/// ::[opt] nested-name-specifier[opt] class-name
1116/// 'virtual' access-specifier[opt] ::[opt] nested-name-specifier[opt]
1117/// class-name
1118/// access-specifier 'virtual'[opt] ::[opt] nested-name-specifier[opt]
1119/// class-name
John McCalld226f652010-08-21 09:40:31 +00001120Parser::BaseResult Parser::ParseBaseSpecifier(Decl *ClassDecl) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001121 bool IsVirtual = false;
1122 SourceLocation StartLoc = Tok.getLocation();
1123
1124 // Parse the 'virtual' keyword.
1125 if (Tok.is(tok::kw_virtual)) {
1126 ConsumeToken();
1127 IsVirtual = true;
1128 }
1129
1130 // Parse an (optional) access specifier.
1131 AccessSpecifier Access = getAccessSpecifierIfPresent();
John McCall92f88312010-01-23 00:46:32 +00001132 if (Access != AS_none)
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001133 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001134
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001135 // Parse the 'virtual' keyword (again!), in case it came after the
1136 // access specifier.
1137 if (Tok.is(tok::kw_virtual)) {
1138 SourceLocation VirtualLoc = ConsumeToken();
1139 if (IsVirtual) {
1140 // Complain about duplicate 'virtual'
Chris Lattner1ab3b962008-11-18 07:48:38 +00001141 Diag(VirtualLoc, diag::err_dup_virtual)
Douglas Gregor849b2432010-03-31 17:46:05 +00001142 << FixItHint::CreateRemoval(VirtualLoc);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001143 }
1144
1145 IsVirtual = true;
1146 }
1147
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001148 // Parse optional '::' and optional nested-name-specifier.
1149 CXXScopeSpec SS;
John McCallb3d87482010-08-24 05:47:05 +00001150 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), /*EnteringContext=*/false);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001151
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001152 // The location of the base class itself.
1153 SourceLocation BaseLoc = Tok.getLocation();
Douglas Gregor42a552f2008-11-05 20:51:48 +00001154
1155 // Parse the class-name.
Douglas Gregor7f43d672009-02-25 23:52:28 +00001156 SourceLocation EndLocation;
Douglas Gregor31a19b62009-04-01 21:51:26 +00001157 TypeResult BaseType = ParseClassName(EndLocation, &SS);
1158 if (BaseType.isInvalid())
Douglas Gregor42a552f2008-11-05 20:51:48 +00001159 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001160
1161 // Find the complete source range for the base-specifier.
Douglas Gregor7f43d672009-02-25 23:52:28 +00001162 SourceRange Range(StartLoc, EndLocation);
Mike Stump1eb44332009-09-09 15:08:12 +00001163
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001164 // Notify semantic analysis that we have parsed a complete
1165 // base-specifier.
Sebastian Redla55e52c2008-11-25 22:21:31 +00001166 return Actions.ActOnBaseSpecifier(ClassDecl, Range, IsVirtual, Access,
Douglas Gregor31a19b62009-04-01 21:51:26 +00001167 BaseType.get(), BaseLoc);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001168}
1169
1170/// getAccessSpecifierIfPresent - Determine whether the next token is
1171/// a C++ access-specifier.
1172///
1173/// access-specifier: [C++ class.derived]
1174/// 'private'
1175/// 'protected'
1176/// 'public'
Mike Stump1eb44332009-09-09 15:08:12 +00001177AccessSpecifier Parser::getAccessSpecifierIfPresent() const {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001178 switch (Tok.getKind()) {
1179 default: return AS_none;
1180 case tok::kw_private: return AS_private;
1181 case tok::kw_protected: return AS_protected;
1182 case tok::kw_public: return AS_public;
1183 }
1184}
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001185
Eli Friedmand33133c2009-07-22 21:45:50 +00001186void Parser::HandleMemberFunctionDefaultArgs(Declarator& DeclaratorInfo,
John McCalld226f652010-08-21 09:40:31 +00001187 Decl *ThisDecl) {
Eli Friedmand33133c2009-07-22 21:45:50 +00001188 // We just declared a member function. If this member function
1189 // has any default arguments, we'll need to parse them later.
1190 LateParsedMethodDeclaration *LateMethod = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001191 DeclaratorChunk::FunctionTypeInfo &FTI
Eli Friedmand33133c2009-07-22 21:45:50 +00001192 = DeclaratorInfo.getTypeObject(0).Fun;
1193 for (unsigned ParamIdx = 0; ParamIdx < FTI.NumArgs; ++ParamIdx) {
1194 if (LateMethod || FTI.ArgInfo[ParamIdx].DefaultArgTokens) {
1195 if (!LateMethod) {
1196 // Push this method onto the stack of late-parsed method
1197 // declarations.
1198 getCurrentClass().MethodDecls.push_back(
1199 LateParsedMethodDeclaration(ThisDecl));
1200 LateMethod = &getCurrentClass().MethodDecls.back();
Douglas Gregor23c94db2010-07-02 17:43:08 +00001201 LateMethod->TemplateScope = getCurScope()->isTemplateParamScope();
Eli Friedmand33133c2009-07-22 21:45:50 +00001202
1203 // Add all of the parameters prior to this one (they don't
1204 // have default arguments).
1205 LateMethod->DefaultArgs.reserve(FTI.NumArgs);
1206 for (unsigned I = 0; I < ParamIdx; ++I)
1207 LateMethod->DefaultArgs.push_back(
Douglas Gregor8f8210c2010-03-02 01:29:43 +00001208 LateParsedDefaultArgument(FTI.ArgInfo[I].Param));
Eli Friedmand33133c2009-07-22 21:45:50 +00001209 }
1210
1211 // Add this parameter to the list of parameters (it or may
1212 // not have a default argument).
1213 LateMethod->DefaultArgs.push_back(
1214 LateParsedDefaultArgument(FTI.ArgInfo[ParamIdx].Param,
1215 FTI.ArgInfo[ParamIdx].DefaultArgTokens));
1216 }
1217 }
1218}
1219
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001220/// ParseCXXClassMemberDeclaration - Parse a C++ class member declaration.
1221///
1222/// member-declaration:
1223/// decl-specifier-seq[opt] member-declarator-list[opt] ';'
1224/// function-definition ';'[opt]
1225/// ::[opt] nested-name-specifier template[opt] unqualified-id ';'[TODO]
1226/// using-declaration [TODO]
Anders Carlsson511d7ab2009-03-11 16:27:10 +00001227/// [C++0x] static_assert-declaration
Anders Carlsson5aeccdb2009-03-26 00:52:18 +00001228/// template-declaration
Chris Lattnerbc8d5642008-12-18 01:12:00 +00001229/// [GNU] '__extension__' member-declaration
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001230///
1231/// member-declarator-list:
1232/// member-declarator
1233/// member-declarator-list ',' member-declarator
1234///
1235/// member-declarator:
1236/// declarator pure-specifier[opt]
1237/// declarator constant-initializer[opt]
1238/// identifier[opt] ':' constant-expression
1239///
Sebastian Redle2b68332009-04-12 17:16:29 +00001240/// pure-specifier:
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001241/// '= 0'
1242///
1243/// constant-initializer:
1244/// '=' constant-expression
1245///
Douglas Gregor37b372b2009-08-20 22:52:58 +00001246void Parser::ParseCXXClassMemberDeclaration(AccessSpecifier AS,
John McCallc9068d72010-07-16 08:13:16 +00001247 const ParsedTemplateInfo &TemplateInfo,
1248 ParsingDeclRAIIObject *TemplateDiags) {
John McCall60fa3cf2009-12-11 02:10:03 +00001249 // Access declarations.
1250 if (!TemplateInfo.Kind &&
1251 (Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) &&
John McCall9ba61662010-02-26 08:45:28 +00001252 !TryAnnotateCXXScopeToken() &&
John McCall60fa3cf2009-12-11 02:10:03 +00001253 Tok.is(tok::annot_cxxscope)) {
1254 bool isAccessDecl = false;
1255 if (NextToken().is(tok::identifier))
1256 isAccessDecl = GetLookAheadToken(2).is(tok::semi);
1257 else
1258 isAccessDecl = NextToken().is(tok::kw_operator);
1259
1260 if (isAccessDecl) {
1261 // Collect the scope specifier token we annotated earlier.
1262 CXXScopeSpec SS;
John McCallb3d87482010-08-24 05:47:05 +00001263 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
John McCall60fa3cf2009-12-11 02:10:03 +00001264
1265 // Try to parse an unqualified-id.
1266 UnqualifiedId Name;
John McCallb3d87482010-08-24 05:47:05 +00001267 if (ParseUnqualifiedId(SS, false, true, true, ParsedType(), Name)) {
John McCall60fa3cf2009-12-11 02:10:03 +00001268 SkipUntil(tok::semi);
1269 return;
1270 }
1271
1272 // TODO: recover from mistakenly-qualified operator declarations.
1273 if (ExpectAndConsume(tok::semi,
1274 diag::err_expected_semi_after,
1275 "access declaration",
1276 tok::semi))
1277 return;
1278
Douglas Gregor23c94db2010-07-02 17:43:08 +00001279 Actions.ActOnUsingDeclaration(getCurScope(), AS,
John McCall60fa3cf2009-12-11 02:10:03 +00001280 false, SourceLocation(),
1281 SS, Name,
1282 /* AttrList */ 0,
1283 /* IsTypeName */ false,
1284 SourceLocation());
1285 return;
1286 }
1287 }
1288
Anders Carlsson511d7ab2009-03-11 16:27:10 +00001289 // static_assert-declaration
Chris Lattner682bf922009-03-29 16:50:03 +00001290 if (Tok.is(tok::kw_static_assert)) {
Douglas Gregor37b372b2009-08-20 22:52:58 +00001291 // FIXME: Check for templates
Chris Lattner97144fc2009-04-02 04:16:50 +00001292 SourceLocation DeclEnd;
1293 ParseStaticAssertDeclaration(DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +00001294 return;
1295 }
Mike Stump1eb44332009-09-09 15:08:12 +00001296
Chris Lattner682bf922009-03-29 16:50:03 +00001297 if (Tok.is(tok::kw_template)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001298 assert(!TemplateInfo.TemplateParams &&
Douglas Gregor37b372b2009-08-20 22:52:58 +00001299 "Nested template improperly parsed?");
Chris Lattner97144fc2009-04-02 04:16:50 +00001300 SourceLocation DeclEnd;
Mike Stump1eb44332009-09-09 15:08:12 +00001301 ParseDeclarationStartingWithTemplate(Declarator::MemberContext, DeclEnd,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001302 AS);
Chris Lattner682bf922009-03-29 16:50:03 +00001303 return;
1304 }
Anders Carlsson5aeccdb2009-03-26 00:52:18 +00001305
Chris Lattnerbc8d5642008-12-18 01:12:00 +00001306 // Handle: member-declaration ::= '__extension__' member-declaration
1307 if (Tok.is(tok::kw___extension__)) {
1308 // __extension__ silences extension warnings in the subexpression.
1309 ExtensionRAIIObject O(Diags); // Use RAII to do this.
1310 ConsumeToken();
John McCallc9068d72010-07-16 08:13:16 +00001311 return ParseCXXClassMemberDeclaration(AS, TemplateInfo, TemplateDiags);
Chris Lattnerbc8d5642008-12-18 01:12:00 +00001312 }
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001313
Chris Lattner4ed5d912010-02-02 01:23:29 +00001314 // Don't parse FOO:BAR as if it were a typo for FOO::BAR, in this context it
1315 // is a bitfield.
Chris Lattnera1efc8c2009-12-10 01:59:24 +00001316 ColonProtectionRAIIObject X(*this);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001317
Sean Huntbbd37c62009-11-21 08:43:09 +00001318 CXX0XAttributeList AttrList;
1319 // Optional C++0x attribute-specifier
Chris Lattnera1efc8c2009-12-10 01:59:24 +00001320 if (getLang().CPlusPlus0x && isCXX0XAttributeSpecifier())
Sean Huntbbd37c62009-11-21 08:43:09 +00001321 AttrList = ParseCXX0XAttributes();
Sean Huntbbd37c62009-11-21 08:43:09 +00001322
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001323 if (Tok.is(tok::kw_using)) {
Douglas Gregor37b372b2009-08-20 22:52:58 +00001324 // FIXME: Check for template aliases
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001325
Sean Huntbbd37c62009-11-21 08:43:09 +00001326 if (AttrList.HasAttr)
1327 Diag(AttrList.Range.getBegin(), diag::err_attributes_not_allowed)
1328 << AttrList.Range;
Mike Stump1eb44332009-09-09 15:08:12 +00001329
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001330 // Eat 'using'.
1331 SourceLocation UsingLoc = ConsumeToken();
1332
1333 if (Tok.is(tok::kw_namespace)) {
1334 Diag(UsingLoc, diag::err_using_namespace_in_class);
1335 SkipUntil(tok::semi, true, true);
Chris Lattnerae50d502010-02-02 00:43:15 +00001336 } else {
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001337 SourceLocation DeclEnd;
1338 // Otherwise, it must be using-declaration.
Anders Carlsson595adc12009-08-29 19:54:19 +00001339 ParseUsingDeclaration(Declarator::MemberContext, UsingLoc, DeclEnd, AS);
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001340 }
1341 return;
1342 }
1343
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001344 SourceLocation DSStart = Tok.getLocation();
1345 // decl-specifier-seq:
1346 // Parse the common declaration-specifiers piece.
John McCallc9068d72010-07-16 08:13:16 +00001347 ParsingDeclSpec DS(*this, TemplateDiags);
Sean Huntbbd37c62009-11-21 08:43:09 +00001348 DS.AddAttributes(AttrList.AttrList);
Douglas Gregor37b372b2009-08-20 22:52:58 +00001349 ParseDeclarationSpecifiers(DS, TemplateInfo, AS, DSC_class);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001350
John McCallf312b1e2010-08-26 23:41:50 +00001351 MultiTemplateParamsArg TemplateParams(Actions,
John McCalldd4a3b02009-09-16 22:47:08 +00001352 TemplateInfo.TemplateParams? TemplateInfo.TemplateParams->data() : 0,
1353 TemplateInfo.TemplateParams? TemplateInfo.TemplateParams->size() : 0);
1354
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001355 if (Tok.is(tok::semi)) {
1356 ConsumeToken();
John McCalld226f652010-08-21 09:40:31 +00001357 Decl *TheDecl =
John McCallc9068d72010-07-16 08:13:16 +00001358 Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS, DS);
1359 DS.complete(TheDecl);
John McCall67d1a672009-08-06 02:15:43 +00001360 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001361 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001362
John McCall54abf7d2009-11-04 02:18:39 +00001363 ParsingDeclarator DeclaratorInfo(*this, DS, Declarator::MemberContext);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001364
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001365 if (Tok.isNot(tok::colon)) {
Chris Lattnera1efc8c2009-12-10 01:59:24 +00001366 // Don't parse FOO:BAR as if it were a typo for FOO::BAR.
1367 ColonProtectionRAIIObject X(*this);
1368
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001369 // Parse the first declarator.
1370 ParseDeclarator(DeclaratorInfo);
1371 // Error parsing the declarator?
Douglas Gregor10bd3682008-11-17 22:58:34 +00001372 if (!DeclaratorInfo.hasName()) {
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001373 // If so, skip until the semi-colon or a }.
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001374 SkipUntil(tok::r_brace, true);
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001375 if (Tok.is(tok::semi))
1376 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001377 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001378 }
1379
John Thompson1b2fc0f2009-11-25 22:58:06 +00001380 // If attributes exist after the declarator, but before an '{', parse them.
1381 if (Tok.is(tok::kw___attribute)) {
1382 SourceLocation Loc;
1383 AttributeList *AttrList = ParseGNUAttributes(&Loc);
1384 DeclaratorInfo.AddAttributes(AttrList, Loc);
1385 }
1386
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001387 // function-definition:
Douglas Gregor7ad83902008-11-05 04:29:56 +00001388 if (Tok.is(tok::l_brace)
Sebastian Redld3a413d2009-04-26 20:35:05 +00001389 || (DeclaratorInfo.isFunctionDeclarator() &&
1390 (Tok.is(tok::colon) || Tok.is(tok::kw_try)))) {
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001391 if (!DeclaratorInfo.isFunctionDeclarator()) {
1392 Diag(Tok, diag::err_func_def_no_params);
1393 ConsumeBrace();
1394 SkipUntil(tok::r_brace, true);
Chris Lattner682bf922009-03-29 16:50:03 +00001395 return;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001396 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001397
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001398 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
1399 Diag(Tok, diag::err_function_declared_typedef);
1400 // This recovery skips the entire function body. It would be nice
1401 // to simply call ParseCXXInlineMethodDef() below, however Sema
1402 // assumes the declarator represents a function, not a typedef.
1403 ConsumeBrace();
1404 SkipUntil(tok::r_brace, true);
Chris Lattner682bf922009-03-29 16:50:03 +00001405 return;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001406 }
1407
Douglas Gregor37b372b2009-08-20 22:52:58 +00001408 ParseCXXInlineMethodDef(AS, DeclaratorInfo, TemplateInfo);
Chris Lattner682bf922009-03-29 16:50:03 +00001409 return;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001410 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001411 }
1412
1413 // member-declarator-list:
1414 // member-declarator
1415 // member-declarator-list ',' member-declarator
1416
John McCalld226f652010-08-21 09:40:31 +00001417 llvm::SmallVector<Decl *, 8> DeclsInGroup;
John McCall60d7b3a2010-08-24 06:29:42 +00001418 ExprResult BitfieldSize;
1419 ExprResult Init;
Sebastian Redle2b68332009-04-12 17:16:29 +00001420 bool Deleted = false;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001421
1422 while (1) {
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001423 // member-declarator:
1424 // declarator pure-specifier[opt]
1425 // declarator constant-initializer[opt]
1426 // identifier[opt] ':' constant-expression
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001427 if (Tok.is(tok::colon)) {
1428 ConsumeToken();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001429 BitfieldSize = ParseConstantExpression();
1430 if (BitfieldSize.isInvalid())
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001431 SkipUntil(tok::comma, true, true);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001432 }
Mike Stump1eb44332009-09-09 15:08:12 +00001433
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001434 // pure-specifier:
1435 // '= 0'
1436 //
1437 // constant-initializer:
1438 // '=' constant-expression
Sebastian Redle2b68332009-04-12 17:16:29 +00001439 //
1440 // defaulted/deleted function-definition:
1441 // '=' 'default' [TODO]
1442 // '=' 'delete'
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001443 if (Tok.is(tok::equal)) {
1444 ConsumeToken();
Sebastian Redle2b68332009-04-12 17:16:29 +00001445 if (getLang().CPlusPlus0x && Tok.is(tok::kw_delete)) {
1446 ConsumeToken();
1447 Deleted = true;
1448 } else {
1449 Init = ParseInitializer();
1450 if (Init.isInvalid())
1451 SkipUntil(tok::comma, true, true);
1452 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001453 }
1454
Chris Lattnere6563252010-06-13 05:34:18 +00001455 // If a simple-asm-expr is present, parse it.
1456 if (Tok.is(tok::kw_asm)) {
1457 SourceLocation Loc;
John McCall60d7b3a2010-08-24 06:29:42 +00001458 ExprResult AsmLabel(ParseSimpleAsm(&Loc));
Chris Lattnere6563252010-06-13 05:34:18 +00001459 if (AsmLabel.isInvalid())
1460 SkipUntil(tok::comma, true, true);
1461
1462 DeclaratorInfo.setAsmLabel(AsmLabel.release());
1463 DeclaratorInfo.SetRangeEnd(Loc);
1464 }
1465
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001466 // If attributes exist after the declarator, parse them.
Sebastian Redlab197ba2009-02-09 18:23:29 +00001467 if (Tok.is(tok::kw___attribute)) {
1468 SourceLocation Loc;
Sean Huntbbd37c62009-11-21 08:43:09 +00001469 AttributeList *AttrList = ParseGNUAttributes(&Loc);
Sebastian Redlab197ba2009-02-09 18:23:29 +00001470 DeclaratorInfo.AddAttributes(AttrList, Loc);
1471 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001472
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001473 // NOTE: If Sema is the Action module and declarator is an instance field,
Chris Lattner682bf922009-03-29 16:50:03 +00001474 // this call will *not* return the created decl; It will return null.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001475 // See Sema::ActOnCXXMemberDeclarator for details.
John McCall67d1a672009-08-06 02:15:43 +00001476
John McCalld226f652010-08-21 09:40:31 +00001477 Decl *ThisDecl = 0;
John McCall67d1a672009-08-06 02:15:43 +00001478 if (DS.isFriendSpecified()) {
John McCallbbbcdd92009-09-11 21:02:39 +00001479 // TODO: handle initializers, bitfields, 'delete'
Douglas Gregor23c94db2010-07-02 17:43:08 +00001480 ThisDecl = Actions.ActOnFriendFunctionDecl(getCurScope(), DeclaratorInfo,
John McCallbbbcdd92009-09-11 21:02:39 +00001481 /*IsDefinition*/ false,
1482 move(TemplateParams));
Douglas Gregor37b372b2009-08-20 22:52:58 +00001483 } else {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001484 ThisDecl = Actions.ActOnCXXMemberDeclarator(getCurScope(), AS,
John McCall67d1a672009-08-06 02:15:43 +00001485 DeclaratorInfo,
Douglas Gregor37b372b2009-08-20 22:52:58 +00001486 move(TemplateParams),
John McCall67d1a672009-08-06 02:15:43 +00001487 BitfieldSize.release(),
1488 Init.release(),
Sebastian Redld1a78462009-11-24 23:38:44 +00001489 /*IsDefinition*/Deleted,
John McCall67d1a672009-08-06 02:15:43 +00001490 Deleted);
Douglas Gregor37b372b2009-08-20 22:52:58 +00001491 }
Chris Lattner682bf922009-03-29 16:50:03 +00001492 if (ThisDecl)
1493 DeclsInGroup.push_back(ThisDecl);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001494
Douglas Gregor72b505b2008-12-16 21:30:33 +00001495 if (DeclaratorInfo.isFunctionDeclarator() &&
Mike Stump1eb44332009-09-09 15:08:12 +00001496 DeclaratorInfo.getDeclSpec().getStorageClassSpec()
Douglas Gregor72b505b2008-12-16 21:30:33 +00001497 != DeclSpec::SCS_typedef) {
Eli Friedmand33133c2009-07-22 21:45:50 +00001498 HandleMemberFunctionDefaultArgs(DeclaratorInfo, ThisDecl);
Douglas Gregor72b505b2008-12-16 21:30:33 +00001499 }
1500
John McCall54abf7d2009-11-04 02:18:39 +00001501 DeclaratorInfo.complete(ThisDecl);
1502
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001503 // If we don't have a comma, it is either the end of the list (a ';')
1504 // or an error, bail out.
1505 if (Tok.isNot(tok::comma))
1506 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001507
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001508 // Consume the comma.
1509 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001510
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001511 // Parse the next declarator.
1512 DeclaratorInfo.clear();
Sebastian Redl15faa7f2008-12-09 20:22:58 +00001513 BitfieldSize = 0;
1514 Init = 0;
Sebastian Redle2b68332009-04-12 17:16:29 +00001515 Deleted = false;
Mike Stump1eb44332009-09-09 15:08:12 +00001516
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001517 // Attributes are only allowed on the second declarator.
Sebastian Redlab197ba2009-02-09 18:23:29 +00001518 if (Tok.is(tok::kw___attribute)) {
1519 SourceLocation Loc;
Sean Huntbbd37c62009-11-21 08:43:09 +00001520 AttributeList *AttrList = ParseGNUAttributes(&Loc);
Sebastian Redlab197ba2009-02-09 18:23:29 +00001521 DeclaratorInfo.AddAttributes(AttrList, Loc);
1522 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001523
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001524 if (Tok.isNot(tok::colon))
1525 ParseDeclarator(DeclaratorInfo);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001526 }
1527
Chris Lattnerae50d502010-02-02 00:43:15 +00001528 if (ExpectAndConsume(tok::semi, diag::err_expected_semi_decl_list)) {
1529 // Skip to end of block or statement.
1530 SkipUntil(tok::r_brace, true, true);
1531 // If we stopped at a ';', eat it.
1532 if (Tok.is(tok::semi)) ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001533 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001534 }
1535
Douglas Gregor23c94db2010-07-02 17:43:08 +00001536 Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup.data(),
Chris Lattnerae50d502010-02-02 00:43:15 +00001537 DeclsInGroup.size());
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001538}
1539
1540/// ParseCXXMemberSpecification - Parse the class definition.
1541///
1542/// member-specification:
1543/// member-declaration member-specification[opt]
1544/// access-specifier ':' member-specification[opt]
1545///
1546void Parser::ParseCXXMemberSpecification(SourceLocation RecordLoc,
John McCalld226f652010-08-21 09:40:31 +00001547 unsigned TagType, Decl *TagDecl) {
Sanjiv Gupta31fc07d2008-10-31 09:52:39 +00001548 assert((TagType == DeclSpec::TST_struct ||
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001549 TagType == DeclSpec::TST_union ||
Sanjiv Gupta31fc07d2008-10-31 09:52:39 +00001550 TagType == DeclSpec::TST_class) && "Invalid TagType!");
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001551
John McCallf312b1e2010-08-26 23:41:50 +00001552 PrettyDeclStackTraceEntry CrashInfo(Actions, TagDecl, RecordLoc,
1553 "parsing struct/union/class body");
Mike Stump1eb44332009-09-09 15:08:12 +00001554
Douglas Gregor26997fd2010-01-16 20:52:59 +00001555 // Determine whether this is a non-nested class. Note that local
1556 // classes are *not* considered to be nested classes.
1557 bool NonNestedClass = true;
1558 if (!ClassStack.empty()) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001559 for (const Scope *S = getCurScope(); S; S = S->getParent()) {
Douglas Gregor26997fd2010-01-16 20:52:59 +00001560 if (S->isClassScope()) {
1561 // We're inside a class scope, so this is a nested class.
1562 NonNestedClass = false;
1563 break;
1564 }
1565
1566 if ((S->getFlags() & Scope::FnScope)) {
1567 // If we're in a function or function template declared in the
1568 // body of a class, then this is a local class rather than a
1569 // nested class.
1570 const Scope *Parent = S->getParent();
1571 if (Parent->isTemplateParamScope())
1572 Parent = Parent->getParent();
1573 if (Parent->isClassScope())
1574 break;
1575 }
1576 }
1577 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001578
1579 // Enter a scope for the class.
Douglas Gregor3218c4b2009-01-09 22:42:13 +00001580 ParseScope ClassScope(this, Scope::ClassScope|Scope::DeclScope);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001581
Douglas Gregor6569d682009-05-27 23:11:45 +00001582 // Note that we are parsing a new (potentially-nested) class definition.
Douglas Gregor26997fd2010-01-16 20:52:59 +00001583 ParsingClassDefinition ParsingDef(*this, TagDecl, NonNestedClass);
Douglas Gregor6569d682009-05-27 23:11:45 +00001584
Douglas Gregorddc29e12009-02-06 22:42:48 +00001585 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00001586 Actions.ActOnTagStartDefinition(getCurScope(), TagDecl);
John McCallbd0dfa52009-12-19 21:48:58 +00001587
1588 if (Tok.is(tok::colon)) {
1589 ParseBaseClause(TagDecl);
1590
1591 if (!Tok.is(tok::l_brace)) {
1592 Diag(Tok, diag::err_expected_lbrace_after_base_specifiers);
John McCalldb7bb4a2010-03-17 00:38:33 +00001593
1594 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00001595 Actions.ActOnTagDefinitionError(getCurScope(), TagDecl);
John McCallbd0dfa52009-12-19 21:48:58 +00001596 return;
1597 }
1598 }
1599
1600 assert(Tok.is(tok::l_brace));
1601
1602 SourceLocation LBraceLoc = ConsumeBrace();
1603
John McCall42a4f662010-05-28 08:11:17 +00001604 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00001605 Actions.ActOnStartCXXMemberDeclarations(getCurScope(), TagDecl, LBraceLoc);
John McCallf9368152009-12-20 07:58:13 +00001606
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001607 // C++ 11p3: Members of a class defined with the keyword class are private
1608 // by default. Members of a class defined with the keywords struct or union
1609 // are public by default.
1610 AccessSpecifier CurAS;
1611 if (TagType == DeclSpec::TST_class)
1612 CurAS = AS_private;
1613 else
1614 CurAS = AS_public;
1615
Douglas Gregor07976d22010-06-21 22:31:09 +00001616 SourceLocation RBraceLoc;
1617 if (TagDecl) {
1618 // While we still have something to read, read the member-declarations.
1619 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
1620 // Each iteration of this loop reads one member-declaration.
Mike Stump1eb44332009-09-09 15:08:12 +00001621
Douglas Gregor07976d22010-06-21 22:31:09 +00001622 // Check for extraneous top-level semicolon.
1623 if (Tok.is(tok::semi)) {
1624 Diag(Tok, diag::ext_extra_struct_semi)
1625 << DeclSpec::getSpecifierName((DeclSpec::TST)TagType)
1626 << FixItHint::CreateRemoval(Tok.getLocation());
1627 ConsumeToken();
1628 continue;
1629 }
1630
1631 AccessSpecifier AS = getAccessSpecifierIfPresent();
1632 if (AS != AS_none) {
1633 // Current token is a C++ access specifier.
1634 CurAS = AS;
1635 SourceLocation ASLoc = Tok.getLocation();
1636 ConsumeToken();
1637 if (Tok.is(tok::colon))
1638 Actions.ActOnAccessSpecifier(AS, ASLoc, Tok.getLocation());
1639 else
1640 Diag(Tok, diag::err_expected_colon);
1641 ConsumeToken();
1642 continue;
1643 }
1644
1645 // FIXME: Make sure we don't have a template here.
1646
1647 // Parse all the comma separated declarators.
1648 ParseCXXClassMemberDeclaration(CurAS);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001649 }
1650
Douglas Gregor07976d22010-06-21 22:31:09 +00001651 RBraceLoc = MatchRHSPunctuation(tok::r_brace, LBraceLoc);
1652 } else {
1653 SkipUntil(tok::r_brace, false, false);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001654 }
Mike Stump1eb44332009-09-09 15:08:12 +00001655
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001656 // If attributes exist after class contents, parse them.
Ted Kremenek1e377652010-02-11 02:19:13 +00001657 llvm::OwningPtr<AttributeList> AttrList;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001658 if (Tok.is(tok::kw___attribute))
Douglas Gregor0b4c9b52010-03-29 14:42:08 +00001659 AttrList.reset(ParseGNUAttributes());
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001660
John McCall42a4f662010-05-28 08:11:17 +00001661 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00001662 Actions.ActOnFinishCXXMemberSpecification(getCurScope(), RecordLoc, TagDecl,
John McCall42a4f662010-05-28 08:11:17 +00001663 LBraceLoc, RBraceLoc,
1664 AttrList.get());
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001665
1666 // C++ 9.2p2: Within the class member-specification, the class is regarded as
1667 // complete within function bodies, default arguments,
1668 // exception-specifications, and constructor ctor-initializers (including
1669 // such things in nested classes).
1670 //
Douglas Gregor72b505b2008-12-16 21:30:33 +00001671 // FIXME: Only function bodies and constructor ctor-initializers are
1672 // parsed correctly, fix the rest.
Douglas Gregor07976d22010-06-21 22:31:09 +00001673 if (TagDecl && NonNestedClass) {
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001674 // We are not inside a nested class. This class and its nested classes
Douglas Gregor72b505b2008-12-16 21:30:33 +00001675 // are complete and we can parse the delayed portions of method
1676 // declarations and the lexed inline method definitions.
Douglas Gregore0cc0472010-06-16 23:45:56 +00001677 SourceLocation SavedPrevTokLocation = PrevTokLocation;
Douglas Gregor6569d682009-05-27 23:11:45 +00001678 ParseLexedMethodDeclarations(getCurrentClass());
1679 ParseLexedMethodDefs(getCurrentClass());
Douglas Gregore0cc0472010-06-16 23:45:56 +00001680 PrevTokLocation = SavedPrevTokLocation;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001681 }
1682
John McCall42a4f662010-05-28 08:11:17 +00001683 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00001684 Actions.ActOnTagFinishDefinition(getCurScope(), TagDecl, RBraceLoc);
John McCalldb7bb4a2010-03-17 00:38:33 +00001685
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001686 // Leave the class scope.
Douglas Gregor6569d682009-05-27 23:11:45 +00001687 ParsingDef.Pop();
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001688 ClassScope.Exit();
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001689}
Douglas Gregor7ad83902008-11-05 04:29:56 +00001690
1691/// ParseConstructorInitializer - Parse a C++ constructor initializer,
1692/// which explicitly initializes the members or base classes of a
1693/// class (C++ [class.base.init]). For example, the three initializers
1694/// after the ':' in the Derived constructor below:
1695///
1696/// @code
1697/// class Base { };
1698/// class Derived : Base {
1699/// int x;
1700/// float f;
1701/// public:
1702/// Derived(float f) : Base(), x(17), f(f) { }
1703/// };
1704/// @endcode
1705///
Mike Stump1eb44332009-09-09 15:08:12 +00001706/// [C++] ctor-initializer:
1707/// ':' mem-initializer-list
Douglas Gregor7ad83902008-11-05 04:29:56 +00001708///
Mike Stump1eb44332009-09-09 15:08:12 +00001709/// [C++] mem-initializer-list:
1710/// mem-initializer
1711/// mem-initializer , mem-initializer-list
John McCalld226f652010-08-21 09:40:31 +00001712void Parser::ParseConstructorInitializer(Decl *ConstructorDecl) {
Douglas Gregor7ad83902008-11-05 04:29:56 +00001713 assert(Tok.is(tok::colon) && "Constructor initializer always starts with ':'");
1714
1715 SourceLocation ColonLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001716
John McCallca0408f2010-08-23 06:44:23 +00001717 llvm::SmallVector<CXXBaseOrMemberInitializer*, 4> MemInitializers;
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001718 bool AnyErrors = false;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001719
Douglas Gregor7ad83902008-11-05 04:29:56 +00001720 do {
Douglas Gregor0133f522010-08-28 00:00:50 +00001721 if (Tok.is(tok::code_completion)) {
1722 Actions.CodeCompleteConstructorInitializer(ConstructorDecl,
1723 MemInitializers.data(),
1724 MemInitializers.size());
1725 ConsumeCodeCompletionToken();
1726 } else {
1727 MemInitResult MemInit = ParseMemInitializer(ConstructorDecl);
1728 if (!MemInit.isInvalid())
1729 MemInitializers.push_back(MemInit.get());
1730 else
1731 AnyErrors = true;
1732 }
1733
Douglas Gregor7ad83902008-11-05 04:29:56 +00001734 if (Tok.is(tok::comma))
1735 ConsumeToken();
1736 else if (Tok.is(tok::l_brace))
1737 break;
1738 else {
1739 // Skip over garbage, until we get to '{'. Don't eat the '{'.
Sebastian Redld3a413d2009-04-26 20:35:05 +00001740 Diag(Tok.getLocation(), diag::err_expected_lbrace_or_comma);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001741 SkipUntil(tok::l_brace, true, true);
1742 break;
1743 }
1744 } while (true);
1745
Mike Stump1eb44332009-09-09 15:08:12 +00001746 Actions.ActOnMemInitializers(ConstructorDecl, ColonLoc,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001747 MemInitializers.data(), MemInitializers.size(),
1748 AnyErrors);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001749}
1750
1751/// ParseMemInitializer - Parse a C++ member initializer, which is
1752/// part of a constructor initializer that explicitly initializes one
1753/// member or base class (C++ [class.base.init]). See
1754/// ParseConstructorInitializer for an example.
1755///
1756/// [C++] mem-initializer:
1757/// mem-initializer-id '(' expression-list[opt] ')'
Mike Stump1eb44332009-09-09 15:08:12 +00001758///
Douglas Gregor7ad83902008-11-05 04:29:56 +00001759/// [C++] mem-initializer-id:
1760/// '::'[opt] nested-name-specifier[opt] class-name
1761/// identifier
John McCalld226f652010-08-21 09:40:31 +00001762Parser::MemInitResult Parser::ParseMemInitializer(Decl *ConstructorDecl) {
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00001763 // parse '::'[opt] nested-name-specifier[opt]
1764 CXXScopeSpec SS;
John McCallb3d87482010-08-24 05:47:05 +00001765 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
1766 ParsedType TemplateTypeTy;
Fariborz Jahanian96174332009-07-01 19:21:19 +00001767 if (Tok.is(tok::annot_template_id)) {
1768 TemplateIdAnnotation *TemplateId
1769 = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
Douglas Gregord9b600c2010-01-12 17:52:59 +00001770 if (TemplateId->Kind == TNK_Type_template ||
1771 TemplateId->Kind == TNK_Dependent_template_name) {
Fariborz Jahanian96174332009-07-01 19:21:19 +00001772 AnnotateTemplateIdTokenAsType(&SS);
1773 assert(Tok.is(tok::annot_typename) && "template-id -> type failed");
John McCallb3d87482010-08-24 05:47:05 +00001774 TemplateTypeTy = getTypeAnnotation(Tok);
Fariborz Jahanian96174332009-07-01 19:21:19 +00001775 }
Fariborz Jahanian96174332009-07-01 19:21:19 +00001776 }
1777 if (!TemplateTypeTy && Tok.isNot(tok::identifier)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001778 Diag(Tok, diag::err_expected_member_or_base_name);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001779 return true;
1780 }
Mike Stump1eb44332009-09-09 15:08:12 +00001781
Douglas Gregor7ad83902008-11-05 04:29:56 +00001782 // Get the identifier. This may be a member name or a class name,
1783 // but we'll let the semantic analysis determine which it is.
Fariborz Jahanian96174332009-07-01 19:21:19 +00001784 IdentifierInfo *II = Tok.is(tok::identifier) ? Tok.getIdentifierInfo() : 0;
Douglas Gregor7ad83902008-11-05 04:29:56 +00001785 SourceLocation IdLoc = ConsumeToken();
1786
1787 // Parse the '('.
1788 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001789 Diag(Tok, diag::err_expected_lparen);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001790 return true;
1791 }
1792 SourceLocation LParenLoc = ConsumeParen();
1793
1794 // Parse the optional expression-list.
Sebastian Redla55e52c2008-11-25 22:21:31 +00001795 ExprVector ArgExprs(Actions);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001796 CommaLocsTy CommaLocs;
1797 if (Tok.isNot(tok::r_paren) && ParseExpressionList(ArgExprs, CommaLocs)) {
1798 SkipUntil(tok::r_paren);
1799 return true;
1800 }
1801
1802 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
1803
Douglas Gregor23c94db2010-07-02 17:43:08 +00001804 return Actions.ActOnMemInitializer(ConstructorDecl, getCurScope(), SS, II,
Fariborz Jahanian96174332009-07-01 19:21:19 +00001805 TemplateTypeTy, IdLoc,
Sebastian Redla55e52c2008-11-25 22:21:31 +00001806 LParenLoc, ArgExprs.take(),
Jay Foadbeaaccd2009-05-21 09:52:38 +00001807 ArgExprs.size(), CommaLocs.data(),
1808 RParenLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001809}
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00001810
1811/// ParseExceptionSpecification - Parse a C++ exception-specification
1812/// (C++ [except.spec]).
1813///
Douglas Gregora4745612008-12-01 18:00:20 +00001814/// exception-specification:
1815/// 'throw' '(' type-id-list [opt] ')'
1816/// [MS] 'throw' '(' '...' ')'
Mike Stump1eb44332009-09-09 15:08:12 +00001817///
Douglas Gregora4745612008-12-01 18:00:20 +00001818/// type-id-list:
1819/// type-id
1820/// type-id-list ',' type-id
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00001821///
Sebastian Redl7dc81342009-04-29 17:30:04 +00001822bool Parser::ParseExceptionSpecification(SourceLocation &EndLoc,
John McCallb3d87482010-08-24 05:47:05 +00001823 llvm::SmallVectorImpl<ParsedType>
Sebastian Redlef65f062009-05-29 18:02:33 +00001824 &Exceptions,
John McCallb3d87482010-08-24 05:47:05 +00001825 llvm::SmallVectorImpl<SourceRange>
Sebastian Redlef65f062009-05-29 18:02:33 +00001826 &Ranges,
Sebastian Redl7dc81342009-04-29 17:30:04 +00001827 bool &hasAnyExceptionSpec) {
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00001828 assert(Tok.is(tok::kw_throw) && "expected throw");
Mike Stump1eb44332009-09-09 15:08:12 +00001829
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00001830 SourceLocation ThrowLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001831
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00001832 if (!Tok.is(tok::l_paren)) {
1833 return Diag(Tok, diag::err_expected_lparen_after) << "throw";
1834 }
1835 SourceLocation LParenLoc = ConsumeParen();
1836
Douglas Gregora4745612008-12-01 18:00:20 +00001837 // Parse throw(...), a Microsoft extension that means "this function
1838 // can throw anything".
1839 if (Tok.is(tok::ellipsis)) {
Sebastian Redl7dc81342009-04-29 17:30:04 +00001840 hasAnyExceptionSpec = true;
Douglas Gregora4745612008-12-01 18:00:20 +00001841 SourceLocation EllipsisLoc = ConsumeToken();
1842 if (!getLang().Microsoft)
1843 Diag(EllipsisLoc, diag::ext_ellipsis_exception_spec);
Sebastian Redlab197ba2009-02-09 18:23:29 +00001844 EndLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
Douglas Gregora4745612008-12-01 18:00:20 +00001845 return false;
1846 }
1847
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00001848 // Parse the sequence of type-ids.
Sebastian Redlef65f062009-05-29 18:02:33 +00001849 SourceRange Range;
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00001850 while (Tok.isNot(tok::r_paren)) {
Sebastian Redlef65f062009-05-29 18:02:33 +00001851 TypeResult Res(ParseTypeName(&Range));
1852 if (!Res.isInvalid()) {
Sebastian Redl7dc81342009-04-29 17:30:04 +00001853 Exceptions.push_back(Res.get());
Sebastian Redlef65f062009-05-29 18:02:33 +00001854 Ranges.push_back(Range);
1855 }
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00001856 if (Tok.is(tok::comma))
1857 ConsumeToken();
Sebastian Redl7dc81342009-04-29 17:30:04 +00001858 else
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00001859 break;
1860 }
1861
Sebastian Redlab197ba2009-02-09 18:23:29 +00001862 EndLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00001863 return false;
1864}
Douglas Gregor6569d682009-05-27 23:11:45 +00001865
1866/// \brief We have just started parsing the definition of a new class,
1867/// so push that class onto our stack of classes that is currently
1868/// being parsed.
John McCalld226f652010-08-21 09:40:31 +00001869void Parser::PushParsingClass(Decl *ClassDecl, bool NonNestedClass) {
Douglas Gregor26997fd2010-01-16 20:52:59 +00001870 assert((NonNestedClass || !ClassStack.empty()) &&
Douglas Gregor6569d682009-05-27 23:11:45 +00001871 "Nested class without outer class");
Douglas Gregor26997fd2010-01-16 20:52:59 +00001872 ClassStack.push(new ParsingClass(ClassDecl, NonNestedClass));
Douglas Gregor6569d682009-05-27 23:11:45 +00001873}
1874
1875/// \brief Deallocate the given parsed class and all of its nested
1876/// classes.
1877void Parser::DeallocateParsedClasses(Parser::ParsingClass *Class) {
1878 for (unsigned I = 0, N = Class->NestedClasses.size(); I != N; ++I)
1879 DeallocateParsedClasses(Class->NestedClasses[I]);
1880 delete Class;
1881}
1882
1883/// \brief Pop the top class of the stack of classes that are
1884/// currently being parsed.
1885///
1886/// This routine should be called when we have finished parsing the
1887/// definition of a class, but have not yet popped the Scope
1888/// associated with the class's definition.
1889///
1890/// \returns true if the class we've popped is a top-level class,
1891/// false otherwise.
1892void Parser::PopParsingClass() {
1893 assert(!ClassStack.empty() && "Mismatched push/pop for class parsing");
Mike Stump1eb44332009-09-09 15:08:12 +00001894
Douglas Gregor6569d682009-05-27 23:11:45 +00001895 ParsingClass *Victim = ClassStack.top();
1896 ClassStack.pop();
1897 if (Victim->TopLevelClass) {
1898 // Deallocate all of the nested classes of this class,
1899 // recursively: we don't need to keep any of this information.
1900 DeallocateParsedClasses(Victim);
1901 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001902 }
Douglas Gregor6569d682009-05-27 23:11:45 +00001903 assert(!ClassStack.empty() && "Missing top-level class?");
1904
1905 if (Victim->MethodDecls.empty() && Victim->MethodDefs.empty() &&
1906 Victim->NestedClasses.empty()) {
1907 // The victim is a nested class, but we will not need to perform
1908 // any processing after the definition of this class since it has
1909 // no members whose handling was delayed. Therefore, we can just
1910 // remove this nested class.
1911 delete Victim;
1912 return;
1913 }
1914
1915 // This nested class has some members that will need to be processed
1916 // after the top-level class is completely defined. Therefore, add
1917 // it to the list of nested classes within its parent.
Douglas Gregor23c94db2010-07-02 17:43:08 +00001918 assert(getCurScope()->isClassScope() && "Nested class outside of class scope?");
Douglas Gregor6569d682009-05-27 23:11:45 +00001919 ClassStack.top()->NestedClasses.push_back(Victim);
Douglas Gregor23c94db2010-07-02 17:43:08 +00001920 Victim->TemplateScope = getCurScope()->getParent()->isTemplateParamScope();
Douglas Gregor6569d682009-05-27 23:11:45 +00001921}
Sean Huntbbd37c62009-11-21 08:43:09 +00001922
1923/// ParseCXX0XAttributes - Parse a C++0x attribute-specifier. Currently only
1924/// parses standard attributes.
1925///
1926/// [C++0x] attribute-specifier:
1927/// '[' '[' attribute-list ']' ']'
1928///
1929/// [C++0x] attribute-list:
1930/// attribute[opt]
1931/// attribute-list ',' attribute[opt]
1932///
1933/// [C++0x] attribute:
1934/// attribute-token attribute-argument-clause[opt]
1935///
1936/// [C++0x] attribute-token:
1937/// identifier
1938/// attribute-scoped-token
1939///
1940/// [C++0x] attribute-scoped-token:
1941/// attribute-namespace '::' identifier
1942///
1943/// [C++0x] attribute-namespace:
1944/// identifier
1945///
1946/// [C++0x] attribute-argument-clause:
1947/// '(' balanced-token-seq ')'
1948///
1949/// [C++0x] balanced-token-seq:
1950/// balanced-token
1951/// balanced-token-seq balanced-token
1952///
1953/// [C++0x] balanced-token:
1954/// '(' balanced-token-seq ')'
1955/// '[' balanced-token-seq ']'
1956/// '{' balanced-token-seq '}'
1957/// any token but '(', ')', '[', ']', '{', or '}'
1958CXX0XAttributeList Parser::ParseCXX0XAttributes(SourceLocation *EndLoc) {
1959 assert(Tok.is(tok::l_square) && NextToken().is(tok::l_square)
1960 && "Not a C++0x attribute list");
1961
1962 SourceLocation StartLoc = Tok.getLocation(), Loc;
1963 AttributeList *CurrAttr = 0;
1964
1965 ConsumeBracket();
1966 ConsumeBracket();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001967
Sean Huntbbd37c62009-11-21 08:43:09 +00001968 if (Tok.is(tok::comma)) {
1969 Diag(Tok.getLocation(), diag::err_expected_ident);
1970 ConsumeToken();
1971 }
1972
1973 while (Tok.is(tok::identifier) || Tok.is(tok::comma)) {
1974 // attribute not present
1975 if (Tok.is(tok::comma)) {
1976 ConsumeToken();
1977 continue;
1978 }
1979
1980 IdentifierInfo *ScopeName = 0, *AttrName = Tok.getIdentifierInfo();
1981 SourceLocation ScopeLoc, AttrLoc = ConsumeToken();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001982
Sean Huntbbd37c62009-11-21 08:43:09 +00001983 // scoped attribute
1984 if (Tok.is(tok::coloncolon)) {
1985 ConsumeToken();
1986
1987 if (!Tok.is(tok::identifier)) {
1988 Diag(Tok.getLocation(), diag::err_expected_ident);
1989 SkipUntil(tok::r_square, tok::comma, true, true);
1990 continue;
1991 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001992
Sean Huntbbd37c62009-11-21 08:43:09 +00001993 ScopeName = AttrName;
1994 ScopeLoc = AttrLoc;
1995
1996 AttrName = Tok.getIdentifierInfo();
1997 AttrLoc = ConsumeToken();
1998 }
1999
2000 bool AttrParsed = false;
2001 // No scoped names are supported; ideally we could put all non-standard
2002 // attributes into namespaces.
2003 if (!ScopeName) {
2004 switch(AttributeList::getKind(AttrName))
2005 {
2006 // No arguments
Sean Hunt7725e672009-11-25 04:20:27 +00002007 case AttributeList::AT_base_check:
2008 case AttributeList::AT_carries_dependency:
Sean Huntbbd37c62009-11-21 08:43:09 +00002009 case AttributeList::AT_final:
Sean Hunt7725e672009-11-25 04:20:27 +00002010 case AttributeList::AT_hiding:
2011 case AttributeList::AT_noreturn:
2012 case AttributeList::AT_override: {
Sean Huntbbd37c62009-11-21 08:43:09 +00002013 if (Tok.is(tok::l_paren)) {
2014 Diag(Tok.getLocation(), diag::err_cxx0x_attribute_forbids_arguments)
2015 << AttrName->getName();
2016 break;
2017 }
2018
2019 CurrAttr = new AttributeList(AttrName, AttrLoc, 0, AttrLoc, 0,
2020 SourceLocation(), 0, 0, CurrAttr, false,
2021 true);
2022 AttrParsed = true;
2023 break;
2024 }
2025
2026 // One argument; must be a type-id or assignment-expression
2027 case AttributeList::AT_aligned: {
2028 if (Tok.isNot(tok::l_paren)) {
2029 Diag(Tok.getLocation(), diag::err_cxx0x_attribute_requires_arguments)
2030 << AttrName->getName();
2031 break;
2032 }
2033 SourceLocation ParamLoc = ConsumeParen();
2034
John McCall60d7b3a2010-08-24 06:29:42 +00002035 ExprResult ArgExpr = ParseCXX0XAlignArgument(ParamLoc);
Sean Huntbbd37c62009-11-21 08:43:09 +00002036
2037 MatchRHSPunctuation(tok::r_paren, ParamLoc);
2038
2039 ExprVector ArgExprs(Actions);
2040 ArgExprs.push_back(ArgExpr.release());
2041 CurrAttr = new AttributeList(AttrName, AttrLoc, 0, AttrLoc,
2042 0, ParamLoc, ArgExprs.take(), 1, CurrAttr,
2043 false, true);
2044
2045 AttrParsed = true;
2046 break;
2047 }
2048
2049 // Silence warnings
2050 default: break;
2051 }
2052 }
2053
2054 // Skip the entire parameter clause, if any
2055 if (!AttrParsed && Tok.is(tok::l_paren)) {
2056 ConsumeParen();
2057 // SkipUntil maintains the balancedness of tokens.
2058 SkipUntil(tok::r_paren, false);
2059 }
2060 }
2061
2062 if (ExpectAndConsume(tok::r_square, diag::err_expected_rsquare))
2063 SkipUntil(tok::r_square, false);
2064 Loc = Tok.getLocation();
2065 if (ExpectAndConsume(tok::r_square, diag::err_expected_rsquare))
2066 SkipUntil(tok::r_square, false);
2067
2068 CXX0XAttributeList Attr (CurrAttr, SourceRange(StartLoc, Loc), true);
2069 return Attr;
2070}
2071
2072/// ParseCXX0XAlignArgument - Parse the argument to C++0x's [[align]]
2073/// attribute.
2074///
2075/// FIXME: Simply returns an alignof() expression if the argument is a
2076/// type. Ideally, the type should be propagated directly into Sema.
2077///
2078/// [C++0x] 'align' '(' type-id ')'
2079/// [C++0x] 'align' '(' assignment-expression ')'
John McCall60d7b3a2010-08-24 06:29:42 +00002080ExprResult Parser::ParseCXX0XAlignArgument(SourceLocation Start) {
Sean Huntbbd37c62009-11-21 08:43:09 +00002081 if (isTypeIdInParens()) {
John McCallf312b1e2010-08-26 23:41:50 +00002082 EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated);
Sean Huntbbd37c62009-11-21 08:43:09 +00002083 SourceLocation TypeLoc = Tok.getLocation();
John McCallb3d87482010-08-24 05:47:05 +00002084 ParsedType Ty = ParseTypeName().get();
Sean Huntbbd37c62009-11-21 08:43:09 +00002085 SourceRange TypeRange(Start, Tok.getLocation());
John McCallb3d87482010-08-24 05:47:05 +00002086 return Actions.ActOnSizeOfAlignOfExpr(TypeLoc, false, true,
2087 Ty.getAsOpaquePtr(), TypeRange);
Sean Huntbbd37c62009-11-21 08:43:09 +00002088 } else
2089 return ParseConstantExpression();
2090}