blob: 258c78bd346b1cf52d309d45e7a0658c91697a1a [file] [log] [blame]
Chris Lattner8f08cb72007-08-25 06:57:03 +00001//===--- ParseDeclCXX.cpp - C++ Declaration Parsing -----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner8f08cb72007-08-25 06:57:03 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the C++ Declaration portions of the Parser interfaces.
11//
12//===----------------------------------------------------------------------===//
13
Anders Carlsson0c6139d2009-06-27 00:27:47 +000014#include "clang/Basic/OperatorKinds.h"
Douglas Gregor1b7f8982008-04-14 00:13:42 +000015#include "clang/Parse/Parser.h"
Chris Lattner500d3292009-01-29 05:15:15 +000016#include "clang/Parse/ParseDiagnostic.h"
John McCall19510852010-08-20 18:27:03 +000017#include "clang/Sema/DeclSpec.h"
18#include "clang/Sema/Scope.h"
19#include "clang/Sema/ParsedTemplate.h"
John McCallf312b1e2010-08-26 23:41:50 +000020#include "clang/Sema/PrettyDeclStackTrace.h"
Chris Lattnerd167ca02009-12-10 00:21:05 +000021#include "RAIIObjectsForParser.h"
Chris Lattner8f08cb72007-08-25 06:57:03 +000022using namespace clang;
23
24/// ParseNamespace - We know that the current token is a namespace keyword. This
Sebastian Redld078e642010-08-27 23:12:46 +000025/// may either be a top level namespace or a block-level namespace alias. If
26/// there was an inline keyword, it has already been parsed.
Chris Lattner8f08cb72007-08-25 06:57:03 +000027///
28/// namespace-definition: [C++ 7.3: basic.namespace]
29/// named-namespace-definition
30/// unnamed-namespace-definition
31///
32/// unnamed-namespace-definition:
Sebastian Redld078e642010-08-27 23:12:46 +000033/// 'inline'[opt] 'namespace' attributes[opt] '{' namespace-body '}'
Chris Lattner8f08cb72007-08-25 06:57:03 +000034///
35/// named-namespace-definition:
36/// original-namespace-definition
37/// extension-namespace-definition
38///
39/// original-namespace-definition:
Sebastian Redld078e642010-08-27 23:12:46 +000040/// 'inline'[opt] 'namespace' identifier attributes[opt]
41/// '{' namespace-body '}'
Chris Lattner8f08cb72007-08-25 06:57:03 +000042///
43/// extension-namespace-definition:
Sebastian Redld078e642010-08-27 23:12:46 +000044/// 'inline'[opt] 'namespace' original-namespace-name
45/// '{' namespace-body '}'
Mike Stump1eb44332009-09-09 15:08:12 +000046///
Chris Lattner8f08cb72007-08-25 06:57:03 +000047/// namespace-alias-definition: [C++ 7.3.2: namespace.alias]
48/// 'namespace' identifier '=' qualified-namespace-specifier ';'
49///
John McCalld226f652010-08-21 09:40:31 +000050Decl *Parser::ParseNamespace(unsigned Context,
Sebastian Redld078e642010-08-27 23:12:46 +000051 SourceLocation &DeclEnd,
52 SourceLocation InlineLoc) {
Chris Lattner04d66662007-10-09 17:33:22 +000053 assert(Tok.is(tok::kw_namespace) && "Not a namespace!");
Chris Lattner8f08cb72007-08-25 06:57:03 +000054 SourceLocation NamespaceLoc = ConsumeToken(); // eat the 'namespace'.
Fariborz Jahanian9735c5e2011-08-22 17:59:19 +000055 ObjCDeclContextSwitch ObjCDC(*this);
Fariborz Jahaniana28948f2011-08-22 15:54:49 +000056
Douglas Gregor49f40bd2009-09-18 19:03:04 +000057 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +000058 Actions.CodeCompleteNamespaceDecl(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +000059 cutOffParsing();
60 return 0;
Douglas Gregor49f40bd2009-09-18 19:03:04 +000061 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +000062
Chris Lattner8f08cb72007-08-25 06:57:03 +000063 SourceLocation IdentLoc;
64 IdentifierInfo *Ident = 0;
Richard Trieuf858bd82011-05-26 20:11:09 +000065 std::vector<SourceLocation> ExtraIdentLoc;
66 std::vector<IdentifierInfo*> ExtraIdent;
67 std::vector<SourceLocation> ExtraNamespaceLoc;
Douglas Gregor6a588dd2009-06-17 19:49:00 +000068
69 Token attrTok;
Mike Stump1eb44332009-09-09 15:08:12 +000070
Chris Lattner04d66662007-10-09 17:33:22 +000071 if (Tok.is(tok::identifier)) {
Chris Lattner8f08cb72007-08-25 06:57:03 +000072 Ident = Tok.getIdentifierInfo();
73 IdentLoc = ConsumeToken(); // eat the identifier.
Richard Trieuf858bd82011-05-26 20:11:09 +000074 while (Tok.is(tok::coloncolon) && NextToken().is(tok::identifier)) {
75 ExtraNamespaceLoc.push_back(ConsumeToken());
76 ExtraIdent.push_back(Tok.getIdentifierInfo());
77 ExtraIdentLoc.push_back(ConsumeToken());
78 }
Chris Lattner8f08cb72007-08-25 06:57:03 +000079 }
Mike Stump1eb44332009-09-09 15:08:12 +000080
Chris Lattner8f08cb72007-08-25 06:57:03 +000081 // Read label attributes, if present.
John McCall0b7e6782011-03-24 11:26:52 +000082 ParsedAttributes attrs(AttrFactory);
Douglas Gregor6a588dd2009-06-17 19:49:00 +000083 if (Tok.is(tok::kw___attribute)) {
84 attrTok = Tok;
John McCall7f040a92010-12-24 02:08:15 +000085 ParseGNUAttributes(attrs);
Douglas Gregor6a588dd2009-06-17 19:49:00 +000086 }
Mike Stump1eb44332009-09-09 15:08:12 +000087
Douglas Gregor6a588dd2009-06-17 19:49:00 +000088 if (Tok.is(tok::equal)) {
John McCall7f040a92010-12-24 02:08:15 +000089 if (!attrs.empty())
Douglas Gregor6a588dd2009-06-17 19:49:00 +000090 Diag(attrTok, diag::err_unexpected_namespace_attributes_alias);
Sebastian Redld078e642010-08-27 23:12:46 +000091 if (InlineLoc.isValid())
92 Diag(InlineLoc, diag::err_inline_namespace_alias)
93 << FixItHint::CreateRemoval(InlineLoc);
Fariborz Jahanian9735c5e2011-08-22 17:59:19 +000094 return ParseNamespaceAlias(NamespaceLoc, IdentLoc, Ident, DeclEnd);
Douglas Gregor6a588dd2009-06-17 19:49:00 +000095 }
Mike Stump1eb44332009-09-09 15:08:12 +000096
Richard Trieuf858bd82011-05-26 20:11:09 +000097
Chris Lattner51448322009-03-29 14:02:43 +000098 if (Tok.isNot(tok::l_brace)) {
Richard Trieuf858bd82011-05-26 20:11:09 +000099 if (!ExtraIdent.empty()) {
100 Diag(ExtraNamespaceLoc[0], diag::err_nested_namespaces_with_double_colon)
101 << SourceRange(ExtraNamespaceLoc.front(), ExtraIdentLoc.back());
102 }
Mike Stump1eb44332009-09-09 15:08:12 +0000103 Diag(Tok, Ident ? diag::err_expected_lbrace :
Chris Lattner51448322009-03-29 14:02:43 +0000104 diag::err_expected_ident_lbrace);
John McCalld226f652010-08-21 09:40:31 +0000105 return 0;
Chris Lattner8f08cb72007-08-25 06:57:03 +0000106 }
Mike Stump1eb44332009-09-09 15:08:12 +0000107
Chris Lattner51448322009-03-29 14:02:43 +0000108 SourceLocation LBrace = ConsumeBrace();
109
Douglas Gregor23c94db2010-07-02 17:43:08 +0000110 if (getCurScope()->isClassScope() || getCurScope()->isTemplateParamScope() ||
111 getCurScope()->isInObjcMethodScope() || getCurScope()->getBlockParent() ||
112 getCurScope()->getFnParent()) {
Richard Trieuf858bd82011-05-26 20:11:09 +0000113 if (!ExtraIdent.empty()) {
114 Diag(ExtraNamespaceLoc[0], diag::err_nested_namespaces_with_double_colon)
115 << SourceRange(ExtraNamespaceLoc.front(), ExtraIdentLoc.back());
116 }
Douglas Gregor95f1b152010-05-14 05:08:22 +0000117 Diag(LBrace, diag::err_namespace_nonnamespace_scope);
118 SkipUntil(tok::r_brace, false);
John McCalld226f652010-08-21 09:40:31 +0000119 return 0;
Douglas Gregor95f1b152010-05-14 05:08:22 +0000120 }
121
Richard Trieuf858bd82011-05-26 20:11:09 +0000122 if (!ExtraIdent.empty()) {
123 TentativeParsingAction TPA(*this);
124 SkipUntil(tok::r_brace, /*StopAtSemi*/false, /*DontConsume*/true);
125 Token rBraceToken = Tok;
126 TPA.Revert();
127
128 if (!rBraceToken.is(tok::r_brace)) {
129 Diag(ExtraNamespaceLoc[0], diag::err_nested_namespaces_with_double_colon)
130 << SourceRange(ExtraNamespaceLoc.front(), ExtraIdentLoc.back());
131 } else {
Benjamin Kramer9910df02011-05-26 21:32:30 +0000132 std::string NamespaceFix;
Richard Trieuf858bd82011-05-26 20:11:09 +0000133 for (std::vector<IdentifierInfo*>::iterator I = ExtraIdent.begin(),
134 E = ExtraIdent.end(); I != E; ++I) {
135 NamespaceFix += " { namespace ";
136 NamespaceFix += (*I)->getName();
137 }
Benjamin Kramer9910df02011-05-26 21:32:30 +0000138
Richard Trieuf858bd82011-05-26 20:11:09 +0000139 std::string RBraces;
Benjamin Kramer9910df02011-05-26 21:32:30 +0000140 for (unsigned i = 0, e = ExtraIdent.size(); i != e; ++i)
Richard Trieuf858bd82011-05-26 20:11:09 +0000141 RBraces += "} ";
Benjamin Kramer9910df02011-05-26 21:32:30 +0000142
Richard Trieuf858bd82011-05-26 20:11:09 +0000143 Diag(ExtraNamespaceLoc[0], diag::err_nested_namespaces_with_double_colon)
144 << FixItHint::CreateReplacement(SourceRange(ExtraNamespaceLoc.front(),
145 ExtraIdentLoc.back()),
146 NamespaceFix)
147 << FixItHint::CreateInsertion(rBraceToken.getLocation(), RBraces);
148 }
149 }
150
Sebastian Redl88e64ca2010-08-31 00:36:45 +0000151 // If we're still good, complain about inline namespaces in non-C++0x now.
152 if (!getLang().CPlusPlus0x && InlineLoc.isValid())
153 Diag(InlineLoc, diag::ext_inline_namespace);
154
Chris Lattner51448322009-03-29 14:02:43 +0000155 // Enter a scope for the namespace.
156 ParseScope NamespaceScope(this, Scope::DeclScope);
157
John McCalld226f652010-08-21 09:40:31 +0000158 Decl *NamespcDecl =
Abramo Bagnaraacba90f2011-03-08 12:38:20 +0000159 Actions.ActOnStartNamespaceDef(getCurScope(), InlineLoc, NamespaceLoc,
160 IdentLoc, Ident, LBrace, attrs.getList());
Chris Lattner51448322009-03-29 14:02:43 +0000161
John McCallf312b1e2010-08-26 23:41:50 +0000162 PrettyDeclStackTraceEntry CrashInfo(Actions, NamespcDecl, NamespaceLoc,
163 "parsing namespace");
Mike Stump1eb44332009-09-09 15:08:12 +0000164
Richard Trieuf858bd82011-05-26 20:11:09 +0000165 SourceLocation RBraceLoc;
166 // Parse the contents of the namespace. This includes parsing recovery on
167 // any improperly nested namespaces.
168 ParseInnerNamespace(ExtraIdentLoc, ExtraIdent, ExtraNamespaceLoc, 0,
169 InlineLoc, LBrace, attrs, RBraceLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000170
Chris Lattner51448322009-03-29 14:02:43 +0000171 // Leave the namespace scope.
172 NamespaceScope.Exit();
173
Chris Lattner97144fc2009-04-02 04:16:50 +0000174 Actions.ActOnFinishNamespaceDef(NamespcDecl, RBraceLoc);
Chris Lattner51448322009-03-29 14:02:43 +0000175
Chris Lattner97144fc2009-04-02 04:16:50 +0000176 DeclEnd = RBraceLoc;
Chris Lattner51448322009-03-29 14:02:43 +0000177 return NamespcDecl;
Chris Lattner8f08cb72007-08-25 06:57:03 +0000178}
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000179
Richard Trieuf858bd82011-05-26 20:11:09 +0000180/// ParseInnerNamespace - Parse the contents of a namespace.
181void Parser::ParseInnerNamespace(std::vector<SourceLocation>& IdentLoc,
182 std::vector<IdentifierInfo*>& Ident,
183 std::vector<SourceLocation>& NamespaceLoc,
184 unsigned int index, SourceLocation& InlineLoc,
185 SourceLocation& LBrace,
186 ParsedAttributes& attrs,
187 SourceLocation& RBraceLoc) {
188 if (index == Ident.size()) {
189 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
190 ParsedAttributesWithRange attrs(AttrFactory);
191 MaybeParseCXX0XAttributes(attrs);
192 MaybeParseMicrosoftAttributes(attrs);
193 ParseExternalDeclaration(attrs);
194 }
195 RBraceLoc = MatchRHSPunctuation(tok::r_brace, LBrace);
196
197 return;
198 }
199
200 // Parse improperly nested namespaces.
201 ParseScope NamespaceScope(this, Scope::DeclScope);
202 Decl *NamespcDecl =
203 Actions.ActOnStartNamespaceDef(getCurScope(), SourceLocation(),
204 NamespaceLoc[index], IdentLoc[index],
205 Ident[index], LBrace, attrs.getList());
206
207 ParseInnerNamespace(IdentLoc, Ident, NamespaceLoc, ++index, InlineLoc,
208 LBrace, attrs, RBraceLoc);
209
210 NamespaceScope.Exit();
211
212 Actions.ActOnFinishNamespaceDef(NamespcDecl, RBraceLoc);
213}
214
Anders Carlssonf67606a2009-03-28 04:07:16 +0000215/// ParseNamespaceAlias - Parse the part after the '=' in a namespace
216/// alias definition.
217///
John McCalld226f652010-08-21 09:40:31 +0000218Decl *Parser::ParseNamespaceAlias(SourceLocation NamespaceLoc,
John McCall0b7e6782011-03-24 11:26:52 +0000219 SourceLocation AliasLoc,
220 IdentifierInfo *Alias,
221 SourceLocation &DeclEnd) {
Anders Carlssonf67606a2009-03-28 04:07:16 +0000222 assert(Tok.is(tok::equal) && "Not equal token");
Mike Stump1eb44332009-09-09 15:08:12 +0000223
Anders Carlssonf67606a2009-03-28 04:07:16 +0000224 ConsumeToken(); // eat the '='.
Mike Stump1eb44332009-09-09 15:08:12 +0000225
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000226 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000227 Actions.CodeCompleteNamespaceAliasDecl(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000228 cutOffParsing();
229 return 0;
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000230 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000231
Anders Carlssonf67606a2009-03-28 04:07:16 +0000232 CXXScopeSpec SS;
233 // Parse (optional) nested-name-specifier.
John McCallb3d87482010-08-24 05:47:05 +0000234 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
Anders Carlssonf67606a2009-03-28 04:07:16 +0000235
236 if (SS.isInvalid() || Tok.isNot(tok::identifier)) {
237 Diag(Tok, diag::err_expected_namespace_name);
238 // Skip to end of the definition and eat the ';'.
239 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000240 return 0;
Anders Carlssonf67606a2009-03-28 04:07:16 +0000241 }
242
243 // Parse identifier.
Anders Carlsson03bd5a12009-03-28 22:53:22 +0000244 IdentifierInfo *Ident = Tok.getIdentifierInfo();
245 SourceLocation IdentLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000246
Anders Carlssonf67606a2009-03-28 04:07:16 +0000247 // Eat the ';'.
Chris Lattner97144fc2009-04-02 04:16:50 +0000248 DeclEnd = Tok.getLocation();
Chris Lattner6869d8e2009-06-14 00:07:48 +0000249 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_namespace_name,
250 "", tok::semi);
Mike Stump1eb44332009-09-09 15:08:12 +0000251
Douglas Gregor23c94db2010-07-02 17:43:08 +0000252 return Actions.ActOnNamespaceAliasDef(getCurScope(), NamespaceLoc, AliasLoc, Alias,
Anders Carlsson03bd5a12009-03-28 22:53:22 +0000253 SS, IdentLoc, Ident);
Anders Carlssonf67606a2009-03-28 04:07:16 +0000254}
255
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000256/// ParseLinkage - We know that the current token is a string_literal
257/// and just before that, that extern was seen.
258///
259/// linkage-specification: [C++ 7.5p2: dcl.link]
260/// 'extern' string-literal '{' declaration-seq[opt] '}'
261/// 'extern' string-literal declaration
262///
Chris Lattner7d642712010-11-09 20:15:55 +0000263Decl *Parser::ParseLinkage(ParsingDeclSpec &DS, unsigned Context) {
Douglas Gregorc19923d2008-11-21 16:10:08 +0000264 assert(Tok.is(tok::string_literal) && "Not a string literal!");
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000265 llvm::SmallString<8> LangBuffer;
Douglas Gregor453091c2010-03-16 22:30:13 +0000266 bool Invalid = false;
Chris Lattner5f9e2722011-07-23 10:55:15 +0000267 StringRef Lang = PP.getSpelling(Tok, LangBuffer, &Invalid);
Douglas Gregor453091c2010-03-16 22:30:13 +0000268 if (Invalid)
John McCalld226f652010-08-21 09:40:31 +0000269 return 0;
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000270
271 SourceLocation Loc = ConsumeStringToken();
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000272
Douglas Gregor074149e2009-01-05 19:45:36 +0000273 ParseScope LinkageScope(this, Scope::DeclScope);
John McCalld226f652010-08-21 09:40:31 +0000274 Decl *LinkageSpec
Douglas Gregor23c94db2010-07-02 17:43:08 +0000275 = Actions.ActOnStartLinkageSpecification(getCurScope(),
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000276 DS.getSourceRange().getBegin(),
Benjamin Kramerd5663812010-05-03 13:08:54 +0000277 Loc, Lang,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000278 Tok.is(tok::l_brace) ? Tok.getLocation()
Douglas Gregor074149e2009-01-05 19:45:36 +0000279 : SourceLocation());
280
John McCall0b7e6782011-03-24 11:26:52 +0000281 ParsedAttributesWithRange attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +0000282 MaybeParseCXX0XAttributes(attrs);
283 MaybeParseMicrosoftAttributes(attrs);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000284
Douglas Gregor074149e2009-01-05 19:45:36 +0000285 if (Tok.isNot(tok::l_brace)) {
Abramo Bagnaraf41e33c2011-05-01 16:25:54 +0000286 // Reset the source range in DS, as the leading "extern"
287 // does not really belong to the inner declaration ...
288 DS.SetRangeStart(SourceLocation());
289 DS.SetRangeEnd(SourceLocation());
290 // ... but anyway remember that such an "extern" was seen.
Abramo Bagnara35f9a192010-07-30 16:47:02 +0000291 DS.setExternInLinkageSpec(true);
John McCall7f040a92010-12-24 02:08:15 +0000292 ParseExternalDeclaration(attrs, &DS);
Douglas Gregor23c94db2010-07-02 17:43:08 +0000293 return Actions.ActOnFinishLinkageSpecification(getCurScope(), LinkageSpec,
Douglas Gregor074149e2009-01-05 19:45:36 +0000294 SourceLocation());
Mike Stump1eb44332009-09-09 15:08:12 +0000295 }
Douglas Gregorf44515a2008-12-16 22:23:02 +0000296
Douglas Gregor63a01132010-02-07 08:38:28 +0000297 DS.abort();
298
John McCall7f040a92010-12-24 02:08:15 +0000299 ProhibitAttributes(attrs);
Sean Huntbbd37c62009-11-21 08:43:09 +0000300
Douglas Gregorf44515a2008-12-16 22:23:02 +0000301 SourceLocation LBrace = ConsumeBrace();
Douglas Gregorf44515a2008-12-16 22:23:02 +0000302 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
John McCall0b7e6782011-03-24 11:26:52 +0000303 ParsedAttributesWithRange attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +0000304 MaybeParseCXX0XAttributes(attrs);
305 MaybeParseMicrosoftAttributes(attrs);
306 ParseExternalDeclaration(attrs);
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000307 }
308
Douglas Gregorf44515a2008-12-16 22:23:02 +0000309 SourceLocation RBrace = MatchRHSPunctuation(tok::r_brace, LBrace);
Chris Lattner7d642712010-11-09 20:15:55 +0000310 return Actions.ActOnFinishLinkageSpecification(getCurScope(), LinkageSpec,
311 RBrace);
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000312}
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000313
Douglas Gregorf780abc2008-12-30 03:27:21 +0000314/// ParseUsingDirectiveOrDeclaration - Parse C++ using using-declaration or
315/// using-directive. Assumes that current token is 'using'.
John McCalld226f652010-08-21 09:40:31 +0000316Decl *Parser::ParseUsingDirectiveOrDeclaration(unsigned Context,
John McCall78b81052010-11-10 02:40:36 +0000317 const ParsedTemplateInfo &TemplateInfo,
318 SourceLocation &DeclEnd,
Richard Smithc89edf52011-07-01 19:46:12 +0000319 ParsedAttributesWithRange &attrs,
320 Decl **OwnedType) {
Douglas Gregorf780abc2008-12-30 03:27:21 +0000321 assert(Tok.is(tok::kw_using) && "Not using token");
Fariborz Jahanian9735c5e2011-08-22 17:59:19 +0000322 ObjCDeclContextSwitch ObjCDC(*this);
323
Douglas Gregorf780abc2008-12-30 03:27:21 +0000324 // Eat 'using'.
325 SourceLocation UsingLoc = ConsumeToken();
326
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000327 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000328 Actions.CodeCompleteUsing(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000329 cutOffParsing();
330 return 0;
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000331 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000332
John McCall78b81052010-11-10 02:40:36 +0000333 // 'using namespace' means this is a using-directive.
334 if (Tok.is(tok::kw_namespace)) {
335 // Template parameters are always an error here.
336 if (TemplateInfo.Kind) {
337 SourceRange R = TemplateInfo.getSourceRange();
338 Diag(UsingLoc, diag::err_templated_using_directive)
339 << R << FixItHint::CreateRemoval(R);
340 }
Sean Huntbbd37c62009-11-21 08:43:09 +0000341
Fariborz Jahanian9735c5e2011-08-22 17:59:19 +0000342 return ParseUsingDirective(Context, UsingLoc, DeclEnd, attrs);
John McCall78b81052010-11-10 02:40:36 +0000343 }
344
Richard Smith162e1c12011-04-15 14:24:37 +0000345 // Otherwise, it must be a using-declaration or an alias-declaration.
John McCall78b81052010-11-10 02:40:36 +0000346
347 // Using declarations can't have attributes.
John McCall7f040a92010-12-24 02:08:15 +0000348 ProhibitAttributes(attrs);
Chris Lattner2f274772009-01-06 06:55:51 +0000349
Fariborz Jahanian9735c5e2011-08-22 17:59:19 +0000350 return ParseUsingDeclaration(Context, TemplateInfo, UsingLoc, DeclEnd,
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000351 AS_none, OwnedType);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000352}
353
354/// ParseUsingDirective - Parse C++ using-directive, assumes
355/// that current token is 'namespace' and 'using' was already parsed.
356///
357/// using-directive: [C++ 7.3.p4: namespace.udir]
358/// 'using' 'namespace' ::[opt] nested-name-specifier[opt]
359/// namespace-name ;
360/// [GNU] using-directive:
361/// 'using' 'namespace' ::[opt] nested-name-specifier[opt]
362/// namespace-name attributes[opt] ;
363///
John McCalld226f652010-08-21 09:40:31 +0000364Decl *Parser::ParseUsingDirective(unsigned Context,
John McCall78b81052010-11-10 02:40:36 +0000365 SourceLocation UsingLoc,
366 SourceLocation &DeclEnd,
John McCall7f040a92010-12-24 02:08:15 +0000367 ParsedAttributes &attrs) {
Douglas Gregorf780abc2008-12-30 03:27:21 +0000368 assert(Tok.is(tok::kw_namespace) && "Not 'namespace' token");
369
370 // Eat 'namespace'.
371 SourceLocation NamespcLoc = ConsumeToken();
372
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000373 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000374 Actions.CodeCompleteUsingDirective(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000375 cutOffParsing();
376 return 0;
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000377 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000378
Douglas Gregorf780abc2008-12-30 03:27:21 +0000379 CXXScopeSpec SS;
380 // Parse (optional) nested-name-specifier.
John McCallb3d87482010-08-24 05:47:05 +0000381 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000382
Douglas Gregorf780abc2008-12-30 03:27:21 +0000383 IdentifierInfo *NamespcName = 0;
384 SourceLocation IdentLoc = SourceLocation();
385
386 // Parse namespace-name.
Chris Lattner823c44e2009-01-06 07:27:21 +0000387 if (SS.isInvalid() || Tok.isNot(tok::identifier)) {
Douglas Gregorf780abc2008-12-30 03:27:21 +0000388 Diag(Tok, diag::err_expected_namespace_name);
389 // If there was invalid namespace name, skip to end of decl, and eat ';'.
390 SkipUntil(tok::semi);
391 // FIXME: Are there cases, when we would like to call ActOnUsingDirective?
John McCalld226f652010-08-21 09:40:31 +0000392 return 0;
Douglas Gregorf780abc2008-12-30 03:27:21 +0000393 }
Mike Stump1eb44332009-09-09 15:08:12 +0000394
Chris Lattner823c44e2009-01-06 07:27:21 +0000395 // Parse identifier.
396 NamespcName = Tok.getIdentifierInfo();
397 IdentLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000398
Chris Lattner823c44e2009-01-06 07:27:21 +0000399 // Parse (optional) attributes (most likely GNU strong-using extension).
Sean Huntbbd37c62009-11-21 08:43:09 +0000400 bool GNUAttr = false;
401 if (Tok.is(tok::kw___attribute)) {
402 GNUAttr = true;
John McCall7f040a92010-12-24 02:08:15 +0000403 ParseGNUAttributes(attrs);
Sean Huntbbd37c62009-11-21 08:43:09 +0000404 }
Mike Stump1eb44332009-09-09 15:08:12 +0000405
Chris Lattner823c44e2009-01-06 07:27:21 +0000406 // Eat ';'.
Chris Lattner97144fc2009-04-02 04:16:50 +0000407 DeclEnd = Tok.getLocation();
Chris Lattner6869d8e2009-06-14 00:07:48 +0000408 ExpectAndConsume(tok::semi,
Douglas Gregor9ba23b42010-09-07 15:23:11 +0000409 GNUAttr ? diag::err_expected_semi_after_attribute_list
410 : diag::err_expected_semi_after_namespace_name,
411 "", tok::semi);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000412
Douglas Gregor23c94db2010-07-02 17:43:08 +0000413 return Actions.ActOnUsingDirective(getCurScope(), UsingLoc, NamespcLoc, SS,
John McCall7f040a92010-12-24 02:08:15 +0000414 IdentLoc, NamespcName, attrs.getList());
Douglas Gregorf780abc2008-12-30 03:27:21 +0000415}
416
Richard Smith162e1c12011-04-15 14:24:37 +0000417/// ParseUsingDeclaration - Parse C++ using-declaration or alias-declaration.
418/// Assumes that 'using' was already seen.
Douglas Gregorf780abc2008-12-30 03:27:21 +0000419///
420/// using-declaration: [C++ 7.3.p3: namespace.udecl]
421/// 'using' 'typename'[opt] ::[opt] nested-name-specifier
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000422/// unqualified-id
423/// 'using' :: unqualified-id
Douglas Gregorf780abc2008-12-30 03:27:21 +0000424///
Richard Smith162e1c12011-04-15 14:24:37 +0000425/// alias-declaration: C++0x [decl.typedef]p2
426/// 'using' identifier = type-id ;
427///
John McCalld226f652010-08-21 09:40:31 +0000428Decl *Parser::ParseUsingDeclaration(unsigned Context,
John McCall78b81052010-11-10 02:40:36 +0000429 const ParsedTemplateInfo &TemplateInfo,
430 SourceLocation UsingLoc,
431 SourceLocation &DeclEnd,
Richard Smithc89edf52011-07-01 19:46:12 +0000432 AccessSpecifier AS,
433 Decl **OwnedType) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000434 CXXScopeSpec SS;
John McCall7ba107a2009-11-18 02:36:19 +0000435 SourceLocation TypenameLoc;
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000436 bool IsTypeName;
437
438 // Ignore optional 'typename'.
Douglas Gregor12c118a2009-11-04 16:30:06 +0000439 // FIXME: This is wrong; we should parse this as a typename-specifier.
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000440 if (Tok.is(tok::kw_typename)) {
John McCall7ba107a2009-11-18 02:36:19 +0000441 TypenameLoc = Tok.getLocation();
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000442 ConsumeToken();
443 IsTypeName = true;
444 }
445 else
446 IsTypeName = false;
447
448 // Parse nested-name-specifier.
John McCallb3d87482010-08-24 05:47:05 +0000449 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000450
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000451 // Check nested-name specifier.
452 if (SS.isInvalid()) {
453 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000454 return 0;
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000455 }
Douglas Gregor12c118a2009-11-04 16:30:06 +0000456
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000457 // Parse the unqualified-id. We allow parsing of both constructor and
Douglas Gregor12c118a2009-11-04 16:30:06 +0000458 // destructor names and allow the action module to diagnose any semantic
459 // errors.
460 UnqualifiedId Name;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000461 if (ParseUnqualifiedId(SS,
Douglas Gregor12c118a2009-11-04 16:30:06 +0000462 /*EnteringContext=*/false,
463 /*AllowDestructorName=*/true,
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000464 /*AllowConstructorName=*/true,
John McCallb3d87482010-08-24 05:47:05 +0000465 ParsedType(),
Douglas Gregor12c118a2009-11-04 16:30:06 +0000466 Name)) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000467 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000468 return 0;
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000469 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000470
John McCall0b7e6782011-03-24 11:26:52 +0000471 ParsedAttributes attrs(AttrFactory);
Richard Smith162e1c12011-04-15 14:24:37 +0000472
473 // Maybe this is an alias-declaration.
474 bool IsAliasDecl = Tok.is(tok::equal);
475 TypeResult TypeAlias;
476 if (IsAliasDecl) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000477 // TODO: Attribute support. C++0x attributes may appear before the equals.
478 // Where can GNU attributes appear?
Richard Smith162e1c12011-04-15 14:24:37 +0000479 ConsumeToken();
480
481 if (!getLang().CPlusPlus0x)
482 Diag(Tok.getLocation(), diag::ext_alias_declaration);
483
Richard Smith3e4c6c42011-05-05 21:57:07 +0000484 // Type alias templates cannot be specialized.
485 int SpecKind = -1;
Richard Smith536e9c12011-05-05 22:36:10 +0000486 if (TemplateInfo.Kind == ParsedTemplateInfo::Template &&
487 Name.getKind() == UnqualifiedId::IK_TemplateId)
Richard Smith3e4c6c42011-05-05 21:57:07 +0000488 SpecKind = 0;
489 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitSpecialization)
490 SpecKind = 1;
491 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation)
492 SpecKind = 2;
493 if (SpecKind != -1) {
494 SourceRange Range;
495 if (SpecKind == 0)
496 Range = SourceRange(Name.TemplateId->LAngleLoc,
497 Name.TemplateId->RAngleLoc);
498 else
499 Range = TemplateInfo.getSourceRange();
500 Diag(Range.getBegin(), diag::err_alias_declaration_specialization)
501 << SpecKind << Range;
502 SkipUntil(tok::semi);
503 return 0;
504 }
505
Richard Smith162e1c12011-04-15 14:24:37 +0000506 // Name must be an identifier.
507 if (Name.getKind() != UnqualifiedId::IK_Identifier) {
508 Diag(Name.StartLocation, diag::err_alias_declaration_not_identifier);
509 // No removal fixit: can't recover from this.
510 SkipUntil(tok::semi);
511 return 0;
512 } else if (IsTypeName)
513 Diag(TypenameLoc, diag::err_alias_declaration_not_identifier)
514 << FixItHint::CreateRemoval(SourceRange(TypenameLoc,
515 SS.isNotEmpty() ? SS.getEndLoc() : TypenameLoc));
516 else if (SS.isNotEmpty())
517 Diag(SS.getBeginLoc(), diag::err_alias_declaration_not_identifier)
518 << FixItHint::CreateRemoval(SS.getRange());
519
Richard Smith3e4c6c42011-05-05 21:57:07 +0000520 TypeAlias = ParseTypeName(0, TemplateInfo.Kind ?
521 Declarator::AliasTemplateContext :
John McCallcdda47f2011-10-01 09:56:14 +0000522 Declarator::AliasDeclContext, AS, OwnedType);
Richard Smith162e1c12011-04-15 14:24:37 +0000523 } else
524 // Parse (optional) attributes (most likely GNU strong-using extension).
525 MaybeParseGNUAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +0000526
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000527 // Eat ';'.
528 DeclEnd = Tok.getLocation();
529 ExpectAndConsume(tok::semi, diag::err_expected_semi_after,
Richard Smith162e1c12011-04-15 14:24:37 +0000530 !attrs.empty() ? "attributes list" :
531 IsAliasDecl ? "alias declaration" : "using declaration",
Douglas Gregor12c118a2009-11-04 16:30:06 +0000532 tok::semi);
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000533
John McCall78b81052010-11-10 02:40:36 +0000534 // Diagnose an attempt to declare a templated using-declaration.
Richard Smith3e4c6c42011-05-05 21:57:07 +0000535 // In C++0x, alias-declarations can be templates:
Richard Smith162e1c12011-04-15 14:24:37 +0000536 // template <...> using id = type;
Richard Smith3e4c6c42011-05-05 21:57:07 +0000537 if (TemplateInfo.Kind && !IsAliasDecl) {
John McCall78b81052010-11-10 02:40:36 +0000538 SourceRange R = TemplateInfo.getSourceRange();
539 Diag(UsingLoc, diag::err_templated_using_declaration)
540 << R << FixItHint::CreateRemoval(R);
541
542 // Unfortunately, we have to bail out instead of recovering by
543 // ignoring the parameters, just in case the nested name specifier
544 // depends on the parameters.
545 return 0;
546 }
547
Douglas Gregor480b53c2011-09-26 14:30:28 +0000548 // "typename" keyword is allowed for identifiers only,
549 // because it may be a type definition.
550 if (IsTypeName && Name.getKind() != UnqualifiedId::IK_Identifier) {
551 Diag(Name.getSourceRange().getBegin(), diag::err_typename_identifiers_only)
552 << FixItHint::CreateRemoval(SourceRange(TypenameLoc));
553 // Proceed parsing, but reset the IsTypeName flag.
554 IsTypeName = false;
555 }
556
Richard Smith3e4c6c42011-05-05 21:57:07 +0000557 if (IsAliasDecl) {
558 TemplateParameterLists *TemplateParams = TemplateInfo.TemplateParams;
559 MultiTemplateParamsArg TemplateParamsArg(Actions,
560 TemplateParams ? TemplateParams->data() : 0,
561 TemplateParams ? TemplateParams->size() : 0);
562 return Actions.ActOnAliasDeclaration(getCurScope(), AS, TemplateParamsArg,
563 UsingLoc, Name, TypeAlias);
564 }
Richard Smith162e1c12011-04-15 14:24:37 +0000565
Ted Kremenek8113ecf2010-11-10 05:59:39 +0000566 return Actions.ActOnUsingDeclaration(getCurScope(), AS, true, UsingLoc, SS,
John McCall7f040a92010-12-24 02:08:15 +0000567 Name, attrs.getList(),
568 IsTypeName, TypenameLoc);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000569}
570
Peter Collingbournec6eb44b2011-04-15 00:35:57 +0000571/// ParseStaticAssertDeclaration - Parse C++0x or C1X static_assert-declaration.
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000572///
Peter Collingbournec6eb44b2011-04-15 00:35:57 +0000573/// [C++0x] static_assert-declaration:
574/// static_assert ( constant-expression , string-literal ) ;
575///
576/// [C1X] static_assert-declaration:
577/// _Static_assert ( constant-expression , string-literal ) ;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000578///
John McCalld226f652010-08-21 09:40:31 +0000579Decl *Parser::ParseStaticAssertDeclaration(SourceLocation &DeclEnd){
Peter Collingbournec6eb44b2011-04-15 00:35:57 +0000580 assert((Tok.is(tok::kw_static_assert) || Tok.is(tok::kw__Static_assert)) &&
581 "Not a static_assert declaration");
582
583 if (Tok.is(tok::kw__Static_assert) && !getLang().C1X)
584 Diag(Tok, diag::ext_c1x_static_assert);
585
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000586 SourceLocation StaticAssertLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000587
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000588 if (Tok.isNot(tok::l_paren)) {
589 Diag(Tok, diag::err_expected_lparen);
John McCalld226f652010-08-21 09:40:31 +0000590 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000591 }
Mike Stump1eb44332009-09-09 15:08:12 +0000592
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000593 SourceLocation LParenLoc = ConsumeParen();
Douglas Gregore0762c92009-06-19 23:52:42 +0000594
John McCall60d7b3a2010-08-24 06:29:42 +0000595 ExprResult AssertExpr(ParseConstantExpression());
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000596 if (AssertExpr.isInvalid()) {
597 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000598 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000599 }
Mike Stump1eb44332009-09-09 15:08:12 +0000600
Anders Carlssonad5f9602009-03-13 23:29:20 +0000601 if (ExpectAndConsume(tok::comma, diag::err_expected_comma, "", tok::semi))
John McCalld226f652010-08-21 09:40:31 +0000602 return 0;
Anders Carlssonad5f9602009-03-13 23:29:20 +0000603
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000604 if (Tok.isNot(tok::string_literal)) {
605 Diag(Tok, diag::err_expected_string_literal);
606 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000607 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000608 }
Mike Stump1eb44332009-09-09 15:08:12 +0000609
John McCall60d7b3a2010-08-24 06:29:42 +0000610 ExprResult AssertMessage(ParseStringLiteralExpression());
Mike Stump1eb44332009-09-09 15:08:12 +0000611 if (AssertMessage.isInvalid())
John McCalld226f652010-08-21 09:40:31 +0000612 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000613
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000614 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000615
Chris Lattner97144fc2009-04-02 04:16:50 +0000616 DeclEnd = Tok.getLocation();
Douglas Gregor9ba23b42010-09-07 15:23:11 +0000617 ExpectAndConsumeSemi(diag::err_expected_semi_after_static_assert);
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000618
John McCall9ae2f072010-08-23 23:25:46 +0000619 return Actions.ActOnStaticAssertDeclaration(StaticAssertLoc,
620 AssertExpr.take(),
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000621 AssertMessage.take(),
622 RParenLoc);
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000623}
624
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000625/// ParseDecltypeSpecifier - Parse a C++0x decltype specifier.
626///
627/// 'decltype' ( expression )
628///
629void Parser::ParseDecltypeSpecifier(DeclSpec &DS) {
630 assert(Tok.is(tok::kw_decltype) && "Not a decltype specifier");
631
632 SourceLocation StartLoc = ConsumeToken();
633 SourceLocation LParenLoc = Tok.getLocation();
Mike Stump1eb44332009-09-09 15:08:12 +0000634
635 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after,
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000636 "decltype")) {
637 SkipUntil(tok::r_paren);
638 return;
639 }
Mike Stump1eb44332009-09-09 15:08:12 +0000640
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000641 // Parse the expression
Mike Stump1eb44332009-09-09 15:08:12 +0000642
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000643 // C++0x [dcl.type.simple]p4:
644 // The operand of the decltype specifier is an unevaluated operand.
645 EnterExpressionEvaluationContext Unevaluated(Actions,
John McCallf312b1e2010-08-26 23:41:50 +0000646 Sema::Unevaluated);
John McCall60d7b3a2010-08-24 06:29:42 +0000647 ExprResult Result = ParseExpression();
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000648 if (Result.isInvalid()) {
649 SkipUntil(tok::r_paren);
650 return;
651 }
Mike Stump1eb44332009-09-09 15:08:12 +0000652
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000653 // Match the ')'
654 SourceLocation RParenLoc;
655 if (Tok.is(tok::r_paren))
656 RParenLoc = ConsumeParen();
657 else
658 MatchRHSPunctuation(tok::r_paren, LParenLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000659
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000660 if (RParenLoc.isInvalid())
661 return;
662
663 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +0000664 unsigned DiagID;
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000665 // Check for duplicate type specifiers (e.g. "int decltype(a)").
Mike Stump1eb44332009-09-09 15:08:12 +0000666 if (DS.SetTypeSpecType(DeclSpec::TST_decltype, StartLoc, PrevSpec,
John McCallfec54012009-08-03 20:12:06 +0000667 DiagID, Result.release()))
668 Diag(StartLoc, DiagID) << PrevSpec;
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000669}
670
Sean Huntdb5d44b2011-05-19 05:37:45 +0000671void Parser::ParseUnderlyingTypeSpecifier(DeclSpec &DS) {
672 assert(Tok.is(tok::kw___underlying_type) &&
673 "Not an underlying type specifier");
674
675 SourceLocation StartLoc = ConsumeToken();
676 SourceLocation LParenLoc = Tok.getLocation();
677
678 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after,
679 "__underlying_type")) {
680 SkipUntil(tok::r_paren);
681 return;
682 }
683
684 TypeResult Result = ParseTypeName();
685 if (Result.isInvalid()) {
686 SkipUntil(tok::r_paren);
687 return;
688 }
689
690 // Match the ')'
691 SourceLocation RParenLoc;
692 if (Tok.is(tok::r_paren))
693 RParenLoc = ConsumeParen();
694 else
695 MatchRHSPunctuation(tok::r_paren, LParenLoc);
696
697 if (RParenLoc.isInvalid())
698 return;
699
700 const char *PrevSpec = 0;
701 unsigned DiagID;
Sean Huntca63c202011-05-24 22:41:36 +0000702 if (DS.SetTypeSpecType(DeclSpec::TST_underlyingType, StartLoc, PrevSpec,
Sean Huntdb5d44b2011-05-19 05:37:45 +0000703 DiagID, Result.release()))
704 Diag(StartLoc, DiagID) << PrevSpec;
705}
706
Douglas Gregor42a552f2008-11-05 20:51:48 +0000707/// ParseClassName - Parse a C++ class-name, which names a class. Note
708/// that we only check that the result names a type; semantic analysis
709/// will need to verify that the type names a class. The result is
Douglas Gregor7f43d672009-02-25 23:52:28 +0000710/// either a type or NULL, depending on whether a type name was
Douglas Gregor42a552f2008-11-05 20:51:48 +0000711/// found.
712///
713/// class-name: [C++ 9.1]
714/// identifier
Douglas Gregor7f43d672009-02-25 23:52:28 +0000715/// simple-template-id
Mike Stump1eb44332009-09-09 15:08:12 +0000716///
Douglas Gregor31a19b62009-04-01 21:51:26 +0000717Parser::TypeResult Parser::ParseClassName(SourceLocation &EndLocation,
Douglas Gregor059101f2011-03-02 00:47:37 +0000718 CXXScopeSpec &SS) {
Douglas Gregor7f43d672009-02-25 23:52:28 +0000719 // Check whether we have a template-id that names a type.
720 if (Tok.is(tok::annot_template_id)) {
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +0000721 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregord9b600c2010-01-12 17:52:59 +0000722 if (TemplateId->Kind == TNK_Type_template ||
723 TemplateId->Kind == TNK_Dependent_template_name) {
Douglas Gregor059101f2011-03-02 00:47:37 +0000724 AnnotateTemplateIdTokenAsType();
Douglas Gregor7f43d672009-02-25 23:52:28 +0000725
726 assert(Tok.is(tok::annot_typename) && "template-id -> type failed");
John McCallb3d87482010-08-24 05:47:05 +0000727 ParsedType Type = getTypeAnnotation(Tok);
Douglas Gregor7f43d672009-02-25 23:52:28 +0000728 EndLocation = Tok.getAnnotationEndLoc();
729 ConsumeToken();
Douglas Gregor31a19b62009-04-01 21:51:26 +0000730
731 if (Type)
732 return Type;
733 return true;
Douglas Gregor7f43d672009-02-25 23:52:28 +0000734 }
735
736 // Fall through to produce an error below.
737 }
738
Douglas Gregor42a552f2008-11-05 20:51:48 +0000739 if (Tok.isNot(tok::identifier)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000740 Diag(Tok, diag::err_expected_class_name);
Douglas Gregor31a19b62009-04-01 21:51:26 +0000741 return true;
Douglas Gregor42a552f2008-11-05 20:51:48 +0000742 }
743
Douglas Gregor84d0a192010-01-12 21:28:44 +0000744 IdentifierInfo *Id = Tok.getIdentifierInfo();
745 SourceLocation IdLoc = ConsumeToken();
746
747 if (Tok.is(tok::less)) {
748 // It looks the user intended to write a template-id here, but the
749 // template-name was wrong. Try to fix that.
750 TemplateNameKind TNK = TNK_Type_template;
751 TemplateTy Template;
Douglas Gregor23c94db2010-07-02 17:43:08 +0000752 if (!Actions.DiagnoseUnknownTemplateName(*Id, IdLoc, getCurScope(),
Douglas Gregor059101f2011-03-02 00:47:37 +0000753 &SS, Template, TNK)) {
Douglas Gregor84d0a192010-01-12 21:28:44 +0000754 Diag(IdLoc, diag::err_unknown_template_name)
755 << Id;
756 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000757
Douglas Gregor84d0a192010-01-12 21:28:44 +0000758 if (!Template)
759 return true;
760
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000761 // Form the template name
Douglas Gregor84d0a192010-01-12 21:28:44 +0000762 UnqualifiedId TemplateName;
763 TemplateName.setIdentifier(Id, IdLoc);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000764
Douglas Gregor84d0a192010-01-12 21:28:44 +0000765 // Parse the full template-id, then turn it into a type.
766 if (AnnotateTemplateIdToken(Template, TNK, SS, TemplateName,
767 SourceLocation(), true))
768 return true;
769 if (TNK == TNK_Dependent_template_name)
Douglas Gregor059101f2011-03-02 00:47:37 +0000770 AnnotateTemplateIdTokenAsType();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000771
Douglas Gregor84d0a192010-01-12 21:28:44 +0000772 // If we didn't end up with a typename token, there's nothing more we
773 // can do.
774 if (Tok.isNot(tok::annot_typename))
775 return true;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000776
Douglas Gregor84d0a192010-01-12 21:28:44 +0000777 // Retrieve the type from the annotation token, consume that token, and
778 // return.
779 EndLocation = Tok.getAnnotationEndLoc();
John McCallb3d87482010-08-24 05:47:05 +0000780 ParsedType Type = getTypeAnnotation(Tok);
Douglas Gregor84d0a192010-01-12 21:28:44 +0000781 ConsumeToken();
782 return Type;
783 }
784
Douglas Gregor42a552f2008-11-05 20:51:48 +0000785 // We have an identifier; check whether it is actually a type.
Douglas Gregor059101f2011-03-02 00:47:37 +0000786 ParsedType Type = Actions.getTypeName(*Id, IdLoc, getCurScope(), &SS, true,
Douglas Gregor9e876872011-03-01 18:12:44 +0000787 false, ParsedType(),
788 /*NonTrivialTypeSourceInfo=*/true);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000789 if (!Type) {
Douglas Gregor124b8782010-02-16 19:09:40 +0000790 Diag(IdLoc, diag::err_expected_class_name);
Douglas Gregor31a19b62009-04-01 21:51:26 +0000791 return true;
Douglas Gregor42a552f2008-11-05 20:51:48 +0000792 }
793
794 // Consume the identifier.
Douglas Gregor84d0a192010-01-12 21:28:44 +0000795 EndLocation = IdLoc;
Nick Lewycky56062202010-07-26 16:56:01 +0000796
797 // Fake up a Declarator to use with ActOnTypeName.
John McCall0b7e6782011-03-24 11:26:52 +0000798 DeclSpec DS(AttrFactory);
Nick Lewycky56062202010-07-26 16:56:01 +0000799 DS.SetRangeStart(IdLoc);
800 DS.SetRangeEnd(EndLocation);
Douglas Gregor059101f2011-03-02 00:47:37 +0000801 DS.getTypeSpecScope() = SS;
Nick Lewycky56062202010-07-26 16:56:01 +0000802
803 const char *PrevSpec = 0;
804 unsigned DiagID;
805 DS.SetTypeSpecType(TST_typename, IdLoc, PrevSpec, DiagID, Type);
806
807 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
808 return Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
Douglas Gregor42a552f2008-11-05 20:51:48 +0000809}
810
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000811/// ParseClassSpecifier - Parse a C++ class-specifier [C++ class] or
812/// elaborated-type-specifier [C++ dcl.type.elab]; we can't tell which
813/// until we reach the start of a definition or see a token that
Sebastian Redld9bafa72010-02-03 21:21:43 +0000814/// cannot start a definition. If SuppressDeclarations is true, we do know.
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000815///
816/// class-specifier: [C++ class]
817/// class-head '{' member-specification[opt] '}'
818/// class-head '{' member-specification[opt] '}' attributes[opt]
819/// class-head:
820/// class-key identifier[opt] base-clause[opt]
821/// class-key nested-name-specifier identifier base-clause[opt]
822/// class-key nested-name-specifier[opt] simple-template-id
823/// base-clause[opt]
824/// [GNU] class-key attributes[opt] identifier[opt] base-clause[opt]
Mike Stump1eb44332009-09-09 15:08:12 +0000825/// [GNU] class-key attributes[opt] nested-name-specifier
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000826/// identifier base-clause[opt]
Mike Stump1eb44332009-09-09 15:08:12 +0000827/// [GNU] class-key attributes[opt] nested-name-specifier[opt]
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000828/// simple-template-id base-clause[opt]
829/// class-key:
830/// 'class'
831/// 'struct'
832/// 'union'
833///
834/// elaborated-type-specifier: [C++ dcl.type.elab]
Mike Stump1eb44332009-09-09 15:08:12 +0000835/// class-key ::[opt] nested-name-specifier[opt] identifier
836/// class-key ::[opt] nested-name-specifier[opt] 'template'[opt]
837/// simple-template-id
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000838///
839/// Note that the C++ class-specifier and elaborated-type-specifier,
840/// together, subsume the C99 struct-or-union-specifier:
841///
842/// struct-or-union-specifier: [C99 6.7.2.1]
843/// struct-or-union identifier[opt] '{' struct-contents '}'
844/// struct-or-union identifier
845/// [GNU] struct-or-union attributes[opt] identifier[opt] '{' struct-contents
846/// '}' attributes[opt]
847/// [GNU] struct-or-union attributes[opt] identifier
848/// struct-or-union:
849/// 'struct'
850/// 'union'
Chris Lattner4c97d762009-04-12 21:49:30 +0000851void Parser::ParseClassSpecifier(tok::TokenKind TagTokKind,
852 SourceLocation StartLoc, DeclSpec &DS,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000853 const ParsedTemplateInfo &TemplateInfo,
Sebastian Redld9bafa72010-02-03 21:21:43 +0000854 AccessSpecifier AS, bool SuppressDeclarations){
Chris Lattner4c97d762009-04-12 21:49:30 +0000855 DeclSpec::TST TagType;
856 if (TagTokKind == tok::kw_struct)
857 TagType = DeclSpec::TST_struct;
858 else if (TagTokKind == tok::kw_class)
859 TagType = DeclSpec::TST_class;
860 else {
861 assert(TagTokKind == tok::kw_union && "Not a class specifier");
862 TagType = DeclSpec::TST_union;
863 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000864
Douglas Gregor374929f2009-09-18 15:37:17 +0000865 if (Tok.is(tok::code_completion)) {
866 // Code completion for a struct, class, or union name.
Douglas Gregor23c94db2010-07-02 17:43:08 +0000867 Actions.CodeCompleteTag(getCurScope(), TagType);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000868 return cutOffParsing();
Douglas Gregor374929f2009-09-18 15:37:17 +0000869 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000870
Chandler Carruth926c4b42010-06-28 08:39:25 +0000871 // C++03 [temp.explicit] 14.7.2/8:
872 // The usual access checking rules do not apply to names used to specify
873 // explicit instantiations.
874 //
875 // As an extension we do not perform access checking on the names used to
876 // specify explicit specializations either. This is important to allow
877 // specializing traits classes for private types.
878 bool SuppressingAccessChecks = false;
879 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation ||
880 TemplateInfo.Kind == ParsedTemplateInfo::ExplicitSpecialization) {
881 Actions.ActOnStartSuppressingAccessChecks();
882 SuppressingAccessChecks = true;
883 }
884
John McCall0b7e6782011-03-24 11:26:52 +0000885 ParsedAttributes attrs(AttrFactory);
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000886 // If attributes exist after tag, parse them.
887 if (Tok.is(tok::kw___attribute))
John McCall7f040a92010-12-24 02:08:15 +0000888 ParseGNUAttributes(attrs);
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000889
Steve Narofff59e17e2008-12-24 20:59:21 +0000890 // If declspecs exist after tag, parse them.
John McCallb1d397c2010-08-05 17:13:11 +0000891 while (Tok.is(tok::kw___declspec))
John McCall7f040a92010-12-24 02:08:15 +0000892 ParseMicrosoftDeclSpec(attrs);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000893
Sean Huntbbd37c62009-11-21 08:43:09 +0000894 // If C++0x attributes exist here, parse them.
895 // FIXME: Are we consistent with the ordering of parsing of different
896 // styles of attributes?
John McCall7f040a92010-12-24 02:08:15 +0000897 MaybeParseCXX0XAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +0000898
John Wiegley20c0da72011-04-27 23:09:49 +0000899 if (TagType == DeclSpec::TST_struct &&
Douglas Gregorb467cda2011-04-29 15:31:39 +0000900 !Tok.is(tok::identifier) &&
901 Tok.getIdentifierInfo() &&
902 (Tok.is(tok::kw___is_arithmetic) ||
903 Tok.is(tok::kw___is_convertible) ||
John Wiegley20c0da72011-04-27 23:09:49 +0000904 Tok.is(tok::kw___is_empty) ||
Douglas Gregorb467cda2011-04-29 15:31:39 +0000905 Tok.is(tok::kw___is_floating_point) ||
906 Tok.is(tok::kw___is_function) ||
John Wiegley20c0da72011-04-27 23:09:49 +0000907 Tok.is(tok::kw___is_fundamental) ||
Douglas Gregorb467cda2011-04-29 15:31:39 +0000908 Tok.is(tok::kw___is_integral) ||
909 Tok.is(tok::kw___is_member_function_pointer) ||
910 Tok.is(tok::kw___is_member_pointer) ||
911 Tok.is(tok::kw___is_pod) ||
912 Tok.is(tok::kw___is_pointer) ||
913 Tok.is(tok::kw___is_same) ||
Douglas Gregor877222e2011-04-29 01:38:03 +0000914 Tok.is(tok::kw___is_scalar) ||
Douglas Gregorb467cda2011-04-29 15:31:39 +0000915 Tok.is(tok::kw___is_signed) ||
916 Tok.is(tok::kw___is_unsigned) ||
917 Tok.is(tok::kw___is_void))) {
Douglas Gregor68876142011-07-30 07:01:49 +0000918 // GNU libstdc++ 4.2 and libc++ use certain intrinsic names as the
Douglas Gregorb467cda2011-04-29 15:31:39 +0000919 // name of struct templates, but some are keywords in GCC >= 4.3
920 // and Clang. Therefore, when we see the token sequence "struct
921 // X", make X into a normal identifier rather than a keyword, to
922 // allow libstdc++ 4.2 and libc++ to work properly.
Argyrios Kyrtzidis646395b2010-08-11 22:55:12 +0000923 Tok.getIdentifierInfo()->RevertTokenIDToIdentifier();
Douglas Gregorb117a602009-09-04 05:53:02 +0000924 Tok.setKind(tok::identifier);
925 }
Mike Stump1eb44332009-09-09 15:08:12 +0000926
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000927 // Parse the (optional) nested-name-specifier.
John McCallaa87d332009-12-12 11:40:51 +0000928 CXXScopeSpec &SS = DS.getTypeSpecScope();
Chris Lattner08d92ec2009-12-10 00:32:41 +0000929 if (getLang().CPlusPlus) {
930 // "FOO : BAR" is not a potential typo for "FOO::BAR".
931 ColonProtectionRAIIObject X(*this);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000932
John McCallb3d87482010-08-24 05:47:05 +0000933 if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(), true))
John McCall207014e2010-07-30 06:26:29 +0000934 DS.SetTypeSpecError();
John McCall9ba61662010-02-26 08:45:28 +0000935 if (SS.isSet())
Chris Lattner08d92ec2009-12-10 00:32:41 +0000936 if (Tok.isNot(tok::identifier) && Tok.isNot(tok::annot_template_id))
937 Diag(Tok, diag::err_expected_ident);
938 }
Douglas Gregorcc636682009-02-17 23:15:12 +0000939
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000940 TemplateParameterLists *TemplateParams = TemplateInfo.TemplateParams;
941
Douglas Gregorcc636682009-02-17 23:15:12 +0000942 // Parse the (optional) class name or simple-template-id.
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000943 IdentifierInfo *Name = 0;
944 SourceLocation NameLoc;
Douglas Gregor39a8de12009-02-25 19:37:18 +0000945 TemplateIdAnnotation *TemplateId = 0;
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000946 if (Tok.is(tok::identifier)) {
947 Name = Tok.getIdentifierInfo();
948 NameLoc = ConsumeToken();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000949
Douglas Gregor5ee37342010-05-30 22:30:21 +0000950 if (Tok.is(tok::less) && getLang().CPlusPlus) {
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000951 // The name was supposed to refer to a template, but didn't.
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000952 // Eat the template argument list and try to continue parsing this as
953 // a class (or template thereof).
954 TemplateArgList TemplateArgs;
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000955 SourceLocation LAngleLoc, RAngleLoc;
Douglas Gregor059101f2011-03-02 00:47:37 +0000956 if (ParseTemplateIdAfterTemplateName(TemplateTy(), NameLoc, SS,
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000957 true, LAngleLoc,
Douglas Gregor314b97f2009-11-10 19:49:08 +0000958 TemplateArgs, RAngleLoc)) {
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000959 // We couldn't parse the template argument list at all, so don't
960 // try to give any location information for the list.
961 LAngleLoc = RAngleLoc = SourceLocation();
962 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000963
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000964 Diag(NameLoc, diag::err_explicit_spec_non_template)
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000965 << (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation)
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000966 << (TagType == DeclSpec::TST_class? 0
967 : TagType == DeclSpec::TST_struct? 1
968 : 2)
969 << Name
970 << SourceRange(LAngleLoc, RAngleLoc);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000971
972 // Strip off the last template parameter list if it was empty, since
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000973 // we've removed its template argument list.
974 if (TemplateParams && TemplateInfo.LastParameterListWasEmpty) {
975 if (TemplateParams && TemplateParams->size() > 1) {
976 TemplateParams->pop_back();
977 } else {
978 TemplateParams = 0;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000979 const_cast<ParsedTemplateInfo&>(TemplateInfo).Kind
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000980 = ParsedTemplateInfo::NonTemplate;
981 }
982 } else if (TemplateInfo.Kind
983 == ParsedTemplateInfo::ExplicitInstantiation) {
984 // Pretend this is just a forward declaration.
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000985 TemplateParams = 0;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000986 const_cast<ParsedTemplateInfo&>(TemplateInfo).Kind
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000987 = ParsedTemplateInfo::NonTemplate;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000988 const_cast<ParsedTemplateInfo&>(TemplateInfo).TemplateLoc
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000989 = SourceLocation();
990 const_cast<ParsedTemplateInfo&>(TemplateInfo).ExternLoc
991 = SourceLocation();
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000992 }
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000993 }
Douglas Gregor39a8de12009-02-25 19:37:18 +0000994 } else if (Tok.is(tok::annot_template_id)) {
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +0000995 TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregor39a8de12009-02-25 19:37:18 +0000996 NameLoc = ConsumeToken();
Douglas Gregorcc636682009-02-17 23:15:12 +0000997
Douglas Gregor059101f2011-03-02 00:47:37 +0000998 if (TemplateId->Kind != TNK_Type_template &&
999 TemplateId->Kind != TNK_Dependent_template_name) {
Douglas Gregor39a8de12009-02-25 19:37:18 +00001000 // The template-name in the simple-template-id refers to
1001 // something other than a class template. Give an appropriate
1002 // error message and skip to the ';'.
1003 SourceRange Range(NameLoc);
1004 if (SS.isNotEmpty())
1005 Range.setBegin(SS.getBeginLoc());
Douglas Gregorcc636682009-02-17 23:15:12 +00001006
Douglas Gregor39a8de12009-02-25 19:37:18 +00001007 Diag(TemplateId->LAngleLoc, diag::err_template_spec_syntax_non_template)
1008 << Name << static_cast<int>(TemplateId->Kind) << Range;
Mike Stump1eb44332009-09-09 15:08:12 +00001009
Douglas Gregor39a8de12009-02-25 19:37:18 +00001010 DS.SetTypeSpecError();
1011 SkipUntil(tok::semi, false, true);
Chandler Carruth926c4b42010-06-28 08:39:25 +00001012 if (SuppressingAccessChecks)
1013 Actions.ActOnStopSuppressingAccessChecks();
1014
Douglas Gregor39a8de12009-02-25 19:37:18 +00001015 return;
Douglas Gregorcc636682009-02-17 23:15:12 +00001016 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001017 }
1018
Chandler Carruth926c4b42010-06-28 08:39:25 +00001019 // As soon as we're finished parsing the class's template-id, turn access
1020 // checking back on.
1021 if (SuppressingAccessChecks)
1022 Actions.ActOnStopSuppressingAccessChecks();
1023
John McCall67d1a672009-08-06 02:15:43 +00001024 // There are four options here. If we have 'struct foo;', then this
1025 // is either a forward declaration or a friend declaration, which
Anders Carlssoncc54d592011-01-22 16:56:46 +00001026 // have to be treated differently. If we have 'struct foo {...',
Anders Carlsson1d209272011-03-25 14:55:14 +00001027 // 'struct foo :...' or 'struct foo final[opt]' then this is a
Anders Carlssoncc54d592011-01-22 16:56:46 +00001028 // definition. Otherwise we have something like 'struct foo xyz', a reference.
Sebastian Redld9bafa72010-02-03 21:21:43 +00001029 // However, in some contexts, things look like declarations but are just
1030 // references, e.g.
1031 // new struct s;
1032 // or
1033 // &T::operator struct s;
1034 // For these, SuppressDeclarations is true.
John McCallf312b1e2010-08-26 23:41:50 +00001035 Sema::TagUseKind TUK;
Sebastian Redld9bafa72010-02-03 21:21:43 +00001036 if (SuppressDeclarations)
John McCallf312b1e2010-08-26 23:41:50 +00001037 TUK = Sema::TUK_Reference;
Anders Carlssoncc54d592011-01-22 16:56:46 +00001038 else if (Tok.is(tok::l_brace) ||
1039 (getLang().CPlusPlus && Tok.is(tok::colon)) ||
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001040 isCXX0XFinalKeyword()) {
Douglas Gregord85bea22009-09-26 06:47:28 +00001041 if (DS.isFriendSpecified()) {
1042 // C++ [class.friend]p2:
1043 // A class shall not be defined in a friend declaration.
1044 Diag(Tok.getLocation(), diag::err_friend_decl_defines_class)
1045 << SourceRange(DS.getFriendSpecLoc());
1046
1047 // Skip everything up to the semicolon, so that this looks like a proper
1048 // friend class (or template thereof) declaration.
1049 SkipUntil(tok::semi, true, true);
John McCallf312b1e2010-08-26 23:41:50 +00001050 TUK = Sema::TUK_Friend;
Douglas Gregord85bea22009-09-26 06:47:28 +00001051 } else {
1052 // Okay, this is a class definition.
John McCallf312b1e2010-08-26 23:41:50 +00001053 TUK = Sema::TUK_Definition;
Douglas Gregord85bea22009-09-26 06:47:28 +00001054 }
1055 } else if (Tok.is(tok::semi))
John McCallf312b1e2010-08-26 23:41:50 +00001056 TUK = DS.isFriendSpecified() ? Sema::TUK_Friend : Sema::TUK_Declaration;
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001057 else
John McCallf312b1e2010-08-26 23:41:50 +00001058 TUK = Sema::TUK_Reference;
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001059
John McCall207014e2010-07-30 06:26:29 +00001060 if (!Name && !TemplateId && (DS.getTypeSpecType() == DeclSpec::TST_error ||
John McCallf312b1e2010-08-26 23:41:50 +00001061 TUK != Sema::TUK_Definition)) {
John McCall207014e2010-07-30 06:26:29 +00001062 if (DS.getTypeSpecType() != DeclSpec::TST_error) {
1063 // We have a declaration or reference to an anonymous class.
1064 Diag(StartLoc, diag::err_anon_type_definition)
1065 << DeclSpec::getSpecifierName(TagType);
1066 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001067
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001068 SkipUntil(tok::comma, true);
1069 return;
1070 }
1071
Douglas Gregorddc29e12009-02-06 22:42:48 +00001072 // Create the tag portion of the class or class template.
John McCalld226f652010-08-21 09:40:31 +00001073 DeclResult TagOrTempResult = true; // invalid
1074 TypeResult TypeResult = true; // invalid
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001075
Douglas Gregor402abb52009-05-28 23:31:59 +00001076 bool Owned = false;
John McCallf1bbbb42009-09-04 01:14:41 +00001077 if (TemplateId) {
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001078 // Explicit specialization, class template partial specialization,
1079 // or explicit instantiation.
Mike Stump1eb44332009-09-09 15:08:12 +00001080 ASTTemplateArgsPtr TemplateArgsPtr(Actions,
Douglas Gregor39a8de12009-02-25 19:37:18 +00001081 TemplateId->getTemplateArgs(),
Douglas Gregor39a8de12009-02-25 19:37:18 +00001082 TemplateId->NumArgs);
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001083 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallf312b1e2010-08-26 23:41:50 +00001084 TUK == Sema::TUK_Declaration) {
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001085 // This is an explicit instantiation of a class template.
1086 TagOrTempResult
Douglas Gregor23c94db2010-07-02 17:43:08 +00001087 = Actions.ActOnExplicitInstantiation(getCurScope(),
Douglas Gregor45f96552009-09-04 06:33:52 +00001088 TemplateInfo.ExternLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001089 TemplateInfo.TemplateLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001090 TagType,
Mike Stump1eb44332009-09-09 15:08:12 +00001091 StartLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001092 SS,
John McCall2b5289b2010-08-23 07:28:44 +00001093 TemplateId->Template,
Mike Stump1eb44332009-09-09 15:08:12 +00001094 TemplateId->TemplateNameLoc,
1095 TemplateId->LAngleLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001096 TemplateArgsPtr,
Mike Stump1eb44332009-09-09 15:08:12 +00001097 TemplateId->RAngleLoc,
John McCall7f040a92010-12-24 02:08:15 +00001098 attrs.getList());
John McCall74256f52010-04-14 00:24:33 +00001099
1100 // Friend template-ids are treated as references unless
1101 // they have template headers, in which case they're ill-formed
1102 // (FIXME: "template <class T> friend class A<T>::B<int>;").
1103 // We diagnose this error in ActOnClassTemplateSpecialization.
John McCallf312b1e2010-08-26 23:41:50 +00001104 } else if (TUK == Sema::TUK_Reference ||
1105 (TUK == Sema::TUK_Friend &&
John McCall74256f52010-04-14 00:24:33 +00001106 TemplateInfo.Kind == ParsedTemplateInfo::NonTemplate)) {
Douglas Gregor059101f2011-03-02 00:47:37 +00001107 TypeResult = Actions.ActOnTagTemplateIdType(TUK, TagType,
1108 StartLoc,
1109 TemplateId->SS,
1110 TemplateId->Template,
1111 TemplateId->TemplateNameLoc,
1112 TemplateId->LAngleLoc,
1113 TemplateArgsPtr,
1114 TemplateId->RAngleLoc);
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001115 } else {
1116 // This is an explicit specialization or a class template
1117 // partial specialization.
1118 TemplateParameterLists FakedParamLists;
1119
1120 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation) {
1121 // This looks like an explicit instantiation, because we have
1122 // something like
1123 //
1124 // template class Foo<X>
1125 //
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001126 // but it actually has a definition. Most likely, this was
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001127 // meant to be an explicit specialization, but the user forgot
1128 // the '<>' after 'template'.
John McCallf312b1e2010-08-26 23:41:50 +00001129 assert(TUK == Sema::TUK_Definition && "Expected a definition here");
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001130
Mike Stump1eb44332009-09-09 15:08:12 +00001131 SourceLocation LAngleLoc
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001132 = PP.getLocForEndOfToken(TemplateInfo.TemplateLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00001133 Diag(TemplateId->TemplateNameLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001134 diag::err_explicit_instantiation_with_definition)
1135 << SourceRange(TemplateInfo.TemplateLoc)
Douglas Gregor849b2432010-03-31 17:46:05 +00001136 << FixItHint::CreateInsertion(LAngleLoc, "<>");
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001137
1138 // Create a fake template parameter list that contains only
1139 // "template<>", so that we treat this construct as a class
1140 // template specialization.
1141 FakedParamLists.push_back(
Mike Stump1eb44332009-09-09 15:08:12 +00001142 Actions.ActOnTemplateParameterList(0, SourceLocation(),
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001143 TemplateInfo.TemplateLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001144 LAngleLoc,
1145 0, 0,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001146 LAngleLoc));
1147 TemplateParams = &FakedParamLists;
1148 }
1149
1150 // Build the class template specialization.
1151 TagOrTempResult
Douglas Gregor23c94db2010-07-02 17:43:08 +00001152 = Actions.ActOnClassTemplateSpecialization(getCurScope(), TagType, TUK,
Douglas Gregord023aec2011-09-09 20:53:38 +00001153 StartLoc, DS.getModulePrivateSpecLoc(), SS,
John McCall2b5289b2010-08-23 07:28:44 +00001154 TemplateId->Template,
Mike Stump1eb44332009-09-09 15:08:12 +00001155 TemplateId->TemplateNameLoc,
1156 TemplateId->LAngleLoc,
Douglas Gregor39a8de12009-02-25 19:37:18 +00001157 TemplateArgsPtr,
Mike Stump1eb44332009-09-09 15:08:12 +00001158 TemplateId->RAngleLoc,
John McCall7f040a92010-12-24 02:08:15 +00001159 attrs.getList(),
John McCallf312b1e2010-08-26 23:41:50 +00001160 MultiTemplateParamsArg(Actions,
Douglas Gregorcc636682009-02-17 23:15:12 +00001161 TemplateParams? &(*TemplateParams)[0] : 0,
1162 TemplateParams? TemplateParams->size() : 0));
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001163 }
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001164 } else if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallf312b1e2010-08-26 23:41:50 +00001165 TUK == Sema::TUK_Declaration) {
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001166 // Explicit instantiation of a member of a class template
1167 // specialization, e.g.,
1168 //
1169 // template struct Outer<int>::Inner;
1170 //
1171 TagOrTempResult
Douglas Gregor23c94db2010-07-02 17:43:08 +00001172 = Actions.ActOnExplicitInstantiation(getCurScope(),
Douglas Gregor45f96552009-09-04 06:33:52 +00001173 TemplateInfo.ExternLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001174 TemplateInfo.TemplateLoc,
1175 TagType, StartLoc, SS, Name,
John McCall7f040a92010-12-24 02:08:15 +00001176 NameLoc, attrs.getList());
John McCall9a34edb2010-10-19 01:40:49 +00001177 } else if (TUK == Sema::TUK_Friend &&
1178 TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate) {
1179 TagOrTempResult =
1180 Actions.ActOnTemplatedFriendTag(getCurScope(), DS.getFriendSpecLoc(),
1181 TagType, StartLoc, SS,
John McCall7f040a92010-12-24 02:08:15 +00001182 Name, NameLoc, attrs.getList(),
John McCall9a34edb2010-10-19 01:40:49 +00001183 MultiTemplateParamsArg(Actions,
1184 TemplateParams? &(*TemplateParams)[0] : 0,
1185 TemplateParams? TemplateParams->size() : 0));
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001186 } else {
1187 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallf312b1e2010-08-26 23:41:50 +00001188 TUK == Sema::TUK_Definition) {
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001189 // FIXME: Diagnose this particular error.
1190 }
1191
John McCallc4e70192009-09-11 04:59:25 +00001192 bool IsDependent = false;
1193
John McCalla25c4082010-10-19 18:40:57 +00001194 // Don't pass down template parameter lists if this is just a tag
1195 // reference. For example, we don't need the template parameters here:
1196 // template <class T> class A *makeA(T t);
1197 MultiTemplateParamsArg TParams;
1198 if (TUK != Sema::TUK_Reference && TemplateParams)
1199 TParams =
1200 MultiTemplateParamsArg(&(*TemplateParams)[0], TemplateParams->size());
1201
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001202 // Declaration or definition of a class type
John McCall9a34edb2010-10-19 01:40:49 +00001203 TagOrTempResult = Actions.ActOnTag(getCurScope(), TagType, TUK, StartLoc,
John McCall7f040a92010-12-24 02:08:15 +00001204 SS, Name, NameLoc, attrs.getList(), AS,
Douglas Gregore7612302011-09-09 19:05:14 +00001205 DS.getModulePrivateSpecLoc(),
John McCalla25c4082010-10-19 18:40:57 +00001206 TParams, Owned, IsDependent, false,
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +00001207 false, clang::TypeResult());
John McCallc4e70192009-09-11 04:59:25 +00001208
1209 // If ActOnTag said the type was dependent, try again with the
1210 // less common call.
John McCall9a34edb2010-10-19 01:40:49 +00001211 if (IsDependent) {
1212 assert(TUK == Sema::TUK_Reference || TUK == Sema::TUK_Friend);
Douglas Gregor23c94db2010-07-02 17:43:08 +00001213 TypeResult = Actions.ActOnDependentTag(getCurScope(), TagType, TUK,
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001214 SS, Name, StartLoc, NameLoc);
John McCall9a34edb2010-10-19 01:40:49 +00001215 }
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001216 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001217
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001218 // If there is a body, parse it and inform the actions module.
John McCallf312b1e2010-08-26 23:41:50 +00001219 if (TUK == Sema::TUK_Definition) {
John McCallbd0dfa52009-12-19 21:48:58 +00001220 assert(Tok.is(tok::l_brace) ||
Anders Carlssoncc54d592011-01-22 16:56:46 +00001221 (getLang().CPlusPlus && Tok.is(tok::colon)) ||
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001222 isCXX0XFinalKeyword());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001223 if (getLang().CPlusPlus)
Douglas Gregor212e81c2009-03-25 00:13:59 +00001224 ParseCXXMemberSpecification(StartLoc, TagType, TagOrTempResult.get());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001225 else
Douglas Gregor212e81c2009-03-25 00:13:59 +00001226 ParseStructUnionBody(StartLoc, TagType, TagOrTempResult.get());
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001227 }
1228
John McCallb3d87482010-08-24 05:47:05 +00001229 const char *PrevSpec = 0;
1230 unsigned DiagID;
1231 bool Result;
John McCallc4e70192009-09-11 04:59:25 +00001232 if (!TypeResult.isInvalid()) {
Abramo Bagnara0daaf322011-03-16 20:16:18 +00001233 Result = DS.SetTypeSpecType(DeclSpec::TST_typename, StartLoc,
1234 NameLoc.isValid() ? NameLoc : StartLoc,
John McCallb3d87482010-08-24 05:47:05 +00001235 PrevSpec, DiagID, TypeResult.get());
John McCallc4e70192009-09-11 04:59:25 +00001236 } else if (!TagOrTempResult.isInvalid()) {
Abramo Bagnara0daaf322011-03-16 20:16:18 +00001237 Result = DS.SetTypeSpecType(TagType, StartLoc,
1238 NameLoc.isValid() ? NameLoc : StartLoc,
1239 PrevSpec, DiagID, TagOrTempResult.get(), Owned);
John McCallc4e70192009-09-11 04:59:25 +00001240 } else {
Douglas Gregorddc29e12009-02-06 22:42:48 +00001241 DS.SetTypeSpecError();
Anders Carlsson66e99772009-05-11 22:27:47 +00001242 return;
1243 }
Mike Stump1eb44332009-09-09 15:08:12 +00001244
John McCallb3d87482010-08-24 05:47:05 +00001245 if (Result)
John McCallfec54012009-08-03 20:12:06 +00001246 Diag(StartLoc, DiagID) << PrevSpec;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001247
Chris Lattner4ed5d912010-02-02 01:23:29 +00001248 // At this point, we've successfully parsed a class-specifier in 'definition'
1249 // form (e.g. "struct foo { int x; }". While we could just return here, we're
1250 // going to look at what comes after it to improve error recovery. If an
1251 // impossible token occurs next, we assume that the programmer forgot a ; at
1252 // the end of the declaration and recover that way.
1253 //
1254 // This switch enumerates the valid "follow" set for definition.
John McCallf312b1e2010-08-26 23:41:50 +00001255 if (TUK == Sema::TUK_Definition) {
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001256 bool ExpectedSemi = true;
Chris Lattner4ed5d912010-02-02 01:23:29 +00001257 switch (Tok.getKind()) {
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001258 default: break;
Chris Lattner4ed5d912010-02-02 01:23:29 +00001259 case tok::semi: // struct foo {...} ;
Chris Lattner99c95202010-02-02 17:32:27 +00001260 case tok::star: // struct foo {...} * P;
1261 case tok::amp: // struct foo {...} & R = ...
1262 case tok::identifier: // struct foo {...} V ;
1263 case tok::r_paren: //(struct foo {...} ) {4}
1264 case tok::annot_cxxscope: // struct foo {...} a:: b;
1265 case tok::annot_typename: // struct foo {...} a ::b;
1266 case tok::annot_template_id: // struct foo {...} a<int> ::b;
Chris Lattnerc2e1c1a2010-02-03 20:41:24 +00001267 case tok::l_paren: // struct foo {...} ( x);
Chris Lattner16acfee2010-02-03 01:45:03 +00001268 case tok::comma: // __builtin_offsetof(struct foo{...} ,
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001269 ExpectedSemi = false;
1270 break;
1271 // Type qualifiers
1272 case tok::kw_const: // struct foo {...} const x;
1273 case tok::kw_volatile: // struct foo {...} volatile x;
1274 case tok::kw_restrict: // struct foo {...} restrict x;
1275 case tok::kw_inline: // struct foo {...} inline foo() {};
Chris Lattner99c95202010-02-02 17:32:27 +00001276 // Storage-class specifiers
1277 case tok::kw_static: // struct foo {...} static x;
1278 case tok::kw_extern: // struct foo {...} extern x;
1279 case tok::kw_typedef: // struct foo {...} typedef x;
1280 case tok::kw_register: // struct foo {...} register x;
1281 case tok::kw_auto: // struct foo {...} auto x;
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001282 case tok::kw_mutable: // struct foo {...} mutable x;
1283 case tok::kw_constexpr: // struct foo {...} constexpr x;
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001284 // As shown above, type qualifiers and storage class specifiers absolutely
1285 // can occur after class specifiers according to the grammar. However,
Chris Lattnerfc8f0e12011-04-15 05:22:18 +00001286 // almost no one actually writes code like this. If we see one of these,
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001287 // it is much more likely that someone missed a semi colon and the
1288 // type/storage class specifier we're seeing is part of the *next*
1289 // intended declaration, as in:
1290 //
1291 // struct foo { ... }
1292 // typedef int X;
1293 //
1294 // We'd really like to emit a missing semicolon error instead of emitting
1295 // an error on the 'int' saying that you can't have two type specifiers in
1296 // the same declaration of X. Because of this, we look ahead past this
1297 // token to see if it's a type specifier. If so, we know the code is
1298 // otherwise invalid, so we can produce the expected semi error.
1299 if (!isKnownToBeTypeSpecifier(NextToken()))
1300 ExpectedSemi = false;
Chris Lattner4ed5d912010-02-02 01:23:29 +00001301 break;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001302
1303 case tok::r_brace: // struct bar { struct foo {...} }
Chris Lattner4ed5d912010-02-02 01:23:29 +00001304 // Missing ';' at end of struct is accepted as an extension in C mode.
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001305 if (!getLang().CPlusPlus)
1306 ExpectedSemi = false;
1307 break;
1308 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001309
Richard Smithcf6b0a22011-07-14 21:35:26 +00001310 // C++ [temp]p3 In a template-declaration which defines a class, no
1311 // declarator is permitted.
1312 if (TemplateInfo.Kind)
1313 ExpectedSemi = true;
1314
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001315 if (ExpectedSemi) {
Chris Lattner4ed5d912010-02-02 01:23:29 +00001316 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_tagdecl,
1317 TagType == DeclSpec::TST_class ? "class"
1318 : TagType == DeclSpec::TST_struct? "struct" : "union");
1319 // Push this token back into the preprocessor and change our current token
1320 // to ';' so that the rest of the code recovers as though there were an
1321 // ';' after the definition.
1322 PP.EnterToken(Tok);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001323 Tok.setKind(tok::semi);
Chris Lattner4ed5d912010-02-02 01:23:29 +00001324 }
1325 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001326}
1327
Mike Stump1eb44332009-09-09 15:08:12 +00001328/// ParseBaseClause - Parse the base-clause of a C++ class [C++ class.derived].
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001329///
1330/// base-clause : [C++ class.derived]
1331/// ':' base-specifier-list
1332/// base-specifier-list:
1333/// base-specifier '...'[opt]
1334/// base-specifier-list ',' base-specifier '...'[opt]
John McCalld226f652010-08-21 09:40:31 +00001335void Parser::ParseBaseClause(Decl *ClassDecl) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001336 assert(Tok.is(tok::colon) && "Not a base clause");
1337 ConsumeToken();
1338
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001339 // Build up an array of parsed base specifiers.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001340 SmallVector<CXXBaseSpecifier *, 8> BaseInfo;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001341
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001342 while (true) {
1343 // Parse a base-specifier.
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001344 BaseResult Result = ParseBaseSpecifier(ClassDecl);
Douglas Gregor5ac8aff2009-01-26 22:44:13 +00001345 if (Result.isInvalid()) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001346 // Skip the rest of this base specifier, up until the comma or
1347 // opening brace.
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001348 SkipUntil(tok::comma, tok::l_brace, true, true);
1349 } else {
1350 // Add this to our array of base specifiers.
Douglas Gregor5ac8aff2009-01-26 22:44:13 +00001351 BaseInfo.push_back(Result.get());
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001352 }
1353
1354 // If the next token is a comma, consume it and keep reading
1355 // base-specifiers.
1356 if (Tok.isNot(tok::comma)) break;
Mike Stump1eb44332009-09-09 15:08:12 +00001357
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001358 // Consume the comma.
1359 ConsumeToken();
1360 }
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001361
1362 // Attach the base specifiers
Jay Foadbeaaccd2009-05-21 09:52:38 +00001363 Actions.ActOnBaseSpecifiers(ClassDecl, BaseInfo.data(), BaseInfo.size());
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001364}
1365
1366/// ParseBaseSpecifier - Parse a C++ base-specifier. A base-specifier is
1367/// one entry in the base class list of a class specifier, for example:
1368/// class foo : public bar, virtual private baz {
1369/// 'public bar' and 'virtual private baz' are each base-specifiers.
1370///
1371/// base-specifier: [C++ class.derived]
1372/// ::[opt] nested-name-specifier[opt] class-name
1373/// 'virtual' access-specifier[opt] ::[opt] nested-name-specifier[opt]
1374/// class-name
1375/// access-specifier 'virtual'[opt] ::[opt] nested-name-specifier[opt]
1376/// class-name
John McCalld226f652010-08-21 09:40:31 +00001377Parser::BaseResult Parser::ParseBaseSpecifier(Decl *ClassDecl) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001378 bool IsVirtual = false;
1379 SourceLocation StartLoc = Tok.getLocation();
1380
1381 // Parse the 'virtual' keyword.
1382 if (Tok.is(tok::kw_virtual)) {
1383 ConsumeToken();
1384 IsVirtual = true;
1385 }
1386
1387 // Parse an (optional) access specifier.
1388 AccessSpecifier Access = getAccessSpecifierIfPresent();
John McCall92f88312010-01-23 00:46:32 +00001389 if (Access != AS_none)
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001390 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001391
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001392 // Parse the 'virtual' keyword (again!), in case it came after the
1393 // access specifier.
1394 if (Tok.is(tok::kw_virtual)) {
1395 SourceLocation VirtualLoc = ConsumeToken();
1396 if (IsVirtual) {
1397 // Complain about duplicate 'virtual'
Chris Lattner1ab3b962008-11-18 07:48:38 +00001398 Diag(VirtualLoc, diag::err_dup_virtual)
Douglas Gregor849b2432010-03-31 17:46:05 +00001399 << FixItHint::CreateRemoval(VirtualLoc);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001400 }
1401
1402 IsVirtual = true;
1403 }
1404
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001405 // Parse optional '::' and optional nested-name-specifier.
1406 CXXScopeSpec SS;
John McCallb3d87482010-08-24 05:47:05 +00001407 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), /*EnteringContext=*/false);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001408
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001409 // The location of the base class itself.
1410 SourceLocation BaseLoc = Tok.getLocation();
Douglas Gregor42a552f2008-11-05 20:51:48 +00001411
1412 // Parse the class-name.
Douglas Gregor7f43d672009-02-25 23:52:28 +00001413 SourceLocation EndLocation;
Douglas Gregor059101f2011-03-02 00:47:37 +00001414 TypeResult BaseType = ParseClassName(EndLocation, SS);
Douglas Gregor31a19b62009-04-01 21:51:26 +00001415 if (BaseType.isInvalid())
Douglas Gregor42a552f2008-11-05 20:51:48 +00001416 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001417
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001418 // Parse the optional ellipsis (for a pack expansion). The ellipsis is
1419 // actually part of the base-specifier-list grammar productions, but we
1420 // parse it here for convenience.
1421 SourceLocation EllipsisLoc;
1422 if (Tok.is(tok::ellipsis))
1423 EllipsisLoc = ConsumeToken();
1424
Mike Stump1eb44332009-09-09 15:08:12 +00001425 // Find the complete source range for the base-specifier.
Douglas Gregor7f43d672009-02-25 23:52:28 +00001426 SourceRange Range(StartLoc, EndLocation);
Mike Stump1eb44332009-09-09 15:08:12 +00001427
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001428 // Notify semantic analysis that we have parsed a complete
1429 // base-specifier.
Sebastian Redla55e52c2008-11-25 22:21:31 +00001430 return Actions.ActOnBaseSpecifier(ClassDecl, Range, IsVirtual, Access,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001431 BaseType.get(), BaseLoc, EllipsisLoc);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001432}
1433
1434/// getAccessSpecifierIfPresent - Determine whether the next token is
1435/// a C++ access-specifier.
1436///
1437/// access-specifier: [C++ class.derived]
1438/// 'private'
1439/// 'protected'
1440/// 'public'
Mike Stump1eb44332009-09-09 15:08:12 +00001441AccessSpecifier Parser::getAccessSpecifierIfPresent() const {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001442 switch (Tok.getKind()) {
1443 default: return AS_none;
1444 case tok::kw_private: return AS_private;
1445 case tok::kw_protected: return AS_protected;
1446 case tok::kw_public: return AS_public;
1447 }
1448}
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001449
Eli Friedmand33133c2009-07-22 21:45:50 +00001450void Parser::HandleMemberFunctionDefaultArgs(Declarator& DeclaratorInfo,
John McCalld226f652010-08-21 09:40:31 +00001451 Decl *ThisDecl) {
Eli Friedmand33133c2009-07-22 21:45:50 +00001452 // We just declared a member function. If this member function
1453 // has any default arguments, we'll need to parse them later.
1454 LateParsedMethodDeclaration *LateMethod = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001455 DeclaratorChunk::FunctionTypeInfo &FTI
Abramo Bagnara075f8f12010-12-10 16:29:40 +00001456 = DeclaratorInfo.getFunctionTypeInfo();
Eli Friedmand33133c2009-07-22 21:45:50 +00001457 for (unsigned ParamIdx = 0; ParamIdx < FTI.NumArgs; ++ParamIdx) {
1458 if (LateMethod || FTI.ArgInfo[ParamIdx].DefaultArgTokens) {
1459 if (!LateMethod) {
1460 // Push this method onto the stack of late-parsed method
1461 // declarations.
Douglas Gregord54eb442010-10-12 16:25:54 +00001462 LateMethod = new LateParsedMethodDeclaration(this, ThisDecl);
1463 getCurrentClass().LateParsedDeclarations.push_back(LateMethod);
Douglas Gregor23c94db2010-07-02 17:43:08 +00001464 LateMethod->TemplateScope = getCurScope()->isTemplateParamScope();
Eli Friedmand33133c2009-07-22 21:45:50 +00001465
1466 // Add all of the parameters prior to this one (they don't
1467 // have default arguments).
1468 LateMethod->DefaultArgs.reserve(FTI.NumArgs);
1469 for (unsigned I = 0; I < ParamIdx; ++I)
1470 LateMethod->DefaultArgs.push_back(
Douglas Gregor8f8210c2010-03-02 01:29:43 +00001471 LateParsedDefaultArgument(FTI.ArgInfo[I].Param));
Eli Friedmand33133c2009-07-22 21:45:50 +00001472 }
1473
1474 // Add this parameter to the list of parameters (it or may
1475 // not have a default argument).
1476 LateMethod->DefaultArgs.push_back(
1477 LateParsedDefaultArgument(FTI.ArgInfo[ParamIdx].Param,
1478 FTI.ArgInfo[ParamIdx].DefaultArgTokens));
1479 }
1480 }
1481}
1482
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001483/// isCXX0XVirtSpecifier - Determine whether the next token is a C++0x
1484/// virt-specifier.
1485///
1486/// virt-specifier:
1487/// override
1488/// final
Anders Carlssoncc54d592011-01-22 16:56:46 +00001489VirtSpecifiers::Specifier Parser::isCXX0XVirtSpecifier() const {
Anders Carlssonce93a7c2011-01-22 23:01:49 +00001490 if (!getLang().CPlusPlus)
Anders Carlssoncc54d592011-01-22 16:56:46 +00001491 return VirtSpecifiers::VS_None;
1492
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001493 if (Tok.is(tok::identifier)) {
1494 IdentifierInfo *II = Tok.getIdentifierInfo();
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001495
Anders Carlsson7eeb4ec2011-01-20 03:47:08 +00001496 // Initialize the contextual keywords.
1497 if (!Ident_final) {
1498 Ident_final = &PP.getIdentifierTable().get("final");
1499 Ident_override = &PP.getIdentifierTable().get("override");
1500 }
1501
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001502 if (II == Ident_override)
1503 return VirtSpecifiers::VS_Override;
1504
1505 if (II == Ident_final)
1506 return VirtSpecifiers::VS_Final;
1507 }
1508
1509 return VirtSpecifiers::VS_None;
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001510}
1511
1512/// ParseOptionalCXX0XVirtSpecifierSeq - Parse a virt-specifier-seq.
1513///
1514/// virt-specifier-seq:
1515/// virt-specifier
1516/// virt-specifier-seq virt-specifier
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001517void Parser::ParseOptionalCXX0XVirtSpecifierSeq(VirtSpecifiers &VS) {
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001518 while (true) {
Anders Carlssoncc54d592011-01-22 16:56:46 +00001519 VirtSpecifiers::Specifier Specifier = isCXX0XVirtSpecifier();
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001520 if (Specifier == VirtSpecifiers::VS_None)
1521 return;
1522
1523 // C++ [class.mem]p8:
1524 // A virt-specifier-seq shall contain at most one of each virt-specifier.
Anders Carlssoncc54d592011-01-22 16:56:46 +00001525 const char *PrevSpec = 0;
Anders Carlsson46127a92011-01-22 15:58:16 +00001526 if (VS.SetSpecifier(Specifier, Tok.getLocation(), PrevSpec))
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001527 Diag(Tok.getLocation(), diag::err_duplicate_virt_specifier)
1528 << PrevSpec
1529 << FixItHint::CreateRemoval(Tok.getLocation());
1530
Anders Carlssonce93a7c2011-01-22 23:01:49 +00001531 if (!getLang().CPlusPlus0x)
1532 Diag(Tok.getLocation(), diag::ext_override_control_keyword)
1533 << VirtSpecifiers::getSpecifierName(Specifier);
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001534 ConsumeToken();
1535 }
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001536}
1537
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001538/// isCXX0XFinalKeyword - Determine whether the next token is a C++0x
1539/// contextual 'final' keyword.
1540bool Parser::isCXX0XFinalKeyword() const {
Anders Carlssonce93a7c2011-01-22 23:01:49 +00001541 if (!getLang().CPlusPlus)
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001542 return false;
Anders Carlssoncc54d592011-01-22 16:56:46 +00001543
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001544 if (!Tok.is(tok::identifier))
1545 return false;
Anders Carlssoncc54d592011-01-22 16:56:46 +00001546
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001547 // Initialize the contextual keywords.
1548 if (!Ident_final) {
1549 Ident_final = &PP.getIdentifierTable().get("final");
1550 Ident_override = &PP.getIdentifierTable().get("override");
1551 }
Anders Carlssoncc54d592011-01-22 16:56:46 +00001552
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001553 return Tok.getIdentifierInfo() == Ident_final;
Anders Carlssoncc54d592011-01-22 16:56:46 +00001554}
1555
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001556/// ParseCXXClassMemberDeclaration - Parse a C++ class member declaration.
1557///
1558/// member-declaration:
1559/// decl-specifier-seq[opt] member-declarator-list[opt] ';'
1560/// function-definition ';'[opt]
1561/// ::[opt] nested-name-specifier template[opt] unqualified-id ';'[TODO]
1562/// using-declaration [TODO]
Anders Carlsson511d7ab2009-03-11 16:27:10 +00001563/// [C++0x] static_assert-declaration
Anders Carlsson5aeccdb2009-03-26 00:52:18 +00001564/// template-declaration
Chris Lattnerbc8d5642008-12-18 01:12:00 +00001565/// [GNU] '__extension__' member-declaration
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001566///
1567/// member-declarator-list:
1568/// member-declarator
1569/// member-declarator-list ',' member-declarator
1570///
1571/// member-declarator:
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001572/// declarator virt-specifier-seq[opt] pure-specifier[opt]
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001573/// declarator constant-initializer[opt]
Richard Smith7a614d82011-06-11 17:19:42 +00001574/// [C++11] declarator brace-or-equal-initializer[opt]
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001575/// identifier[opt] ':' constant-expression
1576///
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001577/// virt-specifier-seq:
1578/// virt-specifier
1579/// virt-specifier-seq virt-specifier
1580///
1581/// virt-specifier:
1582/// override
1583/// final
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001584///
Sebastian Redle2b68332009-04-12 17:16:29 +00001585/// pure-specifier:
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001586/// '= 0'
1587///
1588/// constant-initializer:
1589/// '=' constant-expression
1590///
Douglas Gregor37b372b2009-08-20 22:52:58 +00001591void Parser::ParseCXXClassMemberDeclaration(AccessSpecifier AS,
John McCallc9068d72010-07-16 08:13:16 +00001592 const ParsedTemplateInfo &TemplateInfo,
1593 ParsingDeclRAIIObject *TemplateDiags) {
Douglas Gregor8a9013d2011-04-14 17:21:19 +00001594 if (Tok.is(tok::at)) {
1595 if (getLang().ObjC1 && NextToken().isObjCAtKeyword(tok::objc_defs))
1596 Diag(Tok, diag::err_at_defs_cxx);
1597 else
1598 Diag(Tok, diag::err_at_in_class);
1599
1600 ConsumeToken();
1601 SkipUntil(tok::r_brace);
1602 return;
1603 }
1604
John McCall60fa3cf2009-12-11 02:10:03 +00001605 // Access declarations.
1606 if (!TemplateInfo.Kind &&
1607 (Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) &&
John McCall9ba61662010-02-26 08:45:28 +00001608 !TryAnnotateCXXScopeToken() &&
John McCall60fa3cf2009-12-11 02:10:03 +00001609 Tok.is(tok::annot_cxxscope)) {
1610 bool isAccessDecl = false;
1611 if (NextToken().is(tok::identifier))
1612 isAccessDecl = GetLookAheadToken(2).is(tok::semi);
1613 else
1614 isAccessDecl = NextToken().is(tok::kw_operator);
1615
1616 if (isAccessDecl) {
1617 // Collect the scope specifier token we annotated earlier.
1618 CXXScopeSpec SS;
John McCallb3d87482010-08-24 05:47:05 +00001619 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
John McCall60fa3cf2009-12-11 02:10:03 +00001620
1621 // Try to parse an unqualified-id.
1622 UnqualifiedId Name;
John McCallb3d87482010-08-24 05:47:05 +00001623 if (ParseUnqualifiedId(SS, false, true, true, ParsedType(), Name)) {
John McCall60fa3cf2009-12-11 02:10:03 +00001624 SkipUntil(tok::semi);
1625 return;
1626 }
1627
1628 // TODO: recover from mistakenly-qualified operator declarations.
1629 if (ExpectAndConsume(tok::semi,
1630 diag::err_expected_semi_after,
1631 "access declaration",
1632 tok::semi))
1633 return;
1634
Douglas Gregor23c94db2010-07-02 17:43:08 +00001635 Actions.ActOnUsingDeclaration(getCurScope(), AS,
John McCall60fa3cf2009-12-11 02:10:03 +00001636 false, SourceLocation(),
1637 SS, Name,
1638 /* AttrList */ 0,
1639 /* IsTypeName */ false,
1640 SourceLocation());
1641 return;
1642 }
1643 }
1644
Anders Carlsson511d7ab2009-03-11 16:27:10 +00001645 // static_assert-declaration
Peter Collingbournec6eb44b2011-04-15 00:35:57 +00001646 if (Tok.is(tok::kw_static_assert) || Tok.is(tok::kw__Static_assert)) {
Douglas Gregor37b372b2009-08-20 22:52:58 +00001647 // FIXME: Check for templates
Chris Lattner97144fc2009-04-02 04:16:50 +00001648 SourceLocation DeclEnd;
1649 ParseStaticAssertDeclaration(DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +00001650 return;
1651 }
Mike Stump1eb44332009-09-09 15:08:12 +00001652
Chris Lattner682bf922009-03-29 16:50:03 +00001653 if (Tok.is(tok::kw_template)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001654 assert(!TemplateInfo.TemplateParams &&
Douglas Gregor37b372b2009-08-20 22:52:58 +00001655 "Nested template improperly parsed?");
Chris Lattner97144fc2009-04-02 04:16:50 +00001656 SourceLocation DeclEnd;
Mike Stump1eb44332009-09-09 15:08:12 +00001657 ParseDeclarationStartingWithTemplate(Declarator::MemberContext, DeclEnd,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001658 AS);
Chris Lattner682bf922009-03-29 16:50:03 +00001659 return;
1660 }
Anders Carlsson5aeccdb2009-03-26 00:52:18 +00001661
Chris Lattnerbc8d5642008-12-18 01:12:00 +00001662 // Handle: member-declaration ::= '__extension__' member-declaration
1663 if (Tok.is(tok::kw___extension__)) {
1664 // __extension__ silences extension warnings in the subexpression.
1665 ExtensionRAIIObject O(Diags); // Use RAII to do this.
1666 ConsumeToken();
John McCallc9068d72010-07-16 08:13:16 +00001667 return ParseCXXClassMemberDeclaration(AS, TemplateInfo, TemplateDiags);
Chris Lattnerbc8d5642008-12-18 01:12:00 +00001668 }
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001669
Chris Lattner4ed5d912010-02-02 01:23:29 +00001670 // Don't parse FOO:BAR as if it were a typo for FOO::BAR, in this context it
1671 // is a bitfield.
Chris Lattnera1efc8c2009-12-10 01:59:24 +00001672 ColonProtectionRAIIObject X(*this);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001673
John McCall0b7e6782011-03-24 11:26:52 +00001674 ParsedAttributesWithRange attrs(AttrFactory);
Sean Huntbbd37c62009-11-21 08:43:09 +00001675 // Optional C++0x attribute-specifier
John McCall7f040a92010-12-24 02:08:15 +00001676 MaybeParseCXX0XAttributes(attrs);
1677 MaybeParseMicrosoftAttributes(attrs);
Sean Huntbbd37c62009-11-21 08:43:09 +00001678
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001679 if (Tok.is(tok::kw_using)) {
John McCall7f040a92010-12-24 02:08:15 +00001680 ProhibitAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +00001681
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001682 // Eat 'using'.
1683 SourceLocation UsingLoc = ConsumeToken();
1684
1685 if (Tok.is(tok::kw_namespace)) {
1686 Diag(UsingLoc, diag::err_using_namespace_in_class);
1687 SkipUntil(tok::semi, true, true);
Chris Lattnerae50d502010-02-02 00:43:15 +00001688 } else {
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001689 SourceLocation DeclEnd;
Richard Smith3e4c6c42011-05-05 21:57:07 +00001690 // Otherwise, it must be a using-declaration or an alias-declaration.
John McCall78b81052010-11-10 02:40:36 +00001691 ParseUsingDeclaration(Declarator::MemberContext, TemplateInfo,
1692 UsingLoc, DeclEnd, AS);
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001693 }
1694 return;
1695 }
1696
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001697 // decl-specifier-seq:
1698 // Parse the common declaration-specifiers piece.
John McCallc9068d72010-07-16 08:13:16 +00001699 ParsingDeclSpec DS(*this, TemplateDiags);
John McCall7f040a92010-12-24 02:08:15 +00001700 DS.takeAttributesFrom(attrs);
Douglas Gregor37b372b2009-08-20 22:52:58 +00001701 ParseDeclarationSpecifiers(DS, TemplateInfo, AS, DSC_class);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001702
John McCallf312b1e2010-08-26 23:41:50 +00001703 MultiTemplateParamsArg TemplateParams(Actions,
John McCalldd4a3b02009-09-16 22:47:08 +00001704 TemplateInfo.TemplateParams? TemplateInfo.TemplateParams->data() : 0,
1705 TemplateInfo.TemplateParams? TemplateInfo.TemplateParams->size() : 0);
1706
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001707 if (Tok.is(tok::semi)) {
1708 ConsumeToken();
John McCalld226f652010-08-21 09:40:31 +00001709 Decl *TheDecl =
Chandler Carruth0f4be742011-05-03 18:35:10 +00001710 Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS, DS, TemplateParams);
John McCallc9068d72010-07-16 08:13:16 +00001711 DS.complete(TheDecl);
John McCall67d1a672009-08-06 02:15:43 +00001712 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001713 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001714
John McCall54abf7d2009-11-04 02:18:39 +00001715 ParsingDeclarator DeclaratorInfo(*this, DS, Declarator::MemberContext);
Nico Weber48673472011-01-28 06:07:34 +00001716 VirtSpecifiers VS;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001717
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001718 // Hold late-parsed attributes so we can attach a Decl to them later.
1719 LateParsedAttrList LateParsedAttrs;
1720
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001721 if (Tok.isNot(tok::colon)) {
Chris Lattnera1efc8c2009-12-10 01:59:24 +00001722 // Don't parse FOO:BAR as if it were a typo for FOO::BAR.
1723 ColonProtectionRAIIObject X(*this);
1724
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001725 // Parse the first declarator.
1726 ParseDeclarator(DeclaratorInfo);
1727 // Error parsing the declarator?
Douglas Gregor10bd3682008-11-17 22:58:34 +00001728 if (!DeclaratorInfo.hasName()) {
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001729 // If so, skip until the semi-colon or a }.
Sebastian Redld941fa42011-04-24 16:27:48 +00001730 SkipUntil(tok::r_brace, true, true);
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001731 if (Tok.is(tok::semi))
1732 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001733 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001734 }
1735
Nico Weber48673472011-01-28 06:07:34 +00001736 ParseOptionalCXX0XVirtSpecifierSeq(VS);
1737
John Thompson1b2fc0f2009-11-25 22:58:06 +00001738 // If attributes exist after the declarator, but before an '{', parse them.
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001739 MaybeParseGNUAttributes(DeclaratorInfo, &LateParsedAttrs);
John Thompson1b2fc0f2009-11-25 22:58:06 +00001740
Francois Pichet6a247472011-05-11 02:14:46 +00001741 // MSVC permits pure specifier on inline functions declared at class scope.
1742 // Hence check for =0 before checking for function definition.
Douglas Gregor147545d2011-10-10 14:49:18 +00001743 ExprResult Init;
Francois Pichet62ec1f22011-09-17 17:15:52 +00001744 if (getLang().MicrosoftExt && Tok.is(tok::equal) &&
Francois Pichet6a247472011-05-11 02:14:46 +00001745 DeclaratorInfo.isFunctionDeclarator() &&
1746 NextToken().is(tok::numeric_constant)) {
1747 ConsumeToken();
1748 Init = ParseInitializer();
1749 if (Init.isInvalid())
1750 SkipUntil(tok::comma, true, true);
1751 }
1752
Sean Hunte4246a62011-05-12 06:15:49 +00001753 bool IsDefinition = false;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001754 // function-definition:
Richard Smith7a614d82011-06-11 17:19:42 +00001755 //
1756 // In C++11, a non-function declarator followed by an open brace is a
1757 // braced-init-list for an in-class member initialization, not an
1758 // erroneous function definition.
1759 if (Tok.is(tok::l_brace) && !getLang().CPlusPlus0x) {
Sean Hunte4246a62011-05-12 06:15:49 +00001760 IsDefinition = true;
1761 } else if (DeclaratorInfo.isFunctionDeclarator()) {
Richard Smith7a614d82011-06-11 17:19:42 +00001762 if (Tok.is(tok::l_brace) || Tok.is(tok::colon) || Tok.is(tok::kw_try)) {
Sean Hunte4246a62011-05-12 06:15:49 +00001763 IsDefinition = true;
1764 } else if (Tok.is(tok::equal)) {
1765 const Token &KW = NextToken();
1766 if (KW.is(tok::kw_default) || KW.is(tok::kw_delete))
1767 IsDefinition = true;
1768 }
1769 }
1770
1771 if (IsDefinition) {
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001772 if (!DeclaratorInfo.isFunctionDeclarator()) {
1773 Diag(Tok, diag::err_func_def_no_params);
1774 ConsumeBrace();
1775 SkipUntil(tok::r_brace, true);
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001776
1777 // Consume the optional ';'
1778 if (Tok.is(tok::semi))
1779 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001780 return;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001781 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001782
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001783 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
1784 Diag(Tok, diag::err_function_declared_typedef);
1785 // This recovery skips the entire function body. It would be nice
1786 // to simply call ParseCXXInlineMethodDef() below, however Sema
1787 // assumes the declarator represents a function, not a typedef.
1788 ConsumeBrace();
1789 SkipUntil(tok::r_brace, true);
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001790
1791 // Consume the optional ';'
1792 if (Tok.is(tok::semi))
1793 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001794 return;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001795 }
1796
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001797 Decl *FunDecl =
1798 ParseCXXInlineMethodDef(AS, DeclaratorInfo, TemplateInfo, VS, Init);
1799
1800 for (unsigned i = 0, ni = LateParsedAttrs.size(); i < ni; ++i) {
1801 LateParsedAttrs[i]->setDecl(FunDecl);
1802 }
1803 LateParsedAttrs.clear();
Sean Hunte4246a62011-05-12 06:15:49 +00001804
1805 // Consume the ';' - it's optional unless we have a delete or default
1806 if (Tok.is(tok::semi)) {
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001807 ConsumeToken();
Sean Hunte4246a62011-05-12 06:15:49 +00001808 }
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001809
Chris Lattner682bf922009-03-29 16:50:03 +00001810 return;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001811 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001812 }
1813
1814 // member-declarator-list:
1815 // member-declarator
1816 // member-declarator-list ',' member-declarator
1817
Chris Lattner5f9e2722011-07-23 10:55:15 +00001818 SmallVector<Decl *, 8> DeclsInGroup;
John McCall60d7b3a2010-08-24 06:29:42 +00001819 ExprResult BitfieldSize;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001820
1821 while (1) {
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001822 // member-declarator:
1823 // declarator pure-specifier[opt]
Richard Smith7a614d82011-06-11 17:19:42 +00001824 // declarator brace-or-equal-initializer[opt]
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001825 // identifier[opt] ':' constant-expression
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001826 if (Tok.is(tok::colon)) {
1827 ConsumeToken();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001828 BitfieldSize = ParseConstantExpression();
1829 if (BitfieldSize.isInvalid())
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001830 SkipUntil(tok::comma, true, true);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001831 }
Mike Stump1eb44332009-09-09 15:08:12 +00001832
Chris Lattnere6563252010-06-13 05:34:18 +00001833 // If a simple-asm-expr is present, parse it.
1834 if (Tok.is(tok::kw_asm)) {
1835 SourceLocation Loc;
John McCall60d7b3a2010-08-24 06:29:42 +00001836 ExprResult AsmLabel(ParseSimpleAsm(&Loc));
Chris Lattnere6563252010-06-13 05:34:18 +00001837 if (AsmLabel.isInvalid())
1838 SkipUntil(tok::comma, true, true);
1839
1840 DeclaratorInfo.setAsmLabel(AsmLabel.release());
1841 DeclaratorInfo.SetRangeEnd(Loc);
1842 }
1843
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001844 // If attributes exist after the declarator, parse them.
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001845 MaybeParseGNUAttributes(DeclaratorInfo, &LateParsedAttrs);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001846
Richard Smith7a614d82011-06-11 17:19:42 +00001847 // FIXME: When g++ adds support for this, we'll need to check whether it
1848 // goes before or after the GNU attributes and __asm__.
1849 ParseOptionalCXX0XVirtSpecifierSeq(VS);
1850
Douglas Gregor147545d2011-10-10 14:49:18 +00001851 bool HasInitializer = false;
Richard Smith7a614d82011-06-11 17:19:42 +00001852 bool HasDeferredInitializer = false;
1853 if (Tok.is(tok::equal) || Tok.is(tok::l_brace)) {
1854 if (BitfieldSize.get()) {
1855 Diag(Tok, diag::err_bitfield_member_init);
1856 SkipUntil(tok::comma, true, true);
1857 } else {
Douglas Gregor147545d2011-10-10 14:49:18 +00001858 HasInitializer = true;
Douglas Gregor555f57e2011-06-25 00:56:27 +00001859 HasDeferredInitializer = !DeclaratorInfo.isDeclarationOfFunction() &&
Richard Smith7a614d82011-06-11 17:19:42 +00001860 DeclaratorInfo.getDeclSpec().getStorageClassSpec()
Richard Smithc2cdd532011-06-12 11:43:46 +00001861 != DeclSpec::SCS_static &&
1862 DeclaratorInfo.getDeclSpec().getStorageClassSpec()
1863 != DeclSpec::SCS_typedef;
Richard Smith7a614d82011-06-11 17:19:42 +00001864 }
1865 }
1866
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001867 // NOTE: If Sema is the Action module and declarator is an instance field,
Chris Lattner682bf922009-03-29 16:50:03 +00001868 // this call will *not* return the created decl; It will return null.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001869 // See Sema::ActOnCXXMemberDeclarator for details.
John McCall67d1a672009-08-06 02:15:43 +00001870
John McCalld226f652010-08-21 09:40:31 +00001871 Decl *ThisDecl = 0;
John McCall67d1a672009-08-06 02:15:43 +00001872 if (DS.isFriendSpecified()) {
John McCallbbbcdd92009-09-11 21:02:39 +00001873 // TODO: handle initializers, bitfields, 'delete'
Douglas Gregor23c94db2010-07-02 17:43:08 +00001874 ThisDecl = Actions.ActOnFriendFunctionDecl(getCurScope(), DeclaratorInfo,
John McCallbbbcdd92009-09-11 21:02:39 +00001875 /*IsDefinition*/ false,
1876 move(TemplateParams));
Douglas Gregor37b372b2009-08-20 22:52:58 +00001877 } else {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001878 ThisDecl = Actions.ActOnCXXMemberDeclarator(getCurScope(), AS,
John McCall67d1a672009-08-06 02:15:43 +00001879 DeclaratorInfo,
Douglas Gregor37b372b2009-08-20 22:52:58 +00001880 move(TemplateParams),
John McCall67d1a672009-08-06 02:15:43 +00001881 BitfieldSize.release(),
Douglas Gregor147545d2011-10-10 14:49:18 +00001882 VS, HasDeferredInitializer,
Richard Smith7a614d82011-06-11 17:19:42 +00001883 /*IsDefinition*/ false);
Douglas Gregor37b372b2009-08-20 22:52:58 +00001884 }
Douglas Gregor147545d2011-10-10 14:49:18 +00001885
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001886 // Set the Decl for any late parsed attributes
1887 for (unsigned i = 0, ni = LateParsedAttrs.size(); i < ni; ++i) {
1888 LateParsedAttrs[i]->setDecl(ThisDecl);
1889 }
1890 LateParsedAttrs.clear();
1891
Douglas Gregor147545d2011-10-10 14:49:18 +00001892 // Handle the initializer.
Richard Smith7a614d82011-06-11 17:19:42 +00001893 if (HasDeferredInitializer) {
Douglas Gregor147545d2011-10-10 14:49:18 +00001894 // The initializer was deferred; parse it and cache the tokens.
Richard Smith7a614d82011-06-11 17:19:42 +00001895 if (!getLang().CPlusPlus0x)
1896 Diag(Tok, diag::warn_nonstatic_member_init_accepted_as_extension);
Douglas Gregor147545d2011-10-10 14:49:18 +00001897
Richard Smith7a614d82011-06-11 17:19:42 +00001898 if (DeclaratorInfo.isArrayOfUnknownBound()) {
1899 // C++0x [dcl.array]p3: An array bound may also be omitted when the
1900 // declarator is followed by an initializer.
1901 //
1902 // A brace-or-equal-initializer for a member-declarator is not an
1903 // initializer in the gramamr, so this is ill-formed.
1904 Diag(Tok, diag::err_incomplete_array_member_init);
1905 SkipUntil(tok::comma, true, true);
1906 // Avoid later warnings about a class member of incomplete type.
1907 ThisDecl->setInvalidDecl();
1908 } else
1909 ParseCXXNonStaticMemberInitializer(ThisDecl);
Douglas Gregor147545d2011-10-10 14:49:18 +00001910 } else if (HasInitializer) {
1911 // Normal initializer.
1912 SourceLocation EqualLoc;
1913 ExprResult Init
1914 = ParseCXXMemberInitializer(DeclaratorInfo.isDeclarationOfFunction(),
1915 EqualLoc);
1916 if (Init.isInvalid())
1917 SkipUntil(tok::comma, true, true);
1918 else if (ThisDecl)
1919 Actions.AddInitializerToDecl(ThisDecl, Init.get(), false,
1920 DS.getTypeSpecType() == DeclSpec::TST_auto);
1921 } else if (ThisDecl && DS.getStorageClassSpec() == DeclSpec::SCS_static) {
1922 // No initializer.
1923 Actions.ActOnUninitializedDecl(ThisDecl,
1924 DS.getTypeSpecType() == DeclSpec::TST_auto);
Richard Smith7a614d82011-06-11 17:19:42 +00001925 }
Douglas Gregor147545d2011-10-10 14:49:18 +00001926
1927 if (ThisDecl) {
1928 Actions.FinalizeDeclaration(ThisDecl);
1929 DeclsInGroup.push_back(ThisDecl);
1930 }
1931
1932 if (DeclaratorInfo.isFunctionDeclarator() &&
1933 DeclaratorInfo.getDeclSpec().getStorageClassSpec()
1934 != DeclSpec::SCS_typedef) {
1935 HandleMemberFunctionDefaultArgs(DeclaratorInfo, ThisDecl);
1936 }
1937
1938 DeclaratorInfo.complete(ThisDecl);
Richard Smith7a614d82011-06-11 17:19:42 +00001939
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001940 // If we don't have a comma, it is either the end of the list (a ';')
1941 // or an error, bail out.
1942 if (Tok.isNot(tok::comma))
1943 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001944
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001945 // Consume the comma.
1946 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001947
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001948 // Parse the next declarator.
1949 DeclaratorInfo.clear();
Nico Weber48673472011-01-28 06:07:34 +00001950 VS.clear();
Douglas Gregor147545d2011-10-10 14:49:18 +00001951 BitfieldSize = true;
Mike Stump1eb44332009-09-09 15:08:12 +00001952
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001953 // Attributes are only allowed on the second declarator.
John McCall7f040a92010-12-24 02:08:15 +00001954 MaybeParseGNUAttributes(DeclaratorInfo);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001955
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001956 if (Tok.isNot(tok::colon))
1957 ParseDeclarator(DeclaratorInfo);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001958 }
1959
Chris Lattnerae50d502010-02-02 00:43:15 +00001960 if (ExpectAndConsume(tok::semi, diag::err_expected_semi_decl_list)) {
1961 // Skip to end of block or statement.
1962 SkipUntil(tok::r_brace, true, true);
1963 // If we stopped at a ';', eat it.
1964 if (Tok.is(tok::semi)) ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001965 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001966 }
1967
Douglas Gregor23c94db2010-07-02 17:43:08 +00001968 Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup.data(),
Chris Lattnerae50d502010-02-02 00:43:15 +00001969 DeclsInGroup.size());
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001970}
1971
Richard Smith7a614d82011-06-11 17:19:42 +00001972/// ParseCXXMemberInitializer - Parse the brace-or-equal-initializer or
1973/// pure-specifier. Also detect and reject any attempted defaulted/deleted
1974/// function definition. The location of the '=', if any, will be placed in
1975/// EqualLoc.
1976///
1977/// pure-specifier:
1978/// '= 0'
1979///
1980/// brace-or-equal-initializer:
1981/// '=' initializer-expression
1982/// braced-init-list [TODO]
1983///
1984/// initializer-clause:
1985/// assignment-expression
1986/// braced-init-list [TODO]
1987///
1988/// defaulted/deleted function-definition:
1989/// '=' 'default'
1990/// '=' 'delete'
1991///
1992/// Prior to C++0x, the assignment-expression in an initializer-clause must
1993/// be a constant-expression.
1994ExprResult Parser::ParseCXXMemberInitializer(bool IsFunction,
1995 SourceLocation &EqualLoc) {
1996 assert((Tok.is(tok::equal) || Tok.is(tok::l_brace))
1997 && "Data member initializer not starting with '=' or '{'");
1998
1999 if (Tok.is(tok::equal)) {
2000 EqualLoc = ConsumeToken();
2001 if (Tok.is(tok::kw_delete)) {
2002 // In principle, an initializer of '= delete p;' is legal, but it will
2003 // never type-check. It's better to diagnose it as an ill-formed expression
2004 // than as an ill-formed deleted non-function member.
2005 // An initializer of '= delete p, foo' will never be parsed, because
2006 // a top-level comma always ends the initializer expression.
2007 const Token &Next = NextToken();
2008 if (IsFunction || Next.is(tok::semi) || Next.is(tok::comma) ||
2009 Next.is(tok::eof)) {
2010 if (IsFunction)
2011 Diag(ConsumeToken(), diag::err_default_delete_in_multiple_declaration)
2012 << 1 /* delete */;
2013 else
2014 Diag(ConsumeToken(), diag::err_deleted_non_function);
2015 return ExprResult();
2016 }
2017 } else if (Tok.is(tok::kw_default)) {
Richard Smith7a614d82011-06-11 17:19:42 +00002018 if (IsFunction)
2019 Diag(Tok, diag::err_default_delete_in_multiple_declaration)
2020 << 0 /* default */;
2021 else
2022 Diag(ConsumeToken(), diag::err_default_special_members);
2023 return ExprResult();
2024 }
2025
2026 return ParseInitializer();
2027 } else
2028 return ExprError(Diag(Tok, diag::err_generalized_initializer_lists));
2029}
2030
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002031/// ParseCXXMemberSpecification - Parse the class definition.
2032///
2033/// member-specification:
2034/// member-declaration member-specification[opt]
2035/// access-specifier ':' member-specification[opt]
2036///
2037void Parser::ParseCXXMemberSpecification(SourceLocation RecordLoc,
John McCalld226f652010-08-21 09:40:31 +00002038 unsigned TagType, Decl *TagDecl) {
Sanjiv Gupta31fc07d2008-10-31 09:52:39 +00002039 assert((TagType == DeclSpec::TST_struct ||
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002040 TagType == DeclSpec::TST_union ||
Sanjiv Gupta31fc07d2008-10-31 09:52:39 +00002041 TagType == DeclSpec::TST_class) && "Invalid TagType!");
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002042
John McCallf312b1e2010-08-26 23:41:50 +00002043 PrettyDeclStackTraceEntry CrashInfo(Actions, TagDecl, RecordLoc,
2044 "parsing struct/union/class body");
Mike Stump1eb44332009-09-09 15:08:12 +00002045
Douglas Gregor26997fd2010-01-16 20:52:59 +00002046 // Determine whether this is a non-nested class. Note that local
2047 // classes are *not* considered to be nested classes.
2048 bool NonNestedClass = true;
2049 if (!ClassStack.empty()) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00002050 for (const Scope *S = getCurScope(); S; S = S->getParent()) {
Douglas Gregor26997fd2010-01-16 20:52:59 +00002051 if (S->isClassScope()) {
2052 // We're inside a class scope, so this is a nested class.
2053 NonNestedClass = false;
2054 break;
2055 }
2056
2057 if ((S->getFlags() & Scope::FnScope)) {
2058 // If we're in a function or function template declared in the
2059 // body of a class, then this is a local class rather than a
2060 // nested class.
2061 const Scope *Parent = S->getParent();
2062 if (Parent->isTemplateParamScope())
2063 Parent = Parent->getParent();
2064 if (Parent->isClassScope())
2065 break;
2066 }
2067 }
2068 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002069
2070 // Enter a scope for the class.
Douglas Gregor3218c4b2009-01-09 22:42:13 +00002071 ParseScope ClassScope(this, Scope::ClassScope|Scope::DeclScope);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002072
Douglas Gregor6569d682009-05-27 23:11:45 +00002073 // Note that we are parsing a new (potentially-nested) class definition.
Douglas Gregor26997fd2010-01-16 20:52:59 +00002074 ParsingClassDefinition ParsingDef(*this, TagDecl, NonNestedClass);
Douglas Gregor6569d682009-05-27 23:11:45 +00002075
Douglas Gregorddc29e12009-02-06 22:42:48 +00002076 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002077 Actions.ActOnTagStartDefinition(getCurScope(), TagDecl);
John McCallbd0dfa52009-12-19 21:48:58 +00002078
Anders Carlssonb184a182011-03-25 14:46:08 +00002079 SourceLocation FinalLoc;
2080
2081 // Parse the optional 'final' keyword.
2082 if (getLang().CPlusPlus && Tok.is(tok::identifier)) {
2083 IdentifierInfo *II = Tok.getIdentifierInfo();
2084
2085 // Initialize the contextual keywords.
2086 if (!Ident_final) {
2087 Ident_final = &PP.getIdentifierTable().get("final");
2088 Ident_override = &PP.getIdentifierTable().get("override");
2089 }
2090
2091 if (II == Ident_final)
2092 FinalLoc = ConsumeToken();
2093
2094 if (!getLang().CPlusPlus0x)
2095 Diag(FinalLoc, diag::ext_override_control_keyword) << "final";
2096 }
Anders Carlssoncc54d592011-01-22 16:56:46 +00002097
John McCallbd0dfa52009-12-19 21:48:58 +00002098 if (Tok.is(tok::colon)) {
2099 ParseBaseClause(TagDecl);
2100
2101 if (!Tok.is(tok::l_brace)) {
2102 Diag(Tok, diag::err_expected_lbrace_after_base_specifiers);
John McCalldb7bb4a2010-03-17 00:38:33 +00002103
2104 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002105 Actions.ActOnTagDefinitionError(getCurScope(), TagDecl);
John McCallbd0dfa52009-12-19 21:48:58 +00002106 return;
2107 }
2108 }
2109
2110 assert(Tok.is(tok::l_brace));
2111
2112 SourceLocation LBraceLoc = ConsumeBrace();
2113
John McCall42a4f662010-05-28 08:11:17 +00002114 if (TagDecl)
Anders Carlsson2c3ee542011-03-25 14:31:08 +00002115 Actions.ActOnStartCXXMemberDeclarations(getCurScope(), TagDecl, FinalLoc,
Anders Carlssondfc2f102011-01-22 17:51:53 +00002116 LBraceLoc);
John McCallf9368152009-12-20 07:58:13 +00002117
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002118 // C++ 11p3: Members of a class defined with the keyword class are private
2119 // by default. Members of a class defined with the keywords struct or union
2120 // are public by default.
2121 AccessSpecifier CurAS;
2122 if (TagType == DeclSpec::TST_class)
2123 CurAS = AS_private;
2124 else
2125 CurAS = AS_public;
2126
Douglas Gregor07976d22010-06-21 22:31:09 +00002127 SourceLocation RBraceLoc;
2128 if (TagDecl) {
2129 // While we still have something to read, read the member-declarations.
2130 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
2131 // Each iteration of this loop reads one member-declaration.
Mike Stump1eb44332009-09-09 15:08:12 +00002132
Francois Pichet62ec1f22011-09-17 17:15:52 +00002133 if (getLang().MicrosoftExt && (Tok.is(tok::kw___if_exists) ||
Francois Pichet563a6452011-05-25 10:19:49 +00002134 Tok.is(tok::kw___if_not_exists))) {
2135 ParseMicrosoftIfExistsClassDeclaration((DeclSpec::TST)TagType, CurAS);
2136 continue;
2137 }
2138
Douglas Gregor07976d22010-06-21 22:31:09 +00002139 // Check for extraneous top-level semicolon.
2140 if (Tok.is(tok::semi)) {
2141 Diag(Tok, diag::ext_extra_struct_semi)
2142 << DeclSpec::getSpecifierName((DeclSpec::TST)TagType)
2143 << FixItHint::CreateRemoval(Tok.getLocation());
2144 ConsumeToken();
2145 continue;
2146 }
2147
2148 AccessSpecifier AS = getAccessSpecifierIfPresent();
2149 if (AS != AS_none) {
2150 // Current token is a C++ access specifier.
2151 CurAS = AS;
2152 SourceLocation ASLoc = Tok.getLocation();
2153 ConsumeToken();
2154 if (Tok.is(tok::colon))
2155 Actions.ActOnAccessSpecifier(AS, ASLoc, Tok.getLocation());
2156 else
2157 Diag(Tok, diag::err_expected_colon);
2158 ConsumeToken();
2159 continue;
2160 }
2161
2162 // FIXME: Make sure we don't have a template here.
2163
2164 // Parse all the comma separated declarators.
2165 ParseCXXClassMemberDeclaration(CurAS);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002166 }
2167
Douglas Gregor07976d22010-06-21 22:31:09 +00002168 RBraceLoc = MatchRHSPunctuation(tok::r_brace, LBraceLoc);
2169 } else {
2170 SkipUntil(tok::r_brace, false, false);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002171 }
Mike Stump1eb44332009-09-09 15:08:12 +00002172
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002173 // If attributes exist after class contents, parse them.
John McCall0b7e6782011-03-24 11:26:52 +00002174 ParsedAttributes attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +00002175 MaybeParseGNUAttributes(attrs);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002176
John McCall42a4f662010-05-28 08:11:17 +00002177 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002178 Actions.ActOnFinishCXXMemberSpecification(getCurScope(), RecordLoc, TagDecl,
John McCall42a4f662010-05-28 08:11:17 +00002179 LBraceLoc, RBraceLoc,
John McCall7f040a92010-12-24 02:08:15 +00002180 attrs.getList());
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002181
Richard Smith7a614d82011-06-11 17:19:42 +00002182 // C++0x [class.mem]p2: Within the class member-specification, the class is
2183 // regarded as complete within function bodies, default arguments, exception-
2184 // specifications, and brace-or-equal-initializers for non-static data
2185 // members (including such things in nested classes).
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002186 //
Richard Smith7a614d82011-06-11 17:19:42 +00002187 // FIXME: Only function bodies and brace-or-equal-initializers are currently
2188 // handled. Fix the others!
Douglas Gregor07976d22010-06-21 22:31:09 +00002189 if (TagDecl && NonNestedClass) {
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002190 // We are not inside a nested class. This class and its nested classes
Douglas Gregor72b505b2008-12-16 21:30:33 +00002191 // are complete and we can parse the delayed portions of method
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00002192 // declarations and the lexed inline method definitions, along with any
2193 // delayed attributes.
Douglas Gregore0cc0472010-06-16 23:45:56 +00002194 SourceLocation SavedPrevTokLocation = PrevTokLocation;
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00002195 ParseLexedAttributes(getCurrentClass());
Douglas Gregor6569d682009-05-27 23:11:45 +00002196 ParseLexedMethodDeclarations(getCurrentClass());
Richard Smith7a614d82011-06-11 17:19:42 +00002197 ParseLexedMemberInitializers(getCurrentClass());
Douglas Gregor6569d682009-05-27 23:11:45 +00002198 ParseLexedMethodDefs(getCurrentClass());
Douglas Gregore0cc0472010-06-16 23:45:56 +00002199 PrevTokLocation = SavedPrevTokLocation;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002200 }
2201
John McCall42a4f662010-05-28 08:11:17 +00002202 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002203 Actions.ActOnTagFinishDefinition(getCurScope(), TagDecl, RBraceLoc);
John McCalldb7bb4a2010-03-17 00:38:33 +00002204
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002205 // Leave the class scope.
Douglas Gregor6569d682009-05-27 23:11:45 +00002206 ParsingDef.Pop();
Douglas Gregor8935b8b2008-12-10 06:34:36 +00002207 ClassScope.Exit();
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002208}
Douglas Gregor7ad83902008-11-05 04:29:56 +00002209
2210/// ParseConstructorInitializer - Parse a C++ constructor initializer,
2211/// which explicitly initializes the members or base classes of a
2212/// class (C++ [class.base.init]). For example, the three initializers
2213/// after the ':' in the Derived constructor below:
2214///
2215/// @code
2216/// class Base { };
2217/// class Derived : Base {
2218/// int x;
2219/// float f;
2220/// public:
2221/// Derived(float f) : Base(), x(17), f(f) { }
2222/// };
2223/// @endcode
2224///
Mike Stump1eb44332009-09-09 15:08:12 +00002225/// [C++] ctor-initializer:
2226/// ':' mem-initializer-list
Douglas Gregor7ad83902008-11-05 04:29:56 +00002227///
Mike Stump1eb44332009-09-09 15:08:12 +00002228/// [C++] mem-initializer-list:
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002229/// mem-initializer ...[opt]
2230/// mem-initializer ...[opt] , mem-initializer-list
John McCalld226f652010-08-21 09:40:31 +00002231void Parser::ParseConstructorInitializer(Decl *ConstructorDecl) {
Douglas Gregor7ad83902008-11-05 04:29:56 +00002232 assert(Tok.is(tok::colon) && "Constructor initializer always starts with ':'");
2233
John Wiegley28bbe4b2011-04-28 01:08:34 +00002234 // Poison the SEH identifiers so they are flagged as illegal in constructor initializers
2235 PoisonSEHIdentifiersRAIIObject PoisonSEHIdentifiers(*this, true);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002236 SourceLocation ColonLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00002237
Chris Lattner5f9e2722011-07-23 10:55:15 +00002238 SmallVector<CXXCtorInitializer*, 4> MemInitializers;
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002239 bool AnyErrors = false;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002240
Douglas Gregor7ad83902008-11-05 04:29:56 +00002241 do {
Douglas Gregor0133f522010-08-28 00:00:50 +00002242 if (Tok.is(tok::code_completion)) {
2243 Actions.CodeCompleteConstructorInitializer(ConstructorDecl,
2244 MemInitializers.data(),
2245 MemInitializers.size());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002246 return cutOffParsing();
Douglas Gregor0133f522010-08-28 00:00:50 +00002247 } else {
2248 MemInitResult MemInit = ParseMemInitializer(ConstructorDecl);
2249 if (!MemInit.isInvalid())
2250 MemInitializers.push_back(MemInit.get());
2251 else
2252 AnyErrors = true;
2253 }
2254
Douglas Gregor7ad83902008-11-05 04:29:56 +00002255 if (Tok.is(tok::comma))
2256 ConsumeToken();
2257 else if (Tok.is(tok::l_brace))
2258 break;
Douglas Gregorb1f6fa42010-09-07 14:35:10 +00002259 // If the next token looks like a base or member initializer, assume that
2260 // we're just missing a comma.
Douglas Gregor751f6922010-09-07 14:51:08 +00002261 else if (Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) {
2262 SourceLocation Loc = PP.getLocForEndOfToken(PrevTokLocation);
2263 Diag(Loc, diag::err_ctor_init_missing_comma)
2264 << FixItHint::CreateInsertion(Loc, ", ");
2265 } else {
Douglas Gregor7ad83902008-11-05 04:29:56 +00002266 // Skip over garbage, until we get to '{'. Don't eat the '{'.
Sebastian Redld3a413d2009-04-26 20:35:05 +00002267 Diag(Tok.getLocation(), diag::err_expected_lbrace_or_comma);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002268 SkipUntil(tok::l_brace, true, true);
2269 break;
2270 }
2271 } while (true);
2272
Mike Stump1eb44332009-09-09 15:08:12 +00002273 Actions.ActOnMemInitializers(ConstructorDecl, ColonLoc,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002274 MemInitializers.data(), MemInitializers.size(),
2275 AnyErrors);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002276}
2277
2278/// ParseMemInitializer - Parse a C++ member initializer, which is
2279/// part of a constructor initializer that explicitly initializes one
2280/// member or base class (C++ [class.base.init]). See
2281/// ParseConstructorInitializer for an example.
2282///
2283/// [C++] mem-initializer:
2284/// mem-initializer-id '(' expression-list[opt] ')'
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002285/// [C++0x] mem-initializer-id braced-init-list
Mike Stump1eb44332009-09-09 15:08:12 +00002286///
Douglas Gregor7ad83902008-11-05 04:29:56 +00002287/// [C++] mem-initializer-id:
2288/// '::'[opt] nested-name-specifier[opt] class-name
2289/// identifier
John McCalld226f652010-08-21 09:40:31 +00002290Parser::MemInitResult Parser::ParseMemInitializer(Decl *ConstructorDecl) {
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00002291 // parse '::'[opt] nested-name-specifier[opt]
2292 CXXScopeSpec SS;
John McCallb3d87482010-08-24 05:47:05 +00002293 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
2294 ParsedType TemplateTypeTy;
Fariborz Jahanian96174332009-07-01 19:21:19 +00002295 if (Tok.is(tok::annot_template_id)) {
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +00002296 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregord9b600c2010-01-12 17:52:59 +00002297 if (TemplateId->Kind == TNK_Type_template ||
2298 TemplateId->Kind == TNK_Dependent_template_name) {
Douglas Gregor059101f2011-03-02 00:47:37 +00002299 AnnotateTemplateIdTokenAsType();
Fariborz Jahanian96174332009-07-01 19:21:19 +00002300 assert(Tok.is(tok::annot_typename) && "template-id -> type failed");
John McCallb3d87482010-08-24 05:47:05 +00002301 TemplateTypeTy = getTypeAnnotation(Tok);
Fariborz Jahanian96174332009-07-01 19:21:19 +00002302 }
Fariborz Jahanian96174332009-07-01 19:21:19 +00002303 }
2304 if (!TemplateTypeTy && Tok.isNot(tok::identifier)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00002305 Diag(Tok, diag::err_expected_member_or_base_name);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002306 return true;
2307 }
Mike Stump1eb44332009-09-09 15:08:12 +00002308
Douglas Gregor7ad83902008-11-05 04:29:56 +00002309 // Get the identifier. This may be a member name or a class name,
2310 // but we'll let the semantic analysis determine which it is.
Fariborz Jahanian96174332009-07-01 19:21:19 +00002311 IdentifierInfo *II = Tok.is(tok::identifier) ? Tok.getIdentifierInfo() : 0;
Douglas Gregor7ad83902008-11-05 04:29:56 +00002312 SourceLocation IdLoc = ConsumeToken();
2313
2314 // Parse the '('.
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002315 if (getLang().CPlusPlus0x && Tok.is(tok::l_brace)) {
Sebastian Redl6df65482011-09-24 17:48:25 +00002316 ExprResult InitList = ParseBraceInitializer();
2317 if (InitList.isInvalid())
2318 return true;
2319
2320 SourceLocation EllipsisLoc;
2321 if (Tok.is(tok::ellipsis))
2322 EllipsisLoc = ConsumeToken();
2323
2324 return Actions.ActOnMemInitializer(ConstructorDecl, getCurScope(), SS, II,
2325 TemplateTypeTy, IdLoc, InitList.take(),
2326 EllipsisLoc);
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002327 } else if(Tok.is(tok::l_paren)) {
2328 SourceLocation LParenLoc = ConsumeParen();
Douglas Gregor7ad83902008-11-05 04:29:56 +00002329
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002330 // Parse the optional expression-list.
2331 ExprVector ArgExprs(Actions);
2332 CommaLocsTy CommaLocs;
2333 if (Tok.isNot(tok::r_paren) && ParseExpressionList(ArgExprs, CommaLocs)) {
2334 SkipUntil(tok::r_paren);
2335 return true;
2336 }
2337
2338 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
2339
2340 SourceLocation EllipsisLoc;
2341 if (Tok.is(tok::ellipsis))
2342 EllipsisLoc = ConsumeToken();
2343
2344 return Actions.ActOnMemInitializer(ConstructorDecl, getCurScope(), SS, II,
2345 TemplateTypeTy, IdLoc,
2346 LParenLoc, ArgExprs.take(),
2347 ArgExprs.size(), RParenLoc,
2348 EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002349 }
2350
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002351 Diag(Tok, getLang().CPlusPlus0x ? diag::err_expected_lparen_or_lbrace
2352 : diag::err_expected_lparen);
2353 return true;
Douglas Gregor7ad83902008-11-05 04:29:56 +00002354}
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002355
Sebastian Redl7acafd02011-03-05 14:45:16 +00002356/// \brief Parse a C++ exception-specification if present (C++0x [except.spec]).
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002357///
Douglas Gregora4745612008-12-01 18:00:20 +00002358/// exception-specification:
Sebastian Redl7acafd02011-03-05 14:45:16 +00002359/// dynamic-exception-specification
2360/// noexcept-specification
2361///
2362/// noexcept-specification:
2363/// 'noexcept'
2364/// 'noexcept' '(' constant-expression ')'
2365ExceptionSpecificationType
2366Parser::MaybeParseExceptionSpecification(SourceRange &SpecificationRange,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002367 SmallVectorImpl<ParsedType> &DynamicExceptions,
2368 SmallVectorImpl<SourceRange> &DynamicExceptionRanges,
Sebastian Redl7acafd02011-03-05 14:45:16 +00002369 ExprResult &NoexceptExpr) {
2370 ExceptionSpecificationType Result = EST_None;
2371
2372 // See if there's a dynamic specification.
2373 if (Tok.is(tok::kw_throw)) {
2374 Result = ParseDynamicExceptionSpecification(SpecificationRange,
2375 DynamicExceptions,
2376 DynamicExceptionRanges);
2377 assert(DynamicExceptions.size() == DynamicExceptionRanges.size() &&
2378 "Produced different number of exception types and ranges.");
2379 }
2380
2381 // If there's no noexcept specification, we're done.
2382 if (Tok.isNot(tok::kw_noexcept))
2383 return Result;
2384
2385 // If we already had a dynamic specification, parse the noexcept for,
2386 // recovery, but emit a diagnostic and don't store the results.
2387 SourceRange NoexceptRange;
2388 ExceptionSpecificationType NoexceptType = EST_None;
2389
2390 SourceLocation KeywordLoc = ConsumeToken();
2391 if (Tok.is(tok::l_paren)) {
2392 // There is an argument.
2393 SourceLocation LParenLoc = ConsumeParen();
2394 NoexceptType = EST_ComputedNoexcept;
2395 NoexceptExpr = ParseConstantExpression();
Sebastian Redl60618fa2011-03-12 11:50:43 +00002396 // The argument must be contextually convertible to bool. We use
2397 // ActOnBooleanCondition for this purpose.
2398 if (!NoexceptExpr.isInvalid())
2399 NoexceptExpr = Actions.ActOnBooleanCondition(getCurScope(), KeywordLoc,
2400 NoexceptExpr.get());
Sebastian Redl7acafd02011-03-05 14:45:16 +00002401 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
2402 NoexceptRange = SourceRange(KeywordLoc, RParenLoc);
2403 } else {
2404 // There is no argument.
2405 NoexceptType = EST_BasicNoexcept;
2406 NoexceptRange = SourceRange(KeywordLoc, KeywordLoc);
2407 }
2408
2409 if (Result == EST_None) {
2410 SpecificationRange = NoexceptRange;
2411 Result = NoexceptType;
2412
2413 // If there's a dynamic specification after a noexcept specification,
2414 // parse that and ignore the results.
2415 if (Tok.is(tok::kw_throw)) {
2416 Diag(Tok.getLocation(), diag::err_dynamic_and_noexcept_specification);
2417 ParseDynamicExceptionSpecification(NoexceptRange, DynamicExceptions,
2418 DynamicExceptionRanges);
2419 }
2420 } else {
2421 Diag(Tok.getLocation(), diag::err_dynamic_and_noexcept_specification);
2422 }
2423
2424 return Result;
2425}
2426
2427/// ParseDynamicExceptionSpecification - Parse a C++
2428/// dynamic-exception-specification (C++ [except.spec]).
2429///
2430/// dynamic-exception-specification:
Douglas Gregora4745612008-12-01 18:00:20 +00002431/// 'throw' '(' type-id-list [opt] ')'
2432/// [MS] 'throw' '(' '...' ')'
Mike Stump1eb44332009-09-09 15:08:12 +00002433///
Douglas Gregora4745612008-12-01 18:00:20 +00002434/// type-id-list:
Douglas Gregora04426c2010-12-20 23:57:46 +00002435/// type-id ... [opt]
2436/// type-id-list ',' type-id ... [opt]
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002437///
Sebastian Redl7acafd02011-03-05 14:45:16 +00002438ExceptionSpecificationType Parser::ParseDynamicExceptionSpecification(
2439 SourceRange &SpecificationRange,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002440 SmallVectorImpl<ParsedType> &Exceptions,
2441 SmallVectorImpl<SourceRange> &Ranges) {
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002442 assert(Tok.is(tok::kw_throw) && "expected throw");
Mike Stump1eb44332009-09-09 15:08:12 +00002443
Sebastian Redl7acafd02011-03-05 14:45:16 +00002444 SpecificationRange.setBegin(ConsumeToken());
Mike Stump1eb44332009-09-09 15:08:12 +00002445
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002446 if (!Tok.is(tok::l_paren)) {
Sebastian Redl7acafd02011-03-05 14:45:16 +00002447 Diag(Tok, diag::err_expected_lparen_after) << "throw";
2448 SpecificationRange.setEnd(SpecificationRange.getBegin());
Sebastian Redl60618fa2011-03-12 11:50:43 +00002449 return EST_DynamicNone;
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002450 }
2451 SourceLocation LParenLoc = ConsumeParen();
2452
Douglas Gregora4745612008-12-01 18:00:20 +00002453 // Parse throw(...), a Microsoft extension that means "this function
2454 // can throw anything".
2455 if (Tok.is(tok::ellipsis)) {
2456 SourceLocation EllipsisLoc = ConsumeToken();
Francois Pichet62ec1f22011-09-17 17:15:52 +00002457 if (!getLang().MicrosoftExt)
Douglas Gregora4745612008-12-01 18:00:20 +00002458 Diag(EllipsisLoc, diag::ext_ellipsis_exception_spec);
Sebastian Redl7acafd02011-03-05 14:45:16 +00002459 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
2460 SpecificationRange.setEnd(RParenLoc);
Sebastian Redl60618fa2011-03-12 11:50:43 +00002461 return EST_MSAny;
Douglas Gregora4745612008-12-01 18:00:20 +00002462 }
2463
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002464 // Parse the sequence of type-ids.
Sebastian Redlef65f062009-05-29 18:02:33 +00002465 SourceRange Range;
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002466 while (Tok.isNot(tok::r_paren)) {
Sebastian Redlef65f062009-05-29 18:02:33 +00002467 TypeResult Res(ParseTypeName(&Range));
Sebastian Redl7acafd02011-03-05 14:45:16 +00002468
Douglas Gregora04426c2010-12-20 23:57:46 +00002469 if (Tok.is(tok::ellipsis)) {
2470 // C++0x [temp.variadic]p5:
2471 // - In a dynamic-exception-specification (15.4); the pattern is a
2472 // type-id.
2473 SourceLocation Ellipsis = ConsumeToken();
Sebastian Redl7acafd02011-03-05 14:45:16 +00002474 Range.setEnd(Ellipsis);
Douglas Gregora04426c2010-12-20 23:57:46 +00002475 if (!Res.isInvalid())
2476 Res = Actions.ActOnPackExpansion(Res.get(), Ellipsis);
2477 }
Sebastian Redl7acafd02011-03-05 14:45:16 +00002478
Sebastian Redlef65f062009-05-29 18:02:33 +00002479 if (!Res.isInvalid()) {
Sebastian Redl7dc81342009-04-29 17:30:04 +00002480 Exceptions.push_back(Res.get());
Sebastian Redlef65f062009-05-29 18:02:33 +00002481 Ranges.push_back(Range);
2482 }
Douglas Gregora04426c2010-12-20 23:57:46 +00002483
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002484 if (Tok.is(tok::comma))
2485 ConsumeToken();
Sebastian Redl7dc81342009-04-29 17:30:04 +00002486 else
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002487 break;
2488 }
2489
Sebastian Redl7acafd02011-03-05 14:45:16 +00002490 SpecificationRange.setEnd(MatchRHSPunctuation(tok::r_paren, LParenLoc));
Sebastian Redl60618fa2011-03-12 11:50:43 +00002491 return Exceptions.empty() ? EST_DynamicNone : EST_Dynamic;
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002492}
Douglas Gregor6569d682009-05-27 23:11:45 +00002493
Douglas Gregordab60ad2010-10-01 18:44:50 +00002494/// ParseTrailingReturnType - Parse a trailing return type on a new-style
2495/// function declaration.
Douglas Gregorae7902c2011-08-04 15:30:47 +00002496TypeResult Parser::ParseTrailingReturnType(SourceRange &Range) {
Douglas Gregordab60ad2010-10-01 18:44:50 +00002497 assert(Tok.is(tok::arrow) && "expected arrow");
2498
2499 ConsumeToken();
2500
2501 // FIXME: Need to suppress declarations when parsing this typename.
2502 // Otherwise in this function definition:
2503 //
2504 // auto f() -> struct X {}
2505 //
2506 // struct X is parsed as class definition because of the trailing
2507 // brace.
Douglas Gregordab60ad2010-10-01 18:44:50 +00002508 return ParseTypeName(&Range);
2509}
2510
Douglas Gregor6569d682009-05-27 23:11:45 +00002511/// \brief We have just started parsing the definition of a new class,
2512/// so push that class onto our stack of classes that is currently
2513/// being parsed.
John McCalleee1d542011-02-14 07:13:47 +00002514Sema::ParsingClassState
2515Parser::PushParsingClass(Decl *ClassDecl, bool NonNestedClass) {
Douglas Gregor26997fd2010-01-16 20:52:59 +00002516 assert((NonNestedClass || !ClassStack.empty()) &&
Douglas Gregor6569d682009-05-27 23:11:45 +00002517 "Nested class without outer class");
Douglas Gregor26997fd2010-01-16 20:52:59 +00002518 ClassStack.push(new ParsingClass(ClassDecl, NonNestedClass));
John McCalleee1d542011-02-14 07:13:47 +00002519 return Actions.PushParsingClass();
Douglas Gregor6569d682009-05-27 23:11:45 +00002520}
2521
2522/// \brief Deallocate the given parsed class and all of its nested
2523/// classes.
2524void Parser::DeallocateParsedClasses(Parser::ParsingClass *Class) {
Douglas Gregord54eb442010-10-12 16:25:54 +00002525 for (unsigned I = 0, N = Class->LateParsedDeclarations.size(); I != N; ++I)
2526 delete Class->LateParsedDeclarations[I];
Douglas Gregor6569d682009-05-27 23:11:45 +00002527 delete Class;
2528}
2529
2530/// \brief Pop the top class of the stack of classes that are
2531/// currently being parsed.
2532///
2533/// This routine should be called when we have finished parsing the
2534/// definition of a class, but have not yet popped the Scope
2535/// associated with the class's definition.
2536///
2537/// \returns true if the class we've popped is a top-level class,
2538/// false otherwise.
John McCalleee1d542011-02-14 07:13:47 +00002539void Parser::PopParsingClass(Sema::ParsingClassState state) {
Douglas Gregor6569d682009-05-27 23:11:45 +00002540 assert(!ClassStack.empty() && "Mismatched push/pop for class parsing");
Mike Stump1eb44332009-09-09 15:08:12 +00002541
John McCalleee1d542011-02-14 07:13:47 +00002542 Actions.PopParsingClass(state);
2543
Douglas Gregor6569d682009-05-27 23:11:45 +00002544 ParsingClass *Victim = ClassStack.top();
2545 ClassStack.pop();
2546 if (Victim->TopLevelClass) {
2547 // Deallocate all of the nested classes of this class,
2548 // recursively: we don't need to keep any of this information.
2549 DeallocateParsedClasses(Victim);
2550 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002551 }
Douglas Gregor6569d682009-05-27 23:11:45 +00002552 assert(!ClassStack.empty() && "Missing top-level class?");
2553
Douglas Gregord54eb442010-10-12 16:25:54 +00002554 if (Victim->LateParsedDeclarations.empty()) {
Douglas Gregor6569d682009-05-27 23:11:45 +00002555 // The victim is a nested class, but we will not need to perform
2556 // any processing after the definition of this class since it has
2557 // no members whose handling was delayed. Therefore, we can just
2558 // remove this nested class.
Douglas Gregord54eb442010-10-12 16:25:54 +00002559 DeallocateParsedClasses(Victim);
Douglas Gregor6569d682009-05-27 23:11:45 +00002560 return;
2561 }
2562
2563 // This nested class has some members that will need to be processed
2564 // after the top-level class is completely defined. Therefore, add
2565 // it to the list of nested classes within its parent.
Douglas Gregor23c94db2010-07-02 17:43:08 +00002566 assert(getCurScope()->isClassScope() && "Nested class outside of class scope?");
Douglas Gregord54eb442010-10-12 16:25:54 +00002567 ClassStack.top()->LateParsedDeclarations.push_back(new LateParsedClass(this, Victim));
Douglas Gregor23c94db2010-07-02 17:43:08 +00002568 Victim->TemplateScope = getCurScope()->getParent()->isTemplateParamScope();
Douglas Gregor6569d682009-05-27 23:11:45 +00002569}
Sean Huntbbd37c62009-11-21 08:43:09 +00002570
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002571/// ParseCXX0XAttributeSpecifier - Parse a C++0x attribute-specifier. Currently
2572/// only parses standard attributes.
Sean Huntbbd37c62009-11-21 08:43:09 +00002573///
2574/// [C++0x] attribute-specifier:
2575/// '[' '[' attribute-list ']' ']'
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002576/// alignment-specifier
Sean Huntbbd37c62009-11-21 08:43:09 +00002577///
2578/// [C++0x] attribute-list:
2579/// attribute[opt]
2580/// attribute-list ',' attribute[opt]
2581///
2582/// [C++0x] attribute:
2583/// attribute-token attribute-argument-clause[opt]
2584///
2585/// [C++0x] attribute-token:
2586/// identifier
2587/// attribute-scoped-token
2588///
2589/// [C++0x] attribute-scoped-token:
2590/// attribute-namespace '::' identifier
2591///
2592/// [C++0x] attribute-namespace:
2593/// identifier
2594///
2595/// [C++0x] attribute-argument-clause:
2596/// '(' balanced-token-seq ')'
2597///
2598/// [C++0x] balanced-token-seq:
2599/// balanced-token
2600/// balanced-token-seq balanced-token
2601///
2602/// [C++0x] balanced-token:
2603/// '(' balanced-token-seq ')'
2604/// '[' balanced-token-seq ']'
2605/// '{' balanced-token-seq '}'
2606/// any token but '(', ')', '[', ']', '{', or '}'
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002607void Parser::ParseCXX0XAttributeSpecifier(ParsedAttributes &attrs,
2608 SourceLocation *endLoc) {
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002609 if (Tok.is(tok::kw_alignas)) {
2610 ParseAlignmentSpecifier(attrs, endLoc);
2611 return;
2612 }
2613
Sean Huntbbd37c62009-11-21 08:43:09 +00002614 assert(Tok.is(tok::l_square) && NextToken().is(tok::l_square)
2615 && "Not a C++0x attribute list");
2616
Sean Huntbbd37c62009-11-21 08:43:09 +00002617 ConsumeBracket();
2618 ConsumeBracket();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002619
Sean Huntbbd37c62009-11-21 08:43:09 +00002620 if (Tok.is(tok::comma)) {
2621 Diag(Tok.getLocation(), diag::err_expected_ident);
2622 ConsumeToken();
2623 }
2624
2625 while (Tok.is(tok::identifier) || Tok.is(tok::comma)) {
2626 // attribute not present
2627 if (Tok.is(tok::comma)) {
2628 ConsumeToken();
2629 continue;
2630 }
2631
2632 IdentifierInfo *ScopeName = 0, *AttrName = Tok.getIdentifierInfo();
2633 SourceLocation ScopeLoc, AttrLoc = ConsumeToken();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002634
Sean Huntbbd37c62009-11-21 08:43:09 +00002635 // scoped attribute
2636 if (Tok.is(tok::coloncolon)) {
2637 ConsumeToken();
2638
2639 if (!Tok.is(tok::identifier)) {
2640 Diag(Tok.getLocation(), diag::err_expected_ident);
2641 SkipUntil(tok::r_square, tok::comma, true, true);
2642 continue;
2643 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002644
Sean Huntbbd37c62009-11-21 08:43:09 +00002645 ScopeName = AttrName;
2646 ScopeLoc = AttrLoc;
2647
2648 AttrName = Tok.getIdentifierInfo();
2649 AttrLoc = ConsumeToken();
2650 }
2651
2652 bool AttrParsed = false;
2653 // No scoped names are supported; ideally we could put all non-standard
2654 // attributes into namespaces.
2655 if (!ScopeName) {
2656 switch(AttributeList::getKind(AttrName))
2657 {
2658 // No arguments
Sean Hunt7725e672009-11-25 04:20:27 +00002659 case AttributeList::AT_carries_dependency:
Anders Carlsson15e14a22011-01-23 21:33:18 +00002660 case AttributeList::AT_noreturn: {
Sean Huntbbd37c62009-11-21 08:43:09 +00002661 if (Tok.is(tok::l_paren)) {
2662 Diag(Tok.getLocation(), diag::err_cxx0x_attribute_forbids_arguments)
2663 << AttrName->getName();
2664 break;
2665 }
2666
John McCall0b7e6782011-03-24 11:26:52 +00002667 attrs.addNew(AttrName, AttrLoc, 0, AttrLoc, 0,
2668 SourceLocation(), 0, 0, false, true);
Sean Huntbbd37c62009-11-21 08:43:09 +00002669 AttrParsed = true;
2670 break;
2671 }
2672
Sean Huntbbd37c62009-11-21 08:43:09 +00002673 // Silence warnings
2674 default: break;
2675 }
2676 }
2677
2678 // Skip the entire parameter clause, if any
2679 if (!AttrParsed && Tok.is(tok::l_paren)) {
2680 ConsumeParen();
2681 // SkipUntil maintains the balancedness of tokens.
2682 SkipUntil(tok::r_paren, false);
2683 }
2684 }
2685
2686 if (ExpectAndConsume(tok::r_square, diag::err_expected_rsquare))
2687 SkipUntil(tok::r_square, false);
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002688 if (endLoc)
2689 *endLoc = Tok.getLocation();
Sean Huntbbd37c62009-11-21 08:43:09 +00002690 if (ExpectAndConsume(tok::r_square, diag::err_expected_rsquare))
2691 SkipUntil(tok::r_square, false);
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002692}
Sean Huntbbd37c62009-11-21 08:43:09 +00002693
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002694/// ParseCXX0XAttributes - Parse a C++0x attribute-specifier-seq.
2695///
2696/// attribute-specifier-seq:
2697/// attribute-specifier-seq[opt] attribute-specifier
2698void Parser::ParseCXX0XAttributes(ParsedAttributesWithRange &attrs,
2699 SourceLocation *endLoc) {
2700 SourceLocation StartLoc = Tok.getLocation(), Loc;
2701 if (!endLoc)
2702 endLoc = &Loc;
2703
Douglas Gregor8828ee72011-10-07 20:35:25 +00002704 do {
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002705 ParseCXX0XAttributeSpecifier(attrs, endLoc);
Douglas Gregor8828ee72011-10-07 20:35:25 +00002706 } while (isCXX0XAttributeSpecifier());
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002707
2708 attrs.Range = SourceRange(StartLoc, *endLoc);
Sean Huntbbd37c62009-11-21 08:43:09 +00002709}
2710
Francois Pichet334d47e2010-10-11 12:59:39 +00002711/// ParseMicrosoftAttributes - Parse a Microsoft attribute [Attr]
2712///
2713/// [MS] ms-attribute:
2714/// '[' token-seq ']'
2715///
2716/// [MS] ms-attribute-seq:
2717/// ms-attribute[opt]
2718/// ms-attribute ms-attribute-seq
John McCall7f040a92010-12-24 02:08:15 +00002719void Parser::ParseMicrosoftAttributes(ParsedAttributes &attrs,
2720 SourceLocation *endLoc) {
Francois Pichet334d47e2010-10-11 12:59:39 +00002721 assert(Tok.is(tok::l_square) && "Not a Microsoft attribute list");
2722
2723 while (Tok.is(tok::l_square)) {
2724 ConsumeBracket();
2725 SkipUntil(tok::r_square, true, true);
John McCall7f040a92010-12-24 02:08:15 +00002726 if (endLoc) *endLoc = Tok.getLocation();
Francois Pichet334d47e2010-10-11 12:59:39 +00002727 ExpectAndConsume(tok::r_square, diag::err_expected_rsquare);
2728 }
2729}
Francois Pichet563a6452011-05-25 10:19:49 +00002730
2731void Parser::ParseMicrosoftIfExistsClassDeclaration(DeclSpec::TST TagType,
2732 AccessSpecifier& CurAS) {
2733 bool Result;
2734 if (ParseMicrosoftIfExistsCondition(Result))
2735 return;
2736
2737 if (Tok.isNot(tok::l_brace)) {
2738 Diag(Tok, diag::err_expected_lbrace);
2739 return;
2740 }
2741 ConsumeBrace();
2742
2743 // Condition is false skip all inside the {}.
2744 if (!Result) {
2745 SkipUntil(tok::r_brace, false);
2746 return;
2747 }
2748
2749 // Condition is true, parse the declaration.
2750 while (Tok.isNot(tok::r_brace)) {
2751
2752 // __if_exists, __if_not_exists can nest.
2753 if ((Tok.is(tok::kw___if_exists) || Tok.is(tok::kw___if_not_exists))) {
2754 ParseMicrosoftIfExistsClassDeclaration((DeclSpec::TST)TagType, CurAS);
2755 continue;
2756 }
2757
2758 // Check for extraneous top-level semicolon.
2759 if (Tok.is(tok::semi)) {
2760 Diag(Tok, diag::ext_extra_struct_semi)
2761 << DeclSpec::getSpecifierName((DeclSpec::TST)TagType)
2762 << FixItHint::CreateRemoval(Tok.getLocation());
2763 ConsumeToken();
2764 continue;
2765 }
2766
2767 AccessSpecifier AS = getAccessSpecifierIfPresent();
2768 if (AS != AS_none) {
2769 // Current token is a C++ access specifier.
2770 CurAS = AS;
2771 SourceLocation ASLoc = Tok.getLocation();
2772 ConsumeToken();
2773 if (Tok.is(tok::colon))
2774 Actions.ActOnAccessSpecifier(AS, ASLoc, Tok.getLocation());
2775 else
2776 Diag(Tok, diag::err_expected_colon);
2777 ConsumeToken();
2778 continue;
2779 }
2780
2781 // Parse all the comma separated declarators.
2782 ParseCXXClassMemberDeclaration(CurAS);
2783 }
2784
2785 if (Tok.isNot(tok::r_brace)) {
2786 Diag(Tok, diag::err_expected_rbrace);
2787 return;
2788 }
2789 ConsumeBrace();
2790}