blob: 8a6e1ce33f3ff8c9b0e9953c4b3cb653dc7790b0 [file] [log] [blame]
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00001//===--- ParseCXXInlineMethods.cpp - C++ class inline methods parsing------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements parsing for C++ class inline methods.
11//
12//===----------------------------------------------------------------------===//
13
Chris Lattner500d3292009-01-29 05:15:15 +000014#include "clang/Parse/ParseDiagnostic.h"
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +000015#include "clang/Parse/Parser.h"
John McCall19510852010-08-20 18:27:03 +000016#include "clang/Sema/DeclSpec.h"
17#include "clang/Sema/Scope.h"
Francois Pichet8387e2a2011-04-22 22:18:13 +000018#include "clang/AST/DeclTemplate.h"
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +000019using namespace clang;
20
Sebastian Redld3a413d2009-04-26 20:35:05 +000021/// ParseCXXInlineMethodDef - We parsed and verified that the specified
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +000022/// Declarator is a well formed C++ inline method definition. Now lex its body
23/// and store its tokens for parsing after the C++ class is complete.
Erik Verbruggen5f1c8222011-10-13 09:41:32 +000024Decl *Parser::ParseCXXInlineMethodDef(AccessSpecifier AS,
25 AttributeList *AccessAttrs,
26 ParsingDeclarator &D,
Douglas Gregor45fa5602011-11-07 20:56:01 +000027 const ParsedTemplateInfo &TemplateInfo,
28 const VirtSpecifiers& VS,
29 FunctionDefinitionKind DefinitionKind,
30 ExprResult& Init) {
Abramo Bagnara075f8f12010-12-10 16:29:40 +000031 assert(D.isFunctionDeclarator() && "This isn't a function declarator!");
Sean Hunte4246a62011-05-12 06:15:49 +000032 assert((Tok.is(tok::l_brace) || Tok.is(tok::colon) || Tok.is(tok::kw_try) ||
33 Tok.is(tok::equal)) &&
34 "Current token not a '{', ':', '=', or 'try'!");
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +000035
John McCallf312b1e2010-08-26 23:41:50 +000036 MultiTemplateParamsArg TemplateParams(Actions,
Sean Hunt4cd84942010-04-14 23:07:37 +000037 TemplateInfo.TemplateParams ? TemplateInfo.TemplateParams->data() : 0,
38 TemplateInfo.TemplateParams ? TemplateInfo.TemplateParams->size() : 0);
39
John McCalld226f652010-08-21 09:40:31 +000040 Decl *FnD;
Douglas Gregor45fa5602011-11-07 20:56:01 +000041 D.setFunctionDefinitionKind(DefinitionKind);
John McCall67d1a672009-08-06 02:15:43 +000042 if (D.getDeclSpec().isFriendSpecified())
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000043 FnD = Actions.ActOnFriendFunctionDecl(getCurScope(), D,
Sean Hunt4cd84942010-04-14 23:07:37 +000044 move(TemplateParams));
Douglas Gregor147545d2011-10-10 14:49:18 +000045 else {
Douglas Gregor23c94db2010-07-02 17:43:08 +000046 FnD = Actions.ActOnCXXMemberDeclarator(getCurScope(), AS, D,
Anders Carlsson69a87352011-01-20 03:57:25 +000047 move(TemplateParams), 0,
Douglas Gregora2b4e5d2011-10-17 17:09:53 +000048 VS, /*HasDeferredInit=*/false);
Douglas Gregor147545d2011-10-10 14:49:18 +000049 if (FnD) {
Erik Verbruggen5f1c8222011-10-13 09:41:32 +000050 Actions.ProcessDeclAttributeList(getCurScope(), FnD, AccessAttrs,
51 false, true);
Douglas Gregor147545d2011-10-10 14:49:18 +000052 bool TypeSpecContainsAuto
53 = D.getDeclSpec().getTypeSpecType() == DeclSpec::TST_auto;
Douglas Gregora2b4e5d2011-10-17 17:09:53 +000054 if (Init.isUsable())
Douglas Gregor147545d2011-10-10 14:49:18 +000055 Actions.AddInitializerToDecl(FnD, Init.get(), false,
56 TypeSpecContainsAuto);
57 else
58 Actions.ActOnUninitializedDecl(FnD, TypeSpecContainsAuto);
59 }
Nico Weber48673472011-01-28 06:07:34 +000060 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +000061
Eli Friedmand33133c2009-07-22 21:45:50 +000062 HandleMemberFunctionDefaultArgs(D, FnD);
63
John McCalleee1d542011-02-14 07:13:47 +000064 D.complete(FnD);
65
Sean Hunte4246a62011-05-12 06:15:49 +000066 if (Tok.is(tok::equal)) {
67 ConsumeToken();
68
Richard Smithc430ef42011-11-10 09:08:44 +000069 if (!FnD) {
70 SkipUntil(tok::semi);
71 return 0;
72 }
73
Sean Hunte4246a62011-05-12 06:15:49 +000074 bool Delete = false;
75 SourceLocation KWLoc;
76 if (Tok.is(tok::kw_delete)) {
David Blaikie4e4d0842012-03-11 07:00:24 +000077 Diag(Tok, getLangOpts().CPlusPlus0x ?
Richard Smith7fe62082011-10-15 05:09:34 +000078 diag::warn_cxx98_compat_deleted_function :
Richard Smithd7c56e12011-12-29 21:57:33 +000079 diag::ext_deleted_function);
Sean Hunte4246a62011-05-12 06:15:49 +000080
81 KWLoc = ConsumeToken();
82 Actions.SetDeclDeleted(FnD, KWLoc);
83 Delete = true;
84 } else if (Tok.is(tok::kw_default)) {
David Blaikie4e4d0842012-03-11 07:00:24 +000085 Diag(Tok, getLangOpts().CPlusPlus0x ?
Richard Smith7fe62082011-10-15 05:09:34 +000086 diag::warn_cxx98_compat_defaulted_function :
Richard Smithd7c56e12011-12-29 21:57:33 +000087 diag::ext_defaulted_function);
Sean Hunte4246a62011-05-12 06:15:49 +000088
89 KWLoc = ConsumeToken();
90 Actions.SetDeclDefaulted(FnD, KWLoc);
91 } else {
92 llvm_unreachable("function definition after = not 'delete' or 'default'");
93 }
94
95 if (Tok.is(tok::comma)) {
96 Diag(KWLoc, diag::err_default_delete_in_multiple_declaration)
97 << Delete;
98 SkipUntil(tok::semi);
99 } else {
100 ExpectAndConsume(tok::semi, diag::err_expected_semi_after,
101 Delete ? "delete" : "default", tok::semi);
102 }
103
104 return FnD;
105 }
106
Francois Pichet8387e2a2011-04-22 22:18:13 +0000107 // In delayed template parsing mode, if we are within a class template
108 // or if we are about to parse function member template then consume
109 // the tokens and store them for parsing at the end of the translation unit.
David Blaikie4e4d0842012-03-11 07:00:24 +0000110 if (getLangOpts().DelayedTemplateParsing &&
Francois Pichet8387e2a2011-04-22 22:18:13 +0000111 ((Actions.CurContext->isDependentContext() ||
112 TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate) &&
Francois Pichet9d38dbc2011-11-18 23:47:17 +0000113 !Actions.IsInsideALocalClassWithinATemplateFunction())) {
Francois Pichet8387e2a2011-04-22 22:18:13 +0000114
115 if (FnD) {
Francois Pichete1fca502011-12-08 09:11:52 +0000116 LateParsedTemplatedFunction *LPT = new LateParsedTemplatedFunction(FnD);
Francois Pichet8387e2a2011-04-22 22:18:13 +0000117
118 FunctionDecl *FD = 0;
119 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(FnD))
120 FD = FunTmpl->getTemplatedDecl();
121 else
122 FD = cast<FunctionDecl>(FnD);
Chandler Carruth81542fd2011-04-25 07:09:43 +0000123 Actions.CheckForFunctionRedefinition(FD);
Francois Pichet8387e2a2011-04-22 22:18:13 +0000124
125 LateParsedTemplateMap[FD] = LPT;
126 Actions.MarkAsLateParsedTemplate(FD);
127 LexTemplateFunctionForLateParsing(LPT->Toks);
128 } else {
129 CachedTokens Toks;
130 LexTemplateFunctionForLateParsing(Toks);
131 }
132
133 return FnD;
134 }
135
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000136 // Consume the tokens and store them for later parsing.
137
Douglas Gregord54eb442010-10-12 16:25:54 +0000138 LexedMethod* LM = new LexedMethod(this, FnD);
139 getCurrentClass().LateParsedDeclarations.push_back(LM);
140 LM->TemplateScope = getCurScope()->isTemplateParamScope();
141 CachedTokens &Toks = LM->Toks;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000142
Sebastian Redld3a413d2009-04-26 20:35:05 +0000143 tok::TokenKind kind = Tok.getKind();
Sebastian Redla891a322011-09-30 08:32:17 +0000144 // Consume everything up to (and including) the left brace of the
145 // function body.
146 if (ConsumeAndStoreFunctionPrologue(Toks)) {
147 // We didn't find the left-brace we expected after the
Eli Friedmane9ee3822012-02-22 04:49:04 +0000148 // constructor initializer; we already printed an error, and it's likely
149 // impossible to recover, so don't try to parse this method later.
150 // If we stopped at a semicolon, consume it to avoid an extra warning.
151 if (Tok.is(tok::semi))
152 ConsumeToken();
153 delete getCurrentClass().LateParsedDeclarations.back();
154 getCurrentClass().LateParsedDeclarations.pop_back();
155 return FnD;
Douglas Gregor7ad83902008-11-05 04:29:56 +0000156 } else {
Sebastian Redla891a322011-09-30 08:32:17 +0000157 // Consume everything up to (and including) the matching right brace.
158 ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/false);
Douglas Gregor7ad83902008-11-05 04:29:56 +0000159 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000160
Sebastian Redld3a413d2009-04-26 20:35:05 +0000161 // If we're in a function-try-block, we need to store all the catch blocks.
162 if (kind == tok::kw_try) {
163 while (Tok.is(tok::kw_catch)) {
Argyrios Kyrtzidis14b91622010-04-23 21:20:12 +0000164 ConsumeAndStoreUntil(tok::l_brace, Toks, /*StopAtSemi=*/false);
165 ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/false);
Sebastian Redld3a413d2009-04-26 20:35:05 +0000166 }
167 }
168
Douglas Gregor87f10642011-04-14 23:19:27 +0000169
170 if (!FnD) {
171 // If semantic analysis could not build a function declaration,
172 // just throw away the late-parsed declaration.
173 delete getCurrentClass().LateParsedDeclarations.back();
174 getCurrentClass().LateParsedDeclarations.pop_back();
175 }
176
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000177 return FnD;
178}
179
Richard Smith7a614d82011-06-11 17:19:42 +0000180/// ParseCXXNonStaticMemberInitializer - We parsed and verified that the
181/// specified Declarator is a well formed C++ non-static data member
182/// declaration. Now lex its initializer and store its tokens for parsing
183/// after the class is complete.
184void Parser::ParseCXXNonStaticMemberInitializer(Decl *VarD) {
185 assert((Tok.is(tok::l_brace) || Tok.is(tok::equal)) &&
186 "Current token not a '{' or '='!");
187
188 LateParsedMemberInitializer *MI =
189 new LateParsedMemberInitializer(this, VarD);
190 getCurrentClass().LateParsedDeclarations.push_back(MI);
191 CachedTokens &Toks = MI->Toks;
192
193 tok::TokenKind kind = Tok.getKind();
194 if (kind == tok::equal) {
195 Toks.push_back(Tok);
Douglas Gregord78ef5b2012-03-08 01:00:17 +0000196 ConsumeToken();
Richard Smith7a614d82011-06-11 17:19:42 +0000197 }
198
199 if (kind == tok::l_brace) {
200 // Begin by storing the '{' token.
201 Toks.push_back(Tok);
202 ConsumeBrace();
203
204 // Consume everything up to (and including) the matching right brace.
205 ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/true);
206 } else {
207 // Consume everything up to (but excluding) the comma or semicolon.
208 ConsumeAndStoreUntil(tok::comma, Toks, /*StopAtSemi=*/true,
209 /*ConsumeFinalToken=*/false);
210 }
211
212 // Store an artificial EOF token to ensure that we don't run off the end of
213 // the initializer when we come to parse it.
214 Token Eof;
215 Eof.startToken();
216 Eof.setKind(tok::eof);
217 Eof.setLocation(Tok.getLocation());
218 Toks.push_back(Eof);
219}
220
Douglas Gregord54eb442010-10-12 16:25:54 +0000221Parser::LateParsedDeclaration::~LateParsedDeclaration() {}
222void Parser::LateParsedDeclaration::ParseLexedMethodDeclarations() {}
Richard Smith7a614d82011-06-11 17:19:42 +0000223void Parser::LateParsedDeclaration::ParseLexedMemberInitializers() {}
Douglas Gregord54eb442010-10-12 16:25:54 +0000224void Parser::LateParsedDeclaration::ParseLexedMethodDefs() {}
225
226Parser::LateParsedClass::LateParsedClass(Parser *P, ParsingClass *C)
227 : Self(P), Class(C) {}
228
229Parser::LateParsedClass::~LateParsedClass() {
230 Self->DeallocateParsedClasses(Class);
231}
232
233void Parser::LateParsedClass::ParseLexedMethodDeclarations() {
234 Self->ParseLexedMethodDeclarations(*Class);
235}
236
Richard Smith7a614d82011-06-11 17:19:42 +0000237void Parser::LateParsedClass::ParseLexedMemberInitializers() {
238 Self->ParseLexedMemberInitializers(*Class);
239}
240
Douglas Gregord54eb442010-10-12 16:25:54 +0000241void Parser::LateParsedClass::ParseLexedMethodDefs() {
242 Self->ParseLexedMethodDefs(*Class);
243}
244
245void Parser::LateParsedMethodDeclaration::ParseLexedMethodDeclarations() {
246 Self->ParseLexedMethodDeclaration(*this);
247}
248
249void Parser::LexedMethod::ParseLexedMethodDefs() {
250 Self->ParseLexedMethodDef(*this);
251}
252
Richard Smith7a614d82011-06-11 17:19:42 +0000253void Parser::LateParsedMemberInitializer::ParseLexedMemberInitializers() {
254 Self->ParseLexedMemberInitializer(*this);
255}
256
Douglas Gregor72b505b2008-12-16 21:30:33 +0000257/// ParseLexedMethodDeclarations - We finished parsing the member
258/// specification of a top (non-nested) C++ class. Now go over the
259/// stack of method declarations with some parts for which parsing was
260/// delayed (such as default arguments) and parse them.
Douglas Gregor6569d682009-05-27 23:11:45 +0000261void Parser::ParseLexedMethodDeclarations(ParsingClass &Class) {
262 bool HasTemplateScope = !Class.TopLevelClass && Class.TemplateScope;
Douglas Gregord54eb442010-10-12 16:25:54 +0000263 ParseScope ClassTemplateScope(this, Scope::TemplateParamScope, HasTemplateScope);
Douglas Gregor6569d682009-05-27 23:11:45 +0000264 if (HasTemplateScope)
Douglas Gregor23c94db2010-07-02 17:43:08 +0000265 Actions.ActOnReenterTemplateScope(getCurScope(), Class.TagOrTemplate);
Douglas Gregor6569d682009-05-27 23:11:45 +0000266
John McCall7a1dc562009-12-19 10:49:29 +0000267 // The current scope is still active if we're the top-level class.
268 // Otherwise we'll need to push and enter a new scope.
Douglas Gregor6569d682009-05-27 23:11:45 +0000269 bool HasClassScope = !Class.TopLevelClass;
Sean Hunt4cd84942010-04-14 23:07:37 +0000270 ParseScope ClassScope(this, Scope::ClassScope|Scope::DeclScope,
271 HasClassScope);
John McCall7a1dc562009-12-19 10:49:29 +0000272 if (HasClassScope)
Douglas Gregor23c94db2010-07-02 17:43:08 +0000273 Actions.ActOnStartDelayedMemberDeclarations(getCurScope(), Class.TagOrTemplate);
Douglas Gregor6569d682009-05-27 23:11:45 +0000274
Douglas Gregord54eb442010-10-12 16:25:54 +0000275 for (size_t i = 0; i < Class.LateParsedDeclarations.size(); ++i) {
276 Class.LateParsedDeclarations[i]->ParseLexedMethodDeclarations();
Douglas Gregor72b505b2008-12-16 21:30:33 +0000277 }
Douglas Gregor6569d682009-05-27 23:11:45 +0000278
John McCall7a1dc562009-12-19 10:49:29 +0000279 if (HasClassScope)
Douglas Gregor23c94db2010-07-02 17:43:08 +0000280 Actions.ActOnFinishDelayedMemberDeclarations(getCurScope(), Class.TagOrTemplate);
Douglas Gregor72b505b2008-12-16 21:30:33 +0000281}
282
Douglas Gregord54eb442010-10-12 16:25:54 +0000283void Parser::ParseLexedMethodDeclaration(LateParsedMethodDeclaration &LM) {
284 // If this is a member template, introduce the template parameter scope.
285 ParseScope TemplateScope(this, Scope::TemplateParamScope, LM.TemplateScope);
286 if (LM.TemplateScope)
287 Actions.ActOnReenterTemplateScope(getCurScope(), LM.Method);
288
289 // Start the delayed C++ method declaration
290 Actions.ActOnStartDelayedCXXMethodDeclaration(getCurScope(), LM.Method);
291
292 // Introduce the parameters into scope and parse their default
293 // arguments.
294 ParseScope PrototypeScope(this,
295 Scope::FunctionPrototypeScope|Scope::DeclScope);
296 for (unsigned I = 0, N = LM.DefaultArgs.size(); I != N; ++I) {
297 // Introduce the parameter into scope.
Douglas Gregorccc1b5e2012-02-21 00:37:24 +0000298 Actions.ActOnDelayedCXXMethodParameter(getCurScope(),
299 LM.DefaultArgs[I].Param);
Douglas Gregord54eb442010-10-12 16:25:54 +0000300
301 if (CachedTokens *Toks = LM.DefaultArgs[I].Toks) {
302 // Save the current token position.
303 SourceLocation origLoc = Tok.getLocation();
304
305 // Parse the default argument from its saved token stream.
306 Toks->push_back(Tok); // So that the current token doesn't get lost
307 PP.EnterTokenStream(&Toks->front(), Toks->size(), true, false);
308
309 // Consume the previously-pushed token.
310 ConsumeAnyToken();
311
312 // Consume the '='.
313 assert(Tok.is(tok::equal) && "Default argument not starting with '='");
314 SourceLocation EqualLoc = ConsumeToken();
315
316 // The argument isn't actually potentially evaluated unless it is
317 // used.
318 EnterExpressionEvaluationContext Eval(Actions,
Douglas Gregorccc1b5e2012-02-21 00:37:24 +0000319 Sema::PotentiallyEvaluatedIfUsed,
320 LM.DefaultArgs[I].Param);
Douglas Gregord54eb442010-10-12 16:25:54 +0000321
Sebastian Redl84407ba2012-03-14 15:54:00 +0000322 ExprResult DefArgResult;
323 if (Tok.is(tok::l_brace))
324 DefArgResult = ParseBraceInitializer();
325 else
326 DefArgResult = ParseAssignmentExpression();
Douglas Gregord54eb442010-10-12 16:25:54 +0000327 if (DefArgResult.isInvalid())
328 Actions.ActOnParamDefaultArgumentError(LM.DefaultArgs[I].Param);
329 else {
330 if (Tok.is(tok::cxx_defaultarg_end))
331 ConsumeToken();
332 else
333 Diag(Tok.getLocation(), diag::err_default_arg_unparsed);
334 Actions.ActOnParamDefaultArgument(LM.DefaultArgs[I].Param, EqualLoc,
335 DefArgResult.take());
336 }
337
338 assert(!PP.getSourceManager().isBeforeInTranslationUnit(origLoc,
339 Tok.getLocation()) &&
340 "ParseAssignmentExpression went over the default arg tokens!");
341 // There could be leftover tokens (e.g. because of an error).
342 // Skip through until we reach the original token position.
343 while (Tok.getLocation() != origLoc && Tok.isNot(tok::eof))
344 ConsumeAnyToken();
345
346 delete Toks;
347 LM.DefaultArgs[I].Toks = 0;
348 }
349 }
350 PrototypeScope.Exit();
351
352 // Finish the delayed C++ method declaration.
353 Actions.ActOnFinishDelayedCXXMethodDeclaration(getCurScope(), LM.Method);
354}
355
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000356/// ParseLexedMethodDefs - We finished parsing the member specification of a top
357/// (non-nested) C++ class. Now go over the stack of lexed methods that were
358/// collected during its parsing and parse them all.
Douglas Gregor6569d682009-05-27 23:11:45 +0000359void Parser::ParseLexedMethodDefs(ParsingClass &Class) {
360 bool HasTemplateScope = !Class.TopLevelClass && Class.TemplateScope;
Douglas Gregord54eb442010-10-12 16:25:54 +0000361 ParseScope ClassTemplateScope(this, Scope::TemplateParamScope, HasTemplateScope);
Douglas Gregor6569d682009-05-27 23:11:45 +0000362 if (HasTemplateScope)
Douglas Gregor23c94db2010-07-02 17:43:08 +0000363 Actions.ActOnReenterTemplateScope(getCurScope(), Class.TagOrTemplate);
Douglas Gregor6569d682009-05-27 23:11:45 +0000364
365 bool HasClassScope = !Class.TopLevelClass;
366 ParseScope ClassScope(this, Scope::ClassScope|Scope::DeclScope,
367 HasClassScope);
368
Douglas Gregord54eb442010-10-12 16:25:54 +0000369 for (size_t i = 0; i < Class.LateParsedDeclarations.size(); ++i) {
370 Class.LateParsedDeclarations[i]->ParseLexedMethodDefs();
371 }
372}
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000373
Douglas Gregord54eb442010-10-12 16:25:54 +0000374void Parser::ParseLexedMethodDef(LexedMethod &LM) {
375 // If this is a member template, introduce the template parameter scope.
376 ParseScope TemplateScope(this, Scope::TemplateParamScope, LM.TemplateScope);
377 if (LM.TemplateScope)
378 Actions.ActOnReenterTemplateScope(getCurScope(), LM.D);
Mike Stump1eb44332009-09-09 15:08:12 +0000379
Douglas Gregord54eb442010-10-12 16:25:54 +0000380 // Save the current token position.
381 SourceLocation origLoc = Tok.getLocation();
Argyrios Kyrtzidisc50a5e02010-03-31 00:38:09 +0000382
Douglas Gregord54eb442010-10-12 16:25:54 +0000383 assert(!LM.Toks.empty() && "Empty body!");
384 // Append the current token at the end of the new token stream so that it
385 // doesn't get lost.
386 LM.Toks.push_back(Tok);
387 PP.EnterTokenStream(LM.Toks.data(), LM.Toks.size(), true, false);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000388
Douglas Gregord54eb442010-10-12 16:25:54 +0000389 // Consume the previously pushed token.
390 ConsumeAnyToken();
391 assert((Tok.is(tok::l_brace) || Tok.is(tok::colon) || Tok.is(tok::kw_try))
392 && "Inline method not starting with '{', ':' or 'try'");
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000393
Douglas Gregord54eb442010-10-12 16:25:54 +0000394 // Parse the method body. Function body parsing code is similar enough
395 // to be re-used for method bodies as well.
396 ParseScope FnScope(this, Scope::FnScope|Scope::DeclScope);
397 Actions.ActOnStartOfFunctionDef(getCurScope(), LM.D);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000398
Douglas Gregord54eb442010-10-12 16:25:54 +0000399 if (Tok.is(tok::kw_try)) {
Douglas Gregorc9977d02011-03-16 17:05:57 +0000400 ParseFunctionTryBlock(LM.D, FnScope);
Douglas Gregord54eb442010-10-12 16:25:54 +0000401 assert(!PP.getSourceManager().isBeforeInTranslationUnit(origLoc,
402 Tok.getLocation()) &&
403 "ParseFunctionTryBlock went over the cached tokens!");
404 // There could be leftover tokens (e.g. because of an error).
405 // Skip through until we reach the original token position.
406 while (Tok.getLocation() != origLoc && Tok.isNot(tok::eof))
407 ConsumeAnyToken();
408 return;
409 }
410 if (Tok.is(tok::colon)) {
411 ParseConstructorInitializer(LM.D);
412
413 // Error recovery.
414 if (!Tok.is(tok::l_brace)) {
Douglas Gregorc9977d02011-03-16 17:05:57 +0000415 FnScope.Exit();
Douglas Gregord54eb442010-10-12 16:25:54 +0000416 Actions.ActOnFinishFunctionBody(LM.D, 0);
Matt Beaumont-Gay10904522011-09-23 22:39:23 +0000417 while (Tok.getLocation() != origLoc && Tok.isNot(tok::eof))
418 ConsumeAnyToken();
Douglas Gregord54eb442010-10-12 16:25:54 +0000419 return;
420 }
421 } else
422 Actions.ActOnDefaultCtorInitializers(LM.D);
423
Douglas Gregorc9977d02011-03-16 17:05:57 +0000424 ParseFunctionStatementBody(LM.D, FnScope);
Douglas Gregord54eb442010-10-12 16:25:54 +0000425
426 if (Tok.getLocation() != origLoc) {
427 // Due to parsing error, we either went over the cached tokens or
428 // there are still cached tokens left. If it's the latter case skip the
429 // leftover tokens.
430 // Since this is an uncommon situation that should be avoided, use the
431 // expensive isBeforeInTranslationUnit call.
432 if (PP.getSourceManager().isBeforeInTranslationUnit(Tok.getLocation(),
433 origLoc))
Argyrios Kyrtzidis8f9359f2010-06-19 19:58:34 +0000434 while (Tok.getLocation() != origLoc && Tok.isNot(tok::eof))
Argyrios Kyrtzidis7558cd02010-06-17 10:52:22 +0000435 ConsumeAnyToken();
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000436 }
437}
438
Richard Smith7a614d82011-06-11 17:19:42 +0000439/// ParseLexedMemberInitializers - We finished parsing the member specification
440/// of a top (non-nested) C++ class. Now go over the stack of lexed data member
441/// initializers that were collected during its parsing and parse them all.
442void Parser::ParseLexedMemberInitializers(ParsingClass &Class) {
443 bool HasTemplateScope = !Class.TopLevelClass && Class.TemplateScope;
444 ParseScope ClassTemplateScope(this, Scope::TemplateParamScope,
445 HasTemplateScope);
446 if (HasTemplateScope)
447 Actions.ActOnReenterTemplateScope(getCurScope(), Class.TagOrTemplate);
448
449 // Set or update the scope flags to include Scope::ThisScope.
450 bool AlreadyHasClassScope = Class.TopLevelClass;
451 unsigned ScopeFlags = Scope::ClassScope|Scope::DeclScope|Scope::ThisScope;
452 ParseScope ClassScope(this, ScopeFlags, !AlreadyHasClassScope);
453 ParseScopeFlags ClassScopeFlags(this, ScopeFlags, AlreadyHasClassScope);
454
455 if (!AlreadyHasClassScope)
456 Actions.ActOnStartDelayedMemberDeclarations(getCurScope(),
457 Class.TagOrTemplate);
458
459 for (size_t i = 0; i < Class.LateParsedDeclarations.size(); ++i) {
460 Class.LateParsedDeclarations[i]->ParseLexedMemberInitializers();
461 }
462
463 if (!AlreadyHasClassScope)
464 Actions.ActOnFinishDelayedMemberDeclarations(getCurScope(),
465 Class.TagOrTemplate);
466
467 Actions.ActOnFinishDelayedMemberInitializers(Class.TagOrTemplate);
468}
469
470void Parser::ParseLexedMemberInitializer(LateParsedMemberInitializer &MI) {
Richard Smith1991b712011-09-29 19:42:27 +0000471 if (!MI.Field || MI.Field->isInvalidDecl())
Richard Smith7a614d82011-06-11 17:19:42 +0000472 return;
473
474 // Append the current token at the end of the new token stream so that it
475 // doesn't get lost.
476 MI.Toks.push_back(Tok);
477 PP.EnterTokenStream(MI.Toks.data(), MI.Toks.size(), true, false);
478
479 // Consume the previously pushed token.
480 ConsumeAnyToken();
481
482 SourceLocation EqualLoc;
Douglas Gregor552e2992012-02-21 02:22:07 +0000483 ExprResult Init = ParseCXXMemberInitializer(MI.Field, /*IsFunction=*/false,
484 EqualLoc);
Richard Smith7a614d82011-06-11 17:19:42 +0000485
486 Actions.ActOnCXXInClassMemberInitializer(MI.Field, EqualLoc, Init.release());
487
488 // The next token should be our artificial terminating EOF token.
489 if (Tok.isNot(tok::eof)) {
490 SourceLocation EndLoc = PP.getLocForEndOfToken(PrevTokLocation);
491 if (!EndLoc.isValid())
492 EndLoc = Tok.getLocation();
493 // No fixit; we can't recover as if there were a semicolon here.
494 Diag(EndLoc, diag::err_expected_semi_decl_list);
495
496 // Consume tokens until we hit the artificial EOF.
497 while (Tok.isNot(tok::eof))
498 ConsumeAnyToken();
499 }
500 ConsumeAnyToken();
501}
502
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000503/// ConsumeAndStoreUntil - Consume and store the token at the passed token
Douglas Gregor72b505b2008-12-16 21:30:33 +0000504/// container until the token 'T' is reached (which gets
Mike Stump1eb44332009-09-09 15:08:12 +0000505/// consumed/stored too, if ConsumeFinalToken).
Argyrios Kyrtzidis14b91622010-04-23 21:20:12 +0000506/// If StopAtSemi is true, then we will stop early at a ';' character.
Douglas Gregor72b505b2008-12-16 21:30:33 +0000507/// Returns true if token 'T1' or 'T2' was found.
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000508/// NOTE: This is a specialized version of Parser::SkipUntil.
Douglas Gregor72b505b2008-12-16 21:30:33 +0000509bool Parser::ConsumeAndStoreUntil(tok::TokenKind T1, tok::TokenKind T2,
510 CachedTokens &Toks,
Argyrios Kyrtzidis14b91622010-04-23 21:20:12 +0000511 bool StopAtSemi, bool ConsumeFinalToken) {
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000512 // We always want this function to consume at least one token if the first
513 // token isn't T and if not at EOF.
514 bool isFirstTokenConsumed = true;
515 while (1) {
516 // If we found one of the tokens, stop and return true.
Douglas Gregor72b505b2008-12-16 21:30:33 +0000517 if (Tok.is(T1) || Tok.is(T2)) {
518 if (ConsumeFinalToken) {
519 Toks.push_back(Tok);
520 ConsumeAnyToken();
521 }
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000522 return true;
523 }
524
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000525 switch (Tok.getKind()) {
526 case tok::eof:
527 // Ran out of tokens.
528 return false;
529
530 case tok::l_paren:
531 // Recursively consume properly-nested parens.
532 Toks.push_back(Tok);
533 ConsumeParen();
Argyrios Kyrtzidis14b91622010-04-23 21:20:12 +0000534 ConsumeAndStoreUntil(tok::r_paren, Toks, /*StopAtSemi=*/false);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000535 break;
536 case tok::l_square:
537 // Recursively consume properly-nested square brackets.
538 Toks.push_back(Tok);
539 ConsumeBracket();
Argyrios Kyrtzidis14b91622010-04-23 21:20:12 +0000540 ConsumeAndStoreUntil(tok::r_square, Toks, /*StopAtSemi=*/false);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000541 break;
542 case tok::l_brace:
543 // Recursively consume properly-nested braces.
544 Toks.push_back(Tok);
545 ConsumeBrace();
Argyrios Kyrtzidis14b91622010-04-23 21:20:12 +0000546 ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/false);
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000547 break;
548
549 // Okay, we found a ']' or '}' or ')', which we think should be balanced.
550 // Since the user wasn't looking for this token (if they were, it would
551 // already be handled), this isn't balanced. If there is a LHS token at a
552 // higher level, we will assume that this matches the unbalanced token
553 // and return it. Otherwise, this is a spurious RHS token, which we skip.
554 case tok::r_paren:
555 if (ParenCount && !isFirstTokenConsumed)
556 return false; // Matches something.
557 Toks.push_back(Tok);
558 ConsumeParen();
559 break;
560 case tok::r_square:
561 if (BracketCount && !isFirstTokenConsumed)
562 return false; // Matches something.
563 Toks.push_back(Tok);
564 ConsumeBracket();
565 break;
566 case tok::r_brace:
567 if (BraceCount && !isFirstTokenConsumed)
568 return false; // Matches something.
569 Toks.push_back(Tok);
570 ConsumeBrace();
571 break;
572
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000573 case tok::code_completion:
574 Toks.push_back(Tok);
575 ConsumeCodeCompletionToken();
576 break;
577
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000578 case tok::string_literal:
579 case tok::wide_string_literal:
Douglas Gregor5cee1192011-07-27 05:40:30 +0000580 case tok::utf8_string_literal:
581 case tok::utf16_string_literal:
582 case tok::utf32_string_literal:
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000583 Toks.push_back(Tok);
584 ConsumeStringToken();
585 break;
Argyrios Kyrtzidis14b91622010-04-23 21:20:12 +0000586 case tok::semi:
587 if (StopAtSemi)
588 return false;
589 // FALL THROUGH.
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +0000590 default:
591 // consume this token.
592 Toks.push_back(Tok);
593 ConsumeToken();
594 break;
595 }
596 isFirstTokenConsumed = false;
597 }
598}
Sebastian Redl6df65482011-09-24 17:48:25 +0000599
600/// \brief Consume tokens and store them in the passed token container until
601/// we've passed the try keyword and constructor initializers and have consumed
Sebastian Redla891a322011-09-30 08:32:17 +0000602/// the opening brace of the function body. The opening brace will be consumed
603/// if and only if there was no error.
Sebastian Redl6df65482011-09-24 17:48:25 +0000604///
Sebastian Redla891a322011-09-30 08:32:17 +0000605/// \return True on error.
606bool Parser::ConsumeAndStoreFunctionPrologue(CachedTokens &Toks) {
Sebastian Redl6df65482011-09-24 17:48:25 +0000607 if (Tok.is(tok::kw_try)) {
608 Toks.push_back(Tok);
609 ConsumeToken();
610 }
Eli Friedmane9ee3822012-02-22 04:49:04 +0000611 bool ReadInitializer = false;
Sebastian Redl6df65482011-09-24 17:48:25 +0000612 if (Tok.is(tok::colon)) {
613 // Initializers can contain braces too.
614 Toks.push_back(Tok);
615 ConsumeToken();
616
617 while (Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) {
618 if (Tok.is(tok::eof) || Tok.is(tok::semi))
Eli Friedmane9ee3822012-02-22 04:49:04 +0000619 return Diag(Tok.getLocation(), diag::err_expected_lbrace);
Sebastian Redl6df65482011-09-24 17:48:25 +0000620
621 // Grab the identifier.
622 if (!ConsumeAndStoreUntil(tok::l_paren, tok::l_brace, Toks,
623 /*StopAtSemi=*/true,
624 /*ConsumeFinalToken=*/false))
Eli Friedmane9ee3822012-02-22 04:49:04 +0000625 return Diag(Tok.getLocation(), diag::err_expected_lparen);
Sebastian Redl6df65482011-09-24 17:48:25 +0000626
627 tok::TokenKind kind = Tok.getKind();
628 Toks.push_back(Tok);
Eli Friedmane9ee3822012-02-22 04:49:04 +0000629 bool IsLParen = (kind == tok::l_paren);
630 SourceLocation LOpen = Tok.getLocation();
631
632 if (IsLParen) {
Sebastian Redl6df65482011-09-24 17:48:25 +0000633 ConsumeParen();
Eli Friedmane9ee3822012-02-22 04:49:04 +0000634 } else {
Sebastian Redl6df65482011-09-24 17:48:25 +0000635 assert(kind == tok::l_brace && "Must be left paren or brace here.");
636 ConsumeBrace();
Sebastian Redla891a322011-09-30 08:32:17 +0000637 // In C++03, this has to be the start of the function body, which
Eli Friedmane9ee3822012-02-22 04:49:04 +0000638 // means the initializer is malformed; we'll diagnose it later.
David Blaikie4e4d0842012-03-11 07:00:24 +0000639 if (!getLangOpts().CPlusPlus0x)
Sebastian Redla891a322011-09-30 08:32:17 +0000640 return false;
Sebastian Redl6df65482011-09-24 17:48:25 +0000641 }
642
643 // Grab the initializer
Eli Friedmane9ee3822012-02-22 04:49:04 +0000644 if (!ConsumeAndStoreUntil(IsLParen ? tok::r_paren : tok::r_brace,
645 Toks, /*StopAtSemi=*/true)) {
646 Diag(Tok, IsLParen ? diag::err_expected_rparen :
647 diag::err_expected_rbrace);
648 Diag(LOpen, diag::note_matching) << (IsLParen ? "(" : "{");
Sebastian Redl6df65482011-09-24 17:48:25 +0000649 return true;
Eli Friedmane9ee3822012-02-22 04:49:04 +0000650 }
651
652 // Grab pack ellipsis, if present
653 if (Tok.is(tok::ellipsis)) {
654 Toks.push_back(Tok);
655 ConsumeToken();
656 }
Sebastian Redla891a322011-09-30 08:32:17 +0000657
658 // Grab the separating comma, if any.
659 if (Tok.is(tok::comma)) {
660 Toks.push_back(Tok);
661 ConsumeToken();
Eli Friedmane9ee3822012-02-22 04:49:04 +0000662 } else if (Tok.isNot(tok::l_brace)) {
663 ReadInitializer = true;
664 break;
Sebastian Redla891a322011-09-30 08:32:17 +0000665 }
Sebastian Redl6df65482011-09-24 17:48:25 +0000666 }
667 }
668
Sebastian Redla891a322011-09-30 08:32:17 +0000669 // Grab any remaining garbage to be diagnosed later. We stop when we reach a
670 // brace: an opening one is the function body, while a closing one probably
671 // means we've reached the end of the class.
Eli Friedmane9ee3822012-02-22 04:49:04 +0000672 ConsumeAndStoreUntil(tok::l_brace, tok::r_brace, Toks,
673 /*StopAtSemi=*/true,
674 /*ConsumeFinalToken=*/false);
675 if (Tok.isNot(tok::l_brace)) {
676 if (ReadInitializer)
677 return Diag(Tok.getLocation(), diag::err_expected_lbrace_or_comma);
678 return Diag(Tok.getLocation(), diag::err_expected_lbrace);
679 }
Sebastian Redla891a322011-09-30 08:32:17 +0000680
681 Toks.push_back(Tok);
682 ConsumeBrace();
683 return false;
Sebastian Redl6df65482011-09-24 17:48:25 +0000684}