1 //===--- Parser.cpp - C Language Family Parser ----------------------------===//
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 the Parser interfaces.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "clang/Parse/Parser.h"
15 #include "RAIIObjectsForParser.h"
16 #include "clang/AST/ASTConsumer.h"
17 #include "clang/AST/ASTContext.h"
18 #include "clang/AST/DeclTemplate.h"
19 #include "clang/Parse/ParseDiagnostic.h"
20 #include "clang/Sema/DeclSpec.h"
21 #include "clang/Sema/ParsedTemplate.h"
22 #include "clang/Sema/Scope.h"
23 using namespace clang;
24 
25 
26 namespace {
27 /// \brief A comment handler that passes comments found by the preprocessor
28 /// to the parser action.
29 class ActionCommentHandler : public CommentHandler {
30   Sema &S;
31 
32 public:
33   explicit ActionCommentHandler(Sema &S) : S(S) { }
34 
35   bool HandleComment(Preprocessor &PP, SourceRange Comment) override {
36     S.ActOnComment(Comment);
37     return false;
38   }
39 };
40 
41 /// \brief RAIIObject to destroy the contents of a SmallVector of
42 /// TemplateIdAnnotation pointers and clear the vector.
43 class DestroyTemplateIdAnnotationsRAIIObj {
44   SmallVectorImpl<TemplateIdAnnotation *> &Container;
45 
46 public:
47   DestroyTemplateIdAnnotationsRAIIObj(
48       SmallVectorImpl<TemplateIdAnnotation *> &Container)
49       : Container(Container) {}
50 
51   ~DestroyTemplateIdAnnotationsRAIIObj() {
52     for (SmallVectorImpl<TemplateIdAnnotation *>::iterator I =
53              Container.begin(),
54                                                            E = Container.end();
55          I != E; ++I)
56       (*I)->Destroy();
57     Container.clear();
58   }
59 };
60 } // end anonymous namespace
61 
62 IdentifierInfo *Parser::getSEHExceptKeyword() {
63   // __except is accepted as a (contextual) keyword
64   if (!Ident__except && (getLangOpts().MicrosoftExt || getLangOpts().Borland))
65     Ident__except = PP.getIdentifierInfo("__except");
66 
67   return Ident__except;
68 }
69 
70 Parser::Parser(Preprocessor &pp, Sema &actions, bool skipFunctionBodies)
71   : PP(pp), Actions(actions), Diags(PP.getDiagnostics()),
72     GreaterThanIsOperator(true), ColonIsSacred(false),
73     InMessageExpression(false), TemplateParameterDepth(0),
74     ParsingInObjCContainer(false) {
75   SkipFunctionBodies = pp.isCodeCompletionEnabled() || skipFunctionBodies;
76   Tok.startToken();
77   Tok.setKind(tok::eof);
78   Actions.CurScope = nullptr;
79   NumCachedScopes = 0;
80   ParenCount = BracketCount = BraceCount = 0;
81   CurParsedObjCImpl = nullptr;
82 
83   // Add #pragma handlers. These are removed and destroyed in the
84   // destructor.
85   initializePragmaHandlers();
86 
87   CommentSemaHandler.reset(new ActionCommentHandler(actions));
88   PP.addCommentHandler(CommentSemaHandler.get());
89 
90   PP.setCodeCompletionHandler(*this);
91 }
92 
93 DiagnosticBuilder Parser::Diag(SourceLocation Loc, unsigned DiagID) {
94   return Diags.Report(Loc, DiagID);
95 }
96 
97 DiagnosticBuilder Parser::Diag(const Token &Tok, unsigned DiagID) {
98   return Diag(Tok.getLocation(), DiagID);
99 }
100 
101 /// \brief Emits a diagnostic suggesting parentheses surrounding a
102 /// given range.
103 ///
104 /// \param Loc The location where we'll emit the diagnostic.
105 /// \param DK The kind of diagnostic to emit.
106 /// \param ParenRange Source range enclosing code that should be parenthesized.
107 void Parser::SuggestParentheses(SourceLocation Loc, unsigned DK,
108                                 SourceRange ParenRange) {
109   SourceLocation EndLoc = PP.getLocForEndOfToken(ParenRange.getEnd());
110   if (!ParenRange.getEnd().isFileID() || EndLoc.isInvalid()) {
111     // We can't display the parentheses, so just dig the
112     // warning/error and return.
113     Diag(Loc, DK);
114     return;
115   }
116 
117   Diag(Loc, DK)
118     << FixItHint::CreateInsertion(ParenRange.getBegin(), "(")
119     << FixItHint::CreateInsertion(EndLoc, ")");
120 }
121 
122 static bool IsCommonTypo(tok::TokenKind ExpectedTok, const Token &Tok) {
123   switch (ExpectedTok) {
124   case tok::semi:
125     return Tok.is(tok::colon) || Tok.is(tok::comma); // : or , for ;
126   default: return false;
127   }
128 }
129 
130 bool Parser::ExpectAndConsume(tok::TokenKind ExpectedTok, unsigned DiagID,
131                               StringRef Msg) {
132   if (Tok.is(ExpectedTok) || Tok.is(tok::code_completion)) {
133     ConsumeAnyToken();
134     return false;
135   }
136 
137   // Detect common single-character typos and resume.
138   if (IsCommonTypo(ExpectedTok, Tok)) {
139     SourceLocation Loc = Tok.getLocation();
140     {
141       DiagnosticBuilder DB = Diag(Loc, DiagID);
142       DB << FixItHint::CreateReplacement(
143                 SourceRange(Loc), tok::getPunctuatorSpelling(ExpectedTok));
144       if (DiagID == diag::err_expected)
145         DB << ExpectedTok;
146       else if (DiagID == diag::err_expected_after)
147         DB << Msg << ExpectedTok;
148       else
149         DB << Msg;
150     }
151 
152     // Pretend there wasn't a problem.
153     ConsumeAnyToken();
154     return false;
155   }
156 
157   SourceLocation EndLoc = PP.getLocForEndOfToken(PrevTokLocation);
158   const char *Spelling = nullptr;
159   if (EndLoc.isValid())
160     Spelling = tok::getPunctuatorSpelling(ExpectedTok);
161 
162   DiagnosticBuilder DB =
163       Spelling
164           ? Diag(EndLoc, DiagID) << FixItHint::CreateInsertion(EndLoc, Spelling)
165           : Diag(Tok, DiagID);
166   if (DiagID == diag::err_expected)
167     DB << ExpectedTok;
168   else if (DiagID == diag::err_expected_after)
169     DB << Msg << ExpectedTok;
170   else
171     DB << Msg;
172 
173   return true;
174 }
175 
176 bool Parser::ExpectAndConsumeSemi(unsigned DiagID) {
177   if (TryConsumeToken(tok::semi))
178     return false;
179 
180   if (Tok.is(tok::code_completion)) {
181     handleUnexpectedCodeCompletionToken();
182     return false;
183   }
184 
185   if ((Tok.is(tok::r_paren) || Tok.is(tok::r_square)) &&
186       NextToken().is(tok::semi)) {
187     Diag(Tok, diag::err_extraneous_token_before_semi)
188       << PP.getSpelling(Tok)
189       << FixItHint::CreateRemoval(Tok.getLocation());
190     ConsumeAnyToken(); // The ')' or ']'.
191     ConsumeToken(); // The ';'.
192     return false;
193   }
194 
195   return ExpectAndConsume(tok::semi, DiagID);
196 }
197 
198 void Parser::ConsumeExtraSemi(ExtraSemiKind Kind, unsigned TST) {
199   if (!Tok.is(tok::semi)) return;
200 
201   bool HadMultipleSemis = false;
202   SourceLocation StartLoc = Tok.getLocation();
203   SourceLocation EndLoc = Tok.getLocation();
204   ConsumeToken();
205 
206   while ((Tok.is(tok::semi) && !Tok.isAtStartOfLine())) {
207     HadMultipleSemis = true;
208     EndLoc = Tok.getLocation();
209     ConsumeToken();
210   }
211 
212   // C++11 allows extra semicolons at namespace scope, but not in any of the
213   // other contexts.
214   if (Kind == OutsideFunction && getLangOpts().CPlusPlus) {
215     if (getLangOpts().CPlusPlus11)
216       Diag(StartLoc, diag::warn_cxx98_compat_top_level_semi)
217           << FixItHint::CreateRemoval(SourceRange(StartLoc, EndLoc));
218     else
219       Diag(StartLoc, diag::ext_extra_semi_cxx11)
220           << FixItHint::CreateRemoval(SourceRange(StartLoc, EndLoc));
221     return;
222   }
223 
224   if (Kind != AfterMemberFunctionDefinition || HadMultipleSemis)
225     Diag(StartLoc, diag::ext_extra_semi)
226         << Kind << DeclSpec::getSpecifierName((DeclSpec::TST)TST,
227                                     Actions.getASTContext().getPrintingPolicy())
228         << FixItHint::CreateRemoval(SourceRange(StartLoc, EndLoc));
229   else
230     // A single semicolon is valid after a member function definition.
231     Diag(StartLoc, diag::warn_extra_semi_after_mem_fn_def)
232       << FixItHint::CreateRemoval(SourceRange(StartLoc, EndLoc));
233 }
234 
235 //===----------------------------------------------------------------------===//
236 // Error recovery.
237 //===----------------------------------------------------------------------===//
238 
239 static bool HasFlagsSet(Parser::SkipUntilFlags L, Parser::SkipUntilFlags R) {
240   return (static_cast<unsigned>(L) & static_cast<unsigned>(R)) != 0;
241 }
242 
243 /// SkipUntil - Read tokens until we get to the specified token, then consume
244 /// it (unless no flag StopBeforeMatch).  Because we cannot guarantee that the
245 /// token will ever occur, this skips to the next token, or to some likely
246 /// good stopping point.  If StopAtSemi is true, skipping will stop at a ';'
247 /// character.
248 ///
249 /// If SkipUntil finds the specified token, it returns true, otherwise it
250 /// returns false.
251 bool Parser::SkipUntil(ArrayRef<tok::TokenKind> Toks, SkipUntilFlags Flags) {
252   // We always want this function to skip at least one token if the first token
253   // isn't T and if not at EOF.
254   bool isFirstTokenSkipped = true;
255   while (1) {
256     // If we found one of the tokens, stop and return true.
257     for (unsigned i = 0, NumToks = Toks.size(); i != NumToks; ++i) {
258       if (Tok.is(Toks[i])) {
259         if (HasFlagsSet(Flags, StopBeforeMatch)) {
260           // Noop, don't consume the token.
261         } else {
262           ConsumeAnyToken();
263         }
264         return true;
265       }
266     }
267 
268     // Important special case: The caller has given up and just wants us to
269     // skip the rest of the file. Do this without recursing, since we can
270     // get here precisely because the caller detected too much recursion.
271     if (Toks.size() == 1 && Toks[0] == tok::eof &&
272         !HasFlagsSet(Flags, StopAtSemi) &&
273         !HasFlagsSet(Flags, StopAtCodeCompletion)) {
274       while (Tok.isNot(tok::eof))
275         ConsumeAnyToken();
276       return true;
277     }
278 
279     switch (Tok.getKind()) {
280     case tok::eof:
281       // Ran out of tokens.
282       return false;
283 
284     case tok::annot_pragma_openmp:
285     case tok::annot_pragma_openmp_end:
286       // Stop before an OpenMP pragma boundary.
287     case tok::annot_module_begin:
288     case tok::annot_module_end:
289     case tok::annot_module_include:
290       // Stop before we change submodules. They generally indicate a "good"
291       // place to pick up parsing again (except in the special case where
292       // we're trying to skip to EOF).
293       return false;
294 
295     case tok::code_completion:
296       if (!HasFlagsSet(Flags, StopAtCodeCompletion))
297         handleUnexpectedCodeCompletionToken();
298       return false;
299 
300     case tok::l_paren:
301       // Recursively skip properly-nested parens.
302       ConsumeParen();
303       if (HasFlagsSet(Flags, StopAtCodeCompletion))
304         SkipUntil(tok::r_paren, StopAtCodeCompletion);
305       else
306         SkipUntil(tok::r_paren);
307       break;
308     case tok::l_square:
309       // Recursively skip properly-nested square brackets.
310       ConsumeBracket();
311       if (HasFlagsSet(Flags, StopAtCodeCompletion))
312         SkipUntil(tok::r_square, StopAtCodeCompletion);
313       else
314         SkipUntil(tok::r_square);
315       break;
316     case tok::l_brace:
317       // Recursively skip properly-nested braces.
318       ConsumeBrace();
319       if (HasFlagsSet(Flags, StopAtCodeCompletion))
320         SkipUntil(tok::r_brace, StopAtCodeCompletion);
321       else
322         SkipUntil(tok::r_brace);
323       break;
324 
325     // Okay, we found a ']' or '}' or ')', which we think should be balanced.
326     // Since the user wasn't looking for this token (if they were, it would
327     // already be handled), this isn't balanced.  If there is a LHS token at a
328     // higher level, we will assume that this matches the unbalanced token
329     // and return it.  Otherwise, this is a spurious RHS token, which we skip.
330     case tok::r_paren:
331       if (ParenCount && !isFirstTokenSkipped)
332         return false;  // Matches something.
333       ConsumeParen();
334       break;
335     case tok::r_square:
336       if (BracketCount && !isFirstTokenSkipped)
337         return false;  // Matches something.
338       ConsumeBracket();
339       break;
340     case tok::r_brace:
341       if (BraceCount && !isFirstTokenSkipped)
342         return false;  // Matches something.
343       ConsumeBrace();
344       break;
345 
346     case tok::string_literal:
347     case tok::wide_string_literal:
348     case tok::utf8_string_literal:
349     case tok::utf16_string_literal:
350     case tok::utf32_string_literal:
351       ConsumeStringToken();
352       break;
353 
354     case tok::semi:
355       if (HasFlagsSet(Flags, StopAtSemi))
356         return false;
357       // FALL THROUGH.
358     default:
359       // Skip this token.
360       ConsumeToken();
361       break;
362     }
363     isFirstTokenSkipped = false;
364   }
365 }
366 
367 //===----------------------------------------------------------------------===//
368 // Scope manipulation
369 //===----------------------------------------------------------------------===//
370 
371 /// EnterScope - Start a new scope.
372 void Parser::EnterScope(unsigned ScopeFlags) {
373   if (NumCachedScopes) {
374     Scope *N = ScopeCache[--NumCachedScopes];
375     N->Init(getCurScope(), ScopeFlags);
376     Actions.CurScope = N;
377   } else {
378     Actions.CurScope = new Scope(getCurScope(), ScopeFlags, Diags);
379   }
380 }
381 
382 /// ExitScope - Pop a scope off the scope stack.
383 void Parser::ExitScope() {
384   assert(getCurScope() && "Scope imbalance!");
385 
386   // Inform the actions module that this scope is going away if there are any
387   // decls in it.
388   Actions.ActOnPopScope(Tok.getLocation(), getCurScope());
389 
390   Scope *OldScope = getCurScope();
391   Actions.CurScope = OldScope->getParent();
392 
393   if (NumCachedScopes == ScopeCacheSize)
394     delete OldScope;
395   else
396     ScopeCache[NumCachedScopes++] = OldScope;
397 }
398 
399 /// Set the flags for the current scope to ScopeFlags. If ManageFlags is false,
400 /// this object does nothing.
401 Parser::ParseScopeFlags::ParseScopeFlags(Parser *Self, unsigned ScopeFlags,
402                                  bool ManageFlags)
403   : CurScope(ManageFlags ? Self->getCurScope() : nullptr) {
404   if (CurScope) {
405     OldFlags = CurScope->getFlags();
406     CurScope->setFlags(ScopeFlags);
407   }
408 }
409 
410 /// Restore the flags for the current scope to what they were before this
411 /// object overrode them.
412 Parser::ParseScopeFlags::~ParseScopeFlags() {
413   if (CurScope)
414     CurScope->setFlags(OldFlags);
415 }
416 
417 
418 //===----------------------------------------------------------------------===//
419 // C99 6.9: External Definitions.
420 //===----------------------------------------------------------------------===//
421 
422 Parser::~Parser() {
423   // If we still have scopes active, delete the scope tree.
424   delete getCurScope();
425   Actions.CurScope = nullptr;
426 
427   // Free the scope cache.
428   for (unsigned i = 0, e = NumCachedScopes; i != e; ++i)
429     delete ScopeCache[i];
430 
431   resetPragmaHandlers();
432 
433   PP.removeCommentHandler(CommentSemaHandler.get());
434 
435   PP.clearCodeCompletionHandler();
436 
437   if (getLangOpts().DelayedTemplateParsing &&
438       !PP.isIncrementalProcessingEnabled() && !TemplateIds.empty()) {
439     // If an ASTConsumer parsed delay-parsed templates in their
440     // HandleTranslationUnit() method, TemplateIds created there were not
441     // guarded by a DestroyTemplateIdAnnotationsRAIIObj object in
442     // ParseTopLevelDecl(). Destroy them here.
443     DestroyTemplateIdAnnotationsRAIIObj CleanupRAII(TemplateIds);
444   }
445 
446   assert(TemplateIds.empty() && "Still alive TemplateIdAnnotations around?");
447 }
448 
449 /// Initialize - Warm up the parser.
450 ///
451 void Parser::Initialize() {
452   // Create the translation unit scope.  Install it as the current scope.
453   assert(getCurScope() == nullptr && "A scope is already active?");
454   EnterScope(Scope::DeclScope);
455   Actions.ActOnTranslationUnitScope(getCurScope());
456 
457   // Initialization for Objective-C context sensitive keywords recognition.
458   // Referenced in Parser::ParseObjCTypeQualifierList.
459   if (getLangOpts().ObjC1) {
460     ObjCTypeQuals[objc_in] = &PP.getIdentifierTable().get("in");
461     ObjCTypeQuals[objc_out] = &PP.getIdentifierTable().get("out");
462     ObjCTypeQuals[objc_inout] = &PP.getIdentifierTable().get("inout");
463     ObjCTypeQuals[objc_oneway] = &PP.getIdentifierTable().get("oneway");
464     ObjCTypeQuals[objc_bycopy] = &PP.getIdentifierTable().get("bycopy");
465     ObjCTypeQuals[objc_byref] = &PP.getIdentifierTable().get("byref");
466     ObjCTypeQuals[objc_nonnull] = &PP.getIdentifierTable().get("nonnull");
467     ObjCTypeQuals[objc_nullable] = &PP.getIdentifierTable().get("nullable");
468     ObjCTypeQuals[objc_null_unspecified]
469       = &PP.getIdentifierTable().get("null_unspecified");
470   }
471 
472   Ident_instancetype = nullptr;
473   Ident_final = nullptr;
474   Ident_sealed = nullptr;
475   Ident_override = nullptr;
476   Ident_GNU_final = nullptr;
477 
478   Ident_super = &PP.getIdentifierTable().get("super");
479 
480   Ident_vector = nullptr;
481   Ident_bool = nullptr;
482   Ident_pixel = nullptr;
483   if (getLangOpts().AltiVec || getLangOpts().ZVector) {
484     Ident_vector = &PP.getIdentifierTable().get("vector");
485     Ident_bool = &PP.getIdentifierTable().get("bool");
486   }
487   if (getLangOpts().AltiVec)
488     Ident_pixel = &PP.getIdentifierTable().get("pixel");
489 
490   Ident_introduced = nullptr;
491   Ident_deprecated = nullptr;
492   Ident_obsoleted = nullptr;
493   Ident_unavailable = nullptr;
494   Ident_strict = nullptr;
495   Ident_replacement = nullptr;
496 
497   Ident__except = nullptr;
498 
499   Ident__exception_code = Ident__exception_info = nullptr;
500   Ident__abnormal_termination = Ident___exception_code = nullptr;
501   Ident___exception_info = Ident___abnormal_termination = nullptr;
502   Ident_GetExceptionCode = Ident_GetExceptionInfo = nullptr;
503   Ident_AbnormalTermination = nullptr;
504 
505   if(getLangOpts().Borland) {
506     Ident__exception_info        = PP.getIdentifierInfo("_exception_info");
507     Ident___exception_info       = PP.getIdentifierInfo("__exception_info");
508     Ident_GetExceptionInfo       = PP.getIdentifierInfo("GetExceptionInformation");
509     Ident__exception_code        = PP.getIdentifierInfo("_exception_code");
510     Ident___exception_code       = PP.getIdentifierInfo("__exception_code");
511     Ident_GetExceptionCode       = PP.getIdentifierInfo("GetExceptionCode");
512     Ident__abnormal_termination  = PP.getIdentifierInfo("_abnormal_termination");
513     Ident___abnormal_termination = PP.getIdentifierInfo("__abnormal_termination");
514     Ident_AbnormalTermination    = PP.getIdentifierInfo("AbnormalTermination");
515 
516     PP.SetPoisonReason(Ident__exception_code,diag::err_seh___except_block);
517     PP.SetPoisonReason(Ident___exception_code,diag::err_seh___except_block);
518     PP.SetPoisonReason(Ident_GetExceptionCode,diag::err_seh___except_block);
519     PP.SetPoisonReason(Ident__exception_info,diag::err_seh___except_filter);
520     PP.SetPoisonReason(Ident___exception_info,diag::err_seh___except_filter);
521     PP.SetPoisonReason(Ident_GetExceptionInfo,diag::err_seh___except_filter);
522     PP.SetPoisonReason(Ident__abnormal_termination,diag::err_seh___finally_block);
523     PP.SetPoisonReason(Ident___abnormal_termination,diag::err_seh___finally_block);
524     PP.SetPoisonReason(Ident_AbnormalTermination,diag::err_seh___finally_block);
525   }
526 
527   Actions.Initialize();
528 
529   // Prime the lexer look-ahead.
530   ConsumeToken();
531 }
532 
533 void Parser::LateTemplateParserCleanupCallback(void *P) {
534   // While this RAII helper doesn't bracket any actual work, the destructor will
535   // clean up annotations that were created during ActOnEndOfTranslationUnit
536   // when incremental processing is enabled.
537   DestroyTemplateIdAnnotationsRAIIObj CleanupRAII(((Parser *)P)->TemplateIds);
538 }
539 
540 bool Parser::ParseFirstTopLevelDecl(DeclGroupPtrTy &Result) {
541   // C++ Modules TS: module-declaration must be the first declaration in the
542   // file. (There can be no preceding preprocessor directives, but we expect
543   // the lexer to check that.)
544   if (Tok.is(tok::kw_module)) {
545     Result = ParseModuleDecl();
546     return false;
547   } else if (getLangOpts().getCompilingModule() ==
548              LangOptions::CMK_ModuleInterface) {
549     // FIXME: We avoid providing this diagnostic when generating an object file
550     // from an existing PCM file. This is not a good way to detect this
551     // condition; we should provide a mechanism to indicate whether we've
552     // already parsed a declaration in this translation unit and avoid calling
553     // ParseFirstTopLevelDecl in that case.
554     if (Actions.TUKind == TU_Module)
555       Diag(Tok, diag::err_expected_module_interface_decl);
556   }
557 
558   // C11 6.9p1 says translation units must have at least one top-level
559   // declaration. C++ doesn't have this restriction. We also don't want to
560   // complain if we have a precompiled header, although technically if the PCH
561   // is empty we should still emit the (pedantic) diagnostic.
562   bool NoTopLevelDecls = ParseTopLevelDecl(Result);
563   if (NoTopLevelDecls && !Actions.getASTContext().getExternalSource() &&
564       !getLangOpts().CPlusPlus)
565     Diag(diag::ext_empty_translation_unit);
566 
567   return NoTopLevelDecls;
568 }
569 
570 /// ParseTopLevelDecl - Parse one top-level declaration, return whatever the
571 /// action tells us to.  This returns true if the EOF was encountered.
572 bool Parser::ParseTopLevelDecl(DeclGroupPtrTy &Result) {
573   DestroyTemplateIdAnnotationsRAIIObj CleanupRAII(TemplateIds);
574 
575   // Skip over the EOF token, flagging end of previous input for incremental
576   // processing
577   if (PP.isIncrementalProcessingEnabled() && Tok.is(tok::eof))
578     ConsumeToken();
579 
580   Result = nullptr;
581   switch (Tok.getKind()) {
582   case tok::annot_pragma_unused:
583     HandlePragmaUnused();
584     return false;
585 
586   case tok::kw_import:
587     Result = ParseModuleImport(SourceLocation());
588     return false;
589 
590   case tok::annot_module_include:
591     Actions.ActOnModuleInclude(Tok.getLocation(),
592                                reinterpret_cast<Module *>(
593                                    Tok.getAnnotationValue()));
594     ConsumeToken();
595     return false;
596 
597   case tok::annot_module_begin:
598     Actions.ActOnModuleBegin(Tok.getLocation(), reinterpret_cast<Module *>(
599                                                     Tok.getAnnotationValue()));
600     ConsumeToken();
601     return false;
602 
603   case tok::annot_module_end:
604     Actions.ActOnModuleEnd(Tok.getLocation(), reinterpret_cast<Module *>(
605                                                   Tok.getAnnotationValue()));
606     ConsumeToken();
607     return false;
608 
609   case tok::eof:
610     // Late template parsing can begin.
611     if (getLangOpts().DelayedTemplateParsing)
612       Actions.SetLateTemplateParser(LateTemplateParserCallback,
613                                     PP.isIncrementalProcessingEnabled() ?
614                                     LateTemplateParserCleanupCallback : nullptr,
615                                     this);
616     if (!PP.isIncrementalProcessingEnabled())
617       Actions.ActOnEndOfTranslationUnit();
618     //else don't tell Sema that we ended parsing: more input might come.
619     return true;
620 
621   default:
622     break;
623   }
624 
625   ParsedAttributesWithRange attrs(AttrFactory);
626   MaybeParseCXX11Attributes(attrs);
627 
628   Result = ParseExternalDeclaration(attrs);
629   return false;
630 }
631 
632 /// ParseExternalDeclaration:
633 ///
634 ///       external-declaration: [C99 6.9], declaration: [C++ dcl.dcl]
635 ///         function-definition
636 ///         declaration
637 /// [GNU]   asm-definition
638 /// [GNU]   __extension__ external-declaration
639 /// [OBJC]  objc-class-definition
640 /// [OBJC]  objc-class-declaration
641 /// [OBJC]  objc-alias-declaration
642 /// [OBJC]  objc-protocol-definition
643 /// [OBJC]  objc-method-definition
644 /// [OBJC]  @end
645 /// [C++]   linkage-specification
646 /// [GNU] asm-definition:
647 ///         simple-asm-expr ';'
648 /// [C++11] empty-declaration
649 /// [C++11] attribute-declaration
650 ///
651 /// [C++11] empty-declaration:
652 ///           ';'
653 ///
654 /// [C++0x/GNU] 'extern' 'template' declaration
655 Parser::DeclGroupPtrTy
656 Parser::ParseExternalDeclaration(ParsedAttributesWithRange &attrs,
657                                  ParsingDeclSpec *DS) {
658   DestroyTemplateIdAnnotationsRAIIObj CleanupRAII(TemplateIds);
659   ParenBraceBracketBalancer BalancerRAIIObj(*this);
660 
661   if (PP.isCodeCompletionReached()) {
662     cutOffParsing();
663     return nullptr;
664   }
665 
666   Decl *SingleDecl = nullptr;
667   switch (Tok.getKind()) {
668   case tok::annot_pragma_vis:
669     HandlePragmaVisibility();
670     return nullptr;
671   case tok::annot_pragma_pack:
672     HandlePragmaPack();
673     return nullptr;
674   case tok::annot_pragma_msstruct:
675     HandlePragmaMSStruct();
676     return nullptr;
677   case tok::annot_pragma_align:
678     HandlePragmaAlign();
679     return nullptr;
680   case tok::annot_pragma_weak:
681     HandlePragmaWeak();
682     return nullptr;
683   case tok::annot_pragma_weakalias:
684     HandlePragmaWeakAlias();
685     return nullptr;
686   case tok::annot_pragma_redefine_extname:
687     HandlePragmaRedefineExtname();
688     return nullptr;
689   case tok::annot_pragma_fp_contract:
690     HandlePragmaFPContract();
691     return nullptr;
692   case tok::annot_pragma_opencl_extension:
693     HandlePragmaOpenCLExtension();
694     return nullptr;
695   case tok::annot_pragma_openmp: {
696     AccessSpecifier AS = AS_none;
697     return ParseOpenMPDeclarativeDirectiveWithExtDecl(AS, attrs);
698   }
699   case tok::annot_pragma_ms_pointers_to_members:
700     HandlePragmaMSPointersToMembers();
701     return nullptr;
702   case tok::annot_pragma_ms_vtordisp:
703     HandlePragmaMSVtorDisp();
704     return nullptr;
705   case tok::annot_pragma_ms_pragma:
706     HandlePragmaMSPragma();
707     return nullptr;
708   case tok::annot_pragma_dump:
709     HandlePragmaDump();
710     return nullptr;
711   case tok::semi:
712     // Either a C++11 empty-declaration or attribute-declaration.
713     SingleDecl = Actions.ActOnEmptyDeclaration(getCurScope(),
714                                                attrs.getList(),
715                                                Tok.getLocation());
716     ConsumeExtraSemi(OutsideFunction);
717     break;
718   case tok::r_brace:
719     Diag(Tok, diag::err_extraneous_closing_brace);
720     ConsumeBrace();
721     return nullptr;
722   case tok::eof:
723     Diag(Tok, diag::err_expected_external_declaration);
724     return nullptr;
725   case tok::kw___extension__: {
726     // __extension__ silences extension warnings in the subexpression.
727     ExtensionRAIIObject O(Diags);  // Use RAII to do this.
728     ConsumeToken();
729     return ParseExternalDeclaration(attrs);
730   }
731   case tok::kw_asm: {
732     ProhibitAttributes(attrs);
733 
734     SourceLocation StartLoc = Tok.getLocation();
735     SourceLocation EndLoc;
736 
737     ExprResult Result(ParseSimpleAsm(&EndLoc));
738 
739     // Check if GNU-style InlineAsm is disabled.
740     // Empty asm string is allowed because it will not introduce
741     // any assembly code.
742     if (!(getLangOpts().GNUAsm || Result.isInvalid())) {
743       const auto *SL = cast<StringLiteral>(Result.get());
744       if (!SL->getString().trim().empty())
745         Diag(StartLoc, diag::err_gnu_inline_asm_disabled);
746     }
747 
748     ExpectAndConsume(tok::semi, diag::err_expected_after,
749                      "top-level asm block");
750 
751     if (Result.isInvalid())
752       return nullptr;
753     SingleDecl = Actions.ActOnFileScopeAsmDecl(Result.get(), StartLoc, EndLoc);
754     break;
755   }
756   case tok::at:
757     return ParseObjCAtDirectives();
758   case tok::minus:
759   case tok::plus:
760     if (!getLangOpts().ObjC1) {
761       Diag(Tok, diag::err_expected_external_declaration);
762       ConsumeToken();
763       return nullptr;
764     }
765     SingleDecl = ParseObjCMethodDefinition();
766     break;
767   case tok::code_completion:
768       Actions.CodeCompleteOrdinaryName(getCurScope(),
769                              CurParsedObjCImpl? Sema::PCC_ObjCImplementation
770                                               : Sema::PCC_Namespace);
771     cutOffParsing();
772     return nullptr;
773   case tok::kw_export:
774     if (getLangOpts().ModulesTS) {
775       SingleDecl = ParseExportDeclaration();
776       break;
777     }
778     // This must be 'export template'. Parse it so we can diagnose our lack
779     // of support.
780   case tok::kw_using:
781   case tok::kw_namespace:
782   case tok::kw_typedef:
783   case tok::kw_template:
784   case tok::kw_static_assert:
785   case tok::kw__Static_assert:
786     // A function definition cannot start with any of these keywords.
787     {
788       SourceLocation DeclEnd;
789       return ParseDeclaration(Declarator::FileContext, DeclEnd, attrs);
790     }
791 
792   case tok::kw_static:
793     // Parse (then ignore) 'static' prior to a template instantiation. This is
794     // a GCC extension that we intentionally do not support.
795     if (getLangOpts().CPlusPlus && NextToken().is(tok::kw_template)) {
796       Diag(ConsumeToken(), diag::warn_static_inline_explicit_inst_ignored)
797         << 0;
798       SourceLocation DeclEnd;
799       return ParseDeclaration(Declarator::FileContext, DeclEnd, attrs);
800     }
801     goto dont_know;
802 
803   case tok::kw_inline:
804     if (getLangOpts().CPlusPlus) {
805       tok::TokenKind NextKind = NextToken().getKind();
806 
807       // Inline namespaces. Allowed as an extension even in C++03.
808       if (NextKind == tok::kw_namespace) {
809         SourceLocation DeclEnd;
810         return ParseDeclaration(Declarator::FileContext, DeclEnd, attrs);
811       }
812 
813       // Parse (then ignore) 'inline' prior to a template instantiation. This is
814       // a GCC extension that we intentionally do not support.
815       if (NextKind == tok::kw_template) {
816         Diag(ConsumeToken(), diag::warn_static_inline_explicit_inst_ignored)
817           << 1;
818         SourceLocation DeclEnd;
819         return ParseDeclaration(Declarator::FileContext, DeclEnd, attrs);
820       }
821     }
822     goto dont_know;
823 
824   case tok::kw_extern:
825     if (getLangOpts().CPlusPlus && NextToken().is(tok::kw_template)) {
826       // Extern templates
827       SourceLocation ExternLoc = ConsumeToken();
828       SourceLocation TemplateLoc = ConsumeToken();
829       Diag(ExternLoc, getLangOpts().CPlusPlus11 ?
830              diag::warn_cxx98_compat_extern_template :
831              diag::ext_extern_template) << SourceRange(ExternLoc, TemplateLoc);
832       SourceLocation DeclEnd;
833       return Actions.ConvertDeclToDeclGroup(
834                   ParseExplicitInstantiation(Declarator::FileContext,
835                                              ExternLoc, TemplateLoc, DeclEnd));
836     }
837     goto dont_know;
838 
839   case tok::kw___if_exists:
840   case tok::kw___if_not_exists:
841     ParseMicrosoftIfExistsExternalDeclaration();
842     return nullptr;
843 
844   case tok::kw_module:
845     Diag(Tok, diag::err_unexpected_module_decl);
846     SkipUntil(tok::semi);
847     return nullptr;
848 
849   default:
850   dont_know:
851     // We can't tell whether this is a function-definition or declaration yet.
852     return ParseDeclarationOrFunctionDefinition(attrs, DS);
853   }
854 
855   // This routine returns a DeclGroup, if the thing we parsed only contains a
856   // single decl, convert it now.
857   return Actions.ConvertDeclToDeclGroup(SingleDecl);
858 }
859 
860 /// \brief Determine whether the current token, if it occurs after a
861 /// declarator, continues a declaration or declaration list.
862 bool Parser::isDeclarationAfterDeclarator() {
863   // Check for '= delete' or '= default'
864   if (getLangOpts().CPlusPlus && Tok.is(tok::equal)) {
865     const Token &KW = NextToken();
866     if (KW.is(tok::kw_default) || KW.is(tok::kw_delete))
867       return false;
868   }
869 
870   return Tok.is(tok::equal) ||      // int X()=  -> not a function def
871     Tok.is(tok::comma) ||           // int X(),  -> not a function def
872     Tok.is(tok::semi)  ||           // int X();  -> not a function def
873     Tok.is(tok::kw_asm) ||          // int X() __asm__ -> not a function def
874     Tok.is(tok::kw___attribute) ||  // int X() __attr__ -> not a function def
875     (getLangOpts().CPlusPlus &&
876      Tok.is(tok::l_paren));         // int X(0) -> not a function def [C++]
877 }
878 
879 /// \brief Determine whether the current token, if it occurs after a
880 /// declarator, indicates the start of a function definition.
881 bool Parser::isStartOfFunctionDefinition(const ParsingDeclarator &Declarator) {
882   assert(Declarator.isFunctionDeclarator() && "Isn't a function declarator");
883   if (Tok.is(tok::l_brace))   // int X() {}
884     return true;
885 
886   // Handle K&R C argument lists: int X(f) int f; {}
887   if (!getLangOpts().CPlusPlus &&
888       Declarator.getFunctionTypeInfo().isKNRPrototype())
889     return isDeclarationSpecifier();
890 
891   if (getLangOpts().CPlusPlus && Tok.is(tok::equal)) {
892     const Token &KW = NextToken();
893     return KW.is(tok::kw_default) || KW.is(tok::kw_delete);
894   }
895 
896   return Tok.is(tok::colon) ||         // X() : Base() {} (used for ctors)
897          Tok.is(tok::kw_try);          // X() try { ... }
898 }
899 
900 /// Parse either a function-definition or a declaration.  We can't tell which
901 /// we have until we read up to the compound-statement in function-definition.
902 /// TemplateParams, if non-NULL, provides the template parameters when we're
903 /// parsing a C++ template-declaration.
904 ///
905 ///       function-definition: [C99 6.9.1]
906 ///         decl-specs      declarator declaration-list[opt] compound-statement
907 /// [C90] function-definition: [C99 6.7.1] - implicit int result
908 /// [C90]   decl-specs[opt] declarator declaration-list[opt] compound-statement
909 ///
910 ///       declaration: [C99 6.7]
911 ///         declaration-specifiers init-declarator-list[opt] ';'
912 /// [!C99]  init-declarator-list ';'                   [TODO: warn in c99 mode]
913 /// [OMP]   threadprivate-directive                              [TODO]
914 ///
915 Parser::DeclGroupPtrTy
916 Parser::ParseDeclOrFunctionDefInternal(ParsedAttributesWithRange &attrs,
917                                        ParsingDeclSpec &DS,
918                                        AccessSpecifier AS) {
919   MaybeParseMicrosoftAttributes(DS.getAttributes());
920   // Parse the common declaration-specifiers piece.
921   ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS, DSC_top_level);
922 
923   // If we had a free-standing type definition with a missing semicolon, we
924   // may get this far before the problem becomes obvious.
925   if (DS.hasTagDefinition() &&
926       DiagnoseMissingSemiAfterTagDefinition(DS, AS, DSC_top_level))
927     return nullptr;
928 
929   // C99 6.7.2.3p6: Handle "struct-or-union identifier;", "enum { X };"
930   // declaration-specifiers init-declarator-list[opt] ';'
931   if (Tok.is(tok::semi)) {
932     ProhibitAttributes(attrs);
933     ConsumeToken();
934     RecordDecl *AnonRecord = nullptr;
935     Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS_none,
936                                                        DS, AnonRecord);
937     DS.complete(TheDecl);
938     if (AnonRecord) {
939       Decl* decls[] = {AnonRecord, TheDecl};
940       return Actions.BuildDeclaratorGroup(decls, /*TypeMayContainAuto=*/false);
941     }
942     return Actions.ConvertDeclToDeclGroup(TheDecl);
943   }
944 
945   DS.takeAttributesFrom(attrs);
946 
947   // ObjC2 allows prefix attributes on class interfaces and protocols.
948   // FIXME: This still needs better diagnostics. We should only accept
949   // attributes here, no types, etc.
950   if (getLangOpts().ObjC2 && Tok.is(tok::at)) {
951     SourceLocation AtLoc = ConsumeToken(); // the "@"
952     if (!Tok.isObjCAtKeyword(tok::objc_interface) &&
953         !Tok.isObjCAtKeyword(tok::objc_protocol)) {
954       Diag(Tok, diag::err_objc_unexpected_attr);
955       SkipUntil(tok::semi); // FIXME: better skip?
956       return nullptr;
957     }
958 
959     DS.abort();
960 
961     const char *PrevSpec = nullptr;
962     unsigned DiagID;
963     if (DS.SetTypeSpecType(DeclSpec::TST_unspecified, AtLoc, PrevSpec, DiagID,
964                            Actions.getASTContext().getPrintingPolicy()))
965       Diag(AtLoc, DiagID) << PrevSpec;
966 
967     if (Tok.isObjCAtKeyword(tok::objc_protocol))
968       return ParseObjCAtProtocolDeclaration(AtLoc, DS.getAttributes());
969 
970     return Actions.ConvertDeclToDeclGroup(
971             ParseObjCAtInterfaceDeclaration(AtLoc, DS.getAttributes()));
972   }
973 
974   // If the declspec consisted only of 'extern' and we have a string
975   // literal following it, this must be a C++ linkage specifier like
976   // 'extern "C"'.
977   if (getLangOpts().CPlusPlus && isTokenStringLiteral() &&
978       DS.getStorageClassSpec() == DeclSpec::SCS_extern &&
979       DS.getParsedSpecifiers() == DeclSpec::PQ_StorageClassSpecifier) {
980     Decl *TheDecl = ParseLinkage(DS, Declarator::FileContext);
981     return Actions.ConvertDeclToDeclGroup(TheDecl);
982   }
983 
984   return ParseDeclGroup(DS, Declarator::FileContext);
985 }
986 
987 Parser::DeclGroupPtrTy
988 Parser::ParseDeclarationOrFunctionDefinition(ParsedAttributesWithRange &attrs,
989                                              ParsingDeclSpec *DS,
990                                              AccessSpecifier AS) {
991   if (DS) {
992     return ParseDeclOrFunctionDefInternal(attrs, *DS, AS);
993   } else {
994     ParsingDeclSpec PDS(*this);
995     // Must temporarily exit the objective-c container scope for
996     // parsing c constructs and re-enter objc container scope
997     // afterwards.
998     ObjCDeclContextSwitch ObjCDC(*this);
999 
1000     return ParseDeclOrFunctionDefInternal(attrs, PDS, AS);
1001   }
1002 }
1003 
1004 /// ParseFunctionDefinition - We parsed and verified that the specified
1005 /// Declarator is well formed.  If this is a K&R-style function, read the
1006 /// parameters declaration-list, then start the compound-statement.
1007 ///
1008 ///       function-definition: [C99 6.9.1]
1009 ///         decl-specs      declarator declaration-list[opt] compound-statement
1010 /// [C90] function-definition: [C99 6.7.1] - implicit int result
1011 /// [C90]   decl-specs[opt] declarator declaration-list[opt] compound-statement
1012 /// [C++] function-definition: [C++ 8.4]
1013 ///         decl-specifier-seq[opt] declarator ctor-initializer[opt]
1014 ///         function-body
1015 /// [C++] function-definition: [C++ 8.4]
1016 ///         decl-specifier-seq[opt] declarator function-try-block
1017 ///
1018 Decl *Parser::ParseFunctionDefinition(ParsingDeclarator &D,
1019                                       const ParsedTemplateInfo &TemplateInfo,
1020                                       LateParsedAttrList *LateParsedAttrs) {
1021   // Poison SEH identifiers so they are flagged as illegal in function bodies.
1022   PoisonSEHIdentifiersRAIIObject PoisonSEHIdentifiers(*this, true);
1023   const DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
1024 
1025   // If this is C90 and the declspecs were completely missing, fudge in an
1026   // implicit int.  We do this here because this is the only place where
1027   // declaration-specifiers are completely optional in the grammar.
1028   if (getLangOpts().ImplicitInt && D.getDeclSpec().isEmpty()) {
1029     const char *PrevSpec;
1030     unsigned DiagID;
1031     const PrintingPolicy &Policy = Actions.getASTContext().getPrintingPolicy();
1032     D.getMutableDeclSpec().SetTypeSpecType(DeclSpec::TST_int,
1033                                            D.getIdentifierLoc(),
1034                                            PrevSpec, DiagID,
1035                                            Policy);
1036     D.SetRangeBegin(D.getDeclSpec().getSourceRange().getBegin());
1037   }
1038 
1039   // If this declaration was formed with a K&R-style identifier list for the
1040   // arguments, parse declarations for all of the args next.
1041   // int foo(a,b) int a; float b; {}
1042   if (FTI.isKNRPrototype())
1043     ParseKNRParamDeclarations(D);
1044 
1045   // We should have either an opening brace or, in a C++ constructor,
1046   // we may have a colon.
1047   if (Tok.isNot(tok::l_brace) &&
1048       (!getLangOpts().CPlusPlus ||
1049        (Tok.isNot(tok::colon) && Tok.isNot(tok::kw_try) &&
1050         Tok.isNot(tok::equal)))) {
1051     Diag(Tok, diag::err_expected_fn_body);
1052 
1053     // Skip over garbage, until we get to '{'.  Don't eat the '{'.
1054     SkipUntil(tok::l_brace, StopAtSemi | StopBeforeMatch);
1055 
1056     // If we didn't find the '{', bail out.
1057     if (Tok.isNot(tok::l_brace))
1058       return nullptr;
1059   }
1060 
1061   // Check to make sure that any normal attributes are allowed to be on
1062   // a definition.  Late parsed attributes are checked at the end.
1063   if (Tok.isNot(tok::equal)) {
1064     AttributeList *DtorAttrs = D.getAttributes();
1065     while (DtorAttrs) {
1066       if (DtorAttrs->isKnownToGCC() &&
1067           !DtorAttrs->isCXX11Attribute()) {
1068         Diag(DtorAttrs->getLoc(), diag::warn_attribute_on_function_definition)
1069           << DtorAttrs->getName();
1070       }
1071       DtorAttrs = DtorAttrs->getNext();
1072     }
1073   }
1074 
1075   // In delayed template parsing mode, for function template we consume the
1076   // tokens and store them for late parsing at the end of the translation unit.
1077   if (getLangOpts().DelayedTemplateParsing && Tok.isNot(tok::equal) &&
1078       TemplateInfo.Kind == ParsedTemplateInfo::Template &&
1079       Actions.canDelayFunctionBody(D)) {
1080     MultiTemplateParamsArg TemplateParameterLists(*TemplateInfo.TemplateParams);
1081 
1082     ParseScope BodyScope(this, Scope::FnScope|Scope::DeclScope);
1083     Scope *ParentScope = getCurScope()->getParent();
1084 
1085     D.setFunctionDefinitionKind(FDK_Definition);
1086     Decl *DP = Actions.HandleDeclarator(ParentScope, D,
1087                                         TemplateParameterLists);
1088     D.complete(DP);
1089     D.getMutableDeclSpec().abort();
1090 
1091     if (SkipFunctionBodies && (!DP || Actions.canSkipFunctionBody(DP)) &&
1092         trySkippingFunctionBody()) {
1093       BodyScope.Exit();
1094       return Actions.ActOnSkippedFunctionBody(DP);
1095     }
1096 
1097     CachedTokens Toks;
1098     LexTemplateFunctionForLateParsing(Toks);
1099 
1100     if (DP) {
1101       FunctionDecl *FnD = DP->getAsFunction();
1102       Actions.CheckForFunctionRedefinition(FnD);
1103       Actions.MarkAsLateParsedTemplate(FnD, DP, Toks);
1104     }
1105     return DP;
1106   }
1107   else if (CurParsedObjCImpl &&
1108            !TemplateInfo.TemplateParams &&
1109            (Tok.is(tok::l_brace) || Tok.is(tok::kw_try) ||
1110             Tok.is(tok::colon)) &&
1111       Actions.CurContext->isTranslationUnit()) {
1112     ParseScope BodyScope(this, Scope::FnScope|Scope::DeclScope);
1113     Scope *ParentScope = getCurScope()->getParent();
1114 
1115     D.setFunctionDefinitionKind(FDK_Definition);
1116     Decl *FuncDecl = Actions.HandleDeclarator(ParentScope, D,
1117                                               MultiTemplateParamsArg());
1118     D.complete(FuncDecl);
1119     D.getMutableDeclSpec().abort();
1120     if (FuncDecl) {
1121       // Consume the tokens and store them for later parsing.
1122       StashAwayMethodOrFunctionBodyTokens(FuncDecl);
1123       CurParsedObjCImpl->HasCFunction = true;
1124       return FuncDecl;
1125     }
1126     // FIXME: Should we really fall through here?
1127   }
1128 
1129   // Enter a scope for the function body.
1130   ParseScope BodyScope(this, Scope::FnScope|Scope::DeclScope);
1131 
1132   // Tell the actions module that we have entered a function definition with the
1133   // specified Declarator for the function.
1134   Sema::SkipBodyInfo SkipBody;
1135   Decl *Res = Actions.ActOnStartOfFunctionDef(getCurScope(), D,
1136                                               TemplateInfo.TemplateParams
1137                                                   ? *TemplateInfo.TemplateParams
1138                                                   : MultiTemplateParamsArg(),
1139                                               &SkipBody);
1140 
1141   if (SkipBody.ShouldSkip) {
1142     SkipFunctionBody();
1143     return Res;
1144   }
1145 
1146   // Break out of the ParsingDeclarator context before we parse the body.
1147   D.complete(Res);
1148 
1149   // Break out of the ParsingDeclSpec context, too.  This const_cast is
1150   // safe because we're always the sole owner.
1151   D.getMutableDeclSpec().abort();
1152 
1153   if (TryConsumeToken(tok::equal)) {
1154     assert(getLangOpts().CPlusPlus && "Only C++ function definitions have '='");
1155 
1156     bool Delete = false;
1157     SourceLocation KWLoc;
1158     if (TryConsumeToken(tok::kw_delete, KWLoc)) {
1159       Diag(KWLoc, getLangOpts().CPlusPlus11
1160                       ? diag::warn_cxx98_compat_defaulted_deleted_function
1161                       : diag::ext_defaulted_deleted_function)
1162         << 1 /* deleted */;
1163       Actions.SetDeclDeleted(Res, KWLoc);
1164       Delete = true;
1165     } else if (TryConsumeToken(tok::kw_default, KWLoc)) {
1166       Diag(KWLoc, getLangOpts().CPlusPlus11
1167                       ? diag::warn_cxx98_compat_defaulted_deleted_function
1168                       : diag::ext_defaulted_deleted_function)
1169         << 0 /* defaulted */;
1170       Actions.SetDeclDefaulted(Res, KWLoc);
1171     } else {
1172       llvm_unreachable("function definition after = not 'delete' or 'default'");
1173     }
1174 
1175     if (Tok.is(tok::comma)) {
1176       Diag(KWLoc, diag::err_default_delete_in_multiple_declaration)
1177         << Delete;
1178       SkipUntil(tok::semi);
1179     } else if (ExpectAndConsume(tok::semi, diag::err_expected_after,
1180                                 Delete ? "delete" : "default")) {
1181       SkipUntil(tok::semi);
1182     }
1183 
1184     Stmt *GeneratedBody = Res ? Res->getBody() : nullptr;
1185     Actions.ActOnFinishFunctionBody(Res, GeneratedBody, false);
1186     return Res;
1187   }
1188 
1189   if (SkipFunctionBodies && (!Res || Actions.canSkipFunctionBody(Res)) &&
1190       trySkippingFunctionBody()) {
1191     BodyScope.Exit();
1192     Actions.ActOnSkippedFunctionBody(Res);
1193     return Actions.ActOnFinishFunctionBody(Res, nullptr, false);
1194   }
1195 
1196   if (Tok.is(tok::kw_try))
1197     return ParseFunctionTryBlock(Res, BodyScope);
1198 
1199   // If we have a colon, then we're probably parsing a C++
1200   // ctor-initializer.
1201   if (Tok.is(tok::colon)) {
1202     ParseConstructorInitializer(Res);
1203 
1204     // Recover from error.
1205     if (!Tok.is(tok::l_brace)) {
1206       BodyScope.Exit();
1207       Actions.ActOnFinishFunctionBody(Res, nullptr);
1208       return Res;
1209     }
1210   } else
1211     Actions.ActOnDefaultCtorInitializers(Res);
1212 
1213   // Late attributes are parsed in the same scope as the function body.
1214   if (LateParsedAttrs)
1215     ParseLexedAttributeList(*LateParsedAttrs, Res, false, true);
1216 
1217   return ParseFunctionStatementBody(Res, BodyScope);
1218 }
1219 
1220 void Parser::SkipFunctionBody() {
1221   if (Tok.is(tok::equal)) {
1222     SkipUntil(tok::semi);
1223     return;
1224   }
1225 
1226   bool IsFunctionTryBlock = Tok.is(tok::kw_try);
1227   if (IsFunctionTryBlock)
1228     ConsumeToken();
1229 
1230   CachedTokens Skipped;
1231   if (ConsumeAndStoreFunctionPrologue(Skipped))
1232     SkipMalformedDecl();
1233   else {
1234     SkipUntil(tok::r_brace);
1235     while (IsFunctionTryBlock && Tok.is(tok::kw_catch)) {
1236       SkipUntil(tok::l_brace);
1237       SkipUntil(tok::r_brace);
1238     }
1239   }
1240 }
1241 
1242 /// ParseKNRParamDeclarations - Parse 'declaration-list[opt]' which provides
1243 /// types for a function with a K&R-style identifier list for arguments.
1244 void Parser::ParseKNRParamDeclarations(Declarator &D) {
1245   // We know that the top-level of this declarator is a function.
1246   DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
1247 
1248   // Enter function-declaration scope, limiting any declarators to the
1249   // function prototype scope, including parameter declarators.
1250   ParseScope PrototypeScope(this, Scope::FunctionPrototypeScope |
1251                             Scope::FunctionDeclarationScope | Scope::DeclScope);
1252 
1253   // Read all the argument declarations.
1254   while (isDeclarationSpecifier()) {
1255     SourceLocation DSStart = Tok.getLocation();
1256 
1257     // Parse the common declaration-specifiers piece.
1258     DeclSpec DS(AttrFactory);
1259     ParseDeclarationSpecifiers(DS);
1260 
1261     // C99 6.9.1p6: 'each declaration in the declaration list shall have at
1262     // least one declarator'.
1263     // NOTE: GCC just makes this an ext-warn.  It's not clear what it does with
1264     // the declarations though.  It's trivial to ignore them, really hard to do
1265     // anything else with them.
1266     if (TryConsumeToken(tok::semi)) {
1267       Diag(DSStart, diag::err_declaration_does_not_declare_param);
1268       continue;
1269     }
1270 
1271     // C99 6.9.1p6: Declarations shall contain no storage-class specifiers other
1272     // than register.
1273     if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified &&
1274         DS.getStorageClassSpec() != DeclSpec::SCS_register) {
1275       Diag(DS.getStorageClassSpecLoc(),
1276            diag::err_invalid_storage_class_in_func_decl);
1277       DS.ClearStorageClassSpecs();
1278     }
1279     if (DS.getThreadStorageClassSpec() != DeclSpec::TSCS_unspecified) {
1280       Diag(DS.getThreadStorageClassSpecLoc(),
1281            diag::err_invalid_storage_class_in_func_decl);
1282       DS.ClearStorageClassSpecs();
1283     }
1284 
1285     // Parse the first declarator attached to this declspec.
1286     Declarator ParmDeclarator(DS, Declarator::KNRTypeListContext);
1287     ParseDeclarator(ParmDeclarator);
1288 
1289     // Handle the full declarator list.
1290     while (1) {
1291       // If attributes are present, parse them.
1292       MaybeParseGNUAttributes(ParmDeclarator);
1293 
1294       // Ask the actions module to compute the type for this declarator.
1295       Decl *Param =
1296         Actions.ActOnParamDeclarator(getCurScope(), ParmDeclarator);
1297 
1298       if (Param &&
1299           // A missing identifier has already been diagnosed.
1300           ParmDeclarator.getIdentifier()) {
1301 
1302         // Scan the argument list looking for the correct param to apply this
1303         // type.
1304         for (unsigned i = 0; ; ++i) {
1305           // C99 6.9.1p6: those declarators shall declare only identifiers from
1306           // the identifier list.
1307           if (i == FTI.NumParams) {
1308             Diag(ParmDeclarator.getIdentifierLoc(), diag::err_no_matching_param)
1309               << ParmDeclarator.getIdentifier();
1310             break;
1311           }
1312 
1313           if (FTI.Params[i].Ident == ParmDeclarator.getIdentifier()) {
1314             // Reject redefinitions of parameters.
1315             if (FTI.Params[i].Param) {
1316               Diag(ParmDeclarator.getIdentifierLoc(),
1317                    diag::err_param_redefinition)
1318                  << ParmDeclarator.getIdentifier();
1319             } else {
1320               FTI.Params[i].Param = Param;
1321             }
1322             break;
1323           }
1324         }
1325       }
1326 
1327       // If we don't have a comma, it is either the end of the list (a ';') or
1328       // an error, bail out.
1329       if (Tok.isNot(tok::comma))
1330         break;
1331 
1332       ParmDeclarator.clear();
1333 
1334       // Consume the comma.
1335       ParmDeclarator.setCommaLoc(ConsumeToken());
1336 
1337       // Parse the next declarator.
1338       ParseDeclarator(ParmDeclarator);
1339     }
1340 
1341     // Consume ';' and continue parsing.
1342     if (!ExpectAndConsumeSemi(diag::err_expected_semi_declaration))
1343       continue;
1344 
1345     // Otherwise recover by skipping to next semi or mandatory function body.
1346     if (SkipUntil(tok::l_brace, StopAtSemi | StopBeforeMatch))
1347       break;
1348     TryConsumeToken(tok::semi);
1349   }
1350 
1351   // The actions module must verify that all arguments were declared.
1352   Actions.ActOnFinishKNRParamDeclarations(getCurScope(), D, Tok.getLocation());
1353 }
1354 
1355 
1356 /// ParseAsmStringLiteral - This is just a normal string-literal, but is not
1357 /// allowed to be a wide string, and is not subject to character translation.
1358 ///
1359 /// [GNU] asm-string-literal:
1360 ///         string-literal
1361 ///
1362 ExprResult Parser::ParseAsmStringLiteral() {
1363   if (!isTokenStringLiteral()) {
1364     Diag(Tok, diag::err_expected_string_literal)
1365       << /*Source='in...'*/0 << "'asm'";
1366     return ExprError();
1367   }
1368 
1369   ExprResult AsmString(ParseStringLiteralExpression());
1370   if (!AsmString.isInvalid()) {
1371     const auto *SL = cast<StringLiteral>(AsmString.get());
1372     if (!SL->isAscii()) {
1373       Diag(Tok, diag::err_asm_operand_wide_string_literal)
1374         << SL->isWide()
1375         << SL->getSourceRange();
1376       return ExprError();
1377     }
1378   }
1379   return AsmString;
1380 }
1381 
1382 /// ParseSimpleAsm
1383 ///
1384 /// [GNU] simple-asm-expr:
1385 ///         'asm' '(' asm-string-literal ')'
1386 ///
1387 ExprResult Parser::ParseSimpleAsm(SourceLocation *EndLoc) {
1388   assert(Tok.is(tok::kw_asm) && "Not an asm!");
1389   SourceLocation Loc = ConsumeToken();
1390 
1391   if (Tok.is(tok::kw_volatile)) {
1392     // Remove from the end of 'asm' to the end of 'volatile'.
1393     SourceRange RemovalRange(PP.getLocForEndOfToken(Loc),
1394                              PP.getLocForEndOfToken(Tok.getLocation()));
1395 
1396     Diag(Tok, diag::warn_file_asm_volatile)
1397       << FixItHint::CreateRemoval(RemovalRange);
1398     ConsumeToken();
1399   }
1400 
1401   BalancedDelimiterTracker T(*this, tok::l_paren);
1402   if (T.consumeOpen()) {
1403     Diag(Tok, diag::err_expected_lparen_after) << "asm";
1404     return ExprError();
1405   }
1406 
1407   ExprResult Result(ParseAsmStringLiteral());
1408 
1409   if (!Result.isInvalid()) {
1410     // Close the paren and get the location of the end bracket
1411     T.consumeClose();
1412     if (EndLoc)
1413       *EndLoc = T.getCloseLocation();
1414   } else if (SkipUntil(tok::r_paren, StopAtSemi | StopBeforeMatch)) {
1415     if (EndLoc)
1416       *EndLoc = Tok.getLocation();
1417     ConsumeParen();
1418   }
1419 
1420   return Result;
1421 }
1422 
1423 /// \brief Get the TemplateIdAnnotation from the token and put it in the
1424 /// cleanup pool so that it gets destroyed when parsing the current top level
1425 /// declaration is finished.
1426 TemplateIdAnnotation *Parser::takeTemplateIdAnnotation(const Token &tok) {
1427   assert(tok.is(tok::annot_template_id) && "Expected template-id token");
1428   TemplateIdAnnotation *
1429       Id = static_cast<TemplateIdAnnotation *>(tok.getAnnotationValue());
1430   return Id;
1431 }
1432 
1433 void Parser::AnnotateScopeToken(CXXScopeSpec &SS, bool IsNewAnnotation) {
1434   // Push the current token back into the token stream (or revert it if it is
1435   // cached) and use an annotation scope token for current token.
1436   if (PP.isBacktrackEnabled())
1437     PP.RevertCachedTokens(1);
1438   else
1439     PP.EnterToken(Tok);
1440   Tok.setKind(tok::annot_cxxscope);
1441   Tok.setAnnotationValue(Actions.SaveNestedNameSpecifierAnnotation(SS));
1442   Tok.setAnnotationRange(SS.getRange());
1443 
1444   // In case the tokens were cached, have Preprocessor replace them
1445   // with the annotation token.  We don't need to do this if we've
1446   // just reverted back to a prior state.
1447   if (IsNewAnnotation)
1448     PP.AnnotateCachedTokens(Tok);
1449 }
1450 
1451 /// \brief Attempt to classify the name at the current token position. This may
1452 /// form a type, scope or primary expression annotation, or replace the token
1453 /// with a typo-corrected keyword. This is only appropriate when the current
1454 /// name must refer to an entity which has already been declared.
1455 ///
1456 /// \param IsAddressOfOperand Must be \c true if the name is preceded by an '&'
1457 ///        and might possibly have a dependent nested name specifier.
1458 /// \param CCC Indicates how to perform typo-correction for this name. If NULL,
1459 ///        no typo correction will be performed.
1460 Parser::AnnotatedNameKind
1461 Parser::TryAnnotateName(bool IsAddressOfOperand,
1462                         std::unique_ptr<CorrectionCandidateCallback> CCC) {
1463   assert(Tok.is(tok::identifier) || Tok.is(tok::annot_cxxscope));
1464 
1465   const bool EnteringContext = false;
1466   const bool WasScopeAnnotation = Tok.is(tok::annot_cxxscope);
1467 
1468   CXXScopeSpec SS;
1469   if (getLangOpts().CPlusPlus &&
1470       ParseOptionalCXXScopeSpecifier(SS, nullptr, EnteringContext))
1471     return ANK_Error;
1472 
1473   if (Tok.isNot(tok::identifier) || SS.isInvalid()) {
1474     if (TryAnnotateTypeOrScopeTokenAfterScopeSpec(EnteringContext, false, SS,
1475                                                   !WasScopeAnnotation))
1476       return ANK_Error;
1477     return ANK_Unresolved;
1478   }
1479 
1480   IdentifierInfo *Name = Tok.getIdentifierInfo();
1481   SourceLocation NameLoc = Tok.getLocation();
1482 
1483   // FIXME: Move the tentative declaration logic into ClassifyName so we can
1484   // typo-correct to tentatively-declared identifiers.
1485   if (isTentativelyDeclared(Name)) {
1486     // Identifier has been tentatively declared, and thus cannot be resolved as
1487     // an expression. Fall back to annotating it as a type.
1488     if (TryAnnotateTypeOrScopeTokenAfterScopeSpec(EnteringContext, false, SS,
1489                                                   !WasScopeAnnotation))
1490       return ANK_Error;
1491     return Tok.is(tok::annot_typename) ? ANK_Success : ANK_TentativeDecl;
1492   }
1493 
1494   Token Next = NextToken();
1495 
1496   // Look up and classify the identifier. We don't perform any typo-correction
1497   // after a scope specifier, because in general we can't recover from typos
1498   // there (eg, after correcting 'A::tempalte B<X>::C' [sic], we would need to
1499   // jump back into scope specifier parsing).
1500   Sema::NameClassification Classification = Actions.ClassifyName(
1501       getCurScope(), SS, Name, NameLoc, Next, IsAddressOfOperand,
1502       SS.isEmpty() ? std::move(CCC) : nullptr);
1503 
1504   switch (Classification.getKind()) {
1505   case Sema::NC_Error:
1506     return ANK_Error;
1507 
1508   case Sema::NC_Keyword:
1509     // The identifier was typo-corrected to a keyword.
1510     Tok.setIdentifierInfo(Name);
1511     Tok.setKind(Name->getTokenID());
1512     PP.TypoCorrectToken(Tok);
1513     if (SS.isNotEmpty())
1514       AnnotateScopeToken(SS, !WasScopeAnnotation);
1515     // We've "annotated" this as a keyword.
1516     return ANK_Success;
1517 
1518   case Sema::NC_Unknown:
1519     // It's not something we know about. Leave it unannotated.
1520     break;
1521 
1522   case Sema::NC_Type: {
1523     SourceLocation BeginLoc = NameLoc;
1524     if (SS.isNotEmpty())
1525       BeginLoc = SS.getBeginLoc();
1526 
1527     /// An Objective-C object type followed by '<' is a specialization of
1528     /// a parameterized class type or a protocol-qualified type.
1529     ParsedType Ty = Classification.getType();
1530     if (getLangOpts().ObjC1 && NextToken().is(tok::less) &&
1531         (Ty.get()->isObjCObjectType() ||
1532          Ty.get()->isObjCObjectPointerType())) {
1533       // Consume the name.
1534       SourceLocation IdentifierLoc = ConsumeToken();
1535       SourceLocation NewEndLoc;
1536       TypeResult NewType
1537           = parseObjCTypeArgsAndProtocolQualifiers(IdentifierLoc, Ty,
1538                                                    /*consumeLastToken=*/false,
1539                                                    NewEndLoc);
1540       if (NewType.isUsable())
1541         Ty = NewType.get();
1542     }
1543 
1544     Tok.setKind(tok::annot_typename);
1545     setTypeAnnotation(Tok, Ty);
1546     Tok.setAnnotationEndLoc(Tok.getLocation());
1547     Tok.setLocation(BeginLoc);
1548     PP.AnnotateCachedTokens(Tok);
1549     return ANK_Success;
1550   }
1551 
1552   case Sema::NC_Expression:
1553     Tok.setKind(tok::annot_primary_expr);
1554     setExprAnnotation(Tok, Classification.getExpression());
1555     Tok.setAnnotationEndLoc(NameLoc);
1556     if (SS.isNotEmpty())
1557       Tok.setLocation(SS.getBeginLoc());
1558     PP.AnnotateCachedTokens(Tok);
1559     return ANK_Success;
1560 
1561   case Sema::NC_TypeTemplate:
1562     if (Next.isNot(tok::less)) {
1563       // This may be a type template being used as a template template argument.
1564       if (SS.isNotEmpty())
1565         AnnotateScopeToken(SS, !WasScopeAnnotation);
1566       return ANK_TemplateName;
1567     }
1568     // Fall through.
1569   case Sema::NC_VarTemplate:
1570   case Sema::NC_FunctionTemplate: {
1571     // We have a type, variable or function template followed by '<'.
1572     ConsumeToken();
1573     UnqualifiedId Id;
1574     Id.setIdentifier(Name, NameLoc);
1575     if (AnnotateTemplateIdToken(
1576             TemplateTy::make(Classification.getTemplateName()),
1577             Classification.getTemplateNameKind(), SS, SourceLocation(), Id))
1578       return ANK_Error;
1579     return ANK_Success;
1580   }
1581 
1582   case Sema::NC_NestedNameSpecifier:
1583     llvm_unreachable("already parsed nested name specifier");
1584   }
1585 
1586   // Unable to classify the name, but maybe we can annotate a scope specifier.
1587   if (SS.isNotEmpty())
1588     AnnotateScopeToken(SS, !WasScopeAnnotation);
1589   return ANK_Unresolved;
1590 }
1591 
1592 bool Parser::TryKeywordIdentFallback(bool DisableKeyword) {
1593   assert(Tok.isNot(tok::identifier));
1594   Diag(Tok, diag::ext_keyword_as_ident)
1595     << PP.getSpelling(Tok)
1596     << DisableKeyword;
1597   if (DisableKeyword)
1598     Tok.getIdentifierInfo()->revertTokenIDToIdentifier();
1599   Tok.setKind(tok::identifier);
1600   return true;
1601 }
1602 
1603 /// TryAnnotateTypeOrScopeToken - If the current token position is on a
1604 /// typename (possibly qualified in C++) or a C++ scope specifier not followed
1605 /// by a typename, TryAnnotateTypeOrScopeToken will replace one or more tokens
1606 /// with a single annotation token representing the typename or C++ scope
1607 /// respectively.
1608 /// This simplifies handling of C++ scope specifiers and allows efficient
1609 /// backtracking without the need to re-parse and resolve nested-names and
1610 /// typenames.
1611 /// It will mainly be called when we expect to treat identifiers as typenames
1612 /// (if they are typenames). For example, in C we do not expect identifiers
1613 /// inside expressions to be treated as typenames so it will not be called
1614 /// for expressions in C.
1615 /// The benefit for C/ObjC is that a typename will be annotated and
1616 /// Actions.getTypeName will not be needed to be called again (e.g. getTypeName
1617 /// will not be called twice, once to check whether we have a declaration
1618 /// specifier, and another one to get the actual type inside
1619 /// ParseDeclarationSpecifiers).
1620 ///
1621 /// This returns true if an error occurred.
1622 ///
1623 /// Note that this routine emits an error if you call it with ::new or ::delete
1624 /// as the current tokens, so only call it in contexts where these are invalid.
1625 bool Parser::TryAnnotateTypeOrScopeToken(bool EnteringContext, bool NeedType) {
1626   assert((Tok.is(tok::identifier) || Tok.is(tok::coloncolon) ||
1627           Tok.is(tok::kw_typename) || Tok.is(tok::annot_cxxscope) ||
1628           Tok.is(tok::kw_decltype) || Tok.is(tok::annot_template_id) ||
1629           Tok.is(tok::kw___super)) &&
1630          "Cannot be a type or scope token!");
1631 
1632   if (Tok.is(tok::kw_typename)) {
1633     // MSVC lets you do stuff like:
1634     //   typename typedef T_::D D;
1635     //
1636     // We will consume the typedef token here and put it back after we have
1637     // parsed the first identifier, transforming it into something more like:
1638     //   typename T_::D typedef D;
1639     if (getLangOpts().MSVCCompat && NextToken().is(tok::kw_typedef)) {
1640       Token TypedefToken;
1641       PP.Lex(TypedefToken);
1642       bool Result = TryAnnotateTypeOrScopeToken(EnteringContext, NeedType);
1643       PP.EnterToken(Tok);
1644       Tok = TypedefToken;
1645       if (!Result)
1646         Diag(Tok.getLocation(), diag::warn_expected_qualified_after_typename);
1647       return Result;
1648     }
1649 
1650     // Parse a C++ typename-specifier, e.g., "typename T::type".
1651     //
1652     //   typename-specifier:
1653     //     'typename' '::' [opt] nested-name-specifier identifier
1654     //     'typename' '::' [opt] nested-name-specifier template [opt]
1655     //            simple-template-id
1656     SourceLocation TypenameLoc = ConsumeToken();
1657     CXXScopeSpec SS;
1658     if (ParseOptionalCXXScopeSpecifier(SS, /*ObjectType=*/nullptr,
1659                                        /*EnteringContext=*/false, nullptr,
1660                                        /*IsTypename*/ true))
1661       return true;
1662     if (!SS.isSet()) {
1663       if (Tok.is(tok::identifier) || Tok.is(tok::annot_template_id) ||
1664           Tok.is(tok::annot_decltype)) {
1665         // Attempt to recover by skipping the invalid 'typename'
1666         if (Tok.is(tok::annot_decltype) ||
1667             (!TryAnnotateTypeOrScopeToken(EnteringContext, NeedType) &&
1668              Tok.isAnnotation())) {
1669           unsigned DiagID = diag::err_expected_qualified_after_typename;
1670           // MS compatibility: MSVC permits using known types with typename.
1671           // e.g. "typedef typename T* pointer_type"
1672           if (getLangOpts().MicrosoftExt)
1673             DiagID = diag::warn_expected_qualified_after_typename;
1674           Diag(Tok.getLocation(), DiagID);
1675           return false;
1676         }
1677       }
1678 
1679       Diag(Tok.getLocation(), diag::err_expected_qualified_after_typename);
1680       return true;
1681     }
1682 
1683     TypeResult Ty;
1684     if (Tok.is(tok::identifier)) {
1685       // FIXME: check whether the next token is '<', first!
1686       Ty = Actions.ActOnTypenameType(getCurScope(), TypenameLoc, SS,
1687                                      *Tok.getIdentifierInfo(),
1688                                      Tok.getLocation());
1689     } else if (Tok.is(tok::annot_template_id)) {
1690       TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
1691       if (TemplateId->Kind != TNK_Type_template &&
1692           TemplateId->Kind != TNK_Dependent_template_name) {
1693         Diag(Tok, diag::err_typename_refers_to_non_type_template)
1694           << Tok.getAnnotationRange();
1695         return true;
1696       }
1697 
1698       ASTTemplateArgsPtr TemplateArgsPtr(TemplateId->getTemplateArgs(),
1699                                          TemplateId->NumArgs);
1700 
1701       Ty = Actions.ActOnTypenameType(getCurScope(), TypenameLoc, SS,
1702                                      TemplateId->TemplateKWLoc,
1703                                      TemplateId->Template,
1704                                      TemplateId->TemplateNameLoc,
1705                                      TemplateId->LAngleLoc,
1706                                      TemplateArgsPtr,
1707                                      TemplateId->RAngleLoc);
1708     } else {
1709       Diag(Tok, diag::err_expected_type_name_after_typename)
1710         << SS.getRange();
1711       return true;
1712     }
1713 
1714     SourceLocation EndLoc = Tok.getLastLoc();
1715     Tok.setKind(tok::annot_typename);
1716     setTypeAnnotation(Tok, Ty.isInvalid() ? nullptr : Ty.get());
1717     Tok.setAnnotationEndLoc(EndLoc);
1718     Tok.setLocation(TypenameLoc);
1719     PP.AnnotateCachedTokens(Tok);
1720     return false;
1721   }
1722 
1723   // Remembers whether the token was originally a scope annotation.
1724   bool WasScopeAnnotation = Tok.is(tok::annot_cxxscope);
1725 
1726   CXXScopeSpec SS;
1727   if (getLangOpts().CPlusPlus)
1728     if (ParseOptionalCXXScopeSpecifier(SS, nullptr, EnteringContext))
1729       return true;
1730 
1731   return TryAnnotateTypeOrScopeTokenAfterScopeSpec(EnteringContext, NeedType,
1732                                                    SS, !WasScopeAnnotation);
1733 }
1734 
1735 /// \brief Try to annotate a type or scope token, having already parsed an
1736 /// optional scope specifier. \p IsNewScope should be \c true unless the scope
1737 /// specifier was extracted from an existing tok::annot_cxxscope annotation.
1738 bool Parser::TryAnnotateTypeOrScopeTokenAfterScopeSpec(bool EnteringContext,
1739                                                        bool NeedType,
1740                                                        CXXScopeSpec &SS,
1741                                                        bool IsNewScope) {
1742   if (Tok.is(tok::identifier)) {
1743     IdentifierInfo *CorrectedII = nullptr;
1744     // Determine whether the identifier is a type name.
1745     if (ParsedType Ty = Actions.getTypeName(
1746             *Tok.getIdentifierInfo(), Tok.getLocation(), getCurScope(), &SS,
1747             false, NextToken().is(tok::period), nullptr,
1748             /*IsCtorOrDtorName=*/false,
1749             /*NonTrivialTypeSourceInfo*/ true,
1750             NeedType ? &CorrectedII : nullptr)) {
1751       // A FixIt was applied as a result of typo correction
1752       if (CorrectedII)
1753         Tok.setIdentifierInfo(CorrectedII);
1754 
1755       SourceLocation BeginLoc = Tok.getLocation();
1756       if (SS.isNotEmpty()) // it was a C++ qualified type name.
1757         BeginLoc = SS.getBeginLoc();
1758 
1759       /// An Objective-C object type followed by '<' is a specialization of
1760       /// a parameterized class type or a protocol-qualified type.
1761       if (getLangOpts().ObjC1 && NextToken().is(tok::less) &&
1762           (Ty.get()->isObjCObjectType() ||
1763            Ty.get()->isObjCObjectPointerType())) {
1764         // Consume the name.
1765         SourceLocation IdentifierLoc = ConsumeToken();
1766         SourceLocation NewEndLoc;
1767         TypeResult NewType
1768           = parseObjCTypeArgsAndProtocolQualifiers(IdentifierLoc, Ty,
1769                                                    /*consumeLastToken=*/false,
1770                                                    NewEndLoc);
1771         if (NewType.isUsable())
1772           Ty = NewType.get();
1773       }
1774 
1775       // This is a typename. Replace the current token in-place with an
1776       // annotation type token.
1777       Tok.setKind(tok::annot_typename);
1778       setTypeAnnotation(Tok, Ty);
1779       Tok.setAnnotationEndLoc(Tok.getLocation());
1780       Tok.setLocation(BeginLoc);
1781 
1782       // In case the tokens were cached, have Preprocessor replace
1783       // them with the annotation token.
1784       PP.AnnotateCachedTokens(Tok);
1785       return false;
1786     }
1787 
1788     if (!getLangOpts().CPlusPlus) {
1789       // If we're in C, we can't have :: tokens at all (the lexer won't return
1790       // them).  If the identifier is not a type, then it can't be scope either,
1791       // just early exit.
1792       return false;
1793     }
1794 
1795     // If this is a template-id, annotate with a template-id or type token.
1796     if (NextToken().is(tok::less)) {
1797       TemplateTy Template;
1798       UnqualifiedId TemplateName;
1799       TemplateName.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
1800       bool MemberOfUnknownSpecialization;
1801       if (TemplateNameKind TNK =
1802               Actions.isTemplateName(getCurScope(), SS,
1803                                      /*hasTemplateKeyword=*/false, TemplateName,
1804                                      /*ObjectType=*/nullptr, EnteringContext,
1805                                      Template, MemberOfUnknownSpecialization)) {
1806         // Consume the identifier.
1807         ConsumeToken();
1808         if (AnnotateTemplateIdToken(Template, TNK, SS, SourceLocation(),
1809                                     TemplateName)) {
1810           // If an unrecoverable error occurred, we need to return true here,
1811           // because the token stream is in a damaged state.  We may not return
1812           // a valid identifier.
1813           return true;
1814         }
1815       }
1816     }
1817 
1818     // The current token, which is either an identifier or a
1819     // template-id, is not part of the annotation. Fall through to
1820     // push that token back into the stream and complete the C++ scope
1821     // specifier annotation.
1822   }
1823 
1824   if (Tok.is(tok::annot_template_id)) {
1825     TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
1826     if (TemplateId->Kind == TNK_Type_template) {
1827       // A template-id that refers to a type was parsed into a
1828       // template-id annotation in a context where we weren't allowed
1829       // to produce a type annotation token. Update the template-id
1830       // annotation token to a type annotation token now.
1831       AnnotateTemplateIdTokenAsType();
1832       return false;
1833     }
1834   }
1835 
1836   if (SS.isEmpty())
1837     return false;
1838 
1839   // A C++ scope specifier that isn't followed by a typename.
1840   AnnotateScopeToken(SS, IsNewScope);
1841   return false;
1842 }
1843 
1844 /// TryAnnotateScopeToken - Like TryAnnotateTypeOrScopeToken but only
1845 /// annotates C++ scope specifiers and template-ids.  This returns
1846 /// true if there was an error that could not be recovered from.
1847 ///
1848 /// Note that this routine emits an error if you call it with ::new or ::delete
1849 /// as the current tokens, so only call it in contexts where these are invalid.
1850 bool Parser::TryAnnotateCXXScopeToken(bool EnteringContext) {
1851   assert(getLangOpts().CPlusPlus &&
1852          "Call sites of this function should be guarded by checking for C++");
1853   assert((Tok.is(tok::identifier) || Tok.is(tok::coloncolon) ||
1854           (Tok.is(tok::annot_template_id) && NextToken().is(tok::coloncolon)) ||
1855           Tok.is(tok::kw_decltype) || Tok.is(tok::kw___super)) &&
1856          "Cannot be a type or scope token!");
1857 
1858   CXXScopeSpec SS;
1859   if (ParseOptionalCXXScopeSpecifier(SS, nullptr, EnteringContext))
1860     return true;
1861   if (SS.isEmpty())
1862     return false;
1863 
1864   AnnotateScopeToken(SS, true);
1865   return false;
1866 }
1867 
1868 bool Parser::isTokenEqualOrEqualTypo() {
1869   tok::TokenKind Kind = Tok.getKind();
1870   switch (Kind) {
1871   default:
1872     return false;
1873   case tok::ampequal:            // &=
1874   case tok::starequal:           // *=
1875   case tok::plusequal:           // +=
1876   case tok::minusequal:          // -=
1877   case tok::exclaimequal:        // !=
1878   case tok::slashequal:          // /=
1879   case tok::percentequal:        // %=
1880   case tok::lessequal:           // <=
1881   case tok::lesslessequal:       // <<=
1882   case tok::greaterequal:        // >=
1883   case tok::greatergreaterequal: // >>=
1884   case tok::caretequal:          // ^=
1885   case tok::pipeequal:           // |=
1886   case tok::equalequal:          // ==
1887     Diag(Tok, diag::err_invalid_token_after_declarator_suggest_equal)
1888         << Kind
1889         << FixItHint::CreateReplacement(SourceRange(Tok.getLocation()), "=");
1890   case tok::equal:
1891     return true;
1892   }
1893 }
1894 
1895 SourceLocation Parser::handleUnexpectedCodeCompletionToken() {
1896   assert(Tok.is(tok::code_completion));
1897   PrevTokLocation = Tok.getLocation();
1898 
1899   for (Scope *S = getCurScope(); S; S = S->getParent()) {
1900     if (S->getFlags() & Scope::FnScope) {
1901       Actions.CodeCompleteOrdinaryName(getCurScope(),
1902                                        Sema::PCC_RecoveryInFunction);
1903       cutOffParsing();
1904       return PrevTokLocation;
1905     }
1906 
1907     if (S->getFlags() & Scope::ClassScope) {
1908       Actions.CodeCompleteOrdinaryName(getCurScope(), Sema::PCC_Class);
1909       cutOffParsing();
1910       return PrevTokLocation;
1911     }
1912   }
1913 
1914   Actions.CodeCompleteOrdinaryName(getCurScope(), Sema::PCC_Namespace);
1915   cutOffParsing();
1916   return PrevTokLocation;
1917 }
1918 
1919 // Code-completion pass-through functions
1920 
1921 void Parser::CodeCompleteDirective(bool InConditional) {
1922   Actions.CodeCompletePreprocessorDirective(InConditional);
1923 }
1924 
1925 void Parser::CodeCompleteInConditionalExclusion() {
1926   Actions.CodeCompleteInPreprocessorConditionalExclusion(getCurScope());
1927 }
1928 
1929 void Parser::CodeCompleteMacroName(bool IsDefinition) {
1930   Actions.CodeCompletePreprocessorMacroName(IsDefinition);
1931 }
1932 
1933 void Parser::CodeCompletePreprocessorExpression() {
1934   Actions.CodeCompletePreprocessorExpression();
1935 }
1936 
1937 void Parser::CodeCompleteMacroArgument(IdentifierInfo *Macro,
1938                                        MacroInfo *MacroInfo,
1939                                        unsigned ArgumentIndex) {
1940   Actions.CodeCompletePreprocessorMacroArgument(getCurScope(), Macro, MacroInfo,
1941                                                 ArgumentIndex);
1942 }
1943 
1944 void Parser::CodeCompleteNaturalLanguage() {
1945   Actions.CodeCompleteNaturalLanguage();
1946 }
1947 
1948 bool Parser::ParseMicrosoftIfExistsCondition(IfExistsCondition& Result) {
1949   assert((Tok.is(tok::kw___if_exists) || Tok.is(tok::kw___if_not_exists)) &&
1950          "Expected '__if_exists' or '__if_not_exists'");
1951   Result.IsIfExists = Tok.is(tok::kw___if_exists);
1952   Result.KeywordLoc = ConsumeToken();
1953 
1954   BalancedDelimiterTracker T(*this, tok::l_paren);
1955   if (T.consumeOpen()) {
1956     Diag(Tok, diag::err_expected_lparen_after)
1957       << (Result.IsIfExists? "__if_exists" : "__if_not_exists");
1958     return true;
1959   }
1960 
1961   // Parse nested-name-specifier.
1962   if (getLangOpts().CPlusPlus)
1963     ParseOptionalCXXScopeSpecifier(Result.SS, nullptr,
1964                                    /*EnteringContext=*/false);
1965 
1966   // Check nested-name specifier.
1967   if (Result.SS.isInvalid()) {
1968     T.skipToEnd();
1969     return true;
1970   }
1971 
1972   // Parse the unqualified-id.
1973   SourceLocation TemplateKWLoc; // FIXME: parsed, but unused.
1974   if (ParseUnqualifiedId(Result.SS, false, true, true, nullptr, TemplateKWLoc,
1975                          Result.Name)) {
1976     T.skipToEnd();
1977     return true;
1978   }
1979 
1980   if (T.consumeClose())
1981     return true;
1982 
1983   // Check if the symbol exists.
1984   switch (Actions.CheckMicrosoftIfExistsSymbol(getCurScope(), Result.KeywordLoc,
1985                                                Result.IsIfExists, Result.SS,
1986                                                Result.Name)) {
1987   case Sema::IER_Exists:
1988     Result.Behavior = Result.IsIfExists ? IEB_Parse : IEB_Skip;
1989     break;
1990 
1991   case Sema::IER_DoesNotExist:
1992     Result.Behavior = !Result.IsIfExists ? IEB_Parse : IEB_Skip;
1993     break;
1994 
1995   case Sema::IER_Dependent:
1996     Result.Behavior = IEB_Dependent;
1997     break;
1998 
1999   case Sema::IER_Error:
2000     return true;
2001   }
2002 
2003   return false;
2004 }
2005 
2006 void Parser::ParseMicrosoftIfExistsExternalDeclaration() {
2007   IfExistsCondition Result;
2008   if (ParseMicrosoftIfExistsCondition(Result))
2009     return;
2010 
2011   BalancedDelimiterTracker Braces(*this, tok::l_brace);
2012   if (Braces.consumeOpen()) {
2013     Diag(Tok, diag::err_expected) << tok::l_brace;
2014     return;
2015   }
2016 
2017   switch (Result.Behavior) {
2018   case IEB_Parse:
2019     // Parse declarations below.
2020     break;
2021 
2022   case IEB_Dependent:
2023     llvm_unreachable("Cannot have a dependent external declaration");
2024 
2025   case IEB_Skip:
2026     Braces.skipToEnd();
2027     return;
2028   }
2029 
2030   // Parse the declarations.
2031   // FIXME: Support module import within __if_exists?
2032   while (Tok.isNot(tok::r_brace) && !isEofOrEom()) {
2033     ParsedAttributesWithRange attrs(AttrFactory);
2034     MaybeParseCXX11Attributes(attrs);
2035     DeclGroupPtrTy Result = ParseExternalDeclaration(attrs);
2036     if (Result && !getCurScope()->getParent())
2037       Actions.getASTConsumer().HandleTopLevelDecl(Result.get());
2038   }
2039   Braces.consumeClose();
2040 }
2041 
2042 /// Parse a C++ Modules TS module declaration, which appears at the beginning
2043 /// of a module interface, module partition, or module implementation file.
2044 ///
2045 ///   module-declaration:   [Modules TS + P0273R0]
2046 ///     'module' module-kind[opt] module-name attribute-specifier-seq[opt] ';'
2047 ///   module-kind:
2048 ///     'implementation'
2049 ///     'partition'
2050 ///
2051 /// Note that the module-kind values are context-sensitive keywords.
2052 Parser::DeclGroupPtrTy Parser::ParseModuleDecl() {
2053   assert(Tok.is(tok::kw_module) && getLangOpts().ModulesTS &&
2054          "should not be parsing a module declaration");
2055   SourceLocation ModuleLoc = ConsumeToken();
2056 
2057   // Check for a module-kind.
2058   Sema::ModuleDeclKind MDK = Sema::ModuleDeclKind::Module;
2059   if (Tok.is(tok::identifier) && NextToken().is(tok::identifier)) {
2060     if (Tok.getIdentifierInfo()->isStr("implementation"))
2061       MDK = Sema::ModuleDeclKind::Implementation;
2062     else if (Tok.getIdentifierInfo()->isStr("partition"))
2063       MDK = Sema::ModuleDeclKind::Partition;
2064     else {
2065       Diag(Tok, diag::err_unexpected_module_kind) << Tok.getIdentifierInfo();
2066       SkipUntil(tok::semi);
2067       return nullptr;
2068     }
2069     ConsumeToken();
2070   }
2071 
2072   SmallVector<std::pair<IdentifierInfo *, SourceLocation>, 2> Path;
2073   if (ParseModuleName(ModuleLoc, Path, /*IsImport*/false))
2074     return nullptr;
2075 
2076   ParsedAttributesWithRange Attrs(AttrFactory);
2077   MaybeParseCXX11Attributes(Attrs);
2078   // We don't support any module attributes yet.
2079   ProhibitCXX11Attributes(Attrs, diag::err_attribute_not_module_attr);
2080 
2081   ExpectAndConsumeSemi(diag::err_module_expected_semi);
2082 
2083   return Actions.ActOnModuleDecl(ModuleLoc, MDK, Path);
2084 }
2085 
2086 /// Parse a module import declaration. This is essentially the same for
2087 /// Objective-C and the C++ Modules TS, except for the leading '@' (in ObjC)
2088 /// and the trailing optional attributes (in C++).
2089 ///
2090 /// [ObjC]  @import declaration:
2091 ///           '@' 'import' module-name ';'
2092 /// [ModTS] module-import-declaration:
2093 ///           'import' module-name attribute-specifier-seq[opt] ';'
2094 Parser::DeclGroupPtrTy Parser::ParseModuleImport(SourceLocation AtLoc) {
2095   assert((AtLoc.isInvalid() ? Tok.is(tok::kw_import)
2096                             : Tok.isObjCAtKeyword(tok::objc_import)) &&
2097          "Improper start to module import");
2098   SourceLocation ImportLoc = ConsumeToken();
2099   SourceLocation StartLoc = AtLoc.isInvalid() ? ImportLoc : AtLoc;
2100 
2101   SmallVector<std::pair<IdentifierInfo *, SourceLocation>, 2> Path;
2102   if (ParseModuleName(ImportLoc, Path, /*IsImport*/true))
2103     return nullptr;
2104 
2105   ParsedAttributesWithRange Attrs(AttrFactory);
2106   MaybeParseCXX11Attributes(Attrs);
2107   // We don't support any module import attributes yet.
2108   ProhibitCXX11Attributes(Attrs, diag::err_attribute_not_import_attr);
2109 
2110   if (PP.hadModuleLoaderFatalFailure()) {
2111     // With a fatal failure in the module loader, we abort parsing.
2112     cutOffParsing();
2113     return nullptr;
2114   }
2115 
2116   DeclResult Import = Actions.ActOnModuleImport(StartLoc, ImportLoc, Path);
2117   ExpectAndConsumeSemi(diag::err_module_expected_semi);
2118   if (Import.isInvalid())
2119     return nullptr;
2120 
2121   return Actions.ConvertDeclToDeclGroup(Import.get());
2122 }
2123 
2124 /// Parse a C++ Modules TS / Objective-C module name (both forms use the same
2125 /// grammar).
2126 ///
2127 ///         module-name:
2128 ///           module-name-qualifier[opt] identifier
2129 ///         module-name-qualifier:
2130 ///           module-name-qualifier[opt] identifier '.'
2131 bool Parser::ParseModuleName(
2132     SourceLocation UseLoc,
2133     SmallVectorImpl<std::pair<IdentifierInfo *, SourceLocation>> &Path,
2134     bool IsImport) {
2135   // Parse the module path.
2136   while (true) {
2137     if (!Tok.is(tok::identifier)) {
2138       if (Tok.is(tok::code_completion)) {
2139         Actions.CodeCompleteModuleImport(UseLoc, Path);
2140         cutOffParsing();
2141         return true;
2142       }
2143 
2144       Diag(Tok, diag::err_module_expected_ident) << IsImport;
2145       SkipUntil(tok::semi);
2146       return true;
2147     }
2148 
2149     // Record this part of the module path.
2150     Path.push_back(std::make_pair(Tok.getIdentifierInfo(), Tok.getLocation()));
2151     ConsumeToken();
2152 
2153     if (Tok.isNot(tok::period))
2154       return false;
2155 
2156     ConsumeToken();
2157   }
2158 }
2159 
2160 /// \brief Try recover parser when module annotation appears where it must not
2161 /// be found.
2162 /// \returns false if the recover was successful and parsing may be continued, or
2163 /// true if parser must bail out to top level and handle the token there.
2164 bool Parser::parseMisplacedModuleImport() {
2165   while (true) {
2166     switch (Tok.getKind()) {
2167     case tok::annot_module_end:
2168       // Inform caller that recovery failed, the error must be handled at upper
2169       // level.
2170       return true;
2171     case tok::annot_module_begin:
2172       Actions.diagnoseMisplacedModuleImport(reinterpret_cast<Module *>(
2173         Tok.getAnnotationValue()), Tok.getLocation());
2174       return true;
2175     case tok::annot_module_include:
2176       // Module import found where it should not be, for instance, inside a
2177       // namespace. Recover by importing the module.
2178       Actions.ActOnModuleInclude(Tok.getLocation(),
2179                                  reinterpret_cast<Module *>(
2180                                  Tok.getAnnotationValue()));
2181       ConsumeToken();
2182       // If there is another module import, process it.
2183       continue;
2184     default:
2185       return false;
2186     }
2187   }
2188   return false;
2189 }
2190 
2191 bool BalancedDelimiterTracker::diagnoseOverflow() {
2192   P.Diag(P.Tok, diag::err_bracket_depth_exceeded)
2193     << P.getLangOpts().BracketDepth;
2194   P.Diag(P.Tok, diag::note_bracket_depth);
2195   P.cutOffParsing();
2196   return true;
2197 }
2198 
2199 bool BalancedDelimiterTracker::expectAndConsume(unsigned DiagID,
2200                                                 const char *Msg,
2201                                                 tok::TokenKind SkipToTok) {
2202   LOpen = P.Tok.getLocation();
2203   if (P.ExpectAndConsume(Kind, DiagID, Msg)) {
2204     if (SkipToTok != tok::unknown)
2205       P.SkipUntil(SkipToTok, Parser::StopAtSemi);
2206     return true;
2207   }
2208 
2209   if (getDepth() < MaxDepth)
2210     return false;
2211 
2212   return diagnoseOverflow();
2213 }
2214 
2215 bool BalancedDelimiterTracker::diagnoseMissingClose() {
2216   assert(!P.Tok.is(Close) && "Should have consumed closing delimiter");
2217 
2218   if (P.Tok.is(tok::annot_module_end))
2219     P.Diag(P.Tok, diag::err_missing_before_module_end) << Close;
2220   else
2221     P.Diag(P.Tok, diag::err_expected) << Close;
2222   P.Diag(LOpen, diag::note_matching) << Kind;
2223 
2224   // If we're not already at some kind of closing bracket, skip to our closing
2225   // token.
2226   if (P.Tok.isNot(tok::r_paren) && P.Tok.isNot(tok::r_brace) &&
2227       P.Tok.isNot(tok::r_square) &&
2228       P.SkipUntil(Close, FinalToken,
2229                   Parser::StopAtSemi | Parser::StopBeforeMatch) &&
2230       P.Tok.is(Close))
2231     LClose = P.ConsumeAnyToken();
2232   return true;
2233 }
2234 
2235 void BalancedDelimiterTracker::skipToEnd() {
2236   P.SkipUntil(Close, Parser::StopBeforeMatch);
2237   consumeClose();
2238 }
2239