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);
971 DiagCompat(ExternLoc, diag_compat::extern_template)
972 << SourceRange(ExternLoc, TemplateLoc);
973 SourceLocation DeclEnd;
975 TemplateLoc, DeclEnd, Attrs);
979 case tok::kw___if_exists:
980 case tok::kw___if_not_exists:
981 ParseMicrosoftIfExistsExternalDeclaration();
985 Diag(Tok, diag::err_unexpected_module_or_import_decl) <<
false;
991 if (Tok.isEditorPlaceholder()) {
996 !isDeclarationStatement(
true))
997 return ParseTopLevelStmtDecl();
1001 return ParseDeclarationOrFunctionDefinition(Attrs, DeclSpecAttrs, DS);
1006 return Actions.ConvertDeclToDeclGroup(SingleDecl);
1009bool Parser::isDeclarationAfterDeclarator() {
1013 if (KW.
is(tok::kw_default) || KW.
is(tok::kw_delete))
1017 return Tok.is(tok::equal) ||
1018 Tok.is(tok::comma) ||
1019 Tok.is(tok::semi) ||
1020 Tok.is(tok::kw_asm) ||
1021 Tok.is(tok::kw___attribute) ||
1023 Tok.is(tok::l_paren));
1026bool Parser::isStartOfFunctionDefinition(
const ParsingDeclarator &Declarator) {
1027 assert(
Declarator.isFunctionDeclarator() &&
"Isn't a function declarator");
1028 if (Tok.is(tok::l_brace))
1033 Declarator.getFunctionTypeInfo().isKNRPrototype())
1038 return KW.
is(tok::kw_default) || KW.
is(tok::kw_delete);
1041 return Tok.is(tok::colon) ||
1042 Tok.is(tok::kw_try);
1046 ParsedAttributes &Attrs, ParsedAttributes &DeclSpecAttrs,
1052 "expected uninitialised source range");
1057 ParsedTemplateInfo TemplateInfo;
1060 ParseDeclarationSpecifiers(DS, TemplateInfo, AS,
1061 DeclSpecContext::DSC_top_level);
1066 DS, AS, DeclSpecContext::DSC_top_level))
1071 if (Tok.is(tok::semi)) {
1074 SourceLocation CorrectLocationForAttributes{};
1078 if (
const auto *ED = dyn_cast_or_null<EnumDecl>(DS.
getRepAsDecl())) {
1079 CorrectLocationForAttributes =
1080 PP.getLocForEndOfToken(ED->getEnumKeyRange().getEnd());
1083 if (CorrectLocationForAttributes.
isInvalid()) {
1084 const auto &Policy = Actions.getASTContext().getPrintingPolicy();
1087 CorrectLocationForAttributes =
1091 ProhibitAttributes(Attrs, CorrectLocationForAttributes);
1093 RecordDecl *AnonRecord =
nullptr;
1094 Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(
1097 Actions.ActOnDefinedDeclarationSpecifier(TheDecl);
1099 Decl* decls[] = {AnonRecord, TheDecl};
1100 return Actions.BuildDeclaratorGroup(decls);
1102 return Actions.ConvertDeclToDeclGroup(TheDecl);
1106 Actions.ActOnDefinedDeclarationSpecifier(DS.
getRepAsDecl());
1113 if (!Tok.isObjCAtKeyword(tok::objc_interface) &&
1114 !Tok.isObjCAtKeyword(tok::objc_protocol) &&
1115 !Tok.isObjCAtKeyword(tok::objc_implementation)) {
1116 Diag(Tok, diag::err_objc_unexpected_attr);
1124 const char *PrevSpec =
nullptr;
1127 Actions.getASTContext().getPrintingPolicy()))
1128 Diag(AtLoc, DiagID) << PrevSpec;
1130 if (Tok.isObjCAtKeyword(tok::objc_protocol))
1131 return ParseObjCAtProtocolDeclaration(AtLoc, DS.
getAttributes());
1133 if (Tok.isObjCAtKeyword(tok::objc_implementation))
1134 return ParseObjCAtImplementationDeclaration(AtLoc, DS.
getAttributes());
1136 return Actions.ConvertDeclToDeclGroup(
1137 ParseObjCAtInterfaceDeclaration(AtLoc, DS.
getAttributes()));
1146 ProhibitAttributes(Attrs);
1148 return Actions.ConvertDeclToDeclGroup(TheDecl);
1155 ParsedAttributes &Attrs, ParsedAttributes &DeclSpecAttrs,
1159 llvm::TimeTraceScope TimeScope(
"ParseDeclarationOrFunctionDefinition", [&]() {
1160 return Tok.getLocation().printToString(
1161 Actions.getASTContext().getSourceManager());
1165 return ParseDeclOrFunctionDefInternal(Attrs, DeclSpecAttrs, *DS, AS);
1167 ParsingDeclSpec PDS(*
this);
1171 ObjCDeclContextSwitch ObjCDC(*
this);
1173 return ParseDeclOrFunctionDefInternal(Attrs, DeclSpecAttrs, PDS, AS);
1177Decl *Parser::ParseFunctionDefinition(ParsingDeclarator &D,
1178 const ParsedTemplateInfo &TemplateInfo,
1179 LateParsedAttrList *LateParsedAttrs) {
1180 llvm::TimeTraceScope TimeScope(
"ParseFunctionDefinition", [&]() {
1181 return Actions.GetNameForDeclarator(D).getName().getAsString();
1187 TemplateParameterDepthRAII CurTemplateDepthTracker(TemplateParameterDepth);
1196 const char *PrevSpec;
1198 const PrintingPolicy &Policy = Actions.getASTContext().getPrintingPolicy();
1210 ParseKNRParamDeclarations(D);
1214 if (Tok.isNot(tok::l_brace) &&
1216 (Tok.isNot(tok::colon) && Tok.isNot(tok::kw_try) &&
1217 Tok.isNot(tok::equal)))) {
1218 Diag(Tok, diag::err_expected_fn_body);
1224 if (Tok.isNot(tok::l_brace))
1230 if (Tok.isNot(tok::equal)) {
1232 if (AL.isKnownToGCC() && !AL.isStandardAttributeSyntax())
1233 Diag(AL.getLoc(), diag::warn_attribute_on_function_definition) << AL;
1238 if (
getLangOpts().DelayedTemplateParsing && Tok.isNot(tok::equal) &&
1240 LateParsedAttrs->empty() && Actions.canDelayFunctionBody(D)) {
1248 Decl *DP = Actions.HandleDeclarator(ParentScope, D,
1253 if (SkipFunctionBodies && (!DP || Actions.canSkipFunctionBody(DP)) &&
1254 trySkippingFunctionBody()) {
1256 return Actions.ActOnSkippedFunctionBody(DP);
1260 LexTemplateFunctionForLateParsing(Toks);
1264 Actions.CheckForFunctionRedefinition(FnD);
1265 Actions.MarkAsLateParsedTemplate(FnD, DP, Toks);
1269 if (CurParsedObjCImpl && !TemplateInfo.TemplateParams &&
1270 (Tok.is(tok::l_brace) || Tok.is(tok::kw_try) || Tok.is(tok::colon)) &&
1271 Actions.CurContext->isTranslationUnit()) {
1277 Decl *FuncDecl = Actions.HandleDeclarator(ParentScope, D,
1283 StashAwayMethodOrFunctionBodyTokens(FuncDecl);
1284 CurParsedObjCImpl->HasCFunction =
true;
1296 StringLiteral *DeletedMessage =
nullptr;
1298 SourceLocation KWLoc;
1303 DiagCompat(KWLoc, diag_compat::defaulted_deleted_function)
1306 DeletedMessage = ParseCXXDeletedFunctionMessage();
1309 DiagCompat(KWLoc, diag_compat::defaulted_deleted_function)
1314 llvm_unreachable(
"function definition after = not 'delete' or 'default'");
1317 if (Tok.is(tok::comma)) {
1318 Diag(KWLoc, diag::err_default_delete_in_multiple_declaration)
1321 }
else if (ExpectAndConsume(tok::semi, diag::err_expected_after,
1329 Sema::FPFeaturesStateRAII SaveFPFeatures(Actions);
1333 SkipBodyInfo SkipBody;
1335 TemplateInfo.TemplateParams
1336 ? *TemplateInfo.TemplateParams
1338 &SkipBody, BodyKind);
1355 Actions.PopExpressionEvaluationContext();
1367 Actions.SetFunctionBodyKind(Res, KWLoc, BodyKind, DeletedMessage);
1368 Stmt *GeneratedBody = Res ? Res->
getBody() :
nullptr;
1369 Actions.ActOnFinishFunctionBody(Res, GeneratedBody,
false);
1375 if (
const auto *
Template = dyn_cast_if_present<FunctionTemplateDecl>(Res);
1377 Template->getTemplateParameters()->getParam(0)->isImplicit())
1380 CurTemplateDepthTracker.addDepth(1);
1383 if (LateParsedAttrs)
1384 ParseLexedAttributeList(*LateParsedAttrs, Res,
false,
1387 if (SkipFunctionBodies && (!Res || Actions.canSkipFunctionBody(Res)) &&
1388 trySkippingFunctionBody()) {
1390 Actions.ActOnSkippedFunctionBody(Res);
1391 return Actions.ActOnFinishFunctionBody(Res,
nullptr,
false);
1394 return ParseFunctionBody(Res, BodyScope);
1398 if (Tok.is(tok::kw_try))
1399 return ParseFunctionTryBlock(D, BodyScope);
1403 if (Tok.is(tok::colon)) {
1404 ParseConstructorInitializer(D);
1407 if (!Tok.is(tok::l_brace)) {
1411 Actions.ActOnFinishFunctionBody(D,
nullptr);
1415 Actions.ActOnDefaultCtorInitializers(D);
1417 return ParseFunctionStatementBody(D, BodyScope);
1420void Parser::SkipFunctionBody() {
1421 if (Tok.is(tok::equal)) {
1426 bool IsFunctionTryBlock = Tok.is(tok::kw_try);
1427 if (IsFunctionTryBlock)
1431 if (ConsumeAndStoreFunctionPrologue(Skipped))
1435 while (IsFunctionTryBlock && Tok.is(tok::kw_catch)) {
1442void Parser::ParseKNRParamDeclarations(Declarator &D) {
1453 SourceLocation DSStart = Tok.getLocation();
1456 DeclSpec DS(AttrFactory);
1457 ParsedTemplateInfo TemplateInfo;
1458 ParseDeclarationSpecifiers(DS, TemplateInfo);
1466 Diag(DSStart, diag::err_declaration_does_not_declare_param);
1475 diag::err_invalid_storage_class_in_func_decl);
1480 diag::err_invalid_storage_class_in_func_decl);
1487 ParseDeclarator(ParmDeclarator);
1492 MaybeParseGNUAttributes(ParmDeclarator);
1496 Actions.ActOnParamDeclarator(
getCurScope(), ParmDeclarator);
1500 ParmDeclarator.getIdentifier()) {
1504 for (
unsigned i = 0; ; ++i) {
1508 Diag(ParmDeclarator.getIdentifierLoc(), diag::err_no_matching_param)
1509 << ParmDeclarator.getIdentifier();
1513 if (FTI.
Params[i].
Ident == ParmDeclarator.getIdentifier()) {
1516 Diag(ParmDeclarator.getIdentifierLoc(),
1517 diag::err_param_redefinition)
1518 << ParmDeclarator.getIdentifier();
1529 if (Tok.isNot(tok::comma))
1532 ParmDeclarator.clear();
1538 ParseDeclarator(ParmDeclarator);
1542 if (!ExpectAndConsumeSemi(diag::err_expected_semi_declaration))
1552 Actions.ActOnFinishKNRParamDeclarations(
getCurScope(), D, Tok.getLocation());
1555ExprResult Parser::ParseAsmStringLiteral(
bool ForAsmLabel) {
1558 if (isTokenStringLiteral()) {
1564 if (!SL->isOrdinary()) {
1565 Diag(Tok, diag::err_asm_operand_wide_string_literal)
1566 << SL->isWide() << SL->getSourceRange();
1570 Tok.is(tok::l_paren)) {
1572 SourceLocation RParenLoc;
1575 EnterExpressionEvaluationContext ConstantEvaluated(
1577 AsmString = ParseParenExpression(
1581 AsmString = Actions.ActOnConstantExpression(AsmString);
1586 Diag(Tok, diag::err_asm_expected_string) << (
1587 (
getLangOpts().CPlusPlus11 && !ForAsmLabel) ? 0 : 1);
1590 return Actions.ActOnGCCAsmStmtString(AsmString.
get(), ForAsmLabel);
1593ExprResult Parser::ParseSimpleAsm(
bool ForAsmLabel, SourceLocation *EndLoc) {
1594 assert(Tok.is(tok::kw_asm) &&
"Not an asm!");
1597 if (isGNUAsmQualifier(Tok)) {
1599 SourceRange RemovalRange(PP.getLocForEndOfToken(Loc),
1600 PP.getLocForEndOfToken(Tok.getLocation()));
1601 Diag(Tok, diag::err_global_asm_qualifier_ignored)
1602 << GNUAsmQualifiers::getQualifierName(getGNUAsmQualifier(Tok))
1608 if (
T.consumeOpen()) {
1609 Diag(Tok, diag::err_expected_lparen_after) <<
"asm";
1615 if (!
Result.isInvalid()) {
1619 *EndLoc =
T.getCloseLocation();
1622 *EndLoc = Tok.getLocation();
1629TemplateIdAnnotation *Parser::takeTemplateIdAnnotation(
const Token &tok) {
1630 assert(tok.
is(tok::annot_template_id) &&
"Expected template-id token");
1631 TemplateIdAnnotation *
1636void Parser::AnnotateScopeToken(CXXScopeSpec &SS,
bool IsNewAnnotation) {
1639 if (PP.isBacktrackEnabled())
1640 PP.RevertCachedTokens(1);
1642 PP.EnterToken(Tok,
true);
1643 Tok.setKind(tok::annot_cxxscope);
1644 Tok.setAnnotationValue(Actions.SaveNestedNameSpecifierAnnotation(SS));
1645 Tok.setAnnotationRange(SS.
getRange());
1650 if (IsNewAnnotation)
1651 PP.AnnotateCachedTokens(Tok);
1655Parser::TryAnnotateName(CorrectionCandidateCallback *CCC,
1657 assert(Tok.is(tok::identifier) || Tok.is(tok::annot_cxxscope));
1659 const bool EnteringContext =
false;
1660 const bool WasScopeAnnotation = Tok.is(tok::annot_cxxscope);
1664 ParseOptionalCXXScopeSpecifier(SS,
nullptr,
1669 if (Tok.isNot(tok::identifier) || SS.
isInvalid()) {
1671 AllowImplicitTypename))
1676 IdentifierInfo *Name = Tok.getIdentifierInfo();
1677 SourceLocation NameLoc = Tok.getLocation();
1681 if (isTentativelyDeclared(Name) && SS.
isEmpty()) {
1685 AllowImplicitTypename))
1697 Sema::NameClassification Classification = Actions.ClassifyName(
1705 isTemplateArgumentList(1) == TPResult::False) {
1707 Token FakeNext =
Next;
1708 FakeNext.
setKind(tok::unknown);
1710 Actions.ClassifyName(
getCurScope(), SS, Name, NameLoc, FakeNext,
1711 SS.
isEmpty() ? CCC :
nullptr);
1714 switch (Classification.
getKind()) {
1720 Tok.setIdentifierInfo(Name);
1722 PP.TypoCorrectToken(Tok);
1724 AnnotateScopeToken(SS, !WasScopeAnnotation);
1733 if (TryAltiVecVectorToken())
1738 SourceLocation BeginLoc = NameLoc;
1745 QualType
T = Actions.GetTypeFromParser(Ty);
1750 SourceLocation NewEndLoc;
1752 = parseObjCTypeArgsAndProtocolQualifiers(IdentifierLoc, Ty,
1757 else if (Tok.is(tok::eof))
1761 Tok.setKind(tok::annot_typename);
1762 setTypeAnnotation(Tok, Ty);
1763 Tok.setAnnotationEndLoc(Tok.getLocation());
1764 Tok.setLocation(BeginLoc);
1765 PP.AnnotateCachedTokens(Tok);
1770 Tok.setKind(tok::annot_overload_set);
1772 Tok.setAnnotationEndLoc(NameLoc);
1775 PP.AnnotateCachedTokens(Tok);
1779 if (TryAltiVecVectorToken())
1784 Tok.setKind(tok::annot_non_type);
1786 Tok.setLocation(NameLoc);
1787 Tok.setAnnotationEndLoc(NameLoc);
1788 PP.AnnotateCachedTokens(Tok);
1790 AnnotateScopeToken(SS, !WasScopeAnnotation);
1795 Tok.setKind(Classification.
getKind() ==
1797 ? tok::annot_non_type_undeclared
1798 : tok::annot_non_type_dependent);
1799 setIdentifierAnnotation(Tok, Name);
1800 Tok.setLocation(NameLoc);
1801 Tok.setAnnotationEndLoc(NameLoc);
1802 PP.AnnotateCachedTokens(Tok);
1804 AnnotateScopeToken(SS, !WasScopeAnnotation);
1808 if (
Next.isNot(tok::less)) {
1812 AnnotateScopeToken(SS, !WasScopeAnnotation);
1820 bool IsConceptName =
1826 if (
Next.is(tok::less))
1828 if (AnnotateTemplateIdToken(
1835 AnnotateScopeToken(SS, !WasScopeAnnotation);
1842 AnnotateScopeToken(SS, !WasScopeAnnotation);
1847 SourceLocation TokenEndLoc = PP.getLocForEndOfToken(PrevTokLocation);
1848 return TokenEndLoc.
isValid() ? TokenEndLoc : Tok.getLocation();
1851bool Parser::TryKeywordIdentFallback(
bool DisableKeyword) {
1852 assert(
Tok.isNot(tok::identifier));
1858 Tok.setKind(tok::identifier);
1862 Diag(
Tok, diag::ext_keyword_as_ident)
1867 Tok.setKind(tok::identifier);
1873 assert((Tok.is(tok::identifier) || Tok.is(tok::coloncolon) ||
1874 Tok.is(tok::kw_typename) || Tok.is(tok::annot_cxxscope) ||
1875 Tok.is(tok::kw_decltype) || Tok.is(tok::annot_template_id) ||
1876 Tok.is(tok::kw___super) || Tok.is(tok::kw_auto) ||
1877 Tok.is(tok::annot_pack_indexing_type)) &&
1878 "Cannot be a type or scope token!");
1880 if (Tok.is(tok::kw_typename)) {
1889 PP.Lex(TypedefToken);
1891 PP.EnterToken(Tok,
true);
1894 Diag(Tok.getLocation(), diag::warn_expected_qualified_after_typename);
1906 if (ParseOptionalCXXScopeSpecifier(SS,
nullptr,
1912 if (Tok.is(tok::identifier) || Tok.is(tok::annot_template_id) ||
1913 Tok.is(tok::annot_decltype)) {
1915 if (Tok.is(tok::annot_decltype) ||
1917 Tok.isAnnotation())) {
1918 unsigned DiagID = diag::err_expected_qualified_after_typename;
1922 DiagID = diag::warn_expected_qualified_after_typename;
1923 Diag(Tok.getLocation(), DiagID);
1927 if (Tok.isEditorPlaceholder())
1930 Diag(Tok.getLocation(), diag::err_expected_qualified_after_typename);
1934 bool TemplateKWPresent =
false;
1935 if (Tok.is(tok::kw_template)) {
1937 TemplateKWPresent =
true;
1941 if (Tok.is(tok::identifier)) {
1943 Diag(Tok.getLocation(),
1944 diag::missing_template_arg_list_after_template_kw);
1947 Ty = Actions.ActOnTypenameType(
getCurScope(), TypenameLoc, SS,
1948 *Tok.getIdentifierInfo(),
1950 }
else if (Tok.is(tok::annot_template_id)) {
1953 Diag(Tok, diag::err_typename_refers_to_non_type_template)
1954 << Tok.getAnnotationRange();
1963 : Actions.ActOnTypenameType(
1967 TemplateArgsPtr, TemplateId->
RAngleLoc);
1969 Diag(Tok, diag::err_expected_type_name_after_typename)
1975 Tok.setKind(tok::annot_typename);
1976 setTypeAnnotation(Tok, Ty);
1977 Tok.setAnnotationEndLoc(EndLoc);
1978 Tok.setLocation(TypenameLoc);
1979 PP.AnnotateCachedTokens(Tok);
1984 bool WasScopeAnnotation = Tok.is(tok::annot_cxxscope);
1988 if (ParseOptionalCXXScopeSpecifier(
1992 IsAddressOfOperand))
1996 AllowImplicitTypename);
2002 if (Tok.is(tok::identifier)) {
2005 *Tok.getIdentifierInfo(), Tok.getLocation(),
getCurScope(), &SS,
2009 true, AllowImplicitTypename)) {
2014 QualType T = Actions.GetTypeFromParser(Ty);
2019 (
T->isObjCObjectType() ||
T->isObjCObjectPointerType())) {
2029 else if (Tok.is(tok::eof))
2035 Tok.setKind(tok::annot_typename);
2036 setTypeAnnotation(Tok, Ty);
2037 Tok.setAnnotationEndLoc(Tok.getLocation());
2038 Tok.setLocation(BeginLoc);
2042 PP.AnnotateCachedTokens(Tok);
2059 TemplateName.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
2060 bool MemberOfUnknownSpecialization;
2065 MemberOfUnknownSpecialization)) {
2069 isTemplateArgumentList(1) != TPResult::False) {
2089 if (Tok.is(tok::annot_template_id)) {
2096 AnnotateTemplateIdTokenAsType(SS, AllowImplicitTypename);
2103 Tok.is(tok::coloncolon)) {
2112 AnnotateScopeToken(SS, IsNewScope);
2118 "Call sites of this function should be guarded by checking for C++");
2122 if (ParseOptionalCXXScopeSpecifier(SS,
nullptr,
2129 AnnotateScopeToken(SS,
true);
2133bool Parser::isTokenEqualOrEqualTypo() {
2139 case tok::starequal:
2140 case tok::plusequal:
2141 case tok::minusequal:
2142 case tok::exclaimequal:
2143 case tok::slashequal:
2144 case tok::percentequal:
2145 case tok::lessequal:
2146 case tok::lesslessequal:
2147 case tok::greaterequal:
2148 case tok::greatergreaterequal:
2149 case tok::caretequal:
2150 case tok::pipeequal:
2151 case tok::equalequal:
2152 Diag(
Tok, diag::err_invalid_token_after_declarator_suggest_equal)
2161SourceLocation Parser::handleUnexpectedCodeCompletionToken() {
2162 assert(Tok.is(tok::code_completion));
2163 PrevTokLocation = Tok.getLocation();
2166 if (S->isFunctionScope()) {
2168 Actions.CodeCompletion().CodeCompleteOrdinaryName(
2170 return PrevTokLocation;
2173 if (S->isClassScope()) {
2175 Actions.CodeCompletion().CodeCompleteOrdinaryName(
2177 return PrevTokLocation;
2182 Actions.CodeCompletion().CodeCompleteOrdinaryName(
2184 return PrevTokLocation;
2189void Parser::CodeCompleteDirective(
bool InConditional) {
2190 Actions.CodeCompletion().CodeCompletePreprocessorDirective(InConditional);
2194 Actions.CodeCompletion().CodeCompleteInPreprocessorConditionalExclusion(
2198void Parser::CodeCompleteMacroName(
bool IsDefinition) {
2199 Actions.CodeCompletion().CodeCompletePreprocessorMacroName(IsDefinition);
2203 Actions.CodeCompletion().CodeCompletePreprocessorExpression();
2206void Parser::CodeCompleteMacroArgument(IdentifierInfo *
Macro,
2207 MacroInfo *MacroInfo,
2208 unsigned ArgumentIndex) {
2209 Actions.CodeCompletion().CodeCompletePreprocessorMacroArgument(
2213void Parser::CodeCompleteIncludedFile(llvm::StringRef Dir,
bool IsAngled) {
2214 Actions.CodeCompletion().CodeCompleteIncludedFile(Dir, IsAngled);
2218 Actions.CodeCompletion().CodeCompleteNaturalLanguage();
2221void Parser::CodeCompleteModuleImport(SourceLocation ImportLoc,
2223 Actions.CodeCompletion().CodeCompleteModuleImport(ImportLoc, Path);
2226bool Parser::ParseMicrosoftIfExistsCondition(IfExistsCondition&
Result) {
2227 assert((Tok.is(tok::kw___if_exists) || Tok.is(tok::kw___if_not_exists)) &&
2228 "Expected '__if_exists' or '__if_not_exists'");
2229 Result.IsIfExists = Tok.is(tok::kw___if_exists);
2233 if (
T.consumeOpen()) {
2234 Diag(Tok, diag::err_expected_lparen_after)
2235 << (
Result.IsIfExists?
"__if_exists" :
"__if_not_exists");
2241 ParseOptionalCXXScopeSpecifier(
Result.SS,
nullptr,
2246 if (
Result.SS.isInvalid()) {
2252 SourceLocation TemplateKWLoc;
2257 false, &TemplateKWLoc,
2263 if (
T.consumeClose())
2291void Parser::ParseMicrosoftIfExistsExternalDeclaration() {
2292 IfExistsCondition
Result;
2293 if (ParseMicrosoftIfExistsCondition(
Result))
2297 if (
Braces.consumeOpen()) {
2298 Diag(Tok, diag::err_expected) << tok::l_brace;
2302 switch (
Result.Behavior) {
2308 llvm_unreachable(
"Cannot have a dependent external declaration");
2317 while (Tok.isNot(tok::r_brace) && !isEofOrEom()) {
2318 ParsedAttributes Attrs(AttrFactory);
2319 MaybeParseCXX11Attributes(Attrs);
2320 ParsedAttributes EmptyDeclSpecAttrs(AttrFactory);
2323 Actions.getASTConsumer().HandleTopLevelDecl(
Result.get());
2330 Token Introducer = Tok;
2331 SourceLocation StartLoc = Introducer.
getLocation();
2337 assert(Tok.is(tok::kw_module) &&
"not a module declaration");
2343 DiagnoseAndSkipCXX11Attributes();
2346 if (
getLangOpts().CPlusPlusModules && Tok.is(tok::semi)) {
2350 Diag(StartLoc, diag::err_global_module_introducer_not_at_start)
2351 << SourceRange(StartLoc, SemiLoc);
2355 Diag(StartLoc, diag::err_module_fragment_exported)
2359 return Actions.ActOnGlobalModuleFragmentDecl(ModuleLoc);
2363 if (
getLangOpts().CPlusPlusModules && Tok.is(tok::colon) &&
2366 Diag(StartLoc, diag::err_module_fragment_exported)
2371 DiagnoseAndSkipCXX11Attributes();
2372 ExpectAndConsumeSemi(diag::err_private_module_fragment_expected_semi);
2376 return Actions.ActOnPrivateModuleFragmentDecl(ModuleLoc, PrivateLoc);
2379 SmallVector<IdentifierLoc, 2> Path;
2380 if (ParseModuleName(ModuleLoc, Path,
false))
2384 SmallVector<IdentifierLoc, 2> Partition;
2385 if (Tok.is(tok::colon)) {
2388 Diag(ColonLoc, diag::err_unsupported_module_partition)
2389 << SourceRange(ColonLoc, Partition.back().getLoc());
2391 else if (ParseModuleName(ModuleLoc, Partition,
false))
2395 if (Tok.isNoneOf(tok::semi, tok::l_square, tok::eof)) {
2396 Diag(Tok, diag::err_unexpected_tok_after_module_name)
2397 << PP.getSpelling(Tok);
2402 ParsedAttributes Attrs(AttrFactory);
2403 MaybeParseCXX11Attributes(Attrs);
2404 ProhibitCXX11Attributes(Attrs, diag::err_attribute_not_module_attr,
2405 diag::err_keyword_not_module_attr,
2409 if (ExpectAndConsumeSemi(diag::err_expected_semi_after_module_or_import,
2413 return Actions.ActOnModuleDecl(StartLoc, ModuleLoc, MDK, Path, Partition,
2418Decl *Parser::ParseModuleImport(SourceLocation AtLoc,
2420 SourceLocation StartLoc = AtLoc.
isInvalid() ? Tok.getLocation() : AtLoc;
2422 SourceLocation ExportLoc;
2425 assert((AtLoc.
isInvalid() ? Tok.is(tok::kw_import)
2426 : Tok.isObjCAtKeyword(tok::objc_import)) &&
2427 "Improper start to module import");
2428 bool IsObjCAtImport = Tok.isObjCAtKeyword(tok::objc_import);
2432 SmallVector<IdentifierLoc, 2> Path;
2433 bool IsPartition =
false;
2434 Module *HeaderUnit =
nullptr;
2435 if (Tok.is(tok::header_name)) {
2440 }
else if (Tok.is(tok::annot_header_unit)) {
2442 HeaderUnit =
reinterpret_cast<Module *
>(Tok.getAnnotationValue());
2443 ConsumeAnnotationToken();
2444 }
else if (Tok.is(tok::colon)) {
2447 Diag(ColonLoc, diag::err_unsupported_module_partition)
2448 << SourceRange(ColonLoc, Path.back().getLoc());
2450 else if (ParseModuleName(ColonLoc, Path,
true))
2455 if (ParseModuleName(ImportLoc, Path,
true))
2459 ParsedAttributes Attrs(AttrFactory);
2460 MaybeParseCXX11Attributes(Attrs);
2462 ProhibitCXX11Attributes(Attrs, diag::err_attribute_not_import_attr,
2463 diag::err_keyword_not_import_attr,
2470 bool IsCXX20NamedModuleImport =
2471 getLangOpts().CPlusPlusModules && !IsObjCAtImport && !Path.empty();
2473 if (PP.hadModuleLoaderFatalFailure() && !IsCXX20NamedModuleImport) {
2480 bool SeenError =
true;
2481 switch (ImportState) {
2493 Diag(ImportLoc, diag::err_partition_import_outside_module);
2505 if (IsPartition || (HeaderUnit && HeaderUnit->
Kind !=
2507 Diag(ImportLoc, diag::err_import_in_wrong_fragment)
2516 Diag(ImportLoc, diag::err_import_not_allowed_here);
2532 bool LexedSemi =
false;
2535 !ExpectAndConsumeSemi(diag::err_expected_semi_after_module_or_import,
2538 LexedSemi = !ExpectAndConsumeSemi(diag::err_module_expected_semi);
2549 Actions.ActOnModuleImport(StartLoc, ExportLoc, ImportLoc, HeaderUnit);
2550 else if (!Path.empty())
2551 Import = Actions.ActOnModuleImport(StartLoc, ExportLoc, ImportLoc, Path,
2558 if (IsObjCAtImport && AtLoc.
isValid()) {
2559 auto &SrcMgr = PP.getSourceManager();
2560 auto FE = SrcMgr.getFileEntryRefForID(SrcMgr.getFileID(AtLoc));
2561 if (FE && llvm::sys::path::parent_path(FE->getDir().getName())
2562 .ends_with(
".framework"))
2563 Diags.Report(AtLoc, diag::warn_atimport_in_framework_header);
2569bool Parser::ParseModuleName(SourceLocation UseLoc,
2570 SmallVectorImpl<IdentifierLoc> &Path,
2572 if (Tok.isNot(tok::annot_module_name)) {
2576 ModuleNameLoc *NameLoc =
2577 static_cast<ModuleNameLoc *
>(Tok.getAnnotationValue());
2580 ConsumeAnnotationToken();
2584bool Parser::parseMisplacedModuleImport() {
2586 switch (Tok.getKind()) {
2587 case tok::annot_module_end:
2591 if (MisplacedModuleBeginCount) {
2592 --MisplacedModuleBeginCount;
2593 Actions.ActOnAnnotModuleEnd(
2595 reinterpret_cast<Module *
>(Tok.getAnnotationValue()));
2596 ConsumeAnnotationToken();
2603 case tok::annot_module_begin:
2605 Actions.ActOnAnnotModuleBegin(
2607 reinterpret_cast<Module *
>(Tok.getAnnotationValue()));
2608 ConsumeAnnotationToken();
2609 ++MisplacedModuleBeginCount;
2611 case tok::annot_module_include:
2614 Actions.ActOnAnnotModuleInclude(
2616 reinterpret_cast<Module *
>(Tok.getAnnotationValue()));
2617 ConsumeAnnotationToken();
2627void Parser::diagnoseUseOfC11Keyword(
const Token &Tok) {
2632 : diag::ext_c11_feature)
2636bool BalancedDelimiterTracker::diagnoseOverflow() {
2637 P.Diag(P.Tok, diag::err_bracket_depth_exceeded)
2638 << P.getLangOpts().BracketDepth;
2639 P.Diag(P.Tok, diag::note_bracket_depth);
2647 LOpen = P.Tok.getLocation();
2648 if (P.ExpectAndConsume(Kind, DiagID, Msg)) {
2649 if (SkipToTok != tok::unknown)
2654 if (getDepth() < P.getLangOpts().BracketDepth)
2657 return diagnoseOverflow();
2660bool BalancedDelimiterTracker::diagnoseMissingClose() {
2661 assert(!P.Tok.is(Close) &&
"Should have consumed closing delimiter");
2663 if (P.Tok.is(tok::annot_module_end))
2664 P.Diag(P.Tok, diag::err_missing_before_module_end) << Close;
2666 P.Diag(P.Tok, diag::err_expected) << Close;
2667 P.Diag(LOpen, diag::note_matching) << Kind;
2671 if (P.Tok.isNot(tok::r_paren) && P.Tok.isNot(tok::r_brace) &&
2672 P.Tok.isNot(tok::r_square) &&
2673 P.SkipUntil(Close, FinalToken,
2676 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.
void setInvalidDecl(bool Invalid=true)
setInvalidDecl - Indicates the Decl had a semantic error.
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.