blob: 3ef3f93fdfd1a8d4f1fd608d95fe2308a2438d0b [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
Douglas Gregor1b7f8982008-04-14 00:13:42 +000014#include "clang/Parse/Parser.h"
Chris Lattner500d3292009-01-29 05:15:15 +000015#include "clang/Parse/ParseDiagnostic.h"
Douglas Gregore37ac4f2008-04-13 21:30:24 +000016#include "clang/Parse/DeclSpec.h"
Chris Lattner8f08cb72007-08-25 06:57:03 +000017#include "clang/Parse/Scope.h"
Sebastian Redla55e52c2008-11-25 22:21:31 +000018#include "AstGuard.h"
Chris Lattnerbc8d5642008-12-18 01:12:00 +000019#include "ExtensionRAIIObject.h"
Chris Lattner8f08cb72007-08-25 06:57:03 +000020using namespace clang;
21
22/// ParseNamespace - We know that the current token is a namespace keyword. This
23/// may either be a top level namespace or a block-level namespace alias.
24///
25/// namespace-definition: [C++ 7.3: basic.namespace]
26/// named-namespace-definition
27/// unnamed-namespace-definition
28///
29/// unnamed-namespace-definition:
30/// 'namespace' attributes[opt] '{' namespace-body '}'
31///
32/// named-namespace-definition:
33/// original-namespace-definition
34/// extension-namespace-definition
35///
36/// original-namespace-definition:
37/// 'namespace' identifier attributes[opt] '{' namespace-body '}'
38///
39/// extension-namespace-definition:
40/// 'namespace' original-namespace-name '{' namespace-body '}'
41///
42/// namespace-alias-definition: [C++ 7.3.2: namespace.alias]
43/// 'namespace' identifier '=' qualified-namespace-specifier ';'
44///
45Parser::DeclTy *Parser::ParseNamespace(unsigned Context) {
Chris Lattner04d66662007-10-09 17:33:22 +000046 assert(Tok.is(tok::kw_namespace) && "Not a namespace!");
Chris Lattner8f08cb72007-08-25 06:57:03 +000047 SourceLocation NamespaceLoc = ConsumeToken(); // eat the 'namespace'.
48
49 SourceLocation IdentLoc;
50 IdentifierInfo *Ident = 0;
51
Chris Lattner04d66662007-10-09 17:33:22 +000052 if (Tok.is(tok::identifier)) {
Chris Lattner8f08cb72007-08-25 06:57:03 +000053 Ident = Tok.getIdentifierInfo();
54 IdentLoc = ConsumeToken(); // eat the identifier.
55 }
56
57 // Read label attributes, if present.
58 DeclTy *AttrList = 0;
Chris Lattner04d66662007-10-09 17:33:22 +000059 if (Tok.is(tok::kw___attribute))
Chris Lattner8f08cb72007-08-25 06:57:03 +000060 // FIXME: save these somewhere.
61 AttrList = ParseAttributes();
62
Chris Lattner04d66662007-10-09 17:33:22 +000063 if (Tok.is(tok::equal)) {
Chris Lattner8f08cb72007-08-25 06:57:03 +000064 // FIXME: Verify no attributes were present.
65 // FIXME: parse this.
Chris Lattner04d66662007-10-09 17:33:22 +000066 } else if (Tok.is(tok::l_brace)) {
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +000067
Chris Lattner8f08cb72007-08-25 06:57:03 +000068 SourceLocation LBrace = ConsumeBrace();
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +000069
70 // Enter a scope for the namespace.
Douglas Gregor8935b8b2008-12-10 06:34:36 +000071 ParseScope NamespaceScope(this, Scope::DeclScope);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +000072
73 DeclTy *NamespcDecl =
74 Actions.ActOnStartNamespaceDef(CurScope, IdentLoc, Ident, LBrace);
75
76 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof))
Chris Lattnerbae35112007-08-25 18:15:16 +000077 ParseExternalDeclaration();
Chris Lattner8f08cb72007-08-25 06:57:03 +000078
Argyrios Kyrtzidis8ba5d792008-05-01 21:44:34 +000079 // Leave the namespace scope.
Douglas Gregor8935b8b2008-12-10 06:34:36 +000080 NamespaceScope.Exit();
Argyrios Kyrtzidis8ba5d792008-05-01 21:44:34 +000081
Chris Lattner8f08cb72007-08-25 06:57:03 +000082 SourceLocation RBrace = MatchRHSPunctuation(tok::r_brace, LBrace);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +000083 Actions.ActOnFinishNamespaceDef(NamespcDecl, RBrace);
84
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +000085 return NamespcDecl;
Chris Lattner8f08cb72007-08-25 06:57:03 +000086
Chris Lattner8f08cb72007-08-25 06:57:03 +000087 } else {
Chris Lattner1ab3b962008-11-18 07:48:38 +000088 Diag(Tok, Ident ? diag::err_expected_lbrace :
89 diag::err_expected_ident_lbrace);
Chris Lattner8f08cb72007-08-25 06:57:03 +000090 }
91
92 return 0;
93}
Chris Lattnerc6fdc342008-01-12 07:05:38 +000094
95/// ParseLinkage - We know that the current token is a string_literal
96/// and just before that, that extern was seen.
97///
98/// linkage-specification: [C++ 7.5p2: dcl.link]
99/// 'extern' string-literal '{' declaration-seq[opt] '}'
100/// 'extern' string-literal declaration
101///
102Parser::DeclTy *Parser::ParseLinkage(unsigned Context) {
Douglas Gregorc19923d2008-11-21 16:10:08 +0000103 assert(Tok.is(tok::string_literal) && "Not a string literal!");
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000104 llvm::SmallVector<char, 8> LangBuffer;
105 // LangBuffer is guaranteed to be big enough.
106 LangBuffer.resize(Tok.getLength());
107 const char *LangBufPtr = &LangBuffer[0];
108 unsigned StrSize = PP.getSpelling(Tok, LangBufPtr);
109
110 SourceLocation Loc = ConsumeStringToken();
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000111
Douglas Gregor074149e2009-01-05 19:45:36 +0000112 ParseScope LinkageScope(this, Scope::DeclScope);
113 DeclTy *LinkageSpec
114 = Actions.ActOnStartLinkageSpecification(CurScope,
115 /*FIXME: */SourceLocation(),
116 Loc, LangBufPtr, StrSize,
117 Tok.is(tok::l_brace)? Tok.getLocation()
118 : SourceLocation());
119
120 if (Tok.isNot(tok::l_brace)) {
121 ParseDeclarationOrFunctionDefinition();
122 return Actions.ActOnFinishLinkageSpecification(CurScope, LinkageSpec,
123 SourceLocation());
Douglas Gregorf44515a2008-12-16 22:23:02 +0000124 }
125
126 SourceLocation LBrace = ConsumeBrace();
Douglas Gregorf44515a2008-12-16 22:23:02 +0000127 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
Douglas Gregor074149e2009-01-05 19:45:36 +0000128 ParseExternalDeclaration();
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000129 }
130
Douglas Gregorf44515a2008-12-16 22:23:02 +0000131 SourceLocation RBrace = MatchRHSPunctuation(tok::r_brace, LBrace);
Douglas Gregor074149e2009-01-05 19:45:36 +0000132 return Actions.ActOnFinishLinkageSpecification(CurScope, LinkageSpec, RBrace);
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000133}
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000134
Douglas Gregorf780abc2008-12-30 03:27:21 +0000135/// ParseUsingDirectiveOrDeclaration - Parse C++ using using-declaration or
136/// using-directive. Assumes that current token is 'using'.
Chris Lattner2f274772009-01-06 06:55:51 +0000137Parser::DeclTy *Parser::ParseUsingDirectiveOrDeclaration(unsigned Context) {
Douglas Gregorf780abc2008-12-30 03:27:21 +0000138 assert(Tok.is(tok::kw_using) && "Not using token");
139
140 // Eat 'using'.
141 SourceLocation UsingLoc = ConsumeToken();
142
Chris Lattner2f274772009-01-06 06:55:51 +0000143 if (Tok.is(tok::kw_namespace))
Douglas Gregorf780abc2008-12-30 03:27:21 +0000144 // Next token after 'using' is 'namespace' so it must be using-directive
145 return ParseUsingDirective(Context, UsingLoc);
Chris Lattner2f274772009-01-06 06:55:51 +0000146
147 // Otherwise, it must be using-declaration.
148 return ParseUsingDeclaration(Context, UsingLoc);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000149}
150
151/// ParseUsingDirective - Parse C++ using-directive, assumes
152/// that current token is 'namespace' and 'using' was already parsed.
153///
154/// using-directive: [C++ 7.3.p4: namespace.udir]
155/// 'using' 'namespace' ::[opt] nested-name-specifier[opt]
156/// namespace-name ;
157/// [GNU] using-directive:
158/// 'using' 'namespace' ::[opt] nested-name-specifier[opt]
159/// namespace-name attributes[opt] ;
160///
161Parser::DeclTy *Parser::ParseUsingDirective(unsigned Context,
162 SourceLocation UsingLoc) {
163 assert(Tok.is(tok::kw_namespace) && "Not 'namespace' token");
164
165 // Eat 'namespace'.
166 SourceLocation NamespcLoc = ConsumeToken();
167
168 CXXScopeSpec SS;
169 // Parse (optional) nested-name-specifier.
Chris Lattner7a0ab5f2009-01-06 06:59:53 +0000170 ParseOptionalCXXScopeSpecifier(SS);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000171
172 AttributeList *AttrList = 0;
173 IdentifierInfo *NamespcName = 0;
174 SourceLocation IdentLoc = SourceLocation();
175
176 // Parse namespace-name.
Chris Lattner823c44e2009-01-06 07:27:21 +0000177 if (SS.isInvalid() || Tok.isNot(tok::identifier)) {
Douglas Gregorf780abc2008-12-30 03:27:21 +0000178 Diag(Tok, diag::err_expected_namespace_name);
179 // If there was invalid namespace name, skip to end of decl, and eat ';'.
180 SkipUntil(tok::semi);
181 // FIXME: Are there cases, when we would like to call ActOnUsingDirective?
182 return 0;
183 }
Chris Lattner823c44e2009-01-06 07:27:21 +0000184
185 // Parse identifier.
186 NamespcName = Tok.getIdentifierInfo();
187 IdentLoc = ConsumeToken();
188
189 // Parse (optional) attributes (most likely GNU strong-using extension).
190 if (Tok.is(tok::kw___attribute))
191 AttrList = ParseAttributes();
192
193 // Eat ';'.
194 ExpectAndConsume(tok::semi, diag::err_expected_semi_after,
195 AttrList ? "attributes list" : "namespace name", tok::semi);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000196
197 return Actions.ActOnUsingDirective(CurScope, UsingLoc, NamespcLoc, SS,
Chris Lattner823c44e2009-01-06 07:27:21 +0000198 IdentLoc, NamespcName, AttrList);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000199}
200
201/// ParseUsingDeclaration - Parse C++ using-declaration. Assumes that
202/// 'using' was already seen.
203///
204/// using-declaration: [C++ 7.3.p3: namespace.udecl]
205/// 'using' 'typename'[opt] ::[opt] nested-name-specifier
206/// unqualified-id [TODO]
207/// 'using' :: unqualified-id [TODO]
208///
209Parser::DeclTy *Parser::ParseUsingDeclaration(unsigned Context,
210 SourceLocation UsingLoc) {
211 assert(false && "Not implemented");
212 // FIXME: Implement parsing.
213 return 0;
214}
215
Douglas Gregor42a552f2008-11-05 20:51:48 +0000216/// ParseClassName - Parse a C++ class-name, which names a class. Note
217/// that we only check that the result names a type; semantic analysis
218/// will need to verify that the type names a class. The result is
219/// either a type or NULL, dependending on whether a type name was
220/// found.
221///
222/// class-name: [C++ 9.1]
223/// identifier
224/// template-id [TODO]
225///
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000226Parser::TypeTy *Parser::ParseClassName(const CXXScopeSpec *SS) {
Douglas Gregor42a552f2008-11-05 20:51:48 +0000227 // Parse the class-name.
228 // FIXME: Alternatively, parse a simple-template-id.
229 if (Tok.isNot(tok::identifier)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000230 Diag(Tok, diag::err_expected_class_name);
Douglas Gregor42a552f2008-11-05 20:51:48 +0000231 return 0;
232 }
233
234 // We have an identifier; check whether it is actually a type.
Douglas Gregorb696ea32009-02-04 17:00:24 +0000235 TypeTy *Type = Actions.getTypeName(*Tok.getIdentifierInfo(),
236 Tok.getLocation(), CurScope, SS);
Douglas Gregor42a552f2008-11-05 20:51:48 +0000237 if (!Type) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000238 Diag(Tok, diag::err_expected_class_name);
Douglas Gregor42a552f2008-11-05 20:51:48 +0000239 return 0;
240 }
241
242 // Consume the identifier.
243 ConsumeToken();
244
245 return Type;
246}
247
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000248/// ParseClassSpecifier - Parse a C++ class-specifier [C++ class] or
249/// elaborated-type-specifier [C++ dcl.type.elab]; we can't tell which
250/// until we reach the start of a definition or see a token that
251/// cannot start a definition.
252///
253/// class-specifier: [C++ class]
254/// class-head '{' member-specification[opt] '}'
255/// class-head '{' member-specification[opt] '}' attributes[opt]
256/// class-head:
257/// class-key identifier[opt] base-clause[opt]
258/// class-key nested-name-specifier identifier base-clause[opt]
259/// class-key nested-name-specifier[opt] simple-template-id
260/// base-clause[opt]
261/// [GNU] class-key attributes[opt] identifier[opt] base-clause[opt]
262/// [GNU] class-key attributes[opt] nested-name-specifier
263/// identifier base-clause[opt]
264/// [GNU] class-key attributes[opt] nested-name-specifier[opt]
265/// simple-template-id base-clause[opt]
266/// class-key:
267/// 'class'
268/// 'struct'
269/// 'union'
270///
271/// elaborated-type-specifier: [C++ dcl.type.elab]
272/// class-key ::[opt] nested-name-specifier[opt] identifier
273/// class-key ::[opt] nested-name-specifier[opt] 'template'[opt]
274/// simple-template-id
275///
276/// Note that the C++ class-specifier and elaborated-type-specifier,
277/// together, subsume the C99 struct-or-union-specifier:
278///
279/// struct-or-union-specifier: [C99 6.7.2.1]
280/// struct-or-union identifier[opt] '{' struct-contents '}'
281/// struct-or-union identifier
282/// [GNU] struct-or-union attributes[opt] identifier[opt] '{' struct-contents
283/// '}' attributes[opt]
284/// [GNU] struct-or-union attributes[opt] identifier
285/// struct-or-union:
286/// 'struct'
287/// 'union'
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000288void Parser::ParseClassSpecifier(DeclSpec &DS,
289 TemplateParameterLists *TemplateParams) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000290 assert((Tok.is(tok::kw_class) ||
291 Tok.is(tok::kw_struct) ||
292 Tok.is(tok::kw_union)) &&
293 "Not a class specifier");
294 DeclSpec::TST TagType =
295 Tok.is(tok::kw_class) ? DeclSpec::TST_class :
296 Tok.is(tok::kw_struct) ? DeclSpec::TST_struct :
297 DeclSpec::TST_union;
298
299 SourceLocation StartLoc = ConsumeToken();
300
301 AttributeList *Attr = 0;
302 // If attributes exist after tag, parse them.
303 if (Tok.is(tok::kw___attribute))
304 Attr = ParseAttributes();
305
Steve Narofff59e17e2008-12-24 20:59:21 +0000306 // If declspecs exist after tag, parse them.
307 if (Tok.is(tok::kw___declspec) && PP.getLangOptions().Microsoft)
308 FuzzyParseMicrosoftDeclSpec();
309
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000310 // Parse the (optional) nested-name-specifier.
311 CXXScopeSpec SS;
Douglas Gregor39a8de12009-02-25 19:37:18 +0000312 if (getLang().CPlusPlus && ParseOptionalCXXScopeSpecifier(SS))
313 if (Tok.isNot(tok::identifier) && Tok.isNot(tok::annot_template_id))
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000314 Diag(Tok, diag::err_expected_ident);
Douglas Gregorcc636682009-02-17 23:15:12 +0000315
316 // Parse the (optional) class name or simple-template-id.
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000317 IdentifierInfo *Name = 0;
318 SourceLocation NameLoc;
Douglas Gregor39a8de12009-02-25 19:37:18 +0000319 TemplateIdAnnotation *TemplateId = 0;
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000320 if (Tok.is(tok::identifier)) {
321 Name = Tok.getIdentifierInfo();
322 NameLoc = ConsumeToken();
Douglas Gregor39a8de12009-02-25 19:37:18 +0000323 } else if (Tok.is(tok::annot_template_id)) {
324 TemplateId = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
325 NameLoc = ConsumeToken();
Douglas Gregorcc636682009-02-17 23:15:12 +0000326
Douglas Gregor39a8de12009-02-25 19:37:18 +0000327 if (TemplateId->Kind != TNK_Class_template) {
328 // The template-name in the simple-template-id refers to
329 // something other than a class template. Give an appropriate
330 // error message and skip to the ';'.
331 SourceRange Range(NameLoc);
332 if (SS.isNotEmpty())
333 Range.setBegin(SS.getBeginLoc());
Douglas Gregorcc636682009-02-17 23:15:12 +0000334
Douglas Gregor39a8de12009-02-25 19:37:18 +0000335 Diag(TemplateId->LAngleLoc, diag::err_template_spec_syntax_non_template)
336 << Name << static_cast<int>(TemplateId->Kind) << Range;
Douglas Gregorcc636682009-02-17 23:15:12 +0000337
Douglas Gregor39a8de12009-02-25 19:37:18 +0000338 DS.SetTypeSpecError();
339 SkipUntil(tok::semi, false, true);
340 TemplateId->Destroy();
341 return;
Douglas Gregorcc636682009-02-17 23:15:12 +0000342 }
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000343 }
344
345 // There are three options here. If we have 'struct foo;', then
346 // this is a forward declaration. If we have 'struct foo {...' or
Douglas Gregor39a8de12009-02-25 19:37:18 +0000347 // 'struct foo :...' then this is a definition. Otherwise we have
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000348 // something like 'struct foo xyz', a reference.
349 Action::TagKind TK;
350 if (Tok.is(tok::l_brace) || (getLang().CPlusPlus && Tok.is(tok::colon)))
351 TK = Action::TK_Definition;
352 else if (Tok.is(tok::semi))
353 TK = Action::TK_Declaration;
354 else
355 TK = Action::TK_Reference;
356
Douglas Gregor39a8de12009-02-25 19:37:18 +0000357 if (!Name && !TemplateId && TK != Action::TK_Definition) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000358 // We have a declaration or reference to an anonymous class.
Chris Lattner1ab3b962008-11-18 07:48:38 +0000359 Diag(StartLoc, diag::err_anon_type_definition)
360 << DeclSpec::getSpecifierName(TagType);
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000361
362 // Skip the rest of this declarator, up until the comma or semicolon.
363 SkipUntil(tok::comma, true);
Douglas Gregor39a8de12009-02-25 19:37:18 +0000364
365 if (TemplateId)
366 TemplateId->Destroy();
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000367 return;
368 }
369
Douglas Gregorddc29e12009-02-06 22:42:48 +0000370 // Create the tag portion of the class or class template.
371 DeclTy *TagOrTempDecl;
Douglas Gregor39a8de12009-02-25 19:37:18 +0000372 if (TemplateId && TK != Action::TK_Reference) {
Douglas Gregorcc636682009-02-17 23:15:12 +0000373 // Explicit specialization or class template partial
374 // specialization. Let semantic analysis decide.
Douglas Gregor39a8de12009-02-25 19:37:18 +0000375 ASTTemplateArgsPtr TemplateArgsPtr(Actions,
376 TemplateId->getTemplateArgs(),
377 TemplateId->getTemplateArgIsType(),
378 TemplateId->NumArgs);
Douglas Gregorcc636682009-02-17 23:15:12 +0000379 TagOrTempDecl
380 = Actions.ActOnClassTemplateSpecialization(CurScope, TagType, TK,
Douglas Gregor39a8de12009-02-25 19:37:18 +0000381 StartLoc, SS,
382 TemplateId->Template,
383 TemplateId->TemplateNameLoc,
384 TemplateId->LAngleLoc,
385 TemplateArgsPtr,
386 TemplateId->getTemplateArgLocations(),
387 TemplateId->RAngleLoc,
388 Attr,
Douglas Gregorcc636682009-02-17 23:15:12 +0000389 Action::MultiTemplateParamsArg(Actions,
390 TemplateParams? &(*TemplateParams)[0] : 0,
391 TemplateParams? TemplateParams->size() : 0));
Douglas Gregor39a8de12009-02-25 19:37:18 +0000392 TemplateId->Destroy();
393 } else if (TemplateParams && TK != Action::TK_Reference)
Douglas Gregorddc29e12009-02-06 22:42:48 +0000394 TagOrTempDecl = Actions.ActOnClassTemplate(CurScope, TagType, TK, StartLoc,
395 SS, Name, NameLoc, Attr,
396 Action::MultiTemplateParamsArg(Actions,
397 &(*TemplateParams)[0],
398 TemplateParams->size()));
399 else
400 TagOrTempDecl = Actions.ActOnTag(CurScope, TagType, TK, StartLoc, SS, Name,
401 NameLoc, Attr);
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000402
403 // Parse the optional base clause (C++ only).
Chris Lattner22bd9052009-02-16 22:07:16 +0000404 if (getLang().CPlusPlus && Tok.is(tok::colon))
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000405 ParseBaseClause(TagOrTempDecl);
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000406
407 // If there is a body, parse it and inform the actions module.
408 if (Tok.is(tok::l_brace))
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000409 if (getLang().CPlusPlus)
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000410 ParseCXXMemberSpecification(StartLoc, TagType, TagOrTempDecl);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000411 else
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000412 ParseStructUnionBody(StartLoc, TagType, TagOrTempDecl);
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000413 else if (TK == Action::TK_Definition) {
414 // FIXME: Complain that we have a base-specifier list but no
415 // definition.
Chris Lattner1ab3b962008-11-18 07:48:38 +0000416 Diag(Tok, diag::err_expected_lbrace);
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000417 }
418
419 const char *PrevSpec = 0;
Douglas Gregorddc29e12009-02-06 22:42:48 +0000420 if (!TagOrTempDecl)
421 DS.SetTypeSpecError();
422 else if (DS.SetTypeSpecType(TagType, StartLoc, PrevSpec, TagOrTempDecl))
Chris Lattner1ab3b962008-11-18 07:48:38 +0000423 Diag(StartLoc, diag::err_invalid_decl_spec_combination) << PrevSpec;
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000424}
425
426/// ParseBaseClause - Parse the base-clause of a C++ class [C++ class.derived].
427///
428/// base-clause : [C++ class.derived]
429/// ':' base-specifier-list
430/// base-specifier-list:
431/// base-specifier '...'[opt]
432/// base-specifier-list ',' base-specifier '...'[opt]
433void Parser::ParseBaseClause(DeclTy *ClassDecl)
434{
435 assert(Tok.is(tok::colon) && "Not a base clause");
436 ConsumeToken();
437
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000438 // Build up an array of parsed base specifiers.
439 llvm::SmallVector<BaseTy *, 8> BaseInfo;
440
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000441 while (true) {
442 // Parse a base-specifier.
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000443 BaseResult Result = ParseBaseSpecifier(ClassDecl);
Douglas Gregor5ac8aff2009-01-26 22:44:13 +0000444 if (Result.isInvalid()) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000445 // Skip the rest of this base specifier, up until the comma or
446 // opening brace.
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000447 SkipUntil(tok::comma, tok::l_brace, true, true);
448 } else {
449 // Add this to our array of base specifiers.
Douglas Gregor5ac8aff2009-01-26 22:44:13 +0000450 BaseInfo.push_back(Result.get());
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000451 }
452
453 // If the next token is a comma, consume it and keep reading
454 // base-specifiers.
455 if (Tok.isNot(tok::comma)) break;
456
457 // Consume the comma.
458 ConsumeToken();
459 }
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000460
461 // Attach the base specifiers
462 Actions.ActOnBaseSpecifiers(ClassDecl, &BaseInfo[0], BaseInfo.size());
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000463}
464
465/// ParseBaseSpecifier - Parse a C++ base-specifier. A base-specifier is
466/// one entry in the base class list of a class specifier, for example:
467/// class foo : public bar, virtual private baz {
468/// 'public bar' and 'virtual private baz' are each base-specifiers.
469///
470/// base-specifier: [C++ class.derived]
471/// ::[opt] nested-name-specifier[opt] class-name
472/// 'virtual' access-specifier[opt] ::[opt] nested-name-specifier[opt]
473/// class-name
474/// access-specifier 'virtual'[opt] ::[opt] nested-name-specifier[opt]
475/// class-name
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000476Parser::BaseResult Parser::ParseBaseSpecifier(DeclTy *ClassDecl)
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000477{
478 bool IsVirtual = false;
479 SourceLocation StartLoc = Tok.getLocation();
480
481 // Parse the 'virtual' keyword.
482 if (Tok.is(tok::kw_virtual)) {
483 ConsumeToken();
484 IsVirtual = true;
485 }
486
487 // Parse an (optional) access specifier.
488 AccessSpecifier Access = getAccessSpecifierIfPresent();
489 if (Access)
490 ConsumeToken();
491
492 // Parse the 'virtual' keyword (again!), in case it came after the
493 // access specifier.
494 if (Tok.is(tok::kw_virtual)) {
495 SourceLocation VirtualLoc = ConsumeToken();
496 if (IsVirtual) {
497 // Complain about duplicate 'virtual'
Chris Lattner1ab3b962008-11-18 07:48:38 +0000498 Diag(VirtualLoc, diag::err_dup_virtual)
499 << SourceRange(VirtualLoc, VirtualLoc);
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000500 }
501
502 IsVirtual = true;
503 }
504
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000505 // Parse optional '::' and optional nested-name-specifier.
506 CXXScopeSpec SS;
Chris Lattner7a0ab5f2009-01-06 06:59:53 +0000507 ParseOptionalCXXScopeSpecifier(SS);
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000508
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000509 // The location of the base class itself.
510 SourceLocation BaseLoc = Tok.getLocation();
Douglas Gregor42a552f2008-11-05 20:51:48 +0000511
512 // Parse the class-name.
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000513 TypeTy *BaseType = ParseClassName(&SS);
Douglas Gregor42a552f2008-11-05 20:51:48 +0000514 if (!BaseType)
515 return true;
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000516
517 // Find the complete source range for the base-specifier.
518 SourceRange Range(StartLoc, BaseLoc);
519
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000520 // Notify semantic analysis that we have parsed a complete
521 // base-specifier.
Sebastian Redla55e52c2008-11-25 22:21:31 +0000522 return Actions.ActOnBaseSpecifier(ClassDecl, Range, IsVirtual, Access,
523 BaseType, BaseLoc);
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000524}
525
526/// getAccessSpecifierIfPresent - Determine whether the next token is
527/// a C++ access-specifier.
528///
529/// access-specifier: [C++ class.derived]
530/// 'private'
531/// 'protected'
532/// 'public'
Douglas Gregor1b7f8982008-04-14 00:13:42 +0000533AccessSpecifier Parser::getAccessSpecifierIfPresent() const
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000534{
535 switch (Tok.getKind()) {
536 default: return AS_none;
537 case tok::kw_private: return AS_private;
538 case tok::kw_protected: return AS_protected;
539 case tok::kw_public: return AS_public;
540 }
541}
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000542
543/// ParseCXXClassMemberDeclaration - Parse a C++ class member declaration.
544///
545/// member-declaration:
546/// decl-specifier-seq[opt] member-declarator-list[opt] ';'
547/// function-definition ';'[opt]
548/// ::[opt] nested-name-specifier template[opt] unqualified-id ';'[TODO]
549/// using-declaration [TODO]
550/// [C++0x] static_assert-declaration [TODO]
551/// template-declaration [TODO]
Chris Lattnerbc8d5642008-12-18 01:12:00 +0000552/// [GNU] '__extension__' member-declaration
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000553///
554/// member-declarator-list:
555/// member-declarator
556/// member-declarator-list ',' member-declarator
557///
558/// member-declarator:
559/// declarator pure-specifier[opt]
560/// declarator constant-initializer[opt]
561/// identifier[opt] ':' constant-expression
562///
563/// pure-specifier: [TODO]
564/// '= 0'
565///
566/// constant-initializer:
567/// '=' constant-expression
568///
569Parser::DeclTy *Parser::ParseCXXClassMemberDeclaration(AccessSpecifier AS) {
Chris Lattnerbc8d5642008-12-18 01:12:00 +0000570 // Handle: member-declaration ::= '__extension__' member-declaration
571 if (Tok.is(tok::kw___extension__)) {
572 // __extension__ silences extension warnings in the subexpression.
573 ExtensionRAIIObject O(Diags); // Use RAII to do this.
574 ConsumeToken();
575 return ParseCXXClassMemberDeclaration(AS);
576 }
577
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000578 SourceLocation DSStart = Tok.getLocation();
579 // decl-specifier-seq:
580 // Parse the common declaration-specifiers piece.
581 DeclSpec DS;
582 ParseDeclarationSpecifiers(DS);
583
584 if (Tok.is(tok::semi)) {
585 ConsumeToken();
586 // C++ 9.2p7: The member-declarator-list can be omitted only after a
587 // class-specifier or an enum-specifier or in a friend declaration.
588 // FIXME: Friend declarations.
589 switch (DS.getTypeSpecType()) {
590 case DeclSpec::TST_struct:
591 case DeclSpec::TST_union:
592 case DeclSpec::TST_class:
593 case DeclSpec::TST_enum:
594 return Actions.ParsedFreeStandingDeclSpec(CurScope, DS);
595 default:
596 Diag(DSStart, diag::err_no_declarators);
597 return 0;
598 }
599 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000600
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000601 Declarator DeclaratorInfo(DS, Declarator::MemberContext);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000602
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +0000603 if (Tok.isNot(tok::colon)) {
604 // Parse the first declarator.
605 ParseDeclarator(DeclaratorInfo);
606 // Error parsing the declarator?
Douglas Gregor10bd3682008-11-17 22:58:34 +0000607 if (!DeclaratorInfo.hasName()) {
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +0000608 // If so, skip until the semi-colon or a }.
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000609 SkipUntil(tok::r_brace, true);
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +0000610 if (Tok.is(tok::semi))
611 ConsumeToken();
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000612 return 0;
613 }
614
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +0000615 // function-definition:
Douglas Gregor7ad83902008-11-05 04:29:56 +0000616 if (Tok.is(tok::l_brace)
617 || (DeclaratorInfo.isFunctionDeclarator() && Tok.is(tok::colon))) {
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +0000618 if (!DeclaratorInfo.isFunctionDeclarator()) {
619 Diag(Tok, diag::err_func_def_no_params);
620 ConsumeBrace();
621 SkipUntil(tok::r_brace, true);
622 return 0;
623 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000624
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +0000625 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
626 Diag(Tok, diag::err_function_declared_typedef);
627 // This recovery skips the entire function body. It would be nice
628 // to simply call ParseCXXInlineMethodDef() below, however Sema
629 // assumes the declarator represents a function, not a typedef.
630 ConsumeBrace();
631 SkipUntil(tok::r_brace, true);
632 return 0;
633 }
634
635 return ParseCXXInlineMethodDef(AS, DeclaratorInfo);
636 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000637 }
638
639 // member-declarator-list:
640 // member-declarator
641 // member-declarator-list ',' member-declarator
642
643 DeclTy *LastDeclInGroup = 0;
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000644 OwningExprResult BitfieldSize(Actions);
645 OwningExprResult Init(Actions);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000646
647 while (1) {
648
649 // member-declarator:
650 // declarator pure-specifier[opt]
651 // declarator constant-initializer[opt]
652 // identifier[opt] ':' constant-expression
653
654 if (Tok.is(tok::colon)) {
655 ConsumeToken();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000656 BitfieldSize = ParseConstantExpression();
657 if (BitfieldSize.isInvalid())
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000658 SkipUntil(tok::comma, true, true);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000659 }
660
661 // pure-specifier:
662 // '= 0'
663 //
664 // constant-initializer:
665 // '=' constant-expression
666
667 if (Tok.is(tok::equal)) {
668 ConsumeToken();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +0000669 Init = ParseInitializer();
670 if (Init.isInvalid())
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000671 SkipUntil(tok::comma, true, true);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000672 }
673
674 // If attributes exist after the declarator, parse them.
Sebastian Redlab197ba2009-02-09 18:23:29 +0000675 if (Tok.is(tok::kw___attribute)) {
676 SourceLocation Loc;
677 AttributeList *AttrList = ParseAttributes(&Loc);
678 DeclaratorInfo.AddAttributes(AttrList, Loc);
679 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000680
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000681 // NOTE: If Sema is the Action module and declarator is an instance field,
682 // this call will *not* return the created decl; LastDeclInGroup will be
683 // returned instead.
684 // See Sema::ActOnCXXMemberDeclarator for details.
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000685 LastDeclInGroup = Actions.ActOnCXXMemberDeclarator(CurScope, AS,
686 DeclaratorInfo,
Sebastian Redleffa8d12008-12-10 00:02:53 +0000687 BitfieldSize.release(),
688 Init.release(),
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000689 LastDeclInGroup);
690
Douglas Gregor72b505b2008-12-16 21:30:33 +0000691 if (DeclaratorInfo.isFunctionDeclarator() &&
692 DeclaratorInfo.getDeclSpec().getStorageClassSpec()
693 != DeclSpec::SCS_typedef) {
694 // We just declared a member function. If this member function
695 // has any default arguments, we'll need to parse them later.
696 LateParsedMethodDeclaration *LateMethod = 0;
697 DeclaratorChunk::FunctionTypeInfo &FTI
698 = DeclaratorInfo.getTypeObject(0).Fun;
699 for (unsigned ParamIdx = 0; ParamIdx < FTI.NumArgs; ++ParamIdx) {
700 if (LateMethod || FTI.ArgInfo[ParamIdx].DefaultArgTokens) {
701 if (!LateMethod) {
702 // Push this method onto the stack of late-parsed method
703 // declarations.
704 getCurTopClassStack().MethodDecls.push_back(
705 LateParsedMethodDeclaration(LastDeclInGroup));
706 LateMethod = &getCurTopClassStack().MethodDecls.back();
707
708 // Add all of the parameters prior to this one (they don't
709 // have default arguments).
710 LateMethod->DefaultArgs.reserve(FTI.NumArgs);
711 for (unsigned I = 0; I < ParamIdx; ++I)
712 LateMethod->DefaultArgs.push_back(
713 LateParsedDefaultArgument(FTI.ArgInfo[ParamIdx].Param));
714 }
715
716 // Add this parameter to the list of parameters (it or may
717 // not have a default argument).
718 LateMethod->DefaultArgs.push_back(
719 LateParsedDefaultArgument(FTI.ArgInfo[ParamIdx].Param,
720 FTI.ArgInfo[ParamIdx].DefaultArgTokens));
721 }
722 }
723 }
724
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000725 // If we don't have a comma, it is either the end of the list (a ';')
726 // or an error, bail out.
727 if (Tok.isNot(tok::comma))
728 break;
729
730 // Consume the comma.
731 ConsumeToken();
732
733 // Parse the next declarator.
734 DeclaratorInfo.clear();
Sebastian Redl15faa7f2008-12-09 20:22:58 +0000735 BitfieldSize = 0;
736 Init = 0;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000737
738 // Attributes are only allowed on the second declarator.
Sebastian Redlab197ba2009-02-09 18:23:29 +0000739 if (Tok.is(tok::kw___attribute)) {
740 SourceLocation Loc;
741 AttributeList *AttrList = ParseAttributes(&Loc);
742 DeclaratorInfo.AddAttributes(AttrList, Loc);
743 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000744
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +0000745 if (Tok.isNot(tok::colon))
746 ParseDeclarator(DeclaratorInfo);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000747 }
748
749 if (Tok.is(tok::semi)) {
750 ConsumeToken();
751 // Reverse the chain list.
752 return Actions.FinalizeDeclaratorGroup(CurScope, LastDeclInGroup);
753 }
754
755 Diag(Tok, diag::err_expected_semi_decl_list);
756 // Skip to end of block or statement
757 SkipUntil(tok::r_brace, true, true);
758 if (Tok.is(tok::semi))
759 ConsumeToken();
760 return 0;
761}
762
763/// ParseCXXMemberSpecification - Parse the class definition.
764///
765/// member-specification:
766/// member-declaration member-specification[opt]
767/// access-specifier ':' member-specification[opt]
768///
769void Parser::ParseCXXMemberSpecification(SourceLocation RecordLoc,
770 unsigned TagType, DeclTy *TagDecl) {
Sanjiv Gupta31fc07d2008-10-31 09:52:39 +0000771 assert((TagType == DeclSpec::TST_struct ||
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000772 TagType == DeclSpec::TST_union ||
Sanjiv Gupta31fc07d2008-10-31 09:52:39 +0000773 TagType == DeclSpec::TST_class) && "Invalid TagType!");
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000774
775 SourceLocation LBraceLoc = ConsumeBrace();
776
Douglas Gregor3218c4b2009-01-09 22:42:13 +0000777 if (!CurScope->isClassScope() && // Not about to define a nested class.
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000778 CurScope->isInCXXInlineMethodScope()) {
779 // We will define a local class of an inline method.
780 // Push a new LexedMethodsForTopClass for its inline methods.
781 PushTopClassStack();
782 }
783
784 // Enter a scope for the class.
Douglas Gregor3218c4b2009-01-09 22:42:13 +0000785 ParseScope ClassScope(this, Scope::ClassScope|Scope::DeclScope);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000786
Douglas Gregorddc29e12009-02-06 22:42:48 +0000787 if (TagDecl)
788 Actions.ActOnTagStartDefinition(CurScope, TagDecl);
789 else {
790 SkipUntil(tok::r_brace, false, false);
791 return;
792 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000793
794 // C++ 11p3: Members of a class defined with the keyword class are private
795 // by default. Members of a class defined with the keywords struct or union
796 // are public by default.
797 AccessSpecifier CurAS;
798 if (TagType == DeclSpec::TST_class)
799 CurAS = AS_private;
800 else
801 CurAS = AS_public;
802
803 // While we still have something to read, read the member-declarations.
804 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
805 // Each iteration of this loop reads one member-declaration.
806
807 // Check for extraneous top-level semicolon.
808 if (Tok.is(tok::semi)) {
809 Diag(Tok, diag::ext_extra_struct_semi);
810 ConsumeToken();
811 continue;
812 }
813
814 AccessSpecifier AS = getAccessSpecifierIfPresent();
815 if (AS != AS_none) {
816 // Current token is a C++ access specifier.
817 CurAS = AS;
818 ConsumeToken();
819 ExpectAndConsume(tok::colon, diag::err_expected_colon);
820 continue;
821 }
822
823 // Parse all the comma separated declarators.
824 ParseCXXClassMemberDeclaration(CurAS);
825 }
826
827 SourceLocation RBraceLoc = MatchRHSPunctuation(tok::r_brace, LBraceLoc);
828
829 AttributeList *AttrList = 0;
830 // If attributes exist after class contents, parse them.
831 if (Tok.is(tok::kw___attribute))
832 AttrList = ParseAttributes(); // FIXME: where should I put them?
833
834 Actions.ActOnFinishCXXMemberSpecification(CurScope, RecordLoc, TagDecl,
835 LBraceLoc, RBraceLoc);
836
837 // C++ 9.2p2: Within the class member-specification, the class is regarded as
838 // complete within function bodies, default arguments,
839 // exception-specifications, and constructor ctor-initializers (including
840 // such things in nested classes).
841 //
Douglas Gregor72b505b2008-12-16 21:30:33 +0000842 // FIXME: Only function bodies and constructor ctor-initializers are
843 // parsed correctly, fix the rest.
Douglas Gregor3218c4b2009-01-09 22:42:13 +0000844 if (!CurScope->getParent()->isClassScope()) {
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000845 // We are not inside a nested class. This class and its nested classes
Douglas Gregor72b505b2008-12-16 21:30:33 +0000846 // are complete and we can parse the delayed portions of method
847 // declarations and the lexed inline method definitions.
848 ParseLexedMethodDeclarations();
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000849 ParseLexedMethodDefs();
850
851 // For a local class of inline method, pop the LexedMethodsForTopClass that
852 // was previously pushed.
853
Sanjiv Gupta31fc07d2008-10-31 09:52:39 +0000854 assert((CurScope->isInCXXInlineMethodScope() ||
855 TopClassStacks.size() == 1) &&
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000856 "MethodLexers not getting popped properly!");
857 if (CurScope->isInCXXInlineMethodScope())
858 PopTopClassStack();
859 }
860
861 // Leave the class scope.
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000862 ClassScope.Exit();
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000863
Douglas Gregor72de6672009-01-08 20:45:30 +0000864 Actions.ActOnTagFinishDefinition(CurScope, TagDecl);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000865}
Douglas Gregor7ad83902008-11-05 04:29:56 +0000866
867/// ParseConstructorInitializer - Parse a C++ constructor initializer,
868/// which explicitly initializes the members or base classes of a
869/// class (C++ [class.base.init]). For example, the three initializers
870/// after the ':' in the Derived constructor below:
871///
872/// @code
873/// class Base { };
874/// class Derived : Base {
875/// int x;
876/// float f;
877/// public:
878/// Derived(float f) : Base(), x(17), f(f) { }
879/// };
880/// @endcode
881///
882/// [C++] ctor-initializer:
883/// ':' mem-initializer-list
884///
885/// [C++] mem-initializer-list:
886/// mem-initializer
887/// mem-initializer , mem-initializer-list
888void Parser::ParseConstructorInitializer(DeclTy *ConstructorDecl) {
889 assert(Tok.is(tok::colon) && "Constructor initializer always starts with ':'");
890
891 SourceLocation ColonLoc = ConsumeToken();
892
893 llvm::SmallVector<MemInitTy*, 4> MemInitializers;
894
895 do {
896 MemInitResult MemInit = ParseMemInitializer(ConstructorDecl);
Douglas Gregor5ac8aff2009-01-26 22:44:13 +0000897 if (!MemInit.isInvalid())
898 MemInitializers.push_back(MemInit.get());
Douglas Gregor7ad83902008-11-05 04:29:56 +0000899
900 if (Tok.is(tok::comma))
901 ConsumeToken();
902 else if (Tok.is(tok::l_brace))
903 break;
904 else {
905 // Skip over garbage, until we get to '{'. Don't eat the '{'.
906 SkipUntil(tok::l_brace, true, true);
907 break;
908 }
909 } while (true);
910
911 Actions.ActOnMemInitializers(ConstructorDecl, ColonLoc,
912 &MemInitializers[0], MemInitializers.size());
913}
914
915/// ParseMemInitializer - Parse a C++ member initializer, which is
916/// part of a constructor initializer that explicitly initializes one
917/// member or base class (C++ [class.base.init]). See
918/// ParseConstructorInitializer for an example.
919///
920/// [C++] mem-initializer:
921/// mem-initializer-id '(' expression-list[opt] ')'
922///
923/// [C++] mem-initializer-id:
924/// '::'[opt] nested-name-specifier[opt] class-name
925/// identifier
926Parser::MemInitResult Parser::ParseMemInitializer(DeclTy *ConstructorDecl) {
927 // FIXME: parse '::'[opt] nested-name-specifier[opt]
928
929 if (Tok.isNot(tok::identifier)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000930 Diag(Tok, diag::err_expected_member_or_base_name);
Douglas Gregor7ad83902008-11-05 04:29:56 +0000931 return true;
932 }
933
934 // Get the identifier. This may be a member name or a class name,
935 // but we'll let the semantic analysis determine which it is.
936 IdentifierInfo *II = Tok.getIdentifierInfo();
937 SourceLocation IdLoc = ConsumeToken();
938
939 // Parse the '('.
940 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000941 Diag(Tok, diag::err_expected_lparen);
Douglas Gregor7ad83902008-11-05 04:29:56 +0000942 return true;
943 }
944 SourceLocation LParenLoc = ConsumeParen();
945
946 // Parse the optional expression-list.
Sebastian Redla55e52c2008-11-25 22:21:31 +0000947 ExprVector ArgExprs(Actions);
Douglas Gregor7ad83902008-11-05 04:29:56 +0000948 CommaLocsTy CommaLocs;
949 if (Tok.isNot(tok::r_paren) && ParseExpressionList(ArgExprs, CommaLocs)) {
950 SkipUntil(tok::r_paren);
951 return true;
952 }
953
954 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
955
Sebastian Redla55e52c2008-11-25 22:21:31 +0000956 return Actions.ActOnMemInitializer(ConstructorDecl, CurScope, II, IdLoc,
957 LParenLoc, ArgExprs.take(),
958 ArgExprs.size(), &CommaLocs[0], RParenLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +0000959}
Douglas Gregor0fe7bea2008-11-25 03:22:00 +0000960
961/// ParseExceptionSpecification - Parse a C++ exception-specification
962/// (C++ [except.spec]).
963///
Douglas Gregora4745612008-12-01 18:00:20 +0000964/// exception-specification:
965/// 'throw' '(' type-id-list [opt] ')'
966/// [MS] 'throw' '(' '...' ')'
Douglas Gregor0fe7bea2008-11-25 03:22:00 +0000967///
Douglas Gregora4745612008-12-01 18:00:20 +0000968/// type-id-list:
969/// type-id
970/// type-id-list ',' type-id
Douglas Gregor0fe7bea2008-11-25 03:22:00 +0000971///
Sebastian Redlab197ba2009-02-09 18:23:29 +0000972bool Parser::ParseExceptionSpecification(SourceLocation &EndLoc) {
Douglas Gregor0fe7bea2008-11-25 03:22:00 +0000973 assert(Tok.is(tok::kw_throw) && "expected throw");
974
975 SourceLocation ThrowLoc = ConsumeToken();
976
977 if (!Tok.is(tok::l_paren)) {
978 return Diag(Tok, diag::err_expected_lparen_after) << "throw";
979 }
980 SourceLocation LParenLoc = ConsumeParen();
981
Douglas Gregora4745612008-12-01 18:00:20 +0000982 // Parse throw(...), a Microsoft extension that means "this function
983 // can throw anything".
984 if (Tok.is(tok::ellipsis)) {
985 SourceLocation EllipsisLoc = ConsumeToken();
986 if (!getLang().Microsoft)
987 Diag(EllipsisLoc, diag::ext_ellipsis_exception_spec);
Sebastian Redlab197ba2009-02-09 18:23:29 +0000988 EndLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
Douglas Gregora4745612008-12-01 18:00:20 +0000989 return false;
990 }
991
Douglas Gregor0fe7bea2008-11-25 03:22:00 +0000992 // Parse the sequence of type-ids.
993 while (Tok.isNot(tok::r_paren)) {
994 ParseTypeName();
995 if (Tok.is(tok::comma))
996 ConsumeToken();
997 else
998 break;
999 }
1000
Sebastian Redlab197ba2009-02-09 18:23:29 +00001001 EndLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00001002 return false;
1003}