blob: a1e67d76997a59a3d4d573c14105c351be16ffc2 [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();
Francois Pichet334d47e2010-10-11 12:59:39 +0000124 if (getLang().Microsoft && Tok.is(tok::l_square))
125 ParseMicrosoftAttributes();
Sean Huntbbd37c62009-11-21 08:43:09 +0000126 ParseExternalDeclaration(Attr);
127 }
Mike Stump1eb44332009-09-09 15:08:12 +0000128
Chris Lattner51448322009-03-29 14:02:43 +0000129 // Leave the namespace scope.
130 NamespaceScope.Exit();
131
Chris Lattner97144fc2009-04-02 04:16:50 +0000132 SourceLocation RBraceLoc = MatchRHSPunctuation(tok::r_brace, LBrace);
133 Actions.ActOnFinishNamespaceDef(NamespcDecl, RBraceLoc);
Chris Lattner51448322009-03-29 14:02:43 +0000134
Chris Lattner97144fc2009-04-02 04:16:50 +0000135 DeclEnd = RBraceLoc;
Chris Lattner51448322009-03-29 14:02:43 +0000136 return NamespcDecl;
Chris Lattner8f08cb72007-08-25 06:57:03 +0000137}
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000138
Anders Carlssonf67606a2009-03-28 04:07:16 +0000139/// ParseNamespaceAlias - Parse the part after the '=' in a namespace
140/// alias definition.
141///
John McCalld226f652010-08-21 09:40:31 +0000142Decl *Parser::ParseNamespaceAlias(SourceLocation NamespaceLoc,
Mike Stump1eb44332009-09-09 15:08:12 +0000143 SourceLocation AliasLoc,
Chris Lattner97144fc2009-04-02 04:16:50 +0000144 IdentifierInfo *Alias,
145 SourceLocation &DeclEnd) {
Anders Carlssonf67606a2009-03-28 04:07:16 +0000146 assert(Tok.is(tok::equal) && "Not equal token");
Mike Stump1eb44332009-09-09 15:08:12 +0000147
Anders Carlssonf67606a2009-03-28 04:07:16 +0000148 ConsumeToken(); // eat the '='.
Mike Stump1eb44332009-09-09 15:08:12 +0000149
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000150 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000151 Actions.CodeCompleteNamespaceAliasDecl(getCurScope());
Douglas Gregordc845342010-05-25 05:58:43 +0000152 ConsumeCodeCompletionToken();
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000153 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000154
Anders Carlssonf67606a2009-03-28 04:07:16 +0000155 CXXScopeSpec SS;
156 // Parse (optional) nested-name-specifier.
John McCallb3d87482010-08-24 05:47:05 +0000157 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
Anders Carlssonf67606a2009-03-28 04:07:16 +0000158
159 if (SS.isInvalid() || Tok.isNot(tok::identifier)) {
160 Diag(Tok, diag::err_expected_namespace_name);
161 // Skip to end of the definition and eat the ';'.
162 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000163 return 0;
Anders Carlssonf67606a2009-03-28 04:07:16 +0000164 }
165
166 // Parse identifier.
Anders Carlsson03bd5a12009-03-28 22:53:22 +0000167 IdentifierInfo *Ident = Tok.getIdentifierInfo();
168 SourceLocation IdentLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000169
Anders Carlssonf67606a2009-03-28 04:07:16 +0000170 // Eat the ';'.
Chris Lattner97144fc2009-04-02 04:16:50 +0000171 DeclEnd = Tok.getLocation();
Chris Lattner6869d8e2009-06-14 00:07:48 +0000172 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_namespace_name,
173 "", tok::semi);
Mike Stump1eb44332009-09-09 15:08:12 +0000174
Douglas Gregor23c94db2010-07-02 17:43:08 +0000175 return Actions.ActOnNamespaceAliasDef(getCurScope(), NamespaceLoc, AliasLoc, Alias,
Anders Carlsson03bd5a12009-03-28 22:53:22 +0000176 SS, IdentLoc, Ident);
Anders Carlssonf67606a2009-03-28 04:07:16 +0000177}
178
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000179/// ParseLinkage - We know that the current token is a string_literal
180/// and just before that, that extern was seen.
181///
182/// linkage-specification: [C++ 7.5p2: dcl.link]
183/// 'extern' string-literal '{' declaration-seq[opt] '}'
184/// 'extern' string-literal declaration
185///
Chris Lattner7d642712010-11-09 20:15:55 +0000186Decl *Parser::ParseLinkage(ParsingDeclSpec &DS, unsigned Context) {
Douglas Gregorc19923d2008-11-21 16:10:08 +0000187 assert(Tok.is(tok::string_literal) && "Not a string literal!");
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000188 llvm::SmallString<8> LangBuffer;
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;
Chris Lattner7d642712010-11-09 20:15:55 +0000205 if (getLang().CPlusPlus0x && isCXX0XAttributeSpecifier())
Sean Huntbbd37c62009-11-21 08:43:09 +0000206 Attr = ParseCXX0XAttributes();
Chris Lattner7d642712010-11-09 20:15:55 +0000207
Francois Pichet334d47e2010-10-11 12:59:39 +0000208 if (getLang().Microsoft && Tok.is(tok::l_square))
209 ParseMicrosoftAttributes();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000210
Douglas Gregor074149e2009-01-05 19:45:36 +0000211 if (Tok.isNot(tok::l_brace)) {
Abramo Bagnara35f9a192010-07-30 16:47:02 +0000212 DS.setExternInLinkageSpec(true);
Douglas Gregor09a63c92010-08-24 14:14:45 +0000213 ParseExternalDeclaration(Attr, &DS);
Douglas Gregor23c94db2010-07-02 17:43:08 +0000214 return Actions.ActOnFinishLinkageSpecification(getCurScope(), LinkageSpec,
Douglas Gregor074149e2009-01-05 19:45:36 +0000215 SourceLocation());
Mike Stump1eb44332009-09-09 15:08:12 +0000216 }
Douglas Gregorf44515a2008-12-16 22:23:02 +0000217
Douglas Gregor63a01132010-02-07 08:38:28 +0000218 DS.abort();
219
Sean Huntbbd37c62009-11-21 08:43:09 +0000220 if (Attr.HasAttr)
221 Diag(Attr.Range.getBegin(), diag::err_attributes_not_allowed)
222 << Attr.Range;
223
Douglas Gregorf44515a2008-12-16 22:23:02 +0000224 SourceLocation LBrace = ConsumeBrace();
Douglas Gregorf44515a2008-12-16 22:23:02 +0000225 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
Sean Huntbbd37c62009-11-21 08:43:09 +0000226 CXX0XAttributeList Attr;
227 if (getLang().CPlusPlus0x && isCXX0XAttributeSpecifier())
228 Attr = ParseCXX0XAttributes();
Francois Pichet334d47e2010-10-11 12:59:39 +0000229 if (getLang().Microsoft && Tok.is(tok::l_square))
230 ParseMicrosoftAttributes();
Sean Huntbbd37c62009-11-21 08:43:09 +0000231 ParseExternalDeclaration(Attr);
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000232 }
233
Douglas Gregorf44515a2008-12-16 22:23:02 +0000234 SourceLocation RBrace = MatchRHSPunctuation(tok::r_brace, LBrace);
Chris Lattner7d642712010-11-09 20:15:55 +0000235 return Actions.ActOnFinishLinkageSpecification(getCurScope(), LinkageSpec,
236 RBrace);
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000237}
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000238
Douglas Gregorf780abc2008-12-30 03:27:21 +0000239/// ParseUsingDirectiveOrDeclaration - Parse C++ using using-declaration or
240/// using-directive. Assumes that current token is 'using'.
John McCalld226f652010-08-21 09:40:31 +0000241Decl *Parser::ParseUsingDirectiveOrDeclaration(unsigned Context,
Sean Huntbbd37c62009-11-21 08:43:09 +0000242 SourceLocation &DeclEnd,
243 CXX0XAttributeList Attr) {
Douglas Gregorf780abc2008-12-30 03:27:21 +0000244 assert(Tok.is(tok::kw_using) && "Not using token");
245
246 // Eat 'using'.
247 SourceLocation UsingLoc = ConsumeToken();
248
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000249 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000250 Actions.CodeCompleteUsing(getCurScope());
Douglas Gregordc845342010-05-25 05:58:43 +0000251 ConsumeCodeCompletionToken();
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000252 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000253
Chris Lattner2f274772009-01-06 06:55:51 +0000254 if (Tok.is(tok::kw_namespace))
Douglas Gregorf780abc2008-12-30 03:27:21 +0000255 // Next token after 'using' is 'namespace' so it must be using-directive
Sean Huntbbd37c62009-11-21 08:43:09 +0000256 return ParseUsingDirective(Context, UsingLoc, DeclEnd, Attr.AttrList);
257
258 if (Attr.HasAttr)
259 Diag(Attr.Range.getBegin(), diag::err_attributes_not_allowed)
260 << Attr.Range;
Chris Lattner2f274772009-01-06 06:55:51 +0000261
262 // Otherwise, it must be using-declaration.
Sean Huntbbd37c62009-11-21 08:43:09 +0000263 // Ignore illegal attributes (the caller should already have issued an error.
Chris Lattner97144fc2009-04-02 04:16:50 +0000264 return ParseUsingDeclaration(Context, UsingLoc, DeclEnd);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000265}
266
267/// ParseUsingDirective - Parse C++ using-directive, assumes
268/// that current token is 'namespace' and 'using' was already parsed.
269///
270/// using-directive: [C++ 7.3.p4: namespace.udir]
271/// 'using' 'namespace' ::[opt] nested-name-specifier[opt]
272/// namespace-name ;
273/// [GNU] using-directive:
274/// 'using' 'namespace' ::[opt] nested-name-specifier[opt]
275/// namespace-name attributes[opt] ;
276///
John McCalld226f652010-08-21 09:40:31 +0000277Decl *Parser::ParseUsingDirective(unsigned Context,
Chris Lattner97144fc2009-04-02 04:16:50 +0000278 SourceLocation UsingLoc,
Sean Huntbbd37c62009-11-21 08:43:09 +0000279 SourceLocation &DeclEnd,
280 AttributeList *Attr) {
Douglas Gregorf780abc2008-12-30 03:27:21 +0000281 assert(Tok.is(tok::kw_namespace) && "Not 'namespace' token");
282
283 // Eat 'namespace'.
284 SourceLocation NamespcLoc = ConsumeToken();
285
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000286 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000287 Actions.CodeCompleteUsingDirective(getCurScope());
Douglas Gregordc845342010-05-25 05:58:43 +0000288 ConsumeCodeCompletionToken();
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000289 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000290
Douglas Gregorf780abc2008-12-30 03:27:21 +0000291 CXXScopeSpec SS;
292 // Parse (optional) nested-name-specifier.
John McCallb3d87482010-08-24 05:47:05 +0000293 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000294
Douglas Gregorf780abc2008-12-30 03:27:21 +0000295 IdentifierInfo *NamespcName = 0;
296 SourceLocation IdentLoc = SourceLocation();
297
298 // Parse namespace-name.
Chris Lattner823c44e2009-01-06 07:27:21 +0000299 if (SS.isInvalid() || Tok.isNot(tok::identifier)) {
Douglas Gregorf780abc2008-12-30 03:27:21 +0000300 Diag(Tok, diag::err_expected_namespace_name);
301 // If there was invalid namespace name, skip to end of decl, and eat ';'.
302 SkipUntil(tok::semi);
303 // FIXME: Are there cases, when we would like to call ActOnUsingDirective?
John McCalld226f652010-08-21 09:40:31 +0000304 return 0;
Douglas Gregorf780abc2008-12-30 03:27:21 +0000305 }
Mike Stump1eb44332009-09-09 15:08:12 +0000306
Chris Lattner823c44e2009-01-06 07:27:21 +0000307 // Parse identifier.
308 NamespcName = Tok.getIdentifierInfo();
309 IdentLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000310
Chris Lattner823c44e2009-01-06 07:27:21 +0000311 // Parse (optional) attributes (most likely GNU strong-using extension).
Sean Huntbbd37c62009-11-21 08:43:09 +0000312 bool GNUAttr = false;
313 if (Tok.is(tok::kw___attribute)) {
314 GNUAttr = true;
315 Attr = addAttributeLists(Attr, ParseGNUAttributes());
316 }
Mike Stump1eb44332009-09-09 15:08:12 +0000317
Chris Lattner823c44e2009-01-06 07:27:21 +0000318 // Eat ';'.
Chris Lattner97144fc2009-04-02 04:16:50 +0000319 DeclEnd = Tok.getLocation();
Chris Lattner6869d8e2009-06-14 00:07:48 +0000320 ExpectAndConsume(tok::semi,
Douglas Gregor9ba23b42010-09-07 15:23:11 +0000321 GNUAttr ? diag::err_expected_semi_after_attribute_list
322 : diag::err_expected_semi_after_namespace_name,
323 "", tok::semi);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000324
Douglas Gregor23c94db2010-07-02 17:43:08 +0000325 return Actions.ActOnUsingDirective(getCurScope(), UsingLoc, NamespcLoc, SS,
Sean Huntbbd37c62009-11-21 08:43:09 +0000326 IdentLoc, NamespcName, Attr);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000327}
328
329/// ParseUsingDeclaration - Parse C++ using-declaration. Assumes that
330/// 'using' was already seen.
331///
332/// using-declaration: [C++ 7.3.p3: namespace.udecl]
333/// 'using' 'typename'[opt] ::[opt] nested-name-specifier
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000334/// unqualified-id
335/// 'using' :: unqualified-id
Douglas Gregorf780abc2008-12-30 03:27:21 +0000336///
John McCalld226f652010-08-21 09:40:31 +0000337Decl *Parser::ParseUsingDeclaration(unsigned Context,
Chris Lattner97144fc2009-04-02 04:16:50 +0000338 SourceLocation UsingLoc,
Anders Carlsson595adc12009-08-29 19:54:19 +0000339 SourceLocation &DeclEnd,
340 AccessSpecifier AS) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000341 CXXScopeSpec SS;
John McCall7ba107a2009-11-18 02:36:19 +0000342 SourceLocation TypenameLoc;
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000343 bool IsTypeName;
344
345 // Ignore optional 'typename'.
Douglas Gregor12c118a2009-11-04 16:30:06 +0000346 // FIXME: This is wrong; we should parse this as a typename-specifier.
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000347 if (Tok.is(tok::kw_typename)) {
John McCall7ba107a2009-11-18 02:36:19 +0000348 TypenameLoc = Tok.getLocation();
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000349 ConsumeToken();
350 IsTypeName = true;
351 }
352 else
353 IsTypeName = false;
354
355 // Parse nested-name-specifier.
John McCallb3d87482010-08-24 05:47:05 +0000356 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000357
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000358 // Check nested-name specifier.
359 if (SS.isInvalid()) {
360 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000361 return 0;
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000362 }
Douglas Gregor12c118a2009-11-04 16:30:06 +0000363
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000364 // Parse the unqualified-id. We allow parsing of both constructor and
Douglas Gregor12c118a2009-11-04 16:30:06 +0000365 // destructor names and allow the action module to diagnose any semantic
366 // errors.
367 UnqualifiedId Name;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000368 if (ParseUnqualifiedId(SS,
Douglas Gregor12c118a2009-11-04 16:30:06 +0000369 /*EnteringContext=*/false,
370 /*AllowDestructorName=*/true,
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000371 /*AllowConstructorName=*/true,
John McCallb3d87482010-08-24 05:47:05 +0000372 ParsedType(),
Douglas Gregor12c118a2009-11-04 16:30:06 +0000373 Name)) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000374 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000375 return 0;
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000376 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000377
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000378 // Parse (optional) attributes (most likely GNU strong-using extension).
Ted Kremenek1e377652010-02-11 02:19:13 +0000379 llvm::OwningPtr<AttributeList> AttrList;
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000380 if (Tok.is(tok::kw___attribute))
Ted Kremenek1e377652010-02-11 02:19:13 +0000381 AttrList.reset(ParseGNUAttributes());
Mike Stump1eb44332009-09-09 15:08:12 +0000382
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000383 // Eat ';'.
384 DeclEnd = Tok.getLocation();
385 ExpectAndConsume(tok::semi, diag::err_expected_semi_after,
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000386 AttrList ? "attributes list" : "using declaration",
Douglas Gregor12c118a2009-11-04 16:30:06 +0000387 tok::semi);
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000388
Douglas Gregor23c94db2010-07-02 17:43:08 +0000389 return Actions.ActOnUsingDeclaration(getCurScope(), AS, true, UsingLoc, SS, Name,
Ted Kremenek1e377652010-02-11 02:19:13 +0000390 AttrList.get(), IsTypeName, TypenameLoc);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000391}
392
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000393/// ParseStaticAssertDeclaration - Parse C++0x static_assert-declaratoion.
394///
395/// static_assert-declaration:
396/// static_assert ( constant-expression , string-literal ) ;
397///
John McCalld226f652010-08-21 09:40:31 +0000398Decl *Parser::ParseStaticAssertDeclaration(SourceLocation &DeclEnd){
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000399 assert(Tok.is(tok::kw_static_assert) && "Not a static_assert declaration");
400 SourceLocation StaticAssertLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000401
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000402 if (Tok.isNot(tok::l_paren)) {
403 Diag(Tok, diag::err_expected_lparen);
John McCalld226f652010-08-21 09:40:31 +0000404 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000405 }
Mike Stump1eb44332009-09-09 15:08:12 +0000406
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000407 SourceLocation LParenLoc = ConsumeParen();
Douglas Gregore0762c92009-06-19 23:52:42 +0000408
John McCall60d7b3a2010-08-24 06:29:42 +0000409 ExprResult AssertExpr(ParseConstantExpression());
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000410 if (AssertExpr.isInvalid()) {
411 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000412 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000413 }
Mike Stump1eb44332009-09-09 15:08:12 +0000414
Anders Carlssonad5f9602009-03-13 23:29:20 +0000415 if (ExpectAndConsume(tok::comma, diag::err_expected_comma, "", tok::semi))
John McCalld226f652010-08-21 09:40:31 +0000416 return 0;
Anders Carlssonad5f9602009-03-13 23:29:20 +0000417
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000418 if (Tok.isNot(tok::string_literal)) {
419 Diag(Tok, diag::err_expected_string_literal);
420 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000421 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000422 }
Mike Stump1eb44332009-09-09 15:08:12 +0000423
John McCall60d7b3a2010-08-24 06:29:42 +0000424 ExprResult AssertMessage(ParseStringLiteralExpression());
Mike Stump1eb44332009-09-09 15:08:12 +0000425 if (AssertMessage.isInvalid())
John McCalld226f652010-08-21 09:40:31 +0000426 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000427
Anders Carlsson94b15fb2009-03-15 18:44:04 +0000428 MatchRHSPunctuation(tok::r_paren, LParenLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000429
Chris Lattner97144fc2009-04-02 04:16:50 +0000430 DeclEnd = Tok.getLocation();
Douglas Gregor9ba23b42010-09-07 15:23:11 +0000431 ExpectAndConsumeSemi(diag::err_expected_semi_after_static_assert);
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000432
John McCall9ae2f072010-08-23 23:25:46 +0000433 return Actions.ActOnStaticAssertDeclaration(StaticAssertLoc,
434 AssertExpr.take(),
435 AssertMessage.take());
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000436}
437
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000438/// ParseDecltypeSpecifier - Parse a C++0x decltype specifier.
439///
440/// 'decltype' ( expression )
441///
442void Parser::ParseDecltypeSpecifier(DeclSpec &DS) {
443 assert(Tok.is(tok::kw_decltype) && "Not a decltype specifier");
444
445 SourceLocation StartLoc = ConsumeToken();
446 SourceLocation LParenLoc = Tok.getLocation();
Mike Stump1eb44332009-09-09 15:08:12 +0000447
448 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after,
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000449 "decltype")) {
450 SkipUntil(tok::r_paren);
451 return;
452 }
Mike Stump1eb44332009-09-09 15:08:12 +0000453
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000454 // Parse the expression
Mike Stump1eb44332009-09-09 15:08:12 +0000455
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000456 // C++0x [dcl.type.simple]p4:
457 // The operand of the decltype specifier is an unevaluated operand.
458 EnterExpressionEvaluationContext Unevaluated(Actions,
John McCallf312b1e2010-08-26 23:41:50 +0000459 Sema::Unevaluated);
John McCall60d7b3a2010-08-24 06:29:42 +0000460 ExprResult Result = ParseExpression();
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000461 if (Result.isInvalid()) {
462 SkipUntil(tok::r_paren);
463 return;
464 }
Mike Stump1eb44332009-09-09 15:08:12 +0000465
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000466 // Match the ')'
467 SourceLocation RParenLoc;
468 if (Tok.is(tok::r_paren))
469 RParenLoc = ConsumeParen();
470 else
471 MatchRHSPunctuation(tok::r_paren, LParenLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000472
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000473 if (RParenLoc.isInvalid())
474 return;
475
476 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +0000477 unsigned DiagID;
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000478 // Check for duplicate type specifiers (e.g. "int decltype(a)").
Mike Stump1eb44332009-09-09 15:08:12 +0000479 if (DS.SetTypeSpecType(DeclSpec::TST_decltype, StartLoc, PrevSpec,
John McCallfec54012009-08-03 20:12:06 +0000480 DiagID, Result.release()))
481 Diag(StartLoc, DiagID) << PrevSpec;
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000482}
483
Douglas Gregor42a552f2008-11-05 20:51:48 +0000484/// ParseClassName - Parse a C++ class-name, which names a class. Note
485/// that we only check that the result names a type; semantic analysis
486/// will need to verify that the type names a class. The result is
Douglas Gregor7f43d672009-02-25 23:52:28 +0000487/// either a type or NULL, depending on whether a type name was
Douglas Gregor42a552f2008-11-05 20:51:48 +0000488/// found.
489///
490/// class-name: [C++ 9.1]
491/// identifier
Douglas Gregor7f43d672009-02-25 23:52:28 +0000492/// simple-template-id
Mike Stump1eb44332009-09-09 15:08:12 +0000493///
Douglas Gregor31a19b62009-04-01 21:51:26 +0000494Parser::TypeResult Parser::ParseClassName(SourceLocation &EndLocation,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +0000495 CXXScopeSpec *SS) {
Douglas Gregor7f43d672009-02-25 23:52:28 +0000496 // Check whether we have a template-id that names a type.
497 if (Tok.is(tok::annot_template_id)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000498 TemplateIdAnnotation *TemplateId
Douglas Gregor7f43d672009-02-25 23:52:28 +0000499 = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
Douglas Gregord9b600c2010-01-12 17:52:59 +0000500 if (TemplateId->Kind == TNK_Type_template ||
501 TemplateId->Kind == TNK_Dependent_template_name) {
Douglas Gregor31a19b62009-04-01 21:51:26 +0000502 AnnotateTemplateIdTokenAsType(SS);
Douglas Gregor7f43d672009-02-25 23:52:28 +0000503
504 assert(Tok.is(tok::annot_typename) && "template-id -> type failed");
John McCallb3d87482010-08-24 05:47:05 +0000505 ParsedType Type = getTypeAnnotation(Tok);
Douglas Gregor7f43d672009-02-25 23:52:28 +0000506 EndLocation = Tok.getAnnotationEndLoc();
507 ConsumeToken();
Douglas Gregor31a19b62009-04-01 21:51:26 +0000508
509 if (Type)
510 return Type;
511 return true;
Douglas Gregor7f43d672009-02-25 23:52:28 +0000512 }
513
514 // Fall through to produce an error below.
515 }
516
Douglas Gregor42a552f2008-11-05 20:51:48 +0000517 if (Tok.isNot(tok::identifier)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000518 Diag(Tok, diag::err_expected_class_name);
Douglas Gregor31a19b62009-04-01 21:51:26 +0000519 return true;
Douglas Gregor42a552f2008-11-05 20:51:48 +0000520 }
521
Douglas Gregor84d0a192010-01-12 21:28:44 +0000522 IdentifierInfo *Id = Tok.getIdentifierInfo();
523 SourceLocation IdLoc = ConsumeToken();
524
525 if (Tok.is(tok::less)) {
526 // It looks the user intended to write a template-id here, but the
527 // template-name was wrong. Try to fix that.
528 TemplateNameKind TNK = TNK_Type_template;
529 TemplateTy Template;
Douglas Gregor23c94db2010-07-02 17:43:08 +0000530 if (!Actions.DiagnoseUnknownTemplateName(*Id, IdLoc, getCurScope(),
Douglas Gregor84d0a192010-01-12 21:28:44 +0000531 SS, Template, TNK)) {
532 Diag(IdLoc, diag::err_unknown_template_name)
533 << Id;
534 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000535
Douglas Gregor84d0a192010-01-12 21:28:44 +0000536 if (!Template)
537 return true;
538
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000539 // Form the template name
Douglas Gregor84d0a192010-01-12 21:28:44 +0000540 UnqualifiedId TemplateName;
541 TemplateName.setIdentifier(Id, IdLoc);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000542
Douglas Gregor84d0a192010-01-12 21:28:44 +0000543 // Parse the full template-id, then turn it into a type.
544 if (AnnotateTemplateIdToken(Template, TNK, SS, TemplateName,
545 SourceLocation(), true))
546 return true;
547 if (TNK == TNK_Dependent_template_name)
548 AnnotateTemplateIdTokenAsType(SS);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000549
Douglas Gregor84d0a192010-01-12 21:28:44 +0000550 // If we didn't end up with a typename token, there's nothing more we
551 // can do.
552 if (Tok.isNot(tok::annot_typename))
553 return true;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000554
Douglas Gregor84d0a192010-01-12 21:28:44 +0000555 // Retrieve the type from the annotation token, consume that token, and
556 // return.
557 EndLocation = Tok.getAnnotationEndLoc();
John McCallb3d87482010-08-24 05:47:05 +0000558 ParsedType Type = getTypeAnnotation(Tok);
Douglas Gregor84d0a192010-01-12 21:28:44 +0000559 ConsumeToken();
560 return Type;
561 }
562
Douglas Gregor42a552f2008-11-05 20:51:48 +0000563 // We have an identifier; check whether it is actually a type.
John McCallb3d87482010-08-24 05:47:05 +0000564 ParsedType Type = Actions.getTypeName(*Id, IdLoc, getCurScope(), SS, true);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000565 if (!Type) {
Douglas Gregor124b8782010-02-16 19:09:40 +0000566 Diag(IdLoc, diag::err_expected_class_name);
Douglas Gregor31a19b62009-04-01 21:51:26 +0000567 return true;
Douglas Gregor42a552f2008-11-05 20:51:48 +0000568 }
569
570 // Consume the identifier.
Douglas Gregor84d0a192010-01-12 21:28:44 +0000571 EndLocation = IdLoc;
Nick Lewycky56062202010-07-26 16:56:01 +0000572
573 // Fake up a Declarator to use with ActOnTypeName.
574 DeclSpec DS;
575 DS.SetRangeStart(IdLoc);
576 DS.SetRangeEnd(EndLocation);
577 DS.getTypeSpecScope() = *SS;
578
579 const char *PrevSpec = 0;
580 unsigned DiagID;
581 DS.SetTypeSpecType(TST_typename, IdLoc, PrevSpec, DiagID, Type);
582
583 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
584 return Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
Douglas Gregor42a552f2008-11-05 20:51:48 +0000585}
586
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000587/// ParseClassSpecifier - Parse a C++ class-specifier [C++ class] or
588/// elaborated-type-specifier [C++ dcl.type.elab]; we can't tell which
589/// until we reach the start of a definition or see a token that
Sebastian Redld9bafa72010-02-03 21:21:43 +0000590/// cannot start a definition. If SuppressDeclarations is true, we do know.
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000591///
592/// class-specifier: [C++ class]
593/// class-head '{' member-specification[opt] '}'
594/// class-head '{' member-specification[opt] '}' attributes[opt]
595/// class-head:
596/// class-key identifier[opt] base-clause[opt]
597/// class-key nested-name-specifier identifier base-clause[opt]
598/// class-key nested-name-specifier[opt] simple-template-id
599/// base-clause[opt]
600/// [GNU] class-key attributes[opt] identifier[opt] base-clause[opt]
Mike Stump1eb44332009-09-09 15:08:12 +0000601/// [GNU] class-key attributes[opt] nested-name-specifier
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000602/// identifier base-clause[opt]
Mike Stump1eb44332009-09-09 15:08:12 +0000603/// [GNU] class-key attributes[opt] nested-name-specifier[opt]
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000604/// simple-template-id base-clause[opt]
605/// class-key:
606/// 'class'
607/// 'struct'
608/// 'union'
609///
610/// elaborated-type-specifier: [C++ dcl.type.elab]
Mike Stump1eb44332009-09-09 15:08:12 +0000611/// class-key ::[opt] nested-name-specifier[opt] identifier
612/// class-key ::[opt] nested-name-specifier[opt] 'template'[opt]
613/// simple-template-id
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000614///
615/// Note that the C++ class-specifier and elaborated-type-specifier,
616/// together, subsume the C99 struct-or-union-specifier:
617///
618/// struct-or-union-specifier: [C99 6.7.2.1]
619/// struct-or-union identifier[opt] '{' struct-contents '}'
620/// struct-or-union identifier
621/// [GNU] struct-or-union attributes[opt] identifier[opt] '{' struct-contents
622/// '}' attributes[opt]
623/// [GNU] struct-or-union attributes[opt] identifier
624/// struct-or-union:
625/// 'struct'
626/// 'union'
Chris Lattner4c97d762009-04-12 21:49:30 +0000627void Parser::ParseClassSpecifier(tok::TokenKind TagTokKind,
628 SourceLocation StartLoc, DeclSpec &DS,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000629 const ParsedTemplateInfo &TemplateInfo,
Sebastian Redld9bafa72010-02-03 21:21:43 +0000630 AccessSpecifier AS, bool SuppressDeclarations){
Chris Lattner4c97d762009-04-12 21:49:30 +0000631 DeclSpec::TST TagType;
632 if (TagTokKind == tok::kw_struct)
633 TagType = DeclSpec::TST_struct;
634 else if (TagTokKind == tok::kw_class)
635 TagType = DeclSpec::TST_class;
636 else {
637 assert(TagTokKind == tok::kw_union && "Not a class specifier");
638 TagType = DeclSpec::TST_union;
639 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000640
Douglas Gregor374929f2009-09-18 15:37:17 +0000641 if (Tok.is(tok::code_completion)) {
642 // Code completion for a struct, class, or union name.
Douglas Gregor23c94db2010-07-02 17:43:08 +0000643 Actions.CodeCompleteTag(getCurScope(), TagType);
Douglas Gregordc845342010-05-25 05:58:43 +0000644 ConsumeCodeCompletionToken();
Douglas Gregor374929f2009-09-18 15:37:17 +0000645 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000646
Chandler Carruth926c4b42010-06-28 08:39:25 +0000647 // C++03 [temp.explicit] 14.7.2/8:
648 // The usual access checking rules do not apply to names used to specify
649 // explicit instantiations.
650 //
651 // As an extension we do not perform access checking on the names used to
652 // specify explicit specializations either. This is important to allow
653 // specializing traits classes for private types.
654 bool SuppressingAccessChecks = false;
655 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation ||
656 TemplateInfo.Kind == ParsedTemplateInfo::ExplicitSpecialization) {
657 Actions.ActOnStartSuppressingAccessChecks();
658 SuppressingAccessChecks = true;
659 }
660
Sean Huntbbd37c62009-11-21 08:43:09 +0000661 AttributeList *AttrList = 0;
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000662 // If attributes exist after tag, parse them.
663 if (Tok.is(tok::kw___attribute))
Sean Huntbbd37c62009-11-21 08:43:09 +0000664 AttrList = ParseGNUAttributes();
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000665
Steve Narofff59e17e2008-12-24 20:59:21 +0000666 // If declspecs exist after tag, parse them.
John McCallb1d397c2010-08-05 17:13:11 +0000667 while (Tok.is(tok::kw___declspec))
Sean Huntbbd37c62009-11-21 08:43:09 +0000668 AttrList = ParseMicrosoftDeclSpec(AttrList);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000669
Sean Huntbbd37c62009-11-21 08:43:09 +0000670 // If C++0x attributes exist here, parse them.
671 // FIXME: Are we consistent with the ordering of parsing of different
672 // styles of attributes?
673 if (isCXX0XAttributeSpecifier())
674 AttrList = addAttributeLists(AttrList, ParseCXX0XAttributes().AttrList);
Mike Stump1eb44332009-09-09 15:08:12 +0000675
Douglas Gregorb117a602009-09-04 05:53:02 +0000676 if (TagType == DeclSpec::TST_struct && Tok.is(tok::kw___is_pod)) {
677 // GNU libstdc++ 4.2 uses __is_pod as the name of a struct template, but
678 // __is_pod is a keyword in GCC >= 4.3. Therefore, when we see the
Mike Stump1eb44332009-09-09 15:08:12 +0000679 // token sequence "struct __is_pod", make __is_pod into a normal
Douglas Gregorb117a602009-09-04 05:53:02 +0000680 // identifier rather than a keyword, to allow libstdc++ 4.2 to work
681 // properly.
Argyrios Kyrtzidis646395b2010-08-11 22:55:12 +0000682 Tok.getIdentifierInfo()->RevertTokenIDToIdentifier();
Douglas Gregorb117a602009-09-04 05:53:02 +0000683 Tok.setKind(tok::identifier);
684 }
685
686 if (TagType == DeclSpec::TST_struct && Tok.is(tok::kw___is_empty)) {
687 // GNU libstdc++ 4.2 uses __is_empty as the name of a struct template, but
688 // __is_empty is a keyword in GCC >= 4.3. Therefore, when we see the
Mike Stump1eb44332009-09-09 15:08:12 +0000689 // token sequence "struct __is_empty", make __is_empty into a normal
Douglas Gregorb117a602009-09-04 05:53:02 +0000690 // identifier rather than a keyword, to allow libstdc++ 4.2 to work
691 // properly.
Argyrios Kyrtzidis646395b2010-08-11 22:55:12 +0000692 Tok.getIdentifierInfo()->RevertTokenIDToIdentifier();
Douglas Gregorb117a602009-09-04 05:53:02 +0000693 Tok.setKind(tok::identifier);
694 }
Mike Stump1eb44332009-09-09 15:08:12 +0000695
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000696 // Parse the (optional) nested-name-specifier.
John McCallaa87d332009-12-12 11:40:51 +0000697 CXXScopeSpec &SS = DS.getTypeSpecScope();
Chris Lattner08d92ec2009-12-10 00:32:41 +0000698 if (getLang().CPlusPlus) {
699 // "FOO : BAR" is not a potential typo for "FOO::BAR".
700 ColonProtectionRAIIObject X(*this);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000701
John McCallb3d87482010-08-24 05:47:05 +0000702 if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(), true))
John McCall207014e2010-07-30 06:26:29 +0000703 DS.SetTypeSpecError();
John McCall9ba61662010-02-26 08:45:28 +0000704 if (SS.isSet())
Chris Lattner08d92ec2009-12-10 00:32:41 +0000705 if (Tok.isNot(tok::identifier) && Tok.isNot(tok::annot_template_id))
706 Diag(Tok, diag::err_expected_ident);
707 }
Douglas Gregorcc636682009-02-17 23:15:12 +0000708
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000709 TemplateParameterLists *TemplateParams = TemplateInfo.TemplateParams;
710
Douglas Gregorcc636682009-02-17 23:15:12 +0000711 // Parse the (optional) class name or simple-template-id.
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000712 IdentifierInfo *Name = 0;
713 SourceLocation NameLoc;
Douglas Gregor39a8de12009-02-25 19:37:18 +0000714 TemplateIdAnnotation *TemplateId = 0;
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000715 if (Tok.is(tok::identifier)) {
716 Name = Tok.getIdentifierInfo();
717 NameLoc = ConsumeToken();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000718
Douglas Gregor5ee37342010-05-30 22:30:21 +0000719 if (Tok.is(tok::less) && getLang().CPlusPlus) {
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000720 // The name was supposed to refer to a template, but didn't.
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000721 // Eat the template argument list and try to continue parsing this as
722 // a class (or template thereof).
723 TemplateArgList TemplateArgs;
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000724 SourceLocation LAngleLoc, RAngleLoc;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000725 if (ParseTemplateIdAfterTemplateName(TemplateTy(), NameLoc, &SS,
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000726 true, LAngleLoc,
Douglas Gregor314b97f2009-11-10 19:49:08 +0000727 TemplateArgs, RAngleLoc)) {
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000728 // We couldn't parse the template argument list at all, so don't
729 // try to give any location information for the list.
730 LAngleLoc = RAngleLoc = SourceLocation();
731 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000732
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000733 Diag(NameLoc, diag::err_explicit_spec_non_template)
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000734 << (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation)
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000735 << (TagType == DeclSpec::TST_class? 0
736 : TagType == DeclSpec::TST_struct? 1
737 : 2)
738 << Name
739 << SourceRange(LAngleLoc, RAngleLoc);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000740
741 // Strip off the last template parameter list if it was empty, since
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000742 // we've removed its template argument list.
743 if (TemplateParams && TemplateInfo.LastParameterListWasEmpty) {
744 if (TemplateParams && TemplateParams->size() > 1) {
745 TemplateParams->pop_back();
746 } else {
747 TemplateParams = 0;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000748 const_cast<ParsedTemplateInfo&>(TemplateInfo).Kind
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000749 = ParsedTemplateInfo::NonTemplate;
750 }
751 } else if (TemplateInfo.Kind
752 == ParsedTemplateInfo::ExplicitInstantiation) {
753 // Pretend this is just a forward declaration.
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000754 TemplateParams = 0;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000755 const_cast<ParsedTemplateInfo&>(TemplateInfo).Kind
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000756 = ParsedTemplateInfo::NonTemplate;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000757 const_cast<ParsedTemplateInfo&>(TemplateInfo).TemplateLoc
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000758 = SourceLocation();
759 const_cast<ParsedTemplateInfo&>(TemplateInfo).ExternLoc
760 = SourceLocation();
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000761 }
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000762 }
Douglas Gregor39a8de12009-02-25 19:37:18 +0000763 } else if (Tok.is(tok::annot_template_id)) {
764 TemplateId = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
765 NameLoc = ConsumeToken();
Douglas Gregorcc636682009-02-17 23:15:12 +0000766
Douglas Gregorc45c2322009-03-31 00:43:58 +0000767 if (TemplateId->Kind != TNK_Type_template) {
Douglas Gregor39a8de12009-02-25 19:37:18 +0000768 // The template-name in the simple-template-id refers to
769 // something other than a class template. Give an appropriate
770 // error message and skip to the ';'.
771 SourceRange Range(NameLoc);
772 if (SS.isNotEmpty())
773 Range.setBegin(SS.getBeginLoc());
Douglas Gregorcc636682009-02-17 23:15:12 +0000774
Douglas Gregor39a8de12009-02-25 19:37:18 +0000775 Diag(TemplateId->LAngleLoc, diag::err_template_spec_syntax_non_template)
776 << Name << static_cast<int>(TemplateId->Kind) << Range;
Mike Stump1eb44332009-09-09 15:08:12 +0000777
Douglas Gregor39a8de12009-02-25 19:37:18 +0000778 DS.SetTypeSpecError();
779 SkipUntil(tok::semi, false, true);
780 TemplateId->Destroy();
Chandler Carruth926c4b42010-06-28 08:39:25 +0000781 if (SuppressingAccessChecks)
782 Actions.ActOnStopSuppressingAccessChecks();
783
Douglas Gregor39a8de12009-02-25 19:37:18 +0000784 return;
Douglas Gregorcc636682009-02-17 23:15:12 +0000785 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000786 }
787
Chandler Carruth926c4b42010-06-28 08:39:25 +0000788 // As soon as we're finished parsing the class's template-id, turn access
789 // checking back on.
790 if (SuppressingAccessChecks)
791 Actions.ActOnStopSuppressingAccessChecks();
792
John McCall67d1a672009-08-06 02:15:43 +0000793 // There are four options here. If we have 'struct foo;', then this
794 // is either a forward declaration or a friend declaration, which
795 // have to be treated differently. If we have 'struct foo {...' or
Douglas Gregor39a8de12009-02-25 19:37:18 +0000796 // 'struct foo :...' then this is a definition. Otherwise we have
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000797 // something like 'struct foo xyz', a reference.
Sebastian Redld9bafa72010-02-03 21:21:43 +0000798 // However, in some contexts, things look like declarations but are just
799 // references, e.g.
800 // new struct s;
801 // or
802 // &T::operator struct s;
803 // For these, SuppressDeclarations is true.
John McCallf312b1e2010-08-26 23:41:50 +0000804 Sema::TagUseKind TUK;
Sebastian Redld9bafa72010-02-03 21:21:43 +0000805 if (SuppressDeclarations)
John McCallf312b1e2010-08-26 23:41:50 +0000806 TUK = Sema::TUK_Reference;
Sebastian Redld9bafa72010-02-03 21:21:43 +0000807 else if (Tok.is(tok::l_brace) || (getLang().CPlusPlus && Tok.is(tok::colon))){
Douglas Gregord85bea22009-09-26 06:47:28 +0000808 if (DS.isFriendSpecified()) {
809 // C++ [class.friend]p2:
810 // A class shall not be defined in a friend declaration.
811 Diag(Tok.getLocation(), diag::err_friend_decl_defines_class)
812 << SourceRange(DS.getFriendSpecLoc());
813
814 // Skip everything up to the semicolon, so that this looks like a proper
815 // friend class (or template thereof) declaration.
816 SkipUntil(tok::semi, true, true);
John McCallf312b1e2010-08-26 23:41:50 +0000817 TUK = Sema::TUK_Friend;
Douglas Gregord85bea22009-09-26 06:47:28 +0000818 } else {
819 // Okay, this is a class definition.
John McCallf312b1e2010-08-26 23:41:50 +0000820 TUK = Sema::TUK_Definition;
Douglas Gregord85bea22009-09-26 06:47:28 +0000821 }
822 } else if (Tok.is(tok::semi))
John McCallf312b1e2010-08-26 23:41:50 +0000823 TUK = DS.isFriendSpecified() ? Sema::TUK_Friend : Sema::TUK_Declaration;
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000824 else
John McCallf312b1e2010-08-26 23:41:50 +0000825 TUK = Sema::TUK_Reference;
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000826
John McCall207014e2010-07-30 06:26:29 +0000827 if (!Name && !TemplateId && (DS.getTypeSpecType() == DeclSpec::TST_error ||
John McCallf312b1e2010-08-26 23:41:50 +0000828 TUK != Sema::TUK_Definition)) {
John McCall207014e2010-07-30 06:26:29 +0000829 if (DS.getTypeSpecType() != DeclSpec::TST_error) {
830 // We have a declaration or reference to an anonymous class.
831 Diag(StartLoc, diag::err_anon_type_definition)
832 << DeclSpec::getSpecifierName(TagType);
833 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000834
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000835 SkipUntil(tok::comma, true);
Douglas Gregor39a8de12009-02-25 19:37:18 +0000836
837 if (TemplateId)
838 TemplateId->Destroy();
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000839 return;
840 }
841
Douglas Gregorddc29e12009-02-06 22:42:48 +0000842 // Create the tag portion of the class or class template.
John McCalld226f652010-08-21 09:40:31 +0000843 DeclResult TagOrTempResult = true; // invalid
844 TypeResult TypeResult = true; // invalid
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000845
Douglas Gregor402abb52009-05-28 23:31:59 +0000846 bool Owned = false;
John McCallf1bbbb42009-09-04 01:14:41 +0000847 if (TemplateId) {
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000848 // Explicit specialization, class template partial specialization,
849 // or explicit instantiation.
Mike Stump1eb44332009-09-09 15:08:12 +0000850 ASTTemplateArgsPtr TemplateArgsPtr(Actions,
Douglas Gregor39a8de12009-02-25 19:37:18 +0000851 TemplateId->getTemplateArgs(),
Douglas Gregor39a8de12009-02-25 19:37:18 +0000852 TemplateId->NumArgs);
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000853 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallf312b1e2010-08-26 23:41:50 +0000854 TUK == Sema::TUK_Declaration) {
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000855 // This is an explicit instantiation of a class template.
856 TagOrTempResult
Douglas Gregor23c94db2010-07-02 17:43:08 +0000857 = Actions.ActOnExplicitInstantiation(getCurScope(),
Douglas Gregor45f96552009-09-04 06:33:52 +0000858 TemplateInfo.ExternLoc,
Mike Stump1eb44332009-09-09 15:08:12 +0000859 TemplateInfo.TemplateLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000860 TagType,
Mike Stump1eb44332009-09-09 15:08:12 +0000861 StartLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000862 SS,
John McCall2b5289b2010-08-23 07:28:44 +0000863 TemplateId->Template,
Mike Stump1eb44332009-09-09 15:08:12 +0000864 TemplateId->TemplateNameLoc,
865 TemplateId->LAngleLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000866 TemplateArgsPtr,
Mike Stump1eb44332009-09-09 15:08:12 +0000867 TemplateId->RAngleLoc,
Sean Huntbbd37c62009-11-21 08:43:09 +0000868 AttrList);
John McCall74256f52010-04-14 00:24:33 +0000869
870 // Friend template-ids are treated as references unless
871 // they have template headers, in which case they're ill-formed
872 // (FIXME: "template <class T> friend class A<T>::B<int>;").
873 // We diagnose this error in ActOnClassTemplateSpecialization.
John McCallf312b1e2010-08-26 23:41:50 +0000874 } else if (TUK == Sema::TUK_Reference ||
875 (TUK == Sema::TUK_Friend &&
John McCall74256f52010-04-14 00:24:33 +0000876 TemplateInfo.Kind == ParsedTemplateInfo::NonTemplate)) {
John McCallc4e70192009-09-11 04:59:25 +0000877 TypeResult
John McCall2b5289b2010-08-23 07:28:44 +0000878 = Actions.ActOnTemplateIdType(TemplateId->Template,
John McCall6b2becf2009-09-08 17:47:29 +0000879 TemplateId->TemplateNameLoc,
880 TemplateId->LAngleLoc,
881 TemplateArgsPtr,
John McCall6b2becf2009-09-08 17:47:29 +0000882 TemplateId->RAngleLoc);
883
John McCallc4e70192009-09-11 04:59:25 +0000884 TypeResult = Actions.ActOnTagTemplateIdType(TypeResult, TUK,
885 TagType, StartLoc);
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000886 } else {
887 // This is an explicit specialization or a class template
888 // partial specialization.
889 TemplateParameterLists FakedParamLists;
890
891 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation) {
892 // This looks like an explicit instantiation, because we have
893 // something like
894 //
895 // template class Foo<X>
896 //
Douglas Gregor3f5b61c2009-05-14 00:28:11 +0000897 // but it actually has a definition. Most likely, this was
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000898 // meant to be an explicit specialization, but the user forgot
899 // the '<>' after 'template'.
John McCallf312b1e2010-08-26 23:41:50 +0000900 assert(TUK == Sema::TUK_Definition && "Expected a definition here");
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000901
Mike Stump1eb44332009-09-09 15:08:12 +0000902 SourceLocation LAngleLoc
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000903 = PP.getLocForEndOfToken(TemplateInfo.TemplateLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000904 Diag(TemplateId->TemplateNameLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000905 diag::err_explicit_instantiation_with_definition)
906 << SourceRange(TemplateInfo.TemplateLoc)
Douglas Gregor849b2432010-03-31 17:46:05 +0000907 << FixItHint::CreateInsertion(LAngleLoc, "<>");
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000908
909 // Create a fake template parameter list that contains only
910 // "template<>", so that we treat this construct as a class
911 // template specialization.
912 FakedParamLists.push_back(
Mike Stump1eb44332009-09-09 15:08:12 +0000913 Actions.ActOnTemplateParameterList(0, SourceLocation(),
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000914 TemplateInfo.TemplateLoc,
Mike Stump1eb44332009-09-09 15:08:12 +0000915 LAngleLoc,
916 0, 0,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000917 LAngleLoc));
918 TemplateParams = &FakedParamLists;
919 }
920
921 // Build the class template specialization.
922 TagOrTempResult
Douglas Gregor23c94db2010-07-02 17:43:08 +0000923 = Actions.ActOnClassTemplateSpecialization(getCurScope(), TagType, TUK,
Douglas Gregor39a8de12009-02-25 19:37:18 +0000924 StartLoc, SS,
John McCall2b5289b2010-08-23 07:28:44 +0000925 TemplateId->Template,
Mike Stump1eb44332009-09-09 15:08:12 +0000926 TemplateId->TemplateNameLoc,
927 TemplateId->LAngleLoc,
Douglas Gregor39a8de12009-02-25 19:37:18 +0000928 TemplateArgsPtr,
Mike Stump1eb44332009-09-09 15:08:12 +0000929 TemplateId->RAngleLoc,
Sean Huntbbd37c62009-11-21 08:43:09 +0000930 AttrList,
John McCallf312b1e2010-08-26 23:41:50 +0000931 MultiTemplateParamsArg(Actions,
Douglas Gregorcc636682009-02-17 23:15:12 +0000932 TemplateParams? &(*TemplateParams)[0] : 0,
933 TemplateParams? TemplateParams->size() : 0));
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000934 }
Douglas Gregor39a8de12009-02-25 19:37:18 +0000935 TemplateId->Destroy();
Douglas Gregor3f5b61c2009-05-14 00:28:11 +0000936 } else if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallf312b1e2010-08-26 23:41:50 +0000937 TUK == Sema::TUK_Declaration) {
Douglas Gregor3f5b61c2009-05-14 00:28:11 +0000938 // Explicit instantiation of a member of a class template
939 // specialization, e.g.,
940 //
941 // template struct Outer<int>::Inner;
942 //
943 TagOrTempResult
Douglas Gregor23c94db2010-07-02 17:43:08 +0000944 = Actions.ActOnExplicitInstantiation(getCurScope(),
Douglas Gregor45f96552009-09-04 06:33:52 +0000945 TemplateInfo.ExternLoc,
Mike Stump1eb44332009-09-09 15:08:12 +0000946 TemplateInfo.TemplateLoc,
947 TagType, StartLoc, SS, Name,
Sean Huntbbd37c62009-11-21 08:43:09 +0000948 NameLoc, AttrList);
John McCall9a34edb2010-10-19 01:40:49 +0000949 } else if (TUK == Sema::TUK_Friend &&
950 TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate) {
951 TagOrTempResult =
952 Actions.ActOnTemplatedFriendTag(getCurScope(), DS.getFriendSpecLoc(),
953 TagType, StartLoc, SS,
954 Name, NameLoc, AttrList,
955 MultiTemplateParamsArg(Actions,
956 TemplateParams? &(*TemplateParams)[0] : 0,
957 TemplateParams? TemplateParams->size() : 0));
Douglas Gregor3f5b61c2009-05-14 00:28:11 +0000958 } else {
959 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallf312b1e2010-08-26 23:41:50 +0000960 TUK == Sema::TUK_Definition) {
Douglas Gregor3f5b61c2009-05-14 00:28:11 +0000961 // FIXME: Diagnose this particular error.
962 }
963
John McCallc4e70192009-09-11 04:59:25 +0000964 bool IsDependent = false;
965
John McCalla25c4082010-10-19 18:40:57 +0000966 // Don't pass down template parameter lists if this is just a tag
967 // reference. For example, we don't need the template parameters here:
968 // template <class T> class A *makeA(T t);
969 MultiTemplateParamsArg TParams;
970 if (TUK != Sema::TUK_Reference && TemplateParams)
971 TParams =
972 MultiTemplateParamsArg(&(*TemplateParams)[0], TemplateParams->size());
973
Douglas Gregor3f5b61c2009-05-14 00:28:11 +0000974 // Declaration or definition of a class type
John McCall9a34edb2010-10-19 01:40:49 +0000975 TagOrTempResult = Actions.ActOnTag(getCurScope(), TagType, TUK, StartLoc,
976 SS, Name, NameLoc, AttrList, AS,
John McCalla25c4082010-10-19 18:40:57 +0000977 TParams, Owned, IsDependent, false,
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000978 clang::TypeResult());
John McCallc4e70192009-09-11 04:59:25 +0000979
980 // If ActOnTag said the type was dependent, try again with the
981 // less common call.
John McCall9a34edb2010-10-19 01:40:49 +0000982 if (IsDependent) {
983 assert(TUK == Sema::TUK_Reference || TUK == Sema::TUK_Friend);
Douglas Gregor23c94db2010-07-02 17:43:08 +0000984 TypeResult = Actions.ActOnDependentTag(getCurScope(), TagType, TUK,
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000985 SS, Name, StartLoc, NameLoc);
John McCall9a34edb2010-10-19 01:40:49 +0000986 }
Douglas Gregor3f5b61c2009-05-14 00:28:11 +0000987 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000988
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000989 // If there is a body, parse it and inform the actions module.
John McCallf312b1e2010-08-26 23:41:50 +0000990 if (TUK == Sema::TUK_Definition) {
John McCallbd0dfa52009-12-19 21:48:58 +0000991 assert(Tok.is(tok::l_brace) ||
992 (getLang().CPlusPlus && Tok.is(tok::colon)));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000993 if (getLang().CPlusPlus)
Douglas Gregor212e81c2009-03-25 00:13:59 +0000994 ParseCXXMemberSpecification(StartLoc, TagType, TagOrTempResult.get());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000995 else
Douglas Gregor212e81c2009-03-25 00:13:59 +0000996 ParseStructUnionBody(StartLoc, TagType, TagOrTempResult.get());
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000997 }
998
John McCallb3d87482010-08-24 05:47:05 +0000999 // FIXME: The DeclSpec should keep the locations of both the keyword and the
1000 // name (if there is one).
1001 SourceLocation TSTLoc = NameLoc.isValid()? NameLoc : StartLoc;
1002
1003 const char *PrevSpec = 0;
1004 unsigned DiagID;
1005 bool Result;
John McCallc4e70192009-09-11 04:59:25 +00001006 if (!TypeResult.isInvalid()) {
John McCallb3d87482010-08-24 05:47:05 +00001007 Result = DS.SetTypeSpecType(DeclSpec::TST_typename, TSTLoc,
1008 PrevSpec, DiagID, TypeResult.get());
John McCallc4e70192009-09-11 04:59:25 +00001009 } else if (!TagOrTempResult.isInvalid()) {
John McCallb3d87482010-08-24 05:47:05 +00001010 Result = DS.SetTypeSpecType(TagType, TSTLoc, PrevSpec, DiagID,
1011 TagOrTempResult.get(), Owned);
John McCallc4e70192009-09-11 04:59:25 +00001012 } else {
Douglas Gregorddc29e12009-02-06 22:42:48 +00001013 DS.SetTypeSpecError();
Anders Carlsson66e99772009-05-11 22:27:47 +00001014 return;
1015 }
Mike Stump1eb44332009-09-09 15:08:12 +00001016
John McCallb3d87482010-08-24 05:47:05 +00001017 if (Result)
John McCallfec54012009-08-03 20:12:06 +00001018 Diag(StartLoc, DiagID) << PrevSpec;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001019
Chris Lattner4ed5d912010-02-02 01:23:29 +00001020 // At this point, we've successfully parsed a class-specifier in 'definition'
1021 // form (e.g. "struct foo { int x; }". While we could just return here, we're
1022 // going to look at what comes after it to improve error recovery. If an
1023 // impossible token occurs next, we assume that the programmer forgot a ; at
1024 // the end of the declaration and recover that way.
1025 //
1026 // This switch enumerates the valid "follow" set for definition.
John McCallf312b1e2010-08-26 23:41:50 +00001027 if (TUK == Sema::TUK_Definition) {
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001028 bool ExpectedSemi = true;
Chris Lattner4ed5d912010-02-02 01:23:29 +00001029 switch (Tok.getKind()) {
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001030 default: break;
Chris Lattner4ed5d912010-02-02 01:23:29 +00001031 case tok::semi: // struct foo {...} ;
Chris Lattner99c95202010-02-02 17:32:27 +00001032 case tok::star: // struct foo {...} * P;
1033 case tok::amp: // struct foo {...} & R = ...
1034 case tok::identifier: // struct foo {...} V ;
1035 case tok::r_paren: //(struct foo {...} ) {4}
1036 case tok::annot_cxxscope: // struct foo {...} a:: b;
1037 case tok::annot_typename: // struct foo {...} a ::b;
1038 case tok::annot_template_id: // struct foo {...} a<int> ::b;
Chris Lattnerc2e1c1a2010-02-03 20:41:24 +00001039 case tok::l_paren: // struct foo {...} ( x);
Chris Lattner16acfee2010-02-03 01:45:03 +00001040 case tok::comma: // __builtin_offsetof(struct foo{...} ,
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001041 ExpectedSemi = false;
1042 break;
1043 // Type qualifiers
1044 case tok::kw_const: // struct foo {...} const x;
1045 case tok::kw_volatile: // struct foo {...} volatile x;
1046 case tok::kw_restrict: // struct foo {...} restrict x;
1047 case tok::kw_inline: // struct foo {...} inline foo() {};
Chris Lattner99c95202010-02-02 17:32:27 +00001048 // Storage-class specifiers
1049 case tok::kw_static: // struct foo {...} static x;
1050 case tok::kw_extern: // struct foo {...} extern x;
1051 case tok::kw_typedef: // struct foo {...} typedef x;
1052 case tok::kw_register: // struct foo {...} register x;
1053 case tok::kw_auto: // struct foo {...} auto x;
Douglas Gregor33f99242010-05-17 18:19:56 +00001054 case tok::kw_mutable: // struct foo {...} mutable x;
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001055 // As shown above, type qualifiers and storage class specifiers absolutely
1056 // can occur after class specifiers according to the grammar. However,
1057 // almost noone actually writes code like this. If we see one of these,
1058 // it is much more likely that someone missed a semi colon and the
1059 // type/storage class specifier we're seeing is part of the *next*
1060 // intended declaration, as in:
1061 //
1062 // struct foo { ... }
1063 // typedef int X;
1064 //
1065 // We'd really like to emit a missing semicolon error instead of emitting
1066 // an error on the 'int' saying that you can't have two type specifiers in
1067 // the same declaration of X. Because of this, we look ahead past this
1068 // token to see if it's a type specifier. If so, we know the code is
1069 // otherwise invalid, so we can produce the expected semi error.
1070 if (!isKnownToBeTypeSpecifier(NextToken()))
1071 ExpectedSemi = false;
Chris Lattner4ed5d912010-02-02 01:23:29 +00001072 break;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001073
1074 case tok::r_brace: // struct bar { struct foo {...} }
Chris Lattner4ed5d912010-02-02 01:23:29 +00001075 // Missing ';' at end of struct is accepted as an extension in C mode.
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001076 if (!getLang().CPlusPlus)
1077 ExpectedSemi = false;
1078 break;
1079 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001080
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001081 if (ExpectedSemi) {
Chris Lattner4ed5d912010-02-02 01:23:29 +00001082 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_tagdecl,
1083 TagType == DeclSpec::TST_class ? "class"
1084 : TagType == DeclSpec::TST_struct? "struct" : "union");
1085 // Push this token back into the preprocessor and change our current token
1086 // to ';' so that the rest of the code recovers as though there were an
1087 // ';' after the definition.
1088 PP.EnterToken(Tok);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001089 Tok.setKind(tok::semi);
Chris Lattner4ed5d912010-02-02 01:23:29 +00001090 }
1091 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001092}
1093
Mike Stump1eb44332009-09-09 15:08:12 +00001094/// ParseBaseClause - Parse the base-clause of a C++ class [C++ class.derived].
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001095///
1096/// base-clause : [C++ class.derived]
1097/// ':' base-specifier-list
1098/// base-specifier-list:
1099/// base-specifier '...'[opt]
1100/// base-specifier-list ',' base-specifier '...'[opt]
John McCalld226f652010-08-21 09:40:31 +00001101void Parser::ParseBaseClause(Decl *ClassDecl) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001102 assert(Tok.is(tok::colon) && "Not a base clause");
1103 ConsumeToken();
1104
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001105 // Build up an array of parsed base specifiers.
John McCallca0408f2010-08-23 06:44:23 +00001106 llvm::SmallVector<CXXBaseSpecifier *, 8> BaseInfo;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001107
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001108 while (true) {
1109 // Parse a base-specifier.
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001110 BaseResult Result = ParseBaseSpecifier(ClassDecl);
Douglas Gregor5ac8aff2009-01-26 22:44:13 +00001111 if (Result.isInvalid()) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001112 // Skip the rest of this base specifier, up until the comma or
1113 // opening brace.
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001114 SkipUntil(tok::comma, tok::l_brace, true, true);
1115 } else {
1116 // Add this to our array of base specifiers.
Douglas Gregor5ac8aff2009-01-26 22:44:13 +00001117 BaseInfo.push_back(Result.get());
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001118 }
1119
1120 // If the next token is a comma, consume it and keep reading
1121 // base-specifiers.
1122 if (Tok.isNot(tok::comma)) break;
Mike Stump1eb44332009-09-09 15:08:12 +00001123
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001124 // Consume the comma.
1125 ConsumeToken();
1126 }
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001127
1128 // Attach the base specifiers
Jay Foadbeaaccd2009-05-21 09:52:38 +00001129 Actions.ActOnBaseSpecifiers(ClassDecl, BaseInfo.data(), BaseInfo.size());
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001130}
1131
1132/// ParseBaseSpecifier - Parse a C++ base-specifier. A base-specifier is
1133/// one entry in the base class list of a class specifier, for example:
1134/// class foo : public bar, virtual private baz {
1135/// 'public bar' and 'virtual private baz' are each base-specifiers.
1136///
1137/// base-specifier: [C++ class.derived]
1138/// ::[opt] nested-name-specifier[opt] class-name
1139/// 'virtual' access-specifier[opt] ::[opt] nested-name-specifier[opt]
1140/// class-name
1141/// access-specifier 'virtual'[opt] ::[opt] nested-name-specifier[opt]
1142/// class-name
John McCalld226f652010-08-21 09:40:31 +00001143Parser::BaseResult Parser::ParseBaseSpecifier(Decl *ClassDecl) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001144 bool IsVirtual = false;
1145 SourceLocation StartLoc = Tok.getLocation();
1146
1147 // Parse the 'virtual' keyword.
1148 if (Tok.is(tok::kw_virtual)) {
1149 ConsumeToken();
1150 IsVirtual = true;
1151 }
1152
1153 // Parse an (optional) access specifier.
1154 AccessSpecifier Access = getAccessSpecifierIfPresent();
John McCall92f88312010-01-23 00:46:32 +00001155 if (Access != AS_none)
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001156 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001157
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001158 // Parse the 'virtual' keyword (again!), in case it came after the
1159 // access specifier.
1160 if (Tok.is(tok::kw_virtual)) {
1161 SourceLocation VirtualLoc = ConsumeToken();
1162 if (IsVirtual) {
1163 // Complain about duplicate 'virtual'
Chris Lattner1ab3b962008-11-18 07:48:38 +00001164 Diag(VirtualLoc, diag::err_dup_virtual)
Douglas Gregor849b2432010-03-31 17:46:05 +00001165 << FixItHint::CreateRemoval(VirtualLoc);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001166 }
1167
1168 IsVirtual = true;
1169 }
1170
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001171 // Parse optional '::' and optional nested-name-specifier.
1172 CXXScopeSpec SS;
John McCallb3d87482010-08-24 05:47:05 +00001173 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), /*EnteringContext=*/false);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001174
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001175 // The location of the base class itself.
1176 SourceLocation BaseLoc = Tok.getLocation();
Douglas Gregor42a552f2008-11-05 20:51:48 +00001177
1178 // Parse the class-name.
Douglas Gregor7f43d672009-02-25 23:52:28 +00001179 SourceLocation EndLocation;
Douglas Gregor31a19b62009-04-01 21:51:26 +00001180 TypeResult BaseType = ParseClassName(EndLocation, &SS);
1181 if (BaseType.isInvalid())
Douglas Gregor42a552f2008-11-05 20:51:48 +00001182 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001183
1184 // Find the complete source range for the base-specifier.
Douglas Gregor7f43d672009-02-25 23:52:28 +00001185 SourceRange Range(StartLoc, EndLocation);
Mike Stump1eb44332009-09-09 15:08:12 +00001186
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001187 // Notify semantic analysis that we have parsed a complete
1188 // base-specifier.
Sebastian Redla55e52c2008-11-25 22:21:31 +00001189 return Actions.ActOnBaseSpecifier(ClassDecl, Range, IsVirtual, Access,
Douglas Gregor31a19b62009-04-01 21:51:26 +00001190 BaseType.get(), BaseLoc);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001191}
1192
1193/// getAccessSpecifierIfPresent - Determine whether the next token is
1194/// a C++ access-specifier.
1195///
1196/// access-specifier: [C++ class.derived]
1197/// 'private'
1198/// 'protected'
1199/// 'public'
Mike Stump1eb44332009-09-09 15:08:12 +00001200AccessSpecifier Parser::getAccessSpecifierIfPresent() const {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001201 switch (Tok.getKind()) {
1202 default: return AS_none;
1203 case tok::kw_private: return AS_private;
1204 case tok::kw_protected: return AS_protected;
1205 case tok::kw_public: return AS_public;
1206 }
1207}
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001208
Eli Friedmand33133c2009-07-22 21:45:50 +00001209void Parser::HandleMemberFunctionDefaultArgs(Declarator& DeclaratorInfo,
John McCalld226f652010-08-21 09:40:31 +00001210 Decl *ThisDecl) {
Eli Friedmand33133c2009-07-22 21:45:50 +00001211 // We just declared a member function. If this member function
1212 // has any default arguments, we'll need to parse them later.
1213 LateParsedMethodDeclaration *LateMethod = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001214 DeclaratorChunk::FunctionTypeInfo &FTI
Eli Friedmand33133c2009-07-22 21:45:50 +00001215 = DeclaratorInfo.getTypeObject(0).Fun;
1216 for (unsigned ParamIdx = 0; ParamIdx < FTI.NumArgs; ++ParamIdx) {
1217 if (LateMethod || FTI.ArgInfo[ParamIdx].DefaultArgTokens) {
1218 if (!LateMethod) {
1219 // Push this method onto the stack of late-parsed method
1220 // declarations.
Douglas Gregord54eb442010-10-12 16:25:54 +00001221 LateMethod = new LateParsedMethodDeclaration(this, ThisDecl);
1222 getCurrentClass().LateParsedDeclarations.push_back(LateMethod);
Douglas Gregor23c94db2010-07-02 17:43:08 +00001223 LateMethod->TemplateScope = getCurScope()->isTemplateParamScope();
Eli Friedmand33133c2009-07-22 21:45:50 +00001224
1225 // Add all of the parameters prior to this one (they don't
1226 // have default arguments).
1227 LateMethod->DefaultArgs.reserve(FTI.NumArgs);
1228 for (unsigned I = 0; I < ParamIdx; ++I)
1229 LateMethod->DefaultArgs.push_back(
Douglas Gregor8f8210c2010-03-02 01:29:43 +00001230 LateParsedDefaultArgument(FTI.ArgInfo[I].Param));
Eli Friedmand33133c2009-07-22 21:45:50 +00001231 }
1232
1233 // Add this parameter to the list of parameters (it or may
1234 // not have a default argument).
1235 LateMethod->DefaultArgs.push_back(
1236 LateParsedDefaultArgument(FTI.ArgInfo[ParamIdx].Param,
1237 FTI.ArgInfo[ParamIdx].DefaultArgTokens));
1238 }
1239 }
1240}
1241
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001242/// ParseCXXClassMemberDeclaration - Parse a C++ class member declaration.
1243///
1244/// member-declaration:
1245/// decl-specifier-seq[opt] member-declarator-list[opt] ';'
1246/// function-definition ';'[opt]
1247/// ::[opt] nested-name-specifier template[opt] unqualified-id ';'[TODO]
1248/// using-declaration [TODO]
Anders Carlsson511d7ab2009-03-11 16:27:10 +00001249/// [C++0x] static_assert-declaration
Anders Carlsson5aeccdb2009-03-26 00:52:18 +00001250/// template-declaration
Chris Lattnerbc8d5642008-12-18 01:12:00 +00001251/// [GNU] '__extension__' member-declaration
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001252///
1253/// member-declarator-list:
1254/// member-declarator
1255/// member-declarator-list ',' member-declarator
1256///
1257/// member-declarator:
1258/// declarator pure-specifier[opt]
1259/// declarator constant-initializer[opt]
1260/// identifier[opt] ':' constant-expression
1261///
Sebastian Redle2b68332009-04-12 17:16:29 +00001262/// pure-specifier:
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001263/// '= 0'
1264///
1265/// constant-initializer:
1266/// '=' constant-expression
1267///
Douglas Gregor37b372b2009-08-20 22:52:58 +00001268void Parser::ParseCXXClassMemberDeclaration(AccessSpecifier AS,
John McCallc9068d72010-07-16 08:13:16 +00001269 const ParsedTemplateInfo &TemplateInfo,
1270 ParsingDeclRAIIObject *TemplateDiags) {
John McCall60fa3cf2009-12-11 02:10:03 +00001271 // Access declarations.
1272 if (!TemplateInfo.Kind &&
1273 (Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) &&
John McCall9ba61662010-02-26 08:45:28 +00001274 !TryAnnotateCXXScopeToken() &&
John McCall60fa3cf2009-12-11 02:10:03 +00001275 Tok.is(tok::annot_cxxscope)) {
1276 bool isAccessDecl = false;
1277 if (NextToken().is(tok::identifier))
1278 isAccessDecl = GetLookAheadToken(2).is(tok::semi);
1279 else
1280 isAccessDecl = NextToken().is(tok::kw_operator);
1281
1282 if (isAccessDecl) {
1283 // Collect the scope specifier token we annotated earlier.
1284 CXXScopeSpec SS;
John McCallb3d87482010-08-24 05:47:05 +00001285 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
John McCall60fa3cf2009-12-11 02:10:03 +00001286
1287 // Try to parse an unqualified-id.
1288 UnqualifiedId Name;
John McCallb3d87482010-08-24 05:47:05 +00001289 if (ParseUnqualifiedId(SS, false, true, true, ParsedType(), Name)) {
John McCall60fa3cf2009-12-11 02:10:03 +00001290 SkipUntil(tok::semi);
1291 return;
1292 }
1293
1294 // TODO: recover from mistakenly-qualified operator declarations.
1295 if (ExpectAndConsume(tok::semi,
1296 diag::err_expected_semi_after,
1297 "access declaration",
1298 tok::semi))
1299 return;
1300
Douglas Gregor23c94db2010-07-02 17:43:08 +00001301 Actions.ActOnUsingDeclaration(getCurScope(), AS,
John McCall60fa3cf2009-12-11 02:10:03 +00001302 false, SourceLocation(),
1303 SS, Name,
1304 /* AttrList */ 0,
1305 /* IsTypeName */ false,
1306 SourceLocation());
1307 return;
1308 }
1309 }
1310
Anders Carlsson511d7ab2009-03-11 16:27:10 +00001311 // static_assert-declaration
Chris Lattner682bf922009-03-29 16:50:03 +00001312 if (Tok.is(tok::kw_static_assert)) {
Douglas Gregor37b372b2009-08-20 22:52:58 +00001313 // FIXME: Check for templates
Chris Lattner97144fc2009-04-02 04:16:50 +00001314 SourceLocation DeclEnd;
1315 ParseStaticAssertDeclaration(DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +00001316 return;
1317 }
Mike Stump1eb44332009-09-09 15:08:12 +00001318
Chris Lattner682bf922009-03-29 16:50:03 +00001319 if (Tok.is(tok::kw_template)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001320 assert(!TemplateInfo.TemplateParams &&
Douglas Gregor37b372b2009-08-20 22:52:58 +00001321 "Nested template improperly parsed?");
Chris Lattner97144fc2009-04-02 04:16:50 +00001322 SourceLocation DeclEnd;
Mike Stump1eb44332009-09-09 15:08:12 +00001323 ParseDeclarationStartingWithTemplate(Declarator::MemberContext, DeclEnd,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001324 AS);
Chris Lattner682bf922009-03-29 16:50:03 +00001325 return;
1326 }
Anders Carlsson5aeccdb2009-03-26 00:52:18 +00001327
Chris Lattnerbc8d5642008-12-18 01:12:00 +00001328 // Handle: member-declaration ::= '__extension__' member-declaration
1329 if (Tok.is(tok::kw___extension__)) {
1330 // __extension__ silences extension warnings in the subexpression.
1331 ExtensionRAIIObject O(Diags); // Use RAII to do this.
1332 ConsumeToken();
John McCallc9068d72010-07-16 08:13:16 +00001333 return ParseCXXClassMemberDeclaration(AS, TemplateInfo, TemplateDiags);
Chris Lattnerbc8d5642008-12-18 01:12:00 +00001334 }
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001335
Chris Lattner4ed5d912010-02-02 01:23:29 +00001336 // Don't parse FOO:BAR as if it were a typo for FOO::BAR, in this context it
1337 // is a bitfield.
Chris Lattnera1efc8c2009-12-10 01:59:24 +00001338 ColonProtectionRAIIObject X(*this);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001339
Sean Huntbbd37c62009-11-21 08:43:09 +00001340 CXX0XAttributeList AttrList;
1341 // Optional C++0x attribute-specifier
Chris Lattnera1efc8c2009-12-10 01:59:24 +00001342 if (getLang().CPlusPlus0x && isCXX0XAttributeSpecifier())
Sean Huntbbd37c62009-11-21 08:43:09 +00001343 AttrList = ParseCXX0XAttributes();
Francois Pichet334d47e2010-10-11 12:59:39 +00001344 if (getLang().Microsoft && Tok.is(tok::l_square))
1345 ParseMicrosoftAttributes();
Sean Huntbbd37c62009-11-21 08:43:09 +00001346
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001347 if (Tok.is(tok::kw_using)) {
Douglas Gregor37b372b2009-08-20 22:52:58 +00001348 // FIXME: Check for template aliases
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001349
Sean Huntbbd37c62009-11-21 08:43:09 +00001350 if (AttrList.HasAttr)
1351 Diag(AttrList.Range.getBegin(), diag::err_attributes_not_allowed)
1352 << AttrList.Range;
Mike Stump1eb44332009-09-09 15:08:12 +00001353
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001354 // Eat 'using'.
1355 SourceLocation UsingLoc = ConsumeToken();
1356
1357 if (Tok.is(tok::kw_namespace)) {
1358 Diag(UsingLoc, diag::err_using_namespace_in_class);
1359 SkipUntil(tok::semi, true, true);
Chris Lattnerae50d502010-02-02 00:43:15 +00001360 } else {
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001361 SourceLocation DeclEnd;
1362 // Otherwise, it must be using-declaration.
Anders Carlsson595adc12009-08-29 19:54:19 +00001363 ParseUsingDeclaration(Declarator::MemberContext, UsingLoc, DeclEnd, AS);
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001364 }
1365 return;
1366 }
1367
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001368 SourceLocation DSStart = Tok.getLocation();
1369 // decl-specifier-seq:
1370 // Parse the common declaration-specifiers piece.
John McCallc9068d72010-07-16 08:13:16 +00001371 ParsingDeclSpec DS(*this, TemplateDiags);
Sean Huntbbd37c62009-11-21 08:43:09 +00001372 DS.AddAttributes(AttrList.AttrList);
Douglas Gregor37b372b2009-08-20 22:52:58 +00001373 ParseDeclarationSpecifiers(DS, TemplateInfo, AS, DSC_class);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001374
John McCallf312b1e2010-08-26 23:41:50 +00001375 MultiTemplateParamsArg TemplateParams(Actions,
John McCalldd4a3b02009-09-16 22:47:08 +00001376 TemplateInfo.TemplateParams? TemplateInfo.TemplateParams->data() : 0,
1377 TemplateInfo.TemplateParams? TemplateInfo.TemplateParams->size() : 0);
1378
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001379 if (Tok.is(tok::semi)) {
1380 ConsumeToken();
John McCalld226f652010-08-21 09:40:31 +00001381 Decl *TheDecl =
John McCallc9068d72010-07-16 08:13:16 +00001382 Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS, DS);
1383 DS.complete(TheDecl);
John McCall67d1a672009-08-06 02:15:43 +00001384 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001385 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001386
John McCall54abf7d2009-11-04 02:18:39 +00001387 ParsingDeclarator DeclaratorInfo(*this, DS, Declarator::MemberContext);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001388
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001389 if (Tok.isNot(tok::colon)) {
Chris Lattnera1efc8c2009-12-10 01:59:24 +00001390 // Don't parse FOO:BAR as if it were a typo for FOO::BAR.
1391 ColonProtectionRAIIObject X(*this);
1392
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001393 // Parse the first declarator.
1394 ParseDeclarator(DeclaratorInfo);
1395 // Error parsing the declarator?
Douglas Gregor10bd3682008-11-17 22:58:34 +00001396 if (!DeclaratorInfo.hasName()) {
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001397 // If so, skip until the semi-colon or a }.
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001398 SkipUntil(tok::r_brace, true);
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001399 if (Tok.is(tok::semi))
1400 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001401 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001402 }
1403
John Thompson1b2fc0f2009-11-25 22:58:06 +00001404 // If attributes exist after the declarator, but before an '{', parse them.
1405 if (Tok.is(tok::kw___attribute)) {
1406 SourceLocation Loc;
1407 AttributeList *AttrList = ParseGNUAttributes(&Loc);
1408 DeclaratorInfo.AddAttributes(AttrList, Loc);
1409 }
1410
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001411 // function-definition:
Douglas Gregor7ad83902008-11-05 04:29:56 +00001412 if (Tok.is(tok::l_brace)
Sebastian Redld3a413d2009-04-26 20:35:05 +00001413 || (DeclaratorInfo.isFunctionDeclarator() &&
1414 (Tok.is(tok::colon) || Tok.is(tok::kw_try)))) {
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001415 if (!DeclaratorInfo.isFunctionDeclarator()) {
1416 Diag(Tok, diag::err_func_def_no_params);
1417 ConsumeBrace();
1418 SkipUntil(tok::r_brace, true);
Chris Lattner682bf922009-03-29 16:50:03 +00001419 return;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001420 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001421
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001422 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
1423 Diag(Tok, diag::err_function_declared_typedef);
1424 // This recovery skips the entire function body. It would be nice
1425 // to simply call ParseCXXInlineMethodDef() below, however Sema
1426 // assumes the declarator represents a function, not a typedef.
1427 ConsumeBrace();
1428 SkipUntil(tok::r_brace, true);
Chris Lattner682bf922009-03-29 16:50:03 +00001429 return;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001430 }
1431
Douglas Gregor37b372b2009-08-20 22:52:58 +00001432 ParseCXXInlineMethodDef(AS, DeclaratorInfo, TemplateInfo);
Chris Lattner682bf922009-03-29 16:50:03 +00001433 return;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001434 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001435 }
1436
1437 // member-declarator-list:
1438 // member-declarator
1439 // member-declarator-list ',' member-declarator
1440
John McCalld226f652010-08-21 09:40:31 +00001441 llvm::SmallVector<Decl *, 8> DeclsInGroup;
John McCall60d7b3a2010-08-24 06:29:42 +00001442 ExprResult BitfieldSize;
1443 ExprResult Init;
Sebastian Redle2b68332009-04-12 17:16:29 +00001444 bool Deleted = false;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001445
1446 while (1) {
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001447 // member-declarator:
1448 // declarator pure-specifier[opt]
1449 // declarator constant-initializer[opt]
1450 // identifier[opt] ':' constant-expression
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001451 if (Tok.is(tok::colon)) {
1452 ConsumeToken();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001453 BitfieldSize = ParseConstantExpression();
1454 if (BitfieldSize.isInvalid())
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001455 SkipUntil(tok::comma, true, true);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001456 }
Mike Stump1eb44332009-09-09 15:08:12 +00001457
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001458 // pure-specifier:
1459 // '= 0'
1460 //
1461 // constant-initializer:
1462 // '=' constant-expression
Sebastian Redle2b68332009-04-12 17:16:29 +00001463 //
1464 // defaulted/deleted function-definition:
1465 // '=' 'default' [TODO]
1466 // '=' 'delete'
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001467 if (Tok.is(tok::equal)) {
1468 ConsumeToken();
Anders Carlsson37bf9d22010-09-24 21:25:25 +00001469 if (Tok.is(tok::kw_delete)) {
1470 if (!getLang().CPlusPlus0x)
1471 Diag(Tok, diag::warn_deleted_function_accepted_as_extension);
Sebastian Redle2b68332009-04-12 17:16:29 +00001472 ConsumeToken();
1473 Deleted = true;
1474 } else {
1475 Init = ParseInitializer();
1476 if (Init.isInvalid())
1477 SkipUntil(tok::comma, true, true);
1478 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001479 }
1480
Chris Lattnere6563252010-06-13 05:34:18 +00001481 // If a simple-asm-expr is present, parse it.
1482 if (Tok.is(tok::kw_asm)) {
1483 SourceLocation Loc;
John McCall60d7b3a2010-08-24 06:29:42 +00001484 ExprResult AsmLabel(ParseSimpleAsm(&Loc));
Chris Lattnere6563252010-06-13 05:34:18 +00001485 if (AsmLabel.isInvalid())
1486 SkipUntil(tok::comma, true, true);
1487
1488 DeclaratorInfo.setAsmLabel(AsmLabel.release());
1489 DeclaratorInfo.SetRangeEnd(Loc);
1490 }
1491
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001492 // If attributes exist after the declarator, parse them.
Sebastian Redlab197ba2009-02-09 18:23:29 +00001493 if (Tok.is(tok::kw___attribute)) {
1494 SourceLocation Loc;
Sean Huntbbd37c62009-11-21 08:43:09 +00001495 AttributeList *AttrList = ParseGNUAttributes(&Loc);
Sebastian Redlab197ba2009-02-09 18:23:29 +00001496 DeclaratorInfo.AddAttributes(AttrList, Loc);
1497 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001498
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001499 // NOTE: If Sema is the Action module and declarator is an instance field,
Chris Lattner682bf922009-03-29 16:50:03 +00001500 // this call will *not* return the created decl; It will return null.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001501 // See Sema::ActOnCXXMemberDeclarator for details.
John McCall67d1a672009-08-06 02:15:43 +00001502
John McCalld226f652010-08-21 09:40:31 +00001503 Decl *ThisDecl = 0;
John McCall67d1a672009-08-06 02:15:43 +00001504 if (DS.isFriendSpecified()) {
John McCallbbbcdd92009-09-11 21:02:39 +00001505 // TODO: handle initializers, bitfields, 'delete'
Douglas Gregor23c94db2010-07-02 17:43:08 +00001506 ThisDecl = Actions.ActOnFriendFunctionDecl(getCurScope(), DeclaratorInfo,
John McCallbbbcdd92009-09-11 21:02:39 +00001507 /*IsDefinition*/ false,
1508 move(TemplateParams));
Douglas Gregor37b372b2009-08-20 22:52:58 +00001509 } else {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001510 ThisDecl = Actions.ActOnCXXMemberDeclarator(getCurScope(), AS,
John McCall67d1a672009-08-06 02:15:43 +00001511 DeclaratorInfo,
Douglas Gregor37b372b2009-08-20 22:52:58 +00001512 move(TemplateParams),
John McCall67d1a672009-08-06 02:15:43 +00001513 BitfieldSize.release(),
1514 Init.release(),
Sebastian Redld1a78462009-11-24 23:38:44 +00001515 /*IsDefinition*/Deleted,
John McCall67d1a672009-08-06 02:15:43 +00001516 Deleted);
Douglas Gregor37b372b2009-08-20 22:52:58 +00001517 }
Chris Lattner682bf922009-03-29 16:50:03 +00001518 if (ThisDecl)
1519 DeclsInGroup.push_back(ThisDecl);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001520
Douglas Gregor72b505b2008-12-16 21:30:33 +00001521 if (DeclaratorInfo.isFunctionDeclarator() &&
Mike Stump1eb44332009-09-09 15:08:12 +00001522 DeclaratorInfo.getDeclSpec().getStorageClassSpec()
Douglas Gregor72b505b2008-12-16 21:30:33 +00001523 != DeclSpec::SCS_typedef) {
Eli Friedmand33133c2009-07-22 21:45:50 +00001524 HandleMemberFunctionDefaultArgs(DeclaratorInfo, ThisDecl);
Douglas Gregor72b505b2008-12-16 21:30:33 +00001525 }
1526
John McCall54abf7d2009-11-04 02:18:39 +00001527 DeclaratorInfo.complete(ThisDecl);
1528
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001529 // If we don't have a comma, it is either the end of the list (a ';')
1530 // or an error, bail out.
1531 if (Tok.isNot(tok::comma))
1532 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001533
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001534 // Consume the comma.
1535 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001536
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001537 // Parse the next declarator.
1538 DeclaratorInfo.clear();
Sebastian Redl15faa7f2008-12-09 20:22:58 +00001539 BitfieldSize = 0;
1540 Init = 0;
Sebastian Redle2b68332009-04-12 17:16:29 +00001541 Deleted = false;
Mike Stump1eb44332009-09-09 15:08:12 +00001542
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001543 // Attributes are only allowed on the second declarator.
Sebastian Redlab197ba2009-02-09 18:23:29 +00001544 if (Tok.is(tok::kw___attribute)) {
1545 SourceLocation Loc;
Sean Huntbbd37c62009-11-21 08:43:09 +00001546 AttributeList *AttrList = ParseGNUAttributes(&Loc);
Sebastian Redlab197ba2009-02-09 18:23:29 +00001547 DeclaratorInfo.AddAttributes(AttrList, Loc);
1548 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001549
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001550 if (Tok.isNot(tok::colon))
1551 ParseDeclarator(DeclaratorInfo);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001552 }
1553
Chris Lattnerae50d502010-02-02 00:43:15 +00001554 if (ExpectAndConsume(tok::semi, diag::err_expected_semi_decl_list)) {
1555 // Skip to end of block or statement.
1556 SkipUntil(tok::r_brace, true, true);
1557 // If we stopped at a ';', eat it.
1558 if (Tok.is(tok::semi)) ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001559 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001560 }
1561
Douglas Gregor23c94db2010-07-02 17:43:08 +00001562 Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup.data(),
Chris Lattnerae50d502010-02-02 00:43:15 +00001563 DeclsInGroup.size());
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001564}
1565
1566/// ParseCXXMemberSpecification - Parse the class definition.
1567///
1568/// member-specification:
1569/// member-declaration member-specification[opt]
1570/// access-specifier ':' member-specification[opt]
1571///
1572void Parser::ParseCXXMemberSpecification(SourceLocation RecordLoc,
John McCalld226f652010-08-21 09:40:31 +00001573 unsigned TagType, Decl *TagDecl) {
Sanjiv Gupta31fc07d2008-10-31 09:52:39 +00001574 assert((TagType == DeclSpec::TST_struct ||
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001575 TagType == DeclSpec::TST_union ||
Sanjiv Gupta31fc07d2008-10-31 09:52:39 +00001576 TagType == DeclSpec::TST_class) && "Invalid TagType!");
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001577
John McCallf312b1e2010-08-26 23:41:50 +00001578 PrettyDeclStackTraceEntry CrashInfo(Actions, TagDecl, RecordLoc,
1579 "parsing struct/union/class body");
Mike Stump1eb44332009-09-09 15:08:12 +00001580
Douglas Gregor26997fd2010-01-16 20:52:59 +00001581 // Determine whether this is a non-nested class. Note that local
1582 // classes are *not* considered to be nested classes.
1583 bool NonNestedClass = true;
1584 if (!ClassStack.empty()) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001585 for (const Scope *S = getCurScope(); S; S = S->getParent()) {
Douglas Gregor26997fd2010-01-16 20:52:59 +00001586 if (S->isClassScope()) {
1587 // We're inside a class scope, so this is a nested class.
1588 NonNestedClass = false;
1589 break;
1590 }
1591
1592 if ((S->getFlags() & Scope::FnScope)) {
1593 // If we're in a function or function template declared in the
1594 // body of a class, then this is a local class rather than a
1595 // nested class.
1596 const Scope *Parent = S->getParent();
1597 if (Parent->isTemplateParamScope())
1598 Parent = Parent->getParent();
1599 if (Parent->isClassScope())
1600 break;
1601 }
1602 }
1603 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001604
1605 // Enter a scope for the class.
Douglas Gregor3218c4b2009-01-09 22:42:13 +00001606 ParseScope ClassScope(this, Scope::ClassScope|Scope::DeclScope);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001607
Douglas Gregor6569d682009-05-27 23:11:45 +00001608 // Note that we are parsing a new (potentially-nested) class definition.
Douglas Gregor26997fd2010-01-16 20:52:59 +00001609 ParsingClassDefinition ParsingDef(*this, TagDecl, NonNestedClass);
Douglas Gregor6569d682009-05-27 23:11:45 +00001610
Douglas Gregorddc29e12009-02-06 22:42:48 +00001611 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00001612 Actions.ActOnTagStartDefinition(getCurScope(), TagDecl);
John McCallbd0dfa52009-12-19 21:48:58 +00001613
1614 if (Tok.is(tok::colon)) {
1615 ParseBaseClause(TagDecl);
1616
1617 if (!Tok.is(tok::l_brace)) {
1618 Diag(Tok, diag::err_expected_lbrace_after_base_specifiers);
John McCalldb7bb4a2010-03-17 00:38:33 +00001619
1620 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00001621 Actions.ActOnTagDefinitionError(getCurScope(), TagDecl);
John McCallbd0dfa52009-12-19 21:48:58 +00001622 return;
1623 }
1624 }
1625
1626 assert(Tok.is(tok::l_brace));
1627
1628 SourceLocation LBraceLoc = ConsumeBrace();
1629
John McCall42a4f662010-05-28 08:11:17 +00001630 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00001631 Actions.ActOnStartCXXMemberDeclarations(getCurScope(), TagDecl, LBraceLoc);
John McCallf9368152009-12-20 07:58:13 +00001632
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001633 // C++ 11p3: Members of a class defined with the keyword class are private
1634 // by default. Members of a class defined with the keywords struct or union
1635 // are public by default.
1636 AccessSpecifier CurAS;
1637 if (TagType == DeclSpec::TST_class)
1638 CurAS = AS_private;
1639 else
1640 CurAS = AS_public;
1641
Douglas Gregor07976d22010-06-21 22:31:09 +00001642 SourceLocation RBraceLoc;
1643 if (TagDecl) {
1644 // While we still have something to read, read the member-declarations.
1645 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
1646 // Each iteration of this loop reads one member-declaration.
Mike Stump1eb44332009-09-09 15:08:12 +00001647
Douglas Gregor07976d22010-06-21 22:31:09 +00001648 // Check for extraneous top-level semicolon.
1649 if (Tok.is(tok::semi)) {
1650 Diag(Tok, diag::ext_extra_struct_semi)
1651 << DeclSpec::getSpecifierName((DeclSpec::TST)TagType)
1652 << FixItHint::CreateRemoval(Tok.getLocation());
1653 ConsumeToken();
1654 continue;
1655 }
1656
1657 AccessSpecifier AS = getAccessSpecifierIfPresent();
1658 if (AS != AS_none) {
1659 // Current token is a C++ access specifier.
1660 CurAS = AS;
1661 SourceLocation ASLoc = Tok.getLocation();
1662 ConsumeToken();
1663 if (Tok.is(tok::colon))
1664 Actions.ActOnAccessSpecifier(AS, ASLoc, Tok.getLocation());
1665 else
1666 Diag(Tok, diag::err_expected_colon);
1667 ConsumeToken();
1668 continue;
1669 }
1670
1671 // FIXME: Make sure we don't have a template here.
1672
1673 // Parse all the comma separated declarators.
1674 ParseCXXClassMemberDeclaration(CurAS);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001675 }
1676
Douglas Gregor07976d22010-06-21 22:31:09 +00001677 RBraceLoc = MatchRHSPunctuation(tok::r_brace, LBraceLoc);
1678 } else {
1679 SkipUntil(tok::r_brace, false, false);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001680 }
Mike Stump1eb44332009-09-09 15:08:12 +00001681
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001682 // If attributes exist after class contents, parse them.
Ted Kremenek1e377652010-02-11 02:19:13 +00001683 llvm::OwningPtr<AttributeList> AttrList;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001684 if (Tok.is(tok::kw___attribute))
Douglas Gregor0b4c9b52010-03-29 14:42:08 +00001685 AttrList.reset(ParseGNUAttributes());
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001686
John McCall42a4f662010-05-28 08:11:17 +00001687 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00001688 Actions.ActOnFinishCXXMemberSpecification(getCurScope(), RecordLoc, TagDecl,
John McCall42a4f662010-05-28 08:11:17 +00001689 LBraceLoc, RBraceLoc,
1690 AttrList.get());
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001691
1692 // C++ 9.2p2: Within the class member-specification, the class is regarded as
1693 // complete within function bodies, default arguments,
1694 // exception-specifications, and constructor ctor-initializers (including
1695 // such things in nested classes).
1696 //
Douglas Gregor72b505b2008-12-16 21:30:33 +00001697 // FIXME: Only function bodies and constructor ctor-initializers are
1698 // parsed correctly, fix the rest.
Douglas Gregor07976d22010-06-21 22:31:09 +00001699 if (TagDecl && NonNestedClass) {
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001700 // We are not inside a nested class. This class and its nested classes
Douglas Gregor72b505b2008-12-16 21:30:33 +00001701 // are complete and we can parse the delayed portions of method
1702 // declarations and the lexed inline method definitions.
Douglas Gregore0cc0472010-06-16 23:45:56 +00001703 SourceLocation SavedPrevTokLocation = PrevTokLocation;
Douglas Gregor6569d682009-05-27 23:11:45 +00001704 ParseLexedMethodDeclarations(getCurrentClass());
1705 ParseLexedMethodDefs(getCurrentClass());
Douglas Gregore0cc0472010-06-16 23:45:56 +00001706 PrevTokLocation = SavedPrevTokLocation;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001707 }
1708
John McCall42a4f662010-05-28 08:11:17 +00001709 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00001710 Actions.ActOnTagFinishDefinition(getCurScope(), TagDecl, RBraceLoc);
John McCalldb7bb4a2010-03-17 00:38:33 +00001711
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001712 // Leave the class scope.
Douglas Gregor6569d682009-05-27 23:11:45 +00001713 ParsingDef.Pop();
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001714 ClassScope.Exit();
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001715}
Douglas Gregor7ad83902008-11-05 04:29:56 +00001716
1717/// ParseConstructorInitializer - Parse a C++ constructor initializer,
1718/// which explicitly initializes the members or base classes of a
1719/// class (C++ [class.base.init]). For example, the three initializers
1720/// after the ':' in the Derived constructor below:
1721///
1722/// @code
1723/// class Base { };
1724/// class Derived : Base {
1725/// int x;
1726/// float f;
1727/// public:
1728/// Derived(float f) : Base(), x(17), f(f) { }
1729/// };
1730/// @endcode
1731///
Mike Stump1eb44332009-09-09 15:08:12 +00001732/// [C++] ctor-initializer:
1733/// ':' mem-initializer-list
Douglas Gregor7ad83902008-11-05 04:29:56 +00001734///
Mike Stump1eb44332009-09-09 15:08:12 +00001735/// [C++] mem-initializer-list:
1736/// mem-initializer
1737/// mem-initializer , mem-initializer-list
John McCalld226f652010-08-21 09:40:31 +00001738void Parser::ParseConstructorInitializer(Decl *ConstructorDecl) {
Douglas Gregor7ad83902008-11-05 04:29:56 +00001739 assert(Tok.is(tok::colon) && "Constructor initializer always starts with ':'");
1740
1741 SourceLocation ColonLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001742
John McCallca0408f2010-08-23 06:44:23 +00001743 llvm::SmallVector<CXXBaseOrMemberInitializer*, 4> MemInitializers;
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001744 bool AnyErrors = false;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001745
Douglas Gregor7ad83902008-11-05 04:29:56 +00001746 do {
Douglas Gregor0133f522010-08-28 00:00:50 +00001747 if (Tok.is(tok::code_completion)) {
1748 Actions.CodeCompleteConstructorInitializer(ConstructorDecl,
1749 MemInitializers.data(),
1750 MemInitializers.size());
1751 ConsumeCodeCompletionToken();
1752 } else {
1753 MemInitResult MemInit = ParseMemInitializer(ConstructorDecl);
1754 if (!MemInit.isInvalid())
1755 MemInitializers.push_back(MemInit.get());
1756 else
1757 AnyErrors = true;
1758 }
1759
Douglas Gregor7ad83902008-11-05 04:29:56 +00001760 if (Tok.is(tok::comma))
1761 ConsumeToken();
1762 else if (Tok.is(tok::l_brace))
1763 break;
Douglas Gregorb1f6fa42010-09-07 14:35:10 +00001764 // If the next token looks like a base or member initializer, assume that
1765 // we're just missing a comma.
Douglas Gregor751f6922010-09-07 14:51:08 +00001766 else if (Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) {
1767 SourceLocation Loc = PP.getLocForEndOfToken(PrevTokLocation);
1768 Diag(Loc, diag::err_ctor_init_missing_comma)
1769 << FixItHint::CreateInsertion(Loc, ", ");
1770 } else {
Douglas Gregor7ad83902008-11-05 04:29:56 +00001771 // Skip over garbage, until we get to '{'. Don't eat the '{'.
Sebastian Redld3a413d2009-04-26 20:35:05 +00001772 Diag(Tok.getLocation(), diag::err_expected_lbrace_or_comma);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001773 SkipUntil(tok::l_brace, true, true);
1774 break;
1775 }
1776 } while (true);
1777
Mike Stump1eb44332009-09-09 15:08:12 +00001778 Actions.ActOnMemInitializers(ConstructorDecl, ColonLoc,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001779 MemInitializers.data(), MemInitializers.size(),
1780 AnyErrors);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001781}
1782
1783/// ParseMemInitializer - Parse a C++ member initializer, which is
1784/// part of a constructor initializer that explicitly initializes one
1785/// member or base class (C++ [class.base.init]). See
1786/// ParseConstructorInitializer for an example.
1787///
1788/// [C++] mem-initializer:
1789/// mem-initializer-id '(' expression-list[opt] ')'
Mike Stump1eb44332009-09-09 15:08:12 +00001790///
Douglas Gregor7ad83902008-11-05 04:29:56 +00001791/// [C++] mem-initializer-id:
1792/// '::'[opt] nested-name-specifier[opt] class-name
1793/// identifier
John McCalld226f652010-08-21 09:40:31 +00001794Parser::MemInitResult Parser::ParseMemInitializer(Decl *ConstructorDecl) {
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00001795 // parse '::'[opt] nested-name-specifier[opt]
1796 CXXScopeSpec SS;
John McCallb3d87482010-08-24 05:47:05 +00001797 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
1798 ParsedType TemplateTypeTy;
Fariborz Jahanian96174332009-07-01 19:21:19 +00001799 if (Tok.is(tok::annot_template_id)) {
1800 TemplateIdAnnotation *TemplateId
1801 = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
Douglas Gregord9b600c2010-01-12 17:52:59 +00001802 if (TemplateId->Kind == TNK_Type_template ||
1803 TemplateId->Kind == TNK_Dependent_template_name) {
Fariborz Jahanian96174332009-07-01 19:21:19 +00001804 AnnotateTemplateIdTokenAsType(&SS);
1805 assert(Tok.is(tok::annot_typename) && "template-id -> type failed");
John McCallb3d87482010-08-24 05:47:05 +00001806 TemplateTypeTy = getTypeAnnotation(Tok);
Fariborz Jahanian96174332009-07-01 19:21:19 +00001807 }
Fariborz Jahanian96174332009-07-01 19:21:19 +00001808 }
1809 if (!TemplateTypeTy && Tok.isNot(tok::identifier)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001810 Diag(Tok, diag::err_expected_member_or_base_name);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001811 return true;
1812 }
Mike Stump1eb44332009-09-09 15:08:12 +00001813
Douglas Gregor7ad83902008-11-05 04:29:56 +00001814 // Get the identifier. This may be a member name or a class name,
1815 // but we'll let the semantic analysis determine which it is.
Fariborz Jahanian96174332009-07-01 19:21:19 +00001816 IdentifierInfo *II = Tok.is(tok::identifier) ? Tok.getIdentifierInfo() : 0;
Douglas Gregor7ad83902008-11-05 04:29:56 +00001817 SourceLocation IdLoc = ConsumeToken();
1818
1819 // Parse the '('.
1820 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001821 Diag(Tok, diag::err_expected_lparen);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001822 return true;
1823 }
1824 SourceLocation LParenLoc = ConsumeParen();
1825
1826 // Parse the optional expression-list.
Sebastian Redla55e52c2008-11-25 22:21:31 +00001827 ExprVector ArgExprs(Actions);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001828 CommaLocsTy CommaLocs;
1829 if (Tok.isNot(tok::r_paren) && ParseExpressionList(ArgExprs, CommaLocs)) {
1830 SkipUntil(tok::r_paren);
1831 return true;
1832 }
1833
1834 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
1835
Douglas Gregor23c94db2010-07-02 17:43:08 +00001836 return Actions.ActOnMemInitializer(ConstructorDecl, getCurScope(), SS, II,
Fariborz Jahanian96174332009-07-01 19:21:19 +00001837 TemplateTypeTy, IdLoc,
Sebastian Redla55e52c2008-11-25 22:21:31 +00001838 LParenLoc, ArgExprs.take(),
Douglas Gregora1a04782010-09-09 16:33:13 +00001839 ArgExprs.size(), RParenLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001840}
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00001841
1842/// ParseExceptionSpecification - Parse a C++ exception-specification
1843/// (C++ [except.spec]).
1844///
Douglas Gregora4745612008-12-01 18:00:20 +00001845/// exception-specification:
1846/// 'throw' '(' type-id-list [opt] ')'
1847/// [MS] 'throw' '(' '...' ')'
Mike Stump1eb44332009-09-09 15:08:12 +00001848///
Douglas Gregora4745612008-12-01 18:00:20 +00001849/// type-id-list:
1850/// type-id
1851/// type-id-list ',' type-id
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00001852///
Sebastian Redl7dc81342009-04-29 17:30:04 +00001853bool Parser::ParseExceptionSpecification(SourceLocation &EndLoc,
John McCallb3d87482010-08-24 05:47:05 +00001854 llvm::SmallVectorImpl<ParsedType>
Sebastian Redlef65f062009-05-29 18:02:33 +00001855 &Exceptions,
John McCallb3d87482010-08-24 05:47:05 +00001856 llvm::SmallVectorImpl<SourceRange>
Sebastian Redlef65f062009-05-29 18:02:33 +00001857 &Ranges,
Sebastian Redl7dc81342009-04-29 17:30:04 +00001858 bool &hasAnyExceptionSpec) {
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00001859 assert(Tok.is(tok::kw_throw) && "expected throw");
Mike Stump1eb44332009-09-09 15:08:12 +00001860
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00001861 SourceLocation ThrowLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001862
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00001863 if (!Tok.is(tok::l_paren)) {
1864 return Diag(Tok, diag::err_expected_lparen_after) << "throw";
1865 }
1866 SourceLocation LParenLoc = ConsumeParen();
1867
Douglas Gregora4745612008-12-01 18:00:20 +00001868 // Parse throw(...), a Microsoft extension that means "this function
1869 // can throw anything".
1870 if (Tok.is(tok::ellipsis)) {
Sebastian Redl7dc81342009-04-29 17:30:04 +00001871 hasAnyExceptionSpec = true;
Douglas Gregora4745612008-12-01 18:00:20 +00001872 SourceLocation EllipsisLoc = ConsumeToken();
1873 if (!getLang().Microsoft)
1874 Diag(EllipsisLoc, diag::ext_ellipsis_exception_spec);
Sebastian Redlab197ba2009-02-09 18:23:29 +00001875 EndLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
Douglas Gregora4745612008-12-01 18:00:20 +00001876 return false;
1877 }
1878
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00001879 // Parse the sequence of type-ids.
Sebastian Redlef65f062009-05-29 18:02:33 +00001880 SourceRange Range;
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00001881 while (Tok.isNot(tok::r_paren)) {
Sebastian Redlef65f062009-05-29 18:02:33 +00001882 TypeResult Res(ParseTypeName(&Range));
1883 if (!Res.isInvalid()) {
Sebastian Redl7dc81342009-04-29 17:30:04 +00001884 Exceptions.push_back(Res.get());
Sebastian Redlef65f062009-05-29 18:02:33 +00001885 Ranges.push_back(Range);
1886 }
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00001887 if (Tok.is(tok::comma))
1888 ConsumeToken();
Sebastian Redl7dc81342009-04-29 17:30:04 +00001889 else
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00001890 break;
1891 }
1892
Sebastian Redlab197ba2009-02-09 18:23:29 +00001893 EndLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00001894 return false;
1895}
Douglas Gregor6569d682009-05-27 23:11:45 +00001896
Douglas Gregordab60ad2010-10-01 18:44:50 +00001897/// ParseTrailingReturnType - Parse a trailing return type on a new-style
1898/// function declaration.
1899TypeResult Parser::ParseTrailingReturnType() {
1900 assert(Tok.is(tok::arrow) && "expected arrow");
1901
1902 ConsumeToken();
1903
1904 // FIXME: Need to suppress declarations when parsing this typename.
1905 // Otherwise in this function definition:
1906 //
1907 // auto f() -> struct X {}
1908 //
1909 // struct X is parsed as class definition because of the trailing
1910 // brace.
1911
1912 SourceRange Range;
1913 return ParseTypeName(&Range);
1914}
1915
Douglas Gregor6569d682009-05-27 23:11:45 +00001916/// \brief We have just started parsing the definition of a new class,
1917/// so push that class onto our stack of classes that is currently
1918/// being parsed.
John McCalld226f652010-08-21 09:40:31 +00001919void Parser::PushParsingClass(Decl *ClassDecl, bool NonNestedClass) {
Douglas Gregor26997fd2010-01-16 20:52:59 +00001920 assert((NonNestedClass || !ClassStack.empty()) &&
Douglas Gregor6569d682009-05-27 23:11:45 +00001921 "Nested class without outer class");
Douglas Gregor26997fd2010-01-16 20:52:59 +00001922 ClassStack.push(new ParsingClass(ClassDecl, NonNestedClass));
Douglas Gregor6569d682009-05-27 23:11:45 +00001923}
1924
1925/// \brief Deallocate the given parsed class and all of its nested
1926/// classes.
1927void Parser::DeallocateParsedClasses(Parser::ParsingClass *Class) {
Douglas Gregord54eb442010-10-12 16:25:54 +00001928 for (unsigned I = 0, N = Class->LateParsedDeclarations.size(); I != N; ++I)
1929 delete Class->LateParsedDeclarations[I];
Douglas Gregor6569d682009-05-27 23:11:45 +00001930 delete Class;
1931}
1932
1933/// \brief Pop the top class of the stack of classes that are
1934/// currently being parsed.
1935///
1936/// This routine should be called when we have finished parsing the
1937/// definition of a class, but have not yet popped the Scope
1938/// associated with the class's definition.
1939///
1940/// \returns true if the class we've popped is a top-level class,
1941/// false otherwise.
1942void Parser::PopParsingClass() {
1943 assert(!ClassStack.empty() && "Mismatched push/pop for class parsing");
Mike Stump1eb44332009-09-09 15:08:12 +00001944
Douglas Gregor6569d682009-05-27 23:11:45 +00001945 ParsingClass *Victim = ClassStack.top();
1946 ClassStack.pop();
1947 if (Victim->TopLevelClass) {
1948 // Deallocate all of the nested classes of this class,
1949 // recursively: we don't need to keep any of this information.
1950 DeallocateParsedClasses(Victim);
1951 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001952 }
Douglas Gregor6569d682009-05-27 23:11:45 +00001953 assert(!ClassStack.empty() && "Missing top-level class?");
1954
Douglas Gregord54eb442010-10-12 16:25:54 +00001955 if (Victim->LateParsedDeclarations.empty()) {
Douglas Gregor6569d682009-05-27 23:11:45 +00001956 // The victim is a nested class, but we will not need to perform
1957 // any processing after the definition of this class since it has
1958 // no members whose handling was delayed. Therefore, we can just
1959 // remove this nested class.
Douglas Gregord54eb442010-10-12 16:25:54 +00001960 DeallocateParsedClasses(Victim);
Douglas Gregor6569d682009-05-27 23:11:45 +00001961 return;
1962 }
1963
1964 // This nested class has some members that will need to be processed
1965 // after the top-level class is completely defined. Therefore, add
1966 // it to the list of nested classes within its parent.
Douglas Gregor23c94db2010-07-02 17:43:08 +00001967 assert(getCurScope()->isClassScope() && "Nested class outside of class scope?");
Douglas Gregord54eb442010-10-12 16:25:54 +00001968 ClassStack.top()->LateParsedDeclarations.push_back(new LateParsedClass(this, Victim));
Douglas Gregor23c94db2010-07-02 17:43:08 +00001969 Victim->TemplateScope = getCurScope()->getParent()->isTemplateParamScope();
Douglas Gregor6569d682009-05-27 23:11:45 +00001970}
Sean Huntbbd37c62009-11-21 08:43:09 +00001971
1972/// ParseCXX0XAttributes - Parse a C++0x attribute-specifier. Currently only
1973/// parses standard attributes.
1974///
1975/// [C++0x] attribute-specifier:
1976/// '[' '[' attribute-list ']' ']'
1977///
1978/// [C++0x] attribute-list:
1979/// attribute[opt]
1980/// attribute-list ',' attribute[opt]
1981///
1982/// [C++0x] attribute:
1983/// attribute-token attribute-argument-clause[opt]
1984///
1985/// [C++0x] attribute-token:
1986/// identifier
1987/// attribute-scoped-token
1988///
1989/// [C++0x] attribute-scoped-token:
1990/// attribute-namespace '::' identifier
1991///
1992/// [C++0x] attribute-namespace:
1993/// identifier
1994///
1995/// [C++0x] attribute-argument-clause:
1996/// '(' balanced-token-seq ')'
1997///
1998/// [C++0x] balanced-token-seq:
1999/// balanced-token
2000/// balanced-token-seq balanced-token
2001///
2002/// [C++0x] balanced-token:
2003/// '(' balanced-token-seq ')'
2004/// '[' balanced-token-seq ']'
2005/// '{' balanced-token-seq '}'
2006/// any token but '(', ')', '[', ']', '{', or '}'
2007CXX0XAttributeList Parser::ParseCXX0XAttributes(SourceLocation *EndLoc) {
2008 assert(Tok.is(tok::l_square) && NextToken().is(tok::l_square)
2009 && "Not a C++0x attribute list");
2010
2011 SourceLocation StartLoc = Tok.getLocation(), Loc;
2012 AttributeList *CurrAttr = 0;
2013
2014 ConsumeBracket();
2015 ConsumeBracket();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002016
Sean Huntbbd37c62009-11-21 08:43:09 +00002017 if (Tok.is(tok::comma)) {
2018 Diag(Tok.getLocation(), diag::err_expected_ident);
2019 ConsumeToken();
2020 }
2021
2022 while (Tok.is(tok::identifier) || Tok.is(tok::comma)) {
2023 // attribute not present
2024 if (Tok.is(tok::comma)) {
2025 ConsumeToken();
2026 continue;
2027 }
2028
2029 IdentifierInfo *ScopeName = 0, *AttrName = Tok.getIdentifierInfo();
2030 SourceLocation ScopeLoc, AttrLoc = ConsumeToken();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002031
Sean Huntbbd37c62009-11-21 08:43:09 +00002032 // scoped attribute
2033 if (Tok.is(tok::coloncolon)) {
2034 ConsumeToken();
2035
2036 if (!Tok.is(tok::identifier)) {
2037 Diag(Tok.getLocation(), diag::err_expected_ident);
2038 SkipUntil(tok::r_square, tok::comma, true, true);
2039 continue;
2040 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002041
Sean Huntbbd37c62009-11-21 08:43:09 +00002042 ScopeName = AttrName;
2043 ScopeLoc = AttrLoc;
2044
2045 AttrName = Tok.getIdentifierInfo();
2046 AttrLoc = ConsumeToken();
2047 }
2048
2049 bool AttrParsed = false;
2050 // No scoped names are supported; ideally we could put all non-standard
2051 // attributes into namespaces.
2052 if (!ScopeName) {
2053 switch(AttributeList::getKind(AttrName))
2054 {
2055 // No arguments
Sean Hunt7725e672009-11-25 04:20:27 +00002056 case AttributeList::AT_base_check:
2057 case AttributeList::AT_carries_dependency:
Sean Huntbbd37c62009-11-21 08:43:09 +00002058 case AttributeList::AT_final:
Sean Hunt7725e672009-11-25 04:20:27 +00002059 case AttributeList::AT_hiding:
2060 case AttributeList::AT_noreturn:
2061 case AttributeList::AT_override: {
Sean Huntbbd37c62009-11-21 08:43:09 +00002062 if (Tok.is(tok::l_paren)) {
2063 Diag(Tok.getLocation(), diag::err_cxx0x_attribute_forbids_arguments)
2064 << AttrName->getName();
2065 break;
2066 }
2067
2068 CurrAttr = new AttributeList(AttrName, AttrLoc, 0, AttrLoc, 0,
2069 SourceLocation(), 0, 0, CurrAttr, false,
2070 true);
2071 AttrParsed = true;
2072 break;
2073 }
2074
2075 // One argument; must be a type-id or assignment-expression
2076 case AttributeList::AT_aligned: {
2077 if (Tok.isNot(tok::l_paren)) {
2078 Diag(Tok.getLocation(), diag::err_cxx0x_attribute_requires_arguments)
2079 << AttrName->getName();
2080 break;
2081 }
2082 SourceLocation ParamLoc = ConsumeParen();
2083
John McCall60d7b3a2010-08-24 06:29:42 +00002084 ExprResult ArgExpr = ParseCXX0XAlignArgument(ParamLoc);
Sean Huntbbd37c62009-11-21 08:43:09 +00002085
2086 MatchRHSPunctuation(tok::r_paren, ParamLoc);
2087
2088 ExprVector ArgExprs(Actions);
2089 ArgExprs.push_back(ArgExpr.release());
2090 CurrAttr = new AttributeList(AttrName, AttrLoc, 0, AttrLoc,
2091 0, ParamLoc, ArgExprs.take(), 1, CurrAttr,
2092 false, true);
2093
2094 AttrParsed = true;
2095 break;
2096 }
2097
2098 // Silence warnings
2099 default: break;
2100 }
2101 }
2102
2103 // Skip the entire parameter clause, if any
2104 if (!AttrParsed && Tok.is(tok::l_paren)) {
2105 ConsumeParen();
2106 // SkipUntil maintains the balancedness of tokens.
2107 SkipUntil(tok::r_paren, false);
2108 }
2109 }
2110
2111 if (ExpectAndConsume(tok::r_square, diag::err_expected_rsquare))
2112 SkipUntil(tok::r_square, false);
2113 Loc = Tok.getLocation();
2114 if (ExpectAndConsume(tok::r_square, diag::err_expected_rsquare))
2115 SkipUntil(tok::r_square, false);
2116
2117 CXX0XAttributeList Attr (CurrAttr, SourceRange(StartLoc, Loc), true);
2118 return Attr;
2119}
2120
2121/// ParseCXX0XAlignArgument - Parse the argument to C++0x's [[align]]
2122/// attribute.
2123///
2124/// FIXME: Simply returns an alignof() expression if the argument is a
2125/// type. Ideally, the type should be propagated directly into Sema.
2126///
2127/// [C++0x] 'align' '(' type-id ')'
2128/// [C++0x] 'align' '(' assignment-expression ')'
John McCall60d7b3a2010-08-24 06:29:42 +00002129ExprResult Parser::ParseCXX0XAlignArgument(SourceLocation Start) {
Sean Huntbbd37c62009-11-21 08:43:09 +00002130 if (isTypeIdInParens()) {
John McCallf312b1e2010-08-26 23:41:50 +00002131 EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated);
Sean Huntbbd37c62009-11-21 08:43:09 +00002132 SourceLocation TypeLoc = Tok.getLocation();
John McCallb3d87482010-08-24 05:47:05 +00002133 ParsedType Ty = ParseTypeName().get();
Sean Huntbbd37c62009-11-21 08:43:09 +00002134 SourceRange TypeRange(Start, Tok.getLocation());
John McCallb3d87482010-08-24 05:47:05 +00002135 return Actions.ActOnSizeOfAlignOfExpr(TypeLoc, false, true,
2136 Ty.getAsOpaquePtr(), TypeRange);
Sean Huntbbd37c62009-11-21 08:43:09 +00002137 } else
2138 return ParseConstantExpression();
2139}
Francois Pichet334d47e2010-10-11 12:59:39 +00002140
2141/// ParseMicrosoftAttributes - Parse a Microsoft attribute [Attr]
2142///
2143/// [MS] ms-attribute:
2144/// '[' token-seq ']'
2145///
2146/// [MS] ms-attribute-seq:
2147/// ms-attribute[opt]
2148/// ms-attribute ms-attribute-seq
2149void Parser::ParseMicrosoftAttributes() {
2150 assert(Tok.is(tok::l_square) && "Not a Microsoft attribute list");
2151
2152 while (Tok.is(tok::l_square)) {
2153 ConsumeBracket();
2154 SkipUntil(tok::r_square, true, true);
2155 ExpectAndConsume(tok::r_square, diag::err_expected_rsquare);
2156 }
2157}