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 "clang/AST/ASTConsumer.h"
16 #include "clang/AST/ASTContext.h"
17 #include "clang/AST/DeclTemplate.h"
18 #include "clang/Parse/ParseDiagnostic.h"
19 #include "clang/Parse/RAIIObjectsForParser.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 } // end anonymous namespace
41 
42 IdentifierInfo *Parser::getSEHExceptKeyword() {
43   // __except is accepted as a (contextual) keyword
44   if (!Ident__except && (getLangOpts().MicrosoftExt || getLangOpts().Borland))
45     Ident__except = PP.getIdentifierInfo("__except");
46 
47   return Ident__except;
48 }
49 
50 Parser::Parser(Preprocessor &pp, Sema &actions, bool skipFunctionBodies)
51   : PP(pp), Actions(actions), Diags(PP.getDiagnostics()),
52     GreaterThanIsOperator(true), ColonIsSacred(false),
53     InMessageExpression(false), TemplateParameterDepth(0),
54     ParsingInObjCContainer(false) {
55   SkipFunctionBodies = pp.isCodeCompletionEnabled() || skipFunctionBodies;
56   Tok.startToken();
57   Tok.setKind(tok::eof);
58   Actions.CurScope = nullptr;
59   NumCachedScopes = 0;
60   CurParsedObjCImpl = nullptr;
61 
62   // Add #pragma handlers. These are removed and destroyed in the
63   // destructor.
64   initializePragmaHandlers();
65 
66   CommentSemaHandler.reset(new ActionCommentHandler(actions));
67   PP.addCommentHandler(CommentSemaHandler.get());
68 
69   PP.setCodeCompletionHandler(*this);
70 }
71 
72 DiagnosticBuilder Parser::Diag(SourceLocation Loc, unsigned DiagID) {
73   return Diags.Report(Loc, DiagID);
74 }
75 
76 DiagnosticBuilder Parser::Diag(const Token &Tok, unsigned DiagID) {
77   return Diag(Tok.getLocation(), DiagID);
78 }
79 
80 /// \brief Emits a diagnostic suggesting parentheses surrounding a
81 /// given range.
82 ///
83 /// \param Loc The location where we'll emit the diagnostic.
84 /// \param DK The kind of diagnostic to emit.
85 /// \param ParenRange Source range enclosing code that should be parenthesized.
86 void Parser::SuggestParentheses(SourceLocation Loc, unsigned DK,
87                                 SourceRange ParenRange) {
88   SourceLocation EndLoc = PP.getLocForEndOfToken(ParenRange.getEnd());
89   if (!ParenRange.getEnd().isFileID() || EndLoc.isInvalid()) {
90     // We can't display the parentheses, so just dig the
91     // warning/error and return.
92     Diag(Loc, DK);
93     return;
94   }
95 
96   Diag(Loc, DK)
97     << FixItHint::CreateInsertion(ParenRange.getBegin(), "(")
98     << FixItHint::CreateInsertion(EndLoc, ")");
99 }
100 
101 static bool IsCommonTypo(tok::TokenKind ExpectedTok, const Token &Tok) {
102   switch (ExpectedTok) {
103   case tok::semi:
104     return Tok.is(tok::colon) || Tok.is(tok::comma); // : or , for ;
105   default: return false;
106   }
107 }
108 
109 bool Parser::ExpectAndConsume(tok::TokenKind ExpectedTok, unsigned DiagID,
110                               StringRef Msg) {
111   if (Tok.is(ExpectedTok) || Tok.is(tok::code_completion)) {
112     ConsumeAnyToken();
113     return false;
114   }
115 
116   // Detect common single-character typos and resume.
117   if (IsCommonTypo(ExpectedTok, Tok)) {
118     SourceLocation Loc = Tok.getLocation();
119     {
120       DiagnosticBuilder DB = Diag(Loc, DiagID);
121       DB << FixItHint::CreateReplacement(
122                 SourceRange(Loc), tok::getPunctuatorSpelling(ExpectedTok));
123       if (DiagID == diag::err_expected)
124         DB << ExpectedTok;
125       else if (DiagID == diag::err_expected_after)
126         DB << Msg << ExpectedTok;
127       else
128         DB << Msg;
129     }
130 
131     // Pretend there wasn't a problem.
132     ConsumeAnyToken();
133     return false;
134   }
135 
136   SourceLocation EndLoc = PP.getLocForEndOfToken(PrevTokLocation);
137   const char *Spelling = nullptr;
138   if (EndLoc.isValid())
139     Spelling = tok::getPunctuatorSpelling(ExpectedTok);
140 
141   DiagnosticBuilder DB =
142       Spelling
143           ? Diag(EndLoc, DiagID) << FixItHint::CreateInsertion(EndLoc, Spelling)
144           : Diag(Tok, DiagID);
145   if (DiagID == diag::err_expected)
146     DB << ExpectedTok;
147   else if (DiagID == diag::err_expected_after)
148     DB << Msg << ExpectedTok;
149   else
150     DB << Msg;
151 
152   return true;
153 }
154 
155 bool Parser::ExpectAndConsumeSemi(unsigned DiagID) {
156   if (TryConsumeToken(tok::semi))
157     return false;
158 
159   if (Tok.is(tok::code_completion)) {
160     handleUnexpectedCodeCompletionToken();
161     return false;
162   }
163 
164   if ((Tok.is(tok::r_paren) || Tok.is(tok::r_square)) &&
165       NextToken().is(tok::semi)) {
166     Diag(Tok, diag::err_extraneous_token_before_semi)
167       << PP.getSpelling(Tok)
168       << FixItHint::CreateRemoval(Tok.getLocation());
169     ConsumeAnyToken(); // The ')' or ']'.
170     ConsumeToken(); // The ';'.
171     return false;
172   }
173 
174   return ExpectAndConsume(tok::semi, DiagID);
175 }
176 
177 void Parser::ConsumeExtraSemi(ExtraSemiKind Kind, unsigned TST) {
178   if (!Tok.is(tok::semi)) return;
179 
180   bool HadMultipleSemis = false;
181   SourceLocation StartLoc = Tok.getLocation();
182   SourceLocation EndLoc = Tok.getLocation();
183   ConsumeToken();
184 
185   while ((Tok.is(tok::semi) && !Tok.isAtStartOfLine())) {
186     HadMultipleSemis = true;
187     EndLoc = Tok.getLocation();
188     ConsumeToken();
189   }
190 
191   // C++11 allows extra semicolons at namespace scope, but not in any of the
192   // other contexts.
193   if (Kind == OutsideFunction && getLangOpts().CPlusPlus) {
194     if (getLangOpts().CPlusPlus11)
195       Diag(StartLoc, diag::warn_cxx98_compat_top_level_semi)
196           << FixItHint::CreateRemoval(SourceRange(StartLoc, EndLoc));
197     else
198       Diag(StartLoc, diag::ext_extra_semi_cxx11)
199           << FixItHint::CreateRemoval(SourceRange(StartLoc, EndLoc));
200     return;
201   }
202 
203   if (Kind != AfterMemberFunctionDefinition || HadMultipleSemis)
204     Diag(StartLoc, diag::ext_extra_semi)
205         << Kind << DeclSpec::getSpecifierName((DeclSpec::TST)TST,
206                                     Actions.getASTContext().getPrintingPolicy())
207         << FixItHint::CreateRemoval(SourceRange(StartLoc, EndLoc));
208   else
209     // A single semicolon is valid after a member function definition.
210     Diag(StartLoc, diag::warn_extra_semi_after_mem_fn_def)
211       << FixItHint::CreateRemoval(SourceRange(StartLoc, EndLoc));
212 }
213 
214 bool Parser::expectIdentifier() {
215   if (Tok.is(tok::identifier))
216     return false;
217   if (const auto *II = Tok.getIdentifierInfo()) {
218     if (II->isCPlusPlusKeyword(getLangOpts())) {
219       Diag(Tok, diag::err_expected_token_instead_of_objcxx_keyword)
220           << tok::identifier << Tok.getIdentifierInfo();
221       // Objective-C++: Recover by treating this keyword as a valid identifier.
222       return false;
223     }
224   }
225   Diag(Tok, diag::err_expected) << tok::identifier;
226   return true;
227 }
228 
229 //===----------------------------------------------------------------------===//
230 // Error recovery.
231 //===----------------------------------------------------------------------===//
232 
233 static bool HasFlagsSet(Parser::SkipUntilFlags L, Parser::SkipUntilFlags R) {
234   return (static_cast<unsigned>(L) & static_cast<unsigned>(R)) != 0;
235 }
236 
237 /// SkipUntil - Read tokens until we get to the specified token, then consume
238 /// it (unless no flag StopBeforeMatch).  Because we cannot guarantee that the
239 /// token will ever occur, this skips to the next token, or to some likely
240 /// good stopping point.  If StopAtSemi is true, skipping will stop at a ';'
241 /// character.
242 ///
243 /// If SkipUntil finds the specified token, it returns true, otherwise it
244 /// returns false.
245 bool Parser::SkipUntil(ArrayRef<tok::TokenKind> Toks, SkipUntilFlags Flags) {
246   // We always want this function to skip at least one token if the first token
247   // isn't T and if not at EOF.
248   bool isFirstTokenSkipped = true;
249   while (1) {
250     // If we found one of the tokens, stop and return true.
251     for (unsigned i = 0, NumToks = Toks.size(); i != NumToks; ++i) {
252       if (Tok.is(Toks[i])) {
253         if (HasFlagsSet(Flags, StopBeforeMatch)) {
254           // Noop, don't consume the token.
255         } else {
256           ConsumeAnyToken();
257         }
258         return true;
259       }
260     }
261 
262     // Important special case: The caller has given up and just wants us to
263     // skip the rest of the file. Do this without recursing, since we can
264     // get here precisely because the caller detected too much recursion.
265     if (Toks.size() == 1 && Toks[0] == tok::eof &&
266         !HasFlagsSet(Flags, StopAtSemi) &&
267         !HasFlagsSet(Flags, StopAtCodeCompletion)) {
268       while (Tok.isNot(tok::eof))
269         ConsumeAnyToken();
270       return true;
271     }
272 
273     switch (Tok.getKind()) {
274     case tok::eof:
275       // Ran out of tokens.
276       return false;
277 
278     case tok::annot_pragma_openmp:
279     case tok::annot_pragma_openmp_end:
280       // Stop before an OpenMP pragma boundary.
281     case tok::annot_module_begin:
282     case tok::annot_module_end:
283     case tok::annot_module_include:
284       // Stop before we change submodules. They generally indicate a "good"
285       // place to pick up parsing again (except in the special case where
286       // we're trying to skip to EOF).
287       return false;
288 
289     case tok::code_completion:
290       if (!HasFlagsSet(Flags, StopAtCodeCompletion))
291         handleUnexpectedCodeCompletionToken();
292       return false;
293 
294     case tok::l_paren:
295       // Recursively skip properly-nested parens.
296       ConsumeParen();
297       if (HasFlagsSet(Flags, StopAtCodeCompletion))
298         SkipUntil(tok::r_paren, StopAtCodeCompletion);
299       else
300         SkipUntil(tok::r_paren);
301       break;
302     case tok::l_square:
303       // Recursively skip properly-nested square brackets.
304       ConsumeBracket();
305       if (HasFlagsSet(Flags, StopAtCodeCompletion))
306         SkipUntil(tok::r_square, StopAtCodeCompletion);
307       else
308         SkipUntil(tok::r_square);
309       break;
310     case tok::l_brace:
311       // Recursively skip properly-nested braces.
312       ConsumeBrace();
313       if (HasFlagsSet(Flags, StopAtCodeCompletion))
314         SkipUntil(tok::r_brace, StopAtCodeCompletion);
315       else
316         SkipUntil(tok::r_brace);
317       break;
318 
319     // Okay, we found a ']' or '}' or ')', which we think should be balanced.
320     // Since the user wasn't looking for this token (if they were, it would
321     // already be handled), this isn't balanced.  If there is a LHS token at a
322     // higher level, we will assume that this matches the unbalanced token
323     // and return it.  Otherwise, this is a spurious RHS token, which we skip.
324     case tok::r_paren:
325       if (ParenCount && !isFirstTokenSkipped)
326         return false;  // Matches something.
327       ConsumeParen();
328       break;
329     case tok::r_square:
330       if (BracketCount && !isFirstTokenSkipped)
331         return false;  // Matches something.
332       ConsumeBracket();
333       break;
334     case tok::r_brace:
335       if (BraceCount && !isFirstTokenSkipped)
336         return false;  // Matches something.
337       ConsumeBrace();
338       break;
339 
340     case tok::string_literal:
341     case tok::wide_string_literal:
342     case tok::utf8_string_literal:
343     case tok::utf16_string_literal:
344     case tok::utf32_string_literal:
345       ConsumeStringToken();
346       break;
347 
348     case tok::semi:
349       if (HasFlagsSet(Flags, StopAtSemi))
350         return false;
351       // FALL THROUGH.
352     default:
353       // Skip this token.
354       ConsumeToken();
355       break;
356     }
357     isFirstTokenSkipped = false;
358   }
359 }
360 
361 //===----------------------------------------------------------------------===//
362 // Scope manipulation
363 //===----------------------------------------------------------------------===//
364 
365 /// EnterScope - Start a new scope.
366 void Parser::EnterScope(unsigned ScopeFlags) {
367   if (NumCachedScopes) {
368     Scope *N = ScopeCache[--NumCachedScopes];
369     N->Init(getCurScope(), ScopeFlags);
370     Actions.CurScope = N;
371   } else {
372     Actions.CurScope = new Scope(getCurScope(), ScopeFlags, Diags);
373   }
374 }
375 
376 /// ExitScope - Pop a scope off the scope stack.
377 void Parser::ExitScope() {
378   assert(getCurScope() && "Scope imbalance!");
379 
380   // Inform the actions module that this scope is going away if there are any
381   // decls in it.
382   Actions.ActOnPopScope(Tok.getLocation(), getCurScope());
383 
384   Scope *OldScope = getCurScope();
385   Actions.CurScope = OldScope->getParent();
386 
387   if (NumCachedScopes == ScopeCacheSize)
388     delete OldScope;
389   else
390     ScopeCache[NumCachedScopes++] = OldScope;
391 }
392 
393 /// Set the flags for the current scope to ScopeFlags. If ManageFlags is false,
394 /// this object does nothing.
395 Parser::ParseScopeFlags::ParseScopeFlags(Parser *Self, unsigned ScopeFlags,
396                                  bool ManageFlags)
397   : CurScope(ManageFlags ? Self->getCurScope() : nullptr) {
398   if (CurScope) {
399     OldFlags = CurScope->getFlags();
400     CurScope->setFlags(ScopeFlags);
401   }
402 }
403 
404 /// Restore the flags for the current scope to what they were before this
405 /// object overrode them.
406 Parser::ParseScopeFlags::~ParseScopeFlags() {
407   if (CurScope)
408     CurScope->setFlags(OldFlags);
409 }
410 
411 
412 //===----------------------------------------------------------------------===//
413 // C99 6.9: External Definitions.
414 //===----------------------------------------------------------------------===//
415 
416 Parser::~Parser() {
417   // If we still have scopes active, delete the scope tree.
418   delete getCurScope();
419   Actions.CurScope = nullptr;
420 
421   // Free the scope cache.
422   for (unsigned i = 0, e = NumCachedScopes; i != e; ++i)
423     delete ScopeCache[i];
424 
425   resetPragmaHandlers();
426 
427   PP.removeCommentHandler(CommentSemaHandler.get());
428 
429   PP.clearCodeCompletionHandler();
430 
431   if (getLangOpts().DelayedTemplateParsing &&
432       !PP.isIncrementalProcessingEnabled() && !TemplateIds.empty()) {
433     // If an ASTConsumer parsed delay-parsed templates in their
434     // HandleTranslationUnit() method, TemplateIds created there were not
435     // guarded by a DestroyTemplateIdAnnotationsRAIIObj object in
436     // ParseTopLevelDecl(). Destroy them here.
437     DestroyTemplateIdAnnotationsRAIIObj CleanupRAII(TemplateIds);
438   }
439 
440   assert(TemplateIds.empty() && "Still alive TemplateIdAnnotations around?");
441 }
442 
443 /// Initialize - Warm up the parser.
444 ///
445 void Parser::Initialize() {
446   // Create the translation unit scope.  Install it as the current scope.
447   assert(getCurScope() == nullptr && "A scope is already active?");
448   EnterScope(Scope::DeclScope);
449   Actions.ActOnTranslationUnitScope(getCurScope());
450 
451   // Initialization for Objective-C context sensitive keywords recognition.
452   // Referenced in Parser::ParseObjCTypeQualifierList.
453   if (getLangOpts().ObjC1) {
454     ObjCTypeQuals[objc_in] = &PP.getIdentifierTable().get("in");
455     ObjCTypeQuals[objc_out] = &PP.getIdentifierTable().get("out");
456     ObjCTypeQuals[objc_inout] = &PP.getIdentifierTable().get("inout");
457     ObjCTypeQuals[objc_oneway] = &PP.getIdentifierTable().get("oneway");
458     ObjCTypeQuals[objc_bycopy] = &PP.getIdentifierTable().get("bycopy");
459     ObjCTypeQuals[objc_byref] = &PP.getIdentifierTable().get("byref");
460     ObjCTypeQuals[objc_nonnull] = &PP.getIdentifierTable().get("nonnull");
461     ObjCTypeQuals[objc_nullable] = &PP.getIdentifierTable().get("nullable");
462     ObjCTypeQuals[objc_null_unspecified]
463       = &PP.getIdentifierTable().get("null_unspecified");
464   }
465 
466   Ident_instancetype = nullptr;
467   Ident_final = nullptr;
468   Ident_sealed = nullptr;
469   Ident_override = nullptr;
470   Ident_GNU_final = nullptr;
471 
472   Ident_super = &PP.getIdentifierTable().get("super");
473 
474   Ident_vector = nullptr;
475   Ident_bool = nullptr;
476   Ident_pixel = nullptr;
477   if (getLangOpts().AltiVec || getLangOpts().ZVector) {
478     Ident_vector = &PP.getIdentifierTable().get("vector");
479     Ident_bool = &PP.getIdentifierTable().get("bool");
480   }
481   if (getLangOpts().AltiVec)
482     Ident_pixel = &PP.getIdentifierTable().get("pixel");
483 
484   Ident_introduced = nullptr;
485   Ident_deprecated = nullptr;
486   Ident_obsoleted = nullptr;
487   Ident_unavailable = nullptr;
488   Ident_strict = nullptr;
489   Ident_replacement = nullptr;
490 
491   Ident_language = Ident_defined_in = Ident_generated_declaration = nullptr;
492 
493   Ident__except = nullptr;
494 
495   Ident__exception_code = Ident__exception_info = nullptr;
496   Ident__abnormal_termination = Ident___exception_code = nullptr;
497   Ident___exception_info = Ident___abnormal_termination = nullptr;
498   Ident_GetExceptionCode = Ident_GetExceptionInfo = nullptr;
499   Ident_AbnormalTermination = nullptr;
500 
501   if(getLangOpts().Borland) {
502     Ident__exception_info        = PP.getIdentifierInfo("_exception_info");
503     Ident___exception_info       = PP.getIdentifierInfo("__exception_info");
504     Ident_GetExceptionInfo       = PP.getIdentifierInfo("GetExceptionInformation");
505     Ident__exception_code        = PP.getIdentifierInfo("_exception_code");
506     Ident___exception_code       = PP.getIdentifierInfo("__exception_code");
507     Ident_GetExceptionCode       = PP.getIdentifierInfo("GetExceptionCode");
508     Ident__abnormal_termination  = PP.getIdentifierInfo("_abnormal_termination");
509     Ident___abnormal_termination = PP.getIdentifierInfo("__abnormal_termination");
510     Ident_AbnormalTermination    = PP.getIdentifierInfo("AbnormalTermination");
511 
512     PP.SetPoisonReason(Ident__exception_code,diag::err_seh___except_block);
513     PP.SetPoisonReason(Ident___exception_code,diag::err_seh___except_block);
514     PP.SetPoisonReason(Ident_GetExceptionCode,diag::err_seh___except_block);
515     PP.SetPoisonReason(Ident__exception_info,diag::err_seh___except_filter);
516     PP.SetPoisonReason(Ident___exception_info,diag::err_seh___except_filter);
517     PP.SetPoisonReason(Ident_GetExceptionInfo,diag::err_seh___except_filter);
518     PP.SetPoisonReason(Ident__abnormal_termination,diag::err_seh___finally_block);
519     PP.SetPoisonReason(Ident___abnormal_termination,diag::err_seh___finally_block);
520     PP.SetPoisonReason(Ident_AbnormalTermination,diag::err_seh___finally_block);
521   }
522 
523   Actions.Initialize();
524 
525   // Prime the lexer look-ahead.
526   ConsumeToken();
527 }
528 
529 void Parser::LateTemplateParserCleanupCallback(void *P) {
530   // While this RAII helper doesn't bracket any actual work, the destructor will
531   // clean up annotations that were created during ActOnEndOfTranslationUnit
532   // when incremental processing is enabled.
533   DestroyTemplateIdAnnotationsRAIIObj CleanupRAII(((Parser *)P)->TemplateIds);
534 }
535 
536 bool Parser::ParseFirstTopLevelDecl(DeclGroupPtrTy &Result) {
537   // C11 6.9p1 says translation units must have at least one top-level
538   // declaration. C++ doesn't have this restriction. We also don't want to
539   // complain if we have a precompiled header, although technically if the PCH
540   // is empty we should still emit the (pedantic) diagnostic.
541   bool NoTopLevelDecls = ParseTopLevelDecl(Result);
542   if (NoTopLevelDecls && !Actions.getASTContext().getExternalSource() &&
543       !getLangOpts().CPlusPlus)
544     Diag(diag::ext_empty_translation_unit);
545 
546   return NoTopLevelDecls;
547 }
548 
549 /// ParseTopLevelDecl - Parse one top-level declaration, return whatever the
550 /// action tells us to.  This returns true if the EOF was encountered.
551 bool Parser::ParseTopLevelDecl(DeclGroupPtrTy &Result) {
552   DestroyTemplateIdAnnotationsRAIIObj CleanupRAII(TemplateIds);
553 
554   // Skip over the EOF token, flagging end of previous input for incremental
555   // processing
556   if (PP.isIncrementalProcessingEnabled() && Tok.is(tok::eof))
557     ConsumeToken();
558 
559   Result = nullptr;
560   switch (Tok.getKind()) {
561   case tok::annot_pragma_unused:
562     HandlePragmaUnused();
563     return false;
564 
565   case tok::kw_import:
566     Result = ParseModuleImport(SourceLocation());
567     return false;
568 
569   case tok::kw_export:
570     if (NextToken().isNot(tok::kw_module))
571       break;
572     LLVM_FALLTHROUGH;
573   case tok::kw_module:
574     Result = ParseModuleDecl();
575     return false;
576 
577   case tok::annot_module_include:
578     Actions.ActOnModuleInclude(Tok.getLocation(),
579                                reinterpret_cast<Module *>(
580                                    Tok.getAnnotationValue()));
581     ConsumeToken();
582     return false;
583 
584   case tok::annot_module_begin:
585     Actions.ActOnModuleBegin(Tok.getLocation(), reinterpret_cast<Module *>(
586                                                     Tok.getAnnotationValue()));
587     ConsumeToken();
588     return false;
589 
590   case tok::annot_module_end:
591     Actions.ActOnModuleEnd(Tok.getLocation(), reinterpret_cast<Module *>(
592                                                   Tok.getAnnotationValue()));
593     ConsumeToken();
594     return false;
595 
596   case tok::annot_pragma_attribute:
597     HandlePragmaAttribute();
598     return false;
599 
600   case tok::eof:
601     // Late template parsing can begin.
602     if (getLangOpts().DelayedTemplateParsing)
603       Actions.SetLateTemplateParser(LateTemplateParserCallback,
604                                     PP.isIncrementalProcessingEnabled() ?
605                                     LateTemplateParserCleanupCallback : nullptr,
606                                     this);
607     if (!PP.isIncrementalProcessingEnabled())
608       Actions.ActOnEndOfTranslationUnit();
609     //else don't tell Sema that we ended parsing: more input might come.
610     return true;
611 
612   default:
613     break;
614   }
615 
616   ParsedAttributesWithRange attrs(AttrFactory);
617   MaybeParseCXX11Attributes(attrs);
618 
619   Result = ParseExternalDeclaration(attrs);
620   return false;
621 }
622 
623 /// ParseExternalDeclaration:
624 ///
625 ///       external-declaration: [C99 6.9], declaration: [C++ dcl.dcl]
626 ///         function-definition
627 ///         declaration
628 /// [GNU]   asm-definition
629 /// [GNU]   __extension__ external-declaration
630 /// [OBJC]  objc-class-definition
631 /// [OBJC]  objc-class-declaration
632 /// [OBJC]  objc-alias-declaration
633 /// [OBJC]  objc-protocol-definition
634 /// [OBJC]  objc-method-definition
635 /// [OBJC]  @end
636 /// [C++]   linkage-specification
637 /// [GNU] asm-definition:
638 ///         simple-asm-expr ';'
639 /// [C++11] empty-declaration
640 /// [C++11] attribute-declaration
641 ///
642 /// [C++11] empty-declaration:
643 ///           ';'
644 ///
645 /// [C++0x/GNU] 'extern' 'template' declaration
646 Parser::DeclGroupPtrTy
647 Parser::ParseExternalDeclaration(ParsedAttributesWithRange &attrs,
648                                  ParsingDeclSpec *DS) {
649   DestroyTemplateIdAnnotationsRAIIObj CleanupRAII(TemplateIds);
650   ParenBraceBracketBalancer BalancerRAIIObj(*this);
651 
652   if (PP.isCodeCompletionReached()) {
653     cutOffParsing();
654     return nullptr;
655   }
656 
657   Decl *SingleDecl = nullptr;
658   switch (Tok.getKind()) {
659   case tok::annot_pragma_vis:
660     HandlePragmaVisibility();
661     return nullptr;
662   case tok::annot_pragma_pack:
663     HandlePragmaPack();
664     return nullptr;
665   case tok::annot_pragma_msstruct:
666     HandlePragmaMSStruct();
667     return nullptr;
668   case tok::annot_pragma_align:
669     HandlePragmaAlign();
670     return nullptr;
671   case tok::annot_pragma_weak:
672     HandlePragmaWeak();
673     return nullptr;
674   case tok::annot_pragma_weakalias:
675     HandlePragmaWeakAlias();
676     return nullptr;
677   case tok::annot_pragma_redefine_extname:
678     HandlePragmaRedefineExtname();
679     return nullptr;
680   case tok::annot_pragma_fp_contract:
681     HandlePragmaFPContract();
682     return nullptr;
683   case tok::annot_pragma_fp:
684     HandlePragmaFP();
685     break;
686   case tok::annot_pragma_opencl_extension:
687     HandlePragmaOpenCLExtension();
688     return nullptr;
689   case tok::annot_pragma_openmp: {
690     AccessSpecifier AS = AS_none;
691     return ParseOpenMPDeclarativeDirectiveWithExtDecl(AS, attrs);
692   }
693   case tok::annot_pragma_ms_pointers_to_members:
694     HandlePragmaMSPointersToMembers();
695     return nullptr;
696   case tok::annot_pragma_ms_vtordisp:
697     HandlePragmaMSVtorDisp();
698     return nullptr;
699   case tok::annot_pragma_ms_pragma:
700     HandlePragmaMSPragma();
701     return nullptr;
702   case tok::annot_pragma_dump:
703     HandlePragmaDump();
704     return nullptr;
705   case tok::semi:
706     // Either a C++11 empty-declaration or attribute-declaration.
707     SingleDecl = Actions.ActOnEmptyDeclaration(getCurScope(),
708                                                attrs.getList(),
709                                                Tok.getLocation());
710     ConsumeExtraSemi(OutsideFunction);
711     break;
712   case tok::r_brace:
713     Diag(Tok, diag::err_extraneous_closing_brace);
714     ConsumeBrace();
715     return nullptr;
716   case tok::eof:
717     Diag(Tok, diag::err_expected_external_declaration);
718     return nullptr;
719   case tok::kw___extension__: {
720     // __extension__ silences extension warnings in the subexpression.
721     ExtensionRAIIObject O(Diags);  // Use RAII to do this.
722     ConsumeToken();
723     return ParseExternalDeclaration(attrs);
724   }
725   case tok::kw_asm: {
726     ProhibitAttributes(attrs);
727 
728     SourceLocation StartLoc = Tok.getLocation();
729     SourceLocation EndLoc;
730 
731     ExprResult Result(ParseSimpleAsm(&EndLoc));
732 
733     // Check if GNU-style InlineAsm is disabled.
734     // Empty asm string is allowed because it will not introduce
735     // any assembly code.
736     if (!(getLangOpts().GNUAsm || Result.isInvalid())) {
737       const auto *SL = cast<StringLiteral>(Result.get());
738       if (!SL->getString().trim().empty())
739         Diag(StartLoc, diag::err_gnu_inline_asm_disabled);
740     }
741 
742     ExpectAndConsume(tok::semi, diag::err_expected_after,
743                      "top-level asm block");
744 
745     if (Result.isInvalid())
746       return nullptr;
747     SingleDecl = Actions.ActOnFileScopeAsmDecl(Result.get(), StartLoc, EndLoc);
748     break;
749   }
750   case tok::at:
751     return ParseObjCAtDirectives();
752   case tok::minus:
753   case tok::plus:
754     if (!getLangOpts().ObjC1) {
755       Diag(Tok, diag::err_expected_external_declaration);
756       ConsumeToken();
757       return nullptr;
758     }
759     SingleDecl = ParseObjCMethodDefinition();
760     break;
761   case tok::code_completion:
762       Actions.CodeCompleteOrdinaryName(getCurScope(),
763                              CurParsedObjCImpl? Sema::PCC_ObjCImplementation
764                                               : Sema::PCC_Namespace);
765     cutOffParsing();
766     return nullptr;
767   case tok::kw_export:
768     if (getLangOpts().ModulesTS) {
769       SingleDecl = ParseExportDeclaration();
770       break;
771     }
772     // This must be 'export template'. Parse it so we can diagnose our lack
773     // of support.
774   case tok::kw_using:
775   case tok::kw_namespace:
776   case tok::kw_typedef:
777   case tok::kw_template:
778   case tok::kw_static_assert:
779   case tok::kw__Static_assert:
780     // A function definition cannot start with any of these keywords.
781     {
782       SourceLocation DeclEnd;
783       return ParseDeclaration(Declarator::FileContext, DeclEnd, attrs);
784     }
785 
786   case tok::kw_static:
787     // Parse (then ignore) 'static' prior to a template instantiation. This is
788     // a GCC extension that we intentionally do not support.
789     if (getLangOpts().CPlusPlus && NextToken().is(tok::kw_template)) {
790       Diag(ConsumeToken(), diag::warn_static_inline_explicit_inst_ignored)
791         << 0;
792       SourceLocation DeclEnd;
793       return ParseDeclaration(Declarator::FileContext, DeclEnd, attrs);
794     }
795     goto dont_know;
796 
797   case tok::kw_inline:
798     if (getLangOpts().CPlusPlus) {
799       tok::TokenKind NextKind = NextToken().getKind();
800 
801       // Inline namespaces. Allowed as an extension even in C++03.
802       if (NextKind == tok::kw_namespace) {
803         SourceLocation DeclEnd;
804         return ParseDeclaration(Declarator::FileContext, DeclEnd, attrs);
805       }
806 
807       // Parse (then ignore) 'inline' prior to a template instantiation. This is
808       // a GCC extension that we intentionally do not support.
809       if (NextKind == tok::kw_template) {
810         Diag(ConsumeToken(), diag::warn_static_inline_explicit_inst_ignored)
811           << 1;
812         SourceLocation DeclEnd;
813         return ParseDeclaration(Declarator::FileContext, DeclEnd, attrs);
814       }
815     }
816     goto dont_know;
817 
818   case tok::kw_extern:
819     if (getLangOpts().CPlusPlus && NextToken().is(tok::kw_template)) {
820       // Extern templates
821       SourceLocation ExternLoc = ConsumeToken();
822       SourceLocation TemplateLoc = ConsumeToken();
823       Diag(ExternLoc, getLangOpts().CPlusPlus11 ?
824              diag::warn_cxx98_compat_extern_template :
825              diag::ext_extern_template) << SourceRange(ExternLoc, TemplateLoc);
826       SourceLocation DeclEnd;
827       return Actions.ConvertDeclToDeclGroup(
828                   ParseExplicitInstantiation(Declarator::FileContext,
829                                              ExternLoc, TemplateLoc, DeclEnd));
830     }
831     goto dont_know;
832 
833   case tok::kw___if_exists:
834   case tok::kw___if_not_exists:
835     ParseMicrosoftIfExistsExternalDeclaration();
836     return nullptr;
837 
838   case tok::kw_module:
839     Diag(Tok, diag::err_unexpected_module_decl);
840     SkipUntil(tok::semi);
841     return nullptr;
842 
843   default:
844   dont_know:
845     if (Tok.isEditorPlaceholder()) {
846       ConsumeToken();
847       return nullptr;
848     }
849     // We can't tell whether this is a function-definition or declaration yet.
850     return ParseDeclarationOrFunctionDefinition(attrs, DS);
851   }
852 
853   // This routine returns a DeclGroup, if the thing we parsed only contains a
854   // single decl, convert it now.
855   return Actions.ConvertDeclToDeclGroup(SingleDecl);
856 }
857 
858 /// \brief Determine whether the current token, if it occurs after a
859 /// declarator, continues a declaration or declaration list.
860 bool Parser::isDeclarationAfterDeclarator() {
861   // Check for '= delete' or '= default'
862   if (getLangOpts().CPlusPlus && Tok.is(tok::equal)) {
863     const Token &KW = NextToken();
864     if (KW.is(tok::kw_default) || KW.is(tok::kw_delete))
865       return false;
866   }
867 
868   return Tok.is(tok::equal) ||      // int X()=  -> not a function def
869     Tok.is(tok::comma) ||           // int X(),  -> not a function def
870     Tok.is(tok::semi)  ||           // int X();  -> not a function def
871     Tok.is(tok::kw_asm) ||          // int X() __asm__ -> not a function def
872     Tok.is(tok::kw___attribute) ||  // int X() __attr__ -> not a function def
873     (getLangOpts().CPlusPlus &&
874      Tok.is(tok::l_paren));         // int X(0) -> not a function def [C++]
875 }
876 
877 /// \brief Determine whether the current token, if it occurs after a
878 /// declarator, indicates the start of a function definition.
879 bool Parser::isStartOfFunctionDefinition(const ParsingDeclarator &Declarator) {
880   assert(Declarator.isFunctionDeclarator() && "Isn't a function declarator");
881   if (Tok.is(tok::l_brace))   // int X() {}
882     return true;
883 
884   // Handle K&R C argument lists: int X(f) int f; {}
885   if (!getLangOpts().CPlusPlus &&
886       Declarator.getFunctionTypeInfo().isKNRPrototype())
887     return isDeclarationSpecifier();
888 
889   if (getLangOpts().CPlusPlus && Tok.is(tok::equal)) {
890     const Token &KW = NextToken();
891     return KW.is(tok::kw_default) || KW.is(tok::kw_delete);
892   }
893 
894   return Tok.is(tok::colon) ||         // X() : Base() {} (used for ctors)
895          Tok.is(tok::kw_try);          // X() try { ... }
896 }
897 
898 /// Parse either a function-definition or a declaration.  We can't tell which
899 /// we have until we read up to the compound-statement in function-definition.
900 /// TemplateParams, if non-NULL, provides the template parameters when we're
901 /// parsing a C++ template-declaration.
902 ///
903 ///       function-definition: [C99 6.9.1]
904 ///         decl-specs      declarator declaration-list[opt] compound-statement
905 /// [C90] function-definition: [C99 6.7.1] - implicit int result
906 /// [C90]   decl-specs[opt] declarator declaration-list[opt] compound-statement
907 ///
908 ///       declaration: [C99 6.7]
909 ///         declaration-specifiers init-declarator-list[opt] ';'
910 /// [!C99]  init-declarator-list ';'                   [TODO: warn in c99 mode]
911 /// [OMP]   threadprivate-directive                              [TODO]
912 ///
913 Parser::DeclGroupPtrTy
914 Parser::ParseDeclOrFunctionDefInternal(ParsedAttributesWithRange &attrs,
915                                        ParsingDeclSpec &DS,
916                                        AccessSpecifier AS) {
917   MaybeParseMicrosoftAttributes(DS.getAttributes());
918   // Parse the common declaration-specifiers piece.
919   ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS, DSC_top_level);
920 
921   // If we had a free-standing type definition with a missing semicolon, we
922   // may get this far before the problem becomes obvious.
923   if (DS.hasTagDefinition() &&
924       DiagnoseMissingSemiAfterTagDefinition(DS, AS, DSC_top_level))
925     return nullptr;
926 
927   // C99 6.7.2.3p6: Handle "struct-or-union identifier;", "enum { X };"
928   // declaration-specifiers init-declarator-list[opt] ';'
929   if (Tok.is(tok::semi)) {
930     ProhibitAttributes(attrs);
931     ConsumeToken();
932     RecordDecl *AnonRecord = nullptr;
933     Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS_none,
934                                                        DS, AnonRecord);
935     DS.complete(TheDecl);
936     if (getLangOpts().OpenCL)
937       Actions.setCurrentOpenCLExtensionForDecl(TheDecl);
938     if (AnonRecord) {
939       Decl* decls[] = {AnonRecord, TheDecl};
940       return Actions.BuildDeclaratorGroup(decls);
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(SS, !WasScopeAnnotation))
1475       return ANK_Error;
1476     return ANK_Unresolved;
1477   }
1478 
1479   IdentifierInfo *Name = Tok.getIdentifierInfo();
1480   SourceLocation NameLoc = Tok.getLocation();
1481 
1482   // FIXME: Move the tentative declaration logic into ClassifyName so we can
1483   // typo-correct to tentatively-declared identifiers.
1484   if (isTentativelyDeclared(Name)) {
1485     // Identifier has been tentatively declared, and thus cannot be resolved as
1486     // an expression. Fall back to annotating it as a type.
1487     if (TryAnnotateTypeOrScopeTokenAfterScopeSpec(SS, !WasScopeAnnotation))
1488       return ANK_Error;
1489     return Tok.is(tok::annot_typename) ? ANK_Success : ANK_TentativeDecl;
1490   }
1491 
1492   Token Next = NextToken();
1493 
1494   // Look up and classify the identifier. We don't perform any typo-correction
1495   // after a scope specifier, because in general we can't recover from typos
1496   // there (eg, after correcting 'A::tempalte B<X>::C' [sic], we would need to
1497   // jump back into scope specifier parsing).
1498   Sema::NameClassification Classification = Actions.ClassifyName(
1499       getCurScope(), SS, Name, NameLoc, Next, IsAddressOfOperand,
1500       SS.isEmpty() ? std::move(CCC) : nullptr);
1501 
1502   switch (Classification.getKind()) {
1503   case Sema::NC_Error:
1504     return ANK_Error;
1505 
1506   case Sema::NC_Keyword:
1507     // The identifier was typo-corrected to a keyword.
1508     Tok.setIdentifierInfo(Name);
1509     Tok.setKind(Name->getTokenID());
1510     PP.TypoCorrectToken(Tok);
1511     if (SS.isNotEmpty())
1512       AnnotateScopeToken(SS, !WasScopeAnnotation);
1513     // We've "annotated" this as a keyword.
1514     return ANK_Success;
1515 
1516   case Sema::NC_Unknown:
1517     // It's not something we know about. Leave it unannotated.
1518     break;
1519 
1520   case Sema::NC_Type: {
1521     SourceLocation BeginLoc = NameLoc;
1522     if (SS.isNotEmpty())
1523       BeginLoc = SS.getBeginLoc();
1524 
1525     /// An Objective-C object type followed by '<' is a specialization of
1526     /// a parameterized class type or a protocol-qualified type.
1527     ParsedType Ty = Classification.getType();
1528     if (getLangOpts().ObjC1 && NextToken().is(tok::less) &&
1529         (Ty.get()->isObjCObjectType() ||
1530          Ty.get()->isObjCObjectPointerType())) {
1531       // Consume the name.
1532       SourceLocation IdentifierLoc = ConsumeToken();
1533       SourceLocation NewEndLoc;
1534       TypeResult NewType
1535           = parseObjCTypeArgsAndProtocolQualifiers(IdentifierLoc, Ty,
1536                                                    /*consumeLastToken=*/false,
1537                                                    NewEndLoc);
1538       if (NewType.isUsable())
1539         Ty = NewType.get();
1540       else if (Tok.is(tok::eof)) // Nothing to do here, bail out...
1541         return ANK_Error;
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() {
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();
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() && Tok.isAnnotation())) {
1668           unsigned DiagID = diag::err_expected_qualified_after_typename;
1669           // MS compatibility: MSVC permits using known types with typename.
1670           // e.g. "typedef typename T* pointer_type"
1671           if (getLangOpts().MicrosoftExt)
1672             DiagID = diag::warn_expected_qualified_after_typename;
1673           Diag(Tok.getLocation(), DiagID);
1674           return false;
1675         }
1676       }
1677       if (Tok.isEditorPlaceholder())
1678         return true;
1679 
1680       Diag(Tok.getLocation(), diag::err_expected_qualified_after_typename);
1681       return true;
1682     }
1683 
1684     TypeResult Ty;
1685     if (Tok.is(tok::identifier)) {
1686       // FIXME: check whether the next token is '<', first!
1687       Ty = Actions.ActOnTypenameType(getCurScope(), TypenameLoc, SS,
1688                                      *Tok.getIdentifierInfo(),
1689                                      Tok.getLocation());
1690     } else if (Tok.is(tok::annot_template_id)) {
1691       TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
1692       if (TemplateId->Kind != TNK_Type_template &&
1693           TemplateId->Kind != TNK_Dependent_template_name) {
1694         Diag(Tok, diag::err_typename_refers_to_non_type_template)
1695           << Tok.getAnnotationRange();
1696         return true;
1697       }
1698 
1699       ASTTemplateArgsPtr TemplateArgsPtr(TemplateId->getTemplateArgs(),
1700                                          TemplateId->NumArgs);
1701 
1702       Ty = Actions.ActOnTypenameType(getCurScope(), TypenameLoc, SS,
1703                                      TemplateId->TemplateKWLoc,
1704                                      TemplateId->Template,
1705                                      TemplateId->Name,
1706                                      TemplateId->TemplateNameLoc,
1707                                      TemplateId->LAngleLoc,
1708                                      TemplateArgsPtr,
1709                                      TemplateId->RAngleLoc);
1710     } else {
1711       Diag(Tok, diag::err_expected_type_name_after_typename)
1712         << SS.getRange();
1713       return true;
1714     }
1715 
1716     SourceLocation EndLoc = Tok.getLastLoc();
1717     Tok.setKind(tok::annot_typename);
1718     setTypeAnnotation(Tok, Ty.isInvalid() ? nullptr : Ty.get());
1719     Tok.setAnnotationEndLoc(EndLoc);
1720     Tok.setLocation(TypenameLoc);
1721     PP.AnnotateCachedTokens(Tok);
1722     return false;
1723   }
1724 
1725   // Remembers whether the token was originally a scope annotation.
1726   bool WasScopeAnnotation = Tok.is(tok::annot_cxxscope);
1727 
1728   CXXScopeSpec SS;
1729   if (getLangOpts().CPlusPlus)
1730     if (ParseOptionalCXXScopeSpecifier(SS, nullptr, /*EnteringContext*/false))
1731       return true;
1732 
1733   return TryAnnotateTypeOrScopeTokenAfterScopeSpec(SS, !WasScopeAnnotation);
1734 }
1735 
1736 /// \brief Try to annotate a type or scope token, having already parsed an
1737 /// optional scope specifier. \p IsNewScope should be \c true unless the scope
1738 /// specifier was extracted from an existing tok::annot_cxxscope annotation.
1739 bool Parser::TryAnnotateTypeOrScopeTokenAfterScopeSpec(CXXScopeSpec &SS,
1740                                                        bool IsNewScope) {
1741   if (Tok.is(tok::identifier)) {
1742     // Determine whether the identifier is a type name.
1743     if (ParsedType Ty = Actions.getTypeName(
1744             *Tok.getIdentifierInfo(), Tok.getLocation(), getCurScope(), &SS,
1745             false, NextToken().is(tok::period), nullptr,
1746             /*IsCtorOrDtorName=*/false,
1747             /*NonTrivialTypeSourceInfo*/ true,
1748             /*IsClassTemplateDeductionContext*/GreaterThanIsOperator)) {
1749       SourceLocation BeginLoc = Tok.getLocation();
1750       if (SS.isNotEmpty()) // it was a C++ qualified type name.
1751         BeginLoc = SS.getBeginLoc();
1752 
1753       /// An Objective-C object type followed by '<' is a specialization of
1754       /// a parameterized class type or a protocol-qualified type.
1755       if (getLangOpts().ObjC1 && NextToken().is(tok::less) &&
1756           (Ty.get()->isObjCObjectType() ||
1757            Ty.get()->isObjCObjectPointerType())) {
1758         // Consume the name.
1759         SourceLocation IdentifierLoc = ConsumeToken();
1760         SourceLocation NewEndLoc;
1761         TypeResult NewType
1762           = parseObjCTypeArgsAndProtocolQualifiers(IdentifierLoc, Ty,
1763                                                    /*consumeLastToken=*/false,
1764                                                    NewEndLoc);
1765         if (NewType.isUsable())
1766           Ty = NewType.get();
1767         else if (Tok.is(tok::eof)) // Nothing to do here, bail out...
1768           return false;
1769       }
1770 
1771       // This is a typename. Replace the current token in-place with an
1772       // annotation type token.
1773       Tok.setKind(tok::annot_typename);
1774       setTypeAnnotation(Tok, Ty);
1775       Tok.setAnnotationEndLoc(Tok.getLocation());
1776       Tok.setLocation(BeginLoc);
1777 
1778       // In case the tokens were cached, have Preprocessor replace
1779       // them with the annotation token.
1780       PP.AnnotateCachedTokens(Tok);
1781       return false;
1782     }
1783 
1784     if (!getLangOpts().CPlusPlus) {
1785       // If we're in C, we can't have :: tokens at all (the lexer won't return
1786       // them).  If the identifier is not a type, then it can't be scope either,
1787       // just early exit.
1788       return false;
1789     }
1790 
1791     // If this is a template-id, annotate with a template-id or type token.
1792     if (NextToken().is(tok::less)) {
1793       TemplateTy Template;
1794       UnqualifiedId TemplateName;
1795       TemplateName.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
1796       bool MemberOfUnknownSpecialization;
1797       if (TemplateNameKind TNK = Actions.isTemplateName(
1798               getCurScope(), SS,
1799               /*hasTemplateKeyword=*/false, TemplateName,
1800               /*ObjectType=*/nullptr, /*EnteringContext*/false, Template,
1801               MemberOfUnknownSpecialization)) {
1802         // Consume the identifier.
1803         ConsumeToken();
1804         if (AnnotateTemplateIdToken(Template, TNK, SS, SourceLocation(),
1805                                     TemplateName)) {
1806           // If an unrecoverable error occurred, we need to return true here,
1807           // because the token stream is in a damaged state.  We may not return
1808           // a valid identifier.
1809           return true;
1810         }
1811       }
1812     }
1813 
1814     // The current token, which is either an identifier or a
1815     // template-id, is not part of the annotation. Fall through to
1816     // push that token back into the stream and complete the C++ scope
1817     // specifier annotation.
1818   }
1819 
1820   if (Tok.is(tok::annot_template_id)) {
1821     TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
1822     if (TemplateId->Kind == TNK_Type_template) {
1823       // A template-id that refers to a type was parsed into a
1824       // template-id annotation in a context where we weren't allowed
1825       // to produce a type annotation token. Update the template-id
1826       // annotation token to a type annotation token now.
1827       AnnotateTemplateIdTokenAsType();
1828       return false;
1829     }
1830   }
1831 
1832   if (SS.isEmpty())
1833     return false;
1834 
1835   // A C++ scope specifier that isn't followed by a typename.
1836   AnnotateScopeToken(SS, IsNewScope);
1837   return false;
1838 }
1839 
1840 /// TryAnnotateScopeToken - Like TryAnnotateTypeOrScopeToken but only
1841 /// annotates C++ scope specifiers and template-ids.  This returns
1842 /// true if there was an error that could not be recovered from.
1843 ///
1844 /// Note that this routine emits an error if you call it with ::new or ::delete
1845 /// as the current tokens, so only call it in contexts where these are invalid.
1846 bool Parser::TryAnnotateCXXScopeToken(bool EnteringContext) {
1847   assert(getLangOpts().CPlusPlus &&
1848          "Call sites of this function should be guarded by checking for C++");
1849   assert((Tok.is(tok::identifier) || Tok.is(tok::coloncolon) ||
1850           (Tok.is(tok::annot_template_id) && NextToken().is(tok::coloncolon)) ||
1851           Tok.is(tok::kw_decltype) || Tok.is(tok::kw___super)) &&
1852          "Cannot be a type or scope token!");
1853 
1854   CXXScopeSpec SS;
1855   if (ParseOptionalCXXScopeSpecifier(SS, nullptr, EnteringContext))
1856     return true;
1857   if (SS.isEmpty())
1858     return false;
1859 
1860   AnnotateScopeToken(SS, true);
1861   return false;
1862 }
1863 
1864 bool Parser::isTokenEqualOrEqualTypo() {
1865   tok::TokenKind Kind = Tok.getKind();
1866   switch (Kind) {
1867   default:
1868     return false;
1869   case tok::ampequal:            // &=
1870   case tok::starequal:           // *=
1871   case tok::plusequal:           // +=
1872   case tok::minusequal:          // -=
1873   case tok::exclaimequal:        // !=
1874   case tok::slashequal:          // /=
1875   case tok::percentequal:        // %=
1876   case tok::lessequal:           // <=
1877   case tok::lesslessequal:       // <<=
1878   case tok::greaterequal:        // >=
1879   case tok::greatergreaterequal: // >>=
1880   case tok::caretequal:          // ^=
1881   case tok::pipeequal:           // |=
1882   case tok::equalequal:          // ==
1883     Diag(Tok, diag::err_invalid_token_after_declarator_suggest_equal)
1884         << Kind
1885         << FixItHint::CreateReplacement(SourceRange(Tok.getLocation()), "=");
1886   case tok::equal:
1887     return true;
1888   }
1889 }
1890 
1891 SourceLocation Parser::handleUnexpectedCodeCompletionToken() {
1892   assert(Tok.is(tok::code_completion));
1893   PrevTokLocation = Tok.getLocation();
1894 
1895   for (Scope *S = getCurScope(); S; S = S->getParent()) {
1896     if (S->getFlags() & Scope::FnScope) {
1897       Actions.CodeCompleteOrdinaryName(getCurScope(),
1898                                        Sema::PCC_RecoveryInFunction);
1899       cutOffParsing();
1900       return PrevTokLocation;
1901     }
1902 
1903     if (S->getFlags() & Scope::ClassScope) {
1904       Actions.CodeCompleteOrdinaryName(getCurScope(), Sema::PCC_Class);
1905       cutOffParsing();
1906       return PrevTokLocation;
1907     }
1908   }
1909 
1910   Actions.CodeCompleteOrdinaryName(getCurScope(), Sema::PCC_Namespace);
1911   cutOffParsing();
1912   return PrevTokLocation;
1913 }
1914 
1915 // Code-completion pass-through functions
1916 
1917 void Parser::CodeCompleteDirective(bool InConditional) {
1918   Actions.CodeCompletePreprocessorDirective(InConditional);
1919 }
1920 
1921 void Parser::CodeCompleteInConditionalExclusion() {
1922   Actions.CodeCompleteInPreprocessorConditionalExclusion(getCurScope());
1923 }
1924 
1925 void Parser::CodeCompleteMacroName(bool IsDefinition) {
1926   Actions.CodeCompletePreprocessorMacroName(IsDefinition);
1927 }
1928 
1929 void Parser::CodeCompletePreprocessorExpression() {
1930   Actions.CodeCompletePreprocessorExpression();
1931 }
1932 
1933 void Parser::CodeCompleteMacroArgument(IdentifierInfo *Macro,
1934                                        MacroInfo *MacroInfo,
1935                                        unsigned ArgumentIndex) {
1936   Actions.CodeCompletePreprocessorMacroArgument(getCurScope(), Macro, MacroInfo,
1937                                                 ArgumentIndex);
1938 }
1939 
1940 void Parser::CodeCompleteNaturalLanguage() {
1941   Actions.CodeCompleteNaturalLanguage();
1942 }
1943 
1944 bool Parser::ParseMicrosoftIfExistsCondition(IfExistsCondition& Result) {
1945   assert((Tok.is(tok::kw___if_exists) || Tok.is(tok::kw___if_not_exists)) &&
1946          "Expected '__if_exists' or '__if_not_exists'");
1947   Result.IsIfExists = Tok.is(tok::kw___if_exists);
1948   Result.KeywordLoc = ConsumeToken();
1949 
1950   BalancedDelimiterTracker T(*this, tok::l_paren);
1951   if (T.consumeOpen()) {
1952     Diag(Tok, diag::err_expected_lparen_after)
1953       << (Result.IsIfExists? "__if_exists" : "__if_not_exists");
1954     return true;
1955   }
1956 
1957   // Parse nested-name-specifier.
1958   if (getLangOpts().CPlusPlus)
1959     ParseOptionalCXXScopeSpecifier(Result.SS, nullptr,
1960                                    /*EnteringContext=*/false);
1961 
1962   // Check nested-name specifier.
1963   if (Result.SS.isInvalid()) {
1964     T.skipToEnd();
1965     return true;
1966   }
1967 
1968   // Parse the unqualified-id.
1969   SourceLocation TemplateKWLoc; // FIXME: parsed, but unused.
1970   if (ParseUnqualifiedId(
1971           Result.SS, /*EnteringContext*/false, /*AllowDestructorName*/true,
1972           /*AllowConstructorName*/true, /*AllowDeductionGuide*/false, nullptr,
1973           TemplateKWLoc, Result.Name)) {
1974     T.skipToEnd();
1975     return true;
1976   }
1977 
1978   if (T.consumeClose())
1979     return true;
1980 
1981   // Check if the symbol exists.
1982   switch (Actions.CheckMicrosoftIfExistsSymbol(getCurScope(), Result.KeywordLoc,
1983                                                Result.IsIfExists, Result.SS,
1984                                                Result.Name)) {
1985   case Sema::IER_Exists:
1986     Result.Behavior = Result.IsIfExists ? IEB_Parse : IEB_Skip;
1987     break;
1988 
1989   case Sema::IER_DoesNotExist:
1990     Result.Behavior = !Result.IsIfExists ? IEB_Parse : IEB_Skip;
1991     break;
1992 
1993   case Sema::IER_Dependent:
1994     Result.Behavior = IEB_Dependent;
1995     break;
1996 
1997   case Sema::IER_Error:
1998     return true;
1999   }
2000 
2001   return false;
2002 }
2003 
2004 void Parser::ParseMicrosoftIfExistsExternalDeclaration() {
2005   IfExistsCondition Result;
2006   if (ParseMicrosoftIfExistsCondition(Result))
2007     return;
2008 
2009   BalancedDelimiterTracker Braces(*this, tok::l_brace);
2010   if (Braces.consumeOpen()) {
2011     Diag(Tok, diag::err_expected) << tok::l_brace;
2012     return;
2013   }
2014 
2015   switch (Result.Behavior) {
2016   case IEB_Parse:
2017     // Parse declarations below.
2018     break;
2019 
2020   case IEB_Dependent:
2021     llvm_unreachable("Cannot have a dependent external declaration");
2022 
2023   case IEB_Skip:
2024     Braces.skipToEnd();
2025     return;
2026   }
2027 
2028   // Parse the declarations.
2029   // FIXME: Support module import within __if_exists?
2030   while (Tok.isNot(tok::r_brace) && !isEofOrEom()) {
2031     ParsedAttributesWithRange attrs(AttrFactory);
2032     MaybeParseCXX11Attributes(attrs);
2033     DeclGroupPtrTy Result = ParseExternalDeclaration(attrs);
2034     if (Result && !getCurScope()->getParent())
2035       Actions.getASTConsumer().HandleTopLevelDecl(Result.get());
2036   }
2037   Braces.consumeClose();
2038 }
2039 
2040 /// Parse a C++ Modules TS module declaration, which appears at the beginning
2041 /// of a module interface, module partition, or module implementation file.
2042 ///
2043 ///   module-declaration:   [Modules TS + P0273R0 + P0629R0]
2044 ///     'export'[opt] 'module' 'partition'[opt]
2045 ///            module-name attribute-specifier-seq[opt] ';'
2046 ///
2047 /// Note that 'partition' is a context-sensitive keyword.
2048 Parser::DeclGroupPtrTy Parser::ParseModuleDecl() {
2049   SourceLocation StartLoc = Tok.getLocation();
2050 
2051   Sema::ModuleDeclKind MDK = TryConsumeToken(tok::kw_export)
2052                                  ? Sema::ModuleDeclKind::Module
2053                                  : Sema::ModuleDeclKind::Implementation;
2054 
2055   assert(Tok.is(tok::kw_module) && "not a module declaration");
2056   SourceLocation ModuleLoc = ConsumeToken();
2057 
2058   if (Tok.is(tok::identifier) && NextToken().is(tok::identifier) &&
2059       Tok.getIdentifierInfo()->isStr("partition")) {
2060     // If 'partition' is present, this must be a module interface unit.
2061     if (MDK != Sema::ModuleDeclKind::Module)
2062       Diag(Tok.getLocation(), diag::err_module_implementation_partition)
2063         << FixItHint::CreateInsertion(ModuleLoc, "export ");
2064     MDK = Sema::ModuleDeclKind::Partition;
2065     ConsumeToken();
2066   }
2067 
2068   SmallVector<std::pair<IdentifierInfo *, SourceLocation>, 2> Path;
2069   if (ParseModuleName(ModuleLoc, Path, /*IsImport*/false))
2070     return nullptr;
2071 
2072   // We don't support any module attributes yet; just parse them and diagnose.
2073   ParsedAttributesWithRange Attrs(AttrFactory);
2074   MaybeParseCXX11Attributes(Attrs);
2075   ProhibitCXX11Attributes(Attrs, diag::err_attribute_not_module_attr);
2076 
2077   ExpectAndConsumeSemi(diag::err_module_expected_semi);
2078 
2079   return Actions.ActOnModuleDecl(StartLoc, ModuleLoc, MDK, Path);
2080 }
2081 
2082 /// Parse a module import declaration. This is essentially the same for
2083 /// Objective-C and the C++ Modules TS, except for the leading '@' (in ObjC)
2084 /// and the trailing optional attributes (in C++).
2085 ///
2086 /// [ObjC]  @import declaration:
2087 ///           '@' 'import' module-name ';'
2088 /// [ModTS] module-import-declaration:
2089 ///           'import' module-name attribute-specifier-seq[opt] ';'
2090 Parser::DeclGroupPtrTy Parser::ParseModuleImport(SourceLocation AtLoc) {
2091   assert((AtLoc.isInvalid() ? Tok.is(tok::kw_import)
2092                             : Tok.isObjCAtKeyword(tok::objc_import)) &&
2093          "Improper start to module import");
2094   SourceLocation ImportLoc = ConsumeToken();
2095   SourceLocation StartLoc = AtLoc.isInvalid() ? ImportLoc : AtLoc;
2096 
2097   SmallVector<std::pair<IdentifierInfo *, SourceLocation>, 2> Path;
2098   if (ParseModuleName(ImportLoc, Path, /*IsImport*/true))
2099     return nullptr;
2100 
2101   ParsedAttributesWithRange Attrs(AttrFactory);
2102   MaybeParseCXX11Attributes(Attrs);
2103   // We don't support any module import attributes yet.
2104   ProhibitCXX11Attributes(Attrs, diag::err_attribute_not_import_attr);
2105 
2106   if (PP.hadModuleLoaderFatalFailure()) {
2107     // With a fatal failure in the module loader, we abort parsing.
2108     cutOffParsing();
2109     return nullptr;
2110   }
2111 
2112   DeclResult Import = Actions.ActOnModuleImport(StartLoc, ImportLoc, Path);
2113   ExpectAndConsumeSemi(diag::err_module_expected_semi);
2114   if (Import.isInvalid())
2115     return nullptr;
2116 
2117   return Actions.ConvertDeclToDeclGroup(Import.get());
2118 }
2119 
2120 /// Parse a C++ Modules TS / Objective-C module name (both forms use the same
2121 /// grammar).
2122 ///
2123 ///         module-name:
2124 ///           module-name-qualifier[opt] identifier
2125 ///         module-name-qualifier:
2126 ///           module-name-qualifier[opt] identifier '.'
2127 bool Parser::ParseModuleName(
2128     SourceLocation UseLoc,
2129     SmallVectorImpl<std::pair<IdentifierInfo *, SourceLocation>> &Path,
2130     bool IsImport) {
2131   // Parse the module path.
2132   while (true) {
2133     if (!Tok.is(tok::identifier)) {
2134       if (Tok.is(tok::code_completion)) {
2135         Actions.CodeCompleteModuleImport(UseLoc, Path);
2136         cutOffParsing();
2137         return true;
2138       }
2139 
2140       Diag(Tok, diag::err_module_expected_ident) << IsImport;
2141       SkipUntil(tok::semi);
2142       return true;
2143     }
2144 
2145     // Record this part of the module path.
2146     Path.push_back(std::make_pair(Tok.getIdentifierInfo(), Tok.getLocation()));
2147     ConsumeToken();
2148 
2149     if (Tok.isNot(tok::period))
2150       return false;
2151 
2152     ConsumeToken();
2153   }
2154 }
2155 
2156 /// \brief Try recover parser when module annotation appears where it must not
2157 /// be found.
2158 /// \returns false if the recover was successful and parsing may be continued, or
2159 /// true if parser must bail out to top level and handle the token there.
2160 bool Parser::parseMisplacedModuleImport() {
2161   while (true) {
2162     switch (Tok.getKind()) {
2163     case tok::annot_module_end:
2164       // If we recovered from a misplaced module begin, we expect to hit a
2165       // misplaced module end too. Stay in the current context when this
2166       // happens.
2167       if (MisplacedModuleBeginCount) {
2168         --MisplacedModuleBeginCount;
2169         Actions.ActOnModuleEnd(Tok.getLocation(),
2170                                reinterpret_cast<Module *>(
2171                                    Tok.getAnnotationValue()));
2172         ConsumeToken();
2173         continue;
2174       }
2175       // Inform caller that recovery failed, the error must be handled at upper
2176       // level. This will generate the desired "missing '}' at end of module"
2177       // diagnostics on the way out.
2178       return true;
2179     case tok::annot_module_begin:
2180       // Recover by entering the module (Sema will diagnose).
2181       Actions.ActOnModuleBegin(Tok.getLocation(),
2182                                reinterpret_cast<Module *>(
2183                                    Tok.getAnnotationValue()));
2184       ConsumeToken();
2185       ++MisplacedModuleBeginCount;
2186       continue;
2187     case tok::annot_module_include:
2188       // Module import found where it should not be, for instance, inside a
2189       // namespace. Recover by importing the module.
2190       Actions.ActOnModuleInclude(Tok.getLocation(),
2191                                  reinterpret_cast<Module *>(
2192                                      Tok.getAnnotationValue()));
2193       ConsumeToken();
2194       // If there is another module import, process it.
2195       continue;
2196     default:
2197       return false;
2198     }
2199   }
2200   return false;
2201 }
2202 
2203 bool BalancedDelimiterTracker::diagnoseOverflow() {
2204   P.Diag(P.Tok, diag::err_bracket_depth_exceeded)
2205     << P.getLangOpts().BracketDepth;
2206   P.Diag(P.Tok, diag::note_bracket_depth);
2207   P.cutOffParsing();
2208   return true;
2209 }
2210 
2211 bool BalancedDelimiterTracker::expectAndConsume(unsigned DiagID,
2212                                                 const char *Msg,
2213                                                 tok::TokenKind SkipToTok) {
2214   LOpen = P.Tok.getLocation();
2215   if (P.ExpectAndConsume(Kind, DiagID, Msg)) {
2216     if (SkipToTok != tok::unknown)
2217       P.SkipUntil(SkipToTok, Parser::StopAtSemi);
2218     return true;
2219   }
2220 
2221   if (getDepth() < MaxDepth)
2222     return false;
2223 
2224   return diagnoseOverflow();
2225 }
2226 
2227 bool BalancedDelimiterTracker::diagnoseMissingClose() {
2228   assert(!P.Tok.is(Close) && "Should have consumed closing delimiter");
2229 
2230   if (P.Tok.is(tok::annot_module_end))
2231     P.Diag(P.Tok, diag::err_missing_before_module_end) << Close;
2232   else
2233     P.Diag(P.Tok, diag::err_expected) << Close;
2234   P.Diag(LOpen, diag::note_matching) << Kind;
2235 
2236   // If we're not already at some kind of closing bracket, skip to our closing
2237   // token.
2238   if (P.Tok.isNot(tok::r_paren) && P.Tok.isNot(tok::r_brace) &&
2239       P.Tok.isNot(tok::r_square) &&
2240       P.SkipUntil(Close, FinalToken,
2241                   Parser::StopAtSemi | Parser::StopBeforeMatch) &&
2242       P.Tok.is(Close))
2243     LClose = P.ConsumeAnyToken();
2244   return true;
2245 }
2246 
2247 void BalancedDelimiterTracker::skipToEnd() {
2248   P.SkipUntil(Close, Parser::StopBeforeMatch);
2249   consumeClose();
2250 }
2251