blob: 92a501a8c4a72e6a0ab706ce52412e346694106f [file] [log] [blame]
Chris Lattner8f08cb72007-08-25 06:57:03 +00001//===--- ParseDeclCXX.cpp - C++ Declaration Parsing -----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner8f08cb72007-08-25 06:57:03 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the C++ Declaration portions of the Parser interfaces.
11//
12//===----------------------------------------------------------------------===//
13
Anders Carlsson0c6139d2009-06-27 00:27:47 +000014#include "clang/Basic/OperatorKinds.h"
Douglas Gregor1b7f8982008-04-14 00:13:42 +000015#include "clang/Parse/Parser.h"
Chris Lattner500d3292009-01-29 05:15:15 +000016#include "clang/Parse/ParseDiagnostic.h"
John McCall19510852010-08-20 18:27:03 +000017#include "clang/Sema/DeclSpec.h"
18#include "clang/Sema/Scope.h"
19#include "clang/Sema/ParsedTemplate.h"
John McCallf312b1e2010-08-26 23:41:50 +000020#include "clang/Sema/PrettyDeclStackTrace.h"
Chris Lattnerd167ca02009-12-10 00:21:05 +000021#include "RAIIObjectsForParser.h"
Chris Lattner8f08cb72007-08-25 06:57:03 +000022using namespace clang;
23
24/// ParseNamespace - We know that the current token is a namespace keyword. This
Sebastian Redld078e642010-08-27 23:12:46 +000025/// may either be a top level namespace or a block-level namespace alias. If
26/// there was an inline keyword, it has already been parsed.
Chris Lattner8f08cb72007-08-25 06:57:03 +000027///
28/// namespace-definition: [C++ 7.3: basic.namespace]
29/// named-namespace-definition
30/// unnamed-namespace-definition
31///
32/// unnamed-namespace-definition:
Sebastian Redld078e642010-08-27 23:12:46 +000033/// 'inline'[opt] 'namespace' attributes[opt] '{' namespace-body '}'
Chris Lattner8f08cb72007-08-25 06:57:03 +000034///
35/// named-namespace-definition:
36/// original-namespace-definition
37/// extension-namespace-definition
38///
39/// original-namespace-definition:
Sebastian Redld078e642010-08-27 23:12:46 +000040/// 'inline'[opt] 'namespace' identifier attributes[opt]
41/// '{' namespace-body '}'
Chris Lattner8f08cb72007-08-25 06:57:03 +000042///
43/// extension-namespace-definition:
Sebastian Redld078e642010-08-27 23:12:46 +000044/// 'inline'[opt] 'namespace' original-namespace-name
45/// '{' namespace-body '}'
Mike Stump1eb44332009-09-09 15:08:12 +000046///
Chris Lattner8f08cb72007-08-25 06:57:03 +000047/// namespace-alias-definition: [C++ 7.3.2: namespace.alias]
48/// 'namespace' identifier '=' qualified-namespace-specifier ';'
49///
John McCalld226f652010-08-21 09:40:31 +000050Decl *Parser::ParseNamespace(unsigned Context,
Sebastian Redld078e642010-08-27 23:12:46 +000051 SourceLocation &DeclEnd,
52 SourceLocation InlineLoc) {
Chris Lattner04d66662007-10-09 17:33:22 +000053 assert(Tok.is(tok::kw_namespace) && "Not a namespace!");
Chris Lattner8f08cb72007-08-25 06:57:03 +000054 SourceLocation NamespaceLoc = ConsumeToken(); // eat the 'namespace'.
Fariborz Jahanian9735c5e2011-08-22 17:59:19 +000055 ObjCDeclContextSwitch ObjCDC(*this);
Fariborz Jahaniana28948f2011-08-22 15:54:49 +000056
Douglas Gregor49f40bd2009-09-18 19:03:04 +000057 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +000058 Actions.CodeCompleteNamespaceDecl(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +000059 cutOffParsing();
60 return 0;
Douglas Gregor49f40bd2009-09-18 19:03:04 +000061 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +000062
Chris Lattner8f08cb72007-08-25 06:57:03 +000063 SourceLocation IdentLoc;
64 IdentifierInfo *Ident = 0;
Richard Trieuf858bd82011-05-26 20:11:09 +000065 std::vector<SourceLocation> ExtraIdentLoc;
66 std::vector<IdentifierInfo*> ExtraIdent;
67 std::vector<SourceLocation> ExtraNamespaceLoc;
Douglas Gregor6a588dd2009-06-17 19:49:00 +000068
69 Token attrTok;
Mike Stump1eb44332009-09-09 15:08:12 +000070
Chris Lattner04d66662007-10-09 17:33:22 +000071 if (Tok.is(tok::identifier)) {
Chris Lattner8f08cb72007-08-25 06:57:03 +000072 Ident = Tok.getIdentifierInfo();
73 IdentLoc = ConsumeToken(); // eat the identifier.
Richard Trieuf858bd82011-05-26 20:11:09 +000074 while (Tok.is(tok::coloncolon) && NextToken().is(tok::identifier)) {
75 ExtraNamespaceLoc.push_back(ConsumeToken());
76 ExtraIdent.push_back(Tok.getIdentifierInfo());
77 ExtraIdentLoc.push_back(ConsumeToken());
78 }
Chris Lattner8f08cb72007-08-25 06:57:03 +000079 }
Mike Stump1eb44332009-09-09 15:08:12 +000080
Chris Lattner8f08cb72007-08-25 06:57:03 +000081 // Read label attributes, if present.
John McCall0b7e6782011-03-24 11:26:52 +000082 ParsedAttributes attrs(AttrFactory);
Douglas Gregor6a588dd2009-06-17 19:49:00 +000083 if (Tok.is(tok::kw___attribute)) {
84 attrTok = Tok;
John McCall7f040a92010-12-24 02:08:15 +000085 ParseGNUAttributes(attrs);
Douglas Gregor6a588dd2009-06-17 19:49:00 +000086 }
Mike Stump1eb44332009-09-09 15:08:12 +000087
Douglas Gregor6a588dd2009-06-17 19:49:00 +000088 if (Tok.is(tok::equal)) {
John McCall7f040a92010-12-24 02:08:15 +000089 if (!attrs.empty())
Douglas Gregor6a588dd2009-06-17 19:49:00 +000090 Diag(attrTok, diag::err_unexpected_namespace_attributes_alias);
Sebastian Redld078e642010-08-27 23:12:46 +000091 if (InlineLoc.isValid())
92 Diag(InlineLoc, diag::err_inline_namespace_alias)
93 << FixItHint::CreateRemoval(InlineLoc);
Fariborz Jahanian9735c5e2011-08-22 17:59:19 +000094 return ParseNamespaceAlias(NamespaceLoc, IdentLoc, Ident, DeclEnd);
Douglas Gregor6a588dd2009-06-17 19:49:00 +000095 }
Mike Stump1eb44332009-09-09 15:08:12 +000096
Richard Trieuf858bd82011-05-26 20:11:09 +000097
Douglas Gregor4a8dfb52011-10-12 16:37:45 +000098 BalancedDelimiterTracker T(*this, tok::l_brace);
99 if (T.consumeOpen()) {
Richard Trieuf858bd82011-05-26 20:11:09 +0000100 if (!ExtraIdent.empty()) {
101 Diag(ExtraNamespaceLoc[0], diag::err_nested_namespaces_with_double_colon)
102 << SourceRange(ExtraNamespaceLoc.front(), ExtraIdentLoc.back());
103 }
Mike Stump1eb44332009-09-09 15:08:12 +0000104 Diag(Tok, Ident ? diag::err_expected_lbrace :
Chris Lattner51448322009-03-29 14:02:43 +0000105 diag::err_expected_ident_lbrace);
John McCalld226f652010-08-21 09:40:31 +0000106 return 0;
Chris Lattner8f08cb72007-08-25 06:57:03 +0000107 }
Mike Stump1eb44332009-09-09 15:08:12 +0000108
Douglas Gregor23c94db2010-07-02 17:43:08 +0000109 if (getCurScope()->isClassScope() || getCurScope()->isTemplateParamScope() ||
110 getCurScope()->isInObjcMethodScope() || getCurScope()->getBlockParent() ||
111 getCurScope()->getFnParent()) {
Richard Trieuf858bd82011-05-26 20:11:09 +0000112 if (!ExtraIdent.empty()) {
113 Diag(ExtraNamespaceLoc[0], diag::err_nested_namespaces_with_double_colon)
114 << SourceRange(ExtraNamespaceLoc.front(), ExtraIdentLoc.back());
115 }
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000116 Diag(T.getOpenLocation(), diag::err_namespace_nonnamespace_scope);
Douglas Gregor95f1b152010-05-14 05:08:22 +0000117 SkipUntil(tok::r_brace, false);
John McCalld226f652010-08-21 09:40:31 +0000118 return 0;
Douglas Gregor95f1b152010-05-14 05:08:22 +0000119 }
120
Richard Trieuf858bd82011-05-26 20:11:09 +0000121 if (!ExtraIdent.empty()) {
122 TentativeParsingAction TPA(*this);
123 SkipUntil(tok::r_brace, /*StopAtSemi*/false, /*DontConsume*/true);
124 Token rBraceToken = Tok;
125 TPA.Revert();
126
127 if (!rBraceToken.is(tok::r_brace)) {
128 Diag(ExtraNamespaceLoc[0], diag::err_nested_namespaces_with_double_colon)
129 << SourceRange(ExtraNamespaceLoc.front(), ExtraIdentLoc.back());
130 } else {
Benjamin Kramer9910df02011-05-26 21:32:30 +0000131 std::string NamespaceFix;
Richard Trieuf858bd82011-05-26 20:11:09 +0000132 for (std::vector<IdentifierInfo*>::iterator I = ExtraIdent.begin(),
133 E = ExtraIdent.end(); I != E; ++I) {
134 NamespaceFix += " { namespace ";
135 NamespaceFix += (*I)->getName();
136 }
Benjamin Kramer9910df02011-05-26 21:32:30 +0000137
Richard Trieuf858bd82011-05-26 20:11:09 +0000138 std::string RBraces;
Benjamin Kramer9910df02011-05-26 21:32:30 +0000139 for (unsigned i = 0, e = ExtraIdent.size(); i != e; ++i)
Richard Trieuf858bd82011-05-26 20:11:09 +0000140 RBraces += "} ";
Benjamin Kramer9910df02011-05-26 21:32:30 +0000141
Richard Trieuf858bd82011-05-26 20:11:09 +0000142 Diag(ExtraNamespaceLoc[0], diag::err_nested_namespaces_with_double_colon)
143 << FixItHint::CreateReplacement(SourceRange(ExtraNamespaceLoc.front(),
144 ExtraIdentLoc.back()),
145 NamespaceFix)
146 << FixItHint::CreateInsertion(rBraceToken.getLocation(), RBraces);
147 }
148 }
149
Sebastian Redl88e64ca2010-08-31 00:36:45 +0000150 // If we're still good, complain about inline namespaces in non-C++0x now.
Richard Smith7fe62082011-10-15 05:09:34 +0000151 if (InlineLoc.isValid())
152 Diag(InlineLoc, getLang().CPlusPlus0x ?
153 diag::warn_cxx98_compat_inline_namespace : diag::ext_inline_namespace);
Sebastian Redl88e64ca2010-08-31 00:36:45 +0000154
Chris Lattner51448322009-03-29 14:02:43 +0000155 // Enter a scope for the namespace.
156 ParseScope NamespaceScope(this, Scope::DeclScope);
157
John McCalld226f652010-08-21 09:40:31 +0000158 Decl *NamespcDecl =
Abramo Bagnaraacba90f2011-03-08 12:38:20 +0000159 Actions.ActOnStartNamespaceDef(getCurScope(), InlineLoc, NamespaceLoc,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000160 IdentLoc, Ident, T.getOpenLocation(),
161 attrs.getList());
Chris Lattner51448322009-03-29 14:02:43 +0000162
John McCallf312b1e2010-08-26 23:41:50 +0000163 PrettyDeclStackTraceEntry CrashInfo(Actions, NamespcDecl, NamespaceLoc,
164 "parsing namespace");
Mike Stump1eb44332009-09-09 15:08:12 +0000165
Richard Trieuf858bd82011-05-26 20:11:09 +0000166 // Parse the contents of the namespace. This includes parsing recovery on
167 // any improperly nested namespaces.
168 ParseInnerNamespace(ExtraIdentLoc, ExtraIdent, ExtraNamespaceLoc, 0,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000169 InlineLoc, attrs, T);
Mike Stump1eb44332009-09-09 15:08:12 +0000170
Chris Lattner51448322009-03-29 14:02:43 +0000171 // Leave the namespace scope.
172 NamespaceScope.Exit();
173
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000174 DeclEnd = T.getCloseLocation();
175 Actions.ActOnFinishNamespaceDef(NamespcDecl, DeclEnd);
Chris Lattner51448322009-03-29 14:02:43 +0000176
177 return NamespcDecl;
Chris Lattner8f08cb72007-08-25 06:57:03 +0000178}
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000179
Richard Trieuf858bd82011-05-26 20:11:09 +0000180/// ParseInnerNamespace - Parse the contents of a namespace.
181void Parser::ParseInnerNamespace(std::vector<SourceLocation>& IdentLoc,
182 std::vector<IdentifierInfo*>& Ident,
183 std::vector<SourceLocation>& NamespaceLoc,
184 unsigned int index, SourceLocation& InlineLoc,
Richard Trieuf858bd82011-05-26 20:11:09 +0000185 ParsedAttributes& attrs,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000186 BalancedDelimiterTracker &Tracker) {
Richard Trieuf858bd82011-05-26 20:11:09 +0000187 if (index == Ident.size()) {
188 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
189 ParsedAttributesWithRange attrs(AttrFactory);
190 MaybeParseCXX0XAttributes(attrs);
191 MaybeParseMicrosoftAttributes(attrs);
192 ParseExternalDeclaration(attrs);
193 }
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000194
195 // The caller is what called check -- we are simply calling
196 // the close for it.
197 Tracker.consumeClose();
Richard Trieuf858bd82011-05-26 20:11:09 +0000198
199 return;
200 }
201
202 // Parse improperly nested namespaces.
203 ParseScope NamespaceScope(this, Scope::DeclScope);
204 Decl *NamespcDecl =
205 Actions.ActOnStartNamespaceDef(getCurScope(), SourceLocation(),
206 NamespaceLoc[index], IdentLoc[index],
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000207 Ident[index], Tracker.getOpenLocation(),
208 attrs.getList());
Richard Trieuf858bd82011-05-26 20:11:09 +0000209
210 ParseInnerNamespace(IdentLoc, Ident, NamespaceLoc, ++index, InlineLoc,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000211 attrs, Tracker);
Richard Trieuf858bd82011-05-26 20:11:09 +0000212
213 NamespaceScope.Exit();
214
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000215 Actions.ActOnFinishNamespaceDef(NamespcDecl, Tracker.getCloseLocation());
Richard Trieuf858bd82011-05-26 20:11:09 +0000216}
217
Anders Carlssonf67606a2009-03-28 04:07:16 +0000218/// ParseNamespaceAlias - Parse the part after the '=' in a namespace
219/// alias definition.
220///
John McCalld226f652010-08-21 09:40:31 +0000221Decl *Parser::ParseNamespaceAlias(SourceLocation NamespaceLoc,
John McCall0b7e6782011-03-24 11:26:52 +0000222 SourceLocation AliasLoc,
223 IdentifierInfo *Alias,
224 SourceLocation &DeclEnd) {
Anders Carlssonf67606a2009-03-28 04:07:16 +0000225 assert(Tok.is(tok::equal) && "Not equal token");
Mike Stump1eb44332009-09-09 15:08:12 +0000226
Anders Carlssonf67606a2009-03-28 04:07:16 +0000227 ConsumeToken(); // eat the '='.
Mike Stump1eb44332009-09-09 15:08:12 +0000228
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000229 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000230 Actions.CodeCompleteNamespaceAliasDecl(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000231 cutOffParsing();
232 return 0;
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000233 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000234
Anders Carlssonf67606a2009-03-28 04:07:16 +0000235 CXXScopeSpec SS;
236 // Parse (optional) nested-name-specifier.
Douglas Gregorefaa93a2011-11-07 17:33:42 +0000237 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), /*EnteringContext=*/false);
Anders Carlssonf67606a2009-03-28 04:07:16 +0000238
239 if (SS.isInvalid() || Tok.isNot(tok::identifier)) {
240 Diag(Tok, diag::err_expected_namespace_name);
241 // Skip to end of the definition and eat the ';'.
242 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000243 return 0;
Anders Carlssonf67606a2009-03-28 04:07:16 +0000244 }
245
246 // Parse identifier.
Anders Carlsson03bd5a12009-03-28 22:53:22 +0000247 IdentifierInfo *Ident = Tok.getIdentifierInfo();
248 SourceLocation IdentLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000249
Anders Carlssonf67606a2009-03-28 04:07:16 +0000250 // Eat the ';'.
Chris Lattner97144fc2009-04-02 04:16:50 +0000251 DeclEnd = Tok.getLocation();
Chris Lattner6869d8e2009-06-14 00:07:48 +0000252 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_namespace_name,
253 "", tok::semi);
Mike Stump1eb44332009-09-09 15:08:12 +0000254
Douglas Gregor23c94db2010-07-02 17:43:08 +0000255 return Actions.ActOnNamespaceAliasDef(getCurScope(), NamespaceLoc, AliasLoc, Alias,
Anders Carlsson03bd5a12009-03-28 22:53:22 +0000256 SS, IdentLoc, Ident);
Anders Carlssonf67606a2009-03-28 04:07:16 +0000257}
258
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000259/// ParseLinkage - We know that the current token is a string_literal
260/// and just before that, that extern was seen.
261///
262/// linkage-specification: [C++ 7.5p2: dcl.link]
263/// 'extern' string-literal '{' declaration-seq[opt] '}'
264/// 'extern' string-literal declaration
265///
Chris Lattner7d642712010-11-09 20:15:55 +0000266Decl *Parser::ParseLinkage(ParsingDeclSpec &DS, unsigned Context) {
Douglas Gregorc19923d2008-11-21 16:10:08 +0000267 assert(Tok.is(tok::string_literal) && "Not a string literal!");
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000268 llvm::SmallString<8> LangBuffer;
Douglas Gregor453091c2010-03-16 22:30:13 +0000269 bool Invalid = false;
Chris Lattner5f9e2722011-07-23 10:55:15 +0000270 StringRef Lang = PP.getSpelling(Tok, LangBuffer, &Invalid);
Douglas Gregor453091c2010-03-16 22:30:13 +0000271 if (Invalid)
John McCalld226f652010-08-21 09:40:31 +0000272 return 0;
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000273
274 SourceLocation Loc = ConsumeStringToken();
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000275
Douglas Gregor074149e2009-01-05 19:45:36 +0000276 ParseScope LinkageScope(this, Scope::DeclScope);
John McCalld226f652010-08-21 09:40:31 +0000277 Decl *LinkageSpec
Douglas Gregor23c94db2010-07-02 17:43:08 +0000278 = Actions.ActOnStartLinkageSpecification(getCurScope(),
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000279 DS.getSourceRange().getBegin(),
Benjamin Kramerd5663812010-05-03 13:08:54 +0000280 Loc, Lang,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000281 Tok.is(tok::l_brace) ? Tok.getLocation()
Douglas Gregor074149e2009-01-05 19:45:36 +0000282 : SourceLocation());
283
John McCall0b7e6782011-03-24 11:26:52 +0000284 ParsedAttributesWithRange attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +0000285 MaybeParseCXX0XAttributes(attrs);
286 MaybeParseMicrosoftAttributes(attrs);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000287
Douglas Gregor074149e2009-01-05 19:45:36 +0000288 if (Tok.isNot(tok::l_brace)) {
Abramo Bagnaraf41e33c2011-05-01 16:25:54 +0000289 // Reset the source range in DS, as the leading "extern"
290 // does not really belong to the inner declaration ...
291 DS.SetRangeStart(SourceLocation());
292 DS.SetRangeEnd(SourceLocation());
293 // ... but anyway remember that such an "extern" was seen.
Abramo Bagnara35f9a192010-07-30 16:47:02 +0000294 DS.setExternInLinkageSpec(true);
John McCall7f040a92010-12-24 02:08:15 +0000295 ParseExternalDeclaration(attrs, &DS);
Douglas Gregor23c94db2010-07-02 17:43:08 +0000296 return Actions.ActOnFinishLinkageSpecification(getCurScope(), LinkageSpec,
Douglas Gregor074149e2009-01-05 19:45:36 +0000297 SourceLocation());
Mike Stump1eb44332009-09-09 15:08:12 +0000298 }
Douglas Gregorf44515a2008-12-16 22:23:02 +0000299
Douglas Gregor63a01132010-02-07 08:38:28 +0000300 DS.abort();
301
John McCall7f040a92010-12-24 02:08:15 +0000302 ProhibitAttributes(attrs);
Sean Huntbbd37c62009-11-21 08:43:09 +0000303
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000304 BalancedDelimiterTracker T(*this, tok::l_brace);
305 T.consumeOpen();
Douglas Gregorf44515a2008-12-16 22:23:02 +0000306 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
John McCall0b7e6782011-03-24 11:26:52 +0000307 ParsedAttributesWithRange attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +0000308 MaybeParseCXX0XAttributes(attrs);
309 MaybeParseMicrosoftAttributes(attrs);
310 ParseExternalDeclaration(attrs);
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000311 }
312
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000313 T.consumeClose();
Chris Lattner7d642712010-11-09 20:15:55 +0000314 return Actions.ActOnFinishLinkageSpecification(getCurScope(), LinkageSpec,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000315 T.getCloseLocation());
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000316}
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000317
Douglas Gregorf780abc2008-12-30 03:27:21 +0000318/// ParseUsingDirectiveOrDeclaration - Parse C++ using using-declaration or
319/// using-directive. Assumes that current token is 'using'.
John McCalld226f652010-08-21 09:40:31 +0000320Decl *Parser::ParseUsingDirectiveOrDeclaration(unsigned Context,
John McCall78b81052010-11-10 02:40:36 +0000321 const ParsedTemplateInfo &TemplateInfo,
322 SourceLocation &DeclEnd,
Richard Smithc89edf52011-07-01 19:46:12 +0000323 ParsedAttributesWithRange &attrs,
324 Decl **OwnedType) {
Douglas Gregorf780abc2008-12-30 03:27:21 +0000325 assert(Tok.is(tok::kw_using) && "Not using token");
Fariborz Jahanian9735c5e2011-08-22 17:59:19 +0000326 ObjCDeclContextSwitch ObjCDC(*this);
327
Douglas Gregorf780abc2008-12-30 03:27:21 +0000328 // Eat 'using'.
329 SourceLocation UsingLoc = ConsumeToken();
330
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000331 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000332 Actions.CodeCompleteUsing(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000333 cutOffParsing();
334 return 0;
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000335 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000336
John McCall78b81052010-11-10 02:40:36 +0000337 // 'using namespace' means this is a using-directive.
338 if (Tok.is(tok::kw_namespace)) {
339 // Template parameters are always an error here.
340 if (TemplateInfo.Kind) {
341 SourceRange R = TemplateInfo.getSourceRange();
342 Diag(UsingLoc, diag::err_templated_using_directive)
343 << R << FixItHint::CreateRemoval(R);
344 }
Sean Huntbbd37c62009-11-21 08:43:09 +0000345
Fariborz Jahanian9735c5e2011-08-22 17:59:19 +0000346 return ParseUsingDirective(Context, UsingLoc, DeclEnd, attrs);
John McCall78b81052010-11-10 02:40:36 +0000347 }
348
Richard Smith162e1c12011-04-15 14:24:37 +0000349 // Otherwise, it must be a using-declaration or an alias-declaration.
John McCall78b81052010-11-10 02:40:36 +0000350
351 // Using declarations can't have attributes.
John McCall7f040a92010-12-24 02:08:15 +0000352 ProhibitAttributes(attrs);
Chris Lattner2f274772009-01-06 06:55:51 +0000353
Fariborz Jahanian9735c5e2011-08-22 17:59:19 +0000354 return ParseUsingDeclaration(Context, TemplateInfo, UsingLoc, DeclEnd,
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000355 AS_none, OwnedType);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000356}
357
358/// ParseUsingDirective - Parse C++ using-directive, assumes
359/// that current token is 'namespace' and 'using' was already parsed.
360///
361/// using-directive: [C++ 7.3.p4: namespace.udir]
362/// 'using' 'namespace' ::[opt] nested-name-specifier[opt]
363/// namespace-name ;
364/// [GNU] using-directive:
365/// 'using' 'namespace' ::[opt] nested-name-specifier[opt]
366/// namespace-name attributes[opt] ;
367///
John McCalld226f652010-08-21 09:40:31 +0000368Decl *Parser::ParseUsingDirective(unsigned Context,
John McCall78b81052010-11-10 02:40:36 +0000369 SourceLocation UsingLoc,
370 SourceLocation &DeclEnd,
John McCall7f040a92010-12-24 02:08:15 +0000371 ParsedAttributes &attrs) {
Douglas Gregorf780abc2008-12-30 03:27:21 +0000372 assert(Tok.is(tok::kw_namespace) && "Not 'namespace' token");
373
374 // Eat 'namespace'.
375 SourceLocation NamespcLoc = ConsumeToken();
376
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000377 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000378 Actions.CodeCompleteUsingDirective(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000379 cutOffParsing();
380 return 0;
Douglas Gregor49f40bd2009-09-18 19:03:04 +0000381 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000382
Douglas Gregorf780abc2008-12-30 03:27:21 +0000383 CXXScopeSpec SS;
384 // Parse (optional) nested-name-specifier.
Douglas Gregorefaa93a2011-11-07 17:33:42 +0000385 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), /*EnteringContext=*/false);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000386
Douglas Gregorf780abc2008-12-30 03:27:21 +0000387 IdentifierInfo *NamespcName = 0;
388 SourceLocation IdentLoc = SourceLocation();
389
390 // Parse namespace-name.
Chris Lattner823c44e2009-01-06 07:27:21 +0000391 if (SS.isInvalid() || Tok.isNot(tok::identifier)) {
Douglas Gregorf780abc2008-12-30 03:27:21 +0000392 Diag(Tok, diag::err_expected_namespace_name);
393 // If there was invalid namespace name, skip to end of decl, and eat ';'.
394 SkipUntil(tok::semi);
395 // FIXME: Are there cases, when we would like to call ActOnUsingDirective?
John McCalld226f652010-08-21 09:40:31 +0000396 return 0;
Douglas Gregorf780abc2008-12-30 03:27:21 +0000397 }
Mike Stump1eb44332009-09-09 15:08:12 +0000398
Chris Lattner823c44e2009-01-06 07:27:21 +0000399 // Parse identifier.
400 NamespcName = Tok.getIdentifierInfo();
401 IdentLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000402
Chris Lattner823c44e2009-01-06 07:27:21 +0000403 // Parse (optional) attributes (most likely GNU strong-using extension).
Sean Huntbbd37c62009-11-21 08:43:09 +0000404 bool GNUAttr = false;
405 if (Tok.is(tok::kw___attribute)) {
406 GNUAttr = true;
John McCall7f040a92010-12-24 02:08:15 +0000407 ParseGNUAttributes(attrs);
Sean Huntbbd37c62009-11-21 08:43:09 +0000408 }
Mike Stump1eb44332009-09-09 15:08:12 +0000409
Chris Lattner823c44e2009-01-06 07:27:21 +0000410 // Eat ';'.
Chris Lattner97144fc2009-04-02 04:16:50 +0000411 DeclEnd = Tok.getLocation();
Chris Lattner6869d8e2009-06-14 00:07:48 +0000412 ExpectAndConsume(tok::semi,
Douglas Gregor9ba23b42010-09-07 15:23:11 +0000413 GNUAttr ? diag::err_expected_semi_after_attribute_list
414 : diag::err_expected_semi_after_namespace_name,
415 "", tok::semi);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000416
Douglas Gregor23c94db2010-07-02 17:43:08 +0000417 return Actions.ActOnUsingDirective(getCurScope(), UsingLoc, NamespcLoc, SS,
John McCall7f040a92010-12-24 02:08:15 +0000418 IdentLoc, NamespcName, attrs.getList());
Douglas Gregorf780abc2008-12-30 03:27:21 +0000419}
420
Richard Smith162e1c12011-04-15 14:24:37 +0000421/// ParseUsingDeclaration - Parse C++ using-declaration or alias-declaration.
422/// Assumes that 'using' was already seen.
Douglas Gregorf780abc2008-12-30 03:27:21 +0000423///
424/// using-declaration: [C++ 7.3.p3: namespace.udecl]
425/// 'using' 'typename'[opt] ::[opt] nested-name-specifier
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000426/// unqualified-id
427/// 'using' :: unqualified-id
Douglas Gregorf780abc2008-12-30 03:27:21 +0000428///
Richard Smith162e1c12011-04-15 14:24:37 +0000429/// alias-declaration: C++0x [decl.typedef]p2
430/// 'using' identifier = type-id ;
431///
John McCalld226f652010-08-21 09:40:31 +0000432Decl *Parser::ParseUsingDeclaration(unsigned Context,
John McCall78b81052010-11-10 02:40:36 +0000433 const ParsedTemplateInfo &TemplateInfo,
434 SourceLocation UsingLoc,
435 SourceLocation &DeclEnd,
Richard Smithc89edf52011-07-01 19:46:12 +0000436 AccessSpecifier AS,
437 Decl **OwnedType) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000438 CXXScopeSpec SS;
John McCall7ba107a2009-11-18 02:36:19 +0000439 SourceLocation TypenameLoc;
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000440 bool IsTypeName;
441
442 // Ignore optional 'typename'.
Douglas Gregor12c118a2009-11-04 16:30:06 +0000443 // FIXME: This is wrong; we should parse this as a typename-specifier.
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000444 if (Tok.is(tok::kw_typename)) {
John McCall7ba107a2009-11-18 02:36:19 +0000445 TypenameLoc = Tok.getLocation();
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000446 ConsumeToken();
447 IsTypeName = true;
448 }
449 else
450 IsTypeName = false;
451
452 // Parse nested-name-specifier.
Douglas Gregorefaa93a2011-11-07 17:33:42 +0000453 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), /*EnteringContext=*/false);
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000454
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000455 // Check nested-name specifier.
456 if (SS.isInvalid()) {
457 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000458 return 0;
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000459 }
Douglas Gregor12c118a2009-11-04 16:30:06 +0000460
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000461 // Parse the unqualified-id. We allow parsing of both constructor and
Douglas Gregor12c118a2009-11-04 16:30:06 +0000462 // destructor names and allow the action module to diagnose any semantic
463 // errors.
464 UnqualifiedId Name;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000465 if (ParseUnqualifiedId(SS,
Douglas Gregor12c118a2009-11-04 16:30:06 +0000466 /*EnteringContext=*/false,
467 /*AllowDestructorName=*/true,
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000468 /*AllowConstructorName=*/true,
John McCallb3d87482010-08-24 05:47:05 +0000469 ParsedType(),
Douglas Gregor12c118a2009-11-04 16:30:06 +0000470 Name)) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000471 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000472 return 0;
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000473 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000474
John McCall0b7e6782011-03-24 11:26:52 +0000475 ParsedAttributes attrs(AttrFactory);
Richard Smith162e1c12011-04-15 14:24:37 +0000476
477 // Maybe this is an alias-declaration.
478 bool IsAliasDecl = Tok.is(tok::equal);
479 TypeResult TypeAlias;
480 if (IsAliasDecl) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000481 // TODO: Attribute support. C++0x attributes may appear before the equals.
482 // Where can GNU attributes appear?
Richard Smith162e1c12011-04-15 14:24:37 +0000483 ConsumeToken();
484
Richard Smith7fe62082011-10-15 05:09:34 +0000485 Diag(Tok.getLocation(), getLang().CPlusPlus0x ?
486 diag::warn_cxx98_compat_alias_declaration :
487 diag::ext_alias_declaration);
Richard Smith162e1c12011-04-15 14:24:37 +0000488
Richard Smith3e4c6c42011-05-05 21:57:07 +0000489 // Type alias templates cannot be specialized.
490 int SpecKind = -1;
Richard Smith536e9c12011-05-05 22:36:10 +0000491 if (TemplateInfo.Kind == ParsedTemplateInfo::Template &&
492 Name.getKind() == UnqualifiedId::IK_TemplateId)
Richard Smith3e4c6c42011-05-05 21:57:07 +0000493 SpecKind = 0;
494 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitSpecialization)
495 SpecKind = 1;
496 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation)
497 SpecKind = 2;
498 if (SpecKind != -1) {
499 SourceRange Range;
500 if (SpecKind == 0)
501 Range = SourceRange(Name.TemplateId->LAngleLoc,
502 Name.TemplateId->RAngleLoc);
503 else
504 Range = TemplateInfo.getSourceRange();
505 Diag(Range.getBegin(), diag::err_alias_declaration_specialization)
506 << SpecKind << Range;
507 SkipUntil(tok::semi);
508 return 0;
509 }
510
Richard Smith162e1c12011-04-15 14:24:37 +0000511 // Name must be an identifier.
512 if (Name.getKind() != UnqualifiedId::IK_Identifier) {
513 Diag(Name.StartLocation, diag::err_alias_declaration_not_identifier);
514 // No removal fixit: can't recover from this.
515 SkipUntil(tok::semi);
516 return 0;
517 } else if (IsTypeName)
518 Diag(TypenameLoc, diag::err_alias_declaration_not_identifier)
519 << FixItHint::CreateRemoval(SourceRange(TypenameLoc,
520 SS.isNotEmpty() ? SS.getEndLoc() : TypenameLoc));
521 else if (SS.isNotEmpty())
522 Diag(SS.getBeginLoc(), diag::err_alias_declaration_not_identifier)
523 << FixItHint::CreateRemoval(SS.getRange());
524
Richard Smith3e4c6c42011-05-05 21:57:07 +0000525 TypeAlias = ParseTypeName(0, TemplateInfo.Kind ?
526 Declarator::AliasTemplateContext :
John McCallcdda47f2011-10-01 09:56:14 +0000527 Declarator::AliasDeclContext, AS, OwnedType);
Richard Smith162e1c12011-04-15 14:24:37 +0000528 } else
529 // Parse (optional) attributes (most likely GNU strong-using extension).
530 MaybeParseGNUAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +0000531
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000532 // Eat ';'.
533 DeclEnd = Tok.getLocation();
534 ExpectAndConsume(tok::semi, diag::err_expected_semi_after,
Richard Smith162e1c12011-04-15 14:24:37 +0000535 !attrs.empty() ? "attributes list" :
536 IsAliasDecl ? "alias declaration" : "using declaration",
Douglas Gregor12c118a2009-11-04 16:30:06 +0000537 tok::semi);
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000538
John McCall78b81052010-11-10 02:40:36 +0000539 // Diagnose an attempt to declare a templated using-declaration.
Richard Smith3e4c6c42011-05-05 21:57:07 +0000540 // In C++0x, alias-declarations can be templates:
Richard Smith162e1c12011-04-15 14:24:37 +0000541 // template <...> using id = type;
Richard Smith3e4c6c42011-05-05 21:57:07 +0000542 if (TemplateInfo.Kind && !IsAliasDecl) {
John McCall78b81052010-11-10 02:40:36 +0000543 SourceRange R = TemplateInfo.getSourceRange();
544 Diag(UsingLoc, diag::err_templated_using_declaration)
545 << R << FixItHint::CreateRemoval(R);
546
547 // Unfortunately, we have to bail out instead of recovering by
548 // ignoring the parameters, just in case the nested name specifier
549 // depends on the parameters.
550 return 0;
551 }
552
Douglas Gregor480b53c2011-09-26 14:30:28 +0000553 // "typename" keyword is allowed for identifiers only,
554 // because it may be a type definition.
555 if (IsTypeName && Name.getKind() != UnqualifiedId::IK_Identifier) {
556 Diag(Name.getSourceRange().getBegin(), diag::err_typename_identifiers_only)
557 << FixItHint::CreateRemoval(SourceRange(TypenameLoc));
558 // Proceed parsing, but reset the IsTypeName flag.
559 IsTypeName = false;
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
Benjamin Kramerffbe9b92011-12-23 17:00:35 +0000576/// ParseStaticAssertDeclaration - Parse C++0x or C11 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///
Benjamin Kramerffbe9b92011-12-23 17:00:35 +0000581/// [C11] static_assert-declaration:
Peter Collingbournec6eb44b2011-04-15 00:35:57 +0000582/// _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
Benjamin Kramerffbe9b92011-12-23 17:00:35 +0000588 if (Tok.is(tok::kw__Static_assert) && !getLang().C11)
589 Diag(Tok, diag::ext_c11_static_assert);
Richard Smith841804b2011-10-17 23:06:20 +0000590 if (Tok.is(tok::kw_static_assert))
591 Diag(Tok, diag::warn_cxx98_compat_static_assert);
Peter Collingbournec6eb44b2011-04-15 00:35:57 +0000592
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000593 SourceLocation StaticAssertLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000594
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000595 BalancedDelimiterTracker T(*this, tok::l_paren);
596 if (T.consumeOpen()) {
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000597 Diag(Tok, diag::err_expected_lparen);
John McCalld226f652010-08-21 09:40:31 +0000598 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000599 }
Mike Stump1eb44332009-09-09 15:08:12 +0000600
John McCall60d7b3a2010-08-24 06:29:42 +0000601 ExprResult AssertExpr(ParseConstantExpression());
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000602 if (AssertExpr.isInvalid()) {
603 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000604 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000605 }
Mike Stump1eb44332009-09-09 15:08:12 +0000606
Anders Carlssonad5f9602009-03-13 23:29:20 +0000607 if (ExpectAndConsume(tok::comma, diag::err_expected_comma, "", tok::semi))
John McCalld226f652010-08-21 09:40:31 +0000608 return 0;
Anders Carlssonad5f9602009-03-13 23:29:20 +0000609
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000610 if (Tok.isNot(tok::string_literal)) {
611 Diag(Tok, diag::err_expected_string_literal);
612 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +0000613 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000614 }
Mike Stump1eb44332009-09-09 15:08:12 +0000615
John McCall60d7b3a2010-08-24 06:29:42 +0000616 ExprResult AssertMessage(ParseStringLiteralExpression());
Mike Stump1eb44332009-09-09 15:08:12 +0000617 if (AssertMessage.isInvalid())
John McCalld226f652010-08-21 09:40:31 +0000618 return 0;
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000619
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000620 T.consumeClose();
Mike Stump1eb44332009-09-09 15:08:12 +0000621
Chris Lattner97144fc2009-04-02 04:16:50 +0000622 DeclEnd = Tok.getLocation();
Douglas Gregor9ba23b42010-09-07 15:23:11 +0000623 ExpectAndConsumeSemi(diag::err_expected_semi_after_static_assert);
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000624
John McCall9ae2f072010-08-23 23:25:46 +0000625 return Actions.ActOnStaticAssertDeclaration(StaticAssertLoc,
626 AssertExpr.take(),
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000627 AssertMessage.take(),
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000628 T.getCloseLocation());
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000629}
630
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000631/// ParseDecltypeSpecifier - Parse a C++0x decltype specifier.
632///
633/// 'decltype' ( expression )
634///
David Blaikie42d6d0c2011-12-04 05:04:18 +0000635SourceLocation Parser::ParseDecltypeSpecifier(DeclSpec &DS) {
636 assert((Tok.is(tok::kw_decltype) || Tok.is(tok::annot_decltype))
637 && "Not a decltype specifier");
638
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000639
David Blaikie42d6d0c2011-12-04 05:04:18 +0000640 ExprResult Result;
641 SourceLocation StartLoc = Tok.getLocation();
642 SourceLocation EndLoc;
643
644 if (Tok.is(tok::annot_decltype)) {
645 Result = getExprAnnotation(Tok);
646 EndLoc = Tok.getAnnotationEndLoc();
647 ConsumeToken();
648 if (Result.isInvalid()) {
649 DS.SetTypeSpecError();
650 return EndLoc;
651 }
652 } else {
653 ConsumeToken();
654
655 BalancedDelimiterTracker T(*this, tok::l_paren);
656 if (T.expectAndConsume(diag::err_expected_lparen_after,
657 "decltype", tok::r_paren)) {
658 DS.SetTypeSpecError();
659 return T.getOpenLocation() == Tok.getLocation() ?
660 StartLoc : T.getOpenLocation();
661 }
662
663 // Parse the expression
664
665 // C++0x [dcl.type.simple]p4:
666 // The operand of the decltype specifier is an unevaluated operand.
667 EnterExpressionEvaluationContext Unevaluated(Actions,
668 Sema::Unevaluated);
669 Result = ParseExpression();
670 if (Result.isInvalid()) {
671 SkipUntil(tok::r_paren, true, true);
672 DS.SetTypeSpecError();
673 return Tok.is(tok::eof) ? Tok.getLocation() : ConsumeParen();
674 }
675
676 // Match the ')'
677 T.consumeClose();
678 if (T.getCloseLocation().isInvalid()) {
679 DS.SetTypeSpecError();
680 // FIXME: this should return the location of the last token
681 // that was consumed (by "consumeClose()")
682 return T.getCloseLocation();
683 }
684
685 EndLoc = T.getCloseLocation();
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000686 }
Mike Stump1eb44332009-09-09 15:08:12 +0000687
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000688 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +0000689 unsigned DiagID;
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000690 // Check for duplicate type specifiers (e.g. "int decltype(a)").
Mike Stump1eb44332009-09-09 15:08:12 +0000691 if (DS.SetTypeSpecType(DeclSpec::TST_decltype, StartLoc, PrevSpec,
David Blaikie42d6d0c2011-12-04 05:04:18 +0000692 DiagID, Result.release())) {
John McCallfec54012009-08-03 20:12:06 +0000693 Diag(StartLoc, DiagID) << PrevSpec;
David Blaikie42d6d0c2011-12-04 05:04:18 +0000694 DS.SetTypeSpecError();
695 }
696 return EndLoc;
697}
698
699void Parser::AnnotateExistingDecltypeSpecifier(const DeclSpec& DS,
700 SourceLocation StartLoc,
701 SourceLocation EndLoc) {
702 // make sure we have a token we can turn into an annotation token
703 if (PP.isBacktrackEnabled())
704 PP.RevertCachedTokens(1);
705 else
706 PP.EnterToken(Tok);
707
708 Tok.setKind(tok::annot_decltype);
709 setExprAnnotation(Tok, DS.getTypeSpecType() == TST_decltype ?
710 DS.getRepAsExpr() : ExprResult());
711 Tok.setAnnotationEndLoc(EndLoc);
712 Tok.setLocation(StartLoc);
713 PP.AnnotateCachedTokens(Tok);
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000714}
715
Sean Huntdb5d44b2011-05-19 05:37:45 +0000716void Parser::ParseUnderlyingTypeSpecifier(DeclSpec &DS) {
717 assert(Tok.is(tok::kw___underlying_type) &&
718 "Not an underlying type specifier");
719
720 SourceLocation StartLoc = ConsumeToken();
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000721 BalancedDelimiterTracker T(*this, tok::l_paren);
722 if (T.expectAndConsume(diag::err_expected_lparen_after,
723 "__underlying_type", tok::r_paren)) {
Sean Huntdb5d44b2011-05-19 05:37:45 +0000724 return;
725 }
726
727 TypeResult Result = ParseTypeName();
728 if (Result.isInvalid()) {
729 SkipUntil(tok::r_paren);
730 return;
731 }
732
733 // Match the ')'
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000734 T.consumeClose();
735 if (T.getCloseLocation().isInvalid())
Sean Huntdb5d44b2011-05-19 05:37:45 +0000736 return;
737
738 const char *PrevSpec = 0;
739 unsigned DiagID;
Sean Huntca63c202011-05-24 22:41:36 +0000740 if (DS.SetTypeSpecType(DeclSpec::TST_underlyingType, StartLoc, PrevSpec,
Sean Huntdb5d44b2011-05-19 05:37:45 +0000741 DiagID, Result.release()))
742 Diag(StartLoc, DiagID) << PrevSpec;
743}
744
David Blaikie09048df2011-10-25 15:01:20 +0000745/// ParseBaseTypeSpecifier - Parse a C++ base-type-specifier which is either a
746/// class name or decltype-specifier. Note that we only check that the result
747/// names a type; semantic analysis will need to verify that the type names a
748/// class. The result is either a type or null, depending on whether a type
749/// name was found.
Douglas Gregor42a552f2008-11-05 20:51:48 +0000750///
David Blaikie09048df2011-10-25 15:01:20 +0000751/// base-type-specifier: [C++ 10.1]
752/// class-or-decltype
753/// class-or-decltype: [C++ 10.1]
754/// nested-name-specifier[opt] class-name
755/// decltype-specifier
Douglas Gregor42a552f2008-11-05 20:51:48 +0000756/// class-name: [C++ 9.1]
757/// identifier
Douglas Gregor7f43d672009-02-25 23:52:28 +0000758/// simple-template-id
Mike Stump1eb44332009-09-09 15:08:12 +0000759///
David Blaikie22216eb2011-10-25 17:10:12 +0000760Parser::TypeResult Parser::ParseBaseTypeSpecifier(SourceLocation &BaseLoc,
761 SourceLocation &EndLocation) {
David Blaikie7fe38782011-10-25 18:46:41 +0000762 // Ignore attempts to use typename
763 if (Tok.is(tok::kw_typename)) {
764 Diag(Tok, diag::err_expected_class_name_not_template)
765 << FixItHint::CreateRemoval(Tok.getLocation());
766 ConsumeToken();
767 }
768
David Blaikie152aa4b2011-10-25 18:17:58 +0000769 // Parse optional nested-name-specifier
770 CXXScopeSpec SS;
771 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), /*EnteringContext=*/false);
772
773 BaseLoc = Tok.getLocation();
774
David Blaikie22216eb2011-10-25 17:10:12 +0000775 // Parse decltype-specifier
David Blaikie42d6d0c2011-12-04 05:04:18 +0000776 // tok == kw_decltype is just error recovery, it can only happen when SS
777 // isn't empty
778 if (Tok.is(tok::kw_decltype) || Tok.is(tok::annot_decltype)) {
David Blaikie152aa4b2011-10-25 18:17:58 +0000779 if (SS.isNotEmpty())
780 Diag(SS.getBeginLoc(), diag::err_unexpected_scope_on_base_decltype)
781 << FixItHint::CreateRemoval(SS.getRange());
David Blaikie22216eb2011-10-25 17:10:12 +0000782 // Fake up a Declarator to use with ActOnTypeName.
783 DeclSpec DS(AttrFactory);
784
David Blaikieb5777572011-12-08 04:53:15 +0000785 EndLocation = ParseDecltypeSpecifier(DS);
David Blaikie22216eb2011-10-25 17:10:12 +0000786
787 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
788 return Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
789 }
790
Douglas Gregor7f43d672009-02-25 23:52:28 +0000791 // Check whether we have a template-id that names a type.
792 if (Tok.is(tok::annot_template_id)) {
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +0000793 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregord9b600c2010-01-12 17:52:59 +0000794 if (TemplateId->Kind == TNK_Type_template ||
795 TemplateId->Kind == TNK_Dependent_template_name) {
Douglas Gregor059101f2011-03-02 00:47:37 +0000796 AnnotateTemplateIdTokenAsType();
Douglas Gregor7f43d672009-02-25 23:52:28 +0000797
798 assert(Tok.is(tok::annot_typename) && "template-id -> type failed");
John McCallb3d87482010-08-24 05:47:05 +0000799 ParsedType Type = getTypeAnnotation(Tok);
Douglas Gregor7f43d672009-02-25 23:52:28 +0000800 EndLocation = Tok.getAnnotationEndLoc();
801 ConsumeToken();
Douglas Gregor31a19b62009-04-01 21:51:26 +0000802
803 if (Type)
804 return Type;
805 return true;
Douglas Gregor7f43d672009-02-25 23:52:28 +0000806 }
807
808 // Fall through to produce an error below.
809 }
810
Douglas Gregor42a552f2008-11-05 20:51:48 +0000811 if (Tok.isNot(tok::identifier)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000812 Diag(Tok, diag::err_expected_class_name);
Douglas Gregor31a19b62009-04-01 21:51:26 +0000813 return true;
Douglas Gregor42a552f2008-11-05 20:51:48 +0000814 }
815
Douglas Gregor84d0a192010-01-12 21:28:44 +0000816 IdentifierInfo *Id = Tok.getIdentifierInfo();
817 SourceLocation IdLoc = ConsumeToken();
818
819 if (Tok.is(tok::less)) {
820 // It looks the user intended to write a template-id here, but the
821 // template-name was wrong. Try to fix that.
822 TemplateNameKind TNK = TNK_Type_template;
823 TemplateTy Template;
Douglas Gregor23c94db2010-07-02 17:43:08 +0000824 if (!Actions.DiagnoseUnknownTemplateName(*Id, IdLoc, getCurScope(),
Douglas Gregor059101f2011-03-02 00:47:37 +0000825 &SS, Template, TNK)) {
Douglas Gregor84d0a192010-01-12 21:28:44 +0000826 Diag(IdLoc, diag::err_unknown_template_name)
827 << Id;
828 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000829
Douglas Gregor84d0a192010-01-12 21:28:44 +0000830 if (!Template)
831 return true;
832
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000833 // Form the template name
Douglas Gregor84d0a192010-01-12 21:28:44 +0000834 UnqualifiedId TemplateName;
835 TemplateName.setIdentifier(Id, IdLoc);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000836
Douglas Gregor84d0a192010-01-12 21:28:44 +0000837 // Parse the full template-id, then turn it into a type.
838 if (AnnotateTemplateIdToken(Template, TNK, SS, TemplateName,
839 SourceLocation(), true))
840 return true;
841 if (TNK == TNK_Dependent_template_name)
Douglas Gregor059101f2011-03-02 00:47:37 +0000842 AnnotateTemplateIdTokenAsType();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000843
Douglas Gregor84d0a192010-01-12 21:28:44 +0000844 // If we didn't end up with a typename token, there's nothing more we
845 // can do.
846 if (Tok.isNot(tok::annot_typename))
847 return true;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000848
Douglas Gregor84d0a192010-01-12 21:28:44 +0000849 // Retrieve the type from the annotation token, consume that token, and
850 // return.
851 EndLocation = Tok.getAnnotationEndLoc();
John McCallb3d87482010-08-24 05:47:05 +0000852 ParsedType Type = getTypeAnnotation(Tok);
Douglas Gregor84d0a192010-01-12 21:28:44 +0000853 ConsumeToken();
854 return Type;
855 }
856
Douglas Gregor42a552f2008-11-05 20:51:48 +0000857 // We have an identifier; check whether it is actually a type.
Douglas Gregor059101f2011-03-02 00:47:37 +0000858 ParsedType Type = Actions.getTypeName(*Id, IdLoc, getCurScope(), &SS, true,
Douglas Gregor9e876872011-03-01 18:12:44 +0000859 false, ParsedType(),
Abramo Bagnarafad03b72012-01-27 08:46:19 +0000860 /*IsCtorOrDtorName=*/false,
Douglas Gregor9e876872011-03-01 18:12:44 +0000861 /*NonTrivialTypeSourceInfo=*/true);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000862 if (!Type) {
Douglas Gregor124b8782010-02-16 19:09:40 +0000863 Diag(IdLoc, diag::err_expected_class_name);
Douglas Gregor31a19b62009-04-01 21:51:26 +0000864 return true;
Douglas Gregor42a552f2008-11-05 20:51:48 +0000865 }
866
867 // Consume the identifier.
Douglas Gregor84d0a192010-01-12 21:28:44 +0000868 EndLocation = IdLoc;
Nick Lewycky56062202010-07-26 16:56:01 +0000869
870 // Fake up a Declarator to use with ActOnTypeName.
John McCall0b7e6782011-03-24 11:26:52 +0000871 DeclSpec DS(AttrFactory);
Nick Lewycky56062202010-07-26 16:56:01 +0000872 DS.SetRangeStart(IdLoc);
873 DS.SetRangeEnd(EndLocation);
Douglas Gregor059101f2011-03-02 00:47:37 +0000874 DS.getTypeSpecScope() = SS;
Nick Lewycky56062202010-07-26 16:56:01 +0000875
876 const char *PrevSpec = 0;
877 unsigned DiagID;
878 DS.SetTypeSpecType(TST_typename, IdLoc, PrevSpec, DiagID, Type);
879
880 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
881 return Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
Douglas Gregor42a552f2008-11-05 20:51:48 +0000882}
883
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000884/// ParseClassSpecifier - Parse a C++ class-specifier [C++ class] or
885/// elaborated-type-specifier [C++ dcl.type.elab]; we can't tell which
886/// until we reach the start of a definition or see a token that
Sebastian Redld9bafa72010-02-03 21:21:43 +0000887/// cannot start a definition. If SuppressDeclarations is true, we do know.
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000888///
889/// class-specifier: [C++ class]
890/// class-head '{' member-specification[opt] '}'
891/// class-head '{' member-specification[opt] '}' attributes[opt]
892/// class-head:
893/// class-key identifier[opt] base-clause[opt]
894/// class-key nested-name-specifier identifier base-clause[opt]
895/// class-key nested-name-specifier[opt] simple-template-id
896/// base-clause[opt]
897/// [GNU] class-key attributes[opt] identifier[opt] base-clause[opt]
Mike Stump1eb44332009-09-09 15:08:12 +0000898/// [GNU] class-key attributes[opt] nested-name-specifier
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000899/// identifier base-clause[opt]
Mike Stump1eb44332009-09-09 15:08:12 +0000900/// [GNU] class-key attributes[opt] nested-name-specifier[opt]
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000901/// simple-template-id base-clause[opt]
902/// class-key:
903/// 'class'
904/// 'struct'
905/// 'union'
906///
907/// elaborated-type-specifier: [C++ dcl.type.elab]
Mike Stump1eb44332009-09-09 15:08:12 +0000908/// class-key ::[opt] nested-name-specifier[opt] identifier
909/// class-key ::[opt] nested-name-specifier[opt] 'template'[opt]
910/// simple-template-id
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000911///
912/// Note that the C++ class-specifier and elaborated-type-specifier,
913/// together, subsume the C99 struct-or-union-specifier:
914///
915/// struct-or-union-specifier: [C99 6.7.2.1]
916/// struct-or-union identifier[opt] '{' struct-contents '}'
917/// struct-or-union identifier
918/// [GNU] struct-or-union attributes[opt] identifier[opt] '{' struct-contents
919/// '}' attributes[opt]
920/// [GNU] struct-or-union attributes[opt] identifier
921/// struct-or-union:
922/// 'struct'
923/// 'union'
Chris Lattner4c97d762009-04-12 21:49:30 +0000924void Parser::ParseClassSpecifier(tok::TokenKind TagTokKind,
925 SourceLocation StartLoc, DeclSpec &DS,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000926 const ParsedTemplateInfo &TemplateInfo,
Douglas Gregorefaa93a2011-11-07 17:33:42 +0000927 AccessSpecifier AS,
928 bool EnteringContext,
929 bool SuppressDeclarations){
Chris Lattner4c97d762009-04-12 21:49:30 +0000930 DeclSpec::TST TagType;
931 if (TagTokKind == tok::kw_struct)
932 TagType = DeclSpec::TST_struct;
933 else if (TagTokKind == tok::kw_class)
934 TagType = DeclSpec::TST_class;
935 else {
936 assert(TagTokKind == tok::kw_union && "Not a class specifier");
937 TagType = DeclSpec::TST_union;
938 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000939
Douglas Gregor374929f2009-09-18 15:37:17 +0000940 if (Tok.is(tok::code_completion)) {
941 // Code completion for a struct, class, or union name.
Douglas Gregor23c94db2010-07-02 17:43:08 +0000942 Actions.CodeCompleteTag(getCurScope(), TagType);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000943 return cutOffParsing();
Douglas Gregor374929f2009-09-18 15:37:17 +0000944 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000945
Chandler Carruth926c4b42010-06-28 08:39:25 +0000946 // C++03 [temp.explicit] 14.7.2/8:
947 // The usual access checking rules do not apply to names used to specify
948 // explicit instantiations.
949 //
950 // As an extension we do not perform access checking on the names used to
951 // specify explicit specializations either. This is important to allow
952 // specializing traits classes for private types.
953 bool SuppressingAccessChecks = false;
954 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation ||
955 TemplateInfo.Kind == ParsedTemplateInfo::ExplicitSpecialization) {
956 Actions.ActOnStartSuppressingAccessChecks();
957 SuppressingAccessChecks = true;
958 }
959
John McCall0b7e6782011-03-24 11:26:52 +0000960 ParsedAttributes attrs(AttrFactory);
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000961 // If attributes exist after tag, parse them.
962 if (Tok.is(tok::kw___attribute))
John McCall7f040a92010-12-24 02:08:15 +0000963 ParseGNUAttributes(attrs);
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000964
Steve Narofff59e17e2008-12-24 20:59:21 +0000965 // If declspecs exist after tag, parse them.
John McCallb1d397c2010-08-05 17:13:11 +0000966 while (Tok.is(tok::kw___declspec))
John McCall7f040a92010-12-24 02:08:15 +0000967 ParseMicrosoftDeclSpec(attrs);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000968
Sean Huntbbd37c62009-11-21 08:43:09 +0000969 // If C++0x attributes exist here, parse them.
970 // FIXME: Are we consistent with the ordering of parsing of different
971 // styles of attributes?
John McCall7f040a92010-12-24 02:08:15 +0000972 MaybeParseCXX0XAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +0000973
John Wiegley20c0da72011-04-27 23:09:49 +0000974 if (TagType == DeclSpec::TST_struct &&
Douglas Gregorb467cda2011-04-29 15:31:39 +0000975 !Tok.is(tok::identifier) &&
976 Tok.getIdentifierInfo() &&
977 (Tok.is(tok::kw___is_arithmetic) ||
978 Tok.is(tok::kw___is_convertible) ||
John Wiegley20c0da72011-04-27 23:09:49 +0000979 Tok.is(tok::kw___is_empty) ||
Douglas Gregorb467cda2011-04-29 15:31:39 +0000980 Tok.is(tok::kw___is_floating_point) ||
981 Tok.is(tok::kw___is_function) ||
John Wiegley20c0da72011-04-27 23:09:49 +0000982 Tok.is(tok::kw___is_fundamental) ||
Douglas Gregorb467cda2011-04-29 15:31:39 +0000983 Tok.is(tok::kw___is_integral) ||
984 Tok.is(tok::kw___is_member_function_pointer) ||
985 Tok.is(tok::kw___is_member_pointer) ||
986 Tok.is(tok::kw___is_pod) ||
987 Tok.is(tok::kw___is_pointer) ||
988 Tok.is(tok::kw___is_same) ||
Douglas Gregor877222e2011-04-29 01:38:03 +0000989 Tok.is(tok::kw___is_scalar) ||
Douglas Gregorb467cda2011-04-29 15:31:39 +0000990 Tok.is(tok::kw___is_signed) ||
991 Tok.is(tok::kw___is_unsigned) ||
992 Tok.is(tok::kw___is_void))) {
Douglas Gregor68876142011-07-30 07:01:49 +0000993 // GNU libstdc++ 4.2 and libc++ use certain intrinsic names as the
Douglas Gregorb467cda2011-04-29 15:31:39 +0000994 // name of struct templates, but some are keywords in GCC >= 4.3
995 // and Clang. Therefore, when we see the token sequence "struct
996 // X", make X into a normal identifier rather than a keyword, to
997 // allow libstdc++ 4.2 and libc++ to work properly.
Argyrios Kyrtzidis646395b2010-08-11 22:55:12 +0000998 Tok.getIdentifierInfo()->RevertTokenIDToIdentifier();
Douglas Gregorb117a602009-09-04 05:53:02 +0000999 Tok.setKind(tok::identifier);
1000 }
Mike Stump1eb44332009-09-09 15:08:12 +00001001
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001002 // Parse the (optional) nested-name-specifier.
John McCallaa87d332009-12-12 11:40:51 +00001003 CXXScopeSpec &SS = DS.getTypeSpecScope();
Chris Lattner08d92ec2009-12-10 00:32:41 +00001004 if (getLang().CPlusPlus) {
1005 // "FOO : BAR" is not a potential typo for "FOO::BAR".
1006 ColonProtectionRAIIObject X(*this);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001007
Douglas Gregorefaa93a2011-11-07 17:33:42 +00001008 if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(), EnteringContext))
John McCall207014e2010-07-30 06:26:29 +00001009 DS.SetTypeSpecError();
John McCall9ba61662010-02-26 08:45:28 +00001010 if (SS.isSet())
Chris Lattner08d92ec2009-12-10 00:32:41 +00001011 if (Tok.isNot(tok::identifier) && Tok.isNot(tok::annot_template_id))
1012 Diag(Tok, diag::err_expected_ident);
1013 }
Douglas Gregorcc636682009-02-17 23:15:12 +00001014
Douglas Gregor2cc782f2009-10-30 21:46:58 +00001015 TemplateParameterLists *TemplateParams = TemplateInfo.TemplateParams;
1016
Douglas Gregorcc636682009-02-17 23:15:12 +00001017 // Parse the (optional) class name or simple-template-id.
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001018 IdentifierInfo *Name = 0;
1019 SourceLocation NameLoc;
Douglas Gregor39a8de12009-02-25 19:37:18 +00001020 TemplateIdAnnotation *TemplateId = 0;
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001021 if (Tok.is(tok::identifier)) {
1022 Name = Tok.getIdentifierInfo();
1023 NameLoc = ConsumeToken();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001024
Douglas Gregor5ee37342010-05-30 22:30:21 +00001025 if (Tok.is(tok::less) && getLang().CPlusPlus) {
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001026 // The name was supposed to refer to a template, but didn't.
Douglas Gregor2cc782f2009-10-30 21:46:58 +00001027 // Eat the template argument list and try to continue parsing this as
1028 // a class (or template thereof).
1029 TemplateArgList TemplateArgs;
Douglas Gregor2cc782f2009-10-30 21:46:58 +00001030 SourceLocation LAngleLoc, RAngleLoc;
Douglas Gregor059101f2011-03-02 00:47:37 +00001031 if (ParseTemplateIdAfterTemplateName(TemplateTy(), NameLoc, SS,
Douglas Gregor2cc782f2009-10-30 21:46:58 +00001032 true, LAngleLoc,
Douglas Gregor314b97f2009-11-10 19:49:08 +00001033 TemplateArgs, RAngleLoc)) {
Douglas Gregor2cc782f2009-10-30 21:46:58 +00001034 // We couldn't parse the template argument list at all, so don't
1035 // try to give any location information for the list.
1036 LAngleLoc = RAngleLoc = SourceLocation();
1037 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001038
Douglas Gregor2cc782f2009-10-30 21:46:58 +00001039 Diag(NameLoc, diag::err_explicit_spec_non_template)
Douglas Gregorc78c06d2009-10-30 22:09:44 +00001040 << (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation)
Douglas Gregor2cc782f2009-10-30 21:46:58 +00001041 << (TagType == DeclSpec::TST_class? 0
1042 : TagType == DeclSpec::TST_struct? 1
1043 : 2)
1044 << Name
1045 << SourceRange(LAngleLoc, RAngleLoc);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001046
1047 // Strip off the last template parameter list if it was empty, since
Douglas Gregorc78c06d2009-10-30 22:09:44 +00001048 // we've removed its template argument list.
1049 if (TemplateParams && TemplateInfo.LastParameterListWasEmpty) {
1050 if (TemplateParams && TemplateParams->size() > 1) {
1051 TemplateParams->pop_back();
1052 } else {
1053 TemplateParams = 0;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001054 const_cast<ParsedTemplateInfo&>(TemplateInfo).Kind
Douglas Gregorc78c06d2009-10-30 22:09:44 +00001055 = ParsedTemplateInfo::NonTemplate;
1056 }
1057 } else if (TemplateInfo.Kind
1058 == ParsedTemplateInfo::ExplicitInstantiation) {
1059 // Pretend this is just a forward declaration.
Douglas Gregor2cc782f2009-10-30 21:46:58 +00001060 TemplateParams = 0;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001061 const_cast<ParsedTemplateInfo&>(TemplateInfo).Kind
Douglas Gregor2cc782f2009-10-30 21:46:58 +00001062 = ParsedTemplateInfo::NonTemplate;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001063 const_cast<ParsedTemplateInfo&>(TemplateInfo).TemplateLoc
Douglas Gregorc78c06d2009-10-30 22:09:44 +00001064 = SourceLocation();
1065 const_cast<ParsedTemplateInfo&>(TemplateInfo).ExternLoc
1066 = SourceLocation();
Douglas Gregor2cc782f2009-10-30 21:46:58 +00001067 }
Douglas Gregor2cc782f2009-10-30 21:46:58 +00001068 }
Douglas Gregor39a8de12009-02-25 19:37:18 +00001069 } else if (Tok.is(tok::annot_template_id)) {
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +00001070 TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregor39a8de12009-02-25 19:37:18 +00001071 NameLoc = ConsumeToken();
Douglas Gregorcc636682009-02-17 23:15:12 +00001072
Douglas Gregor059101f2011-03-02 00:47:37 +00001073 if (TemplateId->Kind != TNK_Type_template &&
1074 TemplateId->Kind != TNK_Dependent_template_name) {
Douglas Gregor39a8de12009-02-25 19:37:18 +00001075 // The template-name in the simple-template-id refers to
1076 // something other than a class template. Give an appropriate
1077 // error message and skip to the ';'.
1078 SourceRange Range(NameLoc);
1079 if (SS.isNotEmpty())
1080 Range.setBegin(SS.getBeginLoc());
Douglas Gregorcc636682009-02-17 23:15:12 +00001081
Douglas Gregor39a8de12009-02-25 19:37:18 +00001082 Diag(TemplateId->LAngleLoc, diag::err_template_spec_syntax_non_template)
1083 << Name << static_cast<int>(TemplateId->Kind) << Range;
Mike Stump1eb44332009-09-09 15:08:12 +00001084
Douglas Gregor39a8de12009-02-25 19:37:18 +00001085 DS.SetTypeSpecError();
1086 SkipUntil(tok::semi, false, true);
Chandler Carruth926c4b42010-06-28 08:39:25 +00001087 if (SuppressingAccessChecks)
1088 Actions.ActOnStopSuppressingAccessChecks();
1089
Douglas Gregor39a8de12009-02-25 19:37:18 +00001090 return;
Douglas Gregorcc636682009-02-17 23:15:12 +00001091 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001092 }
1093
Chandler Carruth926c4b42010-06-28 08:39:25 +00001094 // As soon as we're finished parsing the class's template-id, turn access
1095 // checking back on.
1096 if (SuppressingAccessChecks)
1097 Actions.ActOnStopSuppressingAccessChecks();
1098
John McCall67d1a672009-08-06 02:15:43 +00001099 // There are four options here. If we have 'struct foo;', then this
1100 // is either a forward declaration or a friend declaration, which
Anders Carlssoncc54d592011-01-22 16:56:46 +00001101 // have to be treated differently. If we have 'struct foo {...',
Anders Carlsson1d209272011-03-25 14:55:14 +00001102 // 'struct foo :...' or 'struct foo final[opt]' then this is a
Anders Carlssoncc54d592011-01-22 16:56:46 +00001103 // definition. Otherwise we have something like 'struct foo xyz', a reference.
Sebastian Redld9bafa72010-02-03 21:21:43 +00001104 // However, in some contexts, things look like declarations but are just
1105 // references, e.g.
1106 // new struct s;
1107 // or
1108 // &T::operator struct s;
1109 // For these, SuppressDeclarations is true.
John McCallf312b1e2010-08-26 23:41:50 +00001110 Sema::TagUseKind TUK;
Sebastian Redld9bafa72010-02-03 21:21:43 +00001111 if (SuppressDeclarations)
John McCallf312b1e2010-08-26 23:41:50 +00001112 TUK = Sema::TUK_Reference;
Anders Carlssoncc54d592011-01-22 16:56:46 +00001113 else if (Tok.is(tok::l_brace) ||
1114 (getLang().CPlusPlus && Tok.is(tok::colon)) ||
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001115 isCXX0XFinalKeyword()) {
Douglas Gregord85bea22009-09-26 06:47:28 +00001116 if (DS.isFriendSpecified()) {
1117 // C++ [class.friend]p2:
1118 // A class shall not be defined in a friend declaration.
Richard Smithbdad7a22012-01-10 01:33:14 +00001119 Diag(Tok.getLocation(), diag::err_friend_decl_defines_type)
Douglas Gregord85bea22009-09-26 06:47:28 +00001120 << SourceRange(DS.getFriendSpecLoc());
1121
1122 // Skip everything up to the semicolon, so that this looks like a proper
1123 // friend class (or template thereof) declaration.
1124 SkipUntil(tok::semi, true, true);
John McCallf312b1e2010-08-26 23:41:50 +00001125 TUK = Sema::TUK_Friend;
Douglas Gregord85bea22009-09-26 06:47:28 +00001126 } else {
1127 // Okay, this is a class definition.
John McCallf312b1e2010-08-26 23:41:50 +00001128 TUK = Sema::TUK_Definition;
Douglas Gregord85bea22009-09-26 06:47:28 +00001129 }
1130 } else if (Tok.is(tok::semi))
John McCallf312b1e2010-08-26 23:41:50 +00001131 TUK = DS.isFriendSpecified() ? Sema::TUK_Friend : Sema::TUK_Declaration;
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001132 else
John McCallf312b1e2010-08-26 23:41:50 +00001133 TUK = Sema::TUK_Reference;
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001134
John McCall207014e2010-07-30 06:26:29 +00001135 if (!Name && !TemplateId && (DS.getTypeSpecType() == DeclSpec::TST_error ||
John McCallf312b1e2010-08-26 23:41:50 +00001136 TUK != Sema::TUK_Definition)) {
John McCall207014e2010-07-30 06:26:29 +00001137 if (DS.getTypeSpecType() != DeclSpec::TST_error) {
1138 // We have a declaration or reference to an anonymous class.
1139 Diag(StartLoc, diag::err_anon_type_definition)
1140 << DeclSpec::getSpecifierName(TagType);
1141 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001142
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001143 SkipUntil(tok::comma, true);
1144 return;
1145 }
1146
Douglas Gregorddc29e12009-02-06 22:42:48 +00001147 // Create the tag portion of the class or class template.
John McCalld226f652010-08-21 09:40:31 +00001148 DeclResult TagOrTempResult = true; // invalid
1149 TypeResult TypeResult = true; // invalid
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001150
Douglas Gregor402abb52009-05-28 23:31:59 +00001151 bool Owned = false;
John McCallf1bbbb42009-09-04 01:14:41 +00001152 if (TemplateId) {
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001153 // Explicit specialization, class template partial specialization,
1154 // or explicit instantiation.
Mike Stump1eb44332009-09-09 15:08:12 +00001155 ASTTemplateArgsPtr TemplateArgsPtr(Actions,
Douglas Gregor39a8de12009-02-25 19:37:18 +00001156 TemplateId->getTemplateArgs(),
Douglas Gregor39a8de12009-02-25 19:37:18 +00001157 TemplateId->NumArgs);
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001158 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallf312b1e2010-08-26 23:41:50 +00001159 TUK == Sema::TUK_Declaration) {
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001160 // This is an explicit instantiation of a class template.
1161 TagOrTempResult
Douglas Gregor23c94db2010-07-02 17:43:08 +00001162 = Actions.ActOnExplicitInstantiation(getCurScope(),
Douglas Gregor45f96552009-09-04 06:33:52 +00001163 TemplateInfo.ExternLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001164 TemplateInfo.TemplateLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001165 TagType,
Mike Stump1eb44332009-09-09 15:08:12 +00001166 StartLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001167 SS,
John McCall2b5289b2010-08-23 07:28:44 +00001168 TemplateId->Template,
Mike Stump1eb44332009-09-09 15:08:12 +00001169 TemplateId->TemplateNameLoc,
1170 TemplateId->LAngleLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001171 TemplateArgsPtr,
Mike Stump1eb44332009-09-09 15:08:12 +00001172 TemplateId->RAngleLoc,
John McCall7f040a92010-12-24 02:08:15 +00001173 attrs.getList());
John McCall74256f52010-04-14 00:24:33 +00001174
1175 // Friend template-ids are treated as references unless
1176 // they have template headers, in which case they're ill-formed
1177 // (FIXME: "template <class T> friend class A<T>::B<int>;").
1178 // We diagnose this error in ActOnClassTemplateSpecialization.
John McCallf312b1e2010-08-26 23:41:50 +00001179 } else if (TUK == Sema::TUK_Reference ||
1180 (TUK == Sema::TUK_Friend &&
John McCall74256f52010-04-14 00:24:33 +00001181 TemplateInfo.Kind == ParsedTemplateInfo::NonTemplate)) {
Douglas Gregor059101f2011-03-02 00:47:37 +00001182 TypeResult = Actions.ActOnTagTemplateIdType(TUK, TagType,
1183 StartLoc,
1184 TemplateId->SS,
1185 TemplateId->Template,
1186 TemplateId->TemplateNameLoc,
1187 TemplateId->LAngleLoc,
1188 TemplateArgsPtr,
1189 TemplateId->RAngleLoc);
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001190 } else {
1191 // This is an explicit specialization or a class template
1192 // partial specialization.
1193 TemplateParameterLists FakedParamLists;
1194
1195 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation) {
1196 // This looks like an explicit instantiation, because we have
1197 // something like
1198 //
1199 // template class Foo<X>
1200 //
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001201 // but it actually has a definition. Most likely, this was
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001202 // meant to be an explicit specialization, but the user forgot
1203 // the '<>' after 'template'.
John McCallf312b1e2010-08-26 23:41:50 +00001204 assert(TUK == Sema::TUK_Definition && "Expected a definition here");
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001205
Mike Stump1eb44332009-09-09 15:08:12 +00001206 SourceLocation LAngleLoc
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001207 = PP.getLocForEndOfToken(TemplateInfo.TemplateLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00001208 Diag(TemplateId->TemplateNameLoc,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001209 diag::err_explicit_instantiation_with_definition)
1210 << SourceRange(TemplateInfo.TemplateLoc)
Douglas Gregor849b2432010-03-31 17:46:05 +00001211 << FixItHint::CreateInsertion(LAngleLoc, "<>");
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001212
1213 // Create a fake template parameter list that contains only
1214 // "template<>", so that we treat this construct as a class
1215 // template specialization.
1216 FakedParamLists.push_back(
Mike Stump1eb44332009-09-09 15:08:12 +00001217 Actions.ActOnTemplateParameterList(0, SourceLocation(),
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001218 TemplateInfo.TemplateLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001219 LAngleLoc,
1220 0, 0,
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001221 LAngleLoc));
1222 TemplateParams = &FakedParamLists;
1223 }
1224
1225 // Build the class template specialization.
1226 TagOrTempResult
Douglas Gregor23c94db2010-07-02 17:43:08 +00001227 = Actions.ActOnClassTemplateSpecialization(getCurScope(), TagType, TUK,
Douglas Gregord023aec2011-09-09 20:53:38 +00001228 StartLoc, DS.getModulePrivateSpecLoc(), SS,
John McCall2b5289b2010-08-23 07:28:44 +00001229 TemplateId->Template,
Mike Stump1eb44332009-09-09 15:08:12 +00001230 TemplateId->TemplateNameLoc,
1231 TemplateId->LAngleLoc,
Douglas Gregor39a8de12009-02-25 19:37:18 +00001232 TemplateArgsPtr,
Mike Stump1eb44332009-09-09 15:08:12 +00001233 TemplateId->RAngleLoc,
John McCall7f040a92010-12-24 02:08:15 +00001234 attrs.getList(),
John McCallf312b1e2010-08-26 23:41:50 +00001235 MultiTemplateParamsArg(Actions,
Douglas Gregorcc636682009-02-17 23:15:12 +00001236 TemplateParams? &(*TemplateParams)[0] : 0,
1237 TemplateParams? TemplateParams->size() : 0));
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00001238 }
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001239 } else if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallf312b1e2010-08-26 23:41:50 +00001240 TUK == Sema::TUK_Declaration) {
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001241 // Explicit instantiation of a member of a class template
1242 // specialization, e.g.,
1243 //
1244 // template struct Outer<int>::Inner;
1245 //
1246 TagOrTempResult
Douglas Gregor23c94db2010-07-02 17:43:08 +00001247 = Actions.ActOnExplicitInstantiation(getCurScope(),
Douglas Gregor45f96552009-09-04 06:33:52 +00001248 TemplateInfo.ExternLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001249 TemplateInfo.TemplateLoc,
1250 TagType, StartLoc, SS, Name,
John McCall7f040a92010-12-24 02:08:15 +00001251 NameLoc, attrs.getList());
John McCall9a34edb2010-10-19 01:40:49 +00001252 } else if (TUK == Sema::TUK_Friend &&
1253 TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate) {
1254 TagOrTempResult =
1255 Actions.ActOnTemplatedFriendTag(getCurScope(), DS.getFriendSpecLoc(),
1256 TagType, StartLoc, SS,
John McCall7f040a92010-12-24 02:08:15 +00001257 Name, NameLoc, attrs.getList(),
John McCall9a34edb2010-10-19 01:40:49 +00001258 MultiTemplateParamsArg(Actions,
1259 TemplateParams? &(*TemplateParams)[0] : 0,
1260 TemplateParams? TemplateParams->size() : 0));
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001261 } else {
1262 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
John McCallf312b1e2010-08-26 23:41:50 +00001263 TUK == Sema::TUK_Definition) {
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001264 // FIXME: Diagnose this particular error.
1265 }
1266
John McCallc4e70192009-09-11 04:59:25 +00001267 bool IsDependent = false;
1268
John McCalla25c4082010-10-19 18:40:57 +00001269 // Don't pass down template parameter lists if this is just a tag
1270 // reference. For example, we don't need the template parameters here:
1271 // template <class T> class A *makeA(T t);
1272 MultiTemplateParamsArg TParams;
1273 if (TUK != Sema::TUK_Reference && TemplateParams)
1274 TParams =
1275 MultiTemplateParamsArg(&(*TemplateParams)[0], TemplateParams->size());
1276
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001277 // Declaration or definition of a class type
John McCall9a34edb2010-10-19 01:40:49 +00001278 TagOrTempResult = Actions.ActOnTag(getCurScope(), TagType, TUK, StartLoc,
John McCall7f040a92010-12-24 02:08:15 +00001279 SS, Name, NameLoc, attrs.getList(), AS,
Douglas Gregore7612302011-09-09 19:05:14 +00001280 DS.getModulePrivateSpecLoc(),
Richard Smithbdad7a22012-01-10 01:33:14 +00001281 TParams, Owned, IsDependent,
1282 SourceLocation(), false,
1283 clang::TypeResult());
John McCallc4e70192009-09-11 04:59:25 +00001284
1285 // If ActOnTag said the type was dependent, try again with the
1286 // less common call.
John McCall9a34edb2010-10-19 01:40:49 +00001287 if (IsDependent) {
1288 assert(TUK == Sema::TUK_Reference || TUK == Sema::TUK_Friend);
Douglas Gregor23c94db2010-07-02 17:43:08 +00001289 TypeResult = Actions.ActOnDependentTag(getCurScope(), TagType, TUK,
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001290 SS, Name, StartLoc, NameLoc);
John McCall9a34edb2010-10-19 01:40:49 +00001291 }
Douglas Gregor3f5b61c2009-05-14 00:28:11 +00001292 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001293
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001294 // If there is a body, parse it and inform the actions module.
John McCallf312b1e2010-08-26 23:41:50 +00001295 if (TUK == Sema::TUK_Definition) {
John McCallbd0dfa52009-12-19 21:48:58 +00001296 assert(Tok.is(tok::l_brace) ||
Anders Carlssoncc54d592011-01-22 16:56:46 +00001297 (getLang().CPlusPlus && Tok.is(tok::colon)) ||
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001298 isCXX0XFinalKeyword());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001299 if (getLang().CPlusPlus)
Douglas Gregor212e81c2009-03-25 00:13:59 +00001300 ParseCXXMemberSpecification(StartLoc, TagType, TagOrTempResult.get());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001301 else
Douglas Gregor212e81c2009-03-25 00:13:59 +00001302 ParseStructUnionBody(StartLoc, TagType, TagOrTempResult.get());
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001303 }
1304
John McCallb3d87482010-08-24 05:47:05 +00001305 const char *PrevSpec = 0;
1306 unsigned DiagID;
1307 bool Result;
John McCallc4e70192009-09-11 04:59:25 +00001308 if (!TypeResult.isInvalid()) {
Abramo Bagnara0daaf322011-03-16 20:16:18 +00001309 Result = DS.SetTypeSpecType(DeclSpec::TST_typename, StartLoc,
1310 NameLoc.isValid() ? NameLoc : StartLoc,
John McCallb3d87482010-08-24 05:47:05 +00001311 PrevSpec, DiagID, TypeResult.get());
John McCallc4e70192009-09-11 04:59:25 +00001312 } else if (!TagOrTempResult.isInvalid()) {
Abramo Bagnara0daaf322011-03-16 20:16:18 +00001313 Result = DS.SetTypeSpecType(TagType, StartLoc,
1314 NameLoc.isValid() ? NameLoc : StartLoc,
1315 PrevSpec, DiagID, TagOrTempResult.get(), Owned);
John McCallc4e70192009-09-11 04:59:25 +00001316 } else {
Douglas Gregorddc29e12009-02-06 22:42:48 +00001317 DS.SetTypeSpecError();
Anders Carlsson66e99772009-05-11 22:27:47 +00001318 return;
1319 }
Mike Stump1eb44332009-09-09 15:08:12 +00001320
John McCallb3d87482010-08-24 05:47:05 +00001321 if (Result)
John McCallfec54012009-08-03 20:12:06 +00001322 Diag(StartLoc, DiagID) << PrevSpec;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001323
Chris Lattner4ed5d912010-02-02 01:23:29 +00001324 // At this point, we've successfully parsed a class-specifier in 'definition'
1325 // form (e.g. "struct foo { int x; }". While we could just return here, we're
1326 // going to look at what comes after it to improve error recovery. If an
1327 // impossible token occurs next, we assume that the programmer forgot a ; at
1328 // the end of the declaration and recover that way.
1329 //
1330 // This switch enumerates the valid "follow" set for definition.
John McCallf312b1e2010-08-26 23:41:50 +00001331 if (TUK == Sema::TUK_Definition) {
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001332 bool ExpectedSemi = true;
Chris Lattner4ed5d912010-02-02 01:23:29 +00001333 switch (Tok.getKind()) {
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001334 default: break;
Chris Lattner4ed5d912010-02-02 01:23:29 +00001335 case tok::semi: // struct foo {...} ;
Chris Lattner99c95202010-02-02 17:32:27 +00001336 case tok::star: // struct foo {...} * P;
1337 case tok::amp: // struct foo {...} & R = ...
1338 case tok::identifier: // struct foo {...} V ;
1339 case tok::r_paren: //(struct foo {...} ) {4}
1340 case tok::annot_cxxscope: // struct foo {...} a:: b;
1341 case tok::annot_typename: // struct foo {...} a ::b;
1342 case tok::annot_template_id: // struct foo {...} a<int> ::b;
Chris Lattnerc2e1c1a2010-02-03 20:41:24 +00001343 case tok::l_paren: // struct foo {...} ( x);
Chris Lattner16acfee2010-02-03 01:45:03 +00001344 case tok::comma: // __builtin_offsetof(struct foo{...} ,
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001345 ExpectedSemi = false;
1346 break;
1347 // Type qualifiers
1348 case tok::kw_const: // struct foo {...} const x;
1349 case tok::kw_volatile: // struct foo {...} volatile x;
1350 case tok::kw_restrict: // struct foo {...} restrict x;
1351 case tok::kw_inline: // struct foo {...} inline foo() {};
Chris Lattner99c95202010-02-02 17:32:27 +00001352 // Storage-class specifiers
1353 case tok::kw_static: // struct foo {...} static x;
1354 case tok::kw_extern: // struct foo {...} extern x;
1355 case tok::kw_typedef: // struct foo {...} typedef x;
1356 case tok::kw_register: // struct foo {...} register x;
1357 case tok::kw_auto: // struct foo {...} auto x;
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001358 case tok::kw_mutable: // struct foo {...} mutable x;
1359 case tok::kw_constexpr: // struct foo {...} constexpr x;
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001360 // As shown above, type qualifiers and storage class specifiers absolutely
1361 // can occur after class specifiers according to the grammar. However,
Chris Lattnerfc8f0e12011-04-15 05:22:18 +00001362 // almost no one actually writes code like this. If we see one of these,
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001363 // it is much more likely that someone missed a semi colon and the
1364 // type/storage class specifier we're seeing is part of the *next*
1365 // intended declaration, as in:
1366 //
1367 // struct foo { ... }
1368 // typedef int X;
1369 //
1370 // We'd really like to emit a missing semicolon error instead of emitting
1371 // an error on the 'int' saying that you can't have two type specifiers in
1372 // the same declaration of X. Because of this, we look ahead past this
1373 // token to see if it's a type specifier. If so, we know the code is
1374 // otherwise invalid, so we can produce the expected semi error.
1375 if (!isKnownToBeTypeSpecifier(NextToken()))
1376 ExpectedSemi = false;
Chris Lattner4ed5d912010-02-02 01:23:29 +00001377 break;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001378
1379 case tok::r_brace: // struct bar { struct foo {...} }
Chris Lattner4ed5d912010-02-02 01:23:29 +00001380 // Missing ';' at end of struct is accepted as an extension in C mode.
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001381 if (!getLang().CPlusPlus)
1382 ExpectedSemi = false;
1383 break;
1384 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001385
Richard Smithcf6b0a22011-07-14 21:35:26 +00001386 // C++ [temp]p3 In a template-declaration which defines a class, no
1387 // declarator is permitted.
1388 if (TemplateInfo.Kind)
1389 ExpectedSemi = true;
1390
Chris Lattnerb3a4e432010-02-28 18:18:36 +00001391 if (ExpectedSemi) {
Chris Lattner4ed5d912010-02-02 01:23:29 +00001392 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_tagdecl,
1393 TagType == DeclSpec::TST_class ? "class"
1394 : TagType == DeclSpec::TST_struct? "struct" : "union");
1395 // Push this token back into the preprocessor and change our current token
1396 // to ';' so that the rest of the code recovers as though there were an
1397 // ';' after the definition.
1398 PP.EnterToken(Tok);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001399 Tok.setKind(tok::semi);
Chris Lattner4ed5d912010-02-02 01:23:29 +00001400 }
1401 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001402}
1403
Mike Stump1eb44332009-09-09 15:08:12 +00001404/// ParseBaseClause - Parse the base-clause of a C++ class [C++ class.derived].
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001405///
1406/// base-clause : [C++ class.derived]
1407/// ':' base-specifier-list
1408/// base-specifier-list:
1409/// base-specifier '...'[opt]
1410/// base-specifier-list ',' base-specifier '...'[opt]
John McCalld226f652010-08-21 09:40:31 +00001411void Parser::ParseBaseClause(Decl *ClassDecl) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001412 assert(Tok.is(tok::colon) && "Not a base clause");
1413 ConsumeToken();
1414
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001415 // Build up an array of parsed base specifiers.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001416 SmallVector<CXXBaseSpecifier *, 8> BaseInfo;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001417
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001418 while (true) {
1419 // Parse a base-specifier.
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001420 BaseResult Result = ParseBaseSpecifier(ClassDecl);
Douglas Gregor5ac8aff2009-01-26 22:44:13 +00001421 if (Result.isInvalid()) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001422 // Skip the rest of this base specifier, up until the comma or
1423 // opening brace.
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001424 SkipUntil(tok::comma, tok::l_brace, true, true);
1425 } else {
1426 // Add this to our array of base specifiers.
Douglas Gregor5ac8aff2009-01-26 22:44:13 +00001427 BaseInfo.push_back(Result.get());
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001428 }
1429
1430 // If the next token is a comma, consume it and keep reading
1431 // base-specifiers.
1432 if (Tok.isNot(tok::comma)) break;
Mike Stump1eb44332009-09-09 15:08:12 +00001433
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001434 // Consume the comma.
1435 ConsumeToken();
1436 }
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001437
1438 // Attach the base specifiers
Jay Foadbeaaccd2009-05-21 09:52:38 +00001439 Actions.ActOnBaseSpecifiers(ClassDecl, BaseInfo.data(), BaseInfo.size());
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001440}
1441
1442/// ParseBaseSpecifier - Parse a C++ base-specifier. A base-specifier is
1443/// one entry in the base class list of a class specifier, for example:
1444/// class foo : public bar, virtual private baz {
1445/// 'public bar' and 'virtual private baz' are each base-specifiers.
1446///
1447/// base-specifier: [C++ class.derived]
1448/// ::[opt] nested-name-specifier[opt] class-name
1449/// 'virtual' access-specifier[opt] ::[opt] nested-name-specifier[opt]
David Blaikie09048df2011-10-25 15:01:20 +00001450/// base-type-specifier
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001451/// access-specifier 'virtual'[opt] ::[opt] nested-name-specifier[opt]
David Blaikie09048df2011-10-25 15:01:20 +00001452/// base-type-specifier
John McCalld226f652010-08-21 09:40:31 +00001453Parser::BaseResult Parser::ParseBaseSpecifier(Decl *ClassDecl) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001454 bool IsVirtual = false;
1455 SourceLocation StartLoc = Tok.getLocation();
1456
1457 // Parse the 'virtual' keyword.
1458 if (Tok.is(tok::kw_virtual)) {
1459 ConsumeToken();
1460 IsVirtual = true;
1461 }
1462
1463 // Parse an (optional) access specifier.
1464 AccessSpecifier Access = getAccessSpecifierIfPresent();
John McCall92f88312010-01-23 00:46:32 +00001465 if (Access != AS_none)
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001466 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001467
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001468 // Parse the 'virtual' keyword (again!), in case it came after the
1469 // access specifier.
1470 if (Tok.is(tok::kw_virtual)) {
1471 SourceLocation VirtualLoc = ConsumeToken();
1472 if (IsVirtual) {
1473 // Complain about duplicate 'virtual'
Chris Lattner1ab3b962008-11-18 07:48:38 +00001474 Diag(VirtualLoc, diag::err_dup_virtual)
Douglas Gregor849b2432010-03-31 17:46:05 +00001475 << FixItHint::CreateRemoval(VirtualLoc);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001476 }
1477
1478 IsVirtual = true;
1479 }
1480
Douglas Gregor42a552f2008-11-05 20:51:48 +00001481 // Parse the class-name.
Douglas Gregor7f43d672009-02-25 23:52:28 +00001482 SourceLocation EndLocation;
David Blaikie22216eb2011-10-25 17:10:12 +00001483 SourceLocation BaseLoc;
1484 TypeResult BaseType = ParseBaseTypeSpecifier(BaseLoc, EndLocation);
Douglas Gregor31a19b62009-04-01 21:51:26 +00001485 if (BaseType.isInvalid())
Douglas Gregor42a552f2008-11-05 20:51:48 +00001486 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001487
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001488 // Parse the optional ellipsis (for a pack expansion). The ellipsis is
1489 // actually part of the base-specifier-list grammar productions, but we
1490 // parse it here for convenience.
1491 SourceLocation EllipsisLoc;
1492 if (Tok.is(tok::ellipsis))
1493 EllipsisLoc = ConsumeToken();
1494
Mike Stump1eb44332009-09-09 15:08:12 +00001495 // Find the complete source range for the base-specifier.
Douglas Gregor7f43d672009-02-25 23:52:28 +00001496 SourceRange Range(StartLoc, EndLocation);
Mike Stump1eb44332009-09-09 15:08:12 +00001497
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001498 // Notify semantic analysis that we have parsed a complete
1499 // base-specifier.
Sebastian Redla55e52c2008-11-25 22:21:31 +00001500 return Actions.ActOnBaseSpecifier(ClassDecl, Range, IsVirtual, Access,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001501 BaseType.get(), BaseLoc, EllipsisLoc);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001502}
1503
1504/// getAccessSpecifierIfPresent - Determine whether the next token is
1505/// a C++ access-specifier.
1506///
1507/// access-specifier: [C++ class.derived]
1508/// 'private'
1509/// 'protected'
1510/// 'public'
Mike Stump1eb44332009-09-09 15:08:12 +00001511AccessSpecifier Parser::getAccessSpecifierIfPresent() const {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001512 switch (Tok.getKind()) {
1513 default: return AS_none;
1514 case tok::kw_private: return AS_private;
1515 case tok::kw_protected: return AS_protected;
1516 case tok::kw_public: return AS_public;
1517 }
1518}
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001519
Eli Friedmand33133c2009-07-22 21:45:50 +00001520void Parser::HandleMemberFunctionDefaultArgs(Declarator& DeclaratorInfo,
John McCalld226f652010-08-21 09:40:31 +00001521 Decl *ThisDecl) {
Eli Friedmand33133c2009-07-22 21:45:50 +00001522 // We just declared a member function. If this member function
1523 // has any default arguments, we'll need to parse them later.
1524 LateParsedMethodDeclaration *LateMethod = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001525 DeclaratorChunk::FunctionTypeInfo &FTI
Abramo Bagnara075f8f12010-12-10 16:29:40 +00001526 = DeclaratorInfo.getFunctionTypeInfo();
Eli Friedmand33133c2009-07-22 21:45:50 +00001527 for (unsigned ParamIdx = 0; ParamIdx < FTI.NumArgs; ++ParamIdx) {
1528 if (LateMethod || FTI.ArgInfo[ParamIdx].DefaultArgTokens) {
1529 if (!LateMethod) {
1530 // Push this method onto the stack of late-parsed method
1531 // declarations.
Douglas Gregord54eb442010-10-12 16:25:54 +00001532 LateMethod = new LateParsedMethodDeclaration(this, ThisDecl);
1533 getCurrentClass().LateParsedDeclarations.push_back(LateMethod);
Douglas Gregor23c94db2010-07-02 17:43:08 +00001534 LateMethod->TemplateScope = getCurScope()->isTemplateParamScope();
Eli Friedmand33133c2009-07-22 21:45:50 +00001535
1536 // Add all of the parameters prior to this one (they don't
1537 // have default arguments).
1538 LateMethod->DefaultArgs.reserve(FTI.NumArgs);
1539 for (unsigned I = 0; I < ParamIdx; ++I)
1540 LateMethod->DefaultArgs.push_back(
Douglas Gregor8f8210c2010-03-02 01:29:43 +00001541 LateParsedDefaultArgument(FTI.ArgInfo[I].Param));
Eli Friedmand33133c2009-07-22 21:45:50 +00001542 }
1543
1544 // Add this parameter to the list of parameters (it or may
1545 // not have a default argument).
1546 LateMethod->DefaultArgs.push_back(
1547 LateParsedDefaultArgument(FTI.ArgInfo[ParamIdx].Param,
1548 FTI.ArgInfo[ParamIdx].DefaultArgTokens));
1549 }
1550 }
1551}
1552
Richard Smith1c94c162012-01-09 22:31:44 +00001553/// isCXX0XVirtSpecifier - Determine whether the given token is a C++0x
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001554/// virt-specifier.
1555///
1556/// virt-specifier:
1557/// override
1558/// final
Richard Smith1c94c162012-01-09 22:31:44 +00001559VirtSpecifiers::Specifier Parser::isCXX0XVirtSpecifier(const Token &Tok) const {
Anders Carlssonce93a7c2011-01-22 23:01:49 +00001560 if (!getLang().CPlusPlus)
Anders Carlssoncc54d592011-01-22 16:56:46 +00001561 return VirtSpecifiers::VS_None;
1562
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001563 if (Tok.is(tok::identifier)) {
1564 IdentifierInfo *II = Tok.getIdentifierInfo();
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001565
Anders Carlsson7eeb4ec2011-01-20 03:47:08 +00001566 // Initialize the contextual keywords.
1567 if (!Ident_final) {
1568 Ident_final = &PP.getIdentifierTable().get("final");
1569 Ident_override = &PP.getIdentifierTable().get("override");
1570 }
1571
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001572 if (II == Ident_override)
1573 return VirtSpecifiers::VS_Override;
1574
1575 if (II == Ident_final)
1576 return VirtSpecifiers::VS_Final;
1577 }
1578
1579 return VirtSpecifiers::VS_None;
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001580}
1581
1582/// ParseOptionalCXX0XVirtSpecifierSeq - Parse a virt-specifier-seq.
1583///
1584/// virt-specifier-seq:
1585/// virt-specifier
1586/// virt-specifier-seq virt-specifier
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001587void Parser::ParseOptionalCXX0XVirtSpecifierSeq(VirtSpecifiers &VS) {
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001588 while (true) {
Anders Carlssoncc54d592011-01-22 16:56:46 +00001589 VirtSpecifiers::Specifier Specifier = isCXX0XVirtSpecifier();
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001590 if (Specifier == VirtSpecifiers::VS_None)
1591 return;
1592
1593 // C++ [class.mem]p8:
1594 // A virt-specifier-seq shall contain at most one of each virt-specifier.
Anders Carlssoncc54d592011-01-22 16:56:46 +00001595 const char *PrevSpec = 0;
Anders Carlsson46127a92011-01-22 15:58:16 +00001596 if (VS.SetSpecifier(Specifier, Tok.getLocation(), PrevSpec))
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001597 Diag(Tok.getLocation(), diag::err_duplicate_virt_specifier)
1598 << PrevSpec
1599 << FixItHint::CreateRemoval(Tok.getLocation());
1600
Richard Smith7fe62082011-10-15 05:09:34 +00001601 Diag(Tok.getLocation(), getLang().CPlusPlus0x ?
1602 diag::warn_cxx98_compat_override_control_keyword :
1603 diag::ext_override_control_keyword)
1604 << VirtSpecifiers::getSpecifierName(Specifier);
Anders Carlssonb971dbd2011-01-17 03:05:47 +00001605 ConsumeToken();
1606 }
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001607}
1608
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001609/// isCXX0XFinalKeyword - Determine whether the next token is a C++0x
1610/// contextual 'final' keyword.
1611bool Parser::isCXX0XFinalKeyword() const {
Anders Carlssonce93a7c2011-01-22 23:01:49 +00001612 if (!getLang().CPlusPlus)
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001613 return false;
Anders Carlssoncc54d592011-01-22 16:56:46 +00001614
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001615 if (!Tok.is(tok::identifier))
1616 return false;
Anders Carlssoncc54d592011-01-22 16:56:46 +00001617
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001618 // Initialize the contextual keywords.
1619 if (!Ident_final) {
1620 Ident_final = &PP.getIdentifierTable().get("final");
1621 Ident_override = &PP.getIdentifierTable().get("override");
1622 }
Anders Carlssoncc54d592011-01-22 16:56:46 +00001623
Anders Carlsson8a29ba02011-03-25 14:53:29 +00001624 return Tok.getIdentifierInfo() == Ident_final;
Anders Carlssoncc54d592011-01-22 16:56:46 +00001625}
1626
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001627/// ParseCXXClassMemberDeclaration - Parse a C++ class member declaration.
1628///
1629/// member-declaration:
1630/// decl-specifier-seq[opt] member-declarator-list[opt] ';'
1631/// function-definition ';'[opt]
1632/// ::[opt] nested-name-specifier template[opt] unqualified-id ';'[TODO]
1633/// using-declaration [TODO]
Anders Carlsson511d7ab2009-03-11 16:27:10 +00001634/// [C++0x] static_assert-declaration
Anders Carlsson5aeccdb2009-03-26 00:52:18 +00001635/// template-declaration
Chris Lattnerbc8d5642008-12-18 01:12:00 +00001636/// [GNU] '__extension__' member-declaration
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001637///
1638/// member-declarator-list:
1639/// member-declarator
1640/// member-declarator-list ',' member-declarator
1641///
1642/// member-declarator:
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001643/// declarator virt-specifier-seq[opt] pure-specifier[opt]
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001644/// declarator constant-initializer[opt]
Richard Smith7a614d82011-06-11 17:19:42 +00001645/// [C++11] declarator brace-or-equal-initializer[opt]
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001646/// identifier[opt] ':' constant-expression
1647///
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001648/// virt-specifier-seq:
1649/// virt-specifier
1650/// virt-specifier-seq virt-specifier
1651///
1652/// virt-specifier:
1653/// override
1654/// final
Anders Carlsson1f3b6fd2011-01-16 23:56:42 +00001655///
Sebastian Redle2b68332009-04-12 17:16:29 +00001656/// pure-specifier:
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001657/// '= 0'
1658///
1659/// constant-initializer:
1660/// '=' constant-expression
1661///
Douglas Gregor37b372b2009-08-20 22:52:58 +00001662void Parser::ParseCXXClassMemberDeclaration(AccessSpecifier AS,
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001663 AttributeList *AccessAttrs,
John McCallc9068d72010-07-16 08:13:16 +00001664 const ParsedTemplateInfo &TemplateInfo,
1665 ParsingDeclRAIIObject *TemplateDiags) {
Douglas Gregor8a9013d2011-04-14 17:21:19 +00001666 if (Tok.is(tok::at)) {
1667 if (getLang().ObjC1 && NextToken().isObjCAtKeyword(tok::objc_defs))
1668 Diag(Tok, diag::err_at_defs_cxx);
1669 else
1670 Diag(Tok, diag::err_at_in_class);
1671
1672 ConsumeToken();
1673 SkipUntil(tok::r_brace);
1674 return;
1675 }
1676
John McCall60fa3cf2009-12-11 02:10:03 +00001677 // Access declarations.
1678 if (!TemplateInfo.Kind &&
1679 (Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) &&
John McCall9ba61662010-02-26 08:45:28 +00001680 !TryAnnotateCXXScopeToken() &&
John McCall60fa3cf2009-12-11 02:10:03 +00001681 Tok.is(tok::annot_cxxscope)) {
1682 bool isAccessDecl = false;
1683 if (NextToken().is(tok::identifier))
1684 isAccessDecl = GetLookAheadToken(2).is(tok::semi);
1685 else
1686 isAccessDecl = NextToken().is(tok::kw_operator);
1687
1688 if (isAccessDecl) {
1689 // Collect the scope specifier token we annotated earlier.
1690 CXXScopeSpec SS;
Douglas Gregorefaa93a2011-11-07 17:33:42 +00001691 ParseOptionalCXXScopeSpecifier(SS, ParsedType(),
1692 /*EnteringContext=*/false);
John McCall60fa3cf2009-12-11 02:10:03 +00001693
1694 // Try to parse an unqualified-id.
1695 UnqualifiedId Name;
John McCallb3d87482010-08-24 05:47:05 +00001696 if (ParseUnqualifiedId(SS, false, true, true, ParsedType(), Name)) {
John McCall60fa3cf2009-12-11 02:10:03 +00001697 SkipUntil(tok::semi);
1698 return;
1699 }
1700
1701 // TODO: recover from mistakenly-qualified operator declarations.
1702 if (ExpectAndConsume(tok::semi,
1703 diag::err_expected_semi_after,
1704 "access declaration",
1705 tok::semi))
1706 return;
1707
Douglas Gregor23c94db2010-07-02 17:43:08 +00001708 Actions.ActOnUsingDeclaration(getCurScope(), AS,
John McCall60fa3cf2009-12-11 02:10:03 +00001709 false, SourceLocation(),
1710 SS, Name,
1711 /* AttrList */ 0,
1712 /* IsTypeName */ false,
1713 SourceLocation());
1714 return;
1715 }
1716 }
1717
Anders Carlsson511d7ab2009-03-11 16:27:10 +00001718 // static_assert-declaration
Peter Collingbournec6eb44b2011-04-15 00:35:57 +00001719 if (Tok.is(tok::kw_static_assert) || Tok.is(tok::kw__Static_assert)) {
Douglas Gregor37b372b2009-08-20 22:52:58 +00001720 // FIXME: Check for templates
Chris Lattner97144fc2009-04-02 04:16:50 +00001721 SourceLocation DeclEnd;
1722 ParseStaticAssertDeclaration(DeclEnd);
Chris Lattner682bf922009-03-29 16:50:03 +00001723 return;
1724 }
Mike Stump1eb44332009-09-09 15:08:12 +00001725
Chris Lattner682bf922009-03-29 16:50:03 +00001726 if (Tok.is(tok::kw_template)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001727 assert(!TemplateInfo.TemplateParams &&
Douglas Gregor37b372b2009-08-20 22:52:58 +00001728 "Nested template improperly parsed?");
Chris Lattner97144fc2009-04-02 04:16:50 +00001729 SourceLocation DeclEnd;
Mike Stump1eb44332009-09-09 15:08:12 +00001730 ParseDeclarationStartingWithTemplate(Declarator::MemberContext, DeclEnd,
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001731 AS, AccessAttrs);
Chris Lattner682bf922009-03-29 16:50:03 +00001732 return;
1733 }
Anders Carlsson5aeccdb2009-03-26 00:52:18 +00001734
Chris Lattnerbc8d5642008-12-18 01:12:00 +00001735 // Handle: member-declaration ::= '__extension__' member-declaration
1736 if (Tok.is(tok::kw___extension__)) {
1737 // __extension__ silences extension warnings in the subexpression.
1738 ExtensionRAIIObject O(Diags); // Use RAII to do this.
1739 ConsumeToken();
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001740 return ParseCXXClassMemberDeclaration(AS, AccessAttrs,
1741 TemplateInfo, TemplateDiags);
Chris Lattnerbc8d5642008-12-18 01:12:00 +00001742 }
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001743
Chris Lattner4ed5d912010-02-02 01:23:29 +00001744 // Don't parse FOO:BAR as if it were a typo for FOO::BAR, in this context it
1745 // is a bitfield.
Chris Lattnera1efc8c2009-12-10 01:59:24 +00001746 ColonProtectionRAIIObject X(*this);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001747
John McCall0b7e6782011-03-24 11:26:52 +00001748 ParsedAttributesWithRange attrs(AttrFactory);
Sean Huntbbd37c62009-11-21 08:43:09 +00001749 // Optional C++0x attribute-specifier
John McCall7f040a92010-12-24 02:08:15 +00001750 MaybeParseCXX0XAttributes(attrs);
1751 MaybeParseMicrosoftAttributes(attrs);
Sean Huntbbd37c62009-11-21 08:43:09 +00001752
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001753 if (Tok.is(tok::kw_using)) {
John McCall7f040a92010-12-24 02:08:15 +00001754 ProhibitAttributes(attrs);
Mike Stump1eb44332009-09-09 15:08:12 +00001755
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001756 // Eat 'using'.
1757 SourceLocation UsingLoc = ConsumeToken();
1758
1759 if (Tok.is(tok::kw_namespace)) {
1760 Diag(UsingLoc, diag::err_using_namespace_in_class);
1761 SkipUntil(tok::semi, true, true);
Chris Lattnerae50d502010-02-02 00:43:15 +00001762 } else {
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001763 SourceLocation DeclEnd;
Richard Smith3e4c6c42011-05-05 21:57:07 +00001764 // Otherwise, it must be a using-declaration or an alias-declaration.
John McCall78b81052010-11-10 02:40:36 +00001765 ParseUsingDeclaration(Declarator::MemberContext, TemplateInfo,
1766 UsingLoc, DeclEnd, AS);
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001767 }
1768 return;
1769 }
1770
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001771 // decl-specifier-seq:
1772 // Parse the common declaration-specifiers piece.
John McCallc9068d72010-07-16 08:13:16 +00001773 ParsingDeclSpec DS(*this, TemplateDiags);
John McCall7f040a92010-12-24 02:08:15 +00001774 DS.takeAttributesFrom(attrs);
Douglas Gregor37b372b2009-08-20 22:52:58 +00001775 ParseDeclarationSpecifiers(DS, TemplateInfo, AS, DSC_class);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001776
John McCallf312b1e2010-08-26 23:41:50 +00001777 MultiTemplateParamsArg TemplateParams(Actions,
John McCalldd4a3b02009-09-16 22:47:08 +00001778 TemplateInfo.TemplateParams? TemplateInfo.TemplateParams->data() : 0,
1779 TemplateInfo.TemplateParams? TemplateInfo.TemplateParams->size() : 0);
1780
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001781 if (Tok.is(tok::semi)) {
1782 ConsumeToken();
John McCalld226f652010-08-21 09:40:31 +00001783 Decl *TheDecl =
Chandler Carruth0f4be742011-05-03 18:35:10 +00001784 Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS, DS, TemplateParams);
John McCallc9068d72010-07-16 08:13:16 +00001785 DS.complete(TheDecl);
John McCall67d1a672009-08-06 02:15:43 +00001786 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001787 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001788
John McCall54abf7d2009-11-04 02:18:39 +00001789 ParsingDeclarator DeclaratorInfo(*this, DS, Declarator::MemberContext);
Nico Weber48673472011-01-28 06:07:34 +00001790 VirtSpecifiers VS;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001791
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001792 // Hold late-parsed attributes so we can attach a Decl to them later.
1793 LateParsedAttrList LateParsedAttrs;
1794
Douglas Gregora2b4e5d2011-10-17 17:09:53 +00001795 SourceLocation EqualLoc;
1796 bool HasInitializer = false;
1797 ExprResult Init;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001798 if (Tok.isNot(tok::colon)) {
Chris Lattnera1efc8c2009-12-10 01:59:24 +00001799 // Don't parse FOO:BAR as if it were a typo for FOO::BAR.
1800 ColonProtectionRAIIObject X(*this);
1801
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001802 // Parse the first declarator.
1803 ParseDeclarator(DeclaratorInfo);
1804 // Error parsing the declarator?
Douglas Gregor10bd3682008-11-17 22:58:34 +00001805 if (!DeclaratorInfo.hasName()) {
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001806 // If so, skip until the semi-colon or a }.
Sebastian Redld941fa42011-04-24 16:27:48 +00001807 SkipUntil(tok::r_brace, true, true);
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001808 if (Tok.is(tok::semi))
1809 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001810 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001811 }
1812
Nico Weber48673472011-01-28 06:07:34 +00001813 ParseOptionalCXX0XVirtSpecifierSeq(VS);
1814
John Thompson1b2fc0f2009-11-25 22:58:06 +00001815 // If attributes exist after the declarator, but before an '{', parse them.
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001816 MaybeParseGNUAttributes(DeclaratorInfo, &LateParsedAttrs);
John Thompson1b2fc0f2009-11-25 22:58:06 +00001817
Francois Pichet6a247472011-05-11 02:14:46 +00001818 // MSVC permits pure specifier on inline functions declared at class scope.
1819 // Hence check for =0 before checking for function definition.
Francois Pichet62ec1f22011-09-17 17:15:52 +00001820 if (getLang().MicrosoftExt && Tok.is(tok::equal) &&
Francois Pichet6a247472011-05-11 02:14:46 +00001821 DeclaratorInfo.isFunctionDeclarator() &&
1822 NextToken().is(tok::numeric_constant)) {
Douglas Gregora2b4e5d2011-10-17 17:09:53 +00001823 EqualLoc = ConsumeToken();
Francois Pichet6a247472011-05-11 02:14:46 +00001824 Init = ParseInitializer();
1825 if (Init.isInvalid())
1826 SkipUntil(tok::comma, true, true);
Douglas Gregora2b4e5d2011-10-17 17:09:53 +00001827 else
1828 HasInitializer = true;
Francois Pichet6a247472011-05-11 02:14:46 +00001829 }
1830
Douglas Gregor45fa5602011-11-07 20:56:01 +00001831 FunctionDefinitionKind DefinitionKind = FDK_Declaration;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001832 // function-definition:
Richard Smith7a614d82011-06-11 17:19:42 +00001833 //
1834 // In C++11, a non-function declarator followed by an open brace is a
1835 // braced-init-list for an in-class member initialization, not an
1836 // erroneous function definition.
1837 if (Tok.is(tok::l_brace) && !getLang().CPlusPlus0x) {
Douglas Gregor45fa5602011-11-07 20:56:01 +00001838 DefinitionKind = FDK_Definition;
Sean Hunte4246a62011-05-12 06:15:49 +00001839 } else if (DeclaratorInfo.isFunctionDeclarator()) {
Richard Smith7a614d82011-06-11 17:19:42 +00001840 if (Tok.is(tok::l_brace) || Tok.is(tok::colon) || Tok.is(tok::kw_try)) {
Douglas Gregor45fa5602011-11-07 20:56:01 +00001841 DefinitionKind = FDK_Definition;
Sean Hunte4246a62011-05-12 06:15:49 +00001842 } else if (Tok.is(tok::equal)) {
1843 const Token &KW = NextToken();
Douglas Gregor45fa5602011-11-07 20:56:01 +00001844 if (KW.is(tok::kw_default))
1845 DefinitionKind = FDK_Defaulted;
1846 else if (KW.is(tok::kw_delete))
1847 DefinitionKind = FDK_Deleted;
Sean Hunte4246a62011-05-12 06:15:49 +00001848 }
1849 }
1850
Douglas Gregor45fa5602011-11-07 20:56:01 +00001851 if (DefinitionKind) {
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001852 if (!DeclaratorInfo.isFunctionDeclarator()) {
Richard Trieu65ba9482012-01-21 02:59:18 +00001853 Diag(DeclaratorInfo.getIdentifierLoc(), diag::err_func_def_no_params);
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001854 ConsumeBrace();
Richard Trieu65ba9482012-01-21 02:59:18 +00001855 SkipUntil(tok::r_brace, /*StopAtSemi*/false);
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001856
1857 // Consume the optional ';'
1858 if (Tok.is(tok::semi))
1859 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001860 return;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001861 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001862
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001863 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
Richard Trieu65ba9482012-01-21 02:59:18 +00001864 Diag(DeclaratorInfo.getIdentifierLoc(),
1865 diag::err_function_declared_typedef);
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001866 // This recovery skips the entire function body. It would be nice
1867 // to simply call ParseCXXInlineMethodDef() below, however Sema
1868 // assumes the declarator represents a function, not a typedef.
1869 ConsumeBrace();
Richard Trieu65ba9482012-01-21 02:59:18 +00001870 SkipUntil(tok::r_brace, /*StopAtSemi*/false);
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001871
1872 // Consume the optional ';'
1873 if (Tok.is(tok::semi))
1874 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00001875 return;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001876 }
1877
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001878 Decl *FunDecl =
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001879 ParseCXXInlineMethodDef(AS, AccessAttrs, DeclaratorInfo, TemplateInfo,
Douglas Gregor45fa5602011-11-07 20:56:01 +00001880 VS, DefinitionKind, Init);
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001881
1882 for (unsigned i = 0, ni = LateParsedAttrs.size(); i < ni; ++i) {
1883 LateParsedAttrs[i]->setDecl(FunDecl);
1884 }
1885 LateParsedAttrs.clear();
Sean Hunte4246a62011-05-12 06:15:49 +00001886
1887 // Consume the ';' - it's optional unless we have a delete or default
1888 if (Tok.is(tok::semi)) {
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001889 ConsumeToken();
Sean Hunte4246a62011-05-12 06:15:49 +00001890 }
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001891
Chris Lattner682bf922009-03-29 16:50:03 +00001892 return;
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00001893 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001894 }
1895
1896 // member-declarator-list:
1897 // member-declarator
1898 // member-declarator-list ',' member-declarator
1899
Chris Lattner5f9e2722011-07-23 10:55:15 +00001900 SmallVector<Decl *, 8> DeclsInGroup;
John McCall60d7b3a2010-08-24 06:29:42 +00001901 ExprResult BitfieldSize;
Richard Smith1c94c162012-01-09 22:31:44 +00001902 bool ExpectSemi = true;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001903
1904 while (1) {
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001905 // member-declarator:
1906 // declarator pure-specifier[opt]
Richard Smith7a614d82011-06-11 17:19:42 +00001907 // declarator brace-or-equal-initializer[opt]
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001908 // identifier[opt] ':' constant-expression
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001909 if (Tok.is(tok::colon)) {
1910 ConsumeToken();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001911 BitfieldSize = ParseConstantExpression();
1912 if (BitfieldSize.isInvalid())
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001913 SkipUntil(tok::comma, true, true);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001914 }
Mike Stump1eb44332009-09-09 15:08:12 +00001915
Chris Lattnere6563252010-06-13 05:34:18 +00001916 // If a simple-asm-expr is present, parse it.
1917 if (Tok.is(tok::kw_asm)) {
1918 SourceLocation Loc;
John McCall60d7b3a2010-08-24 06:29:42 +00001919 ExprResult AsmLabel(ParseSimpleAsm(&Loc));
Chris Lattnere6563252010-06-13 05:34:18 +00001920 if (AsmLabel.isInvalid())
1921 SkipUntil(tok::comma, true, true);
1922
1923 DeclaratorInfo.setAsmLabel(AsmLabel.release());
1924 DeclaratorInfo.SetRangeEnd(Loc);
1925 }
1926
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001927 // If attributes exist after the declarator, parse them.
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001928 MaybeParseGNUAttributes(DeclaratorInfo, &LateParsedAttrs);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001929
Richard Smith7a614d82011-06-11 17:19:42 +00001930 // FIXME: When g++ adds support for this, we'll need to check whether it
1931 // goes before or after the GNU attributes and __asm__.
1932 ParseOptionalCXX0XVirtSpecifierSeq(VS);
1933
1934 bool HasDeferredInitializer = false;
Douglas Gregora2b4e5d2011-10-17 17:09:53 +00001935 if ((Tok.is(tok::equal) || Tok.is(tok::l_brace)) && !HasInitializer) {
Richard Smith7a614d82011-06-11 17:19:42 +00001936 if (BitfieldSize.get()) {
1937 Diag(Tok, diag::err_bitfield_member_init);
1938 SkipUntil(tok::comma, true, true);
1939 } else {
Douglas Gregor147545d2011-10-10 14:49:18 +00001940 HasInitializer = true;
Douglas Gregor555f57e2011-06-25 00:56:27 +00001941 HasDeferredInitializer = !DeclaratorInfo.isDeclarationOfFunction() &&
Richard Smith7a614d82011-06-11 17:19:42 +00001942 DeclaratorInfo.getDeclSpec().getStorageClassSpec()
Richard Smithc2cdd532011-06-12 11:43:46 +00001943 != DeclSpec::SCS_static &&
1944 DeclaratorInfo.getDeclSpec().getStorageClassSpec()
1945 != DeclSpec::SCS_typedef;
Richard Smith7a614d82011-06-11 17:19:42 +00001946 }
1947 }
1948
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001949 // NOTE: If Sema is the Action module and declarator is an instance field,
Chris Lattner682bf922009-03-29 16:50:03 +00001950 // this call will *not* return the created decl; It will return null.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001951 // See Sema::ActOnCXXMemberDeclarator for details.
John McCall67d1a672009-08-06 02:15:43 +00001952
John McCalld226f652010-08-21 09:40:31 +00001953 Decl *ThisDecl = 0;
John McCall67d1a672009-08-06 02:15:43 +00001954 if (DS.isFriendSpecified()) {
John McCallbbbcdd92009-09-11 21:02:39 +00001955 // TODO: handle initializers, bitfields, 'delete'
Douglas Gregor23c94db2010-07-02 17:43:08 +00001956 ThisDecl = Actions.ActOnFriendFunctionDecl(getCurScope(), DeclaratorInfo,
John McCallbbbcdd92009-09-11 21:02:39 +00001957 move(TemplateParams));
Douglas Gregor37b372b2009-08-20 22:52:58 +00001958 } else {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001959 ThisDecl = Actions.ActOnCXXMemberDeclarator(getCurScope(), AS,
John McCall67d1a672009-08-06 02:15:43 +00001960 DeclaratorInfo,
Douglas Gregor37b372b2009-08-20 22:52:58 +00001961 move(TemplateParams),
John McCall67d1a672009-08-06 02:15:43 +00001962 BitfieldSize.release(),
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00001963 VS, HasDeferredInitializer);
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001964 if (AccessAttrs)
1965 Actions.ProcessDeclAttributeList(getCurScope(), ThisDecl, AccessAttrs,
1966 false, true);
Douglas Gregor37b372b2009-08-20 22:52:58 +00001967 }
Douglas Gregor147545d2011-10-10 14:49:18 +00001968
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00001969 // Set the Decl for any late parsed attributes
1970 for (unsigned i = 0, ni = LateParsedAttrs.size(); i < ni; ++i) {
1971 LateParsedAttrs[i]->setDecl(ThisDecl);
1972 }
1973 LateParsedAttrs.clear();
1974
Douglas Gregor147545d2011-10-10 14:49:18 +00001975 // Handle the initializer.
Richard Smith7a614d82011-06-11 17:19:42 +00001976 if (HasDeferredInitializer) {
Douglas Gregor147545d2011-10-10 14:49:18 +00001977 // The initializer was deferred; parse it and cache the tokens.
Richard Smith7fe62082011-10-15 05:09:34 +00001978 Diag(Tok, getLang().CPlusPlus0x ?
1979 diag::warn_cxx98_compat_nonstatic_member_init :
1980 diag::ext_nonstatic_member_init);
1981
Richard Smith7a614d82011-06-11 17:19:42 +00001982 if (DeclaratorInfo.isArrayOfUnknownBound()) {
1983 // C++0x [dcl.array]p3: An array bound may also be omitted when the
1984 // declarator is followed by an initializer.
1985 //
1986 // A brace-or-equal-initializer for a member-declarator is not an
1987 // initializer in the gramamr, so this is ill-formed.
1988 Diag(Tok, diag::err_incomplete_array_member_init);
1989 SkipUntil(tok::comma, true, true);
1990 // Avoid later warnings about a class member of incomplete type.
1991 ThisDecl->setInvalidDecl();
1992 } else
1993 ParseCXXNonStaticMemberInitializer(ThisDecl);
Douglas Gregor147545d2011-10-10 14:49:18 +00001994 } else if (HasInitializer) {
1995 // Normal initializer.
Douglas Gregora2b4e5d2011-10-17 17:09:53 +00001996 if (!Init.isUsable())
1997 Init = ParseCXXMemberInitializer(
1998 DeclaratorInfo.isDeclarationOfFunction(), EqualLoc);
1999
Douglas Gregor147545d2011-10-10 14:49:18 +00002000 if (Init.isInvalid())
2001 SkipUntil(tok::comma, true, true);
2002 else if (ThisDecl)
2003 Actions.AddInitializerToDecl(ThisDecl, Init.get(), false,
Douglas Gregora2b4e5d2011-10-17 17:09:53 +00002004 DS.getTypeSpecType() == DeclSpec::TST_auto);
Douglas Gregor147545d2011-10-10 14:49:18 +00002005 } else if (ThisDecl && DS.getStorageClassSpec() == DeclSpec::SCS_static) {
2006 // No initializer.
2007 Actions.ActOnUninitializedDecl(ThisDecl,
2008 DS.getTypeSpecType() == DeclSpec::TST_auto);
Richard Smith7a614d82011-06-11 17:19:42 +00002009 }
Douglas Gregor147545d2011-10-10 14:49:18 +00002010
2011 if (ThisDecl) {
2012 Actions.FinalizeDeclaration(ThisDecl);
2013 DeclsInGroup.push_back(ThisDecl);
2014 }
2015
2016 if (DeclaratorInfo.isFunctionDeclarator() &&
2017 DeclaratorInfo.getDeclSpec().getStorageClassSpec()
2018 != DeclSpec::SCS_typedef) {
2019 HandleMemberFunctionDefaultArgs(DeclaratorInfo, ThisDecl);
2020 }
2021
2022 DeclaratorInfo.complete(ThisDecl);
Richard Smith7a614d82011-06-11 17:19:42 +00002023
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002024 // If we don't have a comma, it is either the end of the list (a ';')
2025 // or an error, bail out.
2026 if (Tok.isNot(tok::comma))
2027 break;
Mike Stump1eb44332009-09-09 15:08:12 +00002028
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002029 // Consume the comma.
Richard Smith1c94c162012-01-09 22:31:44 +00002030 SourceLocation CommaLoc = ConsumeToken();
2031
2032 if (Tok.isAtStartOfLine() &&
2033 !MightBeDeclarator(Declarator::MemberContext)) {
2034 // This comma was followed by a line-break and something which can't be
2035 // the start of a declarator. The comma was probably a typo for a
2036 // semicolon.
2037 Diag(CommaLoc, diag::err_expected_semi_declaration)
2038 << FixItHint::CreateReplacement(CommaLoc, ";");
2039 ExpectSemi = false;
2040 break;
2041 }
Mike Stump1eb44332009-09-09 15:08:12 +00002042
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002043 // Parse the next declarator.
2044 DeclaratorInfo.clear();
Nico Weber48673472011-01-28 06:07:34 +00002045 VS.clear();
Douglas Gregor147545d2011-10-10 14:49:18 +00002046 BitfieldSize = true;
Douglas Gregora2b4e5d2011-10-17 17:09:53 +00002047 Init = true;
2048 HasInitializer = false;
Richard Smith7984de32012-01-12 23:53:29 +00002049 DeclaratorInfo.setCommaLoc(CommaLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00002050
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002051 // Attributes are only allowed on the second declarator.
John McCall7f040a92010-12-24 02:08:15 +00002052 MaybeParseGNUAttributes(DeclaratorInfo);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002053
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +00002054 if (Tok.isNot(tok::colon))
2055 ParseDeclarator(DeclaratorInfo);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002056 }
2057
Richard Smith1c94c162012-01-09 22:31:44 +00002058 if (ExpectSemi &&
2059 ExpectAndConsume(tok::semi, diag::err_expected_semi_decl_list)) {
Chris Lattnerae50d502010-02-02 00:43:15 +00002060 // Skip to end of block or statement.
2061 SkipUntil(tok::r_brace, true, true);
2062 // If we stopped at a ';', eat it.
2063 if (Tok.is(tok::semi)) ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +00002064 return;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002065 }
2066
Douglas Gregor23c94db2010-07-02 17:43:08 +00002067 Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup.data(),
Chris Lattnerae50d502010-02-02 00:43:15 +00002068 DeclsInGroup.size());
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002069}
2070
Richard Smith7a614d82011-06-11 17:19:42 +00002071/// ParseCXXMemberInitializer - Parse the brace-or-equal-initializer or
2072/// pure-specifier. Also detect and reject any attempted defaulted/deleted
2073/// function definition. The location of the '=', if any, will be placed in
2074/// EqualLoc.
2075///
2076/// pure-specifier:
2077/// '= 0'
2078///
2079/// brace-or-equal-initializer:
2080/// '=' initializer-expression
2081/// braced-init-list [TODO]
2082///
2083/// initializer-clause:
2084/// assignment-expression
2085/// braced-init-list [TODO]
2086///
2087/// defaulted/deleted function-definition:
2088/// '=' 'default'
2089/// '=' 'delete'
2090///
2091/// Prior to C++0x, the assignment-expression in an initializer-clause must
2092/// be a constant-expression.
2093ExprResult Parser::ParseCXXMemberInitializer(bool IsFunction,
2094 SourceLocation &EqualLoc) {
2095 assert((Tok.is(tok::equal) || Tok.is(tok::l_brace))
2096 && "Data member initializer not starting with '=' or '{'");
2097
2098 if (Tok.is(tok::equal)) {
2099 EqualLoc = ConsumeToken();
2100 if (Tok.is(tok::kw_delete)) {
2101 // In principle, an initializer of '= delete p;' is legal, but it will
2102 // never type-check. It's better to diagnose it as an ill-formed expression
2103 // than as an ill-formed deleted non-function member.
2104 // An initializer of '= delete p, foo' will never be parsed, because
2105 // a top-level comma always ends the initializer expression.
2106 const Token &Next = NextToken();
2107 if (IsFunction || Next.is(tok::semi) || Next.is(tok::comma) ||
2108 Next.is(tok::eof)) {
2109 if (IsFunction)
2110 Diag(ConsumeToken(), diag::err_default_delete_in_multiple_declaration)
2111 << 1 /* delete */;
2112 else
2113 Diag(ConsumeToken(), diag::err_deleted_non_function);
2114 return ExprResult();
2115 }
2116 } else if (Tok.is(tok::kw_default)) {
Richard Smith7a614d82011-06-11 17:19:42 +00002117 if (IsFunction)
2118 Diag(Tok, diag::err_default_delete_in_multiple_declaration)
2119 << 0 /* default */;
2120 else
2121 Diag(ConsumeToken(), diag::err_default_special_members);
2122 return ExprResult();
2123 }
2124
2125 return ParseInitializer();
2126 } else
2127 return ExprError(Diag(Tok, diag::err_generalized_initializer_lists));
2128}
2129
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002130/// ParseCXXMemberSpecification - Parse the class definition.
2131///
2132/// member-specification:
2133/// member-declaration member-specification[opt]
2134/// access-specifier ':' member-specification[opt]
2135///
2136void Parser::ParseCXXMemberSpecification(SourceLocation RecordLoc,
John McCalld226f652010-08-21 09:40:31 +00002137 unsigned TagType, Decl *TagDecl) {
Sanjiv Gupta31fc07d2008-10-31 09:52:39 +00002138 assert((TagType == DeclSpec::TST_struct ||
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002139 TagType == DeclSpec::TST_union ||
Sanjiv Gupta31fc07d2008-10-31 09:52:39 +00002140 TagType == DeclSpec::TST_class) && "Invalid TagType!");
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002141
John McCallf312b1e2010-08-26 23:41:50 +00002142 PrettyDeclStackTraceEntry CrashInfo(Actions, TagDecl, RecordLoc,
2143 "parsing struct/union/class body");
Mike Stump1eb44332009-09-09 15:08:12 +00002144
Douglas Gregor26997fd2010-01-16 20:52:59 +00002145 // Determine whether this is a non-nested class. Note that local
2146 // classes are *not* considered to be nested classes.
2147 bool NonNestedClass = true;
2148 if (!ClassStack.empty()) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00002149 for (const Scope *S = getCurScope(); S; S = S->getParent()) {
Douglas Gregor26997fd2010-01-16 20:52:59 +00002150 if (S->isClassScope()) {
2151 // We're inside a class scope, so this is a nested class.
2152 NonNestedClass = false;
2153 break;
2154 }
2155
2156 if ((S->getFlags() & Scope::FnScope)) {
2157 // If we're in a function or function template declared in the
2158 // body of a class, then this is a local class rather than a
2159 // nested class.
2160 const Scope *Parent = S->getParent();
2161 if (Parent->isTemplateParamScope())
2162 Parent = Parent->getParent();
2163 if (Parent->isClassScope())
2164 break;
2165 }
2166 }
2167 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002168
2169 // Enter a scope for the class.
Douglas Gregor3218c4b2009-01-09 22:42:13 +00002170 ParseScope ClassScope(this, Scope::ClassScope|Scope::DeclScope);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002171
Douglas Gregor6569d682009-05-27 23:11:45 +00002172 // Note that we are parsing a new (potentially-nested) class definition.
Douglas Gregor26997fd2010-01-16 20:52:59 +00002173 ParsingClassDefinition ParsingDef(*this, TagDecl, NonNestedClass);
Douglas Gregor6569d682009-05-27 23:11:45 +00002174
Douglas Gregorddc29e12009-02-06 22:42:48 +00002175 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002176 Actions.ActOnTagStartDefinition(getCurScope(), TagDecl);
John McCallbd0dfa52009-12-19 21:48:58 +00002177
Anders Carlssonb184a182011-03-25 14:46:08 +00002178 SourceLocation FinalLoc;
2179
2180 // Parse the optional 'final' keyword.
2181 if (getLang().CPlusPlus && Tok.is(tok::identifier)) {
Richard Smith8b11b5e2011-10-15 04:21:46 +00002182 assert(isCXX0XFinalKeyword() && "not a class definition");
2183 FinalLoc = ConsumeToken();
Anders Carlssonb184a182011-03-25 14:46:08 +00002184
Richard Smith7fe62082011-10-15 05:09:34 +00002185 Diag(FinalLoc, getLang().CPlusPlus0x ?
2186 diag::warn_cxx98_compat_override_control_keyword :
2187 diag::ext_override_control_keyword) << "final";
Anders Carlssonb184a182011-03-25 14:46:08 +00002188 }
Anders Carlssoncc54d592011-01-22 16:56:46 +00002189
John McCallbd0dfa52009-12-19 21:48:58 +00002190 if (Tok.is(tok::colon)) {
2191 ParseBaseClause(TagDecl);
2192
2193 if (!Tok.is(tok::l_brace)) {
2194 Diag(Tok, diag::err_expected_lbrace_after_base_specifiers);
John McCalldb7bb4a2010-03-17 00:38:33 +00002195
2196 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002197 Actions.ActOnTagDefinitionError(getCurScope(), TagDecl);
John McCallbd0dfa52009-12-19 21:48:58 +00002198 return;
2199 }
2200 }
2201
2202 assert(Tok.is(tok::l_brace));
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002203 BalancedDelimiterTracker T(*this, tok::l_brace);
2204 T.consumeOpen();
John McCallbd0dfa52009-12-19 21:48:58 +00002205
John McCall42a4f662010-05-28 08:11:17 +00002206 if (TagDecl)
Anders Carlsson2c3ee542011-03-25 14:31:08 +00002207 Actions.ActOnStartCXXMemberDeclarations(getCurScope(), TagDecl, FinalLoc,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002208 T.getOpenLocation());
John McCallf9368152009-12-20 07:58:13 +00002209
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002210 // C++ 11p3: Members of a class defined with the keyword class are private
2211 // by default. Members of a class defined with the keywords struct or union
2212 // are public by default.
2213 AccessSpecifier CurAS;
2214 if (TagType == DeclSpec::TST_class)
2215 CurAS = AS_private;
2216 else
2217 CurAS = AS_public;
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00002218 ParsedAttributes AccessAttrs(AttrFactory);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002219
Douglas Gregor07976d22010-06-21 22:31:09 +00002220 if (TagDecl) {
2221 // While we still have something to read, read the member-declarations.
2222 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
2223 // Each iteration of this loop reads one member-declaration.
Mike Stump1eb44332009-09-09 15:08:12 +00002224
Francois Pichet62ec1f22011-09-17 17:15:52 +00002225 if (getLang().MicrosoftExt && (Tok.is(tok::kw___if_exists) ||
Francois Pichet563a6452011-05-25 10:19:49 +00002226 Tok.is(tok::kw___if_not_exists))) {
2227 ParseMicrosoftIfExistsClassDeclaration((DeclSpec::TST)TagType, CurAS);
2228 continue;
2229 }
2230
Douglas Gregor07976d22010-06-21 22:31:09 +00002231 // Check for extraneous top-level semicolon.
2232 if (Tok.is(tok::semi)) {
2233 Diag(Tok, diag::ext_extra_struct_semi)
2234 << DeclSpec::getSpecifierName((DeclSpec::TST)TagType)
2235 << FixItHint::CreateRemoval(Tok.getLocation());
2236 ConsumeToken();
2237 continue;
2238 }
2239
2240 AccessSpecifier AS = getAccessSpecifierIfPresent();
2241 if (AS != AS_none) {
2242 // Current token is a C++ access specifier.
2243 CurAS = AS;
2244 SourceLocation ASLoc = Tok.getLocation();
David Blaikie13f8daf2011-10-13 06:08:43 +00002245 unsigned TokLength = Tok.getLength();
Douglas Gregor07976d22010-06-21 22:31:09 +00002246 ConsumeToken();
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00002247 AccessAttrs.clear();
2248 MaybeParseGNUAttributes(AccessAttrs);
2249
David Blaikie13f8daf2011-10-13 06:08:43 +00002250 SourceLocation EndLoc;
2251 if (Tok.is(tok::colon)) {
2252 EndLoc = Tok.getLocation();
2253 ConsumeToken();
2254 } else if (Tok.is(tok::semi)) {
2255 EndLoc = Tok.getLocation();
2256 ConsumeToken();
2257 Diag(EndLoc, diag::err_expected_colon)
2258 << FixItHint::CreateReplacement(EndLoc, ":");
2259 } else {
2260 EndLoc = ASLoc.getLocWithOffset(TokLength);
2261 Diag(EndLoc, diag::err_expected_colon)
2262 << FixItHint::CreateInsertion(EndLoc, ":");
2263 }
Erik Verbruggenc35cba42011-10-17 09:54:52 +00002264
2265 if (Actions.ActOnAccessSpecifier(AS, ASLoc, EndLoc,
2266 AccessAttrs.getList())) {
2267 // found another attribute than only annotations
2268 AccessAttrs.clear();
2269 }
2270
Douglas Gregor07976d22010-06-21 22:31:09 +00002271 continue;
2272 }
2273
2274 // FIXME: Make sure we don't have a template here.
2275
2276 // Parse all the comma separated declarators.
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00002277 ParseCXXClassMemberDeclaration(CurAS, AccessAttrs.getList());
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002278 }
2279
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002280 T.consumeClose();
Douglas Gregor07976d22010-06-21 22:31:09 +00002281 } else {
2282 SkipUntil(tok::r_brace, false, false);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002283 }
Mike Stump1eb44332009-09-09 15:08:12 +00002284
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002285 // If attributes exist after class contents, parse them.
John McCall0b7e6782011-03-24 11:26:52 +00002286 ParsedAttributes attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +00002287 MaybeParseGNUAttributes(attrs);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002288
John McCall42a4f662010-05-28 08:11:17 +00002289 if (TagDecl)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002290 Actions.ActOnFinishCXXMemberSpecification(getCurScope(), RecordLoc, TagDecl,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002291 T.getOpenLocation(),
2292 T.getCloseLocation(),
John McCall7f040a92010-12-24 02:08:15 +00002293 attrs.getList());
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002294
Richard Smith7a614d82011-06-11 17:19:42 +00002295 // C++0x [class.mem]p2: Within the class member-specification, the class is
2296 // regarded as complete within function bodies, default arguments, exception-
2297 // specifications, and brace-or-equal-initializers for non-static data
2298 // members (including such things in nested classes).
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002299 //
Richard Smith7a614d82011-06-11 17:19:42 +00002300 // FIXME: Only function bodies and brace-or-equal-initializers are currently
2301 // handled. Fix the others!
Douglas Gregor07976d22010-06-21 22:31:09 +00002302 if (TagDecl && NonNestedClass) {
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002303 // We are not inside a nested class. This class and its nested classes
Douglas Gregor72b505b2008-12-16 21:30:33 +00002304 // are complete and we can parse the delayed portions of method
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00002305 // declarations and the lexed inline method definitions, along with any
2306 // delayed attributes.
Douglas Gregore0cc0472010-06-16 23:45:56 +00002307 SourceLocation SavedPrevTokLocation = PrevTokLocation;
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +00002308 ParseLexedAttributes(getCurrentClass());
Douglas Gregor6569d682009-05-27 23:11:45 +00002309 ParseLexedMethodDeclarations(getCurrentClass());
Richard Smith7a614d82011-06-11 17:19:42 +00002310 ParseLexedMemberInitializers(getCurrentClass());
Douglas Gregor6569d682009-05-27 23:11:45 +00002311 ParseLexedMethodDefs(getCurrentClass());
Douglas Gregore0cc0472010-06-16 23:45:56 +00002312 PrevTokLocation = SavedPrevTokLocation;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002313 }
2314
John McCall42a4f662010-05-28 08:11:17 +00002315 if (TagDecl)
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002316 Actions.ActOnTagFinishDefinition(getCurScope(), TagDecl,
2317 T.getCloseLocation());
John McCalldb7bb4a2010-03-17 00:38:33 +00002318
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002319 // Leave the class scope.
Douglas Gregor6569d682009-05-27 23:11:45 +00002320 ParsingDef.Pop();
Douglas Gregor8935b8b2008-12-10 06:34:36 +00002321 ClassScope.Exit();
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00002322}
Douglas Gregor7ad83902008-11-05 04:29:56 +00002323
2324/// ParseConstructorInitializer - Parse a C++ constructor initializer,
2325/// which explicitly initializes the members or base classes of a
2326/// class (C++ [class.base.init]). For example, the three initializers
2327/// after the ':' in the Derived constructor below:
2328///
2329/// @code
2330/// class Base { };
2331/// class Derived : Base {
2332/// int x;
2333/// float f;
2334/// public:
2335/// Derived(float f) : Base(), x(17), f(f) { }
2336/// };
2337/// @endcode
2338///
Mike Stump1eb44332009-09-09 15:08:12 +00002339/// [C++] ctor-initializer:
2340/// ':' mem-initializer-list
Douglas Gregor7ad83902008-11-05 04:29:56 +00002341///
Mike Stump1eb44332009-09-09 15:08:12 +00002342/// [C++] mem-initializer-list:
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002343/// mem-initializer ...[opt]
2344/// mem-initializer ...[opt] , mem-initializer-list
John McCalld226f652010-08-21 09:40:31 +00002345void Parser::ParseConstructorInitializer(Decl *ConstructorDecl) {
Douglas Gregor7ad83902008-11-05 04:29:56 +00002346 assert(Tok.is(tok::colon) && "Constructor initializer always starts with ':'");
2347
John Wiegley28bbe4b2011-04-28 01:08:34 +00002348 // Poison the SEH identifiers so they are flagged as illegal in constructor initializers
2349 PoisonSEHIdentifiersRAIIObject PoisonSEHIdentifiers(*this, true);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002350 SourceLocation ColonLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00002351
Chris Lattner5f9e2722011-07-23 10:55:15 +00002352 SmallVector<CXXCtorInitializer*, 4> MemInitializers;
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002353 bool AnyErrors = false;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002354
Douglas Gregor7ad83902008-11-05 04:29:56 +00002355 do {
Douglas Gregor0133f522010-08-28 00:00:50 +00002356 if (Tok.is(tok::code_completion)) {
2357 Actions.CodeCompleteConstructorInitializer(ConstructorDecl,
2358 MemInitializers.data(),
2359 MemInitializers.size());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002360 return cutOffParsing();
Douglas Gregor0133f522010-08-28 00:00:50 +00002361 } else {
2362 MemInitResult MemInit = ParseMemInitializer(ConstructorDecl);
2363 if (!MemInit.isInvalid())
2364 MemInitializers.push_back(MemInit.get());
2365 else
2366 AnyErrors = true;
2367 }
2368
Douglas Gregor7ad83902008-11-05 04:29:56 +00002369 if (Tok.is(tok::comma))
2370 ConsumeToken();
2371 else if (Tok.is(tok::l_brace))
2372 break;
Douglas Gregorb1f6fa42010-09-07 14:35:10 +00002373 // If the next token looks like a base or member initializer, assume that
2374 // we're just missing a comma.
Douglas Gregor751f6922010-09-07 14:51:08 +00002375 else if (Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) {
2376 SourceLocation Loc = PP.getLocForEndOfToken(PrevTokLocation);
2377 Diag(Loc, diag::err_ctor_init_missing_comma)
2378 << FixItHint::CreateInsertion(Loc, ", ");
2379 } else {
Douglas Gregor7ad83902008-11-05 04:29:56 +00002380 // Skip over garbage, until we get to '{'. Don't eat the '{'.
Sebastian Redld3a413d2009-04-26 20:35:05 +00002381 Diag(Tok.getLocation(), diag::err_expected_lbrace_or_comma);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002382 SkipUntil(tok::l_brace, true, true);
2383 break;
2384 }
2385 } while (true);
2386
Mike Stump1eb44332009-09-09 15:08:12 +00002387 Actions.ActOnMemInitializers(ConstructorDecl, ColonLoc,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002388 MemInitializers.data(), MemInitializers.size(),
2389 AnyErrors);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002390}
2391
2392/// ParseMemInitializer - Parse a C++ member initializer, which is
2393/// part of a constructor initializer that explicitly initializes one
2394/// member or base class (C++ [class.base.init]). See
2395/// ParseConstructorInitializer for an example.
2396///
2397/// [C++] mem-initializer:
2398/// mem-initializer-id '(' expression-list[opt] ')'
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002399/// [C++0x] mem-initializer-id braced-init-list
Mike Stump1eb44332009-09-09 15:08:12 +00002400///
Douglas Gregor7ad83902008-11-05 04:29:56 +00002401/// [C++] mem-initializer-id:
2402/// '::'[opt] nested-name-specifier[opt] class-name
2403/// identifier
John McCalld226f652010-08-21 09:40:31 +00002404Parser::MemInitResult Parser::ParseMemInitializer(Decl *ConstructorDecl) {
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00002405 // parse '::'[opt] nested-name-specifier[opt]
2406 CXXScopeSpec SS;
Douglas Gregorefaa93a2011-11-07 17:33:42 +00002407 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), /*EnteringContext=*/false);
John McCallb3d87482010-08-24 05:47:05 +00002408 ParsedType TemplateTypeTy;
Fariborz Jahanian96174332009-07-01 19:21:19 +00002409 if (Tok.is(tok::annot_template_id)) {
Argyrios Kyrtzidis25a76762011-06-22 06:09:49 +00002410 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
Douglas Gregord9b600c2010-01-12 17:52:59 +00002411 if (TemplateId->Kind == TNK_Type_template ||
2412 TemplateId->Kind == TNK_Dependent_template_name) {
Douglas Gregor059101f2011-03-02 00:47:37 +00002413 AnnotateTemplateIdTokenAsType();
Fariborz Jahanian96174332009-07-01 19:21:19 +00002414 assert(Tok.is(tok::annot_typename) && "template-id -> type failed");
John McCallb3d87482010-08-24 05:47:05 +00002415 TemplateTypeTy = getTypeAnnotation(Tok);
Fariborz Jahanian96174332009-07-01 19:21:19 +00002416 }
Fariborz Jahanian96174332009-07-01 19:21:19 +00002417 }
David Blaikief2116622012-01-24 06:03:59 +00002418 // Uses of decltype will already have been converted to annot_decltype by
2419 // ParseOptionalCXXScopeSpecifier at this point.
2420 if (!TemplateTypeTy && Tok.isNot(tok::identifier)
2421 && Tok.isNot(tok::annot_decltype)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00002422 Diag(Tok, diag::err_expected_member_or_base_name);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002423 return true;
2424 }
Mike Stump1eb44332009-09-09 15:08:12 +00002425
David Blaikief2116622012-01-24 06:03:59 +00002426 IdentifierInfo *II = 0;
2427 DeclSpec DS(AttrFactory);
2428 SourceLocation IdLoc = Tok.getLocation();
2429 if (Tok.is(tok::annot_decltype)) {
2430 // Get the decltype expression, if there is one.
2431 ParseDecltypeSpecifier(DS);
2432 } else {
2433 if (Tok.is(tok::identifier))
2434 // Get the identifier. This may be a member name or a class name,
2435 // but we'll let the semantic analysis determine which it is.
2436 II = Tok.getIdentifierInfo();
2437 ConsumeToken();
2438 }
2439
Douglas Gregor7ad83902008-11-05 04:29:56 +00002440
2441 // Parse the '('.
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002442 if (getLang().CPlusPlus0x && Tok.is(tok::l_brace)) {
Richard Smith7fe62082011-10-15 05:09:34 +00002443 Diag(Tok, diag::warn_cxx98_compat_generalized_initializer_lists);
2444
Sebastian Redl6df65482011-09-24 17:48:25 +00002445 ExprResult InitList = ParseBraceInitializer();
2446 if (InitList.isInvalid())
2447 return true;
2448
2449 SourceLocation EllipsisLoc;
2450 if (Tok.is(tok::ellipsis))
2451 EllipsisLoc = ConsumeToken();
2452
2453 return Actions.ActOnMemInitializer(ConstructorDecl, getCurScope(), SS, II,
David Blaikief2116622012-01-24 06:03:59 +00002454 TemplateTypeTy, DS, IdLoc,
2455 InitList.take(), EllipsisLoc);
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002456 } else if(Tok.is(tok::l_paren)) {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002457 BalancedDelimiterTracker T(*this, tok::l_paren);
2458 T.consumeOpen();
Douglas Gregor7ad83902008-11-05 04:29:56 +00002459
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002460 // Parse the optional expression-list.
2461 ExprVector ArgExprs(Actions);
2462 CommaLocsTy CommaLocs;
2463 if (Tok.isNot(tok::r_paren) && ParseExpressionList(ArgExprs, CommaLocs)) {
2464 SkipUntil(tok::r_paren);
2465 return true;
2466 }
2467
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002468 T.consumeClose();
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002469
2470 SourceLocation EllipsisLoc;
2471 if (Tok.is(tok::ellipsis))
2472 EllipsisLoc = ConsumeToken();
2473
2474 return Actions.ActOnMemInitializer(ConstructorDecl, getCurScope(), SS, II,
David Blaikief2116622012-01-24 06:03:59 +00002475 TemplateTypeTy, DS, IdLoc,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002476 T.getOpenLocation(), ArgExprs.take(),
2477 ArgExprs.size(), T.getCloseLocation(),
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002478 EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002479 }
2480
Sebastian Redldbef1bb2011-06-05 12:23:16 +00002481 Diag(Tok, getLang().CPlusPlus0x ? diag::err_expected_lparen_or_lbrace
2482 : diag::err_expected_lparen);
2483 return true;
Douglas Gregor7ad83902008-11-05 04:29:56 +00002484}
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002485
Sebastian Redl7acafd02011-03-05 14:45:16 +00002486/// \brief Parse a C++ exception-specification if present (C++0x [except.spec]).
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002487///
Douglas Gregora4745612008-12-01 18:00:20 +00002488/// exception-specification:
Sebastian Redl7acafd02011-03-05 14:45:16 +00002489/// dynamic-exception-specification
2490/// noexcept-specification
2491///
2492/// noexcept-specification:
2493/// 'noexcept'
2494/// 'noexcept' '(' constant-expression ')'
2495ExceptionSpecificationType
2496Parser::MaybeParseExceptionSpecification(SourceRange &SpecificationRange,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002497 SmallVectorImpl<ParsedType> &DynamicExceptions,
2498 SmallVectorImpl<SourceRange> &DynamicExceptionRanges,
Sebastian Redl7acafd02011-03-05 14:45:16 +00002499 ExprResult &NoexceptExpr) {
2500 ExceptionSpecificationType Result = EST_None;
2501
2502 // See if there's a dynamic specification.
2503 if (Tok.is(tok::kw_throw)) {
2504 Result = ParseDynamicExceptionSpecification(SpecificationRange,
2505 DynamicExceptions,
2506 DynamicExceptionRanges);
2507 assert(DynamicExceptions.size() == DynamicExceptionRanges.size() &&
2508 "Produced different number of exception types and ranges.");
2509 }
2510
2511 // If there's no noexcept specification, we're done.
2512 if (Tok.isNot(tok::kw_noexcept))
2513 return Result;
2514
Richard Smith841804b2011-10-17 23:06:20 +00002515 Diag(Tok, diag::warn_cxx98_compat_noexcept_decl);
2516
Sebastian Redl7acafd02011-03-05 14:45:16 +00002517 // If we already had a dynamic specification, parse the noexcept for,
2518 // recovery, but emit a diagnostic and don't store the results.
2519 SourceRange NoexceptRange;
2520 ExceptionSpecificationType NoexceptType = EST_None;
2521
2522 SourceLocation KeywordLoc = ConsumeToken();
2523 if (Tok.is(tok::l_paren)) {
2524 // There is an argument.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002525 BalancedDelimiterTracker T(*this, tok::l_paren);
2526 T.consumeOpen();
Sebastian Redl7acafd02011-03-05 14:45:16 +00002527 NoexceptType = EST_ComputedNoexcept;
2528 NoexceptExpr = ParseConstantExpression();
Sebastian Redl60618fa2011-03-12 11:50:43 +00002529 // The argument must be contextually convertible to bool. We use
2530 // ActOnBooleanCondition for this purpose.
2531 if (!NoexceptExpr.isInvalid())
2532 NoexceptExpr = Actions.ActOnBooleanCondition(getCurScope(), KeywordLoc,
2533 NoexceptExpr.get());
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002534 T.consumeClose();
2535 NoexceptRange = SourceRange(KeywordLoc, T.getCloseLocation());
Sebastian Redl7acafd02011-03-05 14:45:16 +00002536 } else {
2537 // There is no argument.
2538 NoexceptType = EST_BasicNoexcept;
2539 NoexceptRange = SourceRange(KeywordLoc, KeywordLoc);
2540 }
2541
2542 if (Result == EST_None) {
2543 SpecificationRange = NoexceptRange;
2544 Result = NoexceptType;
2545
2546 // If there's a dynamic specification after a noexcept specification,
2547 // parse that and ignore the results.
2548 if (Tok.is(tok::kw_throw)) {
2549 Diag(Tok.getLocation(), diag::err_dynamic_and_noexcept_specification);
2550 ParseDynamicExceptionSpecification(NoexceptRange, DynamicExceptions,
2551 DynamicExceptionRanges);
2552 }
2553 } else {
2554 Diag(Tok.getLocation(), diag::err_dynamic_and_noexcept_specification);
2555 }
2556
2557 return Result;
2558}
2559
2560/// ParseDynamicExceptionSpecification - Parse a C++
2561/// dynamic-exception-specification (C++ [except.spec]).
2562///
2563/// dynamic-exception-specification:
Douglas Gregora4745612008-12-01 18:00:20 +00002564/// 'throw' '(' type-id-list [opt] ')'
2565/// [MS] 'throw' '(' '...' ')'
Mike Stump1eb44332009-09-09 15:08:12 +00002566///
Douglas Gregora4745612008-12-01 18:00:20 +00002567/// type-id-list:
Douglas Gregora04426c2010-12-20 23:57:46 +00002568/// type-id ... [opt]
2569/// type-id-list ',' type-id ... [opt]
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002570///
Sebastian Redl7acafd02011-03-05 14:45:16 +00002571ExceptionSpecificationType Parser::ParseDynamicExceptionSpecification(
2572 SourceRange &SpecificationRange,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002573 SmallVectorImpl<ParsedType> &Exceptions,
2574 SmallVectorImpl<SourceRange> &Ranges) {
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002575 assert(Tok.is(tok::kw_throw) && "expected throw");
Mike Stump1eb44332009-09-09 15:08:12 +00002576
Sebastian Redl7acafd02011-03-05 14:45:16 +00002577 SpecificationRange.setBegin(ConsumeToken());
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002578 BalancedDelimiterTracker T(*this, tok::l_paren);
2579 if (T.consumeOpen()) {
Sebastian Redl7acafd02011-03-05 14:45:16 +00002580 Diag(Tok, diag::err_expected_lparen_after) << "throw";
2581 SpecificationRange.setEnd(SpecificationRange.getBegin());
Sebastian Redl60618fa2011-03-12 11:50:43 +00002582 return EST_DynamicNone;
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002583 }
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002584
Douglas Gregora4745612008-12-01 18:00:20 +00002585 // Parse throw(...), a Microsoft extension that means "this function
2586 // can throw anything".
2587 if (Tok.is(tok::ellipsis)) {
2588 SourceLocation EllipsisLoc = ConsumeToken();
Francois Pichet62ec1f22011-09-17 17:15:52 +00002589 if (!getLang().MicrosoftExt)
Douglas Gregora4745612008-12-01 18:00:20 +00002590 Diag(EllipsisLoc, diag::ext_ellipsis_exception_spec);
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002591 T.consumeClose();
2592 SpecificationRange.setEnd(T.getCloseLocation());
Sebastian Redl60618fa2011-03-12 11:50:43 +00002593 return EST_MSAny;
Douglas Gregora4745612008-12-01 18:00:20 +00002594 }
2595
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002596 // Parse the sequence of type-ids.
Sebastian Redlef65f062009-05-29 18:02:33 +00002597 SourceRange Range;
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002598 while (Tok.isNot(tok::r_paren)) {
Sebastian Redlef65f062009-05-29 18:02:33 +00002599 TypeResult Res(ParseTypeName(&Range));
Sebastian Redl7acafd02011-03-05 14:45:16 +00002600
Douglas Gregora04426c2010-12-20 23:57:46 +00002601 if (Tok.is(tok::ellipsis)) {
2602 // C++0x [temp.variadic]p5:
2603 // - In a dynamic-exception-specification (15.4); the pattern is a
2604 // type-id.
2605 SourceLocation Ellipsis = ConsumeToken();
Sebastian Redl7acafd02011-03-05 14:45:16 +00002606 Range.setEnd(Ellipsis);
Douglas Gregora04426c2010-12-20 23:57:46 +00002607 if (!Res.isInvalid())
2608 Res = Actions.ActOnPackExpansion(Res.get(), Ellipsis);
2609 }
Sebastian Redl7acafd02011-03-05 14:45:16 +00002610
Sebastian Redlef65f062009-05-29 18:02:33 +00002611 if (!Res.isInvalid()) {
Sebastian Redl7dc81342009-04-29 17:30:04 +00002612 Exceptions.push_back(Res.get());
Sebastian Redlef65f062009-05-29 18:02:33 +00002613 Ranges.push_back(Range);
2614 }
Douglas Gregora04426c2010-12-20 23:57:46 +00002615
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002616 if (Tok.is(tok::comma))
2617 ConsumeToken();
Sebastian Redl7dc81342009-04-29 17:30:04 +00002618 else
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002619 break;
2620 }
2621
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002622 T.consumeClose();
2623 SpecificationRange.setEnd(T.getCloseLocation());
Sebastian Redl60618fa2011-03-12 11:50:43 +00002624 return Exceptions.empty() ? EST_DynamicNone : EST_Dynamic;
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002625}
Douglas Gregor6569d682009-05-27 23:11:45 +00002626
Douglas Gregordab60ad2010-10-01 18:44:50 +00002627/// ParseTrailingReturnType - Parse a trailing return type on a new-style
2628/// function declaration.
Douglas Gregorae7902c2011-08-04 15:30:47 +00002629TypeResult Parser::ParseTrailingReturnType(SourceRange &Range) {
Douglas Gregordab60ad2010-10-01 18:44:50 +00002630 assert(Tok.is(tok::arrow) && "expected arrow");
2631
2632 ConsumeToken();
2633
2634 // FIXME: Need to suppress declarations when parsing this typename.
2635 // Otherwise in this function definition:
2636 //
2637 // auto f() -> struct X {}
2638 //
2639 // struct X is parsed as class definition because of the trailing
2640 // brace.
Douglas Gregordab60ad2010-10-01 18:44:50 +00002641 return ParseTypeName(&Range);
2642}
2643
Douglas Gregor6569d682009-05-27 23:11:45 +00002644/// \brief We have just started parsing the definition of a new class,
2645/// so push that class onto our stack of classes that is currently
2646/// being parsed.
John McCalleee1d542011-02-14 07:13:47 +00002647Sema::ParsingClassState
2648Parser::PushParsingClass(Decl *ClassDecl, bool NonNestedClass) {
Douglas Gregor26997fd2010-01-16 20:52:59 +00002649 assert((NonNestedClass || !ClassStack.empty()) &&
Douglas Gregor6569d682009-05-27 23:11:45 +00002650 "Nested class without outer class");
Douglas Gregor26997fd2010-01-16 20:52:59 +00002651 ClassStack.push(new ParsingClass(ClassDecl, NonNestedClass));
John McCalleee1d542011-02-14 07:13:47 +00002652 return Actions.PushParsingClass();
Douglas Gregor6569d682009-05-27 23:11:45 +00002653}
2654
2655/// \brief Deallocate the given parsed class and all of its nested
2656/// classes.
2657void Parser::DeallocateParsedClasses(Parser::ParsingClass *Class) {
Douglas Gregord54eb442010-10-12 16:25:54 +00002658 for (unsigned I = 0, N = Class->LateParsedDeclarations.size(); I != N; ++I)
2659 delete Class->LateParsedDeclarations[I];
Douglas Gregor6569d682009-05-27 23:11:45 +00002660 delete Class;
2661}
2662
2663/// \brief Pop the top class of the stack of classes that are
2664/// currently being parsed.
2665///
2666/// This routine should be called when we have finished parsing the
2667/// definition of a class, but have not yet popped the Scope
2668/// associated with the class's definition.
2669///
2670/// \returns true if the class we've popped is a top-level class,
2671/// false otherwise.
John McCalleee1d542011-02-14 07:13:47 +00002672void Parser::PopParsingClass(Sema::ParsingClassState state) {
Douglas Gregor6569d682009-05-27 23:11:45 +00002673 assert(!ClassStack.empty() && "Mismatched push/pop for class parsing");
Mike Stump1eb44332009-09-09 15:08:12 +00002674
John McCalleee1d542011-02-14 07:13:47 +00002675 Actions.PopParsingClass(state);
2676
Douglas Gregor6569d682009-05-27 23:11:45 +00002677 ParsingClass *Victim = ClassStack.top();
2678 ClassStack.pop();
2679 if (Victim->TopLevelClass) {
2680 // Deallocate all of the nested classes of this class,
2681 // recursively: we don't need to keep any of this information.
2682 DeallocateParsedClasses(Victim);
2683 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002684 }
Douglas Gregor6569d682009-05-27 23:11:45 +00002685 assert(!ClassStack.empty() && "Missing top-level class?");
2686
Douglas Gregord54eb442010-10-12 16:25:54 +00002687 if (Victim->LateParsedDeclarations.empty()) {
Douglas Gregor6569d682009-05-27 23:11:45 +00002688 // The victim is a nested class, but we will not need to perform
2689 // any processing after the definition of this class since it has
2690 // no members whose handling was delayed. Therefore, we can just
2691 // remove this nested class.
Douglas Gregord54eb442010-10-12 16:25:54 +00002692 DeallocateParsedClasses(Victim);
Douglas Gregor6569d682009-05-27 23:11:45 +00002693 return;
2694 }
2695
2696 // This nested class has some members that will need to be processed
2697 // after the top-level class is completely defined. Therefore, add
2698 // it to the list of nested classes within its parent.
Douglas Gregor23c94db2010-07-02 17:43:08 +00002699 assert(getCurScope()->isClassScope() && "Nested class outside of class scope?");
Douglas Gregord54eb442010-10-12 16:25:54 +00002700 ClassStack.top()->LateParsedDeclarations.push_back(new LateParsedClass(this, Victim));
Douglas Gregor23c94db2010-07-02 17:43:08 +00002701 Victim->TemplateScope = getCurScope()->getParent()->isTemplateParamScope();
Douglas Gregor6569d682009-05-27 23:11:45 +00002702}
Sean Huntbbd37c62009-11-21 08:43:09 +00002703
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002704/// ParseCXX0XAttributeSpecifier - Parse a C++0x attribute-specifier. Currently
2705/// only parses standard attributes.
Sean Huntbbd37c62009-11-21 08:43:09 +00002706///
2707/// [C++0x] attribute-specifier:
2708/// '[' '[' attribute-list ']' ']'
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002709/// alignment-specifier
Sean Huntbbd37c62009-11-21 08:43:09 +00002710///
2711/// [C++0x] attribute-list:
2712/// attribute[opt]
2713/// attribute-list ',' attribute[opt]
2714///
2715/// [C++0x] attribute:
2716/// attribute-token attribute-argument-clause[opt]
2717///
2718/// [C++0x] attribute-token:
2719/// identifier
2720/// attribute-scoped-token
2721///
2722/// [C++0x] attribute-scoped-token:
2723/// attribute-namespace '::' identifier
2724///
2725/// [C++0x] attribute-namespace:
2726/// identifier
2727///
2728/// [C++0x] attribute-argument-clause:
2729/// '(' balanced-token-seq ')'
2730///
2731/// [C++0x] balanced-token-seq:
2732/// balanced-token
2733/// balanced-token-seq balanced-token
2734///
2735/// [C++0x] balanced-token:
2736/// '(' balanced-token-seq ')'
2737/// '[' balanced-token-seq ']'
2738/// '{' balanced-token-seq '}'
2739/// any token but '(', ')', '[', ']', '{', or '}'
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002740void Parser::ParseCXX0XAttributeSpecifier(ParsedAttributes &attrs,
2741 SourceLocation *endLoc) {
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002742 if (Tok.is(tok::kw_alignas)) {
Richard Smith41be6732011-10-14 20:48:27 +00002743 Diag(Tok.getLocation(), diag::warn_cxx98_compat_alignas);
Peter Collingbourne82d0b0a2011-09-29 18:04:28 +00002744 ParseAlignmentSpecifier(attrs, endLoc);
2745 return;
2746 }
2747
Sean Huntbbd37c62009-11-21 08:43:09 +00002748 assert(Tok.is(tok::l_square) && NextToken().is(tok::l_square)
2749 && "Not a C++0x attribute list");
2750
Richard Smith41be6732011-10-14 20:48:27 +00002751 Diag(Tok.getLocation(), diag::warn_cxx98_compat_attribute);
2752
Sean Huntbbd37c62009-11-21 08:43:09 +00002753 ConsumeBracket();
2754 ConsumeBracket();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002755
Sean Huntbbd37c62009-11-21 08:43:09 +00002756 if (Tok.is(tok::comma)) {
2757 Diag(Tok.getLocation(), diag::err_expected_ident);
2758 ConsumeToken();
2759 }
2760
2761 while (Tok.is(tok::identifier) || Tok.is(tok::comma)) {
2762 // attribute not present
2763 if (Tok.is(tok::comma)) {
2764 ConsumeToken();
2765 continue;
2766 }
2767
2768 IdentifierInfo *ScopeName = 0, *AttrName = Tok.getIdentifierInfo();
2769 SourceLocation ScopeLoc, AttrLoc = ConsumeToken();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002770
Sean Huntbbd37c62009-11-21 08:43:09 +00002771 // scoped attribute
2772 if (Tok.is(tok::coloncolon)) {
2773 ConsumeToken();
2774
2775 if (!Tok.is(tok::identifier)) {
2776 Diag(Tok.getLocation(), diag::err_expected_ident);
2777 SkipUntil(tok::r_square, tok::comma, true, true);
2778 continue;
2779 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002780
Sean Huntbbd37c62009-11-21 08:43:09 +00002781 ScopeName = AttrName;
2782 ScopeLoc = AttrLoc;
2783
2784 AttrName = Tok.getIdentifierInfo();
2785 AttrLoc = ConsumeToken();
2786 }
2787
2788 bool AttrParsed = false;
2789 // No scoped names are supported; ideally we could put all non-standard
2790 // attributes into namespaces.
2791 if (!ScopeName) {
2792 switch(AttributeList::getKind(AttrName))
2793 {
2794 // No arguments
Sean Hunt7725e672009-11-25 04:20:27 +00002795 case AttributeList::AT_carries_dependency:
Anders Carlsson15e14a22011-01-23 21:33:18 +00002796 case AttributeList::AT_noreturn: {
Sean Huntbbd37c62009-11-21 08:43:09 +00002797 if (Tok.is(tok::l_paren)) {
2798 Diag(Tok.getLocation(), diag::err_cxx0x_attribute_forbids_arguments)
2799 << AttrName->getName();
2800 break;
2801 }
2802
John McCall0b7e6782011-03-24 11:26:52 +00002803 attrs.addNew(AttrName, AttrLoc, 0, AttrLoc, 0,
2804 SourceLocation(), 0, 0, false, true);
Sean Huntbbd37c62009-11-21 08:43:09 +00002805 AttrParsed = true;
2806 break;
2807 }
2808
Sean Huntbbd37c62009-11-21 08:43:09 +00002809 // Silence warnings
2810 default: break;
2811 }
2812 }
2813
2814 // Skip the entire parameter clause, if any
2815 if (!AttrParsed && Tok.is(tok::l_paren)) {
2816 ConsumeParen();
2817 // SkipUntil maintains the balancedness of tokens.
2818 SkipUntil(tok::r_paren, false);
2819 }
2820 }
2821
2822 if (ExpectAndConsume(tok::r_square, diag::err_expected_rsquare))
2823 SkipUntil(tok::r_square, false);
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002824 if (endLoc)
2825 *endLoc = Tok.getLocation();
Sean Huntbbd37c62009-11-21 08:43:09 +00002826 if (ExpectAndConsume(tok::r_square, diag::err_expected_rsquare))
2827 SkipUntil(tok::r_square, false);
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002828}
Sean Huntbbd37c62009-11-21 08:43:09 +00002829
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002830/// ParseCXX0XAttributes - Parse a C++0x attribute-specifier-seq.
2831///
2832/// attribute-specifier-seq:
2833/// attribute-specifier-seq[opt] attribute-specifier
2834void Parser::ParseCXX0XAttributes(ParsedAttributesWithRange &attrs,
2835 SourceLocation *endLoc) {
2836 SourceLocation StartLoc = Tok.getLocation(), Loc;
2837 if (!endLoc)
2838 endLoc = &Loc;
2839
Douglas Gregor8828ee72011-10-07 20:35:25 +00002840 do {
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002841 ParseCXX0XAttributeSpecifier(attrs, endLoc);
Douglas Gregor8828ee72011-10-07 20:35:25 +00002842 } while (isCXX0XAttributeSpecifier());
Peter Collingbourne3497fdf2011-09-29 18:04:05 +00002843
2844 attrs.Range = SourceRange(StartLoc, *endLoc);
Sean Huntbbd37c62009-11-21 08:43:09 +00002845}
2846
Francois Pichet334d47e2010-10-11 12:59:39 +00002847/// ParseMicrosoftAttributes - Parse a Microsoft attribute [Attr]
2848///
2849/// [MS] ms-attribute:
2850/// '[' token-seq ']'
2851///
2852/// [MS] ms-attribute-seq:
2853/// ms-attribute[opt]
2854/// ms-attribute ms-attribute-seq
John McCall7f040a92010-12-24 02:08:15 +00002855void Parser::ParseMicrosoftAttributes(ParsedAttributes &attrs,
2856 SourceLocation *endLoc) {
Francois Pichet334d47e2010-10-11 12:59:39 +00002857 assert(Tok.is(tok::l_square) && "Not a Microsoft attribute list");
2858
2859 while (Tok.is(tok::l_square)) {
2860 ConsumeBracket();
2861 SkipUntil(tok::r_square, true, true);
John McCall7f040a92010-12-24 02:08:15 +00002862 if (endLoc) *endLoc = Tok.getLocation();
Francois Pichet334d47e2010-10-11 12:59:39 +00002863 ExpectAndConsume(tok::r_square, diag::err_expected_rsquare);
2864 }
2865}
Francois Pichet563a6452011-05-25 10:19:49 +00002866
2867void Parser::ParseMicrosoftIfExistsClassDeclaration(DeclSpec::TST TagType,
2868 AccessSpecifier& CurAS) {
Douglas Gregor3896fc52011-10-24 22:31:10 +00002869 IfExistsCondition Result;
Francois Pichet563a6452011-05-25 10:19:49 +00002870 if (ParseMicrosoftIfExistsCondition(Result))
2871 return;
2872
Douglas Gregor3896fc52011-10-24 22:31:10 +00002873 BalancedDelimiterTracker Braces(*this, tok::l_brace);
2874 if (Braces.consumeOpen()) {
Francois Pichet563a6452011-05-25 10:19:49 +00002875 Diag(Tok, diag::err_expected_lbrace);
2876 return;
2877 }
Francois Pichet563a6452011-05-25 10:19:49 +00002878
Douglas Gregor3896fc52011-10-24 22:31:10 +00002879 switch (Result.Behavior) {
2880 case IEB_Parse:
2881 // Parse the declarations below.
2882 break;
2883
2884 case IEB_Dependent:
2885 Diag(Result.KeywordLoc, diag::warn_microsoft_dependent_exists)
2886 << Result.IsIfExists;
2887 // Fall through to skip.
2888
2889 case IEB_Skip:
2890 Braces.skipToEnd();
Francois Pichet563a6452011-05-25 10:19:49 +00002891 return;
2892 }
2893
Douglas Gregor3896fc52011-10-24 22:31:10 +00002894 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
Francois Pichet563a6452011-05-25 10:19:49 +00002895 // __if_exists, __if_not_exists can nest.
2896 if ((Tok.is(tok::kw___if_exists) || Tok.is(tok::kw___if_not_exists))) {
2897 ParseMicrosoftIfExistsClassDeclaration((DeclSpec::TST)TagType, CurAS);
2898 continue;
2899 }
2900
2901 // Check for extraneous top-level semicolon.
2902 if (Tok.is(tok::semi)) {
2903 Diag(Tok, diag::ext_extra_struct_semi)
2904 << DeclSpec::getSpecifierName((DeclSpec::TST)TagType)
2905 << FixItHint::CreateRemoval(Tok.getLocation());
2906 ConsumeToken();
2907 continue;
2908 }
2909
2910 AccessSpecifier AS = getAccessSpecifierIfPresent();
2911 if (AS != AS_none) {
2912 // Current token is a C++ access specifier.
2913 CurAS = AS;
2914 SourceLocation ASLoc = Tok.getLocation();
2915 ConsumeToken();
2916 if (Tok.is(tok::colon))
2917 Actions.ActOnAccessSpecifier(AS, ASLoc, Tok.getLocation());
2918 else
2919 Diag(Tok, diag::err_expected_colon);
2920 ConsumeToken();
2921 continue;
2922 }
2923
2924 // Parse all the comma separated declarators.
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00002925 ParseCXXClassMemberDeclaration(CurAS, 0);
Francois Pichet563a6452011-05-25 10:19:49 +00002926 }
Douglas Gregor3896fc52011-10-24 22:31:10 +00002927
2928 Braces.consumeClose();
Francois Pichet563a6452011-05-25 10:19:49 +00002929}