26 return Actions.ActOnReenterTemplateScope(D, [&] {
28 return Actions.getCurScope();
43 return ParseTemplateDeclarationOrSpecialization(Context, DeclEnd, AccessAttrs,
50 assert(Tok.isOneOf(tok::kw_export, tok::kw_template) &&
51 "Token does not start a template declaration.");
81 bool isSpecialization =
true;
82 bool LastParamListWasEmpty =
false;
84 TemplateParameterDepthRAII CurTemplateDepthTracker(TemplateParameterDepth);
88 SourceLocation ExportLoc;
92 SourceLocation TemplateLoc;
94 Diag(Tok.getLocation(), diag::err_expected_template);
99 SourceLocation LAngleLoc, RAngleLoc;
100 SmallVector<NamedDecl*, 4> TemplateParams;
101 if (ParseTemplateParameters(TemplateParamScopes,
102 CurTemplateDepthTracker.getDepth(),
103 TemplateParams, LAngleLoc, RAngleLoc)) {
110 ExprResult OptionalRequiresClauseConstraintER;
111 if (!TemplateParams.empty()) {
112 isSpecialization =
false;
113 ++CurTemplateDepthTracker;
116 OptionalRequiresClauseConstraintER =
119 if (!OptionalRequiresClauseConstraintER.
isUsable()) {
127 LastParamListWasEmpty =
true;
130 ParamLists.push_back(Actions.ActOnTemplateParameterList(
131 CurTemplateDepthTracker.getDepth(), ExportLoc, TemplateLoc, LAngleLoc,
132 TemplateParams, RAngleLoc, OptionalRequiresClauseConstraintER.
get()));
133 }
while (Tok.isOneOf(tok::kw_export, tok::kw_template));
135 ParsedTemplateInfo TemplateInfo(&ParamLists, isSpecialization,
136 LastParamListWasEmpty);
139 if (Tok.is(tok::kw_concept)) {
140 Decl *ConceptDecl = ParseConceptDefinition(TemplateInfo, DeclEnd);
143 ParsingTemplateParams.complete(ConceptDecl);
144 return Actions.ConvertDeclToDeclGroup(ConceptDecl);
147 return ParseDeclarationAfterTemplate(
148 Context, TemplateInfo, ParsingTemplateParams, DeclEnd, AccessAttrs, AS);
153 ParsedAttributes AccessAttrs(AttrFactory);
154 return ParseTemplateDeclarationOrSpecialization(Context, DeclEnd, AccessAttrs,
163 "Template information required");
165 if (Tok.is(tok::kw_static_assert)) {
167 Diag(Tok.getLocation(), diag::err_templated_invalid_declaration)
168 << TemplateInfo.getSourceRange();
170 return Actions.ConvertDeclToDeclGroup(
171 ParseStaticAssertDeclaration(DeclEnd));
176 return ParseCXXClassMemberDeclaration(AS, AccessAttrs, TemplateInfo,
179 ParsedAttributes DeclAttrs(AttrFactory);
180 ParsedAttributes DeclSpecAttrs(AttrFactory);
186 while (MaybeParseCXX11Attributes(DeclAttrs) ||
187 MaybeParseGNUAttributes(DeclSpecAttrs))
190 if (Tok.is(tok::kw_using))
191 return ParseUsingDirectiveOrDeclaration(Context, TemplateInfo, DeclEnd,
196 ParsingDeclSpec DS(*
this, &DiagsFromTParams);
197 DS.SetRangeStart(DeclSpecAttrs.Range.getBegin());
198 DS.SetRangeEnd(DeclSpecAttrs.Range.getEnd());
199 DS.takeAttributesAppendingingFrom(DeclSpecAttrs);
201 ParseDeclarationSpecifiers(DS, TemplateInfo, AS,
202 getDeclSpecContextFromDeclaratorContext(Context));
204 if (Tok.is(tok::semi)) {
205 ProhibitAttributes(DeclAttrs);
207 RecordDecl *AnonRecord =
nullptr;
208 Decl *
Decl = Actions.ParsedFreeStandingDeclSpec(
210 TemplateInfo.TemplateParams ? *TemplateInfo.TemplateParams
214 Actions.ActOnDefinedDeclarationSpecifier(Decl);
215 assert(!AnonRecord &&
216 "Anonymous unions/structs should not be valid with template");
218 return Actions.ConvertDeclToDeclGroup(Decl);
221 if (DS.hasTagDefinition())
222 Actions.ActOnDefinedDeclarationSpecifier(DS.getRepAsDecl());
226 ProhibitAttributes(DeclAttrs);
228 return ParseDeclGroup(DS, Context, DeclAttrs, TemplateInfo, &DeclEnd);
232Parser::ParseConceptDefinition(
const ParsedTemplateInfo &TemplateInfo,
235 "Template information required");
236 assert(Tok.is(tok::kw_concept) &&
237 "ParseConceptDefinition must be called when at a 'concept' keyword");
241 SourceLocation BoolKWLoc;
243 Diag(Tok.getLocation(), diag::err_concept_legacy_bool_keyword) <<
246 DiagnoseAndSkipCXX11Attributes();
249 if (ParseOptionalCXXScopeSpecifier(
253 false,
nullptr,
true) ||
261 diag::err_concept_definition_not_identifier);
275 Diag(
Result.getBeginLoc(), diag::err_concept_definition_not_identifier);
280 const IdentifierInfo *Id =
Result.Identifier;
281 SourceLocation IdLoc =
Result.getBeginLoc();
285 ConceptDecl *D = Actions.ActOnStartConceptDefinition(
286 getCurScope(), *TemplateInfo.TemplateParams, Id, IdLoc);
288 ParsedAttributes Attrs(AttrFactory);
289 MaybeParseAttributes(PAKM_GNU | PAKM_CXX11, Attrs);
292 Diag(Tok.getLocation(), diag::err_expected) << tok::equal;
307 DeclEnd = Tok.getLocation();
308 ExpectAndConsumeSemi(diag::err_expected_semi_declaration);
309 Expr *ConstraintExpr = ConstraintExprResult.
get();
314 return Actions.ActOnFinishConceptDefinition(
getCurScope(), D, ConstraintExpr,
318bool Parser::ParseTemplateParameters(
319 MultiParseScope &TemplateScopes,
unsigned Depth,
324 Diag(Tok.getLocation(), diag::err_expected_less_after) <<
"template";
331 if (!Tok.is(tok::greater) && !Tok.is(tok::greatergreater)) {
333 Failed = ParseTemplateParameterList(Depth, TemplateParams);
336 if (Tok.is(tok::greatergreater)) {
342 Tok.setKind(tok::greater);
343 RAngleLoc = Tok.getLocation();
344 Tok.setLocation(Tok.getLocation().getLocWithOffset(1));
346 Diag(Tok.getLocation(), diag::err_expected) << tok::greater;
353Parser::ParseTemplateParameterList(
const unsigned Depth,
357 if (NamedDecl *TmpParam
358 = ParseTemplateParameter(Depth, TemplateParams.size())) {
359 TemplateParams.push_back(TmpParam);
363 SkipUntil(tok::comma, tok::greater, tok::greatergreater,
368 if (Tok.is(tok::comma)) {
370 }
else if (Tok.isOneOf(tok::greater, tok::greatergreater)) {
377 Diag(Tok.getLocation(), diag::err_expected_comma_greater);
378 SkipUntil(tok::comma, tok::greater, tok::greatergreater,
386Parser::TPResult Parser::isStartOfTemplateTypeParameter() {
387 if (Tok.is(tok::kw_class)) {
394 case tok::greatergreater:
396 return TPResult::True;
398 case tok::identifier:
404 return TPResult::False;
411 case tok::greatergreater:
412 return TPResult::True;
415 return TPResult::False;
419 if (TryAnnotateTypeConstraint())
420 return TPResult::Error;
422 if (isTypeConstraintAnnotation() &&
427 .
isOneOf(tok::kw_auto, tok::kw_decltype))
428 return TPResult::True;
432 if (Tok.isNot(tok::kw_typename) && Tok.isNot(tok::kw_typedef))
433 return TPResult::False;
444 if (
Next.getKind() == tok::identifier)
447 switch (
Next.getKind()) {
451 case tok::greatergreater:
453 return TPResult::True;
455 case tok::kw_typename:
456 case tok::kw_typedef:
460 return TPResult::True;
463 return TPResult::False;
467NamedDecl *Parser::ParseTemplateParameter(
unsigned Depth,
unsigned Position) {
469 switch (isStartOfTemplateTypeParameter()) {
473 if (Tok.is(tok::kw_typedef)) {
474 Diag(Tok.getLocation(), diag::err_expected_template_parameter);
476 Diag(Tok.getLocation(), diag::note_meant_to_use_typename)
482 Tok.setKind(tok::kw_typename);
485 return ParseTypeParameter(Depth, Position);
486 case TPResult::False:
489 case TPResult::Error: {
497 DS.SetTypeSpecError();
500 D.SetIdentifier(
nullptr, Tok.getLocation());
501 D.setInvalidType(
true);
502 NamedDecl *ErrorParam = Actions.ActOnNonTypeTemplateParameter(
503 getCurScope(), D, Depth, Position, SourceLocation(),
506 SkipUntil(tok::comma, tok::greater, tok::greatergreater,
511 case TPResult::Ambiguous:
512 llvm_unreachable(
"template param classification can't be ambiguous");
515 if (Tok.is(tok::kw_template))
516 return ParseTemplateTemplateParameter(Depth, Position);
521 return ParseNonTypeTemplateParameter(Depth, Position);
524bool Parser::isTypeConstraintAnnotation() {
525 const Token &
T = Tok.is(tok::annot_cxxscope) ?
NextToken() : Tok;
526 if (
T.isNot(tok::annot_template_id))
528 const auto *ExistingAnnot =
529 static_cast<TemplateIdAnnotation *
>(
T.getAnnotationValue());
533bool Parser::TryAnnotateTypeConstraint() {
540 TemplateParameterDepthRAII CurTemplateDepthTracker(TemplateParameterDepth);
541 ++CurTemplateDepthTracker;
543 bool WasScopeAnnotation = Tok.is(tok::annot_cxxscope);
544 if (ParseOptionalCXXScopeSpecifier(SS,
nullptr,
559 if (Tok.is(tok::identifier)) {
565 bool MemberOfUnknownSpecialization =
false;
566 auto TNK = Actions.isTemplateName(
568 false, PossibleConceptName,
570 false, PossibleConcept,
571 MemberOfUnknownSpecialization,
573 if (MemberOfUnknownSpecialization || !PossibleConcept ||
576 AnnotateScopeToken(SS, !WasScopeAnnotation);
583 if (AnnotateTemplateIdToken(PossibleConcept, TNK, SS,
592 AnnotateScopeToken(SS, !WasScopeAnnotation);
596NamedDecl *Parser::ParseTypeParameter(
unsigned Depth,
unsigned Position) {
597 assert((Tok.isOneOf(tok::kw_class, tok::kw_typename) ||
598 isTypeConstraintAnnotation()) &&
599 "A type-parameter starts with 'class', 'typename' or a "
602 CXXScopeSpec TypeConstraintSS;
603 TemplateIdAnnotation *TypeConstraint =
nullptr;
604 bool TypenameKeyword =
false;
605 SourceLocation KeyLoc;
606 ParseOptionalCXXScopeSpecifier(TypeConstraintSS,
nullptr,
609 if (Tok.is(tok::annot_template_id)) {
612 static_cast<TemplateIdAnnotation *
>(Tok.getAnnotationValue());
614 "stray non-concept template-id annotation");
615 KeyLoc = ConsumeAnnotationToken();
617 assert(TypeConstraintSS.
isEmpty() &&
618 "expected type constraint after scope specifier");
621 TypenameKeyword = Tok.is(tok::kw_typename);
626 SourceLocation EllipsisLoc;
628 DiagCompat(EllipsisLoc, diag_compat::variadic_templates);
632 SourceLocation NameLoc = Tok.getLocation();
633 IdentifierInfo *ParamName =
nullptr;
634 if (Tok.is(tok::identifier)) {
635 ParamName = Tok.getIdentifierInfo();
637 }
else if (Tok.isOneOf(tok::equal, tok::comma, tok::greater,
638 tok::greatergreater)) {
642 Diag(Tok.getLocation(), diag::err_expected) << tok::identifier;
647 bool AlreadyHasEllipsis = EllipsisLoc.
isValid();
649 DiagnoseMisplacedEllipsis(EllipsisLoc, NameLoc, AlreadyHasEllipsis,
true);
654 SourceLocation EqualLoc;
656 std::optional<DelayTemplateIdDestructionRAII> DontDestructTemplateIds;
661 DontDestructTemplateIds.emplace(*
this,
true);
666 TemplateParameterDepthRAII CurTemplateDepthTracker(TemplateParameterDepth);
667 ++CurTemplateDepthTracker;
673 NamedDecl *NewDecl = Actions.ActOnTypeParameter(
getCurScope(),
674 TypenameKeyword, EllipsisLoc,
675 KeyLoc, ParamName, NameLoc,
676 Depth, Position, EqualLoc,
678 TypeConstraint !=
nullptr);
680 if (TypeConstraint) {
681 Actions.ActOnTypeConstraint(TypeConstraintSS, TypeConstraint,
689NamedDecl *Parser::ParseTemplateTemplateParameter(
unsigned Depth,
691 assert(Tok.is(tok::kw_template) &&
"Expected 'template' keyword");
695 SmallVector<NamedDecl*,8> TemplateParams;
696 SourceLocation LAngleLoc, RAngleLoc;
697 ExprResult OptionalRequiresClauseConstraintER;
700 if (ParseTemplateParameters(TemplateParmScope, Depth + 1, TemplateParams,
701 LAngleLoc, RAngleLoc)) {
705 OptionalRequiresClauseConstraintER =
708 if (!OptionalRequiresClauseConstraintER.
isUsable()) {
709 SkipUntil(tok::comma, tok::greater, tok::greatergreater,
717 SourceLocation NameLoc;
718 IdentifierInfo *ParamName =
nullptr;
719 SourceLocation EllipsisLoc;
720 bool TypenameKeyword =
false;
731 bool Replace = Tok.isOneOf(tok::kw_typename, tok::kw_struct);
732 const Token &
Next = Tok.is(tok::kw_struct) ?
NextToken() : Tok;
733 if (Tok.is(tok::kw_typename)) {
734 TypenameKeyword =
true;
737 diag_compat::template_template_param_typename)
746 }
else if (
Next.isOneOf(tok::identifier, tok::comma, tok::greater,
747 tok::greatergreater, tok::ellipsis)) {
751 Diag(Tok.getLocation(), diag::err_class_on_template_template_param)
755 : FixItHint::CreateInsertion(Tok.getLocation(),
"class "));
764 Diag(PrevTokLocation, diag::err_cxx26_template_template_params)
770 DiagCompat(EllipsisLoc, diag_compat::variadic_templates);
773 NameLoc = Tok.getLocation();
774 if (Tok.is(tok::identifier)) {
775 ParamName = Tok.getIdentifierInfo();
777 }
else if (Tok.isOneOf(tok::equal, tok::comma, tok::greater,
778 tok::greatergreater)) {
782 Diag(Tok.getLocation(), diag::err_expected) << tok::identifier;
787 bool AlreadyHasEllipsis = EllipsisLoc.
isValid();
789 DiagnoseMisplacedEllipsis(EllipsisLoc, NameLoc, AlreadyHasEllipsis,
true);
791 TemplateParameterList *ParamList = Actions.ActOnTemplateParameterList(
792 Depth, SourceLocation(), TemplateLoc, LAngleLoc, TemplateParams,
793 RAngleLoc, OptionalRequiresClauseConstraintER.
get());
798 SourceLocation EqualLoc;
799 ParsedTemplateArgument DefaultArg;
801 DefaultArg = ParseTemplateTemplateArgument();
803 Diag(Tok.getLocation(),
804 diag::err_default_template_template_parameter_not_template);
805 SkipUntil(tok::comma, tok::greater, tok::greatergreater,
810 return Actions.ActOnTemplateTemplateParameter(
811 getCurScope(), TemplateLoc, Kind, TypenameKeyword, ParamList, EllipsisLoc,
812 ParamName, NameLoc, Depth, Position, EqualLoc, DefaultArg);
816Parser::ParseNonTypeTemplateParameter(
unsigned Depth,
unsigned Position) {
820 DeclSpec DS(AttrFactory);
821 ParsedTemplateInfo TemplateInfo;
822 ParseDeclarationSpecifiers(DS, TemplateInfo,
AS_none,
823 DeclSpecContext::DSC_template_param);
828 ParseDeclarator(ParamDecl);
830 Diag(Tok.getLocation(), diag::err_expected_template_parameter);
835 SourceLocation EllipsisLoc;
837 DiagnoseMisplacedEllipsisInDeclarator(EllipsisLoc, ParamDecl);
842 SourceLocation EqualLoc;
845 if (Tok.is(tok::l_paren) &&
NextToken().
is(tok::l_brace)) {
846 Diag(Tok.getLocation(), diag::err_stmt_expr_in_default_arg) << 1;
854 GreaterThanIsOperatorScope G(GreaterThanIsOperator,
false);
860 TemplateParameterDepthRAII CurTemplateDepthTracker(
861 TemplateParameterDepth);
862 ++CurTemplateDepthTracker;
863 EnterExpressionEvaluationContext ConstantEvaluated(
865 DefaultArg = Actions.ActOnConstantExpression(ParseInitializer());
872 return Actions.ActOnNonTypeTemplateParameter(
getCurScope(), ParamDecl,
873 Depth, Position, EqualLoc,
879 bool AlreadyHasEllipsis,
880 bool IdentifierHasName) {
882 if (!AlreadyHasEllipsis)
884 Diag(EllipsisLoc, diag::err_misplaced_ellipsis_in_declaration)
886 << !IdentifierHasName;
889void Parser::DiagnoseMisplacedEllipsisInDeclarator(
SourceLocation EllipsisLoc,
893 if (!AlreadyHasEllipsis)
896 AlreadyHasEllipsis, D.
hasName());
899bool Parser::ParseGreaterThanInTemplateList(
SourceLocation LAngleLoc,
901 bool ConsumeLastToken,
902 bool ObjCGenericList) {
905 const char *ReplacementStr =
"> >";
906 bool MergeWithNextToken =
false;
908 switch (Tok.getKind()) {
911 Diag(LAngleLoc, diag::note_matching) << tok::less;
917 RAngleLoc = Tok.getLocation();
918 if (ConsumeLastToken)
922 case tok::greatergreater:
923 RemainingToken = tok::greater;
926 case tok::greatergreatergreater:
927 RemainingToken = tok::greatergreater;
930 case tok::greaterequal:
931 RemainingToken = tok::equal;
932 ReplacementStr =
"> =";
939 RemainingToken = tok::equalequal;
940 MergeWithNextToken =
true;
944 case tok::greatergreaterequal:
945 RemainingToken = tok::greaterequal;
957 SourceLocation TokBeforeGreaterLoc = PrevTokLocation;
958 SourceLocation TokLoc = Tok.getLocation();
964 bool PreventMergeWithNextToken =
965 (RemainingToken == tok::greater ||
966 RemainingToken == tok::greatergreater) &&
967 (
Next.isOneOf(tok::greater, tok::greatergreater,
968 tok::greatergreatergreater, tok::equal, tok::greaterequal,
969 tok::greatergreaterequal, tok::equalequal)) &&
970 areTokensAdjacent(Tok,
Next);
973 if (!ObjCGenericList) {
988 if (PreventMergeWithNextToken)
991 unsigned DiagId = diag::err_two_right_angle_brackets_need_space;
993 (Tok.is(tok::greatergreater) || Tok.is(tok::greatergreatergreater)))
994 DiagId = diag::warn_cxx98_compat_two_right_angle_brackets;
995 else if (Tok.is(tok::greaterequal))
996 DiagId = diag::err_right_angle_bracket_equal_needs_space;
997 Diag(TokLoc, DiagId) << Hint1 << Hint2;
1008 RAngleLoc = PP.SplitToken(TokLoc, GreaterLength);
1011 bool CachingTokens = PP.IsPreviousCachedToken(Tok);
1014 Greater.setLocation(RAngleLoc);
1015 Greater.setKind(tok::greater);
1016 Greater.setLength(GreaterLength);
1018 unsigned OldLength = Tok.getLength();
1019 if (MergeWithNextToken) {
1021 OldLength += Tok.getLength();
1024 Tok.setKind(RemainingToken);
1025 Tok.setLength(OldLength - GreaterLength);
1030 if (PreventMergeWithNextToken)
1031 AfterGreaterLoc = PP.SplitToken(AfterGreaterLoc, Tok.getLength());
1032 Tok.setLocation(AfterGreaterLoc);
1035 if (CachingTokens) {
1037 if (MergeWithNextToken)
1038 PP.ReplacePreviousCachedToken({});
1040 if (ConsumeLastToken)
1041 PP.ReplacePreviousCachedToken({
Greater, Tok});
1043 PP.ReplacePreviousCachedToken({
Greater});
1046 if (ConsumeLastToken) {
1047 PrevTokLocation = RAngleLoc;
1049 PrevTokLocation = TokBeforeGreaterLoc;
1050 PP.EnterToken(Tok,
true);
1057bool Parser::ParseTemplateIdAfterTemplateName(
bool ConsumeLastToken,
1059 TemplateArgList &TemplateArgs,
1062 assert(Tok.is(tok::less) &&
"Must have already parsed the template-name");
1068 bool Invalid =
false;
1070 GreaterThanIsOperatorScope G(GreaterThanIsOperator,
false);
1071 if (!Tok.isOneOf(tok::greater, tok::greatergreater,
1072 tok::greatergreatergreater, tok::greaterequal,
1073 tok::greatergreaterequal))
1074 Invalid = ParseTemplateArgumentList(TemplateArgs,
Template, LAngleLoc);
1079 SkipUntil(tok::greater, tok::greatergreater,
1086 return ParseGreaterThanInTemplateList(LAngleLoc, RAngleLoc, ConsumeLastToken,
1095 bool AllowTypeAnnotation,
1098 assert((Tok.is(tok::less) || TypeConstraint) &&
1099 "Parser isn't at the beginning of a template-id");
1100 assert(!(TypeConstraint && AllowTypeAnnotation) &&
"type-constraint can't be "
1101 "a type annotation");
1103 "must accompany a concept name");
1107 SourceLocation TemplateNameLoc =
TemplateName.getSourceRange().getBegin();
1110 SourceLocation LAngleLoc, RAngleLoc;
1111 TemplateArgList TemplateArgs;
1112 bool ArgsInvalid =
false;
1113 if (!TypeConstraint || Tok.is(tok::less)) {
1114 ArgsInvalid = ParseTemplateIdAfterTemplateName(
1115 false, LAngleLoc, TemplateArgs, RAngleLoc,
Template);
1131 : Actions.ActOnTemplateIdType(
1133 SourceLocation(), SS, TemplateKWLoc,
1135 TemplateArgsPtr, RAngleLoc);
1137 Tok.setKind(tok::annot_typename);
1138 setTypeAnnotation(Tok,
Type);
1141 else if (TemplateKWLoc.
isValid())
1142 Tok.setLocation(TemplateKWLoc);
1144 Tok.setLocation(TemplateNameLoc);
1148 Tok.setKind(tok::annot_template_id);
1150 const IdentifierInfo *TemplateII =
1161 TemplateKWLoc, TemplateNameLoc, TemplateII, OpKind,
Template, TNK,
1162 LAngleLoc, RAngleLoc, TemplateArgs, ArgsInvalid, TemplateIds);
1164 Tok.setAnnotationValue(TemplateId);
1166 Tok.setLocation(TemplateKWLoc);
1168 Tok.setLocation(TemplateNameLoc);
1172 Tok.setAnnotationEndLoc(RAngleLoc);
1176 PP.AnnotateCachedTokens(Tok);
1180void Parser::AnnotateTemplateIdTokenAsType(
1183 assert(Tok.is(tok::annot_template_id) &&
"Requires template-id tokens");
1185 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
1187 "Only works for type and dependent templates");
1195 : Actions.ActOnTemplateIdType(
1197 SourceLocation(), SS,
1198 TemplateId->TemplateKWLoc, TemplateId->
Template,
1199 TemplateId->Name, TemplateId->TemplateNameLoc,
1200 TemplateId->LAngleLoc, TemplateArgsPtr, TemplateId->RAngleLoc,
1201 false, IsClassName, AllowImplicitTypename);
1203 Tok.setKind(tok::annot_typename);
1204 setTypeAnnotation(Tok,
Type);
1211 PP.AnnotateCachedTokens(Tok);
1217 return Tok.isOneOf(tok::comma, tok::greater, tok::greatergreater,
1218 tok::greatergreatergreater);
1222 if (!Tok.is(tok::identifier) && !Tok.is(tok::coloncolon) &&
1223 !Tok.is(tok::annot_cxxscope) && !Tok.is(tok::annot_template_id) &&
1224 !Tok.is(tok::annot_non_type))
1225 return ParsedTemplateArgument();
1239 ParseOptionalCXXScopeSpecifier(SS,
nullptr,
1243 ParsedTemplateArgument
Result;
1244 SourceLocation EllipsisLoc;
1245 if (SS.
isSet() && Tok.is(tok::kw_template)) {
1250 if (Tok.is(tok::identifier)) {
1253 Name.
setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
1263 Actions.ActOnTemplateName(
getCurScope(), SS, TemplateKWLoc, Name,
1269 }
else if (Tok.is(tok::identifier) || Tok.is(tok::annot_template_id) ||
1270 Tok.is(tok::annot_non_type)) {
1274 bool IsPackIndexingTemplateName =
false;
1275 if (Tok.is(tok::annot_non_type)) {
1276 NamedDecl *ND = getNonTypeAnnotation(Tok);
1280 ConsumeAnnotationToken();
1281 }
else if (Tok.is(tok::annot_template_id)) {
1282 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
1288 IsPackIndexingTemplateName =
true;
1291 ConsumeAnnotationToken();
1293 Name.
setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
1300 if (IsPackIndexingTemplateName) {
1301 Result = ParsedTemplateArgument(SourceLocation(), SS,
1304 bool MemberOfUnknownSpecialization;
1309 false,
Template, MemberOfUnknownSpecialization);
1314 Result = ParsedTemplateArgument(SourceLocation(),
1321 Result = Actions.ActOnTemplateTemplateArgument(
Result);
1325 Result = Actions.ActOnPackExpansion(
Result, EllipsisLoc);
1341 EnterExpressionEvaluationContext EnterConstantEvaluated(
1348 return Actions.ActOnTemplateTypeArgument(TypeArg);
1353 TentativeParsingAction TPA(*
this);
1356 ParseTemplateTemplateArgument();
1367 SourceLocation Loc = Tok.getLocation();
1369 ExprArg = ParseBraceInitializer();
1374 return ParsedTemplateArgument();
1378 ExprArg.
get(), Loc);
1381bool Parser::ParseTemplateArgumentList(TemplateArgList &TemplateArgs,
1387 auto RunSignatureHelp = [&] {
1390 CalledSignatureHelp =
true;
1391 return Actions.CodeCompletion().ProduceTemplateArgumentSignatureHelp(
1396 PreferredType.enterFunctionArgument(Tok.getLocation(), RunSignatureHelp);
1397 ParsedTemplateArgument Arg = ParseTemplateArgument();
1398 SourceLocation EllipsisLoc;
1400 Arg = Actions.ActOnPackExpansion(Arg, EllipsisLoc);
1403 if (PP.isCodeCompletionReached() && !CalledSignatureHelp)
1409 TemplateArgs.push_back(Arg);
1423 ParsingDeclRAIIObject
1425 ParsedTemplateInfo TemplateInfo(ExternLoc, TemplateLoc);
1426 return ParseDeclarationAfterTemplate(
1427 Context, TemplateInfo, ParsingTemplateParams, DeclEnd, AccessAttrs, AS);
1430SourceRange Parser::ParsedTemplateInfo::getSourceRange()
const {
1433 TemplateParams->size());
1435 SourceRange
R(TemplateLoc);
1436 if (ExternLoc.isValid())
1437 R.setBegin(ExternLoc);
1441void Parser::LateTemplateParserCallback(
void *P, LateParsedTemplate &LPT) {
1442 ((
Parser *)P)->ParseLateTemplatedFuncDef(LPT);
1445void Parser::ParseLateTemplatedFuncDef(LateParsedTemplate &LPT) {
1450 DestroyTemplateIdAnnotationsRAIIObj CleanupRAII(*
this);
1455 TemplateParameterDepthRAII CurTemplateDepthTracker(TemplateParameterDepth);
1460 SmallVector<DeclContext*, 4> DeclContextsToReenter;
1461 DeclContext *LexicalTU =
nullptr;
1462 for (DeclContext *DC = FunD; DC; DC = DC->getLexicalParent()) {
1463 if (DC->isTranslationUnit()) {
1467 DeclContextsToReenter.push_back(DC);
1471 LexicalTU = Actions.Context.getTranslationUnitDecl();
1475 Sema::ContextRAII GlobalSavedContext(Actions, LexicalTU);
1478 for (DeclContext *DC : reverse(DeclContextsToReenter)) {
1479 CurTemplateDepthTracker.addDepth(
1484 Actions.PushDeclContext(Actions.getCurScope(), DC);
1489 Sema::FpPragmaStackSaveRAII SavedStack(Actions);
1490 Actions.resetFPOptions(LPT.
FPO);
1492 assert(!LPT.
Toks.empty() &&
"Empty body!");
1496 LPT.
Toks.push_back(Tok);
1497 PP.EnterTokenStream(LPT.
Toks,
true,
true);
1501 assert(Tok.isOneOf(tok::l_brace, tok::colon, tok::kw_try) &&
1502 "Inline method not starting with '{', ':' or 'try'");
1512 Actions.ActOnStartOfFunctionDef(
getCurScope(), FunD);
1517 TemplateParameterDepth - 1) &&
1518 "TemplateParameterDepth should be greater than the depth of "
1519 "current template being instantiated!");
1521 ParseFunctionBody(LPT.
D, FnScope);
1522 Actions.UnmarkAsLateParsedTemplate(FunD);
1525void Parser::LexTemplateFunctionForLateParsing(
CachedTokens &Toks) {
1527 if (!ConsumeAndStoreFunctionPrologue(Toks)) {
1529 ConsumeAndStoreUntil(tok::r_brace, Toks,
false);
1533 if (
kind == tok::kw_try) {
1534 while (Tok.is(tok::kw_catch)) {
1535 ConsumeAndStoreUntil(tok::l_brace, Toks,
false);
1536 ConsumeAndStoreUntil(tok::r_brace, Toks,
false);
1541bool Parser::diagnoseUnknownTemplateId(
ExprResult LHS, SourceLocation
Less) {
1542 TentativeParsingAction TPA(*
this);
1544 if (
SkipUntil(tok::greater, tok::greatergreater, tok::greatergreatergreater,
1549 ParseGreaterThanInTemplateList(
Less,
Greater,
true,
false);
1550 Actions.diagnoseExprIntendedAsTemplateName(
getCurScope(), LHS,
1561void Parser::checkPotentialAngleBracket(
ExprResult &PotentialTemplateName) {
1562 assert(Tok.is(tok::less) &&
"not at a potential angle bracket");
1564 bool DependentTemplateName =
false;
1565 if (!Actions.mightBeIntendedToBeTemplateName(PotentialTemplateName,
1566 DependentTemplateName))
1578 ParseGreaterThanInTemplateList(
Less,
Greater,
true,
false);
1579 Actions.diagnoseExprIntendedAsTemplateName(
1590 TentativeParsingAction TPA(*
this);
1592 if (isTypeIdUnambiguously() &&
1593 diagnoseUnknownTemplateId(PotentialTemplateName,
Less)) {
1604 AngleBracketTracker::Priority Priority =
1605 (DependentTemplateName ? AngleBracketTracker::DependentName
1606 : AngleBracketTracker::PotentialTypo) |
1607 (Tok.hasLeadingSpace() ? AngleBracketTracker::SpaceBeforeLess
1608 : AngleBracketTracker::NoSpaceBeforeLess);
1609 AngleBrackets.add(*
this, PotentialTemplateName.
get(), Tok.getLocation(),
1613bool Parser::checkPotentialAngleBracketDelimiter(
1618 if (OpToken.
is(tok::comma) && isTypeIdUnambiguously() &&
1619 diagnoseUnknownTemplateId(LAngle.TemplateName, LAngle.LessLoc)) {
1620 AngleBrackets.clear(*
this);
1627 if (OpToken.
is(tok::greater) && Tok.is(tok::l_paren) &&
1629 Actions.diagnoseExprIntendedAsTemplateName(
1630 getCurScope(), LAngle.TemplateName, LAngle.LessLoc,
1632 AngleBrackets.clear(*
this);
1638 if (OpToken.
is(tok::greater) ||
1640 OpToken.
isOneOf(tok::greatergreater, tok::greatergreatergreater)))
1641 AngleBrackets.clear(*
this);
Defines the clang::ASTContext interface.
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.
Defines the clang::Expr interface and subclasses for C++ expressions.
*collection of selector each with an associated kind and an ordered *collection of selectors A selector has a kind
static bool isEndOfTemplateArgument(Token Tok)
Determine whether the given token can end a template argument.
static constexpr bool isOneOf()
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.
SourceLocation getBeginLoc() const
bool isSet() const
Deprecated.
bool isInvalid() const
An error occurred during parsing of the scope specifier.
bool isEmpty() const
No scope specifier.
static CharSourceRange getCharRange(SourceRange R)
DeclContext * getLexicalParent()
getLexicalParent - Returns the containing lexical DeclContext.
static const TST TST_unspecified
Decl - This represents one declaration (or definition), e.g.
void setInvalidDecl(bool Invalid=true)
setInvalidDecl - Indicates the Decl had a semantic error.
FunctionDecl * getAsFunction() LLVM_READONLY
Returns the function itself, or the templated function if this is a function template.
Information about one declarator, including the parsed type information and the identifier.
SourceLocation getIdentifierLoc() const
SourceLocation getEllipsisLoc() const
bool hasName() const
hasName - Whether this declarator has a name, which might be an identifier (accessible via getIdentif...
void setEllipsisLoc(SourceLocation EL)
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.
static SourceLocation AdvanceToTokenCharacter(SourceLocation TokStart, unsigned Characters, const SourceManager &SM, const LangOptions &LangOpts)
AdvanceToTokenCharacter - If the current SourceLocation specifies a location at the start of a token,...
static unsigned getTokenPrefixLength(SourceLocation TokStart, unsigned CharNo, const SourceManager &SM, const LangOptions &LangOpts)
Get the physical length (including trigraphs and escaped newlines) of the first Characters characters...
This represents a decl that may have a name.
IdentifierInfo * getIdentifier() const
Get the identifier that names this declaration, if there is one.
static const ParsedAttributesView & none()
ParsedAttributes - A collection of parsed attributes.
Represents the parsed form of a C++ template argument.
@ NonType
A non-type template parameter, stored as an expression.
bool isInvalid() const
Determine whether the given template argument is invalid.
Introduces zero or more scopes for parsing.
void Enter(unsigned ScopeFlags)
ParseScope - Introduces a new scope for parsing.
TypeResult ParseTypeName(SourceRange *Range=nullptr, DeclaratorContext Context=DeclaratorContext::TypeName, AccessSpecifier AS=AS_none, Decl **OwnedType=nullptr, ParsedAttributes *Attrs=nullptr)
ParseTypeName.
DiagnosticBuilder Diag(SourceLocation Loc, unsigned DiagID)
SourceLocation getEndOfPreviousToken() const
DiagnosticBuilder DiagCompat(SourceLocation Loc, unsigned CompatDiagId)
SourceLocation ConsumeToken()
ConsumeToken - Consume the current 'peek token' and lex the next one.
Parser(Preprocessor &PP, Sema &Actions, bool SkipFunctionBodies)
AttributeFactory & getAttrFactory()
ExprResult ParseConstraintLogicalOrExpression(bool IsTrailingRequiresClause)
Parse a constraint-logical-or-expression.
ExprResult ParseConstantExpressionInExprEvalContext(TypoCorrectionTypeBehavior CorrectionBehavior=TypoCorrectionTypeBehavior::AllowNonTypes)
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.
friend class ColonProtectionRAIIObject
SourceLocation ConsumeAnyToken(bool ConsumeCodeCompletionTok=false)
ConsumeAnyToken - Dispatch to the right Consume* method based on the current token type.
const Token & GetLookAheadToken(unsigned N)
GetLookAheadToken - This peeks ahead N tokens and returns that token without consuming any tokens.
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 ...
friend class ObjCDeclContextSwitch
const LangOptions & getLangOpts() const
@ StopBeforeMatch
Stop skipping at specified token, but don't skip the token itself.
@ StopAtSemi
Stop skipping at semicolon.
const Token & NextToken()
NextToken - This peeks ahead one token and returns it without consuming it.
ExprResult ParseConstraintExpression()
Parse a constraint-expression.
SmallVector< TemplateParameterList *, 4 > TemplateParameterLists
unsigned ReenterTemplateScopes(MultiParseScope &S, Decl *D)
Re-enter a possible template scope, creating as many template parameter scopes as necessary.
RAII object used to inform the actions that we're currently parsing a declaration.
@ TemplateParamScope
This is a scope that corresponds to the template parameters of a C++ template.
@ CompoundStmtScope
This is a compound statement scope.
@ 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.
@ 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.
Represents a C++ template name within the type system.
PackIndexingTemplateStorage * getAsPackIndexingTemplate() const
Retrieve the pack-index-template-name storage, if any.
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.
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)) {....
bool isOneOf(Ts... Ks) const
Models the abbreviated syntax to constrain a template type parameter: template <convertible_to<string...
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.
SourceLocation StartLocation
The location of the first token that describes this unqualified-id, which will be the location of the...
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.
TokenKind
Provides a simple uniform namespace for tokens from all C languages.
Top level wrappers for InstallAPI frontend operations.
OverloadedOperatorKind
Enumeration specifying the different kinds of C++ overloaded operators.
@ OO_None
Not an overloaded operator.
bool isa(CodeGen::Address addr)
MutableArrayRef< TemplateParameterList * > MultiTemplateParamsArg
@ TemplateName
The identifier is a template name. FIXME: Add an annotation for that.
@ TemplateTemplateArgument
@ IK_Identifier
An identifier.
AccessSpecifier
A C++ access specifier (public, private, protected), plus the special value "none" which means differ...
@ Result
The result type of a method or function.
ActionResult< ParsedType > TypeResult
const FunctionProtoType * T
@ Template
We are parsing a template declaration.
@ ExplicitInstantiation
We are parsing an explicit instantiation.
@ NonTemplate
We are not parsing a template at all.
@ Type
The name was classified as a type.
SourceRange getTemplateParamsRange(TemplateParameterList const *const *Params, unsigned NumParams)
Retrieves the range of the given template parameter lists.
MutableArrayRef< ParsedTemplateArgument > ASTTemplateArgsPtr
TemplateNameKind
Specifies the kind of template name that an identifier refers to.
@ TNK_Var_template
The name refers to a variable template whose specialization produces a variable.
@ TNK_Type_template
The name refers to a template whose specialization produces a type.
@ TNK_Dependent_template_name
The name refers to a dependent template name:
@ TNK_Concept_template
The name refers to a concept.
@ TNK_Non_template
The name does not refer to a template.
U cast(CodeGen::Address addr)
SmallVector< Token, 4 > CachedTokens
A set of tokens that has been cached for later parsing.
@ None
The alignment was not explicit in code.
OpaquePtr< QualType > ParsedType
An opaque type for threading parsed type information through the parser.
ElaboratedTypeKeyword
The elaboration keyword that precedes a qualified type name or introduces an elaborated-type-specifie...
ActionResult< Expr * > ExprResult
FPOptions FPO
Floating-point options in the point of definition.
Decl * D
The template function declaration to be late parsed.
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.
ParsedTemplateArgument * getTemplateArgs()
Retrieves a pointer to the template arguments.
SourceLocation LAngleLoc
The location of the '<' before the template argument list.
bool mightBeType() const
Determine whether this might be a type template.
ParsedTemplateTy Template
The declaration of the template corresponding to the template-name.
static TemplateIdAnnotation * Create(SourceLocation TemplateKWLoc, SourceLocation TemplateNameLoc, const IdentifierInfo *Name, OverloadedOperatorKind OperatorKind, ParsedTemplateTy OpaqueTemplateName, TemplateNameKind TemplateKind, SourceLocation LAngleLoc, SourceLocation RAngleLoc, ArrayRef< ParsedTemplateArgument > TemplateArgs, bool ArgsInvalid, SmallVectorImpl< TemplateIdAnnotation * > &CleanupList)
Creates a new TemplateIdAnnotation with NumArgs arguments and appends it to List.