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));
1852 Diag(
Tok, diag::ext_keyword_as_ident)
1856 Tok.getIdentifierInfo()->revertTokenIDToIdentifier();
1857 Tok.setKind(tok::identifier);
1863 assert((Tok.is(tok::identifier) || Tok.is(tok::coloncolon) ||
1864 Tok.is(tok::kw_typename) || Tok.is(tok::annot_cxxscope) ||
1865 Tok.is(tok::kw_decltype) || Tok.is(tok::annot_template_id) ||
1866 Tok.is(tok::kw___super) || Tok.is(tok::kw_auto) ||
1867 Tok.is(tok::annot_pack_indexing_type)) &&
1868 "Cannot be a type or scope token!");
1870 if (Tok.is(tok::kw_typename)) {
1879 PP.Lex(TypedefToken);
1881 PP.EnterToken(Tok,
true);
1884 Diag(Tok.getLocation(), diag::warn_expected_qualified_after_typename);
1896 if (ParseOptionalCXXScopeSpecifier(SS,
nullptr,
1902 if (Tok.is(tok::identifier) || Tok.is(tok::annot_template_id) ||
1903 Tok.is(tok::annot_decltype)) {
1905 if (Tok.is(tok::annot_decltype) ||
1907 Tok.isAnnotation())) {
1908 unsigned DiagID = diag::err_expected_qualified_after_typename;
1912 DiagID = diag::warn_expected_qualified_after_typename;
1913 Diag(Tok.getLocation(), DiagID);
1917 if (Tok.isEditorPlaceholder())
1920 Diag(Tok.getLocation(), diag::err_expected_qualified_after_typename);
1924 bool TemplateKWPresent =
false;
1925 if (Tok.is(tok::kw_template)) {
1927 TemplateKWPresent =
true;
1931 if (Tok.is(tok::identifier)) {
1933 Diag(Tok.getLocation(),
1934 diag::missing_template_arg_list_after_template_kw);
1937 Ty = Actions.ActOnTypenameType(
getCurScope(), TypenameLoc, SS,
1938 *Tok.getIdentifierInfo(),
1940 }
else if (Tok.is(tok::annot_template_id)) {
1943 Diag(Tok, diag::err_typename_refers_to_non_type_template)
1944 << Tok.getAnnotationRange();
1953 : Actions.ActOnTypenameType(
1957 TemplateArgsPtr, TemplateId->
RAngleLoc);
1959 Diag(Tok, diag::err_expected_type_name_after_typename)
1965 Tok.setKind(tok::annot_typename);
1966 setTypeAnnotation(Tok, Ty);
1967 Tok.setAnnotationEndLoc(EndLoc);
1968 Tok.setLocation(TypenameLoc);
1969 PP.AnnotateCachedTokens(Tok);
1974 bool WasScopeAnnotation = Tok.is(tok::annot_cxxscope);
1978 if (ParseOptionalCXXScopeSpecifier(
1982 IsAddressOfOperand))
1986 AllowImplicitTypename);
1992 if (Tok.is(tok::identifier)) {
1995 *Tok.getIdentifierInfo(), Tok.getLocation(),
getCurScope(), &SS,
1999 true, AllowImplicitTypename)) {
2004 QualType T = Actions.GetTypeFromParser(Ty);
2009 (T->isObjCObjectType() || T->isObjCObjectPointerType())) {
2019 else if (Tok.is(tok::eof))
2025 Tok.setKind(tok::annot_typename);
2026 setTypeAnnotation(Tok, Ty);
2027 Tok.setAnnotationEndLoc(Tok.getLocation());
2028 Tok.setLocation(BeginLoc);
2032 PP.AnnotateCachedTokens(Tok);
2049 TemplateName.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
2050 bool MemberOfUnknownSpecialization;
2055 MemberOfUnknownSpecialization)) {
2059 isTemplateArgumentList(1) != TPResult::False) {
2079 if (Tok.is(tok::annot_template_id)) {
2086 AnnotateTemplateIdTokenAsType(SS, AllowImplicitTypename);
2093 Tok.is(tok::coloncolon)) {
2102 AnnotateScopeToken(SS, IsNewScope);
2108 "Call sites of this function should be guarded by checking for C++");
2112 if (ParseOptionalCXXScopeSpecifier(SS,
nullptr,
2119 AnnotateScopeToken(SS,
true);
2123bool Parser::isTokenEqualOrEqualTypo() {
2129 case tok::starequal:
2130 case tok::plusequal:
2131 case tok::minusequal:
2132 case tok::exclaimequal:
2133 case tok::slashequal:
2134 case tok::percentequal:
2135 case tok::lessequal:
2136 case tok::lesslessequal:
2137 case tok::greaterequal:
2138 case tok::greatergreaterequal:
2139 case tok::caretequal:
2140 case tok::pipeequal:
2141 case tok::equalequal:
2142 Diag(
Tok, diag::err_invalid_token_after_declarator_suggest_equal)
2151SourceLocation Parser::handleUnexpectedCodeCompletionToken() {
2152 assert(Tok.is(tok::code_completion));
2153 PrevTokLocation = Tok.getLocation();
2156 if (S->isFunctionScope()) {
2158 Actions.CodeCompletion().CodeCompleteOrdinaryName(
2160 return PrevTokLocation;
2163 if (S->isClassScope()) {
2165 Actions.CodeCompletion().CodeCompleteOrdinaryName(
2167 return PrevTokLocation;
2172 Actions.CodeCompletion().CodeCompleteOrdinaryName(
2174 return PrevTokLocation;
2179void Parser::CodeCompleteDirective(
bool InConditional) {
2180 Actions.CodeCompletion().CodeCompletePreprocessorDirective(InConditional);
2184 Actions.CodeCompletion().CodeCompleteInPreprocessorConditionalExclusion(
2188void Parser::CodeCompleteMacroName(
bool IsDefinition) {
2189 Actions.CodeCompletion().CodeCompletePreprocessorMacroName(IsDefinition);
2193 Actions.CodeCompletion().CodeCompletePreprocessorExpression();
2196void Parser::CodeCompleteMacroArgument(IdentifierInfo *
Macro,
2197 MacroInfo *MacroInfo,
2198 unsigned ArgumentIndex) {
2199 Actions.CodeCompletion().CodeCompletePreprocessorMacroArgument(
2203void Parser::CodeCompleteIncludedFile(llvm::StringRef Dir,
bool IsAngled) {
2204 Actions.CodeCompletion().CodeCompleteIncludedFile(Dir, IsAngled);
2208 Actions.CodeCompletion().CodeCompleteNaturalLanguage();
2211void Parser::CodeCompleteModuleImport(SourceLocation ImportLoc,
2213 Actions.CodeCompletion().CodeCompleteModuleImport(ImportLoc, Path);
2216bool Parser::ParseMicrosoftIfExistsCondition(IfExistsCondition&
Result) {
2217 assert((Tok.is(tok::kw___if_exists) || Tok.is(tok::kw___if_not_exists)) &&
2218 "Expected '__if_exists' or '__if_not_exists'");
2219 Result.IsIfExists = Tok.is(tok::kw___if_exists);
2223 if (T.consumeOpen()) {
2224 Diag(Tok, diag::err_expected_lparen_after)
2225 << (
Result.IsIfExists?
"__if_exists" :
"__if_not_exists");
2231 ParseOptionalCXXScopeSpecifier(
Result.SS,
nullptr,
2236 if (
Result.SS.isInvalid()) {
2242 SourceLocation TemplateKWLoc;
2247 false, &TemplateKWLoc,
2253 if (T.consumeClose())
2281void Parser::ParseMicrosoftIfExistsExternalDeclaration() {
2282 IfExistsCondition
Result;
2283 if (ParseMicrosoftIfExistsCondition(
Result))
2287 if (
Braces.consumeOpen()) {
2288 Diag(Tok, diag::err_expected) << tok::l_brace;
2292 switch (
Result.Behavior) {
2298 llvm_unreachable(
"Cannot have a dependent external declaration");
2307 while (Tok.isNot(tok::r_brace) && !isEofOrEom()) {
2308 ParsedAttributes Attrs(AttrFactory);
2309 MaybeParseCXX11Attributes(Attrs);
2310 ParsedAttributes EmptyDeclSpecAttrs(AttrFactory);
2313 Actions.getASTConsumer().HandleTopLevelDecl(
Result.get());
2320 Token Introducer = Tok;
2321 SourceLocation StartLoc = Introducer.
getLocation();
2327 assert(Tok.is(tok::kw_module) &&
"not a module declaration");
2333 DiagnoseAndSkipCXX11Attributes();
2336 if (
getLangOpts().CPlusPlusModules && Tok.is(tok::semi)) {
2340 Diag(StartLoc, diag::err_global_module_introducer_not_at_start)
2341 << SourceRange(StartLoc, SemiLoc);
2345 Diag(StartLoc, diag::err_module_fragment_exported)
2349 return Actions.ActOnGlobalModuleFragmentDecl(ModuleLoc);
2353 if (
getLangOpts().CPlusPlusModules && Tok.is(tok::colon) &&
2356 Diag(StartLoc, diag::err_module_fragment_exported)
2361 DiagnoseAndSkipCXX11Attributes();
2362 ExpectAndConsumeSemi(diag::err_private_module_fragment_expected_semi);
2366 return Actions.ActOnPrivateModuleFragmentDecl(ModuleLoc, PrivateLoc);
2369 SmallVector<IdentifierLoc, 2> Path;
2370 if (ParseModuleName(ModuleLoc, Path,
false))
2374 SmallVector<IdentifierLoc, 2> Partition;
2375 if (Tok.is(tok::colon)) {
2378 Diag(ColonLoc, diag::err_unsupported_module_partition)
2379 << SourceRange(ColonLoc, Partition.back().getLoc());
2381 else if (ParseModuleName(ModuleLoc, Partition,
false))
2386 if (!Tok.isOneOf(tok::semi, tok::l_square))
2390 ParsedAttributes Attrs(AttrFactory);
2391 MaybeParseCXX11Attributes(Attrs);
2392 ProhibitCXX11Attributes(Attrs, diag::err_attribute_not_module_attr,
2393 diag::err_keyword_not_module_attr,
2397 if (ExpectAndConsumeSemi(diag::err_expected_semi_after_module_or_import,
2401 return Actions.ActOnModuleDecl(StartLoc, ModuleLoc, MDK, Path, Partition,
2406Decl *Parser::ParseModuleImport(SourceLocation AtLoc,
2408 SourceLocation StartLoc = AtLoc.
isInvalid() ? Tok.getLocation() : AtLoc;
2410 SourceLocation ExportLoc;
2413 assert((AtLoc.
isInvalid() ? Tok.is(tok::kw_import)
2414 : Tok.isObjCAtKeyword(tok::objc_import)) &&
2415 "Improper start to module import");
2416 bool IsObjCAtImport = Tok.isObjCAtKeyword(tok::objc_import);
2420 SmallVector<IdentifierLoc, 2> Path;
2421 bool IsPartition =
false;
2422 Module *HeaderUnit =
nullptr;
2423 if (Tok.is(tok::header_name)) {
2428 }
else if (Tok.is(tok::annot_header_unit)) {
2430 HeaderUnit =
reinterpret_cast<Module *
>(Tok.getAnnotationValue());
2431 ConsumeAnnotationToken();
2432 }
else if (Tok.is(tok::colon)) {
2435 Diag(ColonLoc, diag::err_unsupported_module_partition)
2436 << SourceRange(ColonLoc, Path.back().getLoc());
2438 else if (ParseModuleName(ColonLoc, Path,
true))
2443 if (ParseModuleName(ImportLoc, Path,
true))
2447 ParsedAttributes Attrs(AttrFactory);
2448 MaybeParseCXX11Attributes(Attrs);
2450 ProhibitCXX11Attributes(Attrs, diag::err_attribute_not_import_attr,
2451 diag::err_keyword_not_import_attr,
2458 bool IsCXX20NamedModuleImport =
2459 getLangOpts().CPlusPlusModules && !IsObjCAtImport && !Path.empty();
2461 if (PP.hadModuleLoaderFatalFailure() && !IsCXX20NamedModuleImport) {
2468 bool SeenError =
true;
2469 switch (ImportState) {
2481 Diag(ImportLoc, diag::err_partition_import_outside_module);
2493 if (IsPartition || (HeaderUnit && HeaderUnit->
Kind !=
2495 Diag(ImportLoc, diag::err_import_in_wrong_fragment)
2504 Diag(ImportLoc, diag::err_import_not_allowed_here);
2510 bool LexedSemi =
false;
2513 !ExpectAndConsumeSemi(diag::err_expected_semi_after_module_or_import,
2516 LexedSemi = !ExpectAndConsumeSemi(diag::err_module_expected_semi);
2527 Actions.ActOnModuleImport(StartLoc, ExportLoc, ImportLoc, HeaderUnit);
2528 else if (!Path.empty())
2529 Import = Actions.ActOnModuleImport(StartLoc, ExportLoc, ImportLoc, Path,
2536 if (IsObjCAtImport && AtLoc.
isValid()) {
2537 auto &SrcMgr = PP.getSourceManager();
2538 auto FE = SrcMgr.getFileEntryRefForID(SrcMgr.getFileID(AtLoc));
2539 if (FE && llvm::sys::path::parent_path(FE->getDir().getName())
2540 .ends_with(
".framework"))
2541 Diags.Report(AtLoc, diag::warn_atimport_in_framework_header);
2547bool Parser::ParseModuleName(SourceLocation UseLoc,
2548 SmallVectorImpl<IdentifierLoc> &Path,
2550 if (Tok.isNot(tok::annot_module_name)) {
2554 ModuleNameLoc *NameLoc =
2555 static_cast<ModuleNameLoc *
>(Tok.getAnnotationValue());
2558 ConsumeAnnotationToken();
2562bool Parser::parseMisplacedModuleImport() {
2564 switch (Tok.getKind()) {
2565 case tok::annot_module_end:
2569 if (MisplacedModuleBeginCount) {
2570 --MisplacedModuleBeginCount;
2571 Actions.ActOnAnnotModuleEnd(
2573 reinterpret_cast<Module *
>(Tok.getAnnotationValue()));
2574 ConsumeAnnotationToken();
2581 case tok::annot_module_begin:
2583 Actions.ActOnAnnotModuleBegin(
2585 reinterpret_cast<Module *
>(Tok.getAnnotationValue()));
2586 ConsumeAnnotationToken();
2587 ++MisplacedModuleBeginCount;
2589 case tok::annot_module_include:
2592 Actions.ActOnAnnotModuleInclude(
2594 reinterpret_cast<Module *
>(Tok.getAnnotationValue()));
2595 ConsumeAnnotationToken();
2605void Parser::diagnoseUseOfC11Keyword(
const Token &Tok) {
2610 : diag::ext_c11_feature)
2614bool BalancedDelimiterTracker::diagnoseOverflow() {
2615 P.Diag(P.Tok, diag::err_bracket_depth_exceeded)
2616 << P.getLangOpts().BracketDepth;
2617 P.Diag(P.Tok, diag::note_bracket_depth);
2625 LOpen = P.Tok.getLocation();
2626 if (P.ExpectAndConsume(Kind, DiagID, Msg)) {
2627 if (SkipToTok != tok::unknown)
2632 if (getDepth() < P.getLangOpts().BracketDepth)
2635 return diagnoseOverflow();
2638bool BalancedDelimiterTracker::diagnoseMissingClose() {
2639 assert(!P.Tok.is(Close) &&
"Should have consumed closing delimiter");
2641 if (P.Tok.is(tok::annot_module_end))
2642 P.Diag(P.Tok, diag::err_missing_before_module_end) << Close;
2644 P.Diag(P.Tok, diag::err_expected) << Close;
2645 P.Diag(LOpen, diag::note_matching) << Kind;
2649 if (P.Tok.isNot(tok::r_paren) && P.Tok.isNot(tok::r_brace) &&
2650 P.Tok.isNot(tok::r_square) &&
2651 P.SkipUntil(Close, FinalToken,
2654 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.
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 '!
The JSON file list parser is used to communicate input to InstallAPI.
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
@ 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.