29#include "llvm/ADT/STLForwardCompat.h"
30#include "llvm/Support/Path.h"
31#include "llvm/Support/TimeProfiler.h"
42 explicit ActionCommentHandler(Sema &S) : S(S) { }
44 bool HandleComment(Preprocessor &PP, SourceRange Comment)
override {
45 S.ActOnComment(Comment);
54 Ident__except = PP.getIdentifierInfo(
"__except");
61 PreferredType(&actions.getASTContext(), pp.isCodeCompletionEnabled()),
62 Actions(actions), Diags(PP.getDiagnostics()), StackHandler(Diags),
63 GreaterThanIsOperator(
true), ColonIsSacred(
false),
64 InMessageExpression(
false), ParsingInObjCContainer(
false),
65 TemplateParameterDepth(0) {
68 Tok.setKind(tok::eof);
69 Actions.CurScope =
nullptr;
71 CurParsedObjCImpl =
nullptr;
75 initializePragmaHandlers();
77 CommentSemaHandler.reset(
new ActionCommentHandler(actions));
78 PP.addCommentHandler(CommentSemaHandler.get());
80 PP.setCodeCompletionHandler(*
this);
82 Actions.ParseTypeFromStringCallback =
83 [
this](StringRef TypeStr, StringRef Context,
SourceLocation IncludeLoc) {
84 return this->ParseTypeFromString(TypeStr, Context, IncludeLoc);
89 return Diags.Report(Loc, DiagID);
93 return Diag(Tok.getLocation(), DiagID);
97 unsigned CompatDiagId) {
102 return DiagCompat(Tok.getLocation(), CompatDiagId);
121 switch (ExpectedTok) {
123 return Tok.is(tok::colon) ||
Tok.is(tok::comma);
124 default:
return false;
128bool Parser::ExpectAndConsume(
tok::TokenKind ExpectedTok,
unsigned DiagID,
130 if (Tok.is(ExpectedTok) || Tok.is(tok::code_completion)) {
137 SourceLocation Loc = Tok.getLocation();
139 DiagnosticBuilder DB =
Diag(Loc, DiagID);
142 if (DiagID == diag::err_expected)
144 else if (DiagID == diag::err_expected_after)
145 DB << Msg << ExpectedTok;
155 SourceLocation EndLoc = PP.getLocForEndOfToken(PrevTokLocation);
156 const char *Spelling =
nullptr;
160 DiagnosticBuilder DB =
164 if (DiagID == diag::err_expected)
166 else if (DiagID == diag::err_expected_after)
167 DB << Msg << ExpectedTok;
174bool Parser::ExpectAndConsumeSemi(
unsigned DiagID, StringRef TokenUsed) {
178 if (Tok.is(tok::code_completion)) {
179 handleUnexpectedCodeCompletionToken();
183 if ((Tok.is(tok::r_paren) || Tok.is(tok::r_square)) &&
185 Diag(Tok, diag::err_extraneous_token_before_semi)
186 << PP.getSpelling(Tok)
193 return ExpectAndConsume(tok::semi, DiagID , TokenUsed);
196bool Parser::isLikelyAtStartOfNewDeclaration() {
197 return Tok.isAtStartOfLine() &&
202 if (!Tok.is(tok::semi))
return;
204 bool HadMultipleSemis =
false;
205 SourceLocation StartLoc = Tok.getLocation();
206 SourceLocation EndLoc = Tok.getLocation();
209 while ((Tok.is(tok::semi) && !Tok.isAtStartOfLine())) {
210 HadMultipleSemis =
true;
211 EndLoc = Tok.getLocation();
219 Diag(StartLoc, diag::warn_cxx98_compat_top_level_semi)
222 Diag(StartLoc, diag::ext_extra_semi_cxx11)
228 Diag(StartLoc, diag::ext_extra_semi)
231 TST, Actions.getASTContext().getPrintingPolicy())
235 Diag(StartLoc, diag::warn_extra_semi_after_mem_fn_def)
239bool Parser::expectIdentifier() {
240 if (Tok.is(tok::identifier))
242 if (
const auto *II = Tok.getIdentifierInfo()) {
244 Diag(Tok, diag::err_expected_token_instead_of_objcxx_keyword)
245 << tok::identifier << Tok.getIdentifierInfo();
250 Diag(Tok, diag::err_expected) << tok::identifier;
258 SourceLocation SecondTokLoc = Tok.getLocation();
263 PP.getSourceManager().getFileID(FirstTokLoc) !=
264 PP.getSourceManager().getFileID(SecondTokLoc)) {
265 Diag(FirstTokLoc, diag::warn_compound_token_split_by_macro)
266 << (FirstTokKind == Tok.getKind()) << FirstTokKind << Tok.getKind()
267 <<
static_cast<int>(Op) << SourceRange(FirstTokLoc);
268 Diag(SecondTokLoc, diag::note_compound_token_split_second_token_here)
269 << (FirstTokKind == Tok.getKind()) << Tok.getKind()
270 << SourceRange(SecondTokLoc);
275 if (Tok.hasLeadingSpace() || Tok.isAtStartOfLine()) {
276 SourceLocation SpaceLoc = PP.getLocForEndOfToken(FirstTokLoc);
278 SpaceLoc = FirstTokLoc;
279 Diag(SpaceLoc, diag::warn_compound_token_split_by_whitespace)
280 << (FirstTokKind == Tok.getKind()) << FirstTokKind << Tok.getKind()
281 <<
static_cast<int>(Op) << SourceRange(FirstTokLoc, SecondTokLoc);
291 return (
static_cast<unsigned>(L) &
static_cast<unsigned>(R)) != 0;
297 bool isFirstTokenSkipped =
true;
300 for (
unsigned i = 0, NumToks = Toks.size(); i != NumToks; ++i) {
301 if (Tok.is(Toks[i])) {
314 if (Toks.size() == 1 && Toks[0] == tok::eof &&
317 while (Tok.isNot(tok::eof))
322 switch (Tok.getKind()) {
327 case tok::annot_pragma_openmp:
328 case tok::annot_attr_openmp:
329 case tok::annot_pragma_openmp_end:
331 if (OpenMPDirectiveParsing)
333 ConsumeAnnotationToken();
335 case tok::annot_pragma_openacc:
336 case tok::annot_pragma_openacc_end:
338 if (OpenACCDirectiveParsing)
340 ConsumeAnnotationToken();
342 case tok::annot_module_begin:
343 case tok::annot_module_end:
344 case tok::annot_module_include:
345 case tok::annot_repl_input_end:
351 case tok::code_completion:
353 handleUnexpectedCodeCompletionToken();
395 if (ParenCount && !isFirstTokenSkipped)
400 if (BracketCount && !isFirstTokenSkipped)
405 if (BraceCount && !isFirstTokenSkipped)
419 isFirstTokenSkipped =
false;
428 if (NumCachedScopes) {
429 Scope *N = ScopeCache[--NumCachedScopes];
431 Actions.CurScope = N;
442 Actions.ActOnPopScope(Tok.getLocation(),
getCurScope());
445 Actions.CurScope = OldScope->
getParent();
447 if (NumCachedScopes == ScopeCacheSize)
450 ScopeCache[NumCachedScopes++] = OldScope;
453Parser::ParseScopeFlags::ParseScopeFlags(
Parser *
Self,
unsigned ScopeFlags,
455 : CurScope(ManageFlags ?
Self->getCurScope() :
nullptr) {
457 OldFlags = CurScope->getFlags();
458 CurScope->setFlags(ScopeFlags);
462Parser::ParseScopeFlags::~ParseScopeFlags() {
464 CurScope->setFlags(OldFlags);
475 Actions.CurScope =
nullptr;
478 for (
unsigned i = 0, e = NumCachedScopes; i != e; ++i)
479 delete ScopeCache[i];
481 resetPragmaHandlers();
483 PP.removeCommentHandler(CommentSemaHandler.get());
485 PP.clearCodeCompletionHandler();
487 DestroyTemplateIds();
492 assert(
getCurScope() ==
nullptr &&
"A scope is already active?");
500 &PP.getIdentifierTable().get(
"in");
502 &PP.getIdentifierTable().get(
"out");
504 &PP.getIdentifierTable().get(
"inout");
506 &PP.getIdentifierTable().get(
"oneway");
508 &PP.getIdentifierTable().get(
"bycopy");
510 &PP.getIdentifierTable().get(
"byref");
512 &PP.getIdentifierTable().get(
"nonnull");
514 &PP.getIdentifierTable().get(
"nullable");
516 &PP.getIdentifierTable().get(
"null_unspecified");
519 Ident_instancetype =
nullptr;
520 Ident_final =
nullptr;
521 Ident_sealed =
nullptr;
522 Ident_abstract =
nullptr;
523 Ident_override =
nullptr;
524 Ident_GNU_final =
nullptr;
526 Ident_super = &PP.getIdentifierTable().get(
"super");
528 Ident_vector =
nullptr;
529 Ident_bool =
nullptr;
530 Ident_Bool =
nullptr;
531 Ident_pixel =
nullptr;
533 Ident_vector = &PP.getIdentifierTable().get(
"vector");
534 Ident_bool = &PP.getIdentifierTable().get(
"bool");
535 Ident_Bool = &PP.getIdentifierTable().get(
"_Bool");
538 Ident_pixel = &PP.getIdentifierTable().get(
"pixel");
540 Ident_introduced =
nullptr;
541 Ident_deprecated =
nullptr;
542 Ident_obsoleted =
nullptr;
543 Ident_unavailable =
nullptr;
544 Ident_strict =
nullptr;
545 Ident_replacement =
nullptr;
547 Ident_language = Ident_defined_in = Ident_generated_declaration = Ident_USR =
550 Ident__except =
nullptr;
552 Ident__exception_code = Ident__exception_info =
nullptr;
553 Ident__abnormal_termination = Ident___exception_code =
nullptr;
554 Ident___exception_info = Ident___abnormal_termination =
nullptr;
555 Ident_GetExceptionCode = Ident_GetExceptionInfo =
nullptr;
556 Ident_AbnormalTermination =
nullptr;
559 Ident__exception_info = PP.getIdentifierInfo(
"_exception_info");
560 Ident___exception_info = PP.getIdentifierInfo(
"__exception_info");
561 Ident_GetExceptionInfo = PP.getIdentifierInfo(
"GetExceptionInformation");
562 Ident__exception_code = PP.getIdentifierInfo(
"_exception_code");
563 Ident___exception_code = PP.getIdentifierInfo(
"__exception_code");
564 Ident_GetExceptionCode = PP.getIdentifierInfo(
"GetExceptionCode");
565 Ident__abnormal_termination = PP.getIdentifierInfo(
"_abnormal_termination");
566 Ident___abnormal_termination = PP.getIdentifierInfo(
"__abnormal_termination");
567 Ident_AbnormalTermination = PP.getIdentifierInfo(
"AbnormalTermination");
569 PP.SetPoisonReason(Ident__exception_code,diag::err_seh___except_block);
570 PP.SetPoisonReason(Ident___exception_code,diag::err_seh___except_block);
571 PP.SetPoisonReason(Ident_GetExceptionCode,diag::err_seh___except_block);
572 PP.SetPoisonReason(Ident__exception_info,diag::err_seh___except_filter);
573 PP.SetPoisonReason(Ident___exception_info,diag::err_seh___except_filter);
574 PP.SetPoisonReason(Ident_GetExceptionInfo,diag::err_seh___except_filter);
575 PP.SetPoisonReason(Ident__abnormal_termination,diag::err_seh___finally_block);
576 PP.SetPoisonReason(Ident___abnormal_termination,diag::err_seh___finally_block);
577 PP.SetPoisonReason(Ident_AbnormalTermination,diag::err_seh___finally_block);
580 Actions.Initialize();
586void Parser::DestroyTemplateIds() {
594 Actions.ActOnStartOfTranslationUnit();
606 if (NoTopLevelDecls && !Actions.getASTContext().getExternalSource() &&
608 Diag(diag::ext_empty_translation_unit);
610 return NoTopLevelDecls;
615 DestroyTemplateIdAnnotationsRAIIObj CleanupRAII(*
this);
618 switch (Tok.getKind()) {
619 case tok::annot_pragma_unused:
620 HandlePragmaUnused();
636 Result = ParseModuleDecl(ImportState);
646 case tok::annot_module_include: {
647 auto Loc = Tok.getLocation();
648 Module *Mod =
reinterpret_cast<Module *
>(Tok.getAnnotationValue());
652 Actions.ActOnAnnotModuleInclude(Loc, Mod);
659 ConsumeAnnotationToken();
663 case tok::annot_module_begin:
664 Actions.ActOnAnnotModuleBegin(
666 reinterpret_cast<Module *
>(Tok.getAnnotationValue()));
667 ConsumeAnnotationToken();
671 case tok::annot_module_end:
672 Actions.ActOnAnnotModuleEnd(
674 reinterpret_cast<Module *
>(Tok.getAnnotationValue()));
675 ConsumeAnnotationToken();
680 case tok::annot_repl_input_end:
682 if (PP.getMaxTokens() != 0 && PP.getTokenCount() > PP.getMaxTokens()) {
683 PP.Diag(Tok.getLocation(), diag::warn_max_tokens_total)
684 << PP.getTokenCount() << PP.getMaxTokens();
687 PP.Diag(OverrideLoc, diag::note_max_tokens_total_override);
692 Actions.SetLateTemplateParser(LateTemplateParserCallback,
this);
693 Actions.ActOnEndOfTranslationUnit();
706 while (MaybeParseCXX11Attributes(DeclAttrs) ||
707 MaybeParseGNUAttributes(DeclSpecAttrs))
710 Result = ParseExternalDeclaration(DeclAttrs, DeclSpecAttrs);
720 else if (ImportState ==
732 DestroyTemplateIdAnnotationsRAIIObj CleanupRAII(*
this);
740 Decl *SingleDecl =
nullptr;
741 switch (
Tok.getKind()) {
742 case tok::annot_pragma_vis:
743 HandlePragmaVisibility();
745 case tok::annot_pragma_pack:
748 case tok::annot_pragma_msstruct:
749 HandlePragmaMSStruct();
751 case tok::annot_pragma_align:
754 case tok::annot_pragma_weak:
757 case tok::annot_pragma_weakalias:
758 HandlePragmaWeakAlias();
760 case tok::annot_pragma_redefine_extname:
761 HandlePragmaRedefineExtname();
763 case tok::annot_pragma_fp_contract:
764 HandlePragmaFPContract();
766 case tok::annot_pragma_fenv_access:
767 case tok::annot_pragma_fenv_access_ms:
768 HandlePragmaFEnvAccess();
770 case tok::annot_pragma_fenv_round:
771 HandlePragmaFEnvRound();
773 case tok::annot_pragma_cx_limited_range:
774 HandlePragmaCXLimitedRange();
776 case tok::annot_pragma_float_control:
777 HandlePragmaFloatControl();
779 case tok::annot_pragma_fp:
782 case tok::annot_pragma_opencl_extension:
783 HandlePragmaOpenCLExtension();
785 case tok::annot_attr_openmp:
786 case tok::annot_pragma_openmp: {
788 return ParseOpenMPDeclarativeDirectiveWithExtDecl(AS, Attrs);
790 case tok::annot_pragma_openacc: {
795 case tok::annot_pragma_ms_pointers_to_members:
796 HandlePragmaMSPointersToMembers();
798 case tok::annot_pragma_ms_vtordisp:
799 HandlePragmaMSVtorDisp();
801 case tok::annot_pragma_ms_pragma:
802 HandlePragmaMSPragma();
804 case tok::annot_pragma_dump:
807 case tok::annot_pragma_attribute:
808 HandlePragmaAttribute();
810 case tok::annot_pragma_export:
811 HandlePragmaExport();
816 Actions.ActOnEmptyDeclaration(
getCurScope(), Attrs, Tok.getLocation());
820 Diag(Tok, diag::err_extraneous_closing_brace);
824 Diag(Tok, diag::err_expected_external_declaration);
826 case tok::kw___extension__: {
828 ExtensionRAIIObject O(Diags);
830 return ParseExternalDeclaration(Attrs, DeclSpecAttrs);
833 ProhibitAttributes(Attrs);
835 SourceLocation StartLoc = Tok.getLocation();
836 SourceLocation EndLoc;
845 if (!SL->getString().trim().empty())
846 Diag(StartLoc, diag::err_gnu_inline_asm_disabled);
849 ExpectAndConsume(tok::semi, diag::err_expected_after,
850 "top-level asm block");
854 SingleDecl = Actions.ActOnFileScopeAsmDecl(
Result.get(), StartLoc, EndLoc);
858 return ParseObjCAtDirectives(Attrs, DeclSpecAttrs);
862 Diag(Tok, diag::err_expected_external_declaration);
866 SingleDecl = ParseObjCMethodDefinition();
868 case tok::code_completion:
870 if (CurParsedObjCImpl) {
872 Actions.CodeCompletion().CodeCompleteObjCMethodDecl(
879 if (CurParsedObjCImpl) {
881 }
else if (PP.isIncrementalProcessingEnabled()) {
886 Actions.CodeCompletion().CodeCompleteOrdinaryName(
getCurScope(), PCC);
888 case tok::kw_import: {
891 Diag(Tok, diag::err_unexpected_module_or_import_decl)
896 SingleDecl = ParseModuleImport(SourceLocation(), IS);
900 ProhibitAttributes(Attrs);
901 SingleDecl = ParseExportDeclaration();
908 case tok::kw_namespace:
909 case tok::kw_typedef:
910 case tok::kw_template:
911 case tok::kw_static_assert:
912 case tok::kw__Static_assert:
915 SourceLocation DeclEnd;
920 case tok::kw_cbuffer:
921 case tok::kw_tbuffer:
923 SourceLocation DeclEnd;
935 SourceLocation DeclEnd;
946 if (NextKind == tok::kw_namespace) {
947 SourceLocation DeclEnd;
954 if (NextKind == tok::kw_template) {
957 SourceLocation DeclEnd;
966 ProhibitAttributes(Attrs);
967 ProhibitAttributes(DeclSpecAttrs);
972 diag::warn_cxx98_compat_extern_template :
973 diag::ext_extern_template) << SourceRange(ExternLoc, TemplateLoc);
974 SourceLocation DeclEnd;
976 TemplateLoc, DeclEnd, Attrs);
980 case tok::kw___if_exists:
981 case tok::kw___if_not_exists:
982 ParseMicrosoftIfExistsExternalDeclaration();
986 Diag(Tok, diag::err_unexpected_module_or_import_decl) <<
false;
992 if (Tok.isEditorPlaceholder()) {
997 !isDeclarationStatement(
true))
998 return ParseTopLevelStmtDecl();
1002 return ParseDeclarationOrFunctionDefinition(Attrs, DeclSpecAttrs, DS);
1007 return Actions.ConvertDeclToDeclGroup(SingleDecl);
1010bool Parser::isDeclarationAfterDeclarator() {
1014 if (KW.
is(tok::kw_default) || KW.
is(tok::kw_delete))
1018 return Tok.is(tok::equal) ||
1019 Tok.is(tok::comma) ||
1020 Tok.is(tok::semi) ||
1021 Tok.is(tok::kw_asm) ||
1022 Tok.is(tok::kw___attribute) ||
1024 Tok.is(tok::l_paren));
1027bool Parser::isStartOfFunctionDefinition(
const ParsingDeclarator &Declarator) {
1028 assert(
Declarator.isFunctionDeclarator() &&
"Isn't a function declarator");
1029 if (Tok.is(tok::l_brace))
1034 Declarator.getFunctionTypeInfo().isKNRPrototype())
1039 return KW.
is(tok::kw_default) || KW.
is(tok::kw_delete);
1042 return Tok.is(tok::colon) ||
1043 Tok.is(tok::kw_try);
1047 ParsedAttributes &Attrs, ParsedAttributes &DeclSpecAttrs,
1053 "expected uninitialised source range");
1058 ParsedTemplateInfo TemplateInfo;
1061 ParseDeclarationSpecifiers(DS, TemplateInfo, AS,
1062 DeclSpecContext::DSC_top_level);
1067 DS, AS, DeclSpecContext::DSC_top_level))
1072 if (Tok.is(tok::semi)) {
1075 SourceLocation CorrectLocationForAttributes{};
1079 if (
const auto *ED = dyn_cast_or_null<EnumDecl>(DS.
getRepAsDecl())) {
1080 CorrectLocationForAttributes =
1081 PP.getLocForEndOfToken(ED->getEnumKeyRange().getEnd());
1084 if (CorrectLocationForAttributes.
isInvalid()) {
1085 const auto &Policy = Actions.getASTContext().getPrintingPolicy();
1088 CorrectLocationForAttributes =
1092 ProhibitAttributes(Attrs, CorrectLocationForAttributes);
1094 RecordDecl *AnonRecord =
nullptr;
1095 Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(
1098 Actions.ActOnDefinedDeclarationSpecifier(TheDecl);
1100 Decl* decls[] = {AnonRecord, TheDecl};
1101 return Actions.BuildDeclaratorGroup(decls);
1103 return Actions.ConvertDeclToDeclGroup(TheDecl);
1107 Actions.ActOnDefinedDeclarationSpecifier(DS.
getRepAsDecl());
1114 if (!Tok.isObjCAtKeyword(tok::objc_interface) &&
1115 !Tok.isObjCAtKeyword(tok::objc_protocol) &&
1116 !Tok.isObjCAtKeyword(tok::objc_implementation)) {
1117 Diag(Tok, diag::err_objc_unexpected_attr);
1125 const char *PrevSpec =
nullptr;
1128 Actions.getASTContext().getPrintingPolicy()))
1129 Diag(AtLoc, DiagID) << PrevSpec;
1131 if (Tok.isObjCAtKeyword(tok::objc_protocol))
1132 return ParseObjCAtProtocolDeclaration(AtLoc, DS.
getAttributes());
1134 if (Tok.isObjCAtKeyword(tok::objc_implementation))
1135 return ParseObjCAtImplementationDeclaration(AtLoc, DS.
getAttributes());
1137 return Actions.ConvertDeclToDeclGroup(
1138 ParseObjCAtInterfaceDeclaration(AtLoc, DS.
getAttributes()));
1147 ProhibitAttributes(Attrs);
1149 return Actions.ConvertDeclToDeclGroup(TheDecl);
1156 ParsedAttributes &Attrs, ParsedAttributes &DeclSpecAttrs,
1160 llvm::TimeTraceScope TimeScope(
"ParseDeclarationOrFunctionDefinition", [&]() {
1161 return Tok.getLocation().printToString(
1162 Actions.getASTContext().getSourceManager());
1166 return ParseDeclOrFunctionDefInternal(Attrs, DeclSpecAttrs, *DS, AS);
1168 ParsingDeclSpec PDS(*
this);
1172 ObjCDeclContextSwitch ObjCDC(*
this);
1174 return ParseDeclOrFunctionDefInternal(Attrs, DeclSpecAttrs, PDS, AS);
1178Decl *Parser::ParseFunctionDefinition(ParsingDeclarator &D,
1179 const ParsedTemplateInfo &TemplateInfo,
1180 LateParsedAttrList *LateParsedAttrs) {
1181 llvm::TimeTraceScope TimeScope(
"ParseFunctionDefinition", [&]() {
1182 return Actions.GetNameForDeclarator(D).getName().getAsString();
1188 TemplateParameterDepthRAII CurTemplateDepthTracker(TemplateParameterDepth);
1197 const char *PrevSpec;
1199 const PrintingPolicy &Policy = Actions.getASTContext().getPrintingPolicy();
1211 ParseKNRParamDeclarations(D);
1215 if (Tok.isNot(tok::l_brace) &&
1217 (Tok.isNot(tok::colon) && Tok.isNot(tok::kw_try) &&
1218 Tok.isNot(tok::equal)))) {
1219 Diag(Tok, diag::err_expected_fn_body);
1225 if (Tok.isNot(tok::l_brace))
1231 if (Tok.isNot(tok::equal)) {
1233 if (AL.isKnownToGCC() && !AL.isStandardAttributeSyntax())
1234 Diag(AL.getLoc(), diag::warn_attribute_on_function_definition) << AL;
1239 if (
getLangOpts().DelayedTemplateParsing && Tok.isNot(tok::equal) &&
1241 LateParsedAttrs->empty() && Actions.canDelayFunctionBody(D)) {
1249 Decl *DP = Actions.HandleDeclarator(ParentScope, D,
1254 if (SkipFunctionBodies && (!DP || Actions.canSkipFunctionBody(DP)) &&
1255 trySkippingFunctionBody()) {
1257 return Actions.ActOnSkippedFunctionBody(DP);
1261 LexTemplateFunctionForLateParsing(Toks);
1265 Actions.CheckForFunctionRedefinition(FnD);
1266 Actions.MarkAsLateParsedTemplate(FnD, DP, Toks);
1270 if (CurParsedObjCImpl && !TemplateInfo.TemplateParams &&
1271 (Tok.is(tok::l_brace) || Tok.is(tok::kw_try) || Tok.is(tok::colon)) &&
1272 Actions.CurContext->isTranslationUnit()) {
1278 Decl *FuncDecl = Actions.HandleDeclarator(ParentScope, D,
1284 StashAwayMethodOrFunctionBodyTokens(FuncDecl);
1285 CurParsedObjCImpl->HasCFunction =
true;
1297 StringLiteral *DeletedMessage =
nullptr;
1299 SourceLocation KWLoc;
1305 ? diag::warn_cxx98_compat_defaulted_deleted_function
1306 : diag::ext_defaulted_deleted_function)
1309 DeletedMessage = ParseCXXDeletedFunctionMessage();
1313 ? diag::warn_cxx98_compat_defaulted_deleted_function
1314 : diag::ext_defaulted_deleted_function)
1319 llvm_unreachable(
"function definition after = not 'delete' or 'default'");
1322 if (Tok.is(tok::comma)) {
1323 Diag(KWLoc, diag::err_default_delete_in_multiple_declaration)
1326 }
else if (ExpectAndConsume(tok::semi, diag::err_expected_after,
1334 Sema::FPFeaturesStateRAII SaveFPFeatures(Actions);
1338 SkipBodyInfo SkipBody;
1340 TemplateInfo.TemplateParams
1341 ? *TemplateInfo.TemplateParams
1343 &SkipBody, BodyKind);
1360 Actions.PopExpressionEvaluationContext();
1372 Actions.SetFunctionBodyKind(Res, KWLoc, BodyKind, DeletedMessage);
1373 Stmt *GeneratedBody = Res ? Res->
getBody() :
nullptr;
1374 Actions.ActOnFinishFunctionBody(Res, GeneratedBody,
false);
1380 if (
const auto *
Template = dyn_cast_if_present<FunctionTemplateDecl>(Res);
1382 Template->getTemplateParameters()->getParam(0)->isImplicit())
1385 CurTemplateDepthTracker.addDepth(1);
1388 if (LateParsedAttrs)
1389 ParseLexedAttributeList(*LateParsedAttrs, Res,
false,
1392 if (SkipFunctionBodies && (!Res || Actions.canSkipFunctionBody(Res)) &&
1393 trySkippingFunctionBody()) {
1395 Actions.ActOnSkippedFunctionBody(Res);
1396 return Actions.ActOnFinishFunctionBody(Res,
nullptr,
false);
1399 if (Tok.is(tok::kw_try))
1400 return ParseFunctionTryBlock(Res, BodyScope);
1404 if (Tok.is(tok::colon)) {
1405 ParseConstructorInitializer(Res);
1408 if (!Tok.is(tok::l_brace)) {
1410 Actions.ActOnFinishFunctionBody(Res,
nullptr);
1414 Actions.ActOnDefaultCtorInitializers(Res);
1416 return ParseFunctionStatementBody(Res, BodyScope);
1419void Parser::SkipFunctionBody() {
1420 if (Tok.is(tok::equal)) {
1425 bool IsFunctionTryBlock = Tok.is(tok::kw_try);
1426 if (IsFunctionTryBlock)
1430 if (ConsumeAndStoreFunctionPrologue(Skipped))
1434 while (IsFunctionTryBlock && Tok.is(tok::kw_catch)) {
1441void Parser::ParseKNRParamDeclarations(Declarator &D) {
1452 SourceLocation DSStart = Tok.getLocation();
1455 DeclSpec DS(AttrFactory);
1456 ParsedTemplateInfo TemplateInfo;
1457 ParseDeclarationSpecifiers(DS, TemplateInfo);
1465 Diag(DSStart, diag::err_declaration_does_not_declare_param);
1474 diag::err_invalid_storage_class_in_func_decl);
1479 diag::err_invalid_storage_class_in_func_decl);
1486 ParseDeclarator(ParmDeclarator);
1491 MaybeParseGNUAttributes(ParmDeclarator);
1495 Actions.ActOnParamDeclarator(
getCurScope(), ParmDeclarator);
1499 ParmDeclarator.getIdentifier()) {
1503 for (
unsigned i = 0; ; ++i) {
1507 Diag(ParmDeclarator.getIdentifierLoc(), diag::err_no_matching_param)
1508 << ParmDeclarator.getIdentifier();
1512 if (FTI.
Params[i].
Ident == ParmDeclarator.getIdentifier()) {
1515 Diag(ParmDeclarator.getIdentifierLoc(),
1516 diag::err_param_redefinition)
1517 << ParmDeclarator.getIdentifier();
1528 if (Tok.isNot(tok::comma))
1531 ParmDeclarator.clear();
1537 ParseDeclarator(ParmDeclarator);
1541 if (!ExpectAndConsumeSemi(diag::err_expected_semi_declaration))
1551 Actions.ActOnFinishKNRParamDeclarations(
getCurScope(), D, Tok.getLocation());
1554ExprResult Parser::ParseAsmStringLiteral(
bool ForAsmLabel) {
1557 if (isTokenStringLiteral()) {
1563 if (!SL->isOrdinary()) {
1564 Diag(Tok, diag::err_asm_operand_wide_string_literal)
1565 << SL->isWide() << SL->getSourceRange();
1569 Tok.is(tok::l_paren)) {
1571 SourceLocation RParenLoc;
1574 EnterExpressionEvaluationContext ConstantEvaluated(
1576 AsmString = ParseParenExpression(
1580 AsmString = Actions.ActOnConstantExpression(AsmString);
1585 Diag(Tok, diag::err_asm_expected_string) << (
1586 (
getLangOpts().CPlusPlus11 && !ForAsmLabel) ? 0 : 1);
1589 return Actions.ActOnGCCAsmStmtString(AsmString.
get(), ForAsmLabel);
1592ExprResult Parser::ParseSimpleAsm(
bool ForAsmLabel, SourceLocation *EndLoc) {
1593 assert(Tok.is(tok::kw_asm) &&
"Not an asm!");
1596 if (isGNUAsmQualifier(Tok)) {
1598 SourceRange RemovalRange(PP.getLocForEndOfToken(Loc),
1599 PP.getLocForEndOfToken(Tok.getLocation()));
1600 Diag(Tok, diag::err_global_asm_qualifier_ignored)
1601 << GNUAsmQualifiers::getQualifierName(getGNUAsmQualifier(Tok))
1607 if (
T.consumeOpen()) {
1608 Diag(Tok, diag::err_expected_lparen_after) <<
"asm";
1614 if (!
Result.isInvalid()) {
1618 *EndLoc =
T.getCloseLocation();
1621 *EndLoc = Tok.getLocation();
1628TemplateIdAnnotation *Parser::takeTemplateIdAnnotation(
const Token &tok) {
1629 assert(tok.
is(tok::annot_template_id) &&
"Expected template-id token");
1630 TemplateIdAnnotation *
1635void Parser::AnnotateScopeToken(CXXScopeSpec &SS,
bool IsNewAnnotation) {
1638 if (PP.isBacktrackEnabled())
1639 PP.RevertCachedTokens(1);
1641 PP.EnterToken(Tok,
true);
1642 Tok.setKind(tok::annot_cxxscope);
1643 Tok.setAnnotationValue(Actions.SaveNestedNameSpecifierAnnotation(SS));
1644 Tok.setAnnotationRange(SS.
getRange());
1649 if (IsNewAnnotation)
1650 PP.AnnotateCachedTokens(Tok);
1654Parser::TryAnnotateName(CorrectionCandidateCallback *CCC,
1656 assert(Tok.is(tok::identifier) || Tok.is(tok::annot_cxxscope));
1658 const bool EnteringContext =
false;
1659 const bool WasScopeAnnotation = Tok.is(tok::annot_cxxscope);
1663 ParseOptionalCXXScopeSpecifier(SS,
nullptr,
1668 if (Tok.isNot(tok::identifier) || SS.
isInvalid()) {
1670 AllowImplicitTypename))
1675 IdentifierInfo *Name = Tok.getIdentifierInfo();
1676 SourceLocation NameLoc = Tok.getLocation();
1680 if (isTentativelyDeclared(Name) && SS.
isEmpty()) {
1684 AllowImplicitTypename))
1696 Sema::NameClassification Classification = Actions.ClassifyName(
1704 isTemplateArgumentList(1) == TPResult::False) {
1706 Token FakeNext =
Next;
1707 FakeNext.
setKind(tok::unknown);
1709 Actions.ClassifyName(
getCurScope(), SS, Name, NameLoc, FakeNext,
1710 SS.
isEmpty() ? CCC :
nullptr);
1713 switch (Classification.
getKind()) {
1719 Tok.setIdentifierInfo(Name);
1721 PP.TypoCorrectToken(Tok);
1723 AnnotateScopeToken(SS, !WasScopeAnnotation);
1732 if (TryAltiVecVectorToken())
1737 SourceLocation BeginLoc = NameLoc;
1744 QualType
T = Actions.GetTypeFromParser(Ty);
1749 SourceLocation NewEndLoc;
1751 = parseObjCTypeArgsAndProtocolQualifiers(IdentifierLoc, Ty,
1756 else if (Tok.is(tok::eof))
1760 Tok.setKind(tok::annot_typename);
1761 setTypeAnnotation(Tok, Ty);
1762 Tok.setAnnotationEndLoc(Tok.getLocation());
1763 Tok.setLocation(BeginLoc);
1764 PP.AnnotateCachedTokens(Tok);
1769 Tok.setKind(tok::annot_overload_set);
1771 Tok.setAnnotationEndLoc(NameLoc);
1774 PP.AnnotateCachedTokens(Tok);
1778 if (TryAltiVecVectorToken())
1783 Tok.setKind(tok::annot_non_type);
1785 Tok.setLocation(NameLoc);
1786 Tok.setAnnotationEndLoc(NameLoc);
1787 PP.AnnotateCachedTokens(Tok);
1789 AnnotateScopeToken(SS, !WasScopeAnnotation);
1794 Tok.setKind(Classification.
getKind() ==
1796 ? tok::annot_non_type_undeclared
1797 : tok::annot_non_type_dependent);
1798 setIdentifierAnnotation(Tok, Name);
1799 Tok.setLocation(NameLoc);
1800 Tok.setAnnotationEndLoc(NameLoc);
1801 PP.AnnotateCachedTokens(Tok);
1803 AnnotateScopeToken(SS, !WasScopeAnnotation);
1807 if (
Next.isNot(tok::less)) {
1811 AnnotateScopeToken(SS, !WasScopeAnnotation);
1819 bool IsConceptName =
1825 if (
Next.is(tok::less))
1827 if (AnnotateTemplateIdToken(
1834 AnnotateScopeToken(SS, !WasScopeAnnotation);
1841 AnnotateScopeToken(SS, !WasScopeAnnotation);
1846 SourceLocation TokenEndLoc = PP.getLocForEndOfToken(PrevTokLocation);
1847 return TokenEndLoc.
isValid() ? TokenEndLoc : Tok.getLocation();
1850bool Parser::TryKeywordIdentFallback(
bool DisableKeyword) {
1851 assert(
Tok.isNot(tok::identifier));
1857 Tok.setKind(tok::identifier);
1861 Diag(
Tok, diag::ext_keyword_as_ident)
1866 Tok.setKind(tok::identifier);
1872 assert((Tok.is(tok::identifier) || Tok.is(tok::coloncolon) ||
1873 Tok.is(tok::kw_typename) || Tok.is(tok::annot_cxxscope) ||
1874 Tok.is(tok::kw_decltype) || Tok.is(tok::annot_template_id) ||
1875 Tok.is(tok::kw___super) || Tok.is(tok::kw_auto) ||
1876 Tok.is(tok::annot_pack_indexing_type)) &&
1877 "Cannot be a type or scope token!");
1879 if (Tok.is(tok::kw_typename)) {
1888 PP.Lex(TypedefToken);
1890 PP.EnterToken(Tok,
true);
1893 Diag(Tok.getLocation(), diag::warn_expected_qualified_after_typename);
1905 if (ParseOptionalCXXScopeSpecifier(SS,
nullptr,
1911 if (Tok.is(tok::identifier) || Tok.is(tok::annot_template_id) ||
1912 Tok.is(tok::annot_decltype)) {
1914 if (Tok.is(tok::annot_decltype) ||
1916 Tok.isAnnotation())) {
1917 unsigned DiagID = diag::err_expected_qualified_after_typename;
1921 DiagID = diag::warn_expected_qualified_after_typename;
1922 Diag(Tok.getLocation(), DiagID);
1926 if (Tok.isEditorPlaceholder())
1929 Diag(Tok.getLocation(), diag::err_expected_qualified_after_typename);
1933 bool TemplateKWPresent =
false;
1934 if (Tok.is(tok::kw_template)) {
1936 TemplateKWPresent =
true;
1940 if (Tok.is(tok::identifier)) {
1942 Diag(Tok.getLocation(),
1943 diag::missing_template_arg_list_after_template_kw);
1946 Ty = Actions.ActOnTypenameType(
getCurScope(), TypenameLoc, SS,
1947 *Tok.getIdentifierInfo(),
1949 }
else if (Tok.is(tok::annot_template_id)) {
1952 Diag(Tok, diag::err_typename_refers_to_non_type_template)
1953 << Tok.getAnnotationRange();
1962 : Actions.ActOnTypenameType(
1966 TemplateArgsPtr, TemplateId->
RAngleLoc);
1968 Diag(Tok, diag::err_expected_type_name_after_typename)
1974 Tok.setKind(tok::annot_typename);
1975 setTypeAnnotation(Tok, Ty);
1976 Tok.setAnnotationEndLoc(EndLoc);
1977 Tok.setLocation(TypenameLoc);
1978 PP.AnnotateCachedTokens(Tok);
1983 bool WasScopeAnnotation = Tok.is(tok::annot_cxxscope);
1987 if (ParseOptionalCXXScopeSpecifier(
1991 IsAddressOfOperand))
1995 AllowImplicitTypename);
2001 if (Tok.is(tok::identifier)) {
2004 *Tok.getIdentifierInfo(), Tok.getLocation(),
getCurScope(), &SS,
2008 true, AllowImplicitTypename)) {
2013 QualType T = Actions.GetTypeFromParser(Ty);
2018 (
T->isObjCObjectType() ||
T->isObjCObjectPointerType())) {
2028 else if (Tok.is(tok::eof))
2034 Tok.setKind(tok::annot_typename);
2035 setTypeAnnotation(Tok, Ty);
2036 Tok.setAnnotationEndLoc(Tok.getLocation());
2037 Tok.setLocation(BeginLoc);
2041 PP.AnnotateCachedTokens(Tok);
2058 TemplateName.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
2059 bool MemberOfUnknownSpecialization;
2064 MemberOfUnknownSpecialization)) {
2068 isTemplateArgumentList(1) != TPResult::False) {
2088 if (Tok.is(tok::annot_template_id)) {
2095 AnnotateTemplateIdTokenAsType(SS, AllowImplicitTypename);
2102 Tok.is(tok::coloncolon)) {
2111 AnnotateScopeToken(SS, IsNewScope);
2117 "Call sites of this function should be guarded by checking for C++");
2121 if (ParseOptionalCXXScopeSpecifier(SS,
nullptr,
2128 AnnotateScopeToken(SS,
true);
2132bool Parser::isTokenEqualOrEqualTypo() {
2138 case tok::starequal:
2139 case tok::plusequal:
2140 case tok::minusequal:
2141 case tok::exclaimequal:
2142 case tok::slashequal:
2143 case tok::percentequal:
2144 case tok::lessequal:
2145 case tok::lesslessequal:
2146 case tok::greaterequal:
2147 case tok::greatergreaterequal:
2148 case tok::caretequal:
2149 case tok::pipeequal:
2150 case tok::equalequal:
2151 Diag(
Tok, diag::err_invalid_token_after_declarator_suggest_equal)
2160SourceLocation Parser::handleUnexpectedCodeCompletionToken() {
2161 assert(Tok.is(tok::code_completion));
2162 PrevTokLocation = Tok.getLocation();
2165 if (S->isFunctionScope()) {
2167 Actions.CodeCompletion().CodeCompleteOrdinaryName(
2169 return PrevTokLocation;
2172 if (S->isClassScope()) {
2174 Actions.CodeCompletion().CodeCompleteOrdinaryName(
2176 return PrevTokLocation;
2181 Actions.CodeCompletion().CodeCompleteOrdinaryName(
2183 return PrevTokLocation;
2188void Parser::CodeCompleteDirective(
bool InConditional) {
2189 Actions.CodeCompletion().CodeCompletePreprocessorDirective(InConditional);
2193 Actions.CodeCompletion().CodeCompleteInPreprocessorConditionalExclusion(
2197void Parser::CodeCompleteMacroName(
bool IsDefinition) {
2198 Actions.CodeCompletion().CodeCompletePreprocessorMacroName(IsDefinition);
2202 Actions.CodeCompletion().CodeCompletePreprocessorExpression();
2205void Parser::CodeCompleteMacroArgument(IdentifierInfo *
Macro,
2206 MacroInfo *MacroInfo,
2207 unsigned ArgumentIndex) {
2208 Actions.CodeCompletion().CodeCompletePreprocessorMacroArgument(
2212void Parser::CodeCompleteIncludedFile(llvm::StringRef Dir,
bool IsAngled) {
2213 Actions.CodeCompletion().CodeCompleteIncludedFile(Dir, IsAngled);
2217 Actions.CodeCompletion().CodeCompleteNaturalLanguage();
2220void Parser::CodeCompleteModuleImport(SourceLocation ImportLoc,
2222 Actions.CodeCompletion().CodeCompleteModuleImport(ImportLoc, Path);
2225bool Parser::ParseMicrosoftIfExistsCondition(IfExistsCondition&
Result) {
2226 assert((Tok.is(tok::kw___if_exists) || Tok.is(tok::kw___if_not_exists)) &&
2227 "Expected '__if_exists' or '__if_not_exists'");
2228 Result.IsIfExists = Tok.is(tok::kw___if_exists);
2232 if (
T.consumeOpen()) {
2233 Diag(Tok, diag::err_expected_lparen_after)
2234 << (
Result.IsIfExists?
"__if_exists" :
"__if_not_exists");
2240 ParseOptionalCXXScopeSpecifier(
Result.SS,
nullptr,
2245 if (
Result.SS.isInvalid()) {
2251 SourceLocation TemplateKWLoc;
2256 false, &TemplateKWLoc,
2262 if (
T.consumeClose())
2290void Parser::ParseMicrosoftIfExistsExternalDeclaration() {
2291 IfExistsCondition
Result;
2292 if (ParseMicrosoftIfExistsCondition(
Result))
2296 if (
Braces.consumeOpen()) {
2297 Diag(Tok, diag::err_expected) << tok::l_brace;
2301 switch (
Result.Behavior) {
2307 llvm_unreachable(
"Cannot have a dependent external declaration");
2316 while (Tok.isNot(tok::r_brace) && !isEofOrEom()) {
2317 ParsedAttributes Attrs(AttrFactory);
2318 MaybeParseCXX11Attributes(Attrs);
2319 ParsedAttributes EmptyDeclSpecAttrs(AttrFactory);
2322 Actions.getASTConsumer().HandleTopLevelDecl(
Result.get());
2329 Token Introducer = Tok;
2330 SourceLocation StartLoc = Introducer.
getLocation();
2336 assert(Tok.is(tok::kw_module) &&
"not a module declaration");
2342 DiagnoseAndSkipCXX11Attributes();
2345 if (
getLangOpts().CPlusPlusModules && Tok.is(tok::semi)) {
2349 Diag(StartLoc, diag::err_global_module_introducer_not_at_start)
2350 << SourceRange(StartLoc, SemiLoc);
2354 Diag(StartLoc, diag::err_module_fragment_exported)
2358 return Actions.ActOnGlobalModuleFragmentDecl(ModuleLoc);
2362 if (
getLangOpts().CPlusPlusModules && Tok.is(tok::colon) &&
2365 Diag(StartLoc, diag::err_module_fragment_exported)
2370 DiagnoseAndSkipCXX11Attributes();
2371 ExpectAndConsumeSemi(diag::err_private_module_fragment_expected_semi);
2375 return Actions.ActOnPrivateModuleFragmentDecl(ModuleLoc, PrivateLoc);
2378 SmallVector<IdentifierLoc, 2> Path;
2379 if (ParseModuleName(ModuleLoc, Path,
false))
2383 SmallVector<IdentifierLoc, 2> Partition;
2384 if (Tok.is(tok::colon)) {
2387 Diag(ColonLoc, diag::err_unsupported_module_partition)
2388 << SourceRange(ColonLoc, Partition.back().getLoc());
2390 else if (ParseModuleName(ModuleLoc, Partition,
false))
2394 if (Tok.isNoneOf(tok::semi, tok::l_square, tok::eof)) {
2395 Diag(Tok, diag::err_unexpected_tok_after_module_name)
2396 << PP.getSpelling(Tok);
2401 ParsedAttributes Attrs(AttrFactory);
2402 MaybeParseCXX11Attributes(Attrs);
2403 ProhibitCXX11Attributes(Attrs, diag::err_attribute_not_module_attr,
2404 diag::err_keyword_not_module_attr,
2408 if (ExpectAndConsumeSemi(diag::err_expected_semi_after_module_or_import,
2412 return Actions.ActOnModuleDecl(StartLoc, ModuleLoc, MDK, Path, Partition,
2417Decl *Parser::ParseModuleImport(SourceLocation AtLoc,
2419 SourceLocation StartLoc = AtLoc.
isInvalid() ? Tok.getLocation() : AtLoc;
2421 SourceLocation ExportLoc;
2424 assert((AtLoc.
isInvalid() ? Tok.is(tok::kw_import)
2425 : Tok.isObjCAtKeyword(tok::objc_import)) &&
2426 "Improper start to module import");
2427 bool IsObjCAtImport = Tok.isObjCAtKeyword(tok::objc_import);
2431 SmallVector<IdentifierLoc, 2> Path;
2432 bool IsPartition =
false;
2433 Module *HeaderUnit =
nullptr;
2434 if (Tok.is(tok::header_name)) {
2439 }
else if (Tok.is(tok::annot_header_unit)) {
2441 HeaderUnit =
reinterpret_cast<Module *
>(Tok.getAnnotationValue());
2442 ConsumeAnnotationToken();
2443 }
else if (Tok.is(tok::colon)) {
2446 Diag(ColonLoc, diag::err_unsupported_module_partition)
2447 << SourceRange(ColonLoc, Path.back().getLoc());
2449 else if (ParseModuleName(ColonLoc, Path,
true))
2454 if (ParseModuleName(ImportLoc, Path,
true))
2458 ParsedAttributes Attrs(AttrFactory);
2459 MaybeParseCXX11Attributes(Attrs);
2461 ProhibitCXX11Attributes(Attrs, diag::err_attribute_not_import_attr,
2462 diag::err_keyword_not_import_attr,
2469 bool IsCXX20NamedModuleImport =
2470 getLangOpts().CPlusPlusModules && !IsObjCAtImport && !Path.empty();
2472 if (PP.hadModuleLoaderFatalFailure() && !IsCXX20NamedModuleImport) {
2479 bool SeenError =
true;
2480 switch (ImportState) {
2492 Diag(ImportLoc, diag::err_partition_import_outside_module);
2504 if (IsPartition || (HeaderUnit && HeaderUnit->
Kind !=
2506 Diag(ImportLoc, diag::err_import_in_wrong_fragment)
2515 Diag(ImportLoc, diag::err_import_not_allowed_here);
2531 bool LexedSemi =
false;
2534 !ExpectAndConsumeSemi(diag::err_expected_semi_after_module_or_import,
2537 LexedSemi = !ExpectAndConsumeSemi(diag::err_module_expected_semi);
2548 Actions.ActOnModuleImport(StartLoc, ExportLoc, ImportLoc, HeaderUnit);
2549 else if (!Path.empty())
2550 Import = Actions.ActOnModuleImport(StartLoc, ExportLoc, ImportLoc, Path,
2557 if (IsObjCAtImport && AtLoc.
isValid()) {
2558 auto &SrcMgr = PP.getSourceManager();
2559 auto FE = SrcMgr.getFileEntryRefForID(SrcMgr.getFileID(AtLoc));
2560 if (FE && llvm::sys::path::parent_path(FE->getDir().getName())
2561 .ends_with(
".framework"))
2562 Diags.Report(AtLoc, diag::warn_atimport_in_framework_header);
2568bool Parser::ParseModuleName(SourceLocation UseLoc,
2569 SmallVectorImpl<IdentifierLoc> &Path,
2571 if (Tok.isNot(tok::annot_module_name)) {
2575 ModuleNameLoc *NameLoc =
2576 static_cast<ModuleNameLoc *
>(Tok.getAnnotationValue());
2579 ConsumeAnnotationToken();
2583bool Parser::parseMisplacedModuleImport() {
2585 switch (Tok.getKind()) {
2586 case tok::annot_module_end:
2590 if (MisplacedModuleBeginCount) {
2591 --MisplacedModuleBeginCount;
2592 Actions.ActOnAnnotModuleEnd(
2594 reinterpret_cast<Module *
>(Tok.getAnnotationValue()));
2595 ConsumeAnnotationToken();
2602 case tok::annot_module_begin:
2604 Actions.ActOnAnnotModuleBegin(
2606 reinterpret_cast<Module *
>(Tok.getAnnotationValue()));
2607 ConsumeAnnotationToken();
2608 ++MisplacedModuleBeginCount;
2610 case tok::annot_module_include:
2613 Actions.ActOnAnnotModuleInclude(
2615 reinterpret_cast<Module *
>(Tok.getAnnotationValue()));
2616 ConsumeAnnotationToken();
2626void Parser::diagnoseUseOfC11Keyword(
const Token &Tok) {
2631 : diag::ext_c11_feature)
2635bool BalancedDelimiterTracker::diagnoseOverflow() {
2636 P.Diag(P.Tok, diag::err_bracket_depth_exceeded)
2637 << P.getLangOpts().BracketDepth;
2638 P.Diag(P.Tok, diag::note_bracket_depth);
2646 LOpen = P.Tok.getLocation();
2647 if (P.ExpectAndConsume(Kind, DiagID, Msg)) {
2648 if (SkipToTok != tok::unknown)
2653 if (getDepth() < P.getLangOpts().BracketDepth)
2656 return diagnoseOverflow();
2659bool BalancedDelimiterTracker::diagnoseMissingClose() {
2660 assert(!P.Tok.is(Close) &&
"Should have consumed closing delimiter");
2662 if (P.Tok.is(tok::annot_module_end))
2663 P.Diag(P.Tok, diag::err_missing_before_module_end) << Close;
2665 P.Diag(P.Tok, diag::err_expected) << Close;
2666 P.Diag(LOpen, diag::note_matching) << Kind;
2670 if (P.Tok.isNot(tok::r_paren) && P.Tok.isNot(tok::r_brace) &&
2671 P.Tok.isNot(tok::r_square) &&
2672 P.SkipUntil(Close, FinalToken,
2675 LClose = P.ConsumeAnyToken();
Defines the clang::ASTContext interface.
This file provides some common utility functions for processing Lambda related AST Constructs.
static Decl::Kind getKind(const Decl *D)
This file defines the classes used to store parsed information about declaration-specifiers and decla...
Defines the C++ template declaration subclasses.
static bool IsCommonTypo(tok::TokenKind ExpectedTok, const Token &Tok)
static bool HasFlagsSet(Parser::SkipUntilFlags L, Parser::SkipUntilFlags R)
Defines the clang::Preprocessor interface.
This file declares facilities that support code completion.
Defines a utilitiy for warning once when close to out of stack space.
Defines the clang::TokenKind enum and support functions.
bool expectAndConsume(unsigned DiagID=diag::err_expected, const char *Msg="", tok::TokenKind SkipToTok=tok::unknown)
Represents a C++ nested-name-specifier or a global scope specifier.
bool isNotEmpty() const
A scope specifier is present, but may be valid or invalid.
SourceRange getRange() const
SourceLocation getBeginLoc() const
bool isInvalid() const
An error occurred during parsing of the scope specifier.
bool isEmpty() const
No scope specifier.
virtual void CodeCompletePreprocessorExpression()
Callback invoked when performing code completion in a preprocessor expression, such as the condition ...
virtual void CodeCompleteNaturalLanguage()
Callback invoked when performing code completion in a part of the file where we expect natural langua...
virtual void CodeCompleteInConditionalExclusion()
Callback invoked when performing code completion within a block of code that was excluded due to prep...
void ClearStorageClassSpecs()
TST getTypeSpecType() const
SourceLocation getStorageClassSpecLoc() const
SCS getStorageClassSpec() const
bool SetTypeSpecType(TST T, SourceLocation Loc, const char *&PrevSpec, unsigned &DiagID, const PrintingPolicy &Policy)
SourceLocation getBeginLoc() const LLVM_READONLY
SourceRange getSourceRange() const LLVM_READONLY
void SetRangeEnd(SourceLocation Loc)
void SetRangeStart(SourceLocation Loc)
TSCS getThreadStorageClassSpec() const
ParsedAttributes & getAttributes()
static const TST TST_enum
static bool isDeclRep(TST T)
void takeAttributesAppendingingFrom(ParsedAttributes &attrs)
bool hasTagDefinition() const
unsigned getParsedSpecifiers() const
Return a bitmask of which flavors of specifiers this DeclSpec includes.
static const TSCS TSCS_unspecified
static const char * getSpecifierName(DeclSpec::TST T, const PrintingPolicy &Policy)
Turn a type-specifier-type into a string like "_Bool" or "union".
SourceLocation getThreadStorageClassSpecLoc() const
Decl * getRepAsDecl() const
static const TST TST_unspecified
bool isEmpty() const
isEmpty - Return true if this declaration specifier is completely empty: no tokens were parsed in the...
SourceLocation getTypeSpecTypeLoc() const
@ PQ_StorageClassSpecifier
Decl - This represents one declaration (or definition), e.g.
virtual Stmt * getBody() const
getBody - If this Decl represents a declaration for a body of code, such as a function or method defi...
FunctionDecl * getAsFunction() LLVM_READONLY
Returns the function itself, or the templated function if this is a function template.
void SetRangeBegin(SourceLocation Loc)
SetRangeBegin - Set the start of the source range to Loc, unless it's invalid.
const ParsedAttributes & getAttributes() const
SourceLocation getIdentifierLoc() const
void setFunctionDefinitionKind(FunctionDefinitionKind Val)
void SetRangeEnd(SourceLocation Loc)
SetRangeEnd - Set the end of the source range to Loc, unless it's invalid.
DeclaratorChunk::FunctionTypeInfo & getFunctionTypeInfo()
getFunctionTypeInfo - Retrieves the function type info object (looking through parentheses).
A little helper class used to produce diagnostics.
static unsigned getCompatDiagId(const LangOptions &LangOpts, unsigned CompatDiagId)
Get the appropriate diagnostic Id to use for issuing a compatibility diagnostic.
static FixItHint CreateReplacement(CharSourceRange RemoveRange, StringRef Code)
Create a code modification hint that replaces the given source range with the given code string.
static FixItHint CreateRemoval(CharSourceRange RemoveRange)
Create a code modification hint that removes the given source range.
static FixItHint CreateInsertion(SourceLocation InsertionLoc, StringRef Code, bool BeforePreviousInsertions=false)
Create a code modification hint that inserts the given code string at a specific location.
One of these records is kept for each identifier that is lexed.
tok::TokenKind getTokenID() const
If this is a source-language token (e.g.
void revertTokenIDToIdentifier()
Revert TokenID to tok::identifier; used for GNU libstdc++ 4.2 compatibility.
A simple pair of identifier info and location.
Describes a module import declaration, which makes the contents of the named module visible in the cu...
ModuleIdPath getModuleIdPath() const
Describes a module or submodule.
ModuleKind Kind
The kind of this module.
bool isHeaderUnit() const
Is this module a header unit.
@ ModuleHeaderUnit
This is a C++20 header unit.
static OpaquePtr make(TemplateName P)
RAII object that makes sure paren/bracket/brace count is correct after declaration/statement parsing,...
static const ParsedAttributesView & none()
ParsedAttributes - A collection of parsed attributes.
ParseScope - Introduces a new scope for parsing.
Parser - This implements a parser for the C family of languages.
bool TryAnnotateTypeOrScopeToken(ImplicitTypenameContext AllowImplicitTypename=ImplicitTypenameContext::No, bool IsAddressOfOperand=false)
TryAnnotateTypeOrScopeToken - If the current token position is on a typename (possibly qualified in C...
DiagnosticBuilder Diag(SourceLocation Loc, unsigned DiagID)
SourceLocation getEndOfPreviousToken() const
bool TryAnnotateTypeOrScopeTokenAfterScopeSpec(CXXScopeSpec &SS, bool IsNewScope, ImplicitTypenameContext AllowImplicitTypename)
Try to annotate a type or scope token, having already parsed an optional scope specifier.
DiagnosticBuilder DiagCompat(SourceLocation Loc, unsigned CompatDiagId)
ExprResult ParseStringLiteralExpression(bool AllowUserDefinedLiteral=false)
ParseStringLiteralExpression - This handles the various token types that form string literals,...
SourceLocation ConsumeToken()
ConsumeToken - Consume the current 'peek token' and lex the next one.
Parser(Preprocessor &PP, Sema &Actions, bool SkipFunctionBodies)
void EnterScope(unsigned ScopeFlags)
EnterScope - Start a new scope.
bool ParseUnqualifiedId(CXXScopeSpec &SS, ParsedType ObjectType, bool ObjectHadErrors, bool EnteringContext, bool AllowDestructorName, bool AllowConstructorName, bool AllowDeductionGuide, SourceLocation *TemplateKWLoc, UnqualifiedId &Result)
Parse a C++ unqualified-id (or a C identifier), which describes the name of an entity.
DeclGroupPtrTy ParseOpenACCDirectiveDecl(AccessSpecifier &AS, ParsedAttributes &Attrs, DeclSpec::TST TagType, Decl *TagDecl)
Parse OpenACC directive on a declaration.
SourceLocation ConsumeAnyToken(bool ConsumeCodeCompletionTok=false)
ConsumeAnyToken - Dispatch to the right Consume* method based on the current token type.
bool TryConsumeToken(tok::TokenKind Expected)
OpaquePtr< DeclGroupRef > DeclGroupPtrTy
Scope * getCurScope() const
OpaquePtr< TemplateName > TemplateTy
bool SkipUntil(tok::TokenKind T, SkipUntilFlags Flags=static_cast< SkipUntilFlags >(0))
SkipUntil - Read tokens until we get to the specified token, then consume it (unless StopBeforeMatch ...
void SkipMalformedDecl()
SkipMalformedDecl - Read tokens until we get to some likely good stopping point for skipping past a s...
friend class PoisonSEHIdentifiersRAIIObject
void ExitScope()
ExitScope - Pop a scope off the scope stack.
const LangOptions & getLangOpts() const
bool ParseFirstTopLevelDecl(DeclGroupPtrTy &Result, Sema::ModuleImportState &ImportState)
Parse the first top-level declaration in a translation unit.
SkipUntilFlags
Control flags for SkipUntil functions.
@ StopBeforeMatch
Stop skipping at specified token, but don't skip the token itself.
@ StopAtCodeCompletion
Stop at code completion.
@ StopAtSemi
Stop skipping at semicolon.
bool MightBeCXXScopeToken()
const Token & NextToken()
NextToken - This peeks ahead one token and returns it without consuming it.
friend class BalancedDelimiterTracker
SmallVector< TemplateParameterList *, 4 > TemplateParameterLists
void Initialize()
Initialize - Warm up the parser.
bool TryAnnotateCXXScopeToken(bool EnteringContext=false)
TryAnnotateScopeToken - Like TryAnnotateTypeOrScopeToken but only annotates C++ scope specifiers and ...
A class for parsing a DeclSpec.
const ParsingDeclSpec & getDeclSpec() const
ParsingDeclSpec & getMutableDeclSpec() const
Engages in a tight little dance with the lexer to efficiently preprocess tokens.
StringRef getSpelling(SourceLocation loc, SmallVectorImpl< char > &buffer, bool *invalid=nullptr) const
Return the 'spelling' of the token at the given location; does not go up to the spelling location or ...
bool isCodeCompletionEnabled() const
Determine if we are performing code completion.
bool isCodeCompletionReached() const
Returns true if code-completion is enabled and we have hit the code-completion point.
SourceLocation getLocForEndOfToken(SourceLocation Loc, unsigned Offset=0)
Computes the source location just past the end of the token at this source location.
A (possibly-)qualified type.
Scope - A scope is a transient data structure that is used while parsing the program.
void Init(Scope *parent, unsigned flags)
Init - This is used by the parser to implement scope caching.
const Scope * getParent() const
getParent - Return the scope that this is nested in.
@ FunctionPrototypeScope
This is a scope that corresponds to the parameters within a function prototype.
@ CompoundStmtScope
This is a compound statement scope.
@ FunctionDeclarationScope
This is a scope that corresponds to the parameters within a function prototype for a function declara...
@ FnScope
This indicates that the scope corresponds to a function, which means that labels are set here.
@ DeclScope
This is a scope that can contain a declaration.
ParserCompletionContext
Describes the context in which code completion occurs.
@ PCC_TopLevelOrExpression
Code completion occurs at top-level in a REPL session.
@ PCC_Class
Code completion occurs within a class, struct, or union.
@ PCC_ObjCImplementation
Code completion occurs within an Objective-C implementation or category implementation.
@ PCC_Namespace
Code completion occurs at top-level or namespace context.
@ PCC_RecoveryInFunction
Code completion occurs within the body of a function on a recovery path, where we do not have a speci...
ExprResult getExpression() const
NameClassificationKind getKind() const
NamedDecl * getNonTypeDecl() const
TemplateName getTemplateName() const
ParsedType getType() const
TemplateNameKind getTemplateNameKind() const
Sema - This implements semantic analysis and AST building for C.
@ Interface
'export module X;'
@ Implementation
'module X;'
@ Other
C++26 [dcl.fct.def.general]p1 function-body: ctor-initializer[opt] compound-statement function-try-bl...
@ Delete
deleted-function-body
ModuleImportState
An enumeration to represent the transition of states in parsing module fragments and imports.
@ PrivateFragmentImportFinished
after 'module :private;' but a non-import decl has already been seen.
@ ImportFinished
after any non-import decl.
@ PrivateFragmentImportAllowed
after 'module :private;' but before any non-import decl.
@ FirstDecl
Parsing the first decl in a TU.
@ GlobalFragment
after 'module;' but before 'module X;'
@ NotACXX20Module
Not a C++20 TU, or an invalid state was found.
@ ImportAllowed
after 'module X;' but before any non-import decl.
@ ConstantEvaluated
The current context is "potentially evaluated" in C++11 terms, but the expression is evaluated at com...
Encodes a location in the source.
bool isValid() const
Return true if this is a valid SourceLocation object.
SourceLocation getLocWithOffset(IntTy Offset) const
Return a source location with the specified offset from this SourceLocation.
A trivial tuple used to represent a source range.
SourceLocation getEnd() const
SourceLocation getBegin() const
Represents a C++ template name within the type system.
Token - This structure provides full information about a lexed token.
SourceLocation getLocation() const
Return a source location identifier for the specified offset in the current file.
void setKind(tok::TokenKind K)
bool is(tok::TokenKind K) const
is/isNot - Predicates to check if this token is a specific kind, as in "if (Tok.is(tok::l_brace)) {....
void * getAnnotationValue() const
tok::TokenKind getKind() const
bool hasSeenNoTrivialPPDirective() const
bool isObjCObjectType() const
bool isObjCObjectPointerType() const
Represents a C++ unqualified-id that has been parsed.
void setIdentifier(const IdentifierInfo *Id, SourceLocation IdLoc)
Specify that this unqualified-id was parsed as an identifier.
std::variant< struct RequiresDecl, struct HeaderDecl, struct UmbrellaDirDecl, struct ModuleDecl, struct ExcludeDecl, struct ExportDecl, struct ExportAsDecl, struct ExternModuleDecl, struct UseDecl, struct LinkDecl, struct ConfigMacrosDecl, struct ConflictDecl > Decl
All declarations that can appear in a module declaration.
const char * getKeywordSpelling(TokenKind Kind) LLVM_READNONE
Determines the spelling of simple keyword and contextual keyword tokens like 'int' and 'dynamic_cast'...
TokenKind
Provides a simple uniform namespace for tokens from all C languages.
const char * getPunctuatorSpelling(TokenKind Kind) LLVM_READNONE
Determines the spelling of simple punctuation tokens like '!
Top level wrappers for InstallAPI frontend operations.
TypeSpecifierType
Specifies the kind of type.
MutableArrayRef< TemplateParameterList * > MultiTemplateParamsArg
ArrayRef< IdentifierLoc > ModuleIdPath
A sequence of identifier/location pairs used to describe a particular module or submodule,...
@ Unresolved
The identifier can't be resolved.
@ Success
Annotation was successful.
@ Error
Annotation has failed and emitted an error.
@ TentativeDecl
The identifier is a tentatively-declared name.
@ TemplateName
The identifier is a template name. FIXME: Add an annotation for that.
@ Self
'self' clause, allowed on Compute and Combined Constructs, plus 'update'.
AccessSpecifier
A C++ access specifier (public, private, protected), plus the special value "none" which means differ...
ActionResult< Decl * > DeclResult
nullptr
This class represents a compute construct, representing a 'Kind' of ‘parallel’, 'serial',...
@ Dependent
Parse the block as a dependent block, which may be used in some template instantiations but not other...
@ Skip
Skip the block entirely; this code is never used.
@ Parse
Parse the block; this code is always used.
@ Module
Module linkage, which indicates that the entity can be referred to from other translation units withi...
bool isLambdaCallOperator(const CXXMethodDecl *MD)
@ Result
The result type of a method or function.
ActionResult< ParsedType > TypeResult
const FunctionProtoType * T
@ Template
We are parsing a template declaration.
@ FunctionTemplate
The name was classified as a function template name.
@ Keyword
The name has been typo-corrected to a keyword.
@ DependentNonType
The name denotes a member of a dependent type that could not be resolved.
@ UndeclaredTemplate
The name was classified as an ADL-only function template name.
@ NonType
The name was classified as a specific non-type, non-template declaration.
@ Unknown
This name is not a type or template in this context, but might be something else.
@ Error
Classification failed; an error has been produced.
@ Type
The name was classified as a type.
@ TypeTemplate
The name was classified as a template whose specializations are types.
@ Concept
The name was classified as a concept name.
@ OverloadSet
The name was classified as an overload set, and an expression representing that overload set has been...
@ UndeclaredNonType
The name was classified as an ADL-only function name.
@ VarTemplate
The name was classified as a variable template name.
MutableArrayRef< ParsedTemplateArgument > ASTTemplateArgsPtr
ExtraSemiKind
The kind of extra semi diagnostic to emit.
@ AfterMemberFunctionDefinition
TemplateNameKind
Specifies the kind of template name that an identifier refers to.
@ TNK_Type_template
The name refers to a template whose specialization produces a type.
@ TNK_Undeclared_template
Lookup for the name failed, but we're assuming it was a template name anyway.
@ Dependent
The name is a dependent name, so the results will differ from one instantiation to the next.
@ Exists
The symbol exists.
@ Error
An error occurred.
@ DoesNotExist
The symbol does not exist.
U cast(CodeGen::Address addr)
SmallVector< Token, 4 > CachedTokens
A set of tokens that has been cached for later parsing.
OpaquePtr< QualType > ParsedType
An opaque type for threading parsed type information through the parser.
ParenParseOption
ParenParseOption - Control what ParseParenExpression will parse.
ActionResult< Expr * > ExprResult
@ Braces
New-expression has a C++11 list-initializer.
ParamInfo * Params
Params - This is a pointer to a new[]'d array of ParamInfo objects that describe the parameters speci...
unsigned NumParams
NumParams - This is the number of formal parameters specified by the declarator.
bool isKNRPrototype() const
isKNRPrototype - Return true if this is a K&R style identifier list, like "void foo(a,...
const IdentifierInfo * Ident
Information about a template-id annotation token.
const IdentifierInfo * Name
FIXME: Temporarily stores the name of a specialization.
TemplateNameKind Kind
The kind of template that Template refers to.
unsigned NumArgs
NumArgs - The number of template arguments.
SourceLocation TemplateNameLoc
TemplateNameLoc - The location of the template name within the source.
ParsedTemplateArgument * getTemplateArgs()
Retrieves a pointer to the template arguments.
SourceLocation RAngleLoc
The location of the '>' after the template argument list.
SourceLocation LAngleLoc
The location of the '<' before the template argument list.
SourceLocation TemplateKWLoc
TemplateKWLoc - The location of the template keyword.
bool mightBeType() const
Determine whether this might be a type template.
ParsedTemplateTy Template
The declaration of the template corresponding to the template-name.