]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/clang/lib/Parse/ParseCXXInlineMethods.cpp
Merge llvm, clang, lld, lldb, compiler-rt and libc++ r303571, and update
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / clang / lib / Parse / ParseCXXInlineMethods.cpp
1 //===--- 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
14 #include "clang/Parse/Parser.h"
15 #include "clang/AST/DeclTemplate.h"
16 #include "clang/Parse/ParseDiagnostic.h"
17 #include "clang/Parse/RAIIObjectsForParser.h"
18 #include "clang/Sema/DeclSpec.h"
19 #include "clang/Sema/Scope.h"
20 using namespace clang;
21
22 /// ParseCXXInlineMethodDef - We parsed and verified that the specified
23 /// Declarator is a well formed C++ inline method definition. Now lex its body
24 /// and store its tokens for parsing after the C++ class is complete.
25 NamedDecl *Parser::ParseCXXInlineMethodDef(AccessSpecifier AS,
26                                       AttributeList *AccessAttrs,
27                                       ParsingDeclarator &D,
28                                       const ParsedTemplateInfo &TemplateInfo,
29                                       const VirtSpecifiers& VS,
30                                       SourceLocation PureSpecLoc) {
31   assert(D.isFunctionDeclarator() && "This isn't a function declarator!");
32   assert(Tok.isOneOf(tok::l_brace, tok::colon, tok::kw_try, tok::equal) &&
33          "Current token not a '{', ':', '=', or 'try'!");
34
35   MultiTemplateParamsArg TemplateParams(
36       TemplateInfo.TemplateParams ? TemplateInfo.TemplateParams->data()
37                                   : nullptr,
38       TemplateInfo.TemplateParams ? TemplateInfo.TemplateParams->size() : 0);
39
40   NamedDecl *FnD;
41   if (D.getDeclSpec().isFriendSpecified())
42     FnD = Actions.ActOnFriendFunctionDecl(getCurScope(), D,
43                                           TemplateParams);
44   else {
45     FnD = Actions.ActOnCXXMemberDeclarator(getCurScope(), AS, D,
46                                            TemplateParams, nullptr,
47                                            VS, ICIS_NoInit);
48     if (FnD) {
49       Actions.ProcessDeclAttributeList(getCurScope(), FnD, AccessAttrs);
50       if (PureSpecLoc.isValid())
51         Actions.ActOnPureSpecifier(FnD, PureSpecLoc);
52     }
53   }
54
55   if (FnD)
56     HandleMemberFunctionDeclDelays(D, FnD);
57
58   D.complete(FnD);
59
60   if (TryConsumeToken(tok::equal)) {
61     if (!FnD) {
62       SkipUntil(tok::semi);
63       return nullptr;
64     }
65
66     bool Delete = false;
67     SourceLocation KWLoc;
68     SourceLocation KWEndLoc = Tok.getEndLoc().getLocWithOffset(-1);
69     if (TryConsumeToken(tok::kw_delete, KWLoc)) {
70       Diag(KWLoc, getLangOpts().CPlusPlus11
71                       ? diag::warn_cxx98_compat_defaulted_deleted_function
72                       : diag::ext_defaulted_deleted_function)
73         << 1 /* deleted */;
74       Actions.SetDeclDeleted(FnD, KWLoc);
75       Delete = true;
76       if (auto *DeclAsFunction = dyn_cast<FunctionDecl>(FnD)) {
77         DeclAsFunction->setRangeEnd(KWEndLoc);
78       }
79     } else if (TryConsumeToken(tok::kw_default, KWLoc)) {
80       Diag(KWLoc, getLangOpts().CPlusPlus11
81                       ? diag::warn_cxx98_compat_defaulted_deleted_function
82                       : diag::ext_defaulted_deleted_function)
83         << 0 /* defaulted */;
84       Actions.SetDeclDefaulted(FnD, KWLoc);
85       if (auto *DeclAsFunction = dyn_cast<FunctionDecl>(FnD)) {
86         DeclAsFunction->setRangeEnd(KWEndLoc);
87       }
88     } else {
89       llvm_unreachable("function definition after = not 'delete' or 'default'");
90     }
91
92     if (Tok.is(tok::comma)) {
93       Diag(KWLoc, diag::err_default_delete_in_multiple_declaration)
94         << Delete;
95       SkipUntil(tok::semi);
96     } else if (ExpectAndConsume(tok::semi, diag::err_expected_after,
97                                 Delete ? "delete" : "default")) {
98       SkipUntil(tok::semi);
99     }
100
101     return FnD;
102   }
103
104   if (SkipFunctionBodies && (!FnD || Actions.canSkipFunctionBody(FnD)) &&
105       trySkippingFunctionBody()) {
106     Actions.ActOnSkippedFunctionBody(FnD);
107     return FnD;
108   }
109
110   // In delayed template parsing mode, if we are within a class template
111   // or if we are about to parse function member template then consume
112   // the tokens and store them for parsing at the end of the translation unit.
113   if (getLangOpts().DelayedTemplateParsing &&
114       D.getFunctionDefinitionKind() == FDK_Definition &&
115       !D.getDeclSpec().isConstexprSpecified() &&
116       !(FnD && FnD->getAsFunction() &&
117         FnD->getAsFunction()->getReturnType()->getContainedAutoType()) &&
118       ((Actions.CurContext->isDependentContext() ||
119         (TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate &&
120          TemplateInfo.Kind != ParsedTemplateInfo::ExplicitSpecialization)) &&
121        !Actions.IsInsideALocalClassWithinATemplateFunction())) {
122
123     CachedTokens Toks;
124     LexTemplateFunctionForLateParsing(Toks);
125
126     if (FnD) {
127       FunctionDecl *FD = FnD->getAsFunction();
128       Actions.CheckForFunctionRedefinition(FD);
129       Actions.MarkAsLateParsedTemplate(FD, FnD, Toks);
130     }
131
132     return FnD;
133   }
134
135   // Consume the tokens and store them for later parsing.
136
137   LexedMethod* LM = new LexedMethod(this, FnD);
138   getCurrentClass().LateParsedDeclarations.push_back(LM);
139   LM->TemplateScope = getCurScope()->isTemplateParamScope();
140   CachedTokens &Toks = LM->Toks;
141
142   tok::TokenKind kind = Tok.getKind();
143   // Consume everything up to (and including) the left brace of the
144   // function body.
145   if (ConsumeAndStoreFunctionPrologue(Toks)) {
146     // We didn't find the left-brace we expected after the
147     // constructor initializer; we already printed an error, and it's likely
148     // impossible to recover, so don't try to parse this method later.
149     // Skip over the rest of the decl and back to somewhere that looks
150     // reasonable.
151     SkipMalformedDecl();
152     delete getCurrentClass().LateParsedDeclarations.back();
153     getCurrentClass().LateParsedDeclarations.pop_back();
154     return FnD;
155   } else {
156     // Consume everything up to (and including) the matching right brace.
157     ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/false);
158   }
159
160   // If we're in a function-try-block, we need to store all the catch blocks.
161   if (kind == tok::kw_try) {
162     while (Tok.is(tok::kw_catch)) {
163       ConsumeAndStoreUntil(tok::l_brace, Toks, /*StopAtSemi=*/false);
164       ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/false);
165     }
166   }
167
168   if (FnD) {
169     // If this is a friend function, mark that it's late-parsed so that
170     // it's still known to be a definition even before we attach the
171     // parsed body.  Sema needs to treat friend function definitions
172     // differently during template instantiation, and it's possible for
173     // the containing class to be instantiated before all its member
174     // function definitions are parsed.
175     //
176     // If you remove this, you can remove the code that clears the flag
177     // after parsing the member.
178     if (D.getDeclSpec().isFriendSpecified()) {
179       FunctionDecl *FD = FnD->getAsFunction();
180       Actions.CheckForFunctionRedefinition(FD);
181       FD->setLateTemplateParsed(true);
182     }
183   } else {
184     // If semantic analysis could not build a function declaration,
185     // just throw away the late-parsed declaration.
186     delete getCurrentClass().LateParsedDeclarations.back();
187     getCurrentClass().LateParsedDeclarations.pop_back();
188   }
189
190   return FnD;
191 }
192
193 /// ParseCXXNonStaticMemberInitializer - We parsed and verified that the
194 /// specified Declarator is a well formed C++ non-static data member
195 /// declaration. Now lex its initializer and store its tokens for parsing
196 /// after the class is complete.
197 void Parser::ParseCXXNonStaticMemberInitializer(Decl *VarD) {
198   assert(Tok.isOneOf(tok::l_brace, tok::equal) &&
199          "Current token not a '{' or '='!");
200
201   LateParsedMemberInitializer *MI =
202     new LateParsedMemberInitializer(this, VarD);
203   getCurrentClass().LateParsedDeclarations.push_back(MI);
204   CachedTokens &Toks = MI->Toks;
205
206   tok::TokenKind kind = Tok.getKind();
207   if (kind == tok::equal) {
208     Toks.push_back(Tok);
209     ConsumeToken();
210   }
211
212   if (kind == tok::l_brace) {
213     // Begin by storing the '{' token.
214     Toks.push_back(Tok);
215     ConsumeBrace();
216
217     // Consume everything up to (and including) the matching right brace.
218     ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/true);
219   } else {
220     // Consume everything up to (but excluding) the comma or semicolon.
221     ConsumeAndStoreInitializer(Toks, CIK_DefaultInitializer);
222   }
223
224   // Store an artificial EOF token to ensure that we don't run off the end of
225   // the initializer when we come to parse it.
226   Token Eof;
227   Eof.startToken();
228   Eof.setKind(tok::eof);
229   Eof.setLocation(Tok.getLocation());
230   Eof.setEofData(VarD);
231   Toks.push_back(Eof);
232 }
233
234 Parser::LateParsedDeclaration::~LateParsedDeclaration() {}
235 void Parser::LateParsedDeclaration::ParseLexedMethodDeclarations() {}
236 void Parser::LateParsedDeclaration::ParseLexedMemberInitializers() {}
237 void Parser::LateParsedDeclaration::ParseLexedMethodDefs() {}
238
239 Parser::LateParsedClass::LateParsedClass(Parser *P, ParsingClass *C)
240   : Self(P), Class(C) {}
241
242 Parser::LateParsedClass::~LateParsedClass() {
243   Self->DeallocateParsedClasses(Class);
244 }
245
246 void Parser::LateParsedClass::ParseLexedMethodDeclarations() {
247   Self->ParseLexedMethodDeclarations(*Class);
248 }
249
250 void Parser::LateParsedClass::ParseLexedMemberInitializers() {
251   Self->ParseLexedMemberInitializers(*Class);
252 }
253
254 void Parser::LateParsedClass::ParseLexedMethodDefs() {
255   Self->ParseLexedMethodDefs(*Class);
256 }
257
258 void Parser::LateParsedMethodDeclaration::ParseLexedMethodDeclarations() {
259   Self->ParseLexedMethodDeclaration(*this);
260 }
261
262 void Parser::LexedMethod::ParseLexedMethodDefs() {
263   Self->ParseLexedMethodDef(*this);
264 }
265
266 void Parser::LateParsedMemberInitializer::ParseLexedMemberInitializers() {
267   Self->ParseLexedMemberInitializer(*this);
268 }
269
270 /// ParseLexedMethodDeclarations - We finished parsing the member
271 /// specification of a top (non-nested) C++ class. Now go over the
272 /// stack of method declarations with some parts for which parsing was
273 /// delayed (such as default arguments) and parse them.
274 void Parser::ParseLexedMethodDeclarations(ParsingClass &Class) {
275   bool HasTemplateScope = !Class.TopLevelClass && Class.TemplateScope;
276   ParseScope ClassTemplateScope(this, Scope::TemplateParamScope,
277                                 HasTemplateScope);
278   TemplateParameterDepthRAII CurTemplateDepthTracker(TemplateParameterDepth);
279   if (HasTemplateScope) {
280     Actions.ActOnReenterTemplateScope(getCurScope(), Class.TagOrTemplate);
281     ++CurTemplateDepthTracker;
282   }
283
284   // The current scope is still active if we're the top-level class.
285   // Otherwise we'll need to push and enter a new scope.
286   bool HasClassScope = !Class.TopLevelClass;
287   ParseScope ClassScope(this, Scope::ClassScope|Scope::DeclScope,
288                         HasClassScope);
289   if (HasClassScope)
290     Actions.ActOnStartDelayedMemberDeclarations(getCurScope(),
291                                                 Class.TagOrTemplate);
292
293   for (size_t i = 0; i < Class.LateParsedDeclarations.size(); ++i) {
294     Class.LateParsedDeclarations[i]->ParseLexedMethodDeclarations();
295   }
296
297   if (HasClassScope)
298     Actions.ActOnFinishDelayedMemberDeclarations(getCurScope(),
299                                                  Class.TagOrTemplate);
300 }
301
302 void Parser::ParseLexedMethodDeclaration(LateParsedMethodDeclaration &LM) {
303   // If this is a member template, introduce the template parameter scope.
304   ParseScope TemplateScope(this, Scope::TemplateParamScope, LM.TemplateScope);
305   TemplateParameterDepthRAII CurTemplateDepthTracker(TemplateParameterDepth);
306   if (LM.TemplateScope) {
307     Actions.ActOnReenterTemplateScope(getCurScope(), LM.Method);
308     ++CurTemplateDepthTracker;
309   }
310   // Start the delayed C++ method declaration
311   Actions.ActOnStartDelayedCXXMethodDeclaration(getCurScope(), LM.Method);
312
313   // Introduce the parameters into scope and parse their default
314   // arguments.
315   ParseScope PrototypeScope(this, Scope::FunctionPrototypeScope |
316                             Scope::FunctionDeclarationScope | Scope::DeclScope);
317   for (unsigned I = 0, N = LM.DefaultArgs.size(); I != N; ++I) {
318     auto Param = cast<ParmVarDecl>(LM.DefaultArgs[I].Param);
319     // Introduce the parameter into scope.
320     bool HasUnparsed = Param->hasUnparsedDefaultArg();
321     Actions.ActOnDelayedCXXMethodParameter(getCurScope(), Param);
322     std::unique_ptr<CachedTokens> Toks = std::move(LM.DefaultArgs[I].Toks);
323     if (Toks) {
324       // Mark the end of the default argument so that we know when to stop when
325       // we parse it later on.
326       Token LastDefaultArgToken = Toks->back();
327       Token DefArgEnd;
328       DefArgEnd.startToken();
329       DefArgEnd.setKind(tok::eof);
330       DefArgEnd.setLocation(LastDefaultArgToken.getEndLoc());
331       DefArgEnd.setEofData(Param);
332       Toks->push_back(DefArgEnd);
333
334       // Parse the default argument from its saved token stream.
335       Toks->push_back(Tok); // So that the current token doesn't get lost
336       PP.EnterTokenStream(*Toks, true);
337
338       // Consume the previously-pushed token.
339       ConsumeAnyToken();
340
341       // Consume the '='.
342       assert(Tok.is(tok::equal) && "Default argument not starting with '='");
343       SourceLocation EqualLoc = ConsumeToken();
344
345       // The argument isn't actually potentially evaluated unless it is
346       // used.
347       EnterExpressionEvaluationContext Eval(
348           Actions,
349           Sema::ExpressionEvaluationContext::PotentiallyEvaluatedIfUsed, Param);
350
351       ExprResult DefArgResult;
352       if (getLangOpts().CPlusPlus11 && Tok.is(tok::l_brace)) {
353         Diag(Tok, diag::warn_cxx98_compat_generalized_initializer_lists);
354         DefArgResult = ParseBraceInitializer();
355       } else
356         DefArgResult = ParseAssignmentExpression();
357       DefArgResult = Actions.CorrectDelayedTyposInExpr(DefArgResult);
358       if (DefArgResult.isInvalid()) {
359         Actions.ActOnParamDefaultArgumentError(Param, EqualLoc);
360       } else {
361         if (Tok.isNot(tok::eof) || Tok.getEofData() != Param) {
362           // The last two tokens are the terminator and the saved value of
363           // Tok; the last token in the default argument is the one before
364           // those.
365           assert(Toks->size() >= 3 && "expected a token in default arg");
366           Diag(Tok.getLocation(), diag::err_default_arg_unparsed)
367             << SourceRange(Tok.getLocation(),
368                            (*Toks)[Toks->size() - 3].getLocation());
369         }
370         Actions.ActOnParamDefaultArgument(Param, EqualLoc,
371                                           DefArgResult.get());
372       }
373
374       // There could be leftover tokens (e.g. because of an error).
375       // Skip through until we reach the 'end of default argument' token.
376       while (Tok.isNot(tok::eof))
377         ConsumeAnyToken();
378
379       if (Tok.is(tok::eof) && Tok.getEofData() == Param)
380         ConsumeAnyToken();
381     } else if (HasUnparsed) {
382       assert(Param->hasInheritedDefaultArg());
383       FunctionDecl *Old = cast<FunctionDecl>(LM.Method)->getPreviousDecl();
384       ParmVarDecl *OldParam = Old->getParamDecl(I);
385       assert (!OldParam->hasUnparsedDefaultArg());
386       if (OldParam->hasUninstantiatedDefaultArg())
387         Param->setUninstantiatedDefaultArg(
388             OldParam->getUninstantiatedDefaultArg());
389       else
390         Param->setDefaultArg(OldParam->getInit());
391     }
392   }
393
394   // Parse a delayed exception-specification, if there is one.
395   if (CachedTokens *Toks = LM.ExceptionSpecTokens) {
396     // Add the 'stop' token.
397     Token LastExceptionSpecToken = Toks->back();
398     Token ExceptionSpecEnd;
399     ExceptionSpecEnd.startToken();
400     ExceptionSpecEnd.setKind(tok::eof);
401     ExceptionSpecEnd.setLocation(LastExceptionSpecToken.getEndLoc());
402     ExceptionSpecEnd.setEofData(LM.Method);
403     Toks->push_back(ExceptionSpecEnd);
404
405     // Parse the default argument from its saved token stream.
406     Toks->push_back(Tok); // So that the current token doesn't get lost
407     PP.EnterTokenStream(*Toks, true);
408
409     // Consume the previously-pushed token.
410     ConsumeAnyToken();
411
412     // C++11 [expr.prim.general]p3:
413     //   If a declaration declares a member function or member function
414     //   template of a class X, the expression this is a prvalue of type
415     //   "pointer to cv-qualifier-seq X" between the optional cv-qualifer-seq
416     //   and the end of the function-definition, member-declarator, or
417     //   declarator.
418     CXXMethodDecl *Method;
419     if (FunctionTemplateDecl *FunTmpl
420           = dyn_cast<FunctionTemplateDecl>(LM.Method))
421       Method = cast<CXXMethodDecl>(FunTmpl->getTemplatedDecl());
422     else
423       Method = cast<CXXMethodDecl>(LM.Method);
424
425     Sema::CXXThisScopeRAII ThisScope(Actions, Method->getParent(),
426                                      Method->getTypeQualifiers(),
427                                      getLangOpts().CPlusPlus11);
428
429     // Parse the exception-specification.
430     SourceRange SpecificationRange;
431     SmallVector<ParsedType, 4> DynamicExceptions;
432     SmallVector<SourceRange, 4> DynamicExceptionRanges;
433     ExprResult NoexceptExpr;
434     CachedTokens *ExceptionSpecTokens;
435
436     ExceptionSpecificationType EST
437       = tryParseExceptionSpecification(/*Delayed=*/false, SpecificationRange,
438                                        DynamicExceptions,
439                                        DynamicExceptionRanges, NoexceptExpr,
440                                        ExceptionSpecTokens);
441
442     if (Tok.isNot(tok::eof) || Tok.getEofData() != LM.Method)
443       Diag(Tok.getLocation(), diag::err_except_spec_unparsed);
444
445     // Attach the exception-specification to the method.
446     Actions.actOnDelayedExceptionSpecification(LM.Method, EST,
447                                                SpecificationRange,
448                                                DynamicExceptions,
449                                                DynamicExceptionRanges,
450                                                NoexceptExpr.isUsable()?
451                                                  NoexceptExpr.get() : nullptr);
452
453     // There could be leftover tokens (e.g. because of an error).
454     // Skip through until we reach the original token position.
455     while (Tok.isNot(tok::eof))
456       ConsumeAnyToken();
457
458     // Clean up the remaining EOF token.
459     if (Tok.is(tok::eof) && Tok.getEofData() == LM.Method)
460       ConsumeAnyToken();
461
462     delete Toks;
463     LM.ExceptionSpecTokens = nullptr;
464   }
465
466   PrototypeScope.Exit();
467
468   // Finish the delayed C++ method declaration.
469   Actions.ActOnFinishDelayedCXXMethodDeclaration(getCurScope(), LM.Method);
470 }
471
472 /// ParseLexedMethodDefs - We finished parsing the member specification of a top
473 /// (non-nested) C++ class. Now go over the stack of lexed methods that were
474 /// collected during its parsing and parse them all.
475 void Parser::ParseLexedMethodDefs(ParsingClass &Class) {
476   bool HasTemplateScope = !Class.TopLevelClass && Class.TemplateScope;
477   ParseScope ClassTemplateScope(this, Scope::TemplateParamScope, HasTemplateScope);
478   TemplateParameterDepthRAII CurTemplateDepthTracker(TemplateParameterDepth);
479   if (HasTemplateScope) {
480     Actions.ActOnReenterTemplateScope(getCurScope(), Class.TagOrTemplate);
481     ++CurTemplateDepthTracker;
482   }
483   bool HasClassScope = !Class.TopLevelClass;
484   ParseScope ClassScope(this, Scope::ClassScope|Scope::DeclScope,
485                         HasClassScope);
486
487   for (size_t i = 0; i < Class.LateParsedDeclarations.size(); ++i) {
488     Class.LateParsedDeclarations[i]->ParseLexedMethodDefs();
489   }
490 }
491
492 void Parser::ParseLexedMethodDef(LexedMethod &LM) {
493   // If this is a member template, introduce the template parameter scope.
494   ParseScope TemplateScope(this, Scope::TemplateParamScope, LM.TemplateScope);
495   TemplateParameterDepthRAII CurTemplateDepthTracker(TemplateParameterDepth);
496   if (LM.TemplateScope) {
497     Actions.ActOnReenterTemplateScope(getCurScope(), LM.D);
498     ++CurTemplateDepthTracker;
499   }
500
501   assert(!LM.Toks.empty() && "Empty body!");
502   Token LastBodyToken = LM.Toks.back();
503   Token BodyEnd;
504   BodyEnd.startToken();
505   BodyEnd.setKind(tok::eof);
506   BodyEnd.setLocation(LastBodyToken.getEndLoc());
507   BodyEnd.setEofData(LM.D);
508   LM.Toks.push_back(BodyEnd);
509   // Append the current token at the end of the new token stream so that it
510   // doesn't get lost.
511   LM.Toks.push_back(Tok);
512   PP.EnterTokenStream(LM.Toks, true);
513
514   // Consume the previously pushed token.
515   ConsumeAnyToken(/*ConsumeCodeCompletionTok=*/true);
516   assert(Tok.isOneOf(tok::l_brace, tok::colon, tok::kw_try)
517          && "Inline method not starting with '{', ':' or 'try'");
518
519   // Parse the method body. Function body parsing code is similar enough
520   // to be re-used for method bodies as well.
521   ParseScope FnScope(this, Scope::FnScope|Scope::DeclScope);
522   Actions.ActOnStartOfFunctionDef(getCurScope(), LM.D);
523
524   if (Tok.is(tok::kw_try)) {
525     ParseFunctionTryBlock(LM.D, FnScope);
526
527     while (Tok.isNot(tok::eof))
528       ConsumeAnyToken();
529
530     if (Tok.is(tok::eof) && Tok.getEofData() == LM.D)
531       ConsumeAnyToken();
532     return;
533   }
534   if (Tok.is(tok::colon)) {
535     ParseConstructorInitializer(LM.D);
536
537     // Error recovery.
538     if (!Tok.is(tok::l_brace)) {
539       FnScope.Exit();
540       Actions.ActOnFinishFunctionBody(LM.D, nullptr);
541
542       while (Tok.isNot(tok::eof))
543         ConsumeAnyToken();
544
545       if (Tok.is(tok::eof) && Tok.getEofData() == LM.D)
546         ConsumeAnyToken();
547       return;
548     }
549   } else
550     Actions.ActOnDefaultCtorInitializers(LM.D);
551
552   assert((Actions.getDiagnostics().hasErrorOccurred() ||
553           !isa<FunctionTemplateDecl>(LM.D) ||
554           cast<FunctionTemplateDecl>(LM.D)->getTemplateParameters()->getDepth()
555             < TemplateParameterDepth) &&
556          "TemplateParameterDepth should be greater than the depth of "
557          "current template being instantiated!");
558
559   ParseFunctionStatementBody(LM.D, FnScope);
560
561   // Clear the late-template-parsed bit if we set it before.
562   if (LM.D)
563     LM.D->getAsFunction()->setLateTemplateParsed(false);
564
565   while (Tok.isNot(tok::eof))
566     ConsumeAnyToken();
567
568   if (Tok.is(tok::eof) && Tok.getEofData() == LM.D)
569     ConsumeAnyToken();
570
571   if (auto *FD = dyn_cast_or_null<FunctionDecl>(LM.D))
572     if (isa<CXXMethodDecl>(FD) ||
573         FD->isInIdentifierNamespace(Decl::IDNS_OrdinaryFriend))
574       Actions.ActOnFinishInlineFunctionDef(FD);
575 }
576
577 /// ParseLexedMemberInitializers - We finished parsing the member specification
578 /// of a top (non-nested) C++ class. Now go over the stack of lexed data member
579 /// initializers that were collected during its parsing and parse them all.
580 void Parser::ParseLexedMemberInitializers(ParsingClass &Class) {
581   bool HasTemplateScope = !Class.TopLevelClass && Class.TemplateScope;
582   ParseScope ClassTemplateScope(this, Scope::TemplateParamScope,
583                                 HasTemplateScope);
584   TemplateParameterDepthRAII CurTemplateDepthTracker(TemplateParameterDepth);
585   if (HasTemplateScope) {
586     Actions.ActOnReenterTemplateScope(getCurScope(), Class.TagOrTemplate);
587     ++CurTemplateDepthTracker;
588   }
589   // Set or update the scope flags.
590   bool AlreadyHasClassScope = Class.TopLevelClass;
591   unsigned ScopeFlags = Scope::ClassScope|Scope::DeclScope;
592   ParseScope ClassScope(this, ScopeFlags, !AlreadyHasClassScope);
593   ParseScopeFlags ClassScopeFlags(this, ScopeFlags, AlreadyHasClassScope);
594
595   if (!AlreadyHasClassScope)
596     Actions.ActOnStartDelayedMemberDeclarations(getCurScope(),
597                                                 Class.TagOrTemplate);
598
599   if (!Class.LateParsedDeclarations.empty()) {
600     // C++11 [expr.prim.general]p4:
601     //   Otherwise, if a member-declarator declares a non-static data member 
602     //  (9.2) of a class X, the expression this is a prvalue of type "pointer
603     //  to X" within the optional brace-or-equal-initializer. It shall not 
604     //  appear elsewhere in the member-declarator.
605     Sema::CXXThisScopeRAII ThisScope(Actions, Class.TagOrTemplate,
606                                      /*TypeQuals=*/(unsigned)0);
607
608     for (size_t i = 0; i < Class.LateParsedDeclarations.size(); ++i) {
609       Class.LateParsedDeclarations[i]->ParseLexedMemberInitializers();
610     }
611   }
612   
613   if (!AlreadyHasClassScope)
614     Actions.ActOnFinishDelayedMemberDeclarations(getCurScope(),
615                                                  Class.TagOrTemplate);
616
617   Actions.ActOnFinishDelayedMemberInitializers(Class.TagOrTemplate);
618 }
619
620 void Parser::ParseLexedMemberInitializer(LateParsedMemberInitializer &MI) {
621   if (!MI.Field || MI.Field->isInvalidDecl())
622     return;
623
624   // Append the current token at the end of the new token stream so that it
625   // doesn't get lost.
626   MI.Toks.push_back(Tok);
627   PP.EnterTokenStream(MI.Toks, true);
628
629   // Consume the previously pushed token.
630   ConsumeAnyToken(/*ConsumeCodeCompletionTok=*/true);
631
632   SourceLocation EqualLoc;
633
634   Actions.ActOnStartCXXInClassMemberInitializer();
635
636   ExprResult Init = ParseCXXMemberInitializer(MI.Field, /*IsFunction=*/false, 
637                                               EqualLoc);
638
639   Actions.ActOnFinishCXXInClassMemberInitializer(MI.Field, EqualLoc,
640                                                  Init.get());
641
642   // The next token should be our artificial terminating EOF token.
643   if (Tok.isNot(tok::eof)) {
644     if (!Init.isInvalid()) {
645       SourceLocation EndLoc = PP.getLocForEndOfToken(PrevTokLocation);
646       if (!EndLoc.isValid())
647         EndLoc = Tok.getLocation();
648       // No fixit; we can't recover as if there were a semicolon here.
649       Diag(EndLoc, diag::err_expected_semi_decl_list);
650     }
651
652     // Consume tokens until we hit the artificial EOF.
653     while (Tok.isNot(tok::eof))
654       ConsumeAnyToken();
655   }
656   // Make sure this is *our* artificial EOF token.
657   if (Tok.getEofData() == MI.Field)
658     ConsumeAnyToken();
659 }
660
661 /// ConsumeAndStoreUntil - Consume and store the token at the passed token
662 /// container until the token 'T' is reached (which gets
663 /// consumed/stored too, if ConsumeFinalToken).
664 /// If StopAtSemi is true, then we will stop early at a ';' character.
665 /// Returns true if token 'T1' or 'T2' was found.
666 /// NOTE: This is a specialized version of Parser::SkipUntil.
667 bool Parser::ConsumeAndStoreUntil(tok::TokenKind T1, tok::TokenKind T2,
668                                   CachedTokens &Toks,
669                                   bool StopAtSemi, bool ConsumeFinalToken) {
670   // We always want this function to consume at least one token if the first
671   // token isn't T and if not at EOF.
672   bool isFirstTokenConsumed = true;
673   while (1) {
674     // If we found one of the tokens, stop and return true.
675     if (Tok.is(T1) || Tok.is(T2)) {
676       if (ConsumeFinalToken) {
677         Toks.push_back(Tok);
678         ConsumeAnyToken();
679       }
680       return true;
681     }
682
683     switch (Tok.getKind()) {
684     case tok::eof:
685     case tok::annot_module_begin:
686     case tok::annot_module_end:
687     case tok::annot_module_include:
688       // Ran out of tokens.
689       return false;
690
691     case tok::l_paren:
692       // Recursively consume properly-nested parens.
693       Toks.push_back(Tok);
694       ConsumeParen();
695       ConsumeAndStoreUntil(tok::r_paren, Toks, /*StopAtSemi=*/false);
696       break;
697     case tok::l_square:
698       // Recursively consume properly-nested square brackets.
699       Toks.push_back(Tok);
700       ConsumeBracket();
701       ConsumeAndStoreUntil(tok::r_square, Toks, /*StopAtSemi=*/false);
702       break;
703     case tok::l_brace:
704       // Recursively consume properly-nested braces.
705       Toks.push_back(Tok);
706       ConsumeBrace();
707       ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/false);
708       break;
709
710     // Okay, we found a ']' or '}' or ')', which we think should be balanced.
711     // Since the user wasn't looking for this token (if they were, it would
712     // already be handled), this isn't balanced.  If there is a LHS token at a
713     // higher level, we will assume that this matches the unbalanced token
714     // and return it.  Otherwise, this is a spurious RHS token, which we skip.
715     case tok::r_paren:
716       if (ParenCount && !isFirstTokenConsumed)
717         return false;  // Matches something.
718       Toks.push_back(Tok);
719       ConsumeParen();
720       break;
721     case tok::r_square:
722       if (BracketCount && !isFirstTokenConsumed)
723         return false;  // Matches something.
724       Toks.push_back(Tok);
725       ConsumeBracket();
726       break;
727     case tok::r_brace:
728       if (BraceCount && !isFirstTokenConsumed)
729         return false;  // Matches something.
730       Toks.push_back(Tok);
731       ConsumeBrace();
732       break;
733
734     case tok::semi:
735       if (StopAtSemi)
736         return false;
737       // FALL THROUGH.
738     default:
739       // consume this token.
740       Toks.push_back(Tok);
741       ConsumeAnyToken(/*ConsumeCodeCompletionTok*/true);
742       break;
743     }
744     isFirstTokenConsumed = false;
745   }
746 }
747
748 /// \brief Consume tokens and store them in the passed token container until
749 /// we've passed the try keyword and constructor initializers and have consumed
750 /// the opening brace of the function body. The opening brace will be consumed
751 /// if and only if there was no error.
752 ///
753 /// \return True on error.
754 bool Parser::ConsumeAndStoreFunctionPrologue(CachedTokens &Toks) {
755   if (Tok.is(tok::kw_try)) {
756     Toks.push_back(Tok);
757     ConsumeToken();
758   }
759
760   if (Tok.isNot(tok::colon)) {
761     // Easy case, just a function body.
762
763     // Grab any remaining garbage to be diagnosed later. We stop when we reach a
764     // brace: an opening one is the function body, while a closing one probably
765     // means we've reached the end of the class.
766     ConsumeAndStoreUntil(tok::l_brace, tok::r_brace, Toks,
767                          /*StopAtSemi=*/true,
768                          /*ConsumeFinalToken=*/false);
769     if (Tok.isNot(tok::l_brace))
770       return Diag(Tok.getLocation(), diag::err_expected) << tok::l_brace;
771
772     Toks.push_back(Tok);
773     ConsumeBrace();
774     return false;
775   }
776
777   Toks.push_back(Tok);
778   ConsumeToken();
779
780   // We can't reliably skip over a mem-initializer-id, because it could be
781   // a template-id involving not-yet-declared names. Given:
782   //
783   //   S ( ) : a < b < c > ( e )
784   //
785   // 'e' might be an initializer or part of a template argument, depending
786   // on whether 'b' is a template.
787
788   // Track whether we might be inside a template argument. We can give
789   // significantly better diagnostics if we know that we're not.
790   bool MightBeTemplateArgument = false;
791
792   while (true) {
793     // Skip over the mem-initializer-id, if possible.
794     if (Tok.is(tok::kw_decltype)) {
795       Toks.push_back(Tok);
796       SourceLocation OpenLoc = ConsumeToken();
797       if (Tok.isNot(tok::l_paren))
798         return Diag(Tok.getLocation(), diag::err_expected_lparen_after)
799                  << "decltype";
800       Toks.push_back(Tok);
801       ConsumeParen();
802       if (!ConsumeAndStoreUntil(tok::r_paren, Toks, /*StopAtSemi=*/true)) {
803         Diag(Tok.getLocation(), diag::err_expected) << tok::r_paren;
804         Diag(OpenLoc, diag::note_matching) << tok::l_paren;
805         return true;
806       }
807     }
808     do {
809       // Walk over a component of a nested-name-specifier.
810       if (Tok.is(tok::coloncolon)) {
811         Toks.push_back(Tok);
812         ConsumeToken();
813
814         if (Tok.is(tok::kw_template)) {
815           Toks.push_back(Tok);
816           ConsumeToken();
817         }
818       }
819
820       if (Tok.is(tok::identifier)) {
821         Toks.push_back(Tok);
822         ConsumeToken();
823       } else {
824         break;
825       }
826     } while (Tok.is(tok::coloncolon));
827
828     if (Tok.is(tok::code_completion)) {
829       Toks.push_back(Tok);
830       ConsumeCodeCompletionToken();
831       if (Tok.isOneOf(tok::identifier, tok::coloncolon, tok::kw_decltype)) {
832         // Could be the start of another member initializer (the ',' has not
833         // been written yet)
834         continue;
835       }
836     }
837
838     if (Tok.is(tok::comma)) {
839       // The initialization is missing, we'll diagnose it later.
840       Toks.push_back(Tok);
841       ConsumeToken();
842       continue;
843     }
844     if (Tok.is(tok::less))
845       MightBeTemplateArgument = true;
846
847     if (MightBeTemplateArgument) {
848       // We may be inside a template argument list. Grab up to the start of the
849       // next parenthesized initializer or braced-init-list. This *might* be the
850       // initializer, or it might be a subexpression in the template argument
851       // list.
852       // FIXME: Count angle brackets, and clear MightBeTemplateArgument
853       //        if all angles are closed.
854       if (!ConsumeAndStoreUntil(tok::l_paren, tok::l_brace, Toks,
855                                 /*StopAtSemi=*/true,
856                                 /*ConsumeFinalToken=*/false)) {
857         // We're not just missing the initializer, we're also missing the
858         // function body!
859         return Diag(Tok.getLocation(), diag::err_expected) << tok::l_brace;
860       }
861     } else if (Tok.isNot(tok::l_paren) && Tok.isNot(tok::l_brace)) {
862       // We found something weird in a mem-initializer-id.
863       if (getLangOpts().CPlusPlus11)
864         return Diag(Tok.getLocation(), diag::err_expected_either)
865                << tok::l_paren << tok::l_brace;
866       else
867         return Diag(Tok.getLocation(), diag::err_expected) << tok::l_paren;
868     }
869
870     tok::TokenKind kind = Tok.getKind();
871     Toks.push_back(Tok);
872     bool IsLParen = (kind == tok::l_paren);
873     SourceLocation OpenLoc = Tok.getLocation();
874
875     if (IsLParen) {
876       ConsumeParen();
877     } else {
878       assert(kind == tok::l_brace && "Must be left paren or brace here.");
879       ConsumeBrace();
880       // In C++03, this has to be the start of the function body, which
881       // means the initializer is malformed; we'll diagnose it later.
882       if (!getLangOpts().CPlusPlus11)
883         return false;
884
885       const Token &PreviousToken = Toks[Toks.size() - 2];
886       if (!MightBeTemplateArgument &&
887           !PreviousToken.isOneOf(tok::identifier, tok::greater,
888                                  tok::greatergreater)) {
889         // If the opening brace is not preceded by one of these tokens, we are
890         // missing the mem-initializer-id. In order to recover better, we need
891         // to use heuristics to determine if this '{' is most likely the
892         // begining of a brace-init-list or the function body.
893         // Check the token after the corresponding '}'.
894         TentativeParsingAction PA(*this);
895         if (SkipUntil(tok::r_brace) &&
896             !Tok.isOneOf(tok::comma, tok::ellipsis, tok::l_brace)) {
897           // Consider there was a malformed initializer and this is the start
898           // of the function body. We'll diagnose it later.
899           PA.Revert();
900           return false;
901         }
902         PA.Revert();
903       }
904     }
905
906     // Grab the initializer (or the subexpression of the template argument).
907     // FIXME: If we support lambdas here, we'll need to set StopAtSemi to false
908     //        if we might be inside the braces of a lambda-expression.
909     tok::TokenKind CloseKind = IsLParen ? tok::r_paren : tok::r_brace;
910     if (!ConsumeAndStoreUntil(CloseKind, Toks, /*StopAtSemi=*/true)) {
911       Diag(Tok, diag::err_expected) << CloseKind;
912       Diag(OpenLoc, diag::note_matching) << kind;
913       return true;
914     }
915
916     // Grab pack ellipsis, if present.
917     if (Tok.is(tok::ellipsis)) {
918       Toks.push_back(Tok);
919       ConsumeToken();
920     }
921
922     // If we know we just consumed a mem-initializer, we must have ',' or '{'
923     // next.
924     if (Tok.is(tok::comma)) {
925       Toks.push_back(Tok);
926       ConsumeToken();
927     } else if (Tok.is(tok::l_brace)) {
928       // This is the function body if the ')' or '}' is immediately followed by
929       // a '{'. That cannot happen within a template argument, apart from the
930       // case where a template argument contains a compound literal:
931       //
932       //   S ( ) : a < b < c > ( d ) { }
933       //   // End of declaration, or still inside the template argument?
934       //
935       // ... and the case where the template argument contains a lambda:
936       //
937       //   S ( ) : a < 0 && b < c > ( d ) + [ ] ( ) { return 0; }
938       //     ( ) > ( ) { }
939       //
940       // FIXME: Disambiguate these cases. Note that the latter case is probably
941       //        going to be made ill-formed by core issue 1607.
942       Toks.push_back(Tok);
943       ConsumeBrace();
944       return false;
945     } else if (!MightBeTemplateArgument) {
946       return Diag(Tok.getLocation(), diag::err_expected_either) << tok::l_brace
947                                                                 << tok::comma;
948     }
949   }
950 }
951
952 /// \brief Consume and store tokens from the '?' to the ':' in a conditional
953 /// expression.
954 bool Parser::ConsumeAndStoreConditional(CachedTokens &Toks) {
955   // Consume '?'.
956   assert(Tok.is(tok::question));
957   Toks.push_back(Tok);
958   ConsumeToken();
959
960   while (Tok.isNot(tok::colon)) {
961     if (!ConsumeAndStoreUntil(tok::question, tok::colon, Toks,
962                               /*StopAtSemi=*/true,
963                               /*ConsumeFinalToken=*/false))
964       return false;
965
966     // If we found a nested conditional, consume it.
967     if (Tok.is(tok::question) && !ConsumeAndStoreConditional(Toks))
968       return false;
969   }
970
971   // Consume ':'.
972   Toks.push_back(Tok);
973   ConsumeToken();
974   return true;
975 }
976
977 /// \brief A tentative parsing action that can also revert token annotations.
978 class Parser::UnannotatedTentativeParsingAction : public TentativeParsingAction {
979 public:
980   explicit UnannotatedTentativeParsingAction(Parser &Self,
981                                              tok::TokenKind EndKind)
982       : TentativeParsingAction(Self), Self(Self), EndKind(EndKind) {
983     // Stash away the old token stream, so we can restore it once the
984     // tentative parse is complete.
985     TentativeParsingAction Inner(Self);
986     Self.ConsumeAndStoreUntil(EndKind, Toks, true, /*ConsumeFinalToken*/false);
987     Inner.Revert();
988   }
989
990   void RevertAnnotations() {
991     Revert();
992
993     // Put back the original tokens.
994     Self.SkipUntil(EndKind, StopAtSemi | StopBeforeMatch);
995     if (Toks.size()) {
996       auto Buffer = llvm::make_unique<Token[]>(Toks.size());
997       std::copy(Toks.begin() + 1, Toks.end(), Buffer.get());
998       Buffer[Toks.size() - 1] = Self.Tok;
999       Self.PP.EnterTokenStream(std::move(Buffer), Toks.size(), true);
1000
1001       Self.Tok = Toks.front();
1002     }
1003   }
1004
1005 private:
1006   Parser &Self;
1007   CachedTokens Toks;
1008   tok::TokenKind EndKind;
1009 };
1010
1011 /// ConsumeAndStoreInitializer - Consume and store the token at the passed token
1012 /// container until the end of the current initializer expression (either a
1013 /// default argument or an in-class initializer for a non-static data member).
1014 ///
1015 /// Returns \c true if we reached the end of something initializer-shaped,
1016 /// \c false if we bailed out.
1017 bool Parser::ConsumeAndStoreInitializer(CachedTokens &Toks,
1018                                         CachedInitKind CIK) {
1019   // We always want this function to consume at least one token if not at EOF.
1020   bool IsFirstToken = true;
1021
1022   // Number of possible unclosed <s we've seen so far. These might be templates,
1023   // and might not, but if there were none of them (or we know for sure that
1024   // we're within a template), we can avoid a tentative parse.
1025   unsigned AngleCount = 0;
1026   unsigned KnownTemplateCount = 0;
1027
1028   while (1) {
1029     switch (Tok.getKind()) {
1030     case tok::comma:
1031       // If we might be in a template, perform a tentative parse to check.
1032       if (!AngleCount)
1033         // Not a template argument: this is the end of the initializer.
1034         return true;
1035       if (KnownTemplateCount)
1036         goto consume_token;
1037
1038       // We hit a comma inside angle brackets. This is the hard case. The
1039       // rule we follow is:
1040       //  * For a default argument, if the tokens after the comma form a
1041       //    syntactically-valid parameter-declaration-clause, in which each
1042       //    parameter has an initializer, then this comma ends the default
1043       //    argument.
1044       //  * For a default initializer, if the tokens after the comma form a
1045       //    syntactically-valid init-declarator-list, then this comma ends
1046       //    the default initializer.
1047       {
1048         UnannotatedTentativeParsingAction PA(*this,
1049                                              CIK == CIK_DefaultInitializer
1050                                                ? tok::semi : tok::r_paren);
1051         Sema::TentativeAnalysisScope Scope(Actions);
1052
1053         TPResult Result = TPResult::Error;
1054         ConsumeToken();
1055         switch (CIK) {
1056         case CIK_DefaultInitializer:
1057           Result = TryParseInitDeclaratorList();
1058           // If we parsed a complete, ambiguous init-declarator-list, this
1059           // is only syntactically-valid if it's followed by a semicolon.
1060           if (Result == TPResult::Ambiguous && Tok.isNot(tok::semi))
1061             Result = TPResult::False;
1062           break;
1063
1064         case CIK_DefaultArgument:
1065           bool InvalidAsDeclaration = false;
1066           Result = TryParseParameterDeclarationClause(
1067               &InvalidAsDeclaration, /*VersusTemplateArgument=*/true);
1068           // If this is an expression or a declaration with a missing
1069           // 'typename', assume it's not a declaration.
1070           if (Result == TPResult::Ambiguous && InvalidAsDeclaration)
1071             Result = TPResult::False;
1072           break;
1073         }
1074
1075         // If what follows could be a declaration, it is a declaration.
1076         if (Result != TPResult::False && Result != TPResult::Error) {
1077           PA.Revert();
1078           return true;
1079         }
1080
1081         // In the uncommon case that we decide the following tokens are part
1082         // of a template argument, revert any annotations we've performed in
1083         // those tokens. We're not going to look them up until we've parsed
1084         // the rest of the class, and that might add more declarations.
1085         PA.RevertAnnotations();
1086       }
1087
1088       // Keep going. We know we're inside a template argument list now.
1089       ++KnownTemplateCount;
1090       goto consume_token;
1091
1092     case tok::eof:
1093     case tok::annot_module_begin:
1094     case tok::annot_module_end:
1095     case tok::annot_module_include:
1096       // Ran out of tokens.
1097       return false;
1098
1099     case tok::less:
1100       // FIXME: A '<' can only start a template-id if it's preceded by an
1101       // identifier, an operator-function-id, or a literal-operator-id.
1102       ++AngleCount;
1103       goto consume_token;
1104
1105     case tok::question:
1106       // In 'a ? b : c', 'b' can contain an unparenthesized comma. If it does,
1107       // that is *never* the end of the initializer. Skip to the ':'.
1108       if (!ConsumeAndStoreConditional(Toks))
1109         return false;
1110       break;
1111
1112     case tok::greatergreatergreater:
1113       if (!getLangOpts().CPlusPlus11)
1114         goto consume_token;
1115       if (AngleCount) --AngleCount;
1116       if (KnownTemplateCount) --KnownTemplateCount;
1117       // Fall through.
1118     case tok::greatergreater:
1119       if (!getLangOpts().CPlusPlus11)
1120         goto consume_token;
1121       if (AngleCount) --AngleCount;
1122       if (KnownTemplateCount) --KnownTemplateCount;
1123       // Fall through.
1124     case tok::greater:
1125       if (AngleCount) --AngleCount;
1126       if (KnownTemplateCount) --KnownTemplateCount;
1127       goto consume_token;
1128
1129     case tok::kw_template:
1130       // 'template' identifier '<' is known to start a template argument list,
1131       // and can be used to disambiguate the parse.
1132       // FIXME: Support all forms of 'template' unqualified-id '<'.
1133       Toks.push_back(Tok);
1134       ConsumeToken();
1135       if (Tok.is(tok::identifier)) {
1136         Toks.push_back(Tok);
1137         ConsumeToken();
1138         if (Tok.is(tok::less)) {
1139           ++AngleCount;
1140           ++KnownTemplateCount;
1141           Toks.push_back(Tok);
1142           ConsumeToken();
1143         }
1144       }
1145       break;
1146
1147     case tok::kw_operator:
1148       // If 'operator' precedes other punctuation, that punctuation loses
1149       // its special behavior.
1150       Toks.push_back(Tok);
1151       ConsumeToken();
1152       switch (Tok.getKind()) {
1153       case tok::comma:
1154       case tok::greatergreatergreater:
1155       case tok::greatergreater:
1156       case tok::greater:
1157       case tok::less:
1158         Toks.push_back(Tok);
1159         ConsumeToken();
1160         break;
1161       default:
1162         break;
1163       }
1164       break;
1165
1166     case tok::l_paren:
1167       // Recursively consume properly-nested parens.
1168       Toks.push_back(Tok);
1169       ConsumeParen();
1170       ConsumeAndStoreUntil(tok::r_paren, Toks, /*StopAtSemi=*/false);
1171       break;
1172     case tok::l_square:
1173       // Recursively consume properly-nested square brackets.
1174       Toks.push_back(Tok);
1175       ConsumeBracket();
1176       ConsumeAndStoreUntil(tok::r_square, Toks, /*StopAtSemi=*/false);
1177       break;
1178     case tok::l_brace:
1179       // Recursively consume properly-nested braces.
1180       Toks.push_back(Tok);
1181       ConsumeBrace();
1182       ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/false);
1183       break;
1184
1185     // Okay, we found a ']' or '}' or ')', which we think should be balanced.
1186     // Since the user wasn't looking for this token (if they were, it would
1187     // already be handled), this isn't balanced.  If there is a LHS token at a
1188     // higher level, we will assume that this matches the unbalanced token
1189     // and return it.  Otherwise, this is a spurious RHS token, which we
1190     // consume and pass on to downstream code to diagnose.
1191     case tok::r_paren:
1192       if (CIK == CIK_DefaultArgument)
1193         return true; // End of the default argument.
1194       if (ParenCount && !IsFirstToken)
1195         return false;
1196       Toks.push_back(Tok);
1197       ConsumeParen();
1198       continue;
1199     case tok::r_square:
1200       if (BracketCount && !IsFirstToken)
1201         return false;
1202       Toks.push_back(Tok);
1203       ConsumeBracket();
1204       continue;
1205     case tok::r_brace:
1206       if (BraceCount && !IsFirstToken)
1207         return false;
1208       Toks.push_back(Tok);
1209       ConsumeBrace();
1210       continue;
1211
1212     case tok::code_completion:
1213       Toks.push_back(Tok);
1214       ConsumeCodeCompletionToken();
1215       break;
1216
1217     case tok::string_literal:
1218     case tok::wide_string_literal:
1219     case tok::utf8_string_literal:
1220     case tok::utf16_string_literal:
1221     case tok::utf32_string_literal:
1222       Toks.push_back(Tok);
1223       ConsumeStringToken();
1224       break;
1225     case tok::semi:
1226       if (CIK == CIK_DefaultInitializer)
1227         return true; // End of the default initializer.
1228       // FALL THROUGH.
1229     default:
1230     consume_token:
1231       Toks.push_back(Tok);
1232       ConsumeToken();
1233       break;
1234     }
1235     IsFirstToken = false;
1236   }
1237 }