blob: f6a79e5967c7ac42ad3b4624378db67c5be11027 [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 Jahaniana28948f2011-08-22 15:54:49 +000055 Decl *DC = getObjCDeclContext();
56 if (DC)
57 Actions.ActOnObjCContainerFinishDefinition(DC);
58
Douglas Gregor49f40bd2009-09-18 19:03:04 +000059 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +000060 Actions.CodeCompleteNamespaceDecl(getCurScope());
Douglas Gregordc845342010-05-25 05:58:43 +000061 ConsumeCodeCompletionToken();
Douglas Gregor49f40bd2009-09-18 19:03:04 +000062 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +000063
Chris Lattner8f08cb72007-08-25 06:57:03 +000064 SourceLocation IdentLoc;
65 IdentifierInfo *Ident = 0;
Richard Trieuf858bd82011-05-26 20:11:09 +000066 std::vector<SourceLocation> ExtraIdentLoc;
67 std::vector<IdentifierInfo*> ExtraIdent;
68 std::vector<SourceLocation> ExtraNamespaceLoc;
Douglas Gregor6a588dd2009-06-17 19:49:00 +000069
70 Token attrTok;
Mike Stump1eb44332009-09-09 15:08:12 +000071
Chris Lattner04d66662007-10-09 17:33:22 +000072 if (Tok.is(tok::identifier)) {
Chris Lattner8f08cb72007-08-25 06:57:03 +000073 Ident = Tok.getIdentifierInfo();
74 IdentLoc = ConsumeToken(); // eat the identifier.
Richard Trieuf858bd82011-05-26 20:11:09 +000075 while (Tok.is(tok::coloncolon) && NextToken().is(tok::identifier)) {
76 ExtraNamespaceLoc.push_back(ConsumeToken());
77 ExtraIdent.push_back(Tok.getIdentifierInfo());
78 ExtraIdentLoc.push_back(ConsumeToken());
79 }
Chris Lattner8f08cb72007-08-25 06:57:03 +000080 }
Mike Stump1eb44332009-09-09 15:08:12 +000081
Chris Lattner8f08cb72007-08-25 06:57:03 +000082 // Read label attributes, if present.
John McCall0b7e6782011-03-24 11:26:52 +000083 ParsedAttributes attrs(AttrFactory);
Douglas Gregor6a588dd2009-06-17 19:49:00 +000084 if (Tok.is(tok::kw___attribute)) {
85 attrTok = Tok;
John McCall7f040a92010-12-24 02:08:15 +000086 ParseGNUAttributes(attrs);
Douglas Gregor6a588dd2009-06-17 19:49:00 +000087 }
Mike Stump1eb44332009-09-09 15:08:12 +000088
Douglas Gregor6a588dd2009-06-17 19:49:00 +000089 if (Tok.is(tok::equal)) {
John McCall7f040a92010-12-24 02:08:15 +000090 if (!attrs.empty())
Douglas Gregor6a588dd2009-06-17 19:49:00 +000091 Diag(attrTok, diag::err_unexpected_namespace_attributes_alias);
Sebastian Redld078e642010-08-27 23:12:46 +000092 if (InlineLoc.isValid())
93 Diag(InlineLoc, diag::err_inline_namespace_alias)
94 << FixItHint::CreateRemoval(InlineLoc);
Fariborz Jahaniana28948f2011-08-22 15:54:49 +000095 Decl *Res = ParseNamespaceAlias(NamespaceLoc, IdentLoc, Ident, DeclEnd);
96 if (DC)
97 Actions.ActOnObjCContainerStartDefinition(DC);
98 return Res;
Douglas Gregor6a588dd2009-06-17 19:49:00 +000099 }
Mike Stump1eb44332009-09-09 15:08:12 +0000100
Richard Trieuf858bd82011-05-26 20:11:09 +0000101
Chris Lattner51448322009-03-29 14:02:43 +0000102 if (Tok.isNot(tok::l_brace)) {
Richard Trieuf858bd82011-05-26 20:11:09 +0000103 if (!ExtraIdent.empty()) {
104 Diag(ExtraNamespaceLoc[0], diag::err_nested_namespaces_with_double_colon)
105 << SourceRange(ExtraNamespaceLoc.front(), ExtraIdentLoc.back());
106 }
Mike Stump1eb44332009-09-09 15:08:12 +0000107 Diag(Tok, Ident ? diag::err_expected_lbrace :
Chris Lattner51448322009-03-29 14:02:43 +0000108 diag::err_expected_ident_lbrace);
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000109 if (DC)
110 Actions.ActOnObjCContainerStartDefinition(DC);
John McCalld226f652010-08-21 09:40:31 +0000111 return 0;
Chris Lattner8f08cb72007-08-25 06:57:03 +0000112 }
Mike Stump1eb44332009-09-09 15:08:12 +0000113
Chris Lattner51448322009-03-29 14:02:43 +0000114 SourceLocation LBrace = ConsumeBrace();
115
Douglas Gregor23c94db2010-07-02 17:43:08 +0000116 if (getCurScope()->isClassScope() || getCurScope()->isTemplateParamScope() ||
117 getCurScope()->isInObjcMethodScope() || getCurScope()->getBlockParent() ||
118 getCurScope()->getFnParent()) {
Richard Trieuf858bd82011-05-26 20:11:09 +0000119 if (!ExtraIdent.empty()) {
120 Diag(ExtraNamespaceLoc[0], diag::err_nested_namespaces_with_double_colon)
121 << SourceRange(ExtraNamespaceLoc.front(), ExtraIdentLoc.back());
122 }
Douglas Gregor95f1b152010-05-14 05:08:22 +0000123 Diag(LBrace, diag::err_namespace_nonnamespace_scope);
124 SkipUntil(tok::r_brace, false);
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000125 if (DC)
126 Actions.ActOnObjCContainerStartDefinition(DC);
John McCalld226f652010-08-21 09:40:31 +0000127 return 0;
Douglas Gregor95f1b152010-05-14 05:08:22 +0000128 }
129
Richard Trieuf858bd82011-05-26 20:11:09 +0000130 if (!ExtraIdent.empty()) {
131 TentativeParsingAction TPA(*this);
132 SkipUntil(tok::r_brace, /*StopAtSemi*/false, /*DontConsume*/true);
133 Token rBraceToken = Tok;
134 TPA.Revert();
135
136 if (!rBraceToken.is(tok::r_brace)) {
137 Diag(ExtraNamespaceLoc[0], diag::err_nested_namespaces_with_double_colon)
138 << SourceRange(ExtraNamespaceLoc.front(), ExtraIdentLoc.back());
139 } else {
Benjamin Kramer9910df02011-05-26 21:32:30 +0000140 std::string NamespaceFix;
Richard Trieuf858bd82011-05-26 20:11:09 +0000141 for (std::vector<IdentifierInfo*>::iterator I = ExtraIdent.begin(),
142 E = ExtraIdent.end(); I != E; ++I) {
143 NamespaceFix += " { namespace ";
144 NamespaceFix += (*I)->getName();
145 }
Benjamin Kramer9910df02011-05-26 21:32:30 +0000146
Richard Trieuf858bd82011-05-26 20:11:09 +0000147 std::string RBraces;
Benjamin Kramer9910df02011-05-26 21:32:30 +0000148 for (unsigned i = 0, e = ExtraIdent.size(); i != e; ++i)
Richard Trieuf858bd82011-05-26 20:11:09 +0000149 RBraces += "} ";
Benjamin Kramer9910df02011-05-26 21:32:30 +0000150
Richard Trieuf858bd82011-05-26 20:11:09 +0000151 Diag(ExtraNamespaceLoc[0], diag::err_nested_namespaces_with_double_colon)
152 << FixItHint::CreateReplacement(SourceRange(ExtraNamespaceLoc.front(),
153 ExtraIdentLoc.back()),
154 NamespaceFix)
155 << FixItHint::CreateInsertion(rBraceToken.getLocation(), RBraces);
156 }
157 }
158
Sebastian Redl88e64ca2010-08-31 00:36:45 +0000159 // If we're still good, complain about inline namespaces in non-C++0x now.
160 if (!getLang().CPlusPlus0x && InlineLoc.isValid())
161 Diag(InlineLoc, diag::ext_inline_namespace);
162
Chris Lattner51448322009-03-29 14:02:43 +0000163 // Enter a scope for the namespace.
164 ParseScope NamespaceScope(this, Scope::DeclScope);
165
John McCalld226f652010-08-21 09:40:31 +0000166 Decl *NamespcDecl =
Abramo Bagnaraacba90f2011-03-08 12:38:20 +0000167 Actions.ActOnStartNamespaceDef(getCurScope(), InlineLoc, NamespaceLoc,
168 IdentLoc, Ident, LBrace, attrs.getList());
Chris Lattner51448322009-03-29 14:02:43 +0000169
John McCallf312b1e2010-08-26 23:41:50 +0000170 PrettyDeclStackTraceEntry CrashInfo(Actions, NamespcDecl, NamespaceLoc,
171 "parsing namespace");
Mike Stump1eb44332009-09-09 15:08:12 +0000172
Richard Trieuf858bd82011-05-26 20:11:09 +0000173 SourceLocation RBraceLoc;
174 // Parse the contents of the namespace. This includes parsing recovery on
175 // any improperly nested namespaces.
176 ParseInnerNamespace(ExtraIdentLoc, ExtraIdent, ExtraNamespaceLoc, 0,
177 InlineLoc, LBrace, attrs, RBraceLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000178
Chris Lattner51448322009-03-29 14:02:43 +0000179 // Leave the namespace scope.
180 NamespaceScope.Exit();
181
Chris Lattner97144fc2009-04-02 04:16:50 +0000182 Actions.ActOnFinishNamespaceDef(NamespcDecl, RBraceLoc);
Chris Lattner51448322009-03-29 14:02:43 +0000183
Chris Lattner97144fc2009-04-02 04:16:50 +0000184 DeclEnd = RBraceLoc;
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000185 if (DC)
186 Actions.ActOnObjCContainerStartDefinition(DC);
Chris Lattner51448322009-03-29 14:02:43 +0000187 return NamespcDecl;
Chris Lattner8f08cb72007-08-25 06:57:03 +0000188}
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000189
Richard Trieuf858bd82011-05-26 20:11:09 +0000190/// ParseInnerNamespace - Parse the contents of a namespace.
191void Parser::ParseInnerNamespace(std::vector<SourceLocation>& IdentLoc,
192 std::vector<IdentifierInfo*>& Ident,
193 std::vector<SourceLocation>& NamespaceLoc,
194 unsigned int index, SourceLocation& InlineLoc,
195 SourceLocation& LBrace,
196 ParsedAttributes& attrs,
197 SourceLocation& RBraceLoc) {
198 if (index == Ident.size()) {
199 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
200 ParsedAttributesWithRange attrs(AttrFactory);
201 MaybeParseCXX0XAttributes(attrs);
202 MaybeParseMicrosoftAttributes(attrs);
203 ParseExternalDeclaration(attrs);
204 }
205 RBraceLoc = MatchRHSPunctuation(tok::r_brace, LBrace);
206
207 return;
208 }
209
210 // Parse improperly nested namespaces.
211 ParseScope NamespaceScope(this, Scope::DeclScope);
212 Decl *NamespcDecl =
213 Actions.ActOnStartNamespaceDef(getCurScope(), SourceLocation(),
214 NamespaceLoc[index], IdentLoc[index],
215 Ident[index], LBrace, attrs.getList());
216
217 ParseInnerNamespace(IdentLoc, Ident, NamespaceLoc, ++index, InlineLoc,
218 LBrace, attrs, RBraceLoc);
219
220 NamespaceScope.Exit();
221
222 Actions.ActOnFinishNamespaceDef(NamespcDecl, RBraceLoc);
223}
224
Anders Carlssonf67606a2009-03-28 04:07:16 +0000225/// ParseNamespaceAlias - Parse the part after the '=' in a namespace
226/// alias definition.
227///
John McCalld226f652010-08-21 09:40:31 +0000228Decl *Parser::ParseNamespaceAlias(SourceLocation NamespaceLoc,
John McCall0b7e6782011-03-24 11:26:52 +0000229 SourceLocation AliasLoc,
230 IdentifierInfo *Alias,
231 SourceLocation &DeclEnd) {
Anders Carlssonf67606a2009-03-28 04:07:16 +0000232 assert(Tok.is(tok::equal) && "Not equal token");
Mike Stump1eb44332009-09-09 15:08:12 +0000233
Anders Carlssonf67606a2009-03-28 04:07:16 +0000234 ConsumeToken(); // eat the '='.
Mike Stump1eb44332009-09-09 15:08:12 +0000235
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000236 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000237 Actions.CodeCompleteNamespaceAliasDecl(getCurScope());
Douglas Gregordc845342010-05-25 05:58:43 +0000238 ConsumeCodeCompletionToken();
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000239 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000240
Anders Carlssonf67606a2009-03-28 04:07:16 +0000241 CXXScopeSpec SS;
242 // Parse (optional) nested-name-specifier.
John McCallb3d87482010-08-24 05:47:05 +0000243 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
Anders Carlssonf67606a2009-03-28 04:07:16 +0000244
245 if (SS.isInvalid() || Tok.isNot(tok::identifier)) {
246 Diag(Tok, diag::err_expected_namespace_name);
247 // Skip to end of the definition and eat the ';'.
248 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000249 return 0;
Anders Carlssonf67606a2009-03-28 04:07:16 +0000250 }
251
252 // Parse identifier.
Anders Carlsson03bd5a12009-03-28 22:53:22 +0000253 IdentifierInfo *Ident = Tok.getIdentifierInfo();
254 SourceLocation IdentLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000255
Anders Carlssonf67606a2009-03-28 04:07:16 +0000256 // Eat the ';'.
Chris Lattner97144fc2009-04-02 04:16:50 +0000257 DeclEnd = Tok.getLocation();
Chris Lattner6869d8e2009-06-14 00:07:48 +0000258 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_namespace_name,
259 "", tok::semi);
Mike Stump1eb44332009-09-09 15:08:12 +0000260
Douglas Gregor23c94db2010-07-02 17:43:08 +0000261 return Actions.ActOnNamespaceAliasDef(getCurScope(), NamespaceLoc, AliasLoc, Alias,
Anders Carlsson03bd5a12009-03-28 22:53:22 +0000262 SS, IdentLoc, Ident);
Anders Carlssonf67606a2009-03-28 04:07:16 +0000263}
264
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000265/// ParseLinkage - We know that the current token is a string_literal
266/// and just before that, that extern was seen.
267///
268/// linkage-specification: [C++ 7.5p2: dcl.link]
269/// 'extern' string-literal '{' declaration-seq[opt] '}'
270/// 'extern' string-literal declaration
271///
Chris Lattner7d642712010-11-09 20:15:55 +0000272Decl *Parser::ParseLinkage(ParsingDeclSpec &DS, unsigned Context) {
Douglas Gregorc19923d2008-11-21 16:10:08 +0000273 assert(Tok.is(tok::string_literal) && "Not a string literal!");
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000274 llvm::SmallString<8> LangBuffer;
Douglas Gregor453091c2010-03-16 22:30:13 +0000275 bool Invalid = false;
Chris Lattner5f9e2722011-07-23 10:55:15 +0000276 StringRef Lang = PP.getSpelling(Tok, LangBuffer, &Invalid);
Douglas Gregor453091c2010-03-16 22:30:13 +0000277 if (Invalid)
John McCalld226f652010-08-21 09:40:31 +0000278 return 0;
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000279
280 SourceLocation Loc = ConsumeStringToken();
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000281
Douglas Gregor074149e2009-01-05 19:45:36 +0000282 ParseScope LinkageScope(this, Scope::DeclScope);
John McCalld226f652010-08-21 09:40:31 +0000283 Decl *LinkageSpec
Douglas Gregor23c94db2010-07-02 17:43:08 +0000284 = Actions.ActOnStartLinkageSpecification(getCurScope(),
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000285 DS.getSourceRange().getBegin(),
Benjamin Kramerd5663812010-05-03 13:08:54 +0000286 Loc, Lang,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000287 Tok.is(tok::l_brace) ? Tok.getLocation()
Douglas Gregor074149e2009-01-05 19:45:36 +0000288 : SourceLocation());
289
John McCall0b7e6782011-03-24 11:26:52 +0000290 ParsedAttributesWithRange attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +0000291 MaybeParseCXX0XAttributes(attrs);
292 MaybeParseMicrosoftAttributes(attrs);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000293
Douglas Gregor074149e2009-01-05 19:45:36 +0000294 if (Tok.isNot(tok::l_brace)) {
Abramo Bagnaraf41e33c2011-05-01 16:25:54 +0000295 // Reset the source range in DS, as the leading "extern"
296 // does not really belong to the inner declaration ...
297 DS.SetRangeStart(SourceLocation());
298 DS.SetRangeEnd(SourceLocation());
299 // ... but anyway remember that such an "extern" was seen.
Abramo Bagnara35f9a192010-07-30 16:47:02 +0000300 DS.setExternInLinkageSpec(true);
John McCall7f040a92010-12-24 02:08:15 +0000301 ParseExternalDeclaration(attrs, &DS);
Douglas Gregor23c94db2010-07-02 17:43:08 +0000302 return Actions.ActOnFinishLinkageSpecification(getCurScope(), LinkageSpec,
Douglas Gregor074149e2009-01-05 19:45:36 +0000303 SourceLocation());
Mike Stump1eb44332009-09-09 15:08:12 +0000304 }
Douglas Gregorf44515a2008-12-16 22:23:02 +0000305
Douglas Gregor63a01132010-02-07 08:38:28 +0000306 DS.abort();
307
John McCall7f040a92010-12-24 02:08:15 +0000308 ProhibitAttributes(attrs);
Sean Huntbbd37c62009-11-21 08:43:09 +0000309
Douglas Gregorf44515a2008-12-16 22:23:02 +0000310 SourceLocation LBrace = ConsumeBrace();
Douglas Gregorf44515a2008-12-16 22:23:02 +0000311 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
John McCall0b7e6782011-03-24 11:26:52 +0000312 ParsedAttributesWithRange attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +0000313 MaybeParseCXX0XAttributes(attrs);
314 MaybeParseMicrosoftAttributes(attrs);
315 ParseExternalDeclaration(attrs);
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000316 }
317
Douglas Gregorf44515a2008-12-16 22:23:02 +0000318 SourceLocation RBrace = MatchRHSPunctuation(tok::r_brace, LBrace);
Chris Lattner7d642712010-11-09 20:15:55 +0000319 return Actions.ActOnFinishLinkageSpecification(getCurScope(), LinkageSpec,
320 RBrace);
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000321}
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000322
Douglas Gregorf780abc2008-12-30 03:27:21 +0000323/// ParseUsingDirectiveOrDeclaration - Parse C++ using using-declaration or
324/// using-directive. Assumes that current token is 'using'.
John McCalld226f652010-08-21 09:40:31 +0000325Decl *Parser::ParseUsingDirectiveOrDeclaration(unsigned Context,
John McCall78b81052010-11-10 02:40:36 +0000326 const ParsedTemplateInfo &TemplateInfo,
327 SourceLocation &DeclEnd,
Richard Smithc89edf52011-07-01 19:46:12 +0000328 ParsedAttributesWithRange &attrs,
329 Decl **OwnedType) {
Douglas Gregorf780abc2008-12-30 03:27:21 +0000330 assert(Tok.is(tok::kw_using) && "Not using token");
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000331 Decl *DC = getObjCDeclContext();
332 if (DC)
333 Actions.ActOnObjCContainerFinishDefinition(DC);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000334 // Eat 'using'.
335 SourceLocation UsingLoc = ConsumeToken();
336
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000337 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000338 Actions.CodeCompleteUsing(getCurScope());
Douglas Gregordc845342010-05-25 05:58:43 +0000339 ConsumeCodeCompletionToken();
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000340 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000341
John McCall78b81052010-11-10 02:40:36 +0000342 // 'using namespace' means this is a using-directive.
343 if (Tok.is(tok::kw_namespace)) {
344 // Template parameters are always an error here.
345 if (TemplateInfo.Kind) {
346 SourceRange R = TemplateInfo.getSourceRange();
347 Diag(UsingLoc, diag::err_templated_using_directive)
348 << R << FixItHint::CreateRemoval(R);
349 }
Sean Huntbbd37c62009-11-21 08:43:09 +0000350
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000351 Decl *Res = ParseUsingDirective(Context, UsingLoc, DeclEnd, attrs);
352 if (DC)
353 Actions.ActOnObjCContainerStartDefinition(DC);
354 return Res;
John McCall78b81052010-11-10 02:40:36 +0000355 }
356
Richard Smith162e1c12011-04-15 14:24:37 +0000357 // Otherwise, it must be a using-declaration or an alias-declaration.
John McCall78b81052010-11-10 02:40:36 +0000358
359 // Using declarations can't have attributes.
John McCall7f040a92010-12-24 02:08:15 +0000360 ProhibitAttributes(attrs);
Chris Lattner2f274772009-01-06 06:55:51 +0000361
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000362 Decl *Res = ParseUsingDeclaration(Context, TemplateInfo, UsingLoc, DeclEnd,
363 AS_none, OwnedType);
364 if (DC)
365 Actions.ActOnObjCContainerStartDefinition(DC);
366 return Res;
Douglas Gregorf780abc2008-12-30 03:27:21 +0000367}
368
369/// ParseUsingDirective - Parse C++ using-directive, assumes
370/// that current token is 'namespace' and 'using' was already parsed.
371///
372/// using-directive: [C++ 7.3.p4: namespace.udir]
373/// 'using' 'namespace' ::[opt] nested-name-specifier[opt]
374/// namespace-name ;
375/// [GNU] using-directive:
376/// 'using' 'namespace' ::[opt] nested-name-specifier[opt]
377/// namespace-name attributes[opt] ;
378///
John McCalld226f652010-08-21 09:40:31 +0000379Decl *Parser::ParseUsingDirective(unsigned Context,
John McCall78b81052010-11-10 02:40:36 +0000380 SourceLocation UsingLoc,
381 SourceLocation &DeclEnd,
John McCall7f040a92010-12-24 02:08:15 +0000382 ParsedAttributes &attrs) {
Douglas Gregorf780abc2008-12-30 03:27:21 +0000383 assert(Tok.is(tok::kw_namespace) && "Not 'namespace' token");
384
385 // Eat 'namespace'.
386 SourceLocation NamespcLoc = ConsumeToken();
387
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000388 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000389 Actions.CodeCompleteUsingDirective(getCurScope());
Douglas Gregordc845342010-05-25 05:58:43 +0000390 ConsumeCodeCompletionToken();
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000391 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000392
Douglas Gregorf780abc2008-12-30 03:27:21 +0000393 CXXScopeSpec SS;
394 // Parse (optional) nested-name-specifier.
John McCallb3d87482010-08-24 05:47:05 +0000395 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000396
Douglas Gregorf780abc2008-12-30 03:27:21 +0000397 IdentifierInfo *NamespcName = 0;
398 SourceLocation IdentLoc = SourceLocation();
399
400 // Parse namespace-name.
Chris Lattner823c44e2009-01-06 07:27:21 +0000401 if (SS.isInvalid() || Tok.isNot(tok::identifier)) {
Douglas Gregorf780abc2008-12-30 03:27:21 +0000402 Diag(Tok, diag::err_expected_namespace_name);
403 // If there was invalid namespace name, skip to end of decl, and eat ';'.
404 SkipUntil(tok::semi);
405 // FIXME: Are there cases, when we would like to call ActOnUsingDirective?
John McCalld226f652010-08-21 09:40:31 +0000406 return 0;
Douglas Gregorf780abc2008-12-30 03:27:21 +0000407 }
Mike Stump1eb44332009-09-09 15:08:12 +0000408
Chris Lattner823c44e2009-01-06 07:27:21 +0000409 // Parse identifier.
410 NamespcName = Tok.getIdentifierInfo();
411 IdentLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000412
Chris Lattner823c44e2009-01-06 07:27:21 +0000413 // Parse (optional) attributes (most likely GNU strong-using extension).
Sean Huntbbd37c62009-11-21 08:43:09 +0000414 bool GNUAttr = false;
415 if (Tok.is(tok::kw___attribute)) {
416 GNUAttr = true;
John McCall7f040a92010-12-24 02:08:15 +0000417 ParseGNUAttributes(attrs);
Sean Huntbbd37c62009-11-21 08:43:09 +0000418 }
Mike Stump1eb44332009-09-09 15:08:12 +0000419
Chris Lattner823c44e2009-01-06 07:27:21 +0000420 // Eat ';'.
Chris Lattner97144fc2009-04-02 04:16:50 +0000421 DeclEnd = Tok.getLocation();
Chris Lattner6869d8e2009-06-14 00:07:48 +0000422 ExpectAndConsume(tok::semi,
Douglas Gregor9ba23b42010-09-07 15:23:11 +0000423 GNUAttr ? diag::err_expected_semi_after_attribute_list
424 : diag::err_expected_semi_after_namespace_name,
425 "", tok::semi);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000426
Douglas Gregor23c94db2010-07-02 17:43:08 +0000427 return Actions.ActOnUsingDirective(getCurScope(), UsingLoc, NamespcLoc, SS,
John McCall7f040a92010-12-24 02:08:15 +0000428 IdentLoc, NamespcName, attrs.getList());
Douglas Gregorf780abc2008-12-30 03:27:21 +0000429}
430
Richard Smith162e1c12011-04-15 14:24:37 +0000431/// ParseUsingDeclaration - Parse C++ using-declaration or alias-declaration.
432/// Assumes that 'using' was already seen.
Douglas Gregorf780abc2008-12-30 03:27:21 +0000433///
434/// using-declaration: [C++ 7.3.p3: namespace.udecl]
435/// 'using' 'typename'[opt] ::[opt] nested-name-specifier
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000436/// unqualified-id
437/// 'using' :: unqualified-id
Douglas Gregorf780abc2008-12-30 03:27:21 +0000438///
Richard Smith162e1c12011-04-15 14:24:37 +0000439/// alias-declaration: C++0x [decl.typedef]p2
440/// 'using' identifier = type-id ;
441///
John McCalld226f652010-08-21 09:40:31 +0000442Decl *Parser::ParseUsingDeclaration(unsigned Context,
John McCall78b81052010-11-10 02:40:36 +0000443 const ParsedTemplateInfo &TemplateInfo,
444 SourceLocation UsingLoc,
445 SourceLocation &DeclEnd,
Richard Smithc89edf52011-07-01 19:46:12 +0000446 AccessSpecifier AS,
447 Decl **OwnedType) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000448 CXXScopeSpec SS;
John McCall7ba107a2009-11-18 02:36:19 +0000449 SourceLocation TypenameLoc;
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000450 bool IsTypeName;
451
452 // Ignore optional 'typename'.
Douglas Gregor12c118a2009-11-04 16:30:06 +0000453 // FIXME: This is wrong; we should parse this as a typename-specifier.
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000454 if (Tok.is(tok::kw_typename)) {
John McCall7ba107a2009-11-18 02:36:19 +0000455 TypenameLoc = Tok.getLocation();
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000456 ConsumeToken();
457 IsTypeName = true;
458 }
459 else
460 IsTypeName = false;
461
462 // Parse nested-name-specifier.
John McCallb3d87482010-08-24 05:47:05 +0000463 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000464
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000465 // Check nested-name specifier.
466 if (SS.isInvalid()) {
467 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000468 return 0;
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000469 }
Douglas Gregor12c118a2009-11-04 16:30:06 +0000470
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000471 // Parse the unqualified-id. We allow parsing of both constructor and
Douglas Gregor12c118a2009-11-04 16:30:06 +0000472 // destructor names and allow the action module to diagnose any semantic
473 // errors.
474 UnqualifiedId Name;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000475 if (ParseUnqualifiedId(SS,
Douglas Gregor12c118a2009-11-04 16:30:06 +0000476 /*EnteringContext=*/false,
477 /*AllowDestructorName=*/true,
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000478 /*AllowConstructorName=*/true,
John McCallb3d87482010-08-24 05:47:05 +0000479 ParsedType(),
Douglas Gregor12c118a2009-11-04 16:30:06 +0000480 Name)) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000481 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000482 return 0;
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000483 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000484
John McCall0b7e6782011-03-24 11:26:52 +0000485 ParsedAttributes attrs(AttrFactory);
Richard Smith162e1c12011-04-15 14:24:37 +0000486
487 // Maybe this is an alias-declaration.
488 bool IsAliasDecl = Tok.is(tok::equal);
489 TypeResult TypeAlias;
490 if (IsAliasDecl) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000491 // TODO: Attribute support. C++0x attributes may appear before the equals.
492 // Where can GNU attributes appear?
Richard Smith162e1c12011-04-15 14:24:37 +0000493 ConsumeToken();
494
495 if (!getLang().CPlusPlus0x)
496 Diag(Tok.getLocation(), diag::ext_alias_declaration);
497
Richard Smith3e4c6c42011-05-05 21:57:07 +0000498 // Type alias templates cannot be specialized.
499 int SpecKind = -1;
Richard Smith536e9c12011-05-05 22:36:10 +0000500 if (TemplateInfo.Kind == ParsedTemplateInfo::Template &&
501 Name.getKind() == UnqualifiedId::IK_TemplateId)
Richard Smith3e4c6c42011-05-05 21:57:07 +0000502 SpecKind = 0;
503 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitSpecialization)
504 SpecKind = 1;
505 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation)
506 SpecKind = 2;
507 if (SpecKind != -1) {
508 SourceRange Range;
509 if (SpecKind == 0)
510 Range = SourceRange(Name.TemplateId->LAngleLoc,
511 Name.TemplateId->RAngleLoc);
512 else
513 Range = TemplateInfo.getSourceRange();
514 Diag(Range.getBegin(), diag::err_alias_declaration_specialization)
515 << SpecKind << Range;
516 SkipUntil(tok::semi);
517 return 0;
518 }
519
Richard Smith162e1c12011-04-15 14:24:37 +0000520 // Name must be an identifier.
521 if (Name.getKind() != UnqualifiedId::IK_Identifier) {
522 Diag(Name.StartLocation, diag::err_alias_declaration_not_identifier);
523 // No removal fixit: can't recover from this.
524 SkipUntil(tok::semi);
525 return 0;
526 } else if (IsTypeName)
527 Diag(TypenameLoc, diag::err_alias_declaration_not_identifier)
528 << FixItHint::CreateRemoval(SourceRange(TypenameLoc,
529 SS.isNotEmpty() ? SS.getEndLoc() : TypenameLoc));
530 else if (SS.isNotEmpty())
531 Diag(SS.getBeginLoc(), diag::err_alias_declaration_not_identifier)
532 << FixItHint::CreateRemoval(SS.getRange());
533
Richard Smith3e4c6c42011-05-05 21:57:07 +0000534 TypeAlias = ParseTypeName(0, TemplateInfo.Kind ?
535 Declarator::AliasTemplateContext :
Richard Smithc89edf52011-07-01 19:46:12 +0000536 Declarator::AliasDeclContext, 0, AS, OwnedType);
Richard Smith162e1c12011-04-15 14:24:37 +0000537 } else
538 // Parse (optional) attributes (most likely GNU strong-using extension).
539 MaybeParseGNUAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +0000540
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000541 // Eat ';'.
542 DeclEnd = Tok.getLocation();
543 ExpectAndConsume(tok::semi, diag::err_expected_semi_after,
Richard Smith162e1c12011-04-15 14:24:37 +0000544 !attrs.empty() ? "attributes list" :
545 IsAliasDecl ? "alias declaration" : "using declaration",
Douglas Gregor12c118a2009-11-04 16:30:06 +0000546 tok::semi);
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000547
John McCall78b81052010-11-10 02:40:36 +0000548 // Diagnose an attempt to declare a templated using-declaration.
Richard Smith3e4c6c42011-05-05 21:57:07 +0000549 // In C++0x, alias-declarations can be templates:
Richard Smith162e1c12011-04-15 14:24:37 +0000550 // template <...> using id = type;
Richard Smith3e4c6c42011-05-05 21:57:07 +0000551 if (TemplateInfo.Kind && !IsAliasDecl) {
John McCall78b81052010-11-10 02:40:36 +0000552 SourceRange R = TemplateInfo.getSourceRange();
553 Diag(UsingLoc, diag::err_templated_using_declaration)
554 << R << FixItHint::CreateRemoval(R);
555
556 // Unfortunately, we have to bail out instead of recovering by
557 // ignoring the parameters, just in case the nested name specifier
558 // depends on the parameters.
559 return 0;
560 }
561
Richard Smith3e4c6c42011-05-05 21:57:07 +0000562 if (IsAliasDecl) {
563 TemplateParameterLists *TemplateParams = TemplateInfo.TemplateParams;
564 MultiTemplateParamsArg TemplateParamsArg(Actions,
565 TemplateParams ? TemplateParams->data() : 0,
566 TemplateParams ? TemplateParams->size() : 0);
567 return Actions.ActOnAliasDeclaration(getCurScope(), AS, TemplateParamsArg,
568 UsingLoc, Name, TypeAlias);
569 }
Richard Smith162e1c12011-04-15 14:24:37 +0000570
Ted Kremenek8113ecf2010-11-10 05:59:39 +0000571 return Actions.ActOnUsingDeclaration(getCurScope(), AS, true, UsingLoc, SS,
John McCall7f040a92010-12-24 02:08:15 +0000572 Name, attrs.getList(),
573 IsTypeName, TypenameLoc);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000574}
575
Peter Collingbournec6eb44b2011-04-15 00:35:57 +0000576/// ParseStaticAssertDeclaration - Parse C++0x or C1X static_assert-declaration.
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000577///
Peter Collingbournec6eb44b2011-04-15 00:35:57 +0000578/// [C++0x] static_assert-declaration:
579/// static_assert ( constant-expression , string-literal ) ;
580///
581/// [C1X] static_assert-declaration:
582/// _Static_assert ( constant-expression , string-literal ) ;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000583///
John McCalld226f652010-08-21 09:40:31 +0000584Decl *Parser::ParseStaticAssertDeclaration(SourceLocation &DeclEnd){
Peter Collingbournec6eb44b2011-04-15 00:35:57 +0000585 assert((Tok.is(tok::kw_static_assert) || Tok.is(tok::kw__Static_assert)) &&
586 "Not a static_assert declaration");
587
588 if (Tok.is(tok::kw__Static_assert) && !getLang().C1X)
589 Diag(Tok, diag::ext_c1x_static_assert);
590
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000591 SourceLocation StaticAssertLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000592
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000593 if (Tok.isNot(tok::l_paren)) {
594 Diag(Tok, diag::err_expected_lparen);
John McCalld226f652010-08-21 09:40:31 +0000595 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000596 }
Mike Stump1eb44332009-09-09 15:08:12 +0000597
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000598 SourceLocation LParenLoc = ConsumeParen();
Douglas Gregore0762c92009-06-19 23:52:42 +0000599
John McCall60d7b3a2010-08-24 06:29:42 +0000600 ExprResult AssertExpr(ParseConstantExpression());
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000601 if (AssertExpr.isInvalid()) {
602 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000603 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000604 }
Mike Stump1eb44332009-09-09 15:08:12 +0000605
Anders Carlssonad5f9602009-03-13 23:29:20 +0000606 if (ExpectAndConsume(tok::comma, diag::err_expected_comma, "", tok::semi))
John McCalld226f652010-08-21 09:40:31 +0000607 return 0;
Anders Carlssonad5f9602009-03-13 23:29:20 +0000608
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000609 if (Tok.isNot(tok::string_literal)) {
610 Diag(Tok, diag::err_expected_string_literal);
611 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000612 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000613 }
Mike Stump1eb44332009-09-09 15:08:12 +0000614
John McCall60d7b3a2010-08-24 06:29:42 +0000615 ExprResult AssertMessage(ParseStringLiteralExpression());
Mike Stump1eb44332009-09-09 15:08:12 +0000616 if (AssertMessage.isInvalid())
John McCalld226f652010-08-21 09:40:31 +0000617 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000618
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000619 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000620
Chris Lattner97144fc2009-04-02 04:16:50 +0000621 DeclEnd = Tok.getLocation();
Douglas Gregor9ba23b42010-09-07 15:23:11 +0000622 ExpectAndConsumeSemi(diag::err_expected_semi_after_static_assert);
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000623
John McCall9ae2f072010-08-23 23:25:46 +0000624 return Actions.ActOnStaticAssertDeclaration(StaticAssertLoc,
625 AssertExpr.take(),
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000626 AssertMessage.take(),
627 RParenLoc);
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000628}
629
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000630/// ParseDecltypeSpecifier - Parse a C++0x decltype specifier.
631///
632/// 'decltype' ( expression )
633///
634void Parser::ParseDecltypeSpecifier(DeclSpec &DS) {
635 assert(Tok.is(tok::kw_decltype) && "Not a decltype specifier");
636
637 SourceLocation StartLoc = ConsumeToken();
638 SourceLocation LParenLoc = Tok.getLocation();
Mike Stump1eb44332009-09-09 15:08:12 +0000639
640 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after,
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000641 "decltype")) {
642 SkipUntil(tok::r_paren);
643 return;
644 }
Mike Stump1eb44332009-09-09 15:08:12 +0000645
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000646 // Parse the expression
Mike Stump1eb44332009-09-09 15:08:12 +0000647
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000648 // C++0x [dcl.type.simple]p4:
649 // The operand of the decltype specifier is an unevaluated operand.
650 EnterExpressionEvaluationContext Unevaluated(Actions,
John McCallf312b1e2010-08-26 23:41:50 +0000651 Sema::Unevaluated);
John McCall60d7b3a2010-08-24 06:29:42 +0000652 ExprResult Result = ParseExpression();
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000653 if (Result.isInvalid()) {
654 SkipUntil(tok::r_paren);
655 return;
656 }
Mike Stump1eb44332009-09-09 15:08:12 +0000657
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000658 // Match the ')'
659 SourceLocation RParenLoc;
660 if (Tok.is(tok::r_paren))
661 RParenLoc = ConsumeParen();
662 else
663 MatchRHSPunctuation(tok::r_paren, LParenLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000664
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000665 if (RParenLoc.isInvalid())
666 return;
667
668 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +0000669 unsigned DiagID;
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000670 // Check for duplicate type specifiers (e.g. "int decltype(a)").
Mike Stump1eb44332009-09-09 15:08:12 +0000671 if (DS.SetTypeSpecType(DeclSpec::TST_decltype, StartLoc, PrevSpec,
John McCallfec54012009-08-03 20:12:06 +0000672 DiagID, Result.release()))
673 Diag(StartLoc, DiagID) << PrevSpec;
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000674}
675
Sean Huntdb5d44b2011-05-19 05:37:45 +0000676void Parser::ParseUnderlyingTypeSpecifier(DeclSpec &DS) {
677 assert(Tok.is(tok::kw___underlying_type) &&
678 "Not an underlying type specifier");
679
680 SourceLocation StartLoc = ConsumeToken();
681 SourceLocation LParenLoc = Tok.getLocation();
682
683 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after,
684 "__underlying_type")) {
685 SkipUntil(tok::r_paren);
686 return;
687 }
688
689 TypeResult Result = ParseTypeName();
690 if (Result.isInvalid()) {
691 SkipUntil(tok::r_paren);
692 return;
693 }
694
695 // Match the ')'
696 SourceLocation RParenLoc;
697 if (Tok.is(tok::r_paren))
698 RParenLoc = ConsumeParen();
699 else
700 MatchRHSPunctuation(tok::r_paren, LParenLoc);
701
702 if (RParenLoc.isInvalid())
703 return;
704
705 const char *PrevSpec = 0;
706 unsigned DiagID;
Sean Huntca63c202011-05-24 22:41:36 +0000707 if (DS.SetTypeSpecType(DeclSpec::TST_underlyingType, StartLoc, PrevSpec,
Sean Huntdb5d44b2011-05-19 05:37:45 +0000708 DiagID, Result.release()))
709 Diag(StartLoc, DiagID) << PrevSpec;
710}
711
Douglas Gregor42a552f2008-11-05 20:51:48 +0000712/// ParseClassName - Parse a C++ class-name, which names a class. Note
713/// that we only check that the result names a type; semantic analysis
714/// will need to verify that the type names a class. The result is
Douglas Gregor7f43d672009-02-25 23:52:28 +0000715/// either a type or NULL, depending on whether a type name was
Douglas Gregor42a552f2008-11-05 20:51:48 +0000716/// found.
717///
718/// class-name: [C++ 9.1]
719/// identifier
Douglas Gregor7f43d672009-02-25 23:52:28 +0000720/// simple-template-id
Mike Stump1eb44332009-09-09 15:08:12 +0000721///
Douglas Gregor31a19b62009-04-01 21:51:26 +0000722Parser::TypeResult Parser::ParseClassName(SourceLocation &EndLocation,
Douglas Gregor059101f2011-03-02 00:47:37 +0000723 CXXScopeSpec &SS) {
Douglas Gregor7f43d672009-02-25 23:52:28 +0000724 // Check whether we have a template-id that names a type.
725 if (Tok.is(tok::annot_template_id)) {
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +0000726 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregord9b600c2010-01-12 17:52:59 +0000727 if (TemplateId->Kind == TNK_Type_template ||
728 TemplateId->Kind == TNK_Dependent_template_name) {
Douglas Gregor059101f2011-03-02 00:47:37 +0000729 AnnotateTemplateIdTokenAsType();
Douglas Gregor7f43d672009-02-25 23:52:28 +0000730
731 assert(Tok.is(tok::annot_typename) && "template-id -> type failed");
John McCallb3d87482010-08-24 05:47:05 +0000732 ParsedType Type = getTypeAnnotation(Tok);
Douglas Gregor7f43d672009-02-25 23:52:28 +0000733 EndLocation = Tok.getAnnotationEndLoc();
734 ConsumeToken();
Douglas Gregor31a19b62009-04-01 21:51:26 +0000735
736 if (Type)
737 return Type;
738 return true;
Douglas Gregor7f43d672009-02-25 23:52:28 +0000739 }
740
741 // Fall through to produce an error below.
742 }
743
Douglas Gregor42a552f2008-11-05 20:51:48 +0000744 if (Tok.isNot(tok::identifier)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000745 Diag(Tok, diag::err_expected_class_name);
Douglas Gregor31a19b62009-04-01 21:51:26 +0000746 return true;
Douglas Gregor42a552f2008-11-05 20:51:48 +0000747 }
748
Douglas Gregor84d0a192010-01-12 21:28:44 +0000749 IdentifierInfo *Id = Tok.getIdentifierInfo();
750 SourceLocation IdLoc = ConsumeToken();
751
752 if (Tok.is(tok::less)) {
753 // It looks the user intended to write a template-id here, but the
754 // template-name was wrong. Try to fix that.
755 TemplateNameKind TNK = TNK_Type_template;
756 TemplateTy Template;
Douglas Gregor23c94db2010-07-02 17:43:08 +0000757 if (!Actions.DiagnoseUnknownTemplateName(*Id, IdLoc, getCurScope(),
Douglas Gregor059101f2011-03-02 00:47:37 +0000758 &SS, Template, TNK)) {
Douglas Gregor84d0a192010-01-12 21:28:44 +0000759 Diag(IdLoc, diag::err_unknown_template_name)
760 << Id;
761 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000762
Douglas Gregor84d0a192010-01-12 21:28:44 +0000763 if (!Template)
764 return true;
765
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000766 // Form the template name
Douglas Gregor84d0a192010-01-12 21:28:44 +0000767 UnqualifiedId TemplateName;
768 TemplateName.setIdentifier(Id, IdLoc);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000769
Douglas Gregor84d0a192010-01-12 21:28:44 +0000770 // Parse the full template-id, then turn it into a type.
771 if (AnnotateTemplateIdToken(Template, TNK, SS, TemplateName,
772 SourceLocation(), true))
773 return true;
774 if (TNK == TNK_Dependent_template_name)
Douglas Gregor059101f2011-03-02 00:47:37 +0000775 AnnotateTemplateIdTokenAsType();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000776
Douglas Gregor84d0a192010-01-12 21:28:44 +0000777 // If we didn't end up with a typename token, there's nothing more we
778 // can do.
779 if (Tok.isNot(tok::annot_typename))
780 return true;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000781
Douglas Gregor84d0a192010-01-12 21:28:44 +0000782 // Retrieve the type from the annotation token, consume that token, and
783 // return.
784 EndLocation = Tok.getAnnotationEndLoc();
John McCallb3d87482010-08-24 05:47:05 +0000785 ParsedType Type = getTypeAnnotation(Tok);
Douglas Gregor84d0a192010-01-12 21:28:44 +0000786 ConsumeToken();
787 return Type;
788 }
789
Douglas Gregor42a552f2008-11-05 20:51:48 +0000790 // We have an identifier; check whether it is actually a type.
Douglas Gregor059101f2011-03-02 00:47:37 +0000791 ParsedType Type = Actions.getTypeName(*Id, IdLoc, getCurScope(), &SS, true,
Douglas Gregor9e876872011-03-01 18:12:44 +0000792 false, ParsedType(),
793 /*NonTrivialTypeSourceInfo=*/true);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000794 if (!Type) {
Douglas Gregor124b8782010-02-16 19:09:40 +0000795 Diag(IdLoc, diag::err_expected_class_name);
Douglas Gregor31a19b62009-04-01 21:51:26 +0000796 return true;
Douglas Gregor42a552f2008-11-05 20:51:48 +0000797 }
798
799 // Consume the identifier.
Douglas Gregor84d0a192010-01-12 21:28:44 +0000800 EndLocation = IdLoc;
Nick Lewycky56062202010-07-26 16:56:01 +0000801
802 // Fake up a Declarator to use with ActOnTypeName.
John McCall0b7e6782011-03-24 11:26:52 +0000803 DeclSpec DS(AttrFactory);
Nick Lewycky56062202010-07-26 16:56:01 +0000804 DS.SetRangeStart(IdLoc);
805 DS.SetRangeEnd(EndLocation);
Douglas Gregor059101f2011-03-02 00:47:37 +0000806 DS.getTypeSpecScope() = SS;
Nick Lewycky56062202010-07-26 16:56:01 +0000807
808 const char *PrevSpec = 0;
809 unsigned DiagID;
810 DS.SetTypeSpecType(TST_typename, IdLoc, PrevSpec, DiagID, Type);
811
812 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
813 return Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
Douglas Gregor42a552f2008-11-05 20:51:48 +0000814}
815
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000816/// ParseClassSpecifier - Parse a C++ class-specifier [C++ class] or
817/// elaborated-type-specifier [C++ dcl.type.elab]; we can't tell which
818/// until we reach the start of a definition or see a token that
Sebastian Redld9bafa72010-02-03 21:21:43 +0000819/// cannot start a definition. If SuppressDeclarations is true, we do know.
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000820///
821/// class-specifier: [C++ class]
822/// class-head '{' member-specification[opt] '}'
823/// class-head '{' member-specification[opt] '}' attributes[opt]
824/// class-head:
825/// class-key identifier[opt] base-clause[opt]
826/// class-key nested-name-specifier identifier base-clause[opt]
827/// class-key nested-name-specifier[opt] simple-template-id
828/// base-clause[opt]
829/// [GNU] class-key attributes[opt] identifier[opt] base-clause[opt]
Mike Stump1eb44332009-09-09 15:08:12 +0000830/// [GNU] class-key attributes[opt] nested-name-specifier
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000831/// identifier base-clause[opt]
Mike Stump1eb44332009-09-09 15:08:12 +0000832/// [GNU] class-key attributes[opt] nested-name-specifier[opt]
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000833/// simple-template-id base-clause[opt]
834/// class-key:
835/// 'class'
836/// 'struct'
837/// 'union'
838///
839/// elaborated-type-specifier: [C++ dcl.type.elab]
Mike Stump1eb44332009-09-09 15:08:12 +0000840/// class-key ::[opt] nested-name-specifier[opt] identifier
841/// class-key ::[opt] nested-name-specifier[opt] 'template'[opt]
842/// simple-template-id
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000843///
844/// Note that the C++ class-specifier and elaborated-type-specifier,
845/// together, subsume the C99 struct-or-union-specifier:
846///
847/// struct-or-union-specifier: [C99 6.7.2.1]
848/// struct-or-union identifier[opt] '{' struct-contents '}'
849/// struct-or-union identifier
850/// [GNU] struct-or-union attributes[opt] identifier[opt] '{' struct-contents
851/// '}' attributes[opt]
852/// [GNU] struct-or-union attributes[opt] identifier
853/// struct-or-union:
854/// 'struct'
855/// 'union'
Chris Lattner4c97d762009-04-12 21:49:30 +0000856void Parser::ParseClassSpecifier(tok::TokenKind TagTokKind,
857 SourceLocation StartLoc, DeclSpec &DS,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000858 const ParsedTemplateInfo &TemplateInfo,
Sebastian Redld9bafa72010-02-03 21:21:43 +0000859 AccessSpecifier AS, bool SuppressDeclarations){
Chris Lattner4c97d762009-04-12 21:49:30 +0000860 DeclSpec::TST TagType;
861 if (TagTokKind == tok::kw_struct)
862 TagType = DeclSpec::TST_struct;
863 else if (TagTokKind == tok::kw_class)
864 TagType = DeclSpec::TST_class;
865 else {
866 assert(TagTokKind == tok::kw_union && "Not a class specifier");
867 TagType = DeclSpec::TST_union;
868 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000869
Douglas Gregor374929f2009-09-18 15:37:17 +0000870 if (Tok.is(tok::code_completion)) {
871 // Code completion for a struct, class, or union name.
Douglas Gregor23c94db2010-07-02 17:43:08 +0000872 Actions.CodeCompleteTag(getCurScope(), TagType);
Douglas Gregordc845342010-05-25 05:58:43 +0000873 ConsumeCodeCompletionToken();
Douglas Gregor374929f2009-09-18 15:37:17 +0000874 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000875
Chandler Carruth926c4b42010-06-28 08:39:25 +0000876 // C++03 [temp.explicit] 14.7.2/8:
877 // The usual access checking rules do not apply to names used to specify
878 // explicit instantiations.
879 //
880 // As an extension we do not perform access checking on the names used to
881 // specify explicit specializations either. This is important to allow
882 // specializing traits classes for private types.
883 bool SuppressingAccessChecks = false;
884 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation ||
885 TemplateInfo.Kind == ParsedTemplateInfo::ExplicitSpecialization) {
886 Actions.ActOnStartSuppressingAccessChecks();
887 SuppressingAccessChecks = true;
888 }
889
John McCall0b7e6782011-03-24 11:26:52 +0000890 ParsedAttributes attrs(AttrFactory);
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000891 // If attributes exist after tag, parse them.
892 if (Tok.is(tok::kw___attribute))
John McCall7f040a92010-12-24 02:08:15 +0000893 ParseGNUAttributes(attrs);
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000894
Steve Narofff59e17e2008-12-24 20:59:21 +0000895 // If declspecs exist after tag, parse them.
John McCallb1d397c2010-08-05 17:13:11 +0000896 while (Tok.is(tok::kw___declspec))
John McCall7f040a92010-12-24 02:08:15 +0000897 ParseMicrosoftDeclSpec(attrs);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000898
Sean Huntbbd37c62009-11-21 08:43:09 +0000899 // If C++0x attributes exist here, parse them.
900 // FIXME: Are we consistent with the ordering of parsing of different
901 // styles of attributes?
John McCall7f040a92010-12-24 02:08:15 +0000902 MaybeParseCXX0XAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +0000903
John Wiegley20c0da72011-04-27 23:09:49 +0000904 if (TagType == DeclSpec::TST_struct &&
Douglas Gregorb467cda2011-04-29 15:31:39 +0000905 !Tok.is(tok::identifier) &&
906 Tok.getIdentifierInfo() &&
907 (Tok.is(tok::kw___is_arithmetic) ||
908 Tok.is(tok::kw___is_convertible) ||
John Wiegley20c0da72011-04-27 23:09:49 +0000909 Tok.is(tok::kw___is_empty) ||
Douglas Gregorb467cda2011-04-29 15:31:39 +0000910 Tok.is(tok::kw___is_floating_point) ||
911 Tok.is(tok::kw___is_function) ||
John Wiegley20c0da72011-04-27 23:09:49 +0000912 Tok.is(tok::kw___is_fundamental) ||
Douglas Gregorb467cda2011-04-29 15:31:39 +0000913 Tok.is(tok::kw___is_integral) ||
914 Tok.is(tok::kw___is_member_function_pointer) ||
915 Tok.is(tok::kw___is_member_pointer) ||
916 Tok.is(tok::kw___is_pod) ||
917 Tok.is(tok::kw___is_pointer) ||
918 Tok.is(tok::kw___is_same) ||
Douglas Gregor877222e2011-04-29 01:38:03 +0000919 Tok.is(tok::kw___is_scalar) ||
Douglas Gregorb467cda2011-04-29 15:31:39 +0000920 Tok.is(tok::kw___is_signed) ||
921 Tok.is(tok::kw___is_unsigned) ||
922 Tok.is(tok::kw___is_void))) {
Douglas Gregor68876142011-07-30 07:01:49 +0000923 // GNU libstdc++ 4.2 and libc++ use certain intrinsic names as the
Douglas Gregorb467cda2011-04-29 15:31:39 +0000924 // name of struct templates, but some are keywords in GCC >= 4.3
925 // and Clang. Therefore, when we see the token sequence "struct
926 // X", make X into a normal identifier rather than a keyword, to
927 // allow libstdc++ 4.2 and libc++ to work properly.
Argyrios Kyrtzidis646395b2010-08-11 22:55:12 +0000928 Tok.getIdentifierInfo()->RevertTokenIDToIdentifier();
Douglas Gregorb117a602009-09-04 05:53:02 +0000929 Tok.setKind(tok::identifier);
930 }
Mike Stump1eb44332009-09-09 15:08:12 +0000931
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000932 // Parse the (optional) nested-name-specifier.
John McCallaa87d332009-12-12 11:40:51 +0000933 CXXScopeSpec &SS = DS.getTypeSpecScope();
Chris Lattner08d92ec2009-12-10 00:32:41 +0000934 if (getLang().CPlusPlus) {
935 // "FOO : BAR" is not a potential typo for "FOO::BAR".
936 ColonProtectionRAIIObject X(*this);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000937
John McCallb3d87482010-08-24 05:47:05 +0000938 if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(), true))
John McCall207014e2010-07-30 06:26:29 +0000939 DS.SetTypeSpecError();
John McCall9ba61662010-02-26 08:45:28 +0000940 if (SS.isSet())
Chris Lattner08d92ec2009-12-10 00:32:41 +0000941 if (Tok.isNot(tok::identifier) && Tok.isNot(tok::annot_template_id))
942 Diag(Tok, diag::err_expected_ident);
943 }
Douglas Gregorcc636682009-02-17 23:15:12 +0000944
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000945 TemplateParameterLists *TemplateParams = TemplateInfo.TemplateParams;
946
Douglas Gregorcc636682009-02-17 23:15:12 +0000947 // Parse the (optional) class name or simple-template-id.
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000948 IdentifierInfo *Name = 0;
949 SourceLocation NameLoc;
Douglas Gregor39a8de12009-02-25 19:37:18 +0000950 TemplateIdAnnotation *TemplateId = 0;
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000951 if (Tok.is(tok::identifier)) {
952 Name = Tok.getIdentifierInfo();
953 NameLoc = ConsumeToken();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000954
Douglas Gregor5ee37342010-05-30 22:30:21 +0000955 if (Tok.is(tok::less) && getLang().CPlusPlus) {
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000956 // The name was supposed to refer to a template, but didn't.
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000957 // Eat the template argument list and try to continue parsing this as
958 // a class (or template thereof).
959 TemplateArgList TemplateArgs;
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000960 SourceLocation LAngleLoc, RAngleLoc;
Douglas Gregor059101f2011-03-02 00:47:37 +0000961 if (ParseTemplateIdAfterTemplateName(TemplateTy(), NameLoc, SS,
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000962 true, LAngleLoc,
Douglas Gregor314b97f2009-11-10 19:49:08 +0000963 TemplateArgs, RAngleLoc)) {
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000964 // We couldn't parse the template argument list at all, so don't
965 // try to give any location information for the list.
966 LAngleLoc = RAngleLoc = SourceLocation();
967 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000968
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000969 Diag(NameLoc, diag::err_explicit_spec_non_template)
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000970 << (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation)
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000971 << (TagType == DeclSpec::TST_class? 0
972 : TagType == DeclSpec::TST_struct? 1
973 : 2)
974 << Name
975 << SourceRange(LAngleLoc, RAngleLoc);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000976
977 // Strip off the last template parameter list if it was empty, since
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000978 // we've removed its template argument list.
979 if (TemplateParams && TemplateInfo.LastParameterListWasEmpty) {
980 if (TemplateParams && TemplateParams->size() > 1) {
981 TemplateParams->pop_back();
982 } else {
983 TemplateParams = 0;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000984 const_cast<ParsedTemplateInfo&>(TemplateInfo).Kind
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000985 = ParsedTemplateInfo::NonTemplate;
986 }
987 } else if (TemplateInfo.Kind
988 == ParsedTemplateInfo::ExplicitInstantiation) {
989 // Pretend this is just a forward declaration.
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000990 TemplateParams = 0;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000991 const_cast<ParsedTemplateInfo&>(TemplateInfo).Kind
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000992 = ParsedTemplateInfo::NonTemplate;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000993 const_cast<ParsedTemplateInfo&>(TemplateInfo).TemplateLoc
Douglas Gregorc78c06d2009-10-30 22:09:44 +0000994 = SourceLocation();
995 const_cast<ParsedTemplateInfo&>(TemplateInfo).ExternLoc
996 = SourceLocation();
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000997 }
Douglas Gregor2cc782f2009-10-30 21:46:58 +0000998 }
Douglas Gregor39a8de12009-02-25 19:37:18 +0000999 } else if (Tok.is(tok::annot_template_id)) {
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +00001000 TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregor39a8de12009-02-25 19:37:18 +00001001 NameLoc = ConsumeToken();
Douglas Gregorcc636682009-02-17 23:15:12 +00001002
Douglas Gregor059101f2011-03-02 00:47:37 +00001003 if (TemplateId->Kind != TNK_Type_template &&
1004 TemplateId->Kind != TNK_Dependent_template_name) {
Douglas Gregor39a8de12009-02-25 19:37:18 +00001005 // The template-name in the simple-template-id refers to
1006 // something other than a class template. Give an appropriate
1007 // error message and skip to the ';'.
1008 SourceRange Range(NameLoc);
1009 if (SS.isNotEmpty())
1010 Range.setBegin(SS.getBeginLoc());
Douglas Gregorcc636682009-02-17 23:15:12 +00001011
Douglas Gregor39a8de12009-02-25 19:37:18 +00001012 Diag(TemplateId->LAngleLoc, diag::err_template_spec_syntax_non_template)
1013 << Name << static_cast<int>(TemplateId->Kind) << Range;
Mike Stump1eb44332009-09-09 15:08:12 +00001014
Douglas Gregor39a8de12009-02-25 19:37:18 +00001015 DS.SetTypeSpecError();
1016 SkipUntil(tok::semi, false, true);
Chandler Carruth926c4b42010-06-28 08:39:25 +00001017 if (SuppressingAccessChecks)
1018 Actions.ActOnStopSuppressingAccessChecks();
1019
Douglas Gregor39a8de12009-02-25 19:37:18 +00001020 return;
Douglas Gregorcc636682009-02-17 23:15:12 +00001021 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001022 }
1023
Chandler Carruth926c4b42010-06-28 08:39:25 +00001024 // As soon as we're finished parsing the class's template-id, turn access
1025 // checking back on.
1026 if (SuppressingAccessChecks)
1027 Actions.ActOnStopSuppressingAccessChecks();
1028
John McCall67d1a672009-08-06 02:15:43 +00001029 // There are four options here. If we have 'struct foo;', then this
1030 // is either a forward declaration or a friend declaration, which
Anders Carlssoncc54d592011-01-22 16:56:46 +00001031 // have to be treated differently. If we have 'struct foo {...',
Anders Carlsson1d209272011-03-25 14:55:14 +00001032 // 'struct foo :...' or 'struct foo final[opt]' then this is a
Anders Carlssoncc54d592011-01-22 16:56:46 +00001033 // definition. Otherwise we have something like 'struct foo xyz', a reference.
Sebastian Redld9bafa72010-02-03 21:21:43 +00001034 // However, in some contexts, things look like declarations but are just
1035 // references, e.g.
1036 // new struct s;
1037 // or
1038 // &T::operator struct s;
1039 // For these, SuppressDeclarations is true.
John McCallf312b1e2010-08-26 23:41:50 +00001040 Sema::TagUseKind TUK;
Sebastian Redld9bafa72010-02-03 21:21:43 +00001041 if (SuppressDeclarations)
John McCallf312b1e2010-08-26 23:41:50 +00001042 TUK = Sema::TUK_Reference;
Anders Carlssoncc54d592011-01-22 16:56:46 +00001043 else if (Tok.is(tok::l_brace) ||
1044 (getLang().CPlusPlus && Tok.is(tok::colon)) ||
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001045 isCXX0XFinalKeyword()) {
Douglas Gregord85bea22009-09-26 06:47:28 +00001046 if (DS.isFriendSpecified()) {
1047 // C++ [class.friend]p2:
1048 // A class shall not be defined in a friend declaration.
1049 Diag(Tok.getLocation(), diag::err_friend_decl_defines_class)
1050 << SourceRange(DS.getFriendSpecLoc());
1051
1052 // Skip everything up to the semicolon, so that this looks like a proper
1053 // friend class (or template thereof) declaration.
1054 SkipUntil(tok::semi, true, true);
John McCallf312b1e2010-08-26 23:41:50 +00001055 TUK = Sema::TUK_Friend;
Douglas Gregord85bea22009-09-26 06:47:28 +00001056 } else {
1057 // Okay, this is a class definition.
John McCallf312b1e2010-08-26 23:41:50 +00001058 TUK = Sema::TUK_Definition;
Douglas Gregord85bea22009-09-26 06:47:28 +00001059 }
1060 } else if (Tok.is(tok::semi))
John McCallf312b1e2010-08-26 23:41:50 +00001061 TUK = DS.isFriendSpecified() ? Sema::TUK_Friend : Sema::TUK_Declaration;
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001062 else
John McCallf312b1e2010-08-26 23:41:50 +00001063 TUK = Sema::TUK_Reference;
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001064
John McCall207014e2010-07-30 06:26:29 +00001065 if (!Name && !TemplateId && (DS.getTypeSpecType() == DeclSpec::TST_error ||
John McCallf312b1e2010-08-26 23:41:50 +00001066 TUK != Sema::TUK_Definition)) {
John McCall207014e2010-07-30 06:26:29 +00001067 if (DS.getTypeSpecType() != DeclSpec::TST_error) {
1068 // We have a declaration or reference to an anonymous class.
1069 Diag(StartLoc, diag::err_anon_type_definition)
1070 << DeclSpec::getSpecifierName(TagType);
1071 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001072
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001073 SkipUntil(tok::comma, true);
1074 return;
1075 }
1076
Douglas Gregorddc29e12009-02-06 22:42:48 +00001077 // Create the tag portion of the class or class template.
John McCalld226f652010-08-21 09:40:31 +00001078 DeclResult TagOrTempResult = true; // invalid
1079 TypeResult TypeResult = true; // invalid
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001080
Douglas Gregor402abb52009-05-28 23:31:59 +00001081 bool Owned = false;
John McCallf1bbbb42009-09-04 01:14:41 +00001082 if (TemplateId) {
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001083 // Explicit specialization, class template partial specialization,
1084 // or explicit instantiation.
Mike Stump1eb44332009-09-09 15:08:12 +00001085 ASTTemplateArgsPtr TemplateArgsPtr(Actions,
Douglas Gregor39a8de12009-02-25 19:37:18 +00001086 TemplateId->getTemplateArgs(),
Douglas Gregor39a8de12009-02-25 19:37:18 +00001087 TemplateId->NumArgs);
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001088 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallf312b1e2010-08-26 23:41:50 +00001089 TUK == Sema::TUK_Declaration) {
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001090 // This is an explicit instantiation of a class template.
1091 TagOrTempResult
Douglas Gregor23c94db2010-07-02 17:43:08 +00001092 = Actions.ActOnExplicitInstantiation(getCurScope(),
Douglas Gregor45f96552009-09-04 06:33:52 +00001093 TemplateInfo.ExternLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001094 TemplateInfo.TemplateLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001095 TagType,
Mike Stump1eb44332009-09-09 15:08:12 +00001096 StartLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001097 SS,
John McCall2b5289b2010-08-23 07:28:44 +00001098 TemplateId->Template,
Mike Stump1eb44332009-09-09 15:08:12 +00001099 TemplateId->TemplateNameLoc,
1100 TemplateId->LAngleLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001101 TemplateArgsPtr,
Mike Stump1eb44332009-09-09 15:08:12 +00001102 TemplateId->RAngleLoc,
John McCall7f040a92010-12-24 02:08:15 +00001103 attrs.getList());
John McCall74256f52010-04-14 00:24:33 +00001104
1105 // Friend template-ids are treated as references unless
1106 // they have template headers, in which case they're ill-formed
1107 // (FIXME: "template <class T> friend class A<T>::B<int>;").
1108 // We diagnose this error in ActOnClassTemplateSpecialization.
John McCallf312b1e2010-08-26 23:41:50 +00001109 } else if (TUK == Sema::TUK_Reference ||
1110 (TUK == Sema::TUK_Friend &&
John McCall74256f52010-04-14 00:24:33 +00001111 TemplateInfo.Kind == ParsedTemplateInfo::NonTemplate)) {
Douglas Gregor059101f2011-03-02 00:47:37 +00001112 TypeResult = Actions.ActOnTagTemplateIdType(TUK, TagType,
1113 StartLoc,
1114 TemplateId->SS,
1115 TemplateId->Template,
1116 TemplateId->TemplateNameLoc,
1117 TemplateId->LAngleLoc,
1118 TemplateArgsPtr,
1119 TemplateId->RAngleLoc);
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001120 } else {
1121 // This is an explicit specialization or a class template
1122 // partial specialization.
1123 TemplateParameterLists FakedParamLists;
1124
1125 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation) {
1126 // This looks like an explicit instantiation, because we have
1127 // something like
1128 //
1129 // template class Foo<X>
1130 //
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001131 // but it actually has a definition. Most likely, this was
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001132 // meant to be an explicit specialization, but the user forgot
1133 // the '<>' after 'template'.
John McCallf312b1e2010-08-26 23:41:50 +00001134 assert(TUK == Sema::TUK_Definition && "Expected a definition here");
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001135
Mike Stump1eb44332009-09-09 15:08:12 +00001136 SourceLocation LAngleLoc
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001137 = PP.getLocForEndOfToken(TemplateInfo.TemplateLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00001138 Diag(TemplateId->TemplateNameLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001139 diag::err_explicit_instantiation_with_definition)
1140 << SourceRange(TemplateInfo.TemplateLoc)
Douglas Gregor849b2432010-03-31 17:46:05 +00001141 << FixItHint::CreateInsertion(LAngleLoc, "<>");
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001142
1143 // Create a fake template parameter list that contains only
1144 // "template<>", so that we treat this construct as a class
1145 // template specialization.
1146 FakedParamLists.push_back(
Mike Stump1eb44332009-09-09 15:08:12 +00001147 Actions.ActOnTemplateParameterList(0, SourceLocation(),
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001148 TemplateInfo.TemplateLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001149 LAngleLoc,
1150 0, 0,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001151 LAngleLoc));
1152 TemplateParams = &FakedParamLists;
1153 }
1154
1155 // Build the class template specialization.
1156 TagOrTempResult
Douglas Gregor23c94db2010-07-02 17:43:08 +00001157 = Actions.ActOnClassTemplateSpecialization(getCurScope(), TagType, TUK,
Douglas Gregor39a8de12009-02-25 19:37:18 +00001158 StartLoc, SS,
John McCall2b5289b2010-08-23 07:28:44 +00001159 TemplateId->Template,
Mike Stump1eb44332009-09-09 15:08:12 +00001160 TemplateId->TemplateNameLoc,
1161 TemplateId->LAngleLoc,
Douglas Gregor39a8de12009-02-25 19:37:18 +00001162 TemplateArgsPtr,
Mike Stump1eb44332009-09-09 15:08:12 +00001163 TemplateId->RAngleLoc,
John McCall7f040a92010-12-24 02:08:15 +00001164 attrs.getList(),
John McCallf312b1e2010-08-26 23:41:50 +00001165 MultiTemplateParamsArg(Actions,
Douglas Gregorcc636682009-02-17 23:15:12 +00001166 TemplateParams? &(*TemplateParams)[0] : 0,
1167 TemplateParams? TemplateParams->size() : 0));
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001168 }
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001169 } else if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallf312b1e2010-08-26 23:41:50 +00001170 TUK == Sema::TUK_Declaration) {
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001171 // Explicit instantiation of a member of a class template
1172 // specialization, e.g.,
1173 //
1174 // template struct Outer<int>::Inner;
1175 //
1176 TagOrTempResult
Douglas Gregor23c94db2010-07-02 17:43:08 +00001177 = Actions.ActOnExplicitInstantiation(getCurScope(),
Douglas Gregor45f96552009-09-04 06:33:52 +00001178 TemplateInfo.ExternLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001179 TemplateInfo.TemplateLoc,
1180 TagType, StartLoc, SS, Name,
John McCall7f040a92010-12-24 02:08:15 +00001181 NameLoc, attrs.getList());
John McCall9a34edb2010-10-19 01:40:49 +00001182 } else if (TUK == Sema::TUK_Friend &&
1183 TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate) {
1184 TagOrTempResult =
1185 Actions.ActOnTemplatedFriendTag(getCurScope(), DS.getFriendSpecLoc(),
1186 TagType, StartLoc, SS,
John McCall7f040a92010-12-24 02:08:15 +00001187 Name, NameLoc, attrs.getList(),
John McCall9a34edb2010-10-19 01:40:49 +00001188 MultiTemplateParamsArg(Actions,
1189 TemplateParams? &(*TemplateParams)[0] : 0,
1190 TemplateParams? TemplateParams->size() : 0));
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001191 } else {
1192 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallf312b1e2010-08-26 23:41:50 +00001193 TUK == Sema::TUK_Definition) {
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001194 // FIXME: Diagnose this particular error.
1195 }
1196
John McCallc4e70192009-09-11 04:59:25 +00001197 bool IsDependent = false;
1198
John McCalla25c4082010-10-19 18:40:57 +00001199 // Don't pass down template parameter lists if this is just a tag
1200 // reference. For example, we don't need the template parameters here:
1201 // template <class T> class A *makeA(T t);
1202 MultiTemplateParamsArg TParams;
1203 if (TUK != Sema::TUK_Reference && TemplateParams)
1204 TParams =
1205 MultiTemplateParamsArg(&(*TemplateParams)[0], TemplateParams->size());
1206
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001207 // Declaration or definition of a class type
John McCall9a34edb2010-10-19 01:40:49 +00001208 TagOrTempResult = Actions.ActOnTag(getCurScope(), TagType, TUK, StartLoc,
John McCall7f040a92010-12-24 02:08:15 +00001209 SS, Name, NameLoc, attrs.getList(), AS,
John McCalla25c4082010-10-19 18:40:57 +00001210 TParams, Owned, IsDependent, false,
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +00001211 false, clang::TypeResult());
John McCallc4e70192009-09-11 04:59:25 +00001212
1213 // If ActOnTag said the type was dependent, try again with the
1214 // less common call.
John McCall9a34edb2010-10-19 01:40:49 +00001215 if (IsDependent) {
1216 assert(TUK == Sema::TUK_Reference || TUK == Sema::TUK_Friend);
Douglas Gregor23c94db2010-07-02 17:43:08 +00001217 TypeResult = Actions.ActOnDependentTag(getCurScope(), TagType, TUK,
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001218 SS, Name, StartLoc, NameLoc);
John McCall9a34edb2010-10-19 01:40:49 +00001219 }
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001220 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001221
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001222 // If there is a body, parse it and inform the actions module.
John McCallf312b1e2010-08-26 23:41:50 +00001223 if (TUK == Sema::TUK_Definition) {
John McCallbd0dfa52009-12-19 21:48:58 +00001224 assert(Tok.is(tok::l_brace) ||
Anders Carlssoncc54d592011-01-22 16:56:46 +00001225 (getLang().CPlusPlus && Tok.is(tok::colon)) ||
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001226 isCXX0XFinalKeyword());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001227 if (getLang().CPlusPlus)
Douglas Gregor212e81c2009-03-25 00:13:59 +00001228 ParseCXXMemberSpecification(StartLoc, TagType, TagOrTempResult.get());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001229 else
Douglas Gregor212e81c2009-03-25 00:13:59 +00001230 ParseStructUnionBody(StartLoc, TagType, TagOrTempResult.get());
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001231 }
1232
John McCallb3d87482010-08-24 05:47:05 +00001233 const char *PrevSpec = 0;
1234 unsigned DiagID;
1235 bool Result;
John McCallc4e70192009-09-11 04:59:25 +00001236 if (!TypeResult.isInvalid()) {
Abramo Bagnara0daaf322011-03-16 20:16:18 +00001237 Result = DS.SetTypeSpecType(DeclSpec::TST_typename, StartLoc,
1238 NameLoc.isValid() ? NameLoc : StartLoc,
John McCallb3d87482010-08-24 05:47:05 +00001239 PrevSpec, DiagID, TypeResult.get());
John McCallc4e70192009-09-11 04:59:25 +00001240 } else if (!TagOrTempResult.isInvalid()) {
Abramo Bagnara0daaf322011-03-16 20:16:18 +00001241 Result = DS.SetTypeSpecType(TagType, StartLoc,
1242 NameLoc.isValid() ? NameLoc : StartLoc,
1243 PrevSpec, DiagID, TagOrTempResult.get(), Owned);
John McCallc4e70192009-09-11 04:59:25 +00001244 } else {
Douglas Gregorddc29e12009-02-06 22:42:48 +00001245 DS.SetTypeSpecError();
Anders Carlsson66e99772009-05-11 22:27:47 +00001246 return;
1247 }
Mike Stump1eb44332009-09-09 15:08:12 +00001248
John McCallb3d87482010-08-24 05:47:05 +00001249 if (Result)
John McCallfec54012009-08-03 20:12:06 +00001250 Diag(StartLoc, DiagID) << PrevSpec;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001251
Chris Lattner4ed5d912010-02-02 01:23:29 +00001252 // At this point, we've successfully parsed a class-specifier in 'definition'
1253 // form (e.g. "struct foo { int x; }". While we could just return here, we're
1254 // going to look at what comes after it to improve error recovery. If an
1255 // impossible token occurs next, we assume that the programmer forgot a ; at
1256 // the end of the declaration and recover that way.
1257 //
1258 // This switch enumerates the valid "follow" set for definition.
John McCallf312b1e2010-08-26 23:41:50 +00001259 if (TUK == Sema::TUK_Definition) {
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001260 bool ExpectedSemi = true;
Chris Lattner4ed5d912010-02-02 01:23:29 +00001261 switch (Tok.getKind()) {
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001262 default: break;
Chris Lattner4ed5d912010-02-02 01:23:29 +00001263 case tok::semi: // struct foo {...} ;
Chris Lattner99c95202010-02-02 17:32:27 +00001264 case tok::star: // struct foo {...} * P;
1265 case tok::amp: // struct foo {...} & R = ...
1266 case tok::identifier: // struct foo {...} V ;
1267 case tok::r_paren: //(struct foo {...} ) {4}
1268 case tok::annot_cxxscope: // struct foo {...} a:: b;
1269 case tok::annot_typename: // struct foo {...} a ::b;
1270 case tok::annot_template_id: // struct foo {...} a<int> ::b;
Chris Lattnerc2e1c1a2010-02-03 20:41:24 +00001271 case tok::l_paren: // struct foo {...} ( x);
Chris Lattner16acfee2010-02-03 01:45:03 +00001272 case tok::comma: // __builtin_offsetof(struct foo{...} ,
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001273 ExpectedSemi = false;
1274 break;
1275 // Type qualifiers
1276 case tok::kw_const: // struct foo {...} const x;
1277 case tok::kw_volatile: // struct foo {...} volatile x;
1278 case tok::kw_restrict: // struct foo {...} restrict x;
1279 case tok::kw_inline: // struct foo {...} inline foo() {};
Chris Lattner99c95202010-02-02 17:32:27 +00001280 // Storage-class specifiers
1281 case tok::kw_static: // struct foo {...} static x;
1282 case tok::kw_extern: // struct foo {...} extern x;
1283 case tok::kw_typedef: // struct foo {...} typedef x;
1284 case tok::kw_register: // struct foo {...} register x;
1285 case tok::kw_auto: // struct foo {...} auto x;
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001286 case tok::kw_mutable: // struct foo {...} mutable x;
1287 case tok::kw_constexpr: // struct foo {...} constexpr x;
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001288 // As shown above, type qualifiers and storage class specifiers absolutely
1289 // can occur after class specifiers according to the grammar. However,
Chris Lattnerfc8f0e12011-04-15 05:22:18 +00001290 // almost no one actually writes code like this. If we see one of these,
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001291 // it is much more likely that someone missed a semi colon and the
1292 // type/storage class specifier we're seeing is part of the *next*
1293 // intended declaration, as in:
1294 //
1295 // struct foo { ... }
1296 // typedef int X;
1297 //
1298 // We'd really like to emit a missing semicolon error instead of emitting
1299 // an error on the 'int' saying that you can't have two type specifiers in
1300 // the same declaration of X. Because of this, we look ahead past this
1301 // token to see if it's a type specifier. If so, we know the code is
1302 // otherwise invalid, so we can produce the expected semi error.
1303 if (!isKnownToBeTypeSpecifier(NextToken()))
1304 ExpectedSemi = false;
Chris Lattner4ed5d912010-02-02 01:23:29 +00001305 break;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001306
1307 case tok::r_brace: // struct bar { struct foo {...} }
Chris Lattner4ed5d912010-02-02 01:23:29 +00001308 // Missing ';' at end of struct is accepted as an extension in C mode.
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001309 if (!getLang().CPlusPlus)
1310 ExpectedSemi = false;
1311 break;
1312 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001313
Richard Smithcf6b0a22011-07-14 21:35:26 +00001314 // C++ [temp]p3 In a template-declaration which defines a class, no
1315 // declarator is permitted.
1316 if (TemplateInfo.Kind)
1317 ExpectedSemi = true;
1318
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001319 if (ExpectedSemi) {
Chris Lattner4ed5d912010-02-02 01:23:29 +00001320 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_tagdecl,
1321 TagType == DeclSpec::TST_class ? "class"
1322 : TagType == DeclSpec::TST_struct? "struct" : "union");
1323 // Push this token back into the preprocessor and change our current token
1324 // to ';' so that the rest of the code recovers as though there were an
1325 // ';' after the definition.
1326 PP.EnterToken(Tok);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001327 Tok.setKind(tok::semi);
Chris Lattner4ed5d912010-02-02 01:23:29 +00001328 }
1329 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001330}
1331
Mike Stump1eb44332009-09-09 15:08:12 +00001332/// ParseBaseClause - Parse the base-clause of a C++ class [C++ class.derived].
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001333///
1334/// base-clause : [C++ class.derived]
1335/// ':' base-specifier-list
1336/// base-specifier-list:
1337/// base-specifier '...'[opt]
1338/// base-specifier-list ',' base-specifier '...'[opt]
John McCalld226f652010-08-21 09:40:31 +00001339void Parser::ParseBaseClause(Decl *ClassDecl) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001340 assert(Tok.is(tok::colon) && "Not a base clause");
1341 ConsumeToken();
1342
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001343 // Build up an array of parsed base specifiers.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001344 SmallVector<CXXBaseSpecifier *, 8> BaseInfo;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001345
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001346 while (true) {
1347 // Parse a base-specifier.
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001348 BaseResult Result = ParseBaseSpecifier(ClassDecl);
Douglas Gregor5ac8aff2009-01-26 22:44:13 +00001349 if (Result.isInvalid()) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001350 // Skip the rest of this base specifier, up until the comma or
1351 // opening brace.
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001352 SkipUntil(tok::comma, tok::l_brace, true, true);
1353 } else {
1354 // Add this to our array of base specifiers.
Douglas Gregor5ac8aff2009-01-26 22:44:13 +00001355 BaseInfo.push_back(Result.get());
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001356 }
1357
1358 // If the next token is a comma, consume it and keep reading
1359 // base-specifiers.
1360 if (Tok.isNot(tok::comma)) break;
Mike Stump1eb44332009-09-09 15:08:12 +00001361
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001362 // Consume the comma.
1363 ConsumeToken();
1364 }
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001365
1366 // Attach the base specifiers
Jay Foadbeaaccd2009-05-21 09:52:38 +00001367 Actions.ActOnBaseSpecifiers(ClassDecl, BaseInfo.data(), BaseInfo.size());
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001368}
1369
1370/// ParseBaseSpecifier - Parse a C++ base-specifier. A base-specifier is
1371/// one entry in the base class list of a class specifier, for example:
1372/// class foo : public bar, virtual private baz {
1373/// 'public bar' and 'virtual private baz' are each base-specifiers.
1374///
1375/// base-specifier: [C++ class.derived]
1376/// ::[opt] nested-name-specifier[opt] class-name
1377/// 'virtual' access-specifier[opt] ::[opt] nested-name-specifier[opt]
1378/// class-name
1379/// access-specifier 'virtual'[opt] ::[opt] nested-name-specifier[opt]
1380/// class-name
John McCalld226f652010-08-21 09:40:31 +00001381Parser::BaseResult Parser::ParseBaseSpecifier(Decl *ClassDecl) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001382 bool IsVirtual = false;
1383 SourceLocation StartLoc = Tok.getLocation();
1384
1385 // Parse the 'virtual' keyword.
1386 if (Tok.is(tok::kw_virtual)) {
1387 ConsumeToken();
1388 IsVirtual = true;
1389 }
1390
1391 // Parse an (optional) access specifier.
1392 AccessSpecifier Access = getAccessSpecifierIfPresent();
John McCall92f88312010-01-23 00:46:32 +00001393 if (Access != AS_none)
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001394 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001395
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001396 // Parse the 'virtual' keyword (again!), in case it came after the
1397 // access specifier.
1398 if (Tok.is(tok::kw_virtual)) {
1399 SourceLocation VirtualLoc = ConsumeToken();
1400 if (IsVirtual) {
1401 // Complain about duplicate 'virtual'
Chris Lattner1ab3b962008-11-18 07:48:38 +00001402 Diag(VirtualLoc, diag::err_dup_virtual)
Douglas Gregor849b2432010-03-31 17:46:05 +00001403 << FixItHint::CreateRemoval(VirtualLoc);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001404 }
1405
1406 IsVirtual = true;
1407 }
1408
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001409 // Parse optional '::' and optional nested-name-specifier.
1410 CXXScopeSpec SS;
John McCallb3d87482010-08-24 05:47:05 +00001411 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), /*EnteringContext=*/false);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001412
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001413 // The location of the base class itself.
1414 SourceLocation BaseLoc = Tok.getLocation();
Douglas Gregor42a552f2008-11-05 20:51:48 +00001415
1416 // Parse the class-name.
Douglas Gregor7f43d672009-02-25 23:52:28 +00001417 SourceLocation EndLocation;
Douglas Gregor059101f2011-03-02 00:47:37 +00001418 TypeResult BaseType = ParseClassName(EndLocation, SS);
Douglas Gregor31a19b62009-04-01 21:51:26 +00001419 if (BaseType.isInvalid())
Douglas Gregor42a552f2008-11-05 20:51:48 +00001420 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001421
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001422 // Parse the optional ellipsis (for a pack expansion). The ellipsis is
1423 // actually part of the base-specifier-list grammar productions, but we
1424 // parse it here for convenience.
1425 SourceLocation EllipsisLoc;
1426 if (Tok.is(tok::ellipsis))
1427 EllipsisLoc = ConsumeToken();
1428
Mike Stump1eb44332009-09-09 15:08:12 +00001429 // Find the complete source range for the base-specifier.
Douglas Gregor7f43d672009-02-25 23:52:28 +00001430 SourceRange Range(StartLoc, EndLocation);
Mike Stump1eb44332009-09-09 15:08:12 +00001431
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001432 // Notify semantic analysis that we have parsed a complete
1433 // base-specifier.
Sebastian Redla55e52c2008-11-25 22:21:31 +00001434 return Actions.ActOnBaseSpecifier(ClassDecl, Range, IsVirtual, Access,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001435 BaseType.get(), BaseLoc, EllipsisLoc);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001436}
1437
1438/// getAccessSpecifierIfPresent - Determine whether the next token is
1439/// a C++ access-specifier.
1440///
1441/// access-specifier: [C++ class.derived]
1442/// 'private'
1443/// 'protected'
1444/// 'public'
Mike Stump1eb44332009-09-09 15:08:12 +00001445AccessSpecifier Parser::getAccessSpecifierIfPresent() const {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001446 switch (Tok.getKind()) {
1447 default: return AS_none;
1448 case tok::kw_private: return AS_private;
1449 case tok::kw_protected: return AS_protected;
1450 case tok::kw_public: return AS_public;
1451 }
1452}
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001453
Eli Friedmand33133c2009-07-22 21:45:50 +00001454void Parser::HandleMemberFunctionDefaultArgs(Declarator& DeclaratorInfo,
John McCalld226f652010-08-21 09:40:31 +00001455 Decl *ThisDecl) {
Eli Friedmand33133c2009-07-22 21:45:50 +00001456 // We just declared a member function. If this member function
1457 // has any default arguments, we'll need to parse them later.
1458 LateParsedMethodDeclaration *LateMethod = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001459 DeclaratorChunk::FunctionTypeInfo &FTI
Abramo Bagnara075f8f12010-12-10 16:29:40 +00001460 = DeclaratorInfo.getFunctionTypeInfo();
Eli Friedmand33133c2009-07-22 21:45:50 +00001461 for (unsigned ParamIdx = 0; ParamIdx < FTI.NumArgs; ++ParamIdx) {
1462 if (LateMethod || FTI.ArgInfo[ParamIdx].DefaultArgTokens) {
1463 if (!LateMethod) {
1464 // Push this method onto the stack of late-parsed method
1465 // declarations.
Douglas Gregord54eb442010-10-12 16:25:54 +00001466 LateMethod = new LateParsedMethodDeclaration(this, ThisDecl);
1467 getCurrentClass().LateParsedDeclarations.push_back(LateMethod);
Douglas Gregor23c94db2010-07-02 17:43:08 +00001468 LateMethod->TemplateScope = getCurScope()->isTemplateParamScope();
Eli Friedmand33133c2009-07-22 21:45:50 +00001469
1470 // Add all of the parameters prior to this one (they don't
1471 // have default arguments).
1472 LateMethod->DefaultArgs.reserve(FTI.NumArgs);
1473 for (unsigned I = 0; I < ParamIdx; ++I)
1474 LateMethod->DefaultArgs.push_back(
Douglas Gregor8f8210c2010-03-02 01:29:43 +00001475 LateParsedDefaultArgument(FTI.ArgInfo[I].Param));
Eli Friedmand33133c2009-07-22 21:45:50 +00001476 }
1477
1478 // Add this parameter to the list of parameters (it or may
1479 // not have a default argument).
1480 LateMethod->DefaultArgs.push_back(
1481 LateParsedDefaultArgument(FTI.ArgInfo[ParamIdx].Param,
1482 FTI.ArgInfo[ParamIdx].DefaultArgTokens));
1483 }
1484 }
1485}
1486
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001487/// isCXX0XVirtSpecifier - Determine whether the next token is a C++0x
1488/// virt-specifier.
1489///
1490/// virt-specifier:
1491/// override
1492/// final
Anders Carlssoncc54d592011-01-22 16:56:46 +00001493VirtSpecifiers::Specifier Parser::isCXX0XVirtSpecifier() const {
Anders Carlssonce93a7c2011-01-22 23:01:49 +00001494 if (!getLang().CPlusPlus)
Anders Carlssoncc54d592011-01-22 16:56:46 +00001495 return VirtSpecifiers::VS_None;
1496
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001497 if (Tok.is(tok::identifier)) {
1498 IdentifierInfo *II = Tok.getIdentifierInfo();
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001499
Anders Carlsson7eeb4ec2011-01-20 03:47:08 +00001500 // Initialize the contextual keywords.
1501 if (!Ident_final) {
1502 Ident_final = &PP.getIdentifierTable().get("final");
1503 Ident_override = &PP.getIdentifierTable().get("override");
1504 }
1505
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001506 if (II == Ident_override)
1507 return VirtSpecifiers::VS_Override;
1508
1509 if (II == Ident_final)
1510 return VirtSpecifiers::VS_Final;
1511 }
1512
1513 return VirtSpecifiers::VS_None;
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001514}
1515
1516/// ParseOptionalCXX0XVirtSpecifierSeq - Parse a virt-specifier-seq.
1517///
1518/// virt-specifier-seq:
1519/// virt-specifier
1520/// virt-specifier-seq virt-specifier
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001521void Parser::ParseOptionalCXX0XVirtSpecifierSeq(VirtSpecifiers &VS) {
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001522 while (true) {
Anders Carlssoncc54d592011-01-22 16:56:46 +00001523 VirtSpecifiers::Specifier Specifier = isCXX0XVirtSpecifier();
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001524 if (Specifier == VirtSpecifiers::VS_None)
1525 return;
1526
1527 // C++ [class.mem]p8:
1528 // A virt-specifier-seq shall contain at most one of each virt-specifier.
Anders Carlssoncc54d592011-01-22 16:56:46 +00001529 const char *PrevSpec = 0;
Anders Carlsson46127a92011-01-22 15:58:16 +00001530 if (VS.SetSpecifier(Specifier, Tok.getLocation(), PrevSpec))
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001531 Diag(Tok.getLocation(), diag::err_duplicate_virt_specifier)
1532 << PrevSpec
1533 << FixItHint::CreateRemoval(Tok.getLocation());
1534
Anders Carlssonce93a7c2011-01-22 23:01:49 +00001535 if (!getLang().CPlusPlus0x)
1536 Diag(Tok.getLocation(), diag::ext_override_control_keyword)
1537 << VirtSpecifiers::getSpecifierName(Specifier);
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001538 ConsumeToken();
1539 }
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001540}
1541
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001542/// isCXX0XFinalKeyword - Determine whether the next token is a C++0x
1543/// contextual 'final' keyword.
1544bool Parser::isCXX0XFinalKeyword() const {
Anders Carlssonce93a7c2011-01-22 23:01:49 +00001545 if (!getLang().CPlusPlus)
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001546 return false;
Anders Carlssoncc54d592011-01-22 16:56:46 +00001547
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001548 if (!Tok.is(tok::identifier))
1549 return false;
Anders Carlssoncc54d592011-01-22 16:56:46 +00001550
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001551 // Initialize the contextual keywords.
1552 if (!Ident_final) {
1553 Ident_final = &PP.getIdentifierTable().get("final");
1554 Ident_override = &PP.getIdentifierTable().get("override");
1555 }
Anders Carlssoncc54d592011-01-22 16:56:46 +00001556
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001557 return Tok.getIdentifierInfo() == Ident_final;
Anders Carlssoncc54d592011-01-22 16:56:46 +00001558}
1559
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001560/// ParseCXXClassMemberDeclaration - Parse a C++ class member declaration.
1561///
1562/// member-declaration:
1563/// decl-specifier-seq[opt] member-declarator-list[opt] ';'
1564/// function-definition ';'[opt]
1565/// ::[opt] nested-name-specifier template[opt] unqualified-id ';'[TODO]
1566/// using-declaration [TODO]
Anders Carlsson511d7ab2009-03-11 16:27:10 +00001567/// [C++0x] static_assert-declaration
Anders Carlsson5aeccdb2009-03-26 00:52:18 +00001568/// template-declaration
Chris Lattnerbc8d5642008-12-18 01:12:00 +00001569/// [GNU] '__extension__' member-declaration
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001570///
1571/// member-declarator-list:
1572/// member-declarator
1573/// member-declarator-list ',' member-declarator
1574///
1575/// member-declarator:
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001576/// declarator virt-specifier-seq[opt] pure-specifier[opt]
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001577/// declarator constant-initializer[opt]
Richard Smith7a614d82011-06-11 17:19:42 +00001578/// [C++11] declarator brace-or-equal-initializer[opt]
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001579/// identifier[opt] ':' constant-expression
1580///
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001581/// virt-specifier-seq:
1582/// virt-specifier
1583/// virt-specifier-seq virt-specifier
1584///
1585/// virt-specifier:
1586/// override
1587/// final
1588/// new
1589///
Sebastian Redle2b68332009-04-12 17:16:29 +00001590/// pure-specifier:
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001591/// '= 0'
1592///
1593/// constant-initializer:
1594/// '=' constant-expression
1595///
Douglas Gregor37b372b2009-08-20 22:52:58 +00001596void Parser::ParseCXXClassMemberDeclaration(AccessSpecifier AS,
John McCallc9068d72010-07-16 08:13:16 +00001597 const ParsedTemplateInfo &TemplateInfo,
1598 ParsingDeclRAIIObject *TemplateDiags) {
Douglas Gregor8a9013d2011-04-14 17:21:19 +00001599 if (Tok.is(tok::at)) {
1600 if (getLang().ObjC1 && NextToken().isObjCAtKeyword(tok::objc_defs))
1601 Diag(Tok, diag::err_at_defs_cxx);
1602 else
1603 Diag(Tok, diag::err_at_in_class);
1604
1605 ConsumeToken();
1606 SkipUntil(tok::r_brace);
1607 return;
1608 }
1609
John McCall60fa3cf2009-12-11 02:10:03 +00001610 // Access declarations.
1611 if (!TemplateInfo.Kind &&
1612 (Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) &&
John McCall9ba61662010-02-26 08:45:28 +00001613 !TryAnnotateCXXScopeToken() &&
John McCall60fa3cf2009-12-11 02:10:03 +00001614 Tok.is(tok::annot_cxxscope)) {
1615 bool isAccessDecl = false;
1616 if (NextToken().is(tok::identifier))
1617 isAccessDecl = GetLookAheadToken(2).is(tok::semi);
1618 else
1619 isAccessDecl = NextToken().is(tok::kw_operator);
1620
1621 if (isAccessDecl) {
1622 // Collect the scope specifier token we annotated earlier.
1623 CXXScopeSpec SS;
John McCallb3d87482010-08-24 05:47:05 +00001624 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
John McCall60fa3cf2009-12-11 02:10:03 +00001625
1626 // Try to parse an unqualified-id.
1627 UnqualifiedId Name;
John McCallb3d87482010-08-24 05:47:05 +00001628 if (ParseUnqualifiedId(SS, false, true, true, ParsedType(), Name)) {
John McCall60fa3cf2009-12-11 02:10:03 +00001629 SkipUntil(tok::semi);
1630 return;
1631 }
1632
1633 // TODO: recover from mistakenly-qualified operator declarations.
1634 if (ExpectAndConsume(tok::semi,
1635 diag::err_expected_semi_after,
1636 "access declaration",
1637 tok::semi))
1638 return;
1639
Douglas Gregor23c94db2010-07-02 17:43:08 +00001640 Actions.ActOnUsingDeclaration(getCurScope(), AS,
John McCall60fa3cf2009-12-11 02:10:03 +00001641 false, SourceLocation(),
1642 SS, Name,
1643 /* AttrList */ 0,
1644 /* IsTypeName */ false,
1645 SourceLocation());
1646 return;
1647 }
1648 }
1649
Anders Carlsson511d7ab2009-03-11 16:27:10 +00001650 // static_assert-declaration
Peter Collingbournec6eb44b2011-04-15 00:35:57 +00001651 if (Tok.is(tok::kw_static_assert) || Tok.is(tok::kw__Static_assert)) {
Douglas Gregor37b372b2009-08-20 22:52:58 +00001652 // FIXME: Check for templates
Chris Lattner97144fc2009-04-02 04:16:50 +00001653 SourceLocation DeclEnd;
1654 ParseStaticAssertDeclaration(DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +00001655 return;
1656 }
Mike Stump1eb44332009-09-09 15:08:12 +00001657
Chris Lattner682bf922009-03-29 16:50:03 +00001658 if (Tok.is(tok::kw_template)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001659 assert(!TemplateInfo.TemplateParams &&
Douglas Gregor37b372b2009-08-20 22:52:58 +00001660 "Nested template improperly parsed?");
Chris Lattner97144fc2009-04-02 04:16:50 +00001661 SourceLocation DeclEnd;
Mike Stump1eb44332009-09-09 15:08:12 +00001662 ParseDeclarationStartingWithTemplate(Declarator::MemberContext, DeclEnd,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001663 AS);
Chris Lattner682bf922009-03-29 16:50:03 +00001664 return;
1665 }
Anders Carlsson5aeccdb2009-03-26 00:52:18 +00001666
Chris Lattnerbc8d5642008-12-18 01:12:00 +00001667 // Handle: member-declaration ::= '__extension__' member-declaration
1668 if (Tok.is(tok::kw___extension__)) {
1669 // __extension__ silences extension warnings in the subexpression.
1670 ExtensionRAIIObject O(Diags); // Use RAII to do this.
1671 ConsumeToken();
John McCallc9068d72010-07-16 08:13:16 +00001672 return ParseCXXClassMemberDeclaration(AS, TemplateInfo, TemplateDiags);
Chris Lattnerbc8d5642008-12-18 01:12:00 +00001673 }
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001674
Chris Lattner4ed5d912010-02-02 01:23:29 +00001675 // Don't parse FOO:BAR as if it were a typo for FOO::BAR, in this context it
1676 // is a bitfield.
Chris Lattnera1efc8c2009-12-10 01:59:24 +00001677 ColonProtectionRAIIObject X(*this);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001678
John McCall0b7e6782011-03-24 11:26:52 +00001679 ParsedAttributesWithRange attrs(AttrFactory);
Sean Huntbbd37c62009-11-21 08:43:09 +00001680 // Optional C++0x attribute-specifier
John McCall7f040a92010-12-24 02:08:15 +00001681 MaybeParseCXX0XAttributes(attrs);
1682 MaybeParseMicrosoftAttributes(attrs);
Sean Huntbbd37c62009-11-21 08:43:09 +00001683
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001684 if (Tok.is(tok::kw_using)) {
John McCall7f040a92010-12-24 02:08:15 +00001685 ProhibitAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +00001686
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001687 // Eat 'using'.
1688 SourceLocation UsingLoc = ConsumeToken();
1689
1690 if (Tok.is(tok::kw_namespace)) {
1691 Diag(UsingLoc, diag::err_using_namespace_in_class);
1692 SkipUntil(tok::semi, true, true);
Chris Lattnerae50d502010-02-02 00:43:15 +00001693 } else {
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001694 SourceLocation DeclEnd;
Richard Smith3e4c6c42011-05-05 21:57:07 +00001695 // Otherwise, it must be a using-declaration or an alias-declaration.
John McCall78b81052010-11-10 02:40:36 +00001696 ParseUsingDeclaration(Declarator::MemberContext, TemplateInfo,
1697 UsingLoc, DeclEnd, AS);
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001698 }
1699 return;
1700 }
1701
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001702 // decl-specifier-seq:
1703 // Parse the common declaration-specifiers piece.
John McCallc9068d72010-07-16 08:13:16 +00001704 ParsingDeclSpec DS(*this, TemplateDiags);
John McCall7f040a92010-12-24 02:08:15 +00001705 DS.takeAttributesFrom(attrs);
Douglas Gregor37b372b2009-08-20 22:52:58 +00001706 ParseDeclarationSpecifiers(DS, TemplateInfo, AS, DSC_class);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001707
John McCallf312b1e2010-08-26 23:41:50 +00001708 MultiTemplateParamsArg TemplateParams(Actions,
John McCalldd4a3b02009-09-16 22:47:08 +00001709 TemplateInfo.TemplateParams? TemplateInfo.TemplateParams->data() : 0,
1710 TemplateInfo.TemplateParams? TemplateInfo.TemplateParams->size() : 0);
1711
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001712 if (Tok.is(tok::semi)) {
1713 ConsumeToken();
John McCalld226f652010-08-21 09:40:31 +00001714 Decl *TheDecl =
Chandler Carruth0f4be742011-05-03 18:35:10 +00001715 Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS, DS, TemplateParams);
John McCallc9068d72010-07-16 08:13:16 +00001716 DS.complete(TheDecl);
John McCall67d1a672009-08-06 02:15:43 +00001717 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001718 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001719
John McCall54abf7d2009-11-04 02:18:39 +00001720 ParsingDeclarator DeclaratorInfo(*this, DS, Declarator::MemberContext);
Nico Weber48673472011-01-28 06:07:34 +00001721 VirtSpecifiers VS;
Francois Pichet6a247472011-05-11 02:14:46 +00001722 ExprResult Init;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001723
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001724 if (Tok.isNot(tok::colon)) {
Chris Lattnera1efc8c2009-12-10 01:59:24 +00001725 // Don't parse FOO:BAR as if it were a typo for FOO::BAR.
1726 ColonProtectionRAIIObject X(*this);
1727
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001728 // Parse the first declarator.
1729 ParseDeclarator(DeclaratorInfo);
1730 // Error parsing the declarator?
Douglas Gregor10bd3682008-11-17 22:58:34 +00001731 if (!DeclaratorInfo.hasName()) {
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001732 // If so, skip until the semi-colon or a }.
Sebastian Redld941fa42011-04-24 16:27:48 +00001733 SkipUntil(tok::r_brace, true, true);
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001734 if (Tok.is(tok::semi))
1735 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001736 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001737 }
1738
Nico Weber48673472011-01-28 06:07:34 +00001739 ParseOptionalCXX0XVirtSpecifierSeq(VS);
1740
John Thompson1b2fc0f2009-11-25 22:58:06 +00001741 // If attributes exist after the declarator, but before an '{', parse them.
John McCall7f040a92010-12-24 02:08:15 +00001742 MaybeParseGNUAttributes(DeclaratorInfo);
John Thompson1b2fc0f2009-11-25 22:58:06 +00001743
Francois Pichet6a247472011-05-11 02:14:46 +00001744 // MSVC permits pure specifier on inline functions declared at class scope.
1745 // Hence check for =0 before checking for function definition.
1746 if (getLang().Microsoft && Tok.is(tok::equal) &&
1747 DeclaratorInfo.isFunctionDeclarator() &&
1748 NextToken().is(tok::numeric_constant)) {
1749 ConsumeToken();
1750 Init = ParseInitializer();
1751 if (Init.isInvalid())
1752 SkipUntil(tok::comma, true, true);
1753 }
1754
Sean Hunte4246a62011-05-12 06:15:49 +00001755 bool IsDefinition = false;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001756 // function-definition:
Richard Smith7a614d82011-06-11 17:19:42 +00001757 //
1758 // In C++11, a non-function declarator followed by an open brace is a
1759 // braced-init-list for an in-class member initialization, not an
1760 // erroneous function definition.
1761 if (Tok.is(tok::l_brace) && !getLang().CPlusPlus0x) {
Sean Hunte4246a62011-05-12 06:15:49 +00001762 IsDefinition = true;
1763 } else if (DeclaratorInfo.isFunctionDeclarator()) {
Richard Smith7a614d82011-06-11 17:19:42 +00001764 if (Tok.is(tok::l_brace) || Tok.is(tok::colon) || Tok.is(tok::kw_try)) {
Sean Hunte4246a62011-05-12 06:15:49 +00001765 IsDefinition = true;
1766 } else if (Tok.is(tok::equal)) {
1767 const Token &KW = NextToken();
1768 if (KW.is(tok::kw_default) || KW.is(tok::kw_delete))
1769 IsDefinition = true;
1770 }
1771 }
1772
1773 if (IsDefinition) {
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001774 if (!DeclaratorInfo.isFunctionDeclarator()) {
1775 Diag(Tok, diag::err_func_def_no_params);
1776 ConsumeBrace();
1777 SkipUntil(tok::r_brace, true);
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001778
1779 // Consume the optional ';'
1780 if (Tok.is(tok::semi))
1781 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001782 return;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001783 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001784
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001785 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
1786 Diag(Tok, diag::err_function_declared_typedef);
1787 // This recovery skips the entire function body. It would be nice
1788 // to simply call ParseCXXInlineMethodDef() below, however Sema
1789 // assumes the declarator represents a function, not a typedef.
1790 ConsumeBrace();
1791 SkipUntil(tok::r_brace, true);
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001792
1793 // Consume the optional ';'
1794 if (Tok.is(tok::semi))
1795 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001796 return;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001797 }
1798
Francois Pichet6a247472011-05-11 02:14:46 +00001799 ParseCXXInlineMethodDef(AS, DeclaratorInfo, TemplateInfo, VS, Init);
Sean Hunte4246a62011-05-12 06:15:49 +00001800
1801 // Consume the ';' - it's optional unless we have a delete or default
1802 if (Tok.is(tok::semi)) {
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001803 ConsumeToken();
Sean Hunte4246a62011-05-12 06:15:49 +00001804 }
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001805
Chris Lattner682bf922009-03-29 16:50:03 +00001806 return;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001807 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001808 }
1809
1810 // member-declarator-list:
1811 // member-declarator
1812 // member-declarator-list ',' member-declarator
1813
Chris Lattner5f9e2722011-07-23 10:55:15 +00001814 SmallVector<Decl *, 8> DeclsInGroup;
John McCall60d7b3a2010-08-24 06:29:42 +00001815 ExprResult BitfieldSize;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001816
1817 while (1) {
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001818 // member-declarator:
1819 // declarator pure-specifier[opt]
Richard Smith7a614d82011-06-11 17:19:42 +00001820 // declarator brace-or-equal-initializer[opt]
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001821 // identifier[opt] ':' constant-expression
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001822 if (Tok.is(tok::colon)) {
1823 ConsumeToken();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001824 BitfieldSize = ParseConstantExpression();
1825 if (BitfieldSize.isInvalid())
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001826 SkipUntil(tok::comma, true, true);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001827 }
Mike Stump1eb44332009-09-09 15:08:12 +00001828
Chris Lattnere6563252010-06-13 05:34:18 +00001829 // If a simple-asm-expr is present, parse it.
1830 if (Tok.is(tok::kw_asm)) {
1831 SourceLocation Loc;
John McCall60d7b3a2010-08-24 06:29:42 +00001832 ExprResult AsmLabel(ParseSimpleAsm(&Loc));
Chris Lattnere6563252010-06-13 05:34:18 +00001833 if (AsmLabel.isInvalid())
1834 SkipUntil(tok::comma, true, true);
1835
1836 DeclaratorInfo.setAsmLabel(AsmLabel.release());
1837 DeclaratorInfo.SetRangeEnd(Loc);
1838 }
1839
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001840 // If attributes exist after the declarator, parse them.
John McCall7f040a92010-12-24 02:08:15 +00001841 MaybeParseGNUAttributes(DeclaratorInfo);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001842
Richard Smith7a614d82011-06-11 17:19:42 +00001843 // FIXME: When g++ adds support for this, we'll need to check whether it
1844 // goes before or after the GNU attributes and __asm__.
1845 ParseOptionalCXX0XVirtSpecifierSeq(VS);
1846
1847 bool HasDeferredInitializer = false;
1848 if (Tok.is(tok::equal) || Tok.is(tok::l_brace)) {
1849 if (BitfieldSize.get()) {
1850 Diag(Tok, diag::err_bitfield_member_init);
1851 SkipUntil(tok::comma, true, true);
1852 } else {
Douglas Gregor555f57e2011-06-25 00:56:27 +00001853 HasDeferredInitializer = !DeclaratorInfo.isDeclarationOfFunction() &&
Richard Smith7a614d82011-06-11 17:19:42 +00001854 DeclaratorInfo.getDeclSpec().getStorageClassSpec()
Richard Smithc2cdd532011-06-12 11:43:46 +00001855 != DeclSpec::SCS_static &&
1856 DeclaratorInfo.getDeclSpec().getStorageClassSpec()
1857 != DeclSpec::SCS_typedef;
Richard Smith7a614d82011-06-11 17:19:42 +00001858
1859 if (!HasDeferredInitializer) {
1860 SourceLocation EqualLoc;
1861 Init = ParseCXXMemberInitializer(
Douglas Gregor555f57e2011-06-25 00:56:27 +00001862 DeclaratorInfo.isDeclarationOfFunction(), EqualLoc);
Richard Smith7a614d82011-06-11 17:19:42 +00001863 if (Init.isInvalid())
1864 SkipUntil(tok::comma, true, true);
1865 }
1866 }
1867 }
1868
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001869 // NOTE: If Sema is the Action module and declarator is an instance field,
Chris Lattner682bf922009-03-29 16:50:03 +00001870 // this call will *not* return the created decl; It will return null.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001871 // See Sema::ActOnCXXMemberDeclarator for details.
John McCall67d1a672009-08-06 02:15:43 +00001872
John McCalld226f652010-08-21 09:40:31 +00001873 Decl *ThisDecl = 0;
John McCall67d1a672009-08-06 02:15:43 +00001874 if (DS.isFriendSpecified()) {
John McCallbbbcdd92009-09-11 21:02:39 +00001875 // TODO: handle initializers, bitfields, 'delete'
Douglas Gregor23c94db2010-07-02 17:43:08 +00001876 ThisDecl = Actions.ActOnFriendFunctionDecl(getCurScope(), DeclaratorInfo,
John McCallbbbcdd92009-09-11 21:02:39 +00001877 /*IsDefinition*/ false,
1878 move(TemplateParams));
Douglas Gregor37b372b2009-08-20 22:52:58 +00001879 } else {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001880 ThisDecl = Actions.ActOnCXXMemberDeclarator(getCurScope(), AS,
John McCall67d1a672009-08-06 02:15:43 +00001881 DeclaratorInfo,
Douglas Gregor37b372b2009-08-20 22:52:58 +00001882 move(TemplateParams),
John McCall67d1a672009-08-06 02:15:43 +00001883 BitfieldSize.release(),
Richard Smith7a614d82011-06-11 17:19:42 +00001884 VS, Init.release(),
1885 HasDeferredInitializer,
1886 /*IsDefinition*/ false);
Douglas Gregor37b372b2009-08-20 22:52:58 +00001887 }
Chris Lattner682bf922009-03-29 16:50:03 +00001888 if (ThisDecl)
1889 DeclsInGroup.push_back(ThisDecl);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001890
Douglas Gregor72b505b2008-12-16 21:30:33 +00001891 if (DeclaratorInfo.isFunctionDeclarator() &&
Mike Stump1eb44332009-09-09 15:08:12 +00001892 DeclaratorInfo.getDeclSpec().getStorageClassSpec()
Douglas Gregor72b505b2008-12-16 21:30:33 +00001893 != DeclSpec::SCS_typedef) {
Eli Friedmand33133c2009-07-22 21:45:50 +00001894 HandleMemberFunctionDefaultArgs(DeclaratorInfo, ThisDecl);
Douglas Gregor72b505b2008-12-16 21:30:33 +00001895 }
1896
John McCall54abf7d2009-11-04 02:18:39 +00001897 DeclaratorInfo.complete(ThisDecl);
1898
Richard Smith7a614d82011-06-11 17:19:42 +00001899 if (HasDeferredInitializer) {
1900 if (!getLang().CPlusPlus0x)
1901 Diag(Tok, diag::warn_nonstatic_member_init_accepted_as_extension);
1902
1903 if (DeclaratorInfo.isArrayOfUnknownBound()) {
1904 // C++0x [dcl.array]p3: An array bound may also be omitted when the
1905 // declarator is followed by an initializer.
1906 //
1907 // A brace-or-equal-initializer for a member-declarator is not an
1908 // initializer in the gramamr, so this is ill-formed.
1909 Diag(Tok, diag::err_incomplete_array_member_init);
1910 SkipUntil(tok::comma, true, true);
1911 // Avoid later warnings about a class member of incomplete type.
1912 ThisDecl->setInvalidDecl();
1913 } else
1914 ParseCXXNonStaticMemberInitializer(ThisDecl);
1915 }
1916
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001917 // If we don't have a comma, it is either the end of the list (a ';')
1918 // or an error, bail out.
1919 if (Tok.isNot(tok::comma))
1920 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001921
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001922 // Consume the comma.
1923 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001924
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001925 // Parse the next declarator.
1926 DeclaratorInfo.clear();
Nico Weber48673472011-01-28 06:07:34 +00001927 VS.clear();
Sebastian Redl15faa7f2008-12-09 20:22:58 +00001928 BitfieldSize = 0;
1929 Init = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001930
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001931 // Attributes are only allowed on the second declarator.
John McCall7f040a92010-12-24 02:08:15 +00001932 MaybeParseGNUAttributes(DeclaratorInfo);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001933
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001934 if (Tok.isNot(tok::colon))
1935 ParseDeclarator(DeclaratorInfo);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001936 }
1937
Chris Lattnerae50d502010-02-02 00:43:15 +00001938 if (ExpectAndConsume(tok::semi, diag::err_expected_semi_decl_list)) {
1939 // Skip to end of block or statement.
1940 SkipUntil(tok::r_brace, true, true);
1941 // If we stopped at a ';', eat it.
1942 if (Tok.is(tok::semi)) ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001943 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001944 }
1945
Douglas Gregor23c94db2010-07-02 17:43:08 +00001946 Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup.data(),
Chris Lattnerae50d502010-02-02 00:43:15 +00001947 DeclsInGroup.size());
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001948}
1949
Richard Smith7a614d82011-06-11 17:19:42 +00001950/// ParseCXXMemberInitializer - Parse the brace-or-equal-initializer or
1951/// pure-specifier. Also detect and reject any attempted defaulted/deleted
1952/// function definition. The location of the '=', if any, will be placed in
1953/// EqualLoc.
1954///
1955/// pure-specifier:
1956/// '= 0'
1957///
1958/// brace-or-equal-initializer:
1959/// '=' initializer-expression
1960/// braced-init-list [TODO]
1961///
1962/// initializer-clause:
1963/// assignment-expression
1964/// braced-init-list [TODO]
1965///
1966/// defaulted/deleted function-definition:
1967/// '=' 'default'
1968/// '=' 'delete'
1969///
1970/// Prior to C++0x, the assignment-expression in an initializer-clause must
1971/// be a constant-expression.
1972ExprResult Parser::ParseCXXMemberInitializer(bool IsFunction,
1973 SourceLocation &EqualLoc) {
1974 assert((Tok.is(tok::equal) || Tok.is(tok::l_brace))
1975 && "Data member initializer not starting with '=' or '{'");
1976
1977 if (Tok.is(tok::equal)) {
1978 EqualLoc = ConsumeToken();
1979 if (Tok.is(tok::kw_delete)) {
1980 // In principle, an initializer of '= delete p;' is legal, but it will
1981 // never type-check. It's better to diagnose it as an ill-formed expression
1982 // than as an ill-formed deleted non-function member.
1983 // An initializer of '= delete p, foo' will never be parsed, because
1984 // a top-level comma always ends the initializer expression.
1985 const Token &Next = NextToken();
1986 if (IsFunction || Next.is(tok::semi) || Next.is(tok::comma) ||
1987 Next.is(tok::eof)) {
1988 if (IsFunction)
1989 Diag(ConsumeToken(), diag::err_default_delete_in_multiple_declaration)
1990 << 1 /* delete */;
1991 else
1992 Diag(ConsumeToken(), diag::err_deleted_non_function);
1993 return ExprResult();
1994 }
1995 } else if (Tok.is(tok::kw_default)) {
1996 Diag(ConsumeToken(), diag::err_default_special_members);
1997 if (IsFunction)
1998 Diag(Tok, diag::err_default_delete_in_multiple_declaration)
1999 << 0 /* default */;
2000 else
2001 Diag(ConsumeToken(), diag::err_default_special_members);
2002 return ExprResult();
2003 }
2004
2005 return ParseInitializer();
2006 } else
2007 return ExprError(Diag(Tok, diag::err_generalized_initializer_lists));
2008}
2009
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002010/// ParseCXXMemberSpecification - Parse the class definition.
2011///
2012/// member-specification:
2013/// member-declaration member-specification[opt]
2014/// access-specifier ':' member-specification[opt]
2015///
2016void Parser::ParseCXXMemberSpecification(SourceLocation RecordLoc,
John McCalld226f652010-08-21 09:40:31 +00002017 unsigned TagType, Decl *TagDecl) {
Sanjiv Gupta31fc07d2008-10-31 09:52:39 +00002018 assert((TagType == DeclSpec::TST_struct ||
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002019 TagType == DeclSpec::TST_union ||
Sanjiv Gupta31fc07d2008-10-31 09:52:39 +00002020 TagType == DeclSpec::TST_class) && "Invalid TagType!");
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002021
John McCallf312b1e2010-08-26 23:41:50 +00002022 PrettyDeclStackTraceEntry CrashInfo(Actions, TagDecl, RecordLoc,
2023 "parsing struct/union/class body");
Mike Stump1eb44332009-09-09 15:08:12 +00002024
Douglas Gregor26997fd2010-01-16 20:52:59 +00002025 // Determine whether this is a non-nested class. Note that local
2026 // classes are *not* considered to be nested classes.
2027 bool NonNestedClass = true;
2028 if (!ClassStack.empty()) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00002029 for (const Scope *S = getCurScope(); S; S = S->getParent()) {
Douglas Gregor26997fd2010-01-16 20:52:59 +00002030 if (S->isClassScope()) {
2031 // We're inside a class scope, so this is a nested class.
2032 NonNestedClass = false;
2033 break;
2034 }
2035
2036 if ((S->getFlags() & Scope::FnScope)) {
2037 // If we're in a function or function template declared in the
2038 // body of a class, then this is a local class rather than a
2039 // nested class.
2040 const Scope *Parent = S->getParent();
2041 if (Parent->isTemplateParamScope())
2042 Parent = Parent->getParent();
2043 if (Parent->isClassScope())
2044 break;
2045 }
2046 }
2047 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002048
2049 // Enter a scope for the class.
Douglas Gregor3218c4b2009-01-09 22:42:13 +00002050 ParseScope ClassScope(this, Scope::ClassScope|Scope::DeclScope);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002051
Douglas Gregor6569d682009-05-27 23:11:45 +00002052 // Note that we are parsing a new (potentially-nested) class definition.
Douglas Gregor26997fd2010-01-16 20:52:59 +00002053 ParsingClassDefinition ParsingDef(*this, TagDecl, NonNestedClass);
Douglas Gregor6569d682009-05-27 23:11:45 +00002054
Douglas Gregorddc29e12009-02-06 22:42:48 +00002055 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002056 Actions.ActOnTagStartDefinition(getCurScope(), TagDecl);
John McCallbd0dfa52009-12-19 21:48:58 +00002057
Anders Carlssonb184a182011-03-25 14:46:08 +00002058 SourceLocation FinalLoc;
2059
2060 // Parse the optional 'final' keyword.
2061 if (getLang().CPlusPlus && Tok.is(tok::identifier)) {
2062 IdentifierInfo *II = Tok.getIdentifierInfo();
2063
2064 // Initialize the contextual keywords.
2065 if (!Ident_final) {
2066 Ident_final = &PP.getIdentifierTable().get("final");
2067 Ident_override = &PP.getIdentifierTable().get("override");
2068 }
2069
2070 if (II == Ident_final)
2071 FinalLoc = ConsumeToken();
2072
2073 if (!getLang().CPlusPlus0x)
2074 Diag(FinalLoc, diag::ext_override_control_keyword) << "final";
2075 }
Anders Carlssoncc54d592011-01-22 16:56:46 +00002076
John McCallbd0dfa52009-12-19 21:48:58 +00002077 if (Tok.is(tok::colon)) {
2078 ParseBaseClause(TagDecl);
2079
2080 if (!Tok.is(tok::l_brace)) {
2081 Diag(Tok, diag::err_expected_lbrace_after_base_specifiers);
John McCalldb7bb4a2010-03-17 00:38:33 +00002082
2083 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002084 Actions.ActOnTagDefinitionError(getCurScope(), TagDecl);
John McCallbd0dfa52009-12-19 21:48:58 +00002085 return;
2086 }
2087 }
2088
2089 assert(Tok.is(tok::l_brace));
2090
2091 SourceLocation LBraceLoc = ConsumeBrace();
2092
John McCall42a4f662010-05-28 08:11:17 +00002093 if (TagDecl)
Anders Carlsson2c3ee542011-03-25 14:31:08 +00002094 Actions.ActOnStartCXXMemberDeclarations(getCurScope(), TagDecl, FinalLoc,
Anders Carlssondfc2f102011-01-22 17:51:53 +00002095 LBraceLoc);
John McCallf9368152009-12-20 07:58:13 +00002096
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002097 // C++ 11p3: Members of a class defined with the keyword class are private
2098 // by default. Members of a class defined with the keywords struct or union
2099 // are public by default.
2100 AccessSpecifier CurAS;
2101 if (TagType == DeclSpec::TST_class)
2102 CurAS = AS_private;
2103 else
2104 CurAS = AS_public;
2105
Douglas Gregor07976d22010-06-21 22:31:09 +00002106 SourceLocation RBraceLoc;
2107 if (TagDecl) {
2108 // While we still have something to read, read the member-declarations.
2109 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
2110 // Each iteration of this loop reads one member-declaration.
Mike Stump1eb44332009-09-09 15:08:12 +00002111
Francois Pichet563a6452011-05-25 10:19:49 +00002112 if (getLang().Microsoft && (Tok.is(tok::kw___if_exists) ||
2113 Tok.is(tok::kw___if_not_exists))) {
2114 ParseMicrosoftIfExistsClassDeclaration((DeclSpec::TST)TagType, CurAS);
2115 continue;
2116 }
2117
Douglas Gregor07976d22010-06-21 22:31:09 +00002118 // Check for extraneous top-level semicolon.
2119 if (Tok.is(tok::semi)) {
2120 Diag(Tok, diag::ext_extra_struct_semi)
2121 << DeclSpec::getSpecifierName((DeclSpec::TST)TagType)
2122 << FixItHint::CreateRemoval(Tok.getLocation());
2123 ConsumeToken();
2124 continue;
2125 }
2126
2127 AccessSpecifier AS = getAccessSpecifierIfPresent();
2128 if (AS != AS_none) {
2129 // Current token is a C++ access specifier.
2130 CurAS = AS;
2131 SourceLocation ASLoc = Tok.getLocation();
2132 ConsumeToken();
2133 if (Tok.is(tok::colon))
2134 Actions.ActOnAccessSpecifier(AS, ASLoc, Tok.getLocation());
2135 else
2136 Diag(Tok, diag::err_expected_colon);
2137 ConsumeToken();
2138 continue;
2139 }
2140
2141 // FIXME: Make sure we don't have a template here.
2142
2143 // Parse all the comma separated declarators.
2144 ParseCXXClassMemberDeclaration(CurAS);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002145 }
2146
Douglas Gregor07976d22010-06-21 22:31:09 +00002147 RBraceLoc = MatchRHSPunctuation(tok::r_brace, LBraceLoc);
2148 } else {
2149 SkipUntil(tok::r_brace, false, false);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002150 }
Mike Stump1eb44332009-09-09 15:08:12 +00002151
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002152 // If attributes exist after class contents, parse them.
John McCall0b7e6782011-03-24 11:26:52 +00002153 ParsedAttributes attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +00002154 MaybeParseGNUAttributes(attrs);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002155
John McCall42a4f662010-05-28 08:11:17 +00002156 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002157 Actions.ActOnFinishCXXMemberSpecification(getCurScope(), RecordLoc, TagDecl,
John McCall42a4f662010-05-28 08:11:17 +00002158 LBraceLoc, RBraceLoc,
John McCall7f040a92010-12-24 02:08:15 +00002159 attrs.getList());
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002160
Richard Smith7a614d82011-06-11 17:19:42 +00002161 // C++0x [class.mem]p2: Within the class member-specification, the class is
2162 // regarded as complete within function bodies, default arguments, exception-
2163 // specifications, and brace-or-equal-initializers for non-static data
2164 // members (including such things in nested classes).
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002165 //
Richard Smith7a614d82011-06-11 17:19:42 +00002166 // FIXME: Only function bodies and brace-or-equal-initializers are currently
2167 // handled. Fix the others!
Douglas Gregor07976d22010-06-21 22:31:09 +00002168 if (TagDecl && NonNestedClass) {
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002169 // We are not inside a nested class. This class and its nested classes
Douglas Gregor72b505b2008-12-16 21:30:33 +00002170 // are complete and we can parse the delayed portions of method
2171 // declarations and the lexed inline method definitions.
Douglas Gregore0cc0472010-06-16 23:45:56 +00002172 SourceLocation SavedPrevTokLocation = PrevTokLocation;
Douglas Gregor6569d682009-05-27 23:11:45 +00002173 ParseLexedMethodDeclarations(getCurrentClass());
Richard Smith7a614d82011-06-11 17:19:42 +00002174 ParseLexedMemberInitializers(getCurrentClass());
Douglas Gregor6569d682009-05-27 23:11:45 +00002175 ParseLexedMethodDefs(getCurrentClass());
Douglas Gregore0cc0472010-06-16 23:45:56 +00002176 PrevTokLocation = SavedPrevTokLocation;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002177 }
2178
John McCall42a4f662010-05-28 08:11:17 +00002179 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002180 Actions.ActOnTagFinishDefinition(getCurScope(), TagDecl, RBraceLoc);
John McCalldb7bb4a2010-03-17 00:38:33 +00002181
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002182 // Leave the class scope.
Douglas Gregor6569d682009-05-27 23:11:45 +00002183 ParsingDef.Pop();
Douglas Gregor8935b8b2008-12-10 06:34:36 +00002184 ClassScope.Exit();
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002185}
Douglas Gregor7ad83902008-11-05 04:29:56 +00002186
2187/// ParseConstructorInitializer - Parse a C++ constructor initializer,
2188/// which explicitly initializes the members or base classes of a
2189/// class (C++ [class.base.init]). For example, the three initializers
2190/// after the ':' in the Derived constructor below:
2191///
2192/// @code
2193/// class Base { };
2194/// class Derived : Base {
2195/// int x;
2196/// float f;
2197/// public:
2198/// Derived(float f) : Base(), x(17), f(f) { }
2199/// };
2200/// @endcode
2201///
Mike Stump1eb44332009-09-09 15:08:12 +00002202/// [C++] ctor-initializer:
2203/// ':' mem-initializer-list
Douglas Gregor7ad83902008-11-05 04:29:56 +00002204///
Mike Stump1eb44332009-09-09 15:08:12 +00002205/// [C++] mem-initializer-list:
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002206/// mem-initializer ...[opt]
2207/// mem-initializer ...[opt] , mem-initializer-list
John McCalld226f652010-08-21 09:40:31 +00002208void Parser::ParseConstructorInitializer(Decl *ConstructorDecl) {
Douglas Gregor7ad83902008-11-05 04:29:56 +00002209 assert(Tok.is(tok::colon) && "Constructor initializer always starts with ':'");
2210
John Wiegley28bbe4b2011-04-28 01:08:34 +00002211 // Poison the SEH identifiers so they are flagged as illegal in constructor initializers
2212 PoisonSEHIdentifiersRAIIObject PoisonSEHIdentifiers(*this, true);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002213 SourceLocation ColonLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00002214
Chris Lattner5f9e2722011-07-23 10:55:15 +00002215 SmallVector<CXXCtorInitializer*, 4> MemInitializers;
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002216 bool AnyErrors = false;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002217
Douglas Gregor7ad83902008-11-05 04:29:56 +00002218 do {
Douglas Gregor0133f522010-08-28 00:00:50 +00002219 if (Tok.is(tok::code_completion)) {
2220 Actions.CodeCompleteConstructorInitializer(ConstructorDecl,
2221 MemInitializers.data(),
2222 MemInitializers.size());
2223 ConsumeCodeCompletionToken();
2224 } else {
2225 MemInitResult MemInit = ParseMemInitializer(ConstructorDecl);
2226 if (!MemInit.isInvalid())
2227 MemInitializers.push_back(MemInit.get());
2228 else
2229 AnyErrors = true;
2230 }
2231
Douglas Gregor7ad83902008-11-05 04:29:56 +00002232 if (Tok.is(tok::comma))
2233 ConsumeToken();
2234 else if (Tok.is(tok::l_brace))
2235 break;
Douglas Gregorb1f6fa42010-09-07 14:35:10 +00002236 // If the next token looks like a base or member initializer, assume that
2237 // we're just missing a comma.
Douglas Gregor751f6922010-09-07 14:51:08 +00002238 else if (Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) {
2239 SourceLocation Loc = PP.getLocForEndOfToken(PrevTokLocation);
2240 Diag(Loc, diag::err_ctor_init_missing_comma)
2241 << FixItHint::CreateInsertion(Loc, ", ");
2242 } else {
Douglas Gregor7ad83902008-11-05 04:29:56 +00002243 // Skip over garbage, until we get to '{'. Don't eat the '{'.
Sebastian Redld3a413d2009-04-26 20:35:05 +00002244 Diag(Tok.getLocation(), diag::err_expected_lbrace_or_comma);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002245 SkipUntil(tok::l_brace, true, true);
2246 break;
2247 }
2248 } while (true);
2249
Mike Stump1eb44332009-09-09 15:08:12 +00002250 Actions.ActOnMemInitializers(ConstructorDecl, ColonLoc,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002251 MemInitializers.data(), MemInitializers.size(),
2252 AnyErrors);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002253}
2254
2255/// ParseMemInitializer - Parse a C++ member initializer, which is
2256/// part of a constructor initializer that explicitly initializes one
2257/// member or base class (C++ [class.base.init]). See
2258/// ParseConstructorInitializer for an example.
2259///
2260/// [C++] mem-initializer:
2261/// mem-initializer-id '(' expression-list[opt] ')'
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002262/// [C++0x] mem-initializer-id braced-init-list
Mike Stump1eb44332009-09-09 15:08:12 +00002263///
Douglas Gregor7ad83902008-11-05 04:29:56 +00002264/// [C++] mem-initializer-id:
2265/// '::'[opt] nested-name-specifier[opt] class-name
2266/// identifier
John McCalld226f652010-08-21 09:40:31 +00002267Parser::MemInitResult Parser::ParseMemInitializer(Decl *ConstructorDecl) {
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00002268 // parse '::'[opt] nested-name-specifier[opt]
2269 CXXScopeSpec SS;
John McCallb3d87482010-08-24 05:47:05 +00002270 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false);
2271 ParsedType TemplateTypeTy;
Fariborz Jahanian96174332009-07-01 19:21:19 +00002272 if (Tok.is(tok::annot_template_id)) {
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +00002273 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregord9b600c2010-01-12 17:52:59 +00002274 if (TemplateId->Kind == TNK_Type_template ||
2275 TemplateId->Kind == TNK_Dependent_template_name) {
Douglas Gregor059101f2011-03-02 00:47:37 +00002276 AnnotateTemplateIdTokenAsType();
Fariborz Jahanian96174332009-07-01 19:21:19 +00002277 assert(Tok.is(tok::annot_typename) && "template-id -> type failed");
John McCallb3d87482010-08-24 05:47:05 +00002278 TemplateTypeTy = getTypeAnnotation(Tok);
Fariborz Jahanian96174332009-07-01 19:21:19 +00002279 }
Fariborz Jahanian96174332009-07-01 19:21:19 +00002280 }
2281 if (!TemplateTypeTy && Tok.isNot(tok::identifier)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00002282 Diag(Tok, diag::err_expected_member_or_base_name);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002283 return true;
2284 }
Mike Stump1eb44332009-09-09 15:08:12 +00002285
Douglas Gregor7ad83902008-11-05 04:29:56 +00002286 // Get the identifier. This may be a member name or a class name,
2287 // but we'll let the semantic analysis determine which it is.
Fariborz Jahanian96174332009-07-01 19:21:19 +00002288 IdentifierInfo *II = Tok.is(tok::identifier) ? Tok.getIdentifierInfo() : 0;
Douglas Gregor7ad83902008-11-05 04:29:56 +00002289 SourceLocation IdLoc = ConsumeToken();
2290
2291 // Parse the '('.
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002292 if (getLang().CPlusPlus0x && Tok.is(tok::l_brace)) {
2293 // FIXME: Do something with the braced-init-list.
2294 ParseBraceInitializer();
Douglas Gregor7ad83902008-11-05 04:29:56 +00002295 return true;
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002296 } else if(Tok.is(tok::l_paren)) {
2297 SourceLocation LParenLoc = ConsumeParen();
Douglas Gregor7ad83902008-11-05 04:29:56 +00002298
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002299 // Parse the optional expression-list.
2300 ExprVector ArgExprs(Actions);
2301 CommaLocsTy CommaLocs;
2302 if (Tok.isNot(tok::r_paren) && ParseExpressionList(ArgExprs, CommaLocs)) {
2303 SkipUntil(tok::r_paren);
2304 return true;
2305 }
2306
2307 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
2308
2309 SourceLocation EllipsisLoc;
2310 if (Tok.is(tok::ellipsis))
2311 EllipsisLoc = ConsumeToken();
2312
2313 return Actions.ActOnMemInitializer(ConstructorDecl, getCurScope(), SS, II,
2314 TemplateTypeTy, IdLoc,
2315 LParenLoc, ArgExprs.take(),
2316 ArgExprs.size(), RParenLoc,
2317 EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002318 }
2319
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002320 Diag(Tok, getLang().CPlusPlus0x ? diag::err_expected_lparen_or_lbrace
2321 : diag::err_expected_lparen);
2322 return true;
Douglas Gregor7ad83902008-11-05 04:29:56 +00002323}
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002324
Sebastian Redl7acafd02011-03-05 14:45:16 +00002325/// \brief Parse a C++ exception-specification if present (C++0x [except.spec]).
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002326///
Douglas Gregora4745612008-12-01 18:00:20 +00002327/// exception-specification:
Sebastian Redl7acafd02011-03-05 14:45:16 +00002328/// dynamic-exception-specification
2329/// noexcept-specification
2330///
2331/// noexcept-specification:
2332/// 'noexcept'
2333/// 'noexcept' '(' constant-expression ')'
2334ExceptionSpecificationType
2335Parser::MaybeParseExceptionSpecification(SourceRange &SpecificationRange,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002336 SmallVectorImpl<ParsedType> &DynamicExceptions,
2337 SmallVectorImpl<SourceRange> &DynamicExceptionRanges,
Sebastian Redl7acafd02011-03-05 14:45:16 +00002338 ExprResult &NoexceptExpr) {
2339 ExceptionSpecificationType Result = EST_None;
2340
2341 // See if there's a dynamic specification.
2342 if (Tok.is(tok::kw_throw)) {
2343 Result = ParseDynamicExceptionSpecification(SpecificationRange,
2344 DynamicExceptions,
2345 DynamicExceptionRanges);
2346 assert(DynamicExceptions.size() == DynamicExceptionRanges.size() &&
2347 "Produced different number of exception types and ranges.");
2348 }
2349
2350 // If there's no noexcept specification, we're done.
2351 if (Tok.isNot(tok::kw_noexcept))
2352 return Result;
2353
2354 // If we already had a dynamic specification, parse the noexcept for,
2355 // recovery, but emit a diagnostic and don't store the results.
2356 SourceRange NoexceptRange;
2357 ExceptionSpecificationType NoexceptType = EST_None;
2358
2359 SourceLocation KeywordLoc = ConsumeToken();
2360 if (Tok.is(tok::l_paren)) {
2361 // There is an argument.
2362 SourceLocation LParenLoc = ConsumeParen();
2363 NoexceptType = EST_ComputedNoexcept;
2364 NoexceptExpr = ParseConstantExpression();
Sebastian Redl60618fa2011-03-12 11:50:43 +00002365 // The argument must be contextually convertible to bool. We use
2366 // ActOnBooleanCondition for this purpose.
2367 if (!NoexceptExpr.isInvalid())
2368 NoexceptExpr = Actions.ActOnBooleanCondition(getCurScope(), KeywordLoc,
2369 NoexceptExpr.get());
Sebastian Redl7acafd02011-03-05 14:45:16 +00002370 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
2371 NoexceptRange = SourceRange(KeywordLoc, RParenLoc);
2372 } else {
2373 // There is no argument.
2374 NoexceptType = EST_BasicNoexcept;
2375 NoexceptRange = SourceRange(KeywordLoc, KeywordLoc);
2376 }
2377
2378 if (Result == EST_None) {
2379 SpecificationRange = NoexceptRange;
2380 Result = NoexceptType;
2381
2382 // If there's a dynamic specification after a noexcept specification,
2383 // parse that and ignore the results.
2384 if (Tok.is(tok::kw_throw)) {
2385 Diag(Tok.getLocation(), diag::err_dynamic_and_noexcept_specification);
2386 ParseDynamicExceptionSpecification(NoexceptRange, DynamicExceptions,
2387 DynamicExceptionRanges);
2388 }
2389 } else {
2390 Diag(Tok.getLocation(), diag::err_dynamic_and_noexcept_specification);
2391 }
2392
2393 return Result;
2394}
2395
2396/// ParseDynamicExceptionSpecification - Parse a C++
2397/// dynamic-exception-specification (C++ [except.spec]).
2398///
2399/// dynamic-exception-specification:
Douglas Gregora4745612008-12-01 18:00:20 +00002400/// 'throw' '(' type-id-list [opt] ')'
2401/// [MS] 'throw' '(' '...' ')'
Mike Stump1eb44332009-09-09 15:08:12 +00002402///
Douglas Gregora4745612008-12-01 18:00:20 +00002403/// type-id-list:
Douglas Gregora04426c2010-12-20 23:57:46 +00002404/// type-id ... [opt]
2405/// type-id-list ',' type-id ... [opt]
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002406///
Sebastian Redl7acafd02011-03-05 14:45:16 +00002407ExceptionSpecificationType Parser::ParseDynamicExceptionSpecification(
2408 SourceRange &SpecificationRange,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002409 SmallVectorImpl<ParsedType> &Exceptions,
2410 SmallVectorImpl<SourceRange> &Ranges) {
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002411 assert(Tok.is(tok::kw_throw) && "expected throw");
Mike Stump1eb44332009-09-09 15:08:12 +00002412
Sebastian Redl7acafd02011-03-05 14:45:16 +00002413 SpecificationRange.setBegin(ConsumeToken());
Mike Stump1eb44332009-09-09 15:08:12 +00002414
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002415 if (!Tok.is(tok::l_paren)) {
Sebastian Redl7acafd02011-03-05 14:45:16 +00002416 Diag(Tok, diag::err_expected_lparen_after) << "throw";
2417 SpecificationRange.setEnd(SpecificationRange.getBegin());
Sebastian Redl60618fa2011-03-12 11:50:43 +00002418 return EST_DynamicNone;
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002419 }
2420 SourceLocation LParenLoc = ConsumeParen();
2421
Douglas Gregora4745612008-12-01 18:00:20 +00002422 // Parse throw(...), a Microsoft extension that means "this function
2423 // can throw anything".
2424 if (Tok.is(tok::ellipsis)) {
2425 SourceLocation EllipsisLoc = ConsumeToken();
2426 if (!getLang().Microsoft)
2427 Diag(EllipsisLoc, diag::ext_ellipsis_exception_spec);
Sebastian Redl7acafd02011-03-05 14:45:16 +00002428 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
2429 SpecificationRange.setEnd(RParenLoc);
Sebastian Redl60618fa2011-03-12 11:50:43 +00002430 return EST_MSAny;
Douglas Gregora4745612008-12-01 18:00:20 +00002431 }
2432
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002433 // Parse the sequence of type-ids.
Sebastian Redlef65f062009-05-29 18:02:33 +00002434 SourceRange Range;
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002435 while (Tok.isNot(tok::r_paren)) {
Sebastian Redlef65f062009-05-29 18:02:33 +00002436 TypeResult Res(ParseTypeName(&Range));
Sebastian Redl7acafd02011-03-05 14:45:16 +00002437
Douglas Gregora04426c2010-12-20 23:57:46 +00002438 if (Tok.is(tok::ellipsis)) {
2439 // C++0x [temp.variadic]p5:
2440 // - In a dynamic-exception-specification (15.4); the pattern is a
2441 // type-id.
2442 SourceLocation Ellipsis = ConsumeToken();
Sebastian Redl7acafd02011-03-05 14:45:16 +00002443 Range.setEnd(Ellipsis);
Douglas Gregora04426c2010-12-20 23:57:46 +00002444 if (!Res.isInvalid())
2445 Res = Actions.ActOnPackExpansion(Res.get(), Ellipsis);
2446 }
Sebastian Redl7acafd02011-03-05 14:45:16 +00002447
Sebastian Redlef65f062009-05-29 18:02:33 +00002448 if (!Res.isInvalid()) {
Sebastian Redl7dc81342009-04-29 17:30:04 +00002449 Exceptions.push_back(Res.get());
Sebastian Redlef65f062009-05-29 18:02:33 +00002450 Ranges.push_back(Range);
2451 }
Douglas Gregora04426c2010-12-20 23:57:46 +00002452
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002453 if (Tok.is(tok::comma))
2454 ConsumeToken();
Sebastian Redl7dc81342009-04-29 17:30:04 +00002455 else
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002456 break;
2457 }
2458
Sebastian Redl7acafd02011-03-05 14:45:16 +00002459 SpecificationRange.setEnd(MatchRHSPunctuation(tok::r_paren, LParenLoc));
Sebastian Redl60618fa2011-03-12 11:50:43 +00002460 return Exceptions.empty() ? EST_DynamicNone : EST_Dynamic;
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002461}
Douglas Gregor6569d682009-05-27 23:11:45 +00002462
Douglas Gregordab60ad2010-10-01 18:44:50 +00002463/// ParseTrailingReturnType - Parse a trailing return type on a new-style
2464/// function declaration.
Douglas Gregorae7902c2011-08-04 15:30:47 +00002465TypeResult Parser::ParseTrailingReturnType(SourceRange &Range) {
Douglas Gregordab60ad2010-10-01 18:44:50 +00002466 assert(Tok.is(tok::arrow) && "expected arrow");
2467
2468 ConsumeToken();
2469
2470 // FIXME: Need to suppress declarations when parsing this typename.
2471 // Otherwise in this function definition:
2472 //
2473 // auto f() -> struct X {}
2474 //
2475 // struct X is parsed as class definition because of the trailing
2476 // brace.
Douglas Gregordab60ad2010-10-01 18:44:50 +00002477 return ParseTypeName(&Range);
2478}
2479
Douglas Gregor6569d682009-05-27 23:11:45 +00002480/// \brief We have just started parsing the definition of a new class,
2481/// so push that class onto our stack of classes that is currently
2482/// being parsed.
John McCalleee1d542011-02-14 07:13:47 +00002483Sema::ParsingClassState
2484Parser::PushParsingClass(Decl *ClassDecl, bool NonNestedClass) {
Douglas Gregor26997fd2010-01-16 20:52:59 +00002485 assert((NonNestedClass || !ClassStack.empty()) &&
Douglas Gregor6569d682009-05-27 23:11:45 +00002486 "Nested class without outer class");
Douglas Gregor26997fd2010-01-16 20:52:59 +00002487 ClassStack.push(new ParsingClass(ClassDecl, NonNestedClass));
John McCalleee1d542011-02-14 07:13:47 +00002488 return Actions.PushParsingClass();
Douglas Gregor6569d682009-05-27 23:11:45 +00002489}
2490
2491/// \brief Deallocate the given parsed class and all of its nested
2492/// classes.
2493void Parser::DeallocateParsedClasses(Parser::ParsingClass *Class) {
Douglas Gregord54eb442010-10-12 16:25:54 +00002494 for (unsigned I = 0, N = Class->LateParsedDeclarations.size(); I != N; ++I)
2495 delete Class->LateParsedDeclarations[I];
Douglas Gregor6569d682009-05-27 23:11:45 +00002496 delete Class;
2497}
2498
2499/// \brief Pop the top class of the stack of classes that are
2500/// currently being parsed.
2501///
2502/// This routine should be called when we have finished parsing the
2503/// definition of a class, but have not yet popped the Scope
2504/// associated with the class's definition.
2505///
2506/// \returns true if the class we've popped is a top-level class,
2507/// false otherwise.
John McCalleee1d542011-02-14 07:13:47 +00002508void Parser::PopParsingClass(Sema::ParsingClassState state) {
Douglas Gregor6569d682009-05-27 23:11:45 +00002509 assert(!ClassStack.empty() && "Mismatched push/pop for class parsing");
Mike Stump1eb44332009-09-09 15:08:12 +00002510
John McCalleee1d542011-02-14 07:13:47 +00002511 Actions.PopParsingClass(state);
2512
Douglas Gregor6569d682009-05-27 23:11:45 +00002513 ParsingClass *Victim = ClassStack.top();
2514 ClassStack.pop();
2515 if (Victim->TopLevelClass) {
2516 // Deallocate all of the nested classes of this class,
2517 // recursively: we don't need to keep any of this information.
2518 DeallocateParsedClasses(Victim);
2519 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002520 }
Douglas Gregor6569d682009-05-27 23:11:45 +00002521 assert(!ClassStack.empty() && "Missing top-level class?");
2522
Douglas Gregord54eb442010-10-12 16:25:54 +00002523 if (Victim->LateParsedDeclarations.empty()) {
Douglas Gregor6569d682009-05-27 23:11:45 +00002524 // The victim is a nested class, but we will not need to perform
2525 // any processing after the definition of this class since it has
2526 // no members whose handling was delayed. Therefore, we can just
2527 // remove this nested class.
Douglas Gregord54eb442010-10-12 16:25:54 +00002528 DeallocateParsedClasses(Victim);
Douglas Gregor6569d682009-05-27 23:11:45 +00002529 return;
2530 }
2531
2532 // This nested class has some members that will need to be processed
2533 // after the top-level class is completely defined. Therefore, add
2534 // it to the list of nested classes within its parent.
Douglas Gregor23c94db2010-07-02 17:43:08 +00002535 assert(getCurScope()->isClassScope() && "Nested class outside of class scope?");
Douglas Gregord54eb442010-10-12 16:25:54 +00002536 ClassStack.top()->LateParsedDeclarations.push_back(new LateParsedClass(this, Victim));
Douglas Gregor23c94db2010-07-02 17:43:08 +00002537 Victim->TemplateScope = getCurScope()->getParent()->isTemplateParamScope();
Douglas Gregor6569d682009-05-27 23:11:45 +00002538}
Sean Huntbbd37c62009-11-21 08:43:09 +00002539
2540/// ParseCXX0XAttributes - Parse a C++0x attribute-specifier. Currently only
2541/// parses standard attributes.
2542///
2543/// [C++0x] attribute-specifier:
2544/// '[' '[' attribute-list ']' ']'
2545///
2546/// [C++0x] attribute-list:
2547/// attribute[opt]
2548/// attribute-list ',' attribute[opt]
2549///
2550/// [C++0x] attribute:
2551/// attribute-token attribute-argument-clause[opt]
2552///
2553/// [C++0x] attribute-token:
2554/// identifier
2555/// attribute-scoped-token
2556///
2557/// [C++0x] attribute-scoped-token:
2558/// attribute-namespace '::' identifier
2559///
2560/// [C++0x] attribute-namespace:
2561/// identifier
2562///
2563/// [C++0x] attribute-argument-clause:
2564/// '(' balanced-token-seq ')'
2565///
2566/// [C++0x] balanced-token-seq:
2567/// balanced-token
2568/// balanced-token-seq balanced-token
2569///
2570/// [C++0x] balanced-token:
2571/// '(' balanced-token-seq ')'
2572/// '[' balanced-token-seq ']'
2573/// '{' balanced-token-seq '}'
2574/// any token but '(', ')', '[', ']', '{', or '}'
John McCall7f040a92010-12-24 02:08:15 +00002575void Parser::ParseCXX0XAttributes(ParsedAttributesWithRange &attrs,
2576 SourceLocation *endLoc) {
Sean Huntbbd37c62009-11-21 08:43:09 +00002577 assert(Tok.is(tok::l_square) && NextToken().is(tok::l_square)
2578 && "Not a C++0x attribute list");
2579
2580 SourceLocation StartLoc = Tok.getLocation(), Loc;
Sean Huntbbd37c62009-11-21 08:43:09 +00002581
2582 ConsumeBracket();
2583 ConsumeBracket();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002584
Sean Huntbbd37c62009-11-21 08:43:09 +00002585 if (Tok.is(tok::comma)) {
2586 Diag(Tok.getLocation(), diag::err_expected_ident);
2587 ConsumeToken();
2588 }
2589
2590 while (Tok.is(tok::identifier) || Tok.is(tok::comma)) {
2591 // attribute not present
2592 if (Tok.is(tok::comma)) {
2593 ConsumeToken();
2594 continue;
2595 }
2596
2597 IdentifierInfo *ScopeName = 0, *AttrName = Tok.getIdentifierInfo();
2598 SourceLocation ScopeLoc, AttrLoc = ConsumeToken();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002599
Sean Huntbbd37c62009-11-21 08:43:09 +00002600 // scoped attribute
2601 if (Tok.is(tok::coloncolon)) {
2602 ConsumeToken();
2603
2604 if (!Tok.is(tok::identifier)) {
2605 Diag(Tok.getLocation(), diag::err_expected_ident);
2606 SkipUntil(tok::r_square, tok::comma, true, true);
2607 continue;
2608 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002609
Sean Huntbbd37c62009-11-21 08:43:09 +00002610 ScopeName = AttrName;
2611 ScopeLoc = AttrLoc;
2612
2613 AttrName = Tok.getIdentifierInfo();
2614 AttrLoc = ConsumeToken();
2615 }
2616
2617 bool AttrParsed = false;
2618 // No scoped names are supported; ideally we could put all non-standard
2619 // attributes into namespaces.
2620 if (!ScopeName) {
2621 switch(AttributeList::getKind(AttrName))
2622 {
2623 // No arguments
Sean Hunt7725e672009-11-25 04:20:27 +00002624 case AttributeList::AT_carries_dependency:
Anders Carlsson15e14a22011-01-23 21:33:18 +00002625 case AttributeList::AT_noreturn: {
Sean Huntbbd37c62009-11-21 08:43:09 +00002626 if (Tok.is(tok::l_paren)) {
2627 Diag(Tok.getLocation(), diag::err_cxx0x_attribute_forbids_arguments)
2628 << AttrName->getName();
2629 break;
2630 }
2631
John McCall0b7e6782011-03-24 11:26:52 +00002632 attrs.addNew(AttrName, AttrLoc, 0, AttrLoc, 0,
2633 SourceLocation(), 0, 0, false, true);
Sean Huntbbd37c62009-11-21 08:43:09 +00002634 AttrParsed = true;
2635 break;
2636 }
2637
2638 // One argument; must be a type-id or assignment-expression
2639 case AttributeList::AT_aligned: {
2640 if (Tok.isNot(tok::l_paren)) {
2641 Diag(Tok.getLocation(), diag::err_cxx0x_attribute_requires_arguments)
2642 << AttrName->getName();
2643 break;
2644 }
2645 SourceLocation ParamLoc = ConsumeParen();
2646
John McCall60d7b3a2010-08-24 06:29:42 +00002647 ExprResult ArgExpr = ParseCXX0XAlignArgument(ParamLoc);
Sean Huntbbd37c62009-11-21 08:43:09 +00002648
2649 MatchRHSPunctuation(tok::r_paren, ParamLoc);
2650
2651 ExprVector ArgExprs(Actions);
2652 ArgExprs.push_back(ArgExpr.release());
John McCall0b7e6782011-03-24 11:26:52 +00002653 attrs.addNew(AttrName, AttrLoc, 0, AttrLoc,
2654 0, ParamLoc, ArgExprs.take(), 1,
2655 false, true);
Sean Huntbbd37c62009-11-21 08:43:09 +00002656
2657 AttrParsed = true;
2658 break;
2659 }
2660
2661 // Silence warnings
2662 default: break;
2663 }
2664 }
2665
2666 // Skip the entire parameter clause, if any
2667 if (!AttrParsed && Tok.is(tok::l_paren)) {
2668 ConsumeParen();
2669 // SkipUntil maintains the balancedness of tokens.
2670 SkipUntil(tok::r_paren, false);
2671 }
2672 }
2673
2674 if (ExpectAndConsume(tok::r_square, diag::err_expected_rsquare))
2675 SkipUntil(tok::r_square, false);
2676 Loc = Tok.getLocation();
2677 if (ExpectAndConsume(tok::r_square, diag::err_expected_rsquare))
2678 SkipUntil(tok::r_square, false);
2679
John McCall7f040a92010-12-24 02:08:15 +00002680 attrs.Range = SourceRange(StartLoc, Loc);
Sean Huntbbd37c62009-11-21 08:43:09 +00002681}
2682
2683/// ParseCXX0XAlignArgument - Parse the argument to C++0x's [[align]]
2684/// attribute.
2685///
2686/// FIXME: Simply returns an alignof() expression if the argument is a
2687/// type. Ideally, the type should be propagated directly into Sema.
2688///
2689/// [C++0x] 'align' '(' type-id ')'
2690/// [C++0x] 'align' '(' assignment-expression ')'
John McCall60d7b3a2010-08-24 06:29:42 +00002691ExprResult Parser::ParseCXX0XAlignArgument(SourceLocation Start) {
Sean Huntbbd37c62009-11-21 08:43:09 +00002692 if (isTypeIdInParens()) {
John McCallf312b1e2010-08-26 23:41:50 +00002693 EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated);
Sean Huntbbd37c62009-11-21 08:43:09 +00002694 SourceLocation TypeLoc = Tok.getLocation();
John McCallb3d87482010-08-24 05:47:05 +00002695 ParsedType Ty = ParseTypeName().get();
Sean Huntbbd37c62009-11-21 08:43:09 +00002696 SourceRange TypeRange(Start, Tok.getLocation());
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002697 return Actions.ActOnUnaryExprOrTypeTraitExpr(TypeLoc, UETT_AlignOf, true,
2698 Ty.getAsOpaquePtr(), TypeRange);
Sean Huntbbd37c62009-11-21 08:43:09 +00002699 } else
2700 return ParseConstantExpression();
2701}
Francois Pichet334d47e2010-10-11 12:59:39 +00002702
2703/// ParseMicrosoftAttributes - Parse a Microsoft attribute [Attr]
2704///
2705/// [MS] ms-attribute:
2706/// '[' token-seq ']'
2707///
2708/// [MS] ms-attribute-seq:
2709/// ms-attribute[opt]
2710/// ms-attribute ms-attribute-seq
John McCall7f040a92010-12-24 02:08:15 +00002711void Parser::ParseMicrosoftAttributes(ParsedAttributes &attrs,
2712 SourceLocation *endLoc) {
Francois Pichet334d47e2010-10-11 12:59:39 +00002713 assert(Tok.is(tok::l_square) && "Not a Microsoft attribute list");
2714
2715 while (Tok.is(tok::l_square)) {
2716 ConsumeBracket();
2717 SkipUntil(tok::r_square, true, true);
John McCall7f040a92010-12-24 02:08:15 +00002718 if (endLoc) *endLoc = Tok.getLocation();
Francois Pichet334d47e2010-10-11 12:59:39 +00002719 ExpectAndConsume(tok::r_square, diag::err_expected_rsquare);
2720 }
2721}
Francois Pichet563a6452011-05-25 10:19:49 +00002722
2723void Parser::ParseMicrosoftIfExistsClassDeclaration(DeclSpec::TST TagType,
2724 AccessSpecifier& CurAS) {
2725 bool Result;
2726 if (ParseMicrosoftIfExistsCondition(Result))
2727 return;
2728
2729 if (Tok.isNot(tok::l_brace)) {
2730 Diag(Tok, diag::err_expected_lbrace);
2731 return;
2732 }
2733 ConsumeBrace();
2734
2735 // Condition is false skip all inside the {}.
2736 if (!Result) {
2737 SkipUntil(tok::r_brace, false);
2738 return;
2739 }
2740
2741 // Condition is true, parse the declaration.
2742 while (Tok.isNot(tok::r_brace)) {
2743
2744 // __if_exists, __if_not_exists can nest.
2745 if ((Tok.is(tok::kw___if_exists) || Tok.is(tok::kw___if_not_exists))) {
2746 ParseMicrosoftIfExistsClassDeclaration((DeclSpec::TST)TagType, CurAS);
2747 continue;
2748 }
2749
2750 // Check for extraneous top-level semicolon.
2751 if (Tok.is(tok::semi)) {
2752 Diag(Tok, diag::ext_extra_struct_semi)
2753 << DeclSpec::getSpecifierName((DeclSpec::TST)TagType)
2754 << FixItHint::CreateRemoval(Tok.getLocation());
2755 ConsumeToken();
2756 continue;
2757 }
2758
2759 AccessSpecifier AS = getAccessSpecifierIfPresent();
2760 if (AS != AS_none) {
2761 // Current token is a C++ access specifier.
2762 CurAS = AS;
2763 SourceLocation ASLoc = Tok.getLocation();
2764 ConsumeToken();
2765 if (Tok.is(tok::colon))
2766 Actions.ActOnAccessSpecifier(AS, ASLoc, Tok.getLocation());
2767 else
2768 Diag(Tok, diag::err_expected_colon);
2769 ConsumeToken();
2770 continue;
2771 }
2772
2773 // Parse all the comma separated declarators.
2774 ParseCXXClassMemberDeclaration(CurAS);
2775 }
2776
2777 if (Tok.isNot(tok::r_brace)) {
2778 Diag(Tok, diag::err_expected_rbrace);
2779 return;
2780 }
2781 ConsumeBrace();
2782}