42#include "llvm/ADT/SmallBitVector.h"
43#include "llvm/ADT/StringExtras.h"
44#include "llvm/Support/Casting.h"
45#include "llvm/Support/SaveAndRestore.h"
56 return SourceRange(Ps[0]->getTemplateLoc(), Ps[N-1]->getRAngleLoc());
70 auto ParamsAtDepth = [&](
unsigned D) { Depth = std::max(Depth, D + 1); };
75 if (
auto *LSI = dyn_cast<LambdaScopeInfo>(FSI)) {
76 if (!LSI->TemplateParams.empty()) {
77 ParamsAtDepth(LSI->AutoTemplateParameterDepth);
80 if (LSI->GLTemplateParameterList) {
81 ParamsAtDepth(LSI->GLTemplateParameterList->getDepth());
91 if (!Info.TemplateParams.empty()) {
92 ParamsAtDepth(Info.AutoTemplateParameterDepth);
107 bool AllowFunctionTemplates,
108 bool AllowDependent) {
118 if (
const auto *
Record = dyn_cast<CXXRecordDecl>(D)) {
130 if (
Record->isInjectedClassName()) {
132 if (
Record->getDescribedClassTemplate())
133 return Record->getDescribedClassTemplate();
135 if (
const auto *Spec = dyn_cast<ClassTemplateSpecializationDecl>(
Record))
136 return Spec->getSpecializedTemplate();
152 bool AllowFunctionTemplates,
153 bool AllowDependent) {
164 bool AllowFunctionTemplates,
166 bool AllowNonTemplateFunctions) {
170 if (AllowNonTemplateFunctions &&
181 bool EnteringContext,
TemplateTy &TemplateResult,
182 bool &MemberOfUnknownSpecialization,
183 bool AllowTypoCorrection) {
187 MemberOfUnknownSpecialization =
false;
195 TName =
Context.DeclarationNames.getCXXOperatorName(
213 &AssumedTemplate, AllowTypoCorrection))
215 MemberOfUnknownSpecialization = R.wasNotFoundInCurrentInstantiation();
231 UsingShadowDecl *FoundUsingShadow = dyn_cast<UsingShadowDecl>(*R.begin());
232 if (R.isAmbiguous()) {
235 bool AnyFunctionTemplates =
false;
239 AnyFunctionTemplates =
true;
242 FoundUsingShadow = dyn_cast<UsingShadowDecl>(FoundD);
250 if (!D && !AnyFunctionTemplates) {
251 R.suppressDiagnostics();
268 unsigned ResultCount = R.end() - R.begin();
269 if (!D && ResultCount > 1) {
276 R.suppressDiagnostics();
280 assert(D &&
"unambiguous result is not a template name");
285 MemberOfUnknownSpecialization =
true;
292 assert(!FoundUsingShadow || FoundUsingShadow->
getTargetDecl() == TD);
295 Template =
Context.getQualifiedTemplateName(Qualifier, hasTemplateKeyword,
303 R.suppressDiagnostics();
310 ? dyn_cast<TemplateTemplateParmDecl>(TD)->templateParameterKind()
319 Diag(Name.
getBeginLoc(), diag::err_builtin_pack_outside_template) << TName;
338 if (R.empty())
return false;
339 if (R.isAmbiguous()) {
341 R.suppressDiagnostics();
375 {SS->getScopeRep(), &II, false}));
376 Diag(IILoc, diag::err_template_kw_missing)
377 << SuggestedTemplate.
get()
384 QualType ObjectType,
bool EnteringContext,
387 bool AllowTypoCorrection) {
394 Found.setTemplateNameLookup(
true);
398 bool IsDependent =
false;
399 if (!ObjectType.
isNull()) {
402 assert(SS.
isEmpty() &&
"ObjectType and scope specifier cannot coexist");
406 !ObjectType->
getAs<TagType>() ||
407 ObjectType->
castAs<TagType>()->getDecl()->isEntityBeingDefined()) &&
408 "Caller should have completed object type");
440 bool ObjectTypeSearchedInScope =
false;
441 bool AllowFunctionTemplatesInLookup =
true;
457 IsDependent |=
Found.wasNotFoundInCurrentInstantiation();
473 if (!ObjectType.
isNull()) {
477 AllowFunctionTemplatesInLookup =
false;
478 ObjectTypeSearchedInScope =
true;
481 IsDependent |=
Found.wasNotFoundInCurrentInstantiation();
484 if (
Found.isAmbiguous())
501 if (AllFunctions || (
Found.empty() && !IsDependent)) {
505 *ATK = (
Found.empty() &&
Found.getLookupName().isIdentifier())
513 if (
Found.empty() && !IsDependent && AllowTypoCorrection) {
519 class TemplateNameLookupValidatorCCC final
531 std::unique_ptr<CorrectionCandidateCallback> clone()
final {
532 return std::make_unique<TemplateNameLookupValidatorCCC>(*
this);
536 TemplateNameLookupValidatorCCC FilterCCC(!SS.
isEmpty());
537 FilterCCC.WantTypeSpecifiers =
false;
538 FilterCCC.WantExpressionKeywords =
false;
539 FilterCCC.WantRemainingKeywords =
false;
540 FilterCCC.WantCXXNamedCasts =
true;
542 Found.getLookupNameInfo(),
Found.getLookupKind(), S, &SS, FilterCCC,
544 if (
auto *ND = Corrected.getFoundDecl())
547 if (
Found.isAmbiguous()) {
549 }
else if (!
Found.empty()) {
552 AllowFunctionTemplatesInLookup =
true;
553 Found.setLookupName(Corrected.getCorrection());
555 std::string CorrectedStr(Corrected.getAsString(
getLangOpts()));
556 bool DroppedSpecifier = Corrected.WillReplaceSpecifier() &&
559 << Name << LookupCtx << DroppedSpecifier
565 if (Corrected.WillReplaceSpecifier()) {
581 Found.setNotFoundInCurrentInstantiation();
587 if (ExampleLookupResult && RequiredTemplate) {
588 Diag(
Found.getNameLoc(), diag::err_template_kw_refers_to_non_template)
593 diag::note_template_kw_refers_to_non_template)
594 <<
Found.getLookupName();
601 if (S && !ObjectType.
isNull() && !ObjectTypeSearchedInScope &&
618 if (FoundOuter.
empty()) {
628 }
else if (!
Found.isSuppressingAmbiguousDiagnostics()) {
632 if (!
Found.isSingleResult() ||
636 diag::ext_nested_name_member_ref_lookup_ambiguous)
637 <<
Found.getLookupName()
639 Diag(
Found.getRepresentativeDecl()->getLocation(),
640 diag::note_ambig_member_ref_object_type)
643 diag::note_ambig_member_ref_scope);
666 bool MissingTemplateKeyword =
false;
669 if (
auto *DRE = dyn_cast<DeclRefExpr>(
TemplateName.get())) {
670 NameInfo = DRE->getNameInfo();
671 SS.
Adopt(DRE->getQualifierLoc());
673 Found = DRE->getFoundDecl();
674 }
else if (
auto *ME = dyn_cast<MemberExpr>(
TemplateName.get())) {
675 NameInfo = ME->getMemberNameInfo();
676 SS.
Adopt(ME->getQualifierLoc());
678 LookupCtx = ME->getBase()->getType()->getAsCXXRecordDecl();
679 Found = ME->getMemberDecl();
680 }
else if (
auto *DSDRE =
681 dyn_cast<DependentScopeDeclRefExpr>(
TemplateName.get())) {
682 NameInfo = DSDRE->getNameInfo();
683 SS.
Adopt(DSDRE->getQualifierLoc());
684 MissingTemplateKeyword =
true;
685 }
else if (
auto *DSME =
686 dyn_cast<CXXDependentScopeMemberExpr>(
TemplateName.get())) {
687 NameInfo = DSME->getMemberNameInfo();
688 SS.
Adopt(DSME->getQualifierLoc());
689 MissingTemplateKeyword =
true;
691 llvm_unreachable(
"unexpected kind of potential template name");
696 if (MissingTemplateKeyword) {
705 TemplateCandidateFilter(
Sema &S) : S(S) {
706 WantTypeSpecifiers =
false;
707 WantExpressionKeywords =
false;
708 WantRemainingKeywords =
false;
709 WantCXXNamedCasts =
true;
711 bool ValidateCandidate(
const TypoCorrection &Candidate)
override {
717 std::unique_ptr<CorrectionCandidateCallback> clone()
override {
718 return std::make_unique<TemplateCandidateFilter>(*
this);
723 TemplateCandidateFilter CCC(*
this);
727 auto *ND = Corrected.getFoundDecl();
730 if (ND || Corrected.isKeyword()) {
732 std::string CorrectedStr(Corrected.getAsString(
getLangOpts()));
733 bool DroppedSpecifier = Corrected.WillReplaceSpecifier() &&
736 PDiag(diag::err_non_template_in_member_template_id_suggest)
737 << Name << LookupCtx << DroppedSpecifier
741 PDiag(diag::err_non_template_in_template_id_suggest)
746 diag::note_non_template_in_template_id_found);
751 Diag(NameInfo.
getLoc(), diag::err_non_template_in_template_id)
754 Diag(
Found->getLocation(), diag::note_non_template_in_template_id_found);
761 bool isAddressOfOperand,
777 nullptr, NameInfo, TemplateArgs);
811 SemaRef.BuildExpressionFromNonTypeTemplateArgument(Arg, Loc);
814 Replacement = result.
get();
817 Replacement->getType(), Replacement->getValueKind(), Loc, Replacement,
818 AssociatedDecl, ParamType, Index,
PackIndex, Final);
823 bool InstantiatedFromMember,
827 bool Complain,
bool *Unreachable) {
831 bool IsEntityBeingDefined =
false;
832 if (
const TagDecl *TD = dyn_cast_or_null<TagDecl>(PatternDef))
833 IsEntityBeingDefined = TD->isBeingDefined();
835 if (PatternDef && !IsEntityBeingDefined) {
852 if (!Complain || (PatternDef && PatternDef->
isInvalidDecl()))
856 if (
TagDecl *TD = dyn_cast<TagDecl>(Instantiation))
857 InstantiationTy =
Context.getCanonicalTagType(TD);
859 Diag(PointOfInstantiation,
860 diag::err_template_instantiate_within_definition)
866 }
else if (InstantiatedFromMember) {
868 Diag(PointOfInstantiation,
869 diag::err_explicit_instantiation_undefined_member)
874 assert(
isa<TagDecl>(Instantiation) &&
"Must be a TagDecl!");
875 Diag(PointOfInstantiation,
876 diag::err_implicit_instantiate_member_undefined)
882 Diag(PointOfInstantiation,
883 diag::err_explicit_instantiation_undefined_func_template)
887 Diag(PointOfInstantiation, diag::err_template_instantiate_undefined)
892 assert(
isa<VarDecl>(Instantiation) &&
"Must be a VarDecl!");
894 Diag(PointOfInstantiation,
895 diag::err_explicit_instantiation_undefined_var_template)
899 Diag(PointOfInstantiation,
900 diag::err_explicit_instantiation_undefined_member)
917 bool SupportedForCompatibility) {
930 ? diag::ext_template_param_shadow
931 : (SupportedForCompatibility ? diag::ext_compat_template_param_shadow
932 : diag::err_template_param_shadow);
934 Diag(Loc, DiagId) << ND->getDeclName();
939 if (
TemplateDecl *Temp = dyn_cast_or_null<TemplateDecl>(D)) {
940 D = Temp->getTemplatedDecl();
949 "Only template template arguments can be pack expansions here");
950 assert(
getAsTemplate().get().containsUnexpandedParameterPack() &&
951 "Template template argument pack expansion without packs");
953 Result.EllipsisLoc = EllipsisLoc;
988 llvm_unreachable(
"Unhandled parsed template argument");
993 for (
unsigned I = 0,
Last = TemplateArgsIn.size(); I !=
Last; ++I)
1013 assert(TInfo &&
"template argument with no location");
1021 EllipsisLoc = PET.getEllipsisLoc();
1022 TL = PET.getPatternLoc();
1026 TemplateName Name = DTST.getTypePtr()->getTemplateName();
1028 SS.
Adopt(DTST.getQualifierLoc());
1031 DTST.getTemplateNameLoc());
1052 unsigned Depth,
unsigned Position,
1055 bool HasTypeConstraint) {
1057 "Template type parameter not in template parameter scope!");
1059 bool IsParameterPack = EllipsisLoc.
isValid();
1062 KeyLoc, ParamNameLoc, Depth, Position,
1063 ParamName,
Typename, IsParameterPack,
1067 if (Param->isParameterPack())
1069 CSI->LocalPacks.push_back(Param);
1082 if (DefaultArg && IsParameterPack) {
1083 Diag(EqualLoc, diag::err_template_param_pack_default_arg);
1084 DefaultArg =
nullptr;
1092 assert(DefaultTInfo &&
"expected source information for type");
1101 Param->setInvalidDecl();
1105 Param->setDefaultArgument(
1120 return TemplateArgs;
1127 bool IsTypeConcept =
false;
1128 bool RequiresArguments =
false;
1130 IsTypeConcept = TTP->isTypeConceptTemplateParam();
1132 TTP->getTemplateParameters()->getMinRequiredArguments() > 1;
1138 ->getTemplateParameters()
1139 ->getMinRequiredArguments() > 1;
1145 if (!IsTypeConcept) {
1147 diag::err_type_constraint_non_type_concept);
1156 if (!WereArgsSpecified && RequiresArguments) {
1158 diag::err_type_constraint_missing_arguments)
1177 bool AllowUnexpandedPack) {
1194 if (EllipsisLoc.
isInvalid() && !AllowUnexpandedPack) {
1205 ConstrainedParameter, EllipsisLoc);
1208template <
typename ArgumentLocAppender>
1223 Appender(ConstraintArgs);
1231 if (
auto *CD = dyn_cast<ConceptDecl>(NamedConcept)) {
1234 FoundDecl ? FoundDecl : CD, CD, &ConstraintArgs,
1240 auto *CDT = dyn_cast<TemplateTemplateParmDecl>(NamedConcept);
1245 return ImmediatelyDeclaredConstraint;
1261 ImmediatelyDeclaredConstraint.
get(), BO_LAnd,
1262 EllipsisLoc,
nullptr,
1279 *TemplateArgs) :
nullptr;
1284 *
this,
NS, NameInfo, NamedConcept, FoundDecl,
1287 ParamAsArgument, ConstrainedParameter->
getLocation(),
1290 for (const auto &ArgLoc : TemplateArgs->arguments())
1291 ConstraintArgs.addArgument(ArgLoc);
1294 if (ImmediatelyDeclaredConstraint.
isInvalid())
1304 CL, ImmediatelyDeclaredConstraint.
get(), std::nullopt);
1315 diag::err_unsupported_placeholder_constraint)
1335 for (unsigned I = 0, C = TL.getNumArgs(); I != C; ++I)
1336 ConstraintArgs.addArgument(TL.getArgLoc(I));
1339 if (ImmediatelyDeclaredConstraint.
isInvalid() ||
1340 !ImmediatelyDeclaredConstraint.
isUsable())
1344 ImmediatelyDeclaredConstraint.
get());
1366 if (T->isDependentType())
1372 if (T->isStructuralType())
1376 if (T->isRValueReferenceType()) {
1377 Diag(Loc, diag::err_template_nontype_parm_rvalue_ref) << T;
1386 (!T->isScalarType() && !T->isRecordType())) {
1387 Diag(Loc, diag::err_template_nontype_parm_bad_type) << T;
1395 Diag(Loc, diag::err_template_nontype_parm_not_structural) << T;
1402 for (
const FieldDecl *FD : RD->fields()) {
1404 Diag(FD->getLocation(), diag::note_not_structural_non_public) << T << 0;
1407 if (FD->isMutable()) {
1408 Diag(FD->getLocation(), diag::note_not_structural_mutable_field) << T;
1411 if (FD->getType()->isRValueReferenceType()) {
1412 Diag(FD->getLocation(), diag::note_not_structural_rvalue_ref_field)
1419 for (
const auto &BaseSpec : RD->bases()) {
1420 if (BaseSpec.getAccessSpecifier() !=
AS_public) {
1421 Diag(BaseSpec.getBaseTypeLoc(), diag::note_not_structural_non_public)
1432 for (
const FieldDecl *FD : RD->fields()) {
1434 if (!T->isStructuralType()) {
1435 SubLoc = FD->getLocation();
1443 for (
const auto &BaseSpec : RD->bases()) {
1445 if (!T->isStructuralType()) {
1446 SubLoc = BaseSpec.getBaseTypeLoc();
1454 assert(Kind != -1 &&
"couldn't find reason why type is not structural");
1455 Diag(SubLoc, diag::note_not_structural_subobject)
1456 << T << Kind << SubType;
1468 if (T->isVariablyModifiedType()) {
1469 Diag(Loc, diag::err_variably_modified_nontype_template_param)
1474 if (T->isBlockPointerType()) {
1475 Diag(Loc, diag::err_template_nontype_parm_bad_type) << T;
1485 if (T->isIntegralOrEnumerationType() ||
1487 T->isPointerType() ||
1489 T->isLValueReferenceType() ||
1491 T->isMemberPointerType() ||
1493 T->isNullPtrType() ||
1495 T->isUndeducedType()) {
1498 return T.getUnqualifiedType();
1506 if (T->isArrayType() || T->isFunctionType())
1507 return Context.getDecayedType(T);
1515 if (T->isDependentType())
1516 return T.getUnqualifiedType();
1527 Diag(Loc, diag::err_template_nontype_parm_bad_structural_type) << T;
1531 Diag(Loc, diag::warn_cxx17_compat_template_nontype_parm_type) << T;
1532 return T.getUnqualifiedType();
1543 auto CheckValidDeclSpecifiers = [
this, &D] {
1557 Diag(Loc, diag::err_invalid_decl_specifier_in_nontype_parm)
1594 CheckValidDeclSpecifiers();
1599 diag::warn_cxx14_compat_template_nontype_parm_auto_type)
1603 "Non-type template parameter not in template parameter scope!");
1623 if (TL.isConstrained()) {
1625 T->containsUnexpandedParameterPack()) {
1626 assert(TL.getConceptReference()->getTemplateArgsAsWritten());
1628 TL.getConceptReference()->getTemplateArgsAsWritten()->arguments())
1638 Param->setInvalidDecl();
1640 if (Param->isParameterPack())
1642 CSI->LocalPacks.push_back(Param);
1656 if (
Default && IsParameterPack) {
1657 Diag(EqualLoc, diag::err_template_param_pack_default_arg);
1667 Param->setDefaultArgument(
1686 "Template template parameter not in template parameter scope!");
1688 bool IsParameterPack = EllipsisLoc.
isValid();
1691 if (Params->
size() == 0) {
1692 Diag(Loc, diag::err_template_template_parm_no_parms)
1699 Depth + 1, 0,
nullptr,
1716 IsParameterPack, Name, Kind,
Typename, Params);
1719 if (Param->isParameterPack())
1721 LSI->LocalPacks.push_back(Param);
1733 Param->setInvalidDecl();
1738 if (IsParameterPack && !
Default.isInvalid()) {
1739 Diag(EqualLoc, diag::err_template_param_pack_default_arg);
1754 Diag(DefaultArg.
getLocation(), diag::err_template_arg_not_valid_template)
1773 Param->setDefaultArgument(
Context, DefaultArg);
1780class ConstraintRefersToContainingTemplateChecker
1785 unsigned TemplateDepth = 0;
1789 bool CheckIfContainingRecord(
const CXXRecordDecl *CheckingRD) {
1795 DC && !DC->isFileContext(); DC = DC->getParent())
1796 if (
const auto *RD = dyn_cast<CXXRecordDecl>(DC))
1797 if (CheckingRD == RD->getMostRecentDecl()) {
1805 bool CheckNonTypeTemplateParmDecl(
const NonTypeTemplateParmDecl *D) {
1811 return TraverseType(D->
getType());
1815 ConstraintRefersToContainingTemplateChecker(
const FunctionDecl *
Friend,
1816 unsigned TemplateDepth)
1819 bool getResult()
const {
return Result; }
1825 bool VisitTemplateTypeParmType(
const TemplateTypeParmType *
Type)
override {
1826 if (
Type->getDecl()->getDepth() < TemplateDepth) {
1833 bool TraverseDeclRefExpr(
const DeclRefExpr *E)
override {
1834 return TraverseDecl(E->
getDecl());
1837 bool TraverseTypedefType(
const TypedefType *TT,
1839 return TraverseType(TT->
desugar());
1842 bool TraverseTypeLoc(TypeLoc TL,
bool TraverseQualifier)
override {
1844 return TraverseType(TL.
getType(), TraverseQualifier);
1847 bool VisitTagType(
const TagType *T)
override {
1848 return TraverseDecl(T->getDecl());
1851 bool TraverseDecl(
const Decl *D)
override {
1857 if (
auto *TD = dyn_cast<TypedefNameDecl>(D))
1858 return TraverseType(TD->getUnderlyingType());
1859 if (
auto *NTTPD = dyn_cast<NonTypeTemplateParmDecl>(D))
1860 return CheckNonTypeTemplateParmDecl(NTTPD);
1861 if (
auto *VD = dyn_cast<ValueDecl>(D))
1862 return TraverseType(VD->getType());
1865 if (
auto *RD = dyn_cast<CXXRecordDecl>(D))
1866 return CheckIfContainingRecord(RD);
1871 llvm_unreachable(
"Don't know how to handle this declaration type yet");
1879 const Expr *Constraint) {
1880 assert(
Friend->getFriendObjectKind() &&
"Only works on a friend");
1881 ConstraintRefersToContainingTemplateChecker Checker(
Friend, TemplateDepth);
1882 Checker.TraverseStmt(Constraint);
1883 return Checker.getResult();
1893 Expr *RequiresClause) {
1895 Diag(ExportLoc, diag::warn_template_export_unsupported);
1948 assert(TemplateParams && TemplateParams->
size() > 0 &&
1949 "No template parameters");
1951 "Can only declare or define class templates");
1960 "can't build template of enumerated type");
1964 Diag(KWLoc, diag::err_template_unnamed_class);
1979 if (!SemanticContext) {
1984 ? diag::warn_template_qualified_friend_ignored
1985 : diag::err_template_qualified_declarator_no_match)
2005 IsMemberSpecialization))
2062 dyn_cast_or_null<ClassTemplateDecl>(PrevDecl);
2067 if (!PrevClassTemplate && isa_and_nonnull<CXXRecordDecl>(PrevDecl) &&
2075 ->getSpecializedTemplate();
2098 PrevDecl = PrevClassTemplate =
nullptr;
2099 SemanticContext = OutermostContext;
2117 SemanticContext, S, SS.
isValid()))
2118 PrevDecl = PrevClassTemplate =
nullptr;
2120 if (
auto *Shadow = dyn_cast_or_null<UsingShadowDecl>(
2121 PrevDecl ?
Previous.getRepresentativeDecl() :
nullptr)) {
2123 !(PrevClassTemplate &&
2126 Diag(KWLoc, diag::err_using_decl_conflict_reverse);
2127 Diag(Shadow->getTargetDecl()->getLocation(),
2128 diag::note_using_decl_target);
2129 Diag(Shadow->getIntroducer()->getLocation(), diag::note_using_decl) << 0;
2131 PrevDecl = PrevClassTemplate =
nullptr;
2135 if (PrevClassTemplate) {
2144 TemplateParams, PrevClassTemplate,
2157 Diag(KWLoc, diag::err_use_with_wrong_tag)
2170 bool HiddenDefVisible =
false;
2175 if (!HiddenDefVisible && Hidden) {
2178 assert(Tmpl &&
"original definition of a class template is not a "
2184 Diag(NameLoc, diag::err_redefinition) << Name;
2185 Diag(Def->getLocation(), diag::note_previous_definition);
2192 }
else if (PrevDecl) {
2198 Diag(NameLoc, diag::err_redefinition_different_kind) << Name;
2212 (SS.
isSet() && SemanticContext && SemanticContext->
isRecord() &&
2225 ? diag::err_friend_decl_does_not_match
2226 : diag::err_member_decl_does_not_match)
2227 << Name << SemanticContext <<
true
2236 bool ShouldAddRedecl =
2240 Context, Kind, SemanticContext, KWLoc, NameLoc, Name,
2241 PrevClassTemplate && ShouldAddRedecl
2245 if (NumOuterTemplateParamLists > 0)
2248 llvm::ArrayRef(OuterTemplateParamLists, NumOuterTemplateParamLists));
2264 if (ShouldAddRedecl)
2269 if (ModulePrivateLoc.
isValid())
2272 if (IsMemberSpecialization) {
2273 assert(PrevClassTemplate &&
2274 "Member specialization without a primary template?");
2292 if (PrevClassTemplate)
2328 if (PrevClassTemplate)
2367 S.
DiagCompat(ParamLoc, diag_compat::templ_default_in_function_templ)
2376 S.
Diag(ParamLoc, diag::err_template_parameter_default_template_member)
2385 S.
Diag(ParamLoc, diag::err_template_parameter_default_friend_template)
2394 llvm_unreachable(
"Invalid TemplateParamListContext!");
2407 for (
unsigned I = 0, N = Params->
size(); I != N; ++I) {
2412 if (TC->hasExplicitTemplateArgs())
2413 for (
auto &ArgLoc : TC->getTemplateArgsAsWritten()->arguments())
2421 if (!NTTP->isParameterPack() &&
2423 NTTP->getTypeSourceInfo(),
2431 = dyn_cast<TemplateTemplateParmDecl>(P))
2451 bool SawDefaultArgument =
false;
2457 OldParam = OldParams->
begin();
2459 bool RemoveDefaultArguments =
false;
2461 NewParamEnd = NewParams->
end();
2462 NewParam != NewParamEnd; ++NewParam) {
2465 bool RedundantDefaultArg =
false;
2468 bool InconsistentDefaultArg =
false;
2470 std::string PrevModuleName;
2476 bool MissingDefaultArg =
false;
2479 bool SawParameterPack =
false;
2482 = dyn_cast<TemplateTypeParmDecl>(*NewParam)) {
2484 if (NewTypeParm->hasDefaultArgument() &&
2486 *
this, TPC, NewTypeParm->getLocation(),
2487 NewTypeParm->getDefaultArgument().getSourceRange()))
2488 NewTypeParm->removeDefaultArgument();
2493 if (NewTypeParm->isParameterPack()) {
2494 assert(!NewTypeParm->hasDefaultArgument() &&
2495 "Parameter packs can't have a default argument!");
2496 SawParameterPack =
true;
2498 NewTypeParm->hasDefaultArgument() &&
2501 NewDefaultLoc = NewTypeParm->getDefaultArgumentLoc();
2502 SawDefaultArgument =
true;
2505 RedundantDefaultArg =
true;
2506 else if (!
getASTContext().isSameDefaultTemplateArgument(OldTypeParm,
2508 InconsistentDefaultArg =
true;
2512 PreviousDefaultArgLoc = NewDefaultLoc;
2516 NewTypeParm->setInheritedDefaultArgument(
Context, OldTypeParm);
2518 }
else if (NewTypeParm->hasDefaultArgument()) {
2519 SawDefaultArgument =
true;
2520 PreviousDefaultArgLoc = NewTypeParm->getDefaultArgumentLoc();
2521 }
else if (SawDefaultArgument)
2522 MissingDefaultArg =
true;
2524 = dyn_cast<NonTypeTemplateParmDecl>(*NewParam)) {
2529 !NewNonTypeParm->isParameterPack() &&
2531 NewNonTypeParm->getTypeSourceInfo(),
2538 if (NewNonTypeParm->hasDefaultArgument() &&
2540 *
this, TPC, NewNonTypeParm->getLocation(),
2541 NewNonTypeParm->getDefaultArgument().getSourceRange())) {
2542 NewNonTypeParm->removeDefaultArgument();
2548 if (NewNonTypeParm->isParameterPack()) {
2549 assert(!NewNonTypeParm->hasDefaultArgument() &&
2550 "Parameter packs can't have a default argument!");
2551 if (!NewNonTypeParm->isPackExpansion())
2552 SawParameterPack =
true;
2554 NewNonTypeParm->hasDefaultArgument() &&
2557 NewDefaultLoc = NewNonTypeParm->getDefaultArgumentLoc();
2558 SawDefaultArgument =
true;
2560 RedundantDefaultArg =
true;
2562 OldNonTypeParm, NewNonTypeParm)) {
2563 InconsistentDefaultArg =
true;
2567 PreviousDefaultArgLoc = NewDefaultLoc;
2571 NewNonTypeParm->setInheritedDefaultArgument(
Context, OldNonTypeParm);
2573 }
else if (NewNonTypeParm->hasDefaultArgument()) {
2574 SawDefaultArgument =
true;
2575 PreviousDefaultArgLoc = NewNonTypeParm->getDefaultArgumentLoc();
2576 }
else if (SawDefaultArgument)
2577 MissingDefaultArg =
true;
2600 "Parameter packs can't have a default argument!");
2602 SawParameterPack =
true;
2603 }
else if (OldTemplateParm &&
2609 SawDefaultArgument =
true;
2611 RedundantDefaultArg =
true;
2613 OldTemplateParm, NewTemplateParm)) {
2614 InconsistentDefaultArg =
true;
2618 PreviousDefaultArgLoc = NewDefaultLoc;
2623 PreviousDefaultArgLoc
2626 SawDefaultArgument =
true;
2627 PreviousDefaultArgLoc
2629 }
else if (SawDefaultArgument)
2630 MissingDefaultArg =
true;
2636 if (SawParameterPack && (NewParam + 1) != NewParamEnd &&
2638 Diag((*NewParam)->getLocation(),
2639 diag::err_template_param_pack_must_be_last_template_parameter);
2656 if (RedundantDefaultArg) {
2657 Diag(NewDefaultLoc, diag::err_template_param_default_arg_redefinition);
2658 Diag(OldDefaultLoc, diag::note_template_param_prev_default_arg);
2660 }
else if (InconsistentDefaultArg) {
2664 diag::err_template_param_default_arg_inconsistent_redefinition);
2666 diag::note_template_param_prev_default_arg_in_other_module)
2669 }
else if (MissingDefaultArg &&
2677 Diag((*NewParam)->getLocation(),
2678 diag::err_template_param_default_arg_missing);
2679 Diag(PreviousDefaultArgLoc, diag::note_template_param_prev_default_arg);
2681 RemoveDefaultArguments =
true;
2692 if (RemoveDefaultArguments) {
2694 NewParamEnd = NewParams->
end();
2695 NewParam != NewParamEnd; ++NewParam) {
2697 TTP->removeDefaultArgument();
2699 = dyn_cast<NonTypeTemplateParmDecl>(*NewParam))
2700 NTTP->removeDefaultArgument();
2720 bool IgnoreNonTypeDependent;
2725 DependencyChecker(
unsigned Depth,
bool IgnoreNonTypeDependent)
2726 : Depth(Depth), IgnoreNonTypeDependent(IgnoreNonTypeDependent),
2730 : IgnoreNonTypeDependent(IgnoreNonTypeDependent),
Match(
false) {
2733 Depth = PD->getDepth();
2734 }
else if (NonTypeTemplateParmDecl *PD =
2735 dyn_cast<NonTypeTemplateParmDecl>(ND)) {
2736 Depth = PD->getDepth();
2742 bool Matches(
unsigned ParmDepth, SourceLocation Loc = SourceLocation()) {
2743 if (ParmDepth >= Depth) {
2751 bool TraverseStmt(Stmt *S)
override {
2756 if (
auto *E = dyn_cast_or_null<Expr>(S))
2757 if (IgnoreNonTypeDependent && !E->isTypeDependent())
2762 bool TraverseTypeLoc(TypeLoc TL,
bool TraverseQualifier =
true)
override {
2763 if (IgnoreNonTypeDependent && !TL.
isNull() &&
2769 bool VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL)
override {
2773 bool VisitTemplateTypeParmType(TemplateTypeParmType *T)
override {
2775 return IgnoreNonTypeDependent || !Matches(T->getDepth());
2779 if (TemplateTemplateParmDecl *PD =
2781 if (Matches(PD->getDepth()))
2786 bool VisitDeclRefExpr(DeclRefExpr *E)
override {
2787 if (NonTypeTemplateParmDecl *PD =
2788 dyn_cast<NonTypeTemplateParmDecl>(E->
getDecl()))
2789 if (Matches(PD->getDepth(), E->
getExprLoc()))
2791 return DynamicRecursiveASTVisitor::VisitDeclRefExpr(E);
2794 bool VisitUnresolvedLookupExpr(UnresolvedLookupExpr *ULE)
override {
2797 if (Matches(TTP->getDepth(), ULE->
getExprLoc()))
2803 return DynamicRecursiveASTVisitor::VisitUnresolvedLookupExpr(ULE);
2806 bool VisitSubstTemplateTypeParmType(SubstTemplateTypeParmType *T)
override {
2807 return TraverseType(T->getReplacementType());
2810 bool VisitSubstTemplateTypeParmPackType(
2811 SubstTemplateTypeParmPackType *T)
override {
2812 return TraverseTemplateArgument(T->getArgumentPack());
2815 bool TraverseInjectedClassNameType(InjectedClassNameType *T,
2816 bool TraverseQualifier)
override {
2819 return TraverseTemplateArguments(
2820 T->getTemplateArgs(T->getDecl()->getASTContext()));
2829 if (!Params->
size())
2832 DependencyChecker Checker(Params,
false);
2833 Checker.TraverseType(T);
2834 return Checker.Match;
2860 bool &IsMemberSpecialization,
bool &
Invalid,
bool SuppressDiagnostic) {
2861 IsMemberSpecialization =
false;
2875 T =
QualType(Qualifier.getAsType(), 0);
2883 while (!T.isNull()) {
2884 NestedTypes.push_back(T);
2890 = dyn_cast<ClassTemplateSpecializationDecl>(
Record)) {
2893 ExplicitSpecLoc = Spec->getLocation();
2896 }
else if (
Record->getTemplateSpecializationKind()
2898 ExplicitSpecLoc =
Record->getLocation();
2903 T =
Context.getTypeDeclType(Parent);
2909 if (
const TemplateSpecializationType *TST
2910 = T->getAs<TemplateSpecializationType>()) {
2923 T =
Context.getTypeDeclType(Parent);
2931 if (
const DependentNameType *DependentName = T->getAs<DependentNameType>()){
2941 if (
const EnumType *EnumT = T->getAsCanonical<EnumType>()) {
2947 if (
TypeDecl *Parent = dyn_cast<TypeDecl>(
Enum->getParent()))
2948 T =
Context.getCanonicalTypeDeclType(Parent);
2958 std::reverse(NestedTypes.begin(), NestedTypes.end());
2966 bool SawNonEmptyTemplateParameterList =
false;
2968 auto CheckExplicitSpecialization = [&](
SourceRange Range,
bool Recovery) {
2969 if (SawNonEmptyTemplateParameterList) {
2970 if (!SuppressDiagnostic)
2971 Diag(DeclLoc, diag::err_specialize_member_of_template)
2972 << !Recovery << Range;
2974 IsMemberSpecialization =
false;
2981 auto DiagnoseMissingExplicitSpecialization = [&] (
SourceRange Range) {
2983 if (CheckExplicitSpecialization(Range,
true))
2988 if (!ParamLists.empty())
2989 ExpectedTemplateLoc = ParamLists[0]->getTemplateLoc();
2991 ExpectedTemplateLoc = DeclStartLoc;
2993 if (!SuppressDiagnostic)
2994 Diag(DeclLoc, diag::err_template_spec_needs_header)
3001 for (
unsigned TypeIdx = 0, NumTypes = NestedTypes.size(); TypeIdx != NumTypes;
3003 T = NestedTypes[TypeIdx];
3006 bool NeedEmptyTemplateHeader =
false;
3009 bool NeedNonemptyTemplateHeader =
false;
3022 = dyn_cast<ClassTemplatePartialSpecializationDecl>(
Record)) {
3023 ExpectedTemplateParams = Partial->getTemplateParameters();
3024 NeedNonemptyTemplateHeader =
true;
3025 }
else if (
Record->isDependentType()) {
3026 if (
Record->getDescribedClassTemplate()) {
3027 ExpectedTemplateParams =
Record->getDescribedClassTemplate()
3028 ->getTemplateParameters();
3029 NeedNonemptyTemplateHeader =
true;
3032 = dyn_cast<ClassTemplateSpecializationDecl>(
Record)) {
3038 NeedEmptyTemplateHeader =
true;
3041 }
else if (
Record->getTemplateSpecializationKind()) {
3042 if (
Record->getTemplateSpecializationKind()
3044 TypeIdx == NumTypes - 1)
3045 IsMemberSpecialization =
true;
3049 }
else if (
const auto *TST = T->getAs<TemplateSpecializationType>()) {
3052 ExpectedTemplateParams =
Template->getTemplateParameters();
3053 NeedNonemptyTemplateHeader =
true;
3057 NeedNonemptyTemplateHeader =
false;
3068 if (
ParamIdx < ParamLists.size()) {
3069 if (ParamLists[
ParamIdx]->size() == 0) {
3070 if (CheckExplicitSpecialization(ParamLists[
ParamIdx]->getSourceRange(),
3074 SawNonEmptyTemplateParameterList =
true;
3077 if (NeedEmptyTemplateHeader) {
3080 if (TypeIdx == NumTypes - 1)
3081 IsMemberSpecialization =
true;
3083 if (
ParamIdx < ParamLists.size()) {
3084 if (ParamLists[
ParamIdx]->size() > 0) {
3086 if (!SuppressDiagnostic)
3088 diag::err_template_param_list_matches_nontemplate)
3091 ParamLists[
ParamIdx]->getRAngleLoc())
3103 if (DiagnoseMissingExplicitSpecialization(
3110 if (NeedNonemptyTemplateHeader) {
3115 if (IsFriend && T->isDependentType()) {
3116 if (
ParamIdx < ParamLists.size() &&
3118 ExpectedTemplateParams =
nullptr;
3123 if (
ParamIdx < ParamLists.size()) {
3125 if (ExpectedTemplateParams &&
3127 ExpectedTemplateParams,
3140 if (!SuppressDiagnostic)
3141 Diag(DeclLoc, diag::err_template_spec_needs_template_parameters)
3152 if (
ParamIdx >= ParamLists.size()) {
3153 if (TemplateId && !IsFriend) {
3169 if (
ParamIdx < ParamLists.size() - 1) {
3170 bool HasAnyExplicitSpecHeader =
false;
3171 bool AllExplicitSpecHeaders =
true;
3172 for (
unsigned I =
ParamIdx, E = ParamLists.size() - 1; I != E; ++I) {
3173 if (ParamLists[I]->size() == 0)
3174 HasAnyExplicitSpecHeader =
true;
3176 AllExplicitSpecHeaders =
false;
3179 if (!SuppressDiagnostic)
3181 AllExplicitSpecHeaders ? diag::ext_template_spec_extra_headers
3182 : diag::err_template_spec_extra_headers)
3184 ParamLists[ParamLists.size() - 2]->getRAngleLoc());
3189 if (ExplicitSpecLoc.
isValid() && HasAnyExplicitSpecHeader &&
3190 !SuppressDiagnostic)
3191 Diag(ExplicitSpecLoc,
3192 diag::note_explicit_template_spec_does_not_need_header)
3193 << NestedTypes.back();
3198 if (!AllExplicitSpecHeaders)
3209 if (ParamLists.back()->size() == 0 &&
3210 CheckExplicitSpecialization(ParamLists[
ParamIdx]->getSourceRange(),
3216 return ParamLists.back();
3221 Diag(
Template->getLocation(), diag::note_template_declared_here)
3237 Diag((*I)->getLocation(), diag::note_template_declared_here)
3238 << 0 << (*I)->getDeclName();
3268 Keyword, BaseTemplate, TemplateLoc, Args,
3274 return BaseTemplateInst;
3279 switch (Ts.size()) {
3289 return lookUpCommonType(Ts[0], Ts[0]);
3303 return lookUpCommonType(D1, D2);
3308 auto CheckConditionalOperands = [&](
bool ConstRefQual) ->
QualType {
3347 if (
auto Res = CheckConditionalOperands(
false); !Res.isNull())
3360 return CheckConditionalOperands(
true);
3371 for (
auto T : llvm::drop_begin(Ts)) {
3382 DeclContext *DC = RT->getDecl()->getDeclContext();
3397 bool Literal =
false;
3400 auto SpecDecl = dyn_cast<ClassTemplateSpecializationDecl>(RT->getDecl());
3404 QualType ConstantType = LiteralArgs[0].getAsType();
3407 LiteralLoc = SpecDecl->getSourceRange().getBegin();
3411 RT->getDecl()->getName() ==
"integral_constant") {
3412 auto SpecDecl = dyn_cast<ClassTemplateSpecializationDecl>(RT->getDecl());
3417 QualType ConstantType = ConstantArgs[0].getAsType();
3418 llvm::APInt
Value = ConstantArgs[1].getAsIntegral();
3421 return SpirvOperand::createLiteral(
Value);
3422 return SpirvOperand::createConstant(ConstantType,
Value);
3423 }
else if (Literal) {
3424 SemaRef.
Diag(LiteralLoc, diag::err_hlsl_vk_literal_must_contain_constant);
3425 return SpirvOperand();
3429 diag::err_call_incomplete_argument))
3430 return SpirvOperand();
3431 return SpirvOperand::createType(OperandArg);
3441 "Builtin template arguments do not match its parameters");
3444 case BTK__make_integer_seq: {
3448 QualType OrigType = Converted[1].getAsType();
3452 SemaRef.
Diag(TemplateArgs[1].getLocation(),
3453 diag::err_integer_sequence_integral_element_type);
3467 OrigType, TemplateArgs[1].getLocation())));
3469 if (llvm::APSInt NumArgs = NumArgsArg.
getAsIntegral(); NumArgs >= 0) {
3471 for (llvm::APSInt I(NumArgs.getBitWidth(), NumArgs.isUnsigned());
3475 TA, OrigType, TemplateArgs[2].getLocation()));
3480 SemaRef.
Diag(TemplateArgs[2].getLocation(),
3481 diag::err_integer_sequence_negative_length);
3488 TemplateLoc, SyntheticTemplateArgs,
3493 case BTK__type_pack_element: {
3497 assert(Converted.size() == 2 &&
3498 "__type_pack_element should be given an index and a parameter pack");
3505 assert(Index >= 0 &&
"the index used with __type_pack_element should be of "
3506 "type std::size_t, and hence be non-negative");
3508 if (Index >= Ts.pack_size()) {
3509 SemaRef.
Diag(TemplateArgs[0].getLocation(),
3510 diag::err_type_pack_element_out_of_bounds);
3515 int64_t N = Index.getExtValue();
3516 return Ts.getPackAsArray()[N].getAsType();
3519 case BTK__builtin_common_type: {
3520 assert(Converted.size() == 4);
3521 if (llvm::any_of(Converted, [](
auto &
C) {
return C.isDependent(); }))
3524 TemplateName BaseTemplate = Converted[0].getAsTemplate();
3532 CT, TemplateArgs[1].getLocation())));
3533 TemplateName HasTypeMember = Converted[1].getAsTemplate();
3538 QualType HasNoTypeMember = Converted[2].getAsType();
3539 return HasNoTypeMember;
3542 case BTK__hlsl_spirv_type: {
3543 assert(Converted.size() == 4);
3545 if (!Context.getTargetInfo().getTriple().isSPIRV()) {
3546 SemaRef.
Diag(TemplateLoc, diag::err_hlsl_spirv_only) << BTD;
3549 if (llvm::any_of(Converted, [](
auto &
C) {
return C.isDependent(); }))
3552 uint64_t Opcode = Converted[0].getAsIntegral().getZExtValue();
3553 uint64_t Size = Converted[1].getAsIntegral().getZExtValue();
3554 uint64_t Alignment = Converted[2].getAsIntegral().getZExtValue();
3560 for (
auto &OperandTA : OperandArgs) {
3561 QualType OperandArg = OperandTA.getAsType();
3563 TemplateArgs[3].getLocation());
3564 if (!Operand.isValid())
3566 Operands.push_back(Operand);
3569 return Context.getHLSLInlineSpirvType(Opcode, Size, Alignment, Operands);
3571 case BTK__builtin_dedup_pack: {
3572 assert(Converted.size() == 1 &&
"__builtin_dedup_pack should be given "
3573 "a parameter pack");
3582 llvm::SmallDenseSet<QualType> Seen;
3586 if (!Seen.insert(T.getAsType().getCanonicalType()).second)
3588 OutArgs.push_back(T);
3590 return Context.getSubstBuiltinTemplatePack(
3594 llvm_unreachable(
"unexpected BuiltinTemplateDecl!");
3612 if (
auto BinOp = dyn_cast<BinaryOperator>(Clause->IgnoreParenImpCasts())) {
3613 if (BinOp->getOpcode() == BO_LAnd) {
3620 Terms.push_back(Clause);
3628 auto *BinOp = dyn_cast<BinaryOperator>(
Cond->IgnoreParenImpCasts());
3629 if (!BinOp)
return Cond;
3631 if (BinOp->getOpcode() != BO_LOr)
return Cond;
3634 Expr *LHS = BinOp->getLHS();
3636 if (!InnerBinOp)
return Cond;
3638 if (InnerBinOp->getOpcode() != BO_EQ ||
3649 if (MacroName ==
"CONCEPT_REQUIRES" || MacroName ==
"CONCEPT_REQUIRES_")
3650 return BinOp->getRHS();
3660class FailedBooleanConditionPrinterHelper :
public PrinterHelper {
3662 explicit FailedBooleanConditionPrinterHelper(
const PrintingPolicy &P)
3665 bool handledStmt(Stmt *E, raw_ostream &OS)
override {
3666 const auto *DR = dyn_cast<DeclRefExpr>(E);
3667 if (DR && DR->getQualifier()) {
3670 DR->getQualifier().print(OS, Policy,
true);
3672 const ValueDecl *VD = DR->getDecl();
3674 if (
const auto *IV = dyn_cast<VarTemplateSpecializationDecl>(VD)) {
3676 printTemplateArgumentList(
3677 OS, IV->getTemplateArgs().asArray(), Policy,
3678 IV->getSpecializedTemplate()->getTemplateParameters());
3686 const PrintingPolicy Policy;
3691std::pair<Expr *, std::string>
3700 Expr *FailedCond =
nullptr;
3701 for (
Expr *Term : Terms) {
3715 if (Term->EvaluateAsBooleanCondition(Succeeded,
Context) &&
3717 FailedCond = TermAsWritten;
3722 FailedCond =
Cond->IgnoreParenImpCasts();
3724 std::string Description;
3726 llvm::raw_string_ostream Out(Description);
3729 FailedBooleanConditionPrinterHelper Helper(Policy);
3730 FailedCond->
printPretty(Out, &Helper, Policy, 0,
"\n",
nullptr);
3732 return { FailedCond, Description };
3748 std::unique_ptr<CorrectionCandidateCallback> clone()
override {
3749 return std::make_unique<CandidateCallback>(*
this);
3760 std::nullopt,
false,
3776 if (
const auto *S = UnderlyingName.getAsSubstTemplateTemplateParmPack()) {
3778 }
else if (
const auto *DTN = UnderlyingName.getAsDependentTemplateName()) {
3779 if (DTN->getName().getIdentifier())
3787 }
else if (
const auto *ATN = UnderlyingName.getAsAssumedTemplateName()) {
3789 *
this,
Scope, ATN, TemplateLoc);
3790 CorrectedName.isNull()) {
3791 Diag(TemplateLoc, diag::err_no_template) << ATN->getDeclName();
3794 Name = CorrectedName;
3802 if (ForNestedNameSpecifier)
3803 Diag(TemplateLoc, diag::err_non_type_template_in_nested_name_specifier)
3804 << isa_and_nonnull<VarTemplateDecl>(
Template) << Name << R;
3806 Diag(TemplateLoc, diag::err_template_id_not_a_type) << Name << R;
3831 dyn_cast<TypeAliasTemplateDecl>(
Template)) {
3839 SemaRef.Diag(TemplateLoc, diag::err_tag_reference_non_tag)
3876 std::optional<ContextRAII> SavedContext;
3878 SavedContext.emplace(*
this,
AliasTemplate->getDeclContext());
3883 if (CanonType.
isNull()) {
3890 Trap ? Trap->getDeductionInfo() :
nullptr) {
3893 diag::err_typename_nested_not_found_enable_if &&
3894 TemplateArgs[0].getArgument().getKind() ==
3897 std::string FailedDescription;
3898 std::tie(FailedCond, FailedDescription) =
3910 PDiag(diag::err_typename_nested_not_found_requirement)
3918 }
else if (
auto *BTD = dyn_cast<BuiltinTemplateDecl>(
Template)) {
3922 TemplateSpecializationType::anyDependentTemplateArguments(
3931 CanonType =
Context.getCanonicalTemplateSpecializationType(
3933 Context.getCanonicalTemplateName(Name,
true),
3946 if (Ctx->isFileContext())
break;
3955 !
Record->getDescribedClassTemplate())
3964 if (CanonType != Injected)
3977 dyn_cast<ClassTemplateDecl>(
Template)) {
3980 void *InsertPos =
nullptr;
4017 "type of non-dependent specialization is not a RecordType");
4019 llvm_unreachable(
"Unhandled template kind");
4025 return Context.getTemplateSpecializationType(
4037 assert(ATN &&
"not an assumed template name");
4038 II = ATN->getDeclName().getAsIdentifierInfo();
4055 SourceLocation RAngleLoc,
bool IsCtorOrDtorName,
bool IsClassName,
4060 if (!IsCtorOrDtorName && !IsClassName && SS.
isSet()) {
4086 TemplateD, TemplateII, TemplateIILoc, LAngleLoc,
4087 TemplateArgsIn, RAngleLoc);
4094 auto *LookupRD = dyn_cast_or_null<CXXRecordDecl>(LookupCtx);
4095 if (LookupRD && LookupRD->getIdentifier() == TemplateII) {
4098 ? diag::err_out_of_line_qualified_id_type_names_constructor
4099 : diag::ext_out_of_line_qualified_id_type_names_constructor)
4110 ElaboratedKeyword, TemplateD.
get(), TemplateIILoc, TemplateArgs,
4119 TemplateIILoc, TemplateArgs);
4152 if (
const RecordType *RT =
Result->getAs<RecordType>()) {
4156 assert(Id &&
"templated class must have an identifier");
4160 Diag(TagLoc, diag::err_use_with_wrong_tag)
4197 const TemplateTypeParmType *TPT =
4199 return TPT && !
Type.hasQualifiers() &&
4200 TPT->getDepth() == Depth && TPT->getIndex() == Index;
4208 dyn_cast<NonTypeTemplateParmDecl>(DRE->
getDecl());
4214 dyn_cast_or_null<TemplateTemplateParmDecl>(
4218 llvm_unreachable(
"unexpected kind of template argument");
4224 if (Params->
size() != Args.size() || Params->
size() != SpecParams->
size())
4227 unsigned Depth = Params->
getDepth();
4229 for (
unsigned I = 0, N = Args.size(); I != N; ++I) {
4247 if (
auto *SpecNTTP =
4248 dyn_cast<NonTypeTemplateParmDecl>(SpecParams->
getParam(I))) {
4249 auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(Params->
getParam(I));
4250 if (!NTTP || NTTP->getType().getCanonicalType() !=
4251 SpecNTTP->getType().getCanonicalType())
4259template<
typename PartialSpecDecl>
4261 if (Partial->getDeclContext()->isDependentContext())
4270 auto *
Template = Partial->getSpecializedTemplate();
4271 S.
Diag(Partial->getLocation(),
4272 diag::ext_partial_spec_not_more_specialized_than_primary)
4282 diag::note_partial_spec_not_more_specialized_than_primary)
4288 Template->getAssociatedConstraints(TemplateAC);
4289 Partial->getAssociatedConstraints(PartialAC);
4296 const llvm::SmallBitVector &DeducibleParams) {
4297 for (
unsigned I = 0, N = DeducibleParams.size(); I != N; ++I) {
4298 if (!DeducibleParams[I]) {
4300 if (Param->getDeclName())
4301 S.
Diag(Param->getLocation(), diag::note_non_deducible_parameter)
4302 << Param->getDeclName();
4304 S.
Diag(Param->getLocation(), diag::note_non_deducible_parameter)
4311template<
typename PartialSpecDecl>
4313 PartialSpecDecl *Partial) {
4326 auto *TemplateParams = Partial->getTemplateParameters();
4327 llvm::SmallBitVector DeducibleParams(TemplateParams->size());
4329 TemplateParams->getDepth(), DeducibleParams);
4331 if (!DeducibleParams.all()) {
4332 unsigned NumNonDeducible = DeducibleParams.size() - DeducibleParams.count();
4333 S.
Diag(Partial->getLocation(), diag::ext_partial_specs_not_deducible)
4335 << (NumNonDeducible > 1)
4337 Partial->getTemplateArgsAsWritten()->RAngleLoc);
4358 llvm::SmallBitVector DeducibleParams(TemplateParams->size());
4360 for (
unsigned I = 0; I != TemplateParams->size(); ++I) {
4362 auto *Param = TemplateParams->getParam(I);
4364 DeducibleParams[I] =
true;
4367 if (!DeducibleParams.all()) {
4368 unsigned NumNonDeducible = DeducibleParams.size() - DeducibleParams.count();
4369 Diag(TD->
getLocation(), diag::err_deduction_guide_template_not_deducible)
4370 << (NumNonDeducible > 1);
4381 "Variable template specialization is declared with a template id.");
4398 FnTemplate = *OTS->begin();
4408 if (
const auto *DSA =
VarTemplate->getAttr<NoSpecializationsAttr>()) {
4409 auto Message = DSA->getMessage();
4410 Diag(TemplateNameLoc, diag::warn_invalid_specialization)
4412 Diag(DSA->getLoc(), diag::note_marked_here) << DSA;
4416 for (
unsigned I = 0, N = TemplateArgs.
size(); I != N; ++I)
4436 TemplateArgs.
size(),
4443 !TemplateSpecializationType::anyDependentTemplateArguments(
4445 Diag(TemplateNameLoc, diag::err_partial_spec_fully_specialized)
4452 (!
Context.getLangOpts().CPlusPlus20 ||
4458 Diag(TemplateNameLoc, diag::err_partial_spec_args_match_primary_template)
4468 void *InsertPos =
nullptr;
4472 PrevDecl =
VarTemplate->findPartialSpecialization(
4498 cast_or_null<VarTemplatePartialSpecializationDecl>(PrevDecl);
4507 VarTemplate->AddPartialSpecialization(Partial, InsertPos);
4541 Diag(TemplateNameLoc, diag::err_specialization_after_instantiation)
4545 diag::note_instantiation_required_here)
4575struct PartialSpecMatchResult {
4583 if (Var->
getName() !=
"format_kind" ||
4604 bool SetWrittenArgs) {
4605 assert(
Template &&
"A variable template id without template?");
4617 if (
Template->getDeclContext()->isDependentContext() ||
4618 TemplateSpecializationType::anyDependentTemplateArguments(
4625 return Context.isSameTemplateArgument(Arg1, Arg2);
4631 !IsLibstdcxxStdFormatKind(
PP, Var) &&
4635 IsSameTemplateArg)) {
4636 Diag(TemplateNameLoc,
4637 diag::err_auto_variable_cannot_appear_in_own_initializer)
4638 << diag::ParsingInitFor::VarTemplate << Var << Var->
getType();
4643 Template->getPartialSpecializations(PartialSpecs);
4647 Partial->getTemplateArgs().asArray(),
4648 IsSameTemplateArg)) {
4649 Diag(TemplateNameLoc,
4650 diag::err_auto_variable_cannot_appear_in_own_initializer)
4651 << diag::ParsingInitFor::VarTemplatePartialSpec << Partial
4652 << Partial->getType();
4661 void *InsertPos =
nullptr;
4665 if (Spec->getType()->isUndeducedType()) {
4667 Diag(TemplateNameLoc,
4668 diag::err_auto_variable_cannot_appear_in_own_initializer)
4669 << diag::ParsingInitFor::VarTemplateExplicitSpec << Spec
4674 Diag(TemplateNameLoc, diag::err_var_template_spec_type_depends_on_self)
4675 << Spec << Spec->getType();
4689 bool AmbiguousPartialSpec =
false;
4690 typedef PartialSpecMatchResult MatchResult;
4702 Template->getPartialSpecializations(PartialSpecs);
4714 if (
Template->isMemberSpecialization() &&
4715 !Partial->isMemberSpecialization())
4730 Matched.push_back(PartialSpecMatchResult());
4731 Matched.back().Partial = Partial;
4736 if (Matched.size() >= 1) {
4738 if (Matched.size() == 1) {
4751 PEnd = Matched.end();
4754 PointOfInstantiation) ==
4762 PEnd = Matched.end();
4765 P->Partial, Best->Partial,
4766 PointOfInstantiation) != Best->Partial) {
4767 AmbiguousPartialSpec =
true;
4774 InstantiationPattern = Best->Partial;
4775 PartialSpecArgs = Best->Args;
4786 if (AmbiguousPartialSpec) {
4788 Diag(PointOfInstantiation, diag::err_partial_spec_ordering_ambiguous)
4791 for (MatchResult P : Matched)
4792 Diag(P.Partial->getLocation(), diag::note_partial_spec_match)
4804 Decl->setTemplateArgsAsWritten(TemplateArgs);
4807 dyn_cast<VarTemplatePartialSpecializationDecl>(InstantiationPattern))
4808 Decl->setInstantiationOf(D, PartialSpecArgs);
4812 assert(
Decl &&
"No variable template specialization?");
4822 *TemplateArgs,
false);
4823 if (
Decl.isInvalid())
4842 assert(
Template &&
"A variable template id without template?");
4845 Template->templateParameterKind() !=
4870 SourceLocation(), NameInfo,
false, TemplateArgs, R.begin(), R.end(),
4877 Diag(Loc, diag::err_template_missing_args)
4885 bool TemplateKeyword,
4897 bool DoCheckConstraintSatisfaction) {
4898 assert(NamedConcept &&
"A concept template id without a template?");
4905 NamedConcept, ConceptNameInfo.
getLoc(),
4924 bool AreArgsDependent =
4925 TemplateSpecializationType::anyDependentTemplateArguments(
4932 TemplateKWLoc, ConceptNameInfo, FoundDecl, NamedConcept,
4936 if (
const auto *
Concept = dyn_cast<ConceptDecl>(NamedConcept);
4938 DoCheckConstraintSatisfaction) {
4957 Context,
CL, CSD, AreArgsDependent ?
nullptr : &Satisfaction);
4976 assert(!R.isAmbiguous() &&
"ambiguous lookup when building templateid");
4982 SS, TemplateKWLoc.
isValid(), TD, R.getNameLoc());
4986 bool KnownDependent =
false;
4991 R.getRepresentativeDecl(), TemplateKWLoc, TemplateArgs);
4995 KnownDependent =
true;
4999 R.suppressDiagnostics();
5003 R.getRepresentativeDecl(),
5013 TemplateKWLoc, TemplateArgs);
5018 TemplateKWLoc, R.getLookupNameInfo(), RequiresADL, TemplateArgs,
5019 R.begin(), R.end(), KnownDependent,
5024 if (ULE->
getType() ==
Context.OverloadTy && R.isSingleResult() &&
5025 !R.getFoundDecl()->getAsFunction())
5035 assert(TemplateArgs || TemplateKWLoc.
isValid());
5039 false, TemplateKWLoc))
5042 if (R.isAmbiguous())
5045 if (R.wasNotFoundInCurrentInstantiation() || SS.
isInvalid())
5068 bool EnteringContext,
5070 bool AllowInjectedClassName) {
5074 diag::warn_cxx98_compat_template_outside_of_template :
5075 diag::ext_template_outside_of_template)
5085 else if (ObjectType)
5104 bool MemberOfUnknownSpecialization;
5106 ObjectType, EnteringContext,
Result,
5107 MemberOfUnknownSpecialization);
5110 auto *LookupRD = dyn_cast_or_null<CXXRecordDecl>(LookupCtx);
5111 if (!AllowInjectedClassName && SS.
isNotEmpty() && LookupRD &&
5124 diag::ext_out_of_line_qualified_id_type_names_constructor)
5132 if (!MemberOfUnknownSpecialization) {
5163 {Qualifier, Name.Identifier, TemplateKWLoc.isValid()}));
5168 {Qualifier, Name.OperatorFunctionId.Operator,
5169 TemplateKWLoc.isValid()}));
5184 diag::err_template_kw_refers_to_dependent_non_template)
5186 << TemplateKWLoc.
isValid() << TemplateKWLoc;
5223 dyn_cast<DependentScopeDeclRefExpr>(Arg.
getAsExpr())) {
5224 SS.
Adopt(ArgExpr->getQualifierLoc());
5225 NameInfo = ArgExpr->getNameInfo();
5227 dyn_cast<CXXDependentScopeMemberExpr>(Arg.
getAsExpr())) {
5228 if (ArgExpr->isImplicitAccess()) {
5229 SS.
Adopt(ArgExpr->getQualifierLoc());
5230 NameInfo = ArgExpr->getMemberNameInfo();
5239 Result.wasNotFoundInCurrentInstantiation()) {
5240 assert(SS.
getScopeRep() &&
"dependent scope expr must has a scope!");
5244 ? diag::ext_ms_template_type_arg_missing_typename
5245 : diag::err_template_arg_must_be_type_suggest)
5278 SugaredConverted.push_back(Arg);
5279 CanonicalConverted.push_back(Arg);
5285 Diag(SR.
getBegin(), diag::err_template_arg_must_be_type) << SR;
5299 ArgType->isObjCLifetimeType() &&
5307 CanonicalConverted.push_back(
5342 Output = Param->getDefaultArgument();
5356 for (
unsigned i = 0, e = Param->getDepth(); i != e; ++i)
5359 bool ForLambdaCallOperator =
false;
5360 if (
const auto *Rec = dyn_cast<CXXRecordDecl>(
Template->getDeclContext()))
5361 ForLambdaCallOperator = Rec->isLambda();
5363 !ForLambdaCallOperator);
5366 Param->getDefaultArgumentLoc(),
5367 Param->getDeclName()))
5411 for (
unsigned i = 0, e = Param->getDepth(); i != e; ++i)
5418 TemplateArgLists, Output);
5455 SugaredConverted,
SourceRange(TemplateLoc, RAngleLoc));
5462 for (
unsigned i = 0, e = Param->getDepth(); i != e; ++i)
5479 HasDefaultArg =
false;
5485 HasDefaultArg =
true;
5488 RAngleLoc, TypeParm, SugaredConverted,
5489 CanonicalConverted, Output))
5495 = dyn_cast<NonTypeTemplateParmDecl>(Param)) {
5499 HasDefaultArg =
true;
5502 RAngleLoc, NonTypeParm, SugaredConverted,
5503 CanonicalConverted, Output))
5513 HasDefaultArg =
true;
5517 *
this,
Template, TemplateKWLoc, TemplateNameLoc, RAngleLoc, TempTempParm,
5518 SugaredConverted, CanonicalConverted, QualifierLoc);
5542 TemplateName Name = TagLoc.getTypePtr()->getTemplateName(Context);
5548 TagLoc.getQualifierLoc(), TagLoc.getNameLoc());
5555 unsigned ArgumentPackIndex,
5569 QualType NTTPType = NTTP->getType();
5570 if (NTTP->isParameterPack() && NTTP->isExpandedParameterPack())
5571 NTTPType = NTTP->getExpansionType(ArgumentPackIndex);
5585 if (
auto *PET = NTTPType->
getAs<PackExpansionType>()) {
5587 NTTPType =
SubstType(PET->getPattern(), MLTAL, NTTP->getLocation(),
5588 NTTP->getDeclName());
5590 NTTPType =
SubstType(NTTPType, MLTAL, NTTP->getLocation(),
5591 NTTP->getDeclName());
5598 NTTP->getLocation());
5603 auto checkExpr = [&](
Expr *E) ->
Expr * {
5606 NTTP, NTTPType, E, SugaredResult, CanonicalResult,
5618 llvm_unreachable(
"Should never see a NULL template argument here");
5622 Expr *R = checkExpr(E);
5647 assert(R.isUsable());
5648 if (!checkExpr(R.get()))
5687 NTTP, NTTPType, E.
get(), SugaredResult, CanonicalResult,
5719 if (T->isFunctionType())
5720 Diag(SR.
getBegin(), diag::err_template_arg_nontype_ambig) << SR << T;
5722 Diag(SR.
getBegin(), diag::err_template_arg_must_be_expr) << SR;
5728 llvm_unreachable(
"Caller must expand template argument packs");
5773 ArgLoc = ConvertedArg;
5778 llvm_unreachable(
"Should never see a NULL template argument here");
5789 Context.getCanonicalTemplateArgument(Arg));
5817 llvm_unreachable(
"non-type argument with template template parameter");
5820 llvm_unreachable(
"Caller must expand template argument packs");
5827template<
typename TemplateParmDecl>
5830 const TemplateParmDecl *D,
5835 ->getTemplateParameters()
5836 ->getParam(D->getIndex()));
5843 D->getDefaultArgumentLoc(), Modules,
5854 S.
Diag(Loc, diag::err_template_arg_list_different_arity)
5871 DefaultArgs, PartialTemplateArgs, CTAI, UpdateArgsWithConversions,
5902 unsigned ArgIdx = 0, NumArgs = NewArgs.
size();
5905 ParamEnd = Params->
end(),
5909 if (
size_t ParamIdx = Param - ParamBegin;
5912 assert(ArgIdx == NumArgs &&
"bad default argument deduction");
5914 assert(Param + DefaultArgs.
Args.size() <= ParamEnd);
5919 Context.getCanonicalTemplateArgument(DefArg));
5929 if (*Expansions == SugaredArgumentPack.size()) {
5934 SugaredArgumentPack.clear();
5938 CanonicalArgumentPack.clear();
5943 }
else if (ArgIdx == NumArgs && !PartialTemplateArgs) {
5945 Diag(TemplateLoc, diag::err_template_arg_list_different_arity)
5957 dyn_cast<NonTypeTemplateParmDecl>(*Param);
5959 auto TL = NTTP->getTypeSourceInfo()
5964 for (
const auto &UPP : Unexpanded) {
5965 auto *TST = UPP.first.dyn_cast<
const TemplateSpecializationType *>();
5970 Diag(TL.getEllipsisLoc(),
5971 diag::err_unsupported_builtin_template_pack_expansion)
5972 << TST->getTemplateName();
5977 if (ArgIdx < NumArgs) {
5979 bool NonPackParameter =
5989 if (!(*Param)->isTemplateParameterPack() ||
5996 RAngleLoc, SugaredArgumentPack.size(), CTAI,
6001 clang::isSubstitutedDefaultArgument(
Context, Arg, *Param,
6011 RAngleLoc, SugaredArgumentPack.size(), CTAI,
6018 if (ArgIsExpansion && NonPackParameter) {
6028 diag::err_template_expansion_into_fixed_list)
6039 if (ArgIsExpansion && (CTAI.
MatchingTTP || NonPackParameter)) {
6043 if (!SugaredArgumentPack.empty()) {
6047 SugaredArgumentPack.begin(),
6048 SugaredArgumentPack.end());
6049 SugaredArgumentPack.clear();
6052 CanonicalArgumentPack.begin(),
6053 CanonicalArgumentPack.end());
6054 CanonicalArgumentPack.clear();
6057 while (ArgIdx < NumArgs) {
6061 Context.getCanonicalTemplateArgument(Arg));
6068 if ((*Param)->isTemplateParameterPack()) {
6083 if (PartialTemplateArgs) {
6084 if ((*Param)->isTemplateParameterPack() && !SugaredArgumentPack.empty()) {
6095 if ((*Param)->isTemplateParameterPack()) {
6097 "Should have dealt with this already");
6102 if (Param + 1 != ParamEnd) {
6104 (
Template->getMostRecentDecl()->getKind() != Decl::Kind::Concept) &&
6105 "Concept templates must have parameter packs at the end.");
6111 SugaredArgumentPack.clear();
6115 CanonicalArgumentPack.clear();
6134 if (!HasDefaultArg) {
6139 dyn_cast<NonTypeTemplateParmDecl>(*Param))
6173 if (isTemplateTemplateParameter)
6188 while (ArgIdx < NumArgs &&
6189 NewArgs[ArgIdx].
getArgument().isPackExpansion()) {
6193 Context.getCanonicalTemplateArgument(Arg));
6199 if (ArgIdx < NumArgs) {
6200 Diag(TemplateLoc, diag::err_template_arg_list_different_arity)
6211 if (UpdateArgsWithConversions)
6212 TemplateArgs = std::move(NewArgs);
6214 if (!PartialTemplateArgs) {
6221 if (
auto *TD = dyn_cast<TemplateDecl>(NewContext))
6223 auto *RD = dyn_cast<CXXRecordDecl>(NewContext);
6227 dyn_cast_or_null<CXXMethodDecl>(
Template->getTemplatedDecl()))
6228 ThisQuals =
Method->getMethodQualifiers();
6252 class UnnamedLocalNoLinkageFinder
6253 :
public TypeVisitor<UnnamedLocalNoLinkageFinder, bool>
6261 UnnamedLocalNoLinkageFinder(
Sema &S,
SourceRange SR) : S(S), SR(SR) { }
6264 return T.isNull() ?
false : inherited::Visit(T.getTypePtr());
6267#define TYPE(Class, Parent) \
6268 bool Visit##Class##Type(const Class##Type *);
6269#define ABSTRACT_TYPE(Class, Parent) \
6270 bool Visit##Class##Type(const Class##Type *) { return false; }
6271#define NON_CANONICAL_TYPE(Class, Parent) \
6272 bool Visit##Class##Type(const Class##Type *) { return false; }
6273#include "clang/AST/TypeNodes.inc"
6275 bool VisitTagDecl(
const TagDecl *Tag);
6280bool UnnamedLocalNoLinkageFinder::VisitBuiltinType(
const BuiltinType*) {
6284bool UnnamedLocalNoLinkageFinder::VisitComplexType(
const ComplexType* T) {
6288bool UnnamedLocalNoLinkageFinder::VisitPointerType(
const PointerType* T) {
6292bool UnnamedLocalNoLinkageFinder::VisitBlockPointerType(
6297bool UnnamedLocalNoLinkageFinder::VisitLValueReferenceType(
6302bool UnnamedLocalNoLinkageFinder::VisitRValueReferenceType(
6307bool UnnamedLocalNoLinkageFinder::VisitMemberPointerType(
6312 return VisitTagDecl(RD);
6316bool UnnamedLocalNoLinkageFinder::VisitConstantArrayType(
6321bool UnnamedLocalNoLinkageFinder::VisitIncompleteArrayType(
6326bool UnnamedLocalNoLinkageFinder::VisitVariableArrayType(
6331bool UnnamedLocalNoLinkageFinder::VisitDependentSizedArrayType(
6336bool UnnamedLocalNoLinkageFinder::VisitDependentSizedExtVectorType(
6341bool UnnamedLocalNoLinkageFinder::VisitDependentSizedMatrixType(
6346bool UnnamedLocalNoLinkageFinder::VisitDependentAddressSpaceType(
6351bool UnnamedLocalNoLinkageFinder::VisitVectorType(
const VectorType* T) {
6355bool UnnamedLocalNoLinkageFinder::VisitDependentVectorType(
6360bool UnnamedLocalNoLinkageFinder::VisitExtVectorType(
const ExtVectorType* T) {
6364bool UnnamedLocalNoLinkageFinder::VisitConstantMatrixType(
6369bool UnnamedLocalNoLinkageFinder::VisitFunctionProtoType(
6379bool UnnamedLocalNoLinkageFinder::VisitFunctionNoProtoType(
6384bool UnnamedLocalNoLinkageFinder::VisitUnresolvedUsingType(
6389bool UnnamedLocalNoLinkageFinder::VisitTypeOfExprType(
const TypeOfExprType*) {
6393bool UnnamedLocalNoLinkageFinder::VisitTypeOfType(
const TypeOfType* T) {
6394 return Visit(T->getUnmodifiedType());
6397bool UnnamedLocalNoLinkageFinder::VisitDecltypeType(
const DecltypeType*) {
6401bool UnnamedLocalNoLinkageFinder::VisitPackIndexingType(
6402 const PackIndexingType *) {
6406bool UnnamedLocalNoLinkageFinder::VisitUnaryTransformType(
6407 const UnaryTransformType*) {
6411bool UnnamedLocalNoLinkageFinder::VisitAutoType(
const AutoType *T) {
6412 return Visit(T->getDeducedType());
6415bool UnnamedLocalNoLinkageFinder::VisitDeducedTemplateSpecializationType(
6416 const DeducedTemplateSpecializationType *T) {
6417 return Visit(T->getDeducedType());
6420bool UnnamedLocalNoLinkageFinder::VisitRecordType(
const RecordType* T) {
6421 return VisitTagDecl(T->getDecl()->getDefinitionOrSelf());
6424bool UnnamedLocalNoLinkageFinder::VisitEnumType(
const EnumType* T) {
6425 return VisitTagDecl(T->getDecl()->getDefinitionOrSelf());
6428bool UnnamedLocalNoLinkageFinder::VisitTemplateTypeParmType(
6429 const TemplateTypeParmType*) {
6433bool UnnamedLocalNoLinkageFinder::VisitSubstTemplateTypeParmPackType(
6434 const SubstTemplateTypeParmPackType *) {
6438bool UnnamedLocalNoLinkageFinder::VisitSubstBuiltinTemplatePackType(
6439 const SubstBuiltinTemplatePackType *) {
6443bool UnnamedLocalNoLinkageFinder::VisitTemplateSpecializationType(
6444 const TemplateSpecializationType*) {
6448bool UnnamedLocalNoLinkageFinder::VisitInjectedClassNameType(
6449 const InjectedClassNameType* T) {
6450 return VisitTagDecl(T->getDecl()->getDefinitionOrSelf());
6453bool UnnamedLocalNoLinkageFinder::VisitDependentNameType(
6454 const DependentNameType* T) {
6455 return VisitNestedNameSpecifier(T->getQualifier());
6458bool UnnamedLocalNoLinkageFinder::VisitPackExpansionType(
6459 const PackExpansionType* T) {
6460 return Visit(T->getPattern());
6463bool UnnamedLocalNoLinkageFinder::VisitObjCObjectType(
const ObjCObjectType *) {
6467bool UnnamedLocalNoLinkageFinder::VisitObjCInterfaceType(
6472bool UnnamedLocalNoLinkageFinder::VisitObjCObjectPointerType(
6477bool UnnamedLocalNoLinkageFinder::VisitAtomicType(
const AtomicType* T) {
6481bool UnnamedLocalNoLinkageFinder::VisitOverflowBehaviorType(
6482 const OverflowBehaviorType *T) {
6483 return Visit(T->getUnderlyingType());
6486bool UnnamedLocalNoLinkageFinder::VisitPipeType(
const PipeType* T) {
6490bool UnnamedLocalNoLinkageFinder::VisitBitIntType(
const BitIntType *T) {
6494bool UnnamedLocalNoLinkageFinder::VisitArrayParameterType(
6496 return VisitConstantArrayType(T);
6499bool UnnamedLocalNoLinkageFinder::VisitDependentBitIntType(
6504bool UnnamedLocalNoLinkageFinder::VisitTagDecl(
const TagDecl *Tag) {
6505 if (
Tag->getDeclContext()->isFunctionOrMethod()) {
6506 S.Diag(SR.getBegin(), S.getLangOpts().CPlusPlus11
6507 ? diag::warn_cxx98_compat_template_arg_local_type
6508 : diag::ext_template_arg_local_type)
6509 << S.Context.getCanonicalTagType(Tag) << SR;
6513 if (!
Tag->hasNameForLinkage()) {
6514 S.Diag(SR.getBegin(),
6515 S.getLangOpts().CPlusPlus11 ?
6516 diag::warn_cxx98_compat_template_arg_unnamed_type :
6517 diag::ext_template_arg_unnamed_type) << SR;
6518 S.Diag(
Tag->getLocation(), diag::note_template_unnamed_type_here);
6525bool UnnamedLocalNoLinkageFinder::VisitNestedNameSpecifier(
6536 llvm_unreachable(
"Invalid NestedNameSpecifier::Kind!");
6539bool UnnamedLocalNoLinkageFinder::VisitHLSLAttributedResourceType(
6540 const HLSLAttributedResourceType *T) {
6541 if (T->hasContainedType() && Visit(T->getContainedType()))
6543 return Visit(T->getWrappedType());
6546bool UnnamedLocalNoLinkageFinder::VisitHLSLInlineSpirvType(
6547 const HLSLInlineSpirvType *T) {
6548 for (
auto &Operand : T->getOperands())
6550 if (Visit(
Operand.getResultType()))
6556 assert(ArgInfo &&
"invalid TypeSourceInfo");
6562 return Diag(SR.
getBegin(), diag::err_variably_modified_template_arg) << Arg;
6563 }
else if (
Context.hasSameUnqualifiedType(Arg,
Context.OverloadTy)) {
6564 return Diag(SR.
getBegin(), diag::err_template_arg_overload_type) << SR;
6575 UnnamedLocalNoLinkageFinder Finder(*
this, SR);
6576 (void)Finder.Visit(CanonArg);
6593 Decl *Entity =
nullptr) {
6599 if (Entity && Entity->hasAttr<DLLImportAttr>())
6604 "Incomplete parameter type in isNullPointerValueTemplateArgument!");
6617 EvalResult.
Diag = &Notes;
6625 if (Notes.size() == 1 && Notes[0].second.getDiagID() ==
6626 diag::note_invalid_subexpr_in_const_expr) {
6627 DiagLoc = Notes[0].first;
6631 S.
Diag(DiagLoc, diag::err_template_arg_not_address_constant)
6633 for (
unsigned I = 0, N = Notes.size(); I != N; ++I)
6634 S.
Diag(Notes[I].first, Notes[I].second);
6652 bool ObjCLifetimeConversion;
6655 ObjCLifetimeConversion))
6660 S.
Diag(Arg->
getExprLoc(), diag::err_template_arg_wrongtype_null_constant)
6679 std::string Code =
"static_cast<" + ParamType.
getAsString() +
">(";
6680 S.
Diag(Arg->
getExprLoc(), diag::err_template_arg_untyped_null_constant)
6700 bool ObjCLifetimeConversion;
6704 ObjCLifetimeConversion)) {
6709 if (!ParamRef->getPointeeType()->isFunctionType()) {
6719 unsigned ParamQuals = ParamRef->getPointeeType().getCVRQualifiers();
6720 unsigned ArgQuals = ArgType.getCVRQualifiers();
6722 if ((ParamQuals | ArgQuals) != ParamQuals) {
6724 diag::err_template_arg_ref_bind_ignores_quals)
6761 bool AddressTaken =
false;
6768 bool ExtWarnMSTemplateArg =
false;
6771 while (
UnaryOperator *UnOp = dyn_cast<UnaryOperator>(Arg)) {
6773 if (UnOpKind == UO_Deref)
6774 ExtWarnMSTemplateArg =
true;
6775 if (UnOpKind == UO_AddrOf || UnOpKind == UO_Deref) {
6778 FirstOpKind = UnOpKind;
6779 FirstOpLoc = UnOp->getOperatorLoc();
6785 if (ExtWarnMSTemplateArg)
6789 if (FirstOpKind == UO_AddrOf)
6790 AddressTaken =
true;
6794 assert(FirstOpKind == UO_Deref);
6819 bool ExtraParens =
false;
6823 diag_compat::template_arg_extra_parens)
6828 Arg =
Parens->getSubExpr();
6833 dyn_cast<SubstNonTypeTemplateParmExpr>(Arg))
6837 if (UnOp->getOpcode() == UO_AddrOf) {
6838 Arg = UnOp->getSubExpr();
6839 AddressTaken =
true;
6840 AddrOpLoc = UnOp->getOperatorLoc();
6845 dyn_cast<SubstNonTypeTemplateParmExpr>(Arg))
6850 if (
DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Arg))
6851 Entity = DRE->getDecl();
6853 Entity = CUE->getGuidDecl();
6860 S.
Diag(Arg->
getExprLoc(), diag::warn_cxx98_compat_template_arg_null);
6863 CanonicalConverted =
6880 CanonicalConverted =
6901 if (
CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Entity)) {
6902 if (!Method->isStatic()) {
6911 VarDecl *Var = dyn_cast<VarDecl>(Entity);
6912 MSGuidDecl *Guid = dyn_cast<MSGuidDecl>(Entity);
6915 if (!
Func && !Var && !Guid) {
6927 ? diag::warn_cxx98_compat_template_arg_object_internal
6928 : diag::ext_template_arg_object_internal)
6930 S.
Diag(Entity->
getLocation(), diag::note_template_arg_internal_object)
6935 S.
Diag(Entity->
getLocation(), diag::note_template_arg_internal_object)
6964 S.
Diag(AddrOpLoc, diag::err_template_arg_address_of_non_pointer)
6970 S.
Diag(AddrOpLoc, diag::err_template_arg_address_of_non_pointer)
7012 CanonicalConverted =
7026 Expr *Arg = ResultArg;
7027 bool ObjCLifetimeConversion;
7039 bool ExtraParens =
false;
7041 if (!
Invalid && !ExtraParens) {
7047 Arg =
Parens->getSubExpr();
7051 dyn_cast<SubstNonTypeTemplateParmExpr>(Arg))
7056 if (UnOp->getOpcode() == UO_AddrOf) {
7057 DRE = dyn_cast<DeclRefExpr>(UnOp->getSubExpr());
7063 else if ((DRE = dyn_cast<DeclRefExpr>(Arg))) {
7069 CanonicalConverted =
7073 CanonicalConverted =
7092 S.
Diag(ResultArg->
getExprLoc(), diag::warn_cxx98_compat_template_arg_null);
7104 ObjCLifetimeConversion)) {
7111 S.
Diag(ResultArg->
getBeginLoc(), diag::err_template_arg_not_convertible)
7119 diag::err_template_arg_not_pointer_to_member_form)
7128 ->isImplicitObjectMemberFunction()) &&
7129 "Only non-static member pointers can make it here");
7135 CanonicalConverted =
7140 CanonicalConverted =
7148 S.
Diag(Arg->
getBeginLoc(), diag::err_template_arg_not_pointer_to_member_form)
7168 auto *ArgPE = dyn_cast<PackExpansionExpr>(Arg);
7169 Expr *DeductionArg = ArgPE ? ArgPE->getPattern() : Arg;
7170 auto setDeductionArg = [&](
Expr *NewDeductionArg) {
7171 DeductionArg = NewDeductionArg;
7175 DeductionArg, ArgPE->getEllipsisLoc(), ArgPE->getNumExpansions());
7183 bool IsDeduced = DeducedT && DeducedT->getDeducedType().isNull();
7189 Context.getTrivialTypeSourceInfo(ParamType, Param->getLocation());
7194 DeductionArg->
getBeginLoc(),
false, DeductionArg);
7202 Param->getTemplateDepth() + 1);
7218 if (
const auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(Param))
7220 diag::err_non_type_template_parm_type_deduction_failure)
7221 << Param->getDeclName() << NTTP->getType() << Arg->
getType()
7227 assert(!ParamType.
isNull() &&
"substituting DependentTy can't fail");
7235 if (ParamType.
isNull()) {
7243 "non-type template parameter type cannot be qualified");
7257 setDeductionArg(E.
get());
7261 Context.getCanonicalTemplateArgument(SugaredConverted));
7270 : !
Context.hasSameUnqualifiedType(ParamType,
7276 Diag(StartLoc, diag::err_deduced_non_type_template_arg_type_mismatch)
7289 if (ArgPE && !StrictCheck) {
7292 Context.getCanonicalTemplateArgument(SugaredConverted));
7306 Context.hasSameUnqualifiedType(ParamType, InnerArg->
getType())) {
7308 if (
auto *TPO = dyn_cast<TemplateParamObjectDecl>(ND)) {
7317 CanonicalConverted =
7318 Context.getCanonicalTemplateArgument(SugaredConverted);
7328 bool IsConvertedConstantExpression =
true;
7331 StartLoc,
false, DeductionArg);
7347 IsConvertedConstantExpression =
false;
7356 if (IsConvertedConstantExpression) {
7358 DeductionArg, ParamType,
7366 ArgResult = DeductionArg;
7372 setDeductionArg(ArgResult.
get());
7374 CanonicalConverted =
7375 Context.getCanonicalTemplateArgument(SugaredConverted);
7382 false, PreNarrowingValue);
7385 setDeductionArg(ArgResult.
get());
7387 if (
Value.isLValue()) {
7406 if (
Value.hasLValuePath() &&
Value.getLValuePath().size() == 1 && VD &&
7408 Value.getLValuePath()[0].getAsArrayIndex() == 0 &&
7412 CanonicalConverted =
7413 Context.getCanonicalTemplateArgument(SugaredConverted);
7416 CanonicalConverted =
7425 if (!
Value.hasLValuePath() ||
Value.getLValuePath().size() ||
7426 Value.isLValueOnePastTheEnd()) {
7427 Diag(StartLoc, diag::err_non_type_template_arg_subobject)
7432 "null reference should not be a constant expression");
7434 "non-null value of type nullptr_t?");
7438 if (
Value.isAddrLabelDiff())
7439 return Diag(StartLoc, diag::err_non_type_template_arg_addr_label_diff);
7443 CanonicalConverted =
7444 Context.getCanonicalTemplateArgument(SugaredConverted);
7447 CanonicalConverted =
7454 assert(!ArgPE && !StrictCheck);
7486 Arg = ArgResult.
get();
7491 CanonicalConverted =
7492 Context.getCanonicalTemplateArgument(SugaredConverted);
7501 IntegerType = ED->getIntegerType();
7503 ?
Context.getIntWidth(IntegerType)
7504 :
Context.getTypeSize(IntegerType));
7507 CanonicalConverted =
7515 Arg = ArgResult.
get();
7527 if (!
ArgType->isIntegralOrEnumerationType()) {
7528 Diag(Arg->
getBeginLoc(), diag::err_template_arg_not_integral_or_enumeral)
7538 TmplArgICEDiagnoser(
QualType T) : T(T) { }
7542 return S.
Diag(Loc, diag::err_template_arg_not_ice) << T;
7567 Diag(StartLoc, diag::err_template_arg_not_convertible)
7580 CanonicalConverted =
7581 Context.getCanonicalTemplateArgument(SugaredConverted);
7587 IntegerType = ED->getIntegerType();
7593 unsigned AllowedBits =
Context.getTypeSize(IntegerType);
7594 if (
Value.getBitWidth() != AllowedBits)
7598 llvm::APSInt OldValue =
Value;
7603 ?
Context.getIntWidth(IntegerType)
7604 :
Context.getTypeSize(IntegerType);
7605 if (
Value.getBitWidth() != AllowedBits)
7611 (OldValue.isSigned() && OldValue.isNegative())) {
7619 unsigned RequiredBits;
7621 RequiredBits = OldValue.getActiveBits();
7622 else if (OldValue.isUnsigned())
7623 RequiredBits = OldValue.getActiveBits() + 1;
7625 RequiredBits = OldValue.getSignificantBits();
7626 if (RequiredBits > AllowedBits) {
7636 CanonicalConverted =
7687 *
this, Param, ParamType, Arg, IsSpecified, SugaredConverted,
7688 CanonicalConverted))
7694 *
this, Param, ParamType, Arg, SugaredConverted, CanonicalConverted))
7705 "Only object pointers allowed here");
7708 *
this, Param, ParamType, Arg, IsSpecified, SugaredConverted,
7709 CanonicalConverted))
7721 assert(ParamRefType->getPointeeType()->isIncompleteOrObjectType() &&
7722 "Only object references allowed here");
7726 ParamRefType->getPointeeType(),
7741 *
this, Param, ParamType, Arg, IsSpecified, SugaredConverted,
7742 CanonicalConverted))
7751 CanonicalConverted =
7752 Context.getCanonicalTemplateArgument(SugaredConverted);
7759 << Arg->
getType() << ParamType;
7767 Diag(Arg->
getExprLoc(), diag::warn_cxx98_compat_template_arg_null);
7781 *
this, Param, ParamType, Arg, SugaredConverted, CanonicalConverted))
7804 unsigned DiagFoundKind = 0;
7806 if (
auto *TTP = llvm::dyn_cast<TemplateTemplateParmDecl>(
Template)) {
7807 switch (TTP->templateParameterKind()) {
7818 Kind = TTP->templateParameterKind();
7834 assert(
false &&
"Unexpected Decl");
7837 if (Kind == Param->templateParameterKind()) {
7841 unsigned DiagKind = 0;
7842 switch (Param->templateParameterKind()) {
7855 Diag(
Template->getLocation(), diag::note_template_arg_refers_to_template_here)
7869 bool *StrictPackMatch) {
7876 assert(Name.
isDependent() &&
"Non-dependent template isn't a declaration?");
7903 if (ParamsAC.empty())
7906 Template->getAssociatedConstraints(TemplateAC);
7908 bool IsParamAtLeastAsConstrained;
7910 IsParamAtLeastAsConstrained))
7912 if (!IsParamAtLeastAsConstrained) {
7914 diag::err_template_template_parameter_not_at_least_as_constrained)
7916 Diag(Param->getLocation(), diag::note_entity_declared_at) << Param;
7926 unsigned HereDiagID,
7927 unsigned ExternalDiagID) {
7932 llvm::raw_svector_ostream Out(Str);
7940 std::optional<SourceRange> ParamRange) {
7943 diag::note_template_decl_external);
7944 if (ParamRange && ParamRange->isValid()) {
7946 "Parameter range has location when Decl does not");
7953 diag::note_template_param_external);
7968 ParamType =
Context.getArrayDecayedType(ParamType);
7970 ParamType =
Context.getPointerType(ParamType);
7979 ? CK_NullToMemberPointer
7980 : CK_NullToPointer);
7983 "Only declaration template arguments permitted here");
8020 "arg for class template param not a template parameter object");
8025 "unexpected type for decl template argument");
8033 "value kind mismatch for non-type template argument");
8039 if (!
Context.hasSameType(SrcExprType, DestExprType)) {
8041 if (
Context.hasSimilarType(SrcExprType, DestExprType) ||
8052 "unexpected conversion required for non-type template argument");
8079 T = ED->getIntegerType();
8082 if (T->isAnyCharacterType()) {
8084 if (T->isWideCharType())
8086 else if (T->isChar8Type() && S.
getLangOpts().Char8)
8088 else if (T->isChar16Type())
8090 else if (T->isChar32Type())
8096 }
else if (T->isBooleanType()) {
8131 llvm_unreachable(
"unexpected template argument value");
8156 return MakeInitList(
8169 return MakeInitList(Elts);
8173 llvm_unreachable(
"Matrix template argument expression not yet supported");
8177 llvm_unreachable(
"Unexpected APValue kind.");
8186 if (T->isReferenceType()) {
8187 T = T->getPointeeType();
8193 llvm_unreachable(
"Unhandled APValue::ValueKind enum");
8205 llvm_unreachable(
"not a non-type template argument");
8223 llvm_unreachable(
"Unhandled TemplateArgument::ArgKind enum");
8230 const NamedDecl *OldInstFrom,
bool Complain,
8235 unsigned NextDiag = diag::err_template_param_different_kind;
8236 if (TemplateArgLoc.
isValid()) {
8237 S.
Diag(TemplateArgLoc, diag::err_template_arg_template_params_mismatch);
8238 NextDiag = diag::note_template_param_different_kind;
8240 S.
Diag(
New->getLocation(), NextDiag)
8255 unsigned NextDiag = diag::err_template_parameter_pack_non_pack;
8256 if (TemplateArgLoc.
isValid()) {
8257 S.
Diag(TemplateArgLoc,
8258 diag::err_template_arg_template_params_mismatch);
8259 NextDiag = diag::note_template_parameter_pack_non_pack;
8265 S.
Diag(
New->getLocation(), NextDiag)
8266 << ParamKind <<
New->isParameterPack();
8275 dyn_cast<NonTypeTemplateParmDecl>(Old)) {
8283 (!OldNTTP->getType()->isDependentType() &&
8293 unsigned NextDiag = diag::err_template_nontype_parm_different_type;
8294 if (TemplateArgLoc.
isValid()) {
8295 S.
Diag(TemplateArgLoc,
8296 diag::err_template_arg_template_params_mismatch);
8297 NextDiag = diag::note_template_nontype_parm_different_type;
8301 S.
Diag(OldNTTP->getLocation(),
8302 diag::note_template_nontype_parm_prev_declaration)
8303 << OldNTTP->getType();
8313 dyn_cast<TemplateTemplateParmDecl>(Old)) {
8319 OldTTP->getTemplateParameters(), Complain,
8330 const Expr *NewC =
nullptr, *OldC =
nullptr;
8334 NewC = TC->getImmediatelyDeclaredConstraint();
8336 OldC = TC->getImmediatelyDeclaredConstraint();
8339 ->getPlaceholderTypeConstraint())
8342 ->getPlaceholderTypeConstraint())
8345 llvm_unreachable(
"unexpected template parameter type");
8347 auto Diagnose = [&] {
8349 diag::err_template_different_type_constraint);
8351 diag::note_template_prev_declaration) << 0;
8354 if (!NewC != !OldC) {
8381 unsigned NextDiag = diag::err_template_param_list_different_arity;
8382 if (TemplateArgLoc.
isValid()) {
8383 S.
Diag(TemplateArgLoc, diag::err_template_arg_template_params_mismatch);
8384 NextDiag = diag::note_template_param_list_different_arity;
8386 S.
Diag(
New->getTemplateLoc(), NextDiag)
8387 << (
New->size() > Old->
size())
8399 if (Old->
size() !=
New->size()) {
8416 OldParmEnd = Old->
end();
8417 OldParm != OldParmEnd; ++OldParm, ++NewParm) {
8418 if (NewParm == NewParmEnd) {
8425 OldInstFrom, Complain, Kind,
8431 if (NewParm != NewParmEnd) {
8440 const Expr *NewRC =
New->getRequiresClause();
8445 diag::err_template_different_requires_clause);
8447 diag::note_template_prev_declaration) << 0;
8450 if (!NewRC != !OldRC) {
8486 Diag(Range.getBegin(), diag::err_template_linkage) << Range;
8488 Diag(LSD->getExternLoc(), diag::note_extern_c_begins_here);
8508 if (RD->isLocalClass())
8510 diag::err_template_inside_local_class)
8518 diag::err_template_outside_namespace_or_class_scope)
8529 return Record->getTemplateSpecializationKind();
8530 if (
FunctionDecl *Function = dyn_cast<FunctionDecl>(D))
8531 return Function->getTemplateSpecializationKind();
8532 if (
VarDecl *Var = dyn_cast<VarDecl>(D))
8585 S.
Diag(Loc, diag::err_template_spec_unknown_kind)
8595 S.
Diag(Loc, diag::err_template_spec_decl_function_scope)
8610 : DC->
Equals(SpecializedContext))) {
8612 S.
Diag(Loc, diag::err_template_spec_redecl_global_scope)
8613 << EntityKind << Specialized;
8616 int Diag = diag::err_template_spec_redecl_out_of_scope;
8618 Diag = diag::ext_ms_template_spec_redecl_out_of_scope;
8619 S.
Diag(Loc,
Diag) << EntityKind << Specialized
8620 << ND << isa<CXXRecordDecl>(ND);
8623 S.
Diag(Specialized->getLocation(), diag::note_specialized_entity);
8637 DependencyChecker Checker(Depth,
true);
8638 Checker.TraverseStmt(E);
8641 return Checker.MatchLoc;
8647 DependencyChecker Checker(Depth,
true);
8648 Checker.TraverseTypeLoc(TL);
8651 return Checker.MatchLoc;
8659 bool HasError =
false;
8660 for (
unsigned I = 0; I != NumArgs; ++I) {
8663 S, TemplateNameLoc, Param, Args[I].pack_begin(),
8664 Args[I].pack_size(), IsDefaultArgument))
8681 ArgExpr = Expansion->getPattern();
8685 ArgExpr = ICE->getSubExpr();
8695 if (
DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ArgExpr))
8699 if (
auto *ULE = dyn_cast<UnresolvedLookupExpr>(ArgExpr);
8721 if (ParamUseRange.
isValid()) {
8722 if (IsDefaultArgument) {
8723 S.
Diag(TemplateNameLoc,
8724 diag::err_dependent_non_type_arg_in_partial_spec);
8726 diag::note_dependent_non_type_default_arg_in_partial_spec)
8730 diag::err_dependent_non_type_arg_in_partial_spec)
8737 Param->getDepth(), Param->getTypeSourceInfo()->getTypeLoc());
8738 if (ParamUseRange.
isValid()) {
8740 diag::err_dependent_typed_non_type_arg_in_partial_spec)
8741 << Param->getType();
8760 for (
unsigned I = 0, N = TemplateParams->
size(); I != N; ++I) {
8762 = dyn_cast<NonTypeTemplateParmDecl>(TemplateParams->
getParam(I));
8767 Param, &TemplateArgs[I],
8768 1, I >= NumExplicit))
8792 Diag(TemplateNameLoc, diag::err_not_class_template_specialization)
8798 if (
const auto *DSA =
ClassTemplate->getAttr<NoSpecializationsAttr>()) {
8799 auto Message = DSA->getMessage();
8800 Diag(TemplateNameLoc, diag::warn_invalid_specialization)
8802 Diag(DSA->getLoc(), diag::note_marked_here) << DSA;
8810 bool isMemberSpecialization =
false;
8811 bool isPartialSpecialization =
false;
8816 TemplateNameLoc, &TemplateId,
8828 KWLoc, TemplateNameLoc, SS, &TemplateId, TemplateParameterLists,
8843 if (TemplateParams && TemplateParams->
size() > 0) {
8844 isPartialSpecialization =
true;
8847 Diag(KWLoc, diag::err_partial_specialization_friend)
8855 for (
unsigned I = 0, N = TemplateParams->
size(); I != N; ++I) {
8858 if (TTP->hasDefaultArgument()) {
8859 Diag(TTP->getDefaultArgumentLoc(),
8860 diag::err_default_arg_in_partial_spec);
8861 TTP->removeDefaultArgument();
8864 = dyn_cast<NonTypeTemplateParmDecl>(Param)) {
8865 if (NTTP->hasDefaultArgument()) {
8866 Diag(NTTP->getDefaultArgumentLoc(),
8867 diag::err_default_arg_in_partial_spec)
8868 << NTTP->getDefaultArgument().getSourceRange();
8869 NTTP->removeDefaultArgument();
8875 diag::err_default_arg_in_partial_spec)
8881 }
else if (TemplateParams) {
8883 Diag(KWLoc, diag::err_template_spec_friend)
8890 "should have a 'template<>' for this decl");
8897 "Invalid enum tag in class template spec!");
8901 Diag(KWLoc, diag::err_use_with_wrong_tag)
8906 diag::note_previous_use);
8915 for (
unsigned I = 0, N = TemplateArgs.
size(); I != N; ++I)
8917 isPartialSpecialization
8933 if (isPartialSpecialization) {
8935 TemplateArgs.
size(),
8942 !TemplateSpecializationType::anyDependentTemplateArguments(
8944 Diag(TemplateNameLoc, diag::err_partial_spec_fully_specialized)
8946 isPartialSpecialization =
false;
8951 void *InsertPos =
nullptr;
8954 if (isPartialSpecialization)
8968 isPartialSpecialization))
8971 if (!isPartialSpecialization) {
8979 if (TemplateParameterLists.size() > 0) {
8981 TemplateParameterLists);
8988 Context.getCanonicalTemplateSpecializationType(
8995 (!
Context.getLangOpts().CPlusPlus20 ||
9004 Diag(TemplateNameLoc, diag::err_partial_spec_args_match_primary_template)
9012 TemplateParameterLists.data(), isMemberSpecialization);
9017 cast_or_null<ClassTemplatePartialSpecializationDecl>(PrevDecl);
9020 Context, Kind, DC, KWLoc, TemplateNameLoc, TemplateParams,
9024 if (TemplateParameterLists.size() > 1 && SS.
isSet()) {
9026 Context, TemplateParameterLists.drop_back(1));
9030 ClassTemplate->AddPartialSpecialization(Partial, InsertPos);
9035 if (isMemberSpecialization)
9059 Diag(TemplateNameLoc, diag::err_specialization_after_instantiation)
9063 diag::note_instantiation_required_here)
9078 bool HiddenDefVisible =
false;
9079 if (Def && SkipBody &&
9083 if (!HiddenDefVisible && Hidden)
9106 if (ModulePrivateLoc.
isValid())
9108 << (isPartialSpecialization? 1 : 0)
9176 diag::err_concept_decls_may_only_appear_in_global_namespace_scope);
9180 if (TemplateParameterLists.size() > 1) {
9181 Diag(NameLoc, diag::err_concept_extra_headers);
9187 if (Params->
size() == 0) {
9188 Diag(NameLoc, diag::err_concept_no_parameters);
9195 ParamEnd = Params->
end();
9196 ParamIt != ParamEnd; ++ParamIt) {
9197 Decl const *Param = *ParamIt;
9198 if (Param->isParameterPack()) {
9199 if (++ParamIt == ParamEnd)
9201 Diag(Param->getLocation(),
9202 diag::err_template_param_pack_must_be_last_template_parameter);
9213 Diag(NameLoc, diag::err_concept_no_associated_constraints);
9250 Expr *ConstraintExpr,
9252 assert(!
C->hasDefinition() &&
"Concept already defined");
9254 C->setInvalidDecl();
9257 C->setDefinition(ConstraintExpr);
9268 bool AddToScope =
true;
9272 if (!WasAlreadyAdded && AddToScope)
9285 auto *OldConcept = dyn_cast<ConceptDecl>(
Previous.getRepresentativeDecl()->getUnderlyingDecl());
9287 auto *Old =
Previous.getRepresentativeDecl();
9295 bool IsSame =
Context.isSameEntity(NewDecl, OldConcept);
9297 Diag(NewDecl->
getLocation(), diag::err_redefinition_different_concept)
9321 if (
auto *CE = llvm::dyn_cast<ConceptDecl>(
Concept);
9322 CE && !CE->isInvalidDecl() && !CE->hasDefinition()) {
9323 Diag(Loc, diag::err_recursive_concept) << CE;
9324 Diag(CE->getLocation(), diag::note_declared_at);
9325 CE->setInvalidDecl();
9338 D->
dropAttrs<DLLImportAttr, DLLExportAttr>();
9341 FD->setInlineSpecified(
false);
9360 Context, CurContext, Spec, ExternLoc, TemplateLoc, QualifierLoc,
9361 ArgsAsWritten, NameLoc, TypeAsWritten, TSK);
9362 Context.addExplicitInstantiationDecl(Spec, EID);
9372 if (EID->getTemplateSpecializationKind() ==
9374 return EID->getTemplateLoc();
9380 for (
Decl *Prev = D; Prev && !PrevDiagLoc.
isValid();
9381 Prev = Prev->getPreviousDecl()) {
9382 PrevDiagLoc = Prev->getLocation();
9384 assert(PrevDiagLoc.
isValid() &&
9385 "Explicit instantiation without point of instantiation?");
9395 bool &HasNoEffect) {
9396 HasNoEffect =
false;
9403 "previous declaration must be implicit!");
9416 if (PrevPointOfInstantiation.
isInvalid()) {
9420 PrevDecl,
Context.getTargetInfo().getTriple().isOSCygMing());
9429 PrevPointOfInstantiation.
isValid()) &&
9430 "Explicit instantiation without point of instantiation?");
9444 Diag(NewLoc, diag::err_specialization_after_instantiation)
9446 Diag(PrevPointOfInstantiation, diag::note_instantiation_required_here)
9451 llvm_unreachable(
"The switch over PrevTSK must be exhaustive.");
9481 diag::err_explicit_instantiation_declaration_after_definition);
9487 diag::note_explicit_instantiation_definition_here);
9491 llvm_unreachable(
"Unexpected TemplateSpecializationKind!");
9507 Diag(NewLoc, diag::warn_explicit_instantiation_after_specialization)
9510 diag::note_previous_template_specialization);
9541 ? diag::ext_explicit_instantiation_duplicate
9542 : diag::err_explicit_instantiation_duplicate)
9545 diag::note_previous_explicit_instantiation);
9551 llvm_unreachable(
"Missing specialization/instantiation case?");
9561 enum DiscardReason { NotAFunctionTemplate, NotAMemberOfEnclosing };
9567 DiscardedCandidates.push_back(std::make_pair(NotAFunctionTemplate, D));
9574 DiscardedCandidates.push_back(std::make_pair(NotAMemberOfEnclosing, D));
9582 Diag(FD->
getLocation(), diag::err_dependent_function_template_spec_no_match)
9584 for (
auto &P : DiscardedCandidates)
9585 Diag(P.second->getLocation(),
9586 diag::note_dependent_function_template_spec_discard_reason)
9587 << P.first << IsFriend;
9592 ExplicitTemplateArgs);
9605 llvm::SmallDenseMap<FunctionDecl *, TemplateArgumentListInfo, 8>
9606 ConvertedTemplateArgs;
9629 if (
auto *NewMD = dyn_cast<CXXMethodDecl>(FD);
9630 !
getLangOpts().CPlusPlus14 && NewMD && NewMD->isConstexpr() &&
9632 auto *OldMD = dyn_cast<CXXMethodDecl>(FunTmpl->getTemplatedDecl());
9633 if (OldMD && OldMD->isConst()) {
9643 if (ExplicitTemplateArgs)
9644 Args = *ExplicitTemplateArgs;
9657 ExplicitTemplateArgs ? &Args :
nullptr, FT,
Specialization, Info);
9662 I.getPair(), FunTmpl->getTemplatedDecl(),
9676 CUDA().IdentifyTarget(FD,
true)) {
9678 I.getPair(), FunTmpl->getTemplatedDecl(),
9685 if (ExplicitTemplateArgs)
9694 if (QualifiedFriend && Candidates.
empty()) {
9700 if (
auto *OldFD = dyn_cast<FunctionDecl>(OldND->getUnderlyingDecl()))
9711 PDiag(diag::err_function_template_spec_ambiguous)
9712 << FD->
getDeclName() << (ExplicitTemplateArgs !=
nullptr),
9713 PDiag(diag::note_function_template_spec_matched));
9722 const auto *DSA = PT->getAttr<NoSpecializationsAttr>()) {
9723 auto Message = DSA->getMessage();
9725 << PT << !Message.empty() << Message;
9726 Diag(DSA->getLoc(), diag::note_marked_here) << DSA;
9754 auto *SpecializationFPT =
9765 assert(SpecInfo &&
"Function template specialization info missing?");
9803 bool HasNoEffect =
false;
9818 !isFriend || (InstFrom && InstFrom->getDependentSpecializationInfo())) {
9832 "This must be the only existing declaration of this specialization");
9847 FD->setFunctionTemplateSpecialization(
9850 ExplicitTemplateArgs ? &ConvertedTemplateArgs[
Specialization] :
nullptr);
9869 assert(!
Member->isTemplateDecl() && !
Member->getDescribedTemplate() &&
9870 "Only for non-template members");
9873 NamedDecl *FoundInstantiation =
nullptr;
9883 auto *
Method = dyn_cast<CXXMethodDecl>(Candidate->getUnderlyingDecl());
9901 Method->getTrailingRequiresClause() &&
9905 !Satisfaction.IsSatisfied))
9908 Candidates.
addDecl(Candidate);
9912 if (Candidates.
empty())
9929 FoundInstantiation = *Best;
9930 Instantiation = BestMethod;
9947 Diag(
Member->getLocation(), diag::err_function_member_spec_ambiguous)
9948 <<
Member << (InstantiatedFrom ? InstantiatedFrom : Instantiation);
9949 for (
NamedDecl *Candidate : Candidates) {
9950 Candidate = Candidate->getUnderlyingDecl();
9951 Diag(Candidate->getLocation(), diag::note_function_member_spec_matched)
9959 (PrevVar = dyn_cast<VarDecl>(
Previous.getFoundDecl())))
9961 FoundInstantiation =
Previous.getRepresentativeDecl();
9962 Instantiation = PrevVar;
9969 (PrevRecord = dyn_cast<CXXRecordDecl>(
Previous.getFoundDecl()))) {
9970 FoundInstantiation =
Previous.getRepresentativeDecl();
9971 Instantiation = PrevRecord;
9978 (PrevEnum = dyn_cast<EnumDecl>(
Previous.getFoundDecl()))) {
9979 FoundInstantiation =
Previous.getRepresentativeDecl();
9980 Instantiation = PrevEnum;
9986 if (!Instantiation) {
10011 Previous.addDecl(FoundInstantiation);
10016 if (!InstantiatedFrom) {
10017 Diag(
Member->getLocation(), diag::err_spec_member_not_instantiated)
10029 assert(MSInfo &&
"Member specialization info missing?");
10031 bool HasNoEffect =
false;
10043 Instantiation,
Member->getLocation(),
10049 if (
auto *MemberFunction = dyn_cast<FunctionDecl>(
Member)) {
10055 if (InstantiationFunction->
isDeleted()) {
10058 InstantiationFunction);
10064 MemberFunction->setInstantiationOfMemberFunction(
10066 }
else if (
auto *MemberVar = dyn_cast<VarDecl>(
Member)) {
10067 MemberVar->setInstantiationOfStaticDataMember(
10069 }
else if (
auto *MemberClass = dyn_cast<CXXRecordDecl>(
Member)) {
10070 MemberClass->setInstantiationOfMemberClass(
10072 }
else if (
auto *MemberEnum = dyn_cast<EnumDecl>(
Member)) {
10073 MemberEnum->setInstantiationOfMemberEnum(
10076 llvm_unreachable(
"unknown member specialization kind");
10082 Previous.addDecl(FoundInstantiation);
10091template<
typename DeclT>
10102 OrigD->setLocation(Loc);
10108 if (Instantiation ==
Member)
10111 if (
auto *
Function = dyn_cast<CXXMethodDecl>(Instantiation))
10113 else if (
auto *Var = dyn_cast<VarDecl>(Instantiation))
10115 else if (
auto *
Record = dyn_cast<CXXRecordDecl>(Instantiation))
10117 else if (
auto *
Enum = dyn_cast<EnumDecl>(Instantiation))
10120 llvm_unreachable(
"unknown member specialization kind");
10128 bool WasQualifiedName) {
10133 S.
Diag(InstLoc, diag::err_explicit_instantiation_in_class)
10146 if (WasQualifiedName) {
10147 if (CurContext->
Encloses(OrigContext))
10154 if (
NamespaceDecl *NS = dyn_cast<NamespaceDecl>(OrigContext)) {
10155 if (WasQualifiedName)
10158 diag::err_explicit_instantiation_out_of_scope :
10159 diag::warn_explicit_instantiation_out_of_scope_0x)
10164 diag::err_explicit_instantiation_unqualified_wrong_namespace :
10165 diag::warn_explicit_instantiation_unqualified_wrong_namespace_0x)
10170 diag::err_explicit_instantiation_must_be_global :
10171 diag::warn_explicit_instantiation_must_be_global_0x)
10180 bool WasQualifiedName,
10187 S.
Diag(InstLoc, diag::err_explicit_instantiation_internal_linkage) << D;
10215 NNS = T->getPrefix();
10224 auto *A = cast_or_null<InheritableAttr>(
getDLLAttr(Def));
10225 assert(A &&
"dllExportImportClassTemplateSpecialization called "
10226 "on Def without dllexport or dllimport");
10231 "delayed exports present at explicit instantiation");
10235 for (
auto &B : Def->
bases()) {
10236 if (
auto *BT = dyn_cast_or_null<ClassTemplateSpecializationDecl>(
10237 B.getType()->getAsCXXRecordDecl()))
10257 "Invalid enum tag in class template explicit instantiation!");
10263 Diag(TemplateNameLoc, diag::err_tag_reference_non_tag) << TD << NTK << Kind;
10269 Kind,
false, KWLoc,
10271 Diag(KWLoc, diag::err_use_with_wrong_tag)
10276 diag::note_previous_use);
10289 !
Context.getTargetInfo().getTriple().isOSCygMing()) {
10293 if (AL.getKind() == ParsedAttr::AT_DLLExport) {
10295 diag::warn_attribute_dllexport_explicit_instantiation_decl);
10296 Diag(AL.getLoc(), diag::note_attribute);
10301 if (
auto *A =
ClassTemplate->getTemplatedDecl()->getAttr<DLLExportAttr>()) {
10303 diag::warn_attribute_dllexport_explicit_instantiation_decl);
10304 Diag(A->getLocation(), diag::note_attribute);
10310 bool DLLImportExplicitInstantiationDef =
false;
10312 Context.getTargetInfo().getCXXABI().isMicrosoft()) {
10315 ClassTemplate->getTemplatedDecl()->getAttr<DLLImportAttr>();
10317 if (AL.getKind() == ParsedAttr::AT_DLLImport)
10319 if (AL.getKind() == ParsedAttr::AT_DLLExport) {
10327 DLLImportExplicitInstantiationDef =
true;
10346 void *InsertPos =
nullptr;
10354 Context.getTargetInfo().getTriple().isOSCygMing()) {
10358 if (AL.getKind() == ParsedAttr::AT_DLLExport) {
10359 if (PrevDecl->
hasAttr<DLLExportAttr>()) {
10360 Diag(AL.getLoc(), diag::warn_attr_dllexport_explicit_inst_def);
10363 diag::warn_attr_dllexport_explicit_inst_def_mismatch);
10364 Diag(PrevDecl->
getLocation(), diag::note_prev_decl_missing_dllexport);
10372 !
Context.getTargetInfo().getTriple().isWindowsGNUEnvironment() &&
10374 return AL.getKind() == ParsedAttr::AT_DLLExport;
10376 if (
const auto *DEA = PrevDecl->
getAttr<DLLExportOnDeclAttr>()) {
10377 Diag(TemplateLoc, diag::warn_dllexport_on_decl_ignored);
10378 Diag(DEA->getLoc(), diag::note_dllexport_on_decl);
10388 bool HasNoEffect =
false;
10391 PrevDecl, PrevDecl_TSK,
10408 PrevDecl =
nullptr;
10412 DLLImportExplicitInstantiationDef) {
10414 HasNoEffect =
false;
10429 if (
const auto *A = PrevDecl->
getAttr<MSInheritanceAttr>()) {
10431 Clone->setInherited(
true);
10437 if (!HasNoEffect && !PrevDecl) {
10450 bool PreviouslyDLLExported =
Specialization->hasAttr<DLLExportAttr>();
10472 TemplateNameLoc, TSI, TSK);
10484 = cast_or_null<ClassTemplateSpecializationDecl>(
10496 Def = cast_or_null<ClassTemplateSpecializationDecl>(
10504 DLLImportExplicitInstantiationDef)) {
10509 Context.getTargetInfo().shouldDLLImportComdatSymbols()) {
10515 A->setInherited(
true);
10523 bool NewlyDLLExported =
10524 !PreviouslyDLLExported &&
Specialization->hasAttr<DLLExportAttr>();
10526 Context.getTargetInfo().shouldDLLImportComdatSymbols()) {
10540 "Def and Specialization should match for implicit instantiation");
10547 Context.getTargetInfo().getTriple().isOSCygMing() &&
10548 PrevDecl->
hasAttr<DLLExportAttr>()) {
10569 TemplateNameLoc, TSI, TSK);
10580 bool Owned =
false;
10581 bool IsDependent =
false;
10589 assert(!IsDependent &&
"explicit instantiation of dependent name not yet handled");
10595 assert(!Tag->isEnum() &&
"shouldn't see enumerations here");
10597 if (Tag->isInvalidDecl())
10603 Diag(TemplateLoc, diag::err_explicit_instantiation_nontemplate_type)
10605 Diag(
Record->getLocation(), diag::note_nontemplate_decl_here);
10616 Diag(TemplateLoc, diag::ext_explicit_instantiation_without_qualified_id)
10631 = cast_or_null<CXXRecordDecl>(
Record->getPreviousDecl());
10632 if (!PrevDecl &&
Record->getDefinition())
10636 bool HasNoEffect =
false;
10637 assert(MSInfo &&
"No member specialization information?");
10651 TL.setElaboratedKeywordLoc(KWLoc);
10653 TL.setNameLoc(NameLoc);
10656 nullptr, NameLoc, TSI, TSK);
10662 = cast_or_null<CXXRecordDecl>(
Record->getDefinition());
10670 Diag(TemplateLoc, diag::err_explicit_instantiation_undefined_member)
10671 << 0 <<
Record->getDeclName() <<
Record->getDeclContext();
10681 RecordDef = cast_or_null<CXXRecordDecl>(
Record->getDefinition());
10699 TL.setElaboratedKeywordLoc(KWLoc);
10701 TL.setNameLoc(NameLoc);
10704 NameLoc, TSI, TSK);
10719 diag::err_explicit_instantiation_requires_name)
10758 diag::err_explicit_instantiation_inline :
10759 diag::warn_explicit_instantiation_inline_0x)
10765 diag::err_explicit_instantiation_constexpr);
10787 if (!R->isFunctionType()) {
10802 if (!PrevTemplate) {
10809 Diag((*P)->getLocation(), diag::note_explicit_instantiation_here);
10816 diag::err_explicit_instantiation_data_member_not_instantiated)
10830 if (R->isUndeducedType()) {
10831 Diag(T->getTypeLoc().getBeginLoc(),
10832 diag::err_auto_not_allowed_var_inst);
10841 diag::err_explicit_instantiation_without_template_id)
10843 Diag(PrevTemplate->getLocation(),
10844 diag::note_explicit_instantiation_here);
10854 TemplateArgs,
true);
10885 diag::ext_explicit_instantiation_without_qualified_id)
10893 bool HasNoEffect =
false;
10895 PrevTSK, POI, HasNoEffect))
10898 if (!HasNoEffect) {
10901 if (
auto *VTSD = dyn_cast<VarTemplateSpecializationDecl>(Prev)) {
10902 VTSD->setExternKeywordLoc(ExternLoc);
10903 VTSD->setTemplateKeywordLoc(TemplateLoc);
10917 Diag(T->getTypeLoc().getBeginLoc(),
10918 diag::err_invalid_var_template_spec_type)
10919 << 0 << PrevTemplate << R << Prev->
getType();
10920 Diag(PrevTemplate->getLocation(), diag::note_template_declared_here)
10921 << 2 << PrevTemplate->getDeclName();
10929 return (
Decl *)
nullptr;
10934 bool HasExplicitTemplateArgs =
false;
10938 HasExplicitTemplateArgs =
true;
10953 if (!HasExplicitTemplateArgs) {
10957 if (
Context.hasSameUnqualifiedType(
Method->getType(), Adjusted)) {
10958 if (
Method->getPrimaryTemplate()) {
10962 C.FoundDecl = P.getPair();
10966 if (
Method->getTrailingRequiresClause() &&
10985 FunTmpl, (HasExplicitTemplateArgs ? &TemplateArgs :
nullptr), R,
11016 if (!NonTemplateMatches.
empty()) {
11027 Msg = diag::err_explicit_instantiation_ambiguous;
11031 Msg = diag::err_explicit_instantiation_no_candidate;
11047 TemplateMatches.
begin(), TemplateMatches.
end(),
11049 PDiag(diag::err_explicit_instantiation_not_known) << Name,
11050 PDiag(diag::err_explicit_instantiation_ambiguous) << Name,
11051 PDiag(diag::note_explicit_instantiation_candidate));
11067 if (FPT->hasExceptionSpec()) {
11069 diag::err_mismatched_exception_spec_explicit_instantiation;
11071 DiagID = diag::ext_mismatched_exception_spec_explicit_instantiation;
11074 PDiag(diag::note_explicit_instantiation_here),
11085 diag::err_explicit_instantiation_member_function_not_instantiated)
11094 if (!PrevDecl &&
Specialization->isThisDeclarationADefinition())
11098 bool HasNoEffect =
false;
11108 if (HasExplicitTemplateArgs)
11115 return (
Decl *)
nullptr;
11127 if (
auto *RD = dyn_cast<CXXRecordDecl>(
Specialization->getDeclContext()))
11128 if (RD->getIdentifier() && RD->getIdentifier()->isStr(
"valarray") &&
11129 RD->isInStdNamespace())
11130 return (
Decl*)
nullptr;
11140 Context.getTargetInfo().getCXXABI().isMicrosoft())
11151 if (
const auto *RD = dyn_cast<CXXRecordDecl>(
Specialization->getParent());
11152 RD && RD->isLambda()) {
11155 Diag(RD->getLocation(), diag::note_defined_here) << RD;
11156 return (
Decl *)
nullptr;
11173 diag::ext_explicit_instantiation_without_qualified_id)
11183 if (HasExplicitTemplateArgs)
11189 return (
Decl *)
nullptr;
11198 assert(Name &&
"Expected a name in a dependent tag");
11207 Diag(NameLoc, diag::err_dependent_tag_decl)
11234 DiagCompat(TypenameLoc, diag_compat::typename_outside_of_template)
11242 TypenameLoc, QualifierLoc, II, IdLoc, &TSI,
11258 ? diag::compat_cxx11_typename_outside_of_template
11259 : diag::compat_pre_cxx11_typename_outside_of_template)
11267 if (LookupRD && LookupRD->getIdentifier() == TemplateII) {
11268 Diag(TemplateIILoc,
11269 diag::ext_out_of_line_qualified_id_type_names_constructor)
11271 << (TemplateKWLoc.
isValid() ? 1 : 0 );
11282 TemplateIn.
get(), TemplateIILoc, TemplateArgs,
11292 TemplateIILoc, TemplateArgs);
11302 if (!II.
isStr(
"type"))
11310 auto EnableIfTSTLoc =
11312 if (!EnableIfTSTLoc || EnableIfTSTLoc.getNumArgs() == 0)
11314 const TemplateSpecializationType *EnableIfTST = EnableIfTSTLoc.
getTypePtr();
11318 EnableIfTST->getTemplateName().getAsTemplateDecl();
11319 if (!EnableIfDecl || EnableIfTST->isIncompleteType())
11325 if (!EnableIfII || !EnableIfII->
isStr(
"enable_if"))
11329 CondRange = EnableIfTSTLoc.getArgLoc(0).getSourceRange();
11333 if (EnableIfTSTLoc.getArgLoc(0).getArgument().getKind()
11337 Cond = EnableIfTSTLoc.getArgLoc(0).getSourceExpression();
11353 bool DeducedTSTContext) {
11355 DeducedTSTContext);
11362 TL.setElaboratedKeywordLoc(KeywordLoc);
11363 TL.setQualifierLoc(QualifierLoc);
11364 TL.setNameLoc(IILoc);
11367 TL.setElaboratedKeywordLoc(KeywordLoc);
11368 TL.setQualifierLoc(QualifierLoc);
11369 TL.setNameLoc(IILoc);
11373 assert(!QualifierLoc);
11377 TL.setElaboratedKeywordLoc(KeywordLoc);
11378 TL.setQualifierLoc(QualifierLoc);
11379 TL.setNameLoc(IILoc);
11400 SS.
Adopt(QualifierLoc);
11403 if (QualifierLoc) {
11430 unsigned DiagID = 0;
11431 Decl *Referenced =
nullptr;
11432 switch (
Result.getResultKind()) {
11443 std::string FailedDescription;
11444 std::tie(FailedCond, FailedDescription) =
11448 diag::err_typename_nested_not_found_requirement)
11449 << FailedDescription
11455 diag::err_typename_nested_not_found_enable_if)
11456 << Ctx << CondRange;
11460 DiagID = Ctx ? diag::err_typename_nested_not_found
11461 : diag::err_unknown_typename;
11470 Diag(IILoc, diag::err_typename_refers_to_using_value_decl)
11471 << Name << Ctx << FullRange;
11473 = dyn_cast<UnresolvedUsingValueDecl>(
Result.getRepresentativeDecl())){
11475 Diag(Loc, diag::note_using_value_decl_missing_typename)
11515 assert(!QualifierLoc);
11518 return Context.getTypeDeclType(
11528 if (!DeducedTSTContext) {
11531 Diag(IILoc, diag::err_dependent_deduced_tst)
11533 <<
QualType(Qualifier.getAsType(), 0);
11535 Diag(IILoc, diag::err_deduced_tst)
11543 return Context.getDeducedTemplateSpecializationType(
11549 DiagID = Ctx ? diag::err_typename_nested_not_type
11550 : diag::err_typename_not_type;
11551 Referenced =
Result.getFoundDecl();
11555 DiagID = Ctx ? diag::err_typename_nested_not_type
11556 : diag::err_typename_not_type;
11557 Referenced = *
Result.begin();
11569 Diag(IILoc, DiagID) << FullRange << Name << Ctx;
11571 Diag(IILoc, DiagID) << FullRange << Name;
11574 Ctx ? diag::note_typename_member_refers_here
11575 : diag::note_typename_refers_here)
11582 class CurrentInstantiationRebuilder
11590 CurrentInstantiationRebuilder(
Sema &SemaRef,
11594 Loc(Loc), Entity(Entity) { }
11601 bool AlreadyTransformed(
QualType T) {
11602 return T.isNull() || !T->isInstantiationDependentType();
11607 SourceLocation getBaseLocation() {
return Loc; }
11610 DeclarationName getBaseEntity() {
return Entity; }
11614 void setBase(SourceLocation Loc, DeclarationName Entity) {
11616 this->Entity = Entity;
11629 if (!T || !T->getType()->isInstantiationDependentType())
11632 CurrentInstantiationRebuilder Rebuilder(*
this, Loc, Name);
11633 return Rebuilder.TransformType(T);
11637 CurrentInstantiationRebuilder Rebuilder(*
this, E->
getExprLoc(),
11639 return Rebuilder.TransformExpr(E);
11650 = Rebuilder.TransformNestedNameSpecifierLoc(QualifierLoc);
11660 for (
unsigned I = 0, N = Params->
size(); I != N; ++I) {
11669 = dyn_cast<TemplateTemplateParmDecl>(Param)) {
11671 TTP->getTemplateParameters()))
11713 unsigned NumArgs) {
11715 llvm::raw_svector_ostream Out(Str);
11717 if (!Params || Params->
size() == 0 || NumArgs == 0)
11718 return std::string();
11720 for (
unsigned I = 0, N = Params->
size(); I != N; ++I) {
11730 Out << Id->getName();
11742 return std::string(Out.str());
11750 auto LPT = std::make_unique<LateParsedTemplate>();
11753 LPT->Toks.swap(Toks);
11800class ExplicitSpecializationVisibilityChecker {
11809 : S(S), Loc(Loc), Kind(Kind) {}
11812 if (
auto *FD = dyn_cast<FunctionDecl>(ND))
11813 return checkImpl(FD);
11814 if (
auto *RD = dyn_cast<CXXRecordDecl>(ND))
11815 return checkImpl(RD);
11816 if (
auto *VD = dyn_cast<VarDecl>(ND))
11817 return checkImpl(VD);
11818 if (
auto *ED = dyn_cast<EnumDecl>(ND))
11819 return checkImpl(ED);
11823 void diagnose(NamedDecl *D,
bool IsPartialSpec) {
11824 auto Kind = IsPartialSpec ? Sema::MissingImportKind::PartialSpecialization
11825 : Sema::MissingImportKind::ExplicitSpecialization;
11826 const bool Recover =
true;
11831 if (Modules.empty())
11837 bool CheckMemberSpecialization(
const NamedDecl *D) {
11838 return Kind == Sema::AcceptableKind::Visible
11843 bool CheckExplicitSpecialization(
const NamedDecl *D) {
11844 return Kind == Sema::AcceptableKind::Visible
11849 bool CheckDeclaration(
const NamedDecl *D) {
11866 template<
typename SpecDecl>
11867 void checkImpl(SpecDecl *Spec) {
11868 bool IsHiddenExplicitSpecialization =
false;
11872 if constexpr (std::is_same_v<SpecDecl, FunctionDecl>)
11873 SpecKind = Spec->getTemplateSpecializationKindForInstantiation();
11875 IsHiddenExplicitSpecialization = Spec->getMemberSpecializationInfo()
11876 ? !CheckMemberSpecialization(Spec)
11877 : !CheckExplicitSpecialization(Spec);
11879 checkInstantiated(Spec);
11882 if (IsHiddenExplicitSpecialization)
11883 diagnose(Spec->getMostRecentDecl(),
false);
11886 void checkInstantiated(FunctionDecl *FD) {
11891 void checkInstantiated(CXXRecordDecl *RD) {
11892 auto *SD = dyn_cast<ClassTemplateSpecializationDecl>(RD);
11896 auto From = SD->getSpecializedTemplateOrPartial();
11897 if (
auto *TD = From.dyn_cast<ClassTemplateDecl *>())
11899 else if (
auto *TD =
11900 From.dyn_cast<ClassTemplatePartialSpecializationDecl *>()) {
11901 if (!CheckDeclaration(TD))
11902 diagnose(TD,
true);
11907 void checkInstantiated(VarDecl *RD) {
11908 auto *SD = dyn_cast<VarTemplateSpecializationDecl>(RD);
11912 auto From = SD->getSpecializedTemplateOrPartial();
11913 if (
auto *TD = From.dyn_cast<VarTemplateDecl *>())
11915 else if (
auto *TD =
11916 From.dyn_cast<VarTemplatePartialSpecializationDecl *>()) {
11917 if (!CheckDeclaration(TD))
11918 diagnose(TD,
true);
11923 void checkInstantiated(EnumDecl *FD) {}
11925 template<
typename TemplDecl>
11926 void checkTemplate(TemplDecl *TD) {
11927 if (TD->isMemberSpecialization()) {
11928 if (!CheckMemberSpecialization(TD))
11929 diagnose(TD->getMostRecentDecl(),
false);
11939 ExplicitSpecializationVisibilityChecker(*
this, Loc,
11949 ExplicitSpecializationVisibilityChecker(*
this, Loc,
11957 if (
const auto *FD = dyn_cast<FunctionDecl>(N)) {
11965 if (!CSC.isInstantiationRecord() || CSC.PointOfInstantiation.isInvalid())
11967 return CSC.PointOfInstantiation;
This file provides AST data structures related to concepts.
Defines the clang::ASTContext interface.
Defines enum values for all the target-independent builtin functions.
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.
Result
Implement __builtin_bit_cast and related operations.
Defines the clang::LangOptions interface.
static DiagnosticBuilder Diag(DiagnosticsEngine *Diags, const LangOptions &Features, FullSourceLoc TokLoc, const char *TokBegin, const char *TokRangeBegin, const char *TokRangeEnd, unsigned DiagID)
Produce a diagnostic highlighting some portion of a literal.
llvm::MachO::Record Record
Implements a partial diagnostic that can be emitted anwyhere in a DiagnosticBuilder stream.
@ ForVisibleRedeclaration
The lookup results will be used for redeclaration of a name, if an entity by that name already exists...
static std::string toString(const clang::SanitizerSet &Sanitizers)
Produce a string containing comma-separated names of sanitizers in Sanitizers set.
This file declares semantic analysis for CUDA constructs.
static void SetNestedNameSpecifier(Sema &S, DeclaratorDecl *DD, Declarator &D)
static bool DependsOnTemplateParameters(QualType T, TemplateParameterList *Params)
Determines whether a given type depends on the given parameter list.
static TemplateSpecializationKind getTemplateSpecializationKind(Decl *D)
Determine what kind of template specialization the given declaration is.
static Expr * BuildExpressionFromNonTypeTemplateArgumentValue(Sema &S, QualType T, const APValue &Val, SourceLocation Loc)
static void maybeDiagnoseTemplateParameterShadow(Sema &SemaRef, Scope *S, SourceLocation Loc, const IdentifierInfo *Name)
static TemplateArgumentLoc convertTypeTemplateArgumentToTemplate(ASTContext &Context, TypeLoc TLoc)
Convert a template-argument that we parsed as a type into a template, if possible.
static bool CheckTemplateSpecializationScope(Sema &S, NamedDecl *Specialized, NamedDecl *PrevDecl, SourceLocation Loc, bool IsPartialSpecialization)
Check whether a specialization is well-formed in the current context.
static bool ScopeSpecifierHasTemplateId(const CXXScopeSpec &SS)
Determine whether the given scope specifier has a template-id in it.
static void addExplicitInstantiationDecl(ASTContext &Context, DeclContext *CurContext, NamedDecl *Spec, SourceLocation ExternLoc, SourceLocation TemplateLoc, NestedNameSpecifierLoc QualifierLoc, const ASTTemplateArgumentListInfo *ArgsAsWritten, SourceLocation NameLoc, TypeSourceInfo *TypeAsWritten, TemplateSpecializationKind TSK)
Create an ExplicitInstantiationDecl to record source-location info for an explicit template instantia...
static SourceRange findTemplateParameterInType(unsigned Depth, Expr *E)
static Sema::SemaDiagnosticBuilder noteLocation(Sema &S, const NamedDecl &Decl, unsigned HereDiagID, unsigned ExternalDiagID)
static SourceRange getRangeOfTypeInNestedNameSpecifier(ASTContext &Context, QualType T, const CXXScopeSpec &SS)
static Expr * BuildExpressionFromIntegralTemplateArgumentValue(Sema &S, QualType OrigT, const llvm::APSInt &Int, SourceLocation Loc)
Construct a new expression that refers to the given integral template argument with the given source-...
static SourceRange findTemplateParameter(unsigned Depth, TypeLoc TL)
static TemplateName resolveAssumedTemplateNameAsType(Sema &S, Scope *Scope, const AssumedTemplateStorage *ATN, SourceLocation NameLoc)
static QualType builtinCommonTypeImpl(Sema &S, ElaboratedTypeKeyword Keyword, TemplateName BaseTemplate, SourceLocation TemplateLoc, ArrayRef< TemplateArgument > Ts)
static bool isSameAsPrimaryTemplate(TemplateParameterList *Params, TemplateParameterList *SpecParams, ArrayRef< TemplateArgument > Args)
static bool SubstDefaultTemplateArgument(Sema &SemaRef, TemplateDecl *Template, SourceLocation TemplateLoc, SourceLocation RAngleLoc, TemplateTypeParmDecl *Param, ArrayRef< TemplateArgument > SugaredConverted, ArrayRef< TemplateArgument > CanonicalConverted, TemplateArgumentLoc &Output)
Substitute template arguments into the default template argument for the given template type paramete...
static bool CheckNonTypeTemplatePartialSpecializationArgs(Sema &S, SourceLocation TemplateNameLoc, NonTypeTemplateParmDecl *Param, const TemplateArgument *Args, unsigned NumArgs, bool IsDefaultArgument)
Subroutine of Sema::CheckTemplatePartialSpecializationArgs that checks non-type template partial spec...
static QualType checkBuiltinTemplateIdType(Sema &SemaRef, ElaboratedTypeKeyword Keyword, BuiltinTemplateDecl *BTD, ArrayRef< TemplateArgument > Converted, SourceLocation TemplateLoc, TemplateArgumentListInfo &TemplateArgs)
static void StripImplicitInstantiation(NamedDecl *D, bool MinGW)
Strips various properties off an implicit instantiation that has just been explicitly specialized.
static bool isEnableIf(NestedNameSpecifierLoc NNS, const IdentifierInfo &II, SourceRange &CondRange, Expr *&Cond)
Determine whether this failed name lookup should be treated as being disabled by a usage of std::enab...
static void DiagnoseTemplateParameterListArityMismatch(Sema &S, TemplateParameterList *New, TemplateParameterList *Old, Sema::TemplateParameterListEqualKind Kind, SourceLocation TemplateArgLoc)
Diagnose a known arity mismatch when comparing template argument lists.
static bool isTemplateArgumentTemplateParameter(const TemplateArgument &Arg, unsigned Depth, unsigned Index)
static bool CheckTemplateArgumentIsCompatibleWithParameter(Sema &S, NamedDecl *Param, QualType ParamType, Expr *ArgIn, Expr *Arg, QualType ArgType)
Checks whether the given template argument is compatible with its template parameter.
static bool isInVkNamespace(const RecordType *RT)
static ExprResult formImmediatelyDeclaredConstraint(Sema &S, NestedNameSpecifierLoc NS, DeclarationNameInfo NameInfo, NamedDecl *NamedConcept, NamedDecl *FoundDecl, SourceLocation LAngleLoc, SourceLocation RAngleLoc, QualType ConstrainedType, SourceLocation ParamNameLoc, ArgumentLocAppender Appender, SourceLocation EllipsisLoc)
static TemplateArgumentListInfo makeTemplateArgumentListInfo(Sema &S, TemplateIdAnnotation &TemplateId)
Convert the parser's template argument list representation into our form.
static void collectConjunctionTerms(Expr *Clause, SmallVectorImpl< Expr * > &Terms)
Collect all of the separable terms in the given condition, which might be a conjunction.
static void checkMoreSpecializedThanPrimary(Sema &S, PartialSpecDecl *Partial)
static SpirvOperand checkHLSLSpirvTypeOperand(Sema &SemaRef, QualType OperandArg, SourceLocation Loc)
static SourceLocation DiagLocForExplicitInstantiation(NamedDecl *D, SourceLocation PointOfInstantiation)
Compute the diagnostic location for an explicit instantiation.
static bool RemoveLookupResult(LookupResult &R, NamedDecl *C)
static bool CheckTemplateArgumentAddressOfObjectOrFunction(Sema &S, NamedDecl *Param, QualType ParamType, Expr *ArgIn, bool IsSpecified, TemplateArgument &SugaredConverted, TemplateArgument &CanonicalConverted)
Checks whether the given template argument is the address of an object or function according to C++ [...
static bool isEnableIfAliasTemplate(TypeAliasTemplateDecl *AliasTemplate)
Determine whether this alias template is "enable_if_t".
static bool DiagnoseUnexpandedParameterPacks(Sema &S, TemplateTemplateParmDecl *TTP)
Check for unexpanded parameter packs within the template parameters of a template template parameter,...
static bool CheckExplicitInstantiationScope(Sema &S, NamedDecl *D, SourceLocation InstLoc, bool WasQualifiedName)
Check the scope of an explicit instantiation.
static TemplateArgumentLoc translateTemplateArgument(Sema &SemaRef, const ParsedTemplateArgument &Arg)
static NullPointerValueKind isNullPointerValueTemplateArgument(Sema &S, NamedDecl *Param, QualType ParamType, Expr *Arg, Decl *Entity=nullptr)
Determine whether the given template argument is a null pointer value of the appropriate type.
static void checkTemplatePartialSpecialization(Sema &S, PartialSpecDecl *Partial)
static bool CheckExplicitInstantiation(Sema &S, NamedDecl *D, SourceLocation InstLoc, bool WasQualifiedName, TemplateSpecializationKind TSK)
Common checks for whether an explicit instantiation of D is valid.
static Expr * lookThroughRangesV3Condition(Preprocessor &PP, Expr *Cond)
static bool DiagnoseDefaultTemplateArgument(Sema &S, Sema::TemplateParamListContext TPC, SourceLocation ParamLoc, SourceRange DefArgRange)
Diagnose the presence of a default template argument on a template parameter, which is ill-formed in ...
static void noteNonDeducibleParameters(Sema &S, TemplateParameterList *TemplateParams, const llvm::SmallBitVector &DeducibleParams)
static void completeMemberSpecializationImpl(Sema &S, DeclT *OrigD, SourceLocation Loc)
Complete the explicit specialization of a member of a class template by updating the instantiated mem...
static bool diagnoseMissingArgument(Sema &S, SourceLocation Loc, TemplateDecl *TD, const TemplateParmDecl *D, TemplateArgumentListInfo &Args)
Diagnose a missing template argument.
static bool CheckTemplateArgumentPointerToMember(Sema &S, NamedDecl *Param, QualType ParamType, Expr *&ResultArg, TemplateArgument &SugaredConverted, TemplateArgument &CanonicalConverted)
Checks whether the given template argument is a pointer to member constant according to C++ [temp....
static bool MatchTemplateParameterKind(Sema &S, NamedDecl *New, const Sema::TemplateCompareNewDeclInfo &NewInstFrom, NamedDecl *Old, const NamedDecl *OldInstFrom, bool Complain, Sema::TemplateParameterListEqualKind Kind, SourceLocation TemplateArgLoc)
Match two template parameters within template parameter lists.
static void dllExportImportClassTemplateSpecialization(Sema &S, ClassTemplateSpecializationDecl *Def)
Make a dllexport or dllimport attr on a class template specialization take effect.
Defines the clang::SourceLocation class and associated facilities.
Allows QualTypes to be sorted and hence used in maps and sets.
static const TemplateArgument & getArgument(const TemplateArgument &A)
C Language Family Type Representation.
APValue - This class implements a discriminated union of [uninitialized] [APSInt] [APFloat],...
const LValueBase getLValueBase() const
APSInt & getComplexIntImag()
ValueKind getKind() const
APFixedPoint & getFixedPoint()
const ValueDecl * getMemberPointerDecl() const
APValue & getVectorElt(unsigned I)
unsigned getVectorLength() const
bool isMemberPointer() const
std::string getAsString(const ASTContext &Ctx, QualType Ty) const
@ Indeterminate
This object has an indeterminate value (C++ [basic.indet]).
@ None
There is no such object (it's outside its lifetime).
bool isNullPointer() const
APSInt & getComplexIntReal()
APFloat & getComplexFloatImag()
APFloat & getComplexFloatReal()
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
TranslationUnitDecl * getTranslationUnitDecl() const
TemplateArgument getCanonicalTemplateArgument(const TemplateArgument &Arg) const
Retrieve the "canonical" template argument.
static CanQualType getCanonicalType(QualType T)
Return the canonical (structural) type corresponding to the specified potentially non-canonical type ...
QualType getPointerType(QualType T) const
Return the uniqued reference to the type for a pointer to the specified type.
const LangOptions & getLangOpts() const
TypeSourceInfo * getTrivialTypeSourceInfo(QualType T, SourceLocation Loc=SourceLocation()) const
Allocate a TypeSourceInfo where all locations have been initialized to a given location,...
ArrayRef< ExplicitInstantiationDecl * > getExplicitInstantiationDecls(const NamedDecl *Spec) const
Get all ExplicitInstantiationDecls for a given specialization.
TemplateName getQualifiedTemplateName(NestedNameSpecifier Qualifier, bool TemplateKeyword, TemplateName Template) const
Retrieve the template name that represents a qualified template name such as std::vector.
QualType getArrayDecayedType(QualType T) const
Return the properly qualified result of decaying the specified array type to a pointer.
static bool hasSameType(QualType T1, QualType T2)
Determine whether the given types T1 and T2 are equivalent.
QualType getUnconstrainedType(QualType T) const
Remove any type constraints from a template parameter type, for equivalence comparison of template pa...
static bool hasSameUnqualifiedType(QualType T1, QualType T2)
Determine whether the given types are equivalent after cvr-qualifiers have been removed.
Represents a constant array type that does not decay to a pointer when used as a function parameter.
QualType getElementType() const
A structure for storing the information associated with a name that has been assumed to be a template...
DeclarationName getDeclName() const
Get the name of the template.
QualType getValueType() const
Gets the type contained by this atomic type, i.e.
Attr - This represents one attribute.
AutoTypeKeyword getAutoKeyword() const
const NestedNameSpecifierLoc getNestedNameSpecifierLoc() const
SourceLocation getRAngleLoc() const
SourceLocation getLAngleLoc() const
NamedDecl * getFoundDecl() const
TemplateDecl * getNamedConcept() const
DeclarationNameInfo getConceptNameInfo() const
A fixed int type of a specified bitwidth.
QualType getPointeeType() const
Represents the builtin template declaration which is used to implement __make_integer_seq and other b...
BuiltinTemplateKind getBuiltinTemplateKind() const
This class is used for builtin types like 'int'.
static CStyleCastExpr * Create(const ASTContext &Context, QualType T, ExprValueKind VK, CastKind K, Expr *Op, const CXXCastPath *BasePath, FPOptionsOverride FPO, TypeSourceInfo *WrittenTy, SourceLocation L, SourceLocation R)
static CXXBoolLiteralExpr * Create(const ASTContext &C, bool Val, QualType Ty, SourceLocation Loc)
Represents a C++ member access expression where the actual member referenced could not be resolved be...
static CXXDependentScopeMemberExpr * Create(const ASTContext &Ctx, Expr *Base, QualType BaseType, bool IsArrow, SourceLocation OperatorLoc, NestedNameSpecifierLoc QualifierLoc, SourceLocation TemplateKWLoc, NamedDecl *FirstQualifierFoundInScope, DeclarationNameInfo MemberNameInfo, const TemplateArgumentListInfo *TemplateArgs)
Represents a static or instance method of a struct/union/class.
The null pointer literal (C++11 [lex.nullptr])
Represents a C++ struct/union/class.
static CXXRecordDecl * Create(const ASTContext &C, TagKind TK, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, CXXRecordDecl *PrevDecl=nullptr)
CXXRecordDecl * getMostRecentDecl()
CXXRecordDecl * getInstantiatedFromMemberClass() const
If this record is an instantiation of a member class, retrieves the member class from which it was in...
CXXRecordDecl * getDefinition() const
TemplateSpecializationKind getTemplateSpecializationKind() const
Determine whether this particular class is a specialization or instantiation of a class template or m...
void setDescribedClassTemplate(ClassTemplateDecl *Template)
MemberSpecializationInfo * getMemberSpecializationInfo() const
If this class is an instantiation of a member class of a class template specialization,...
void setTemplateSpecializationKind(TemplateSpecializationKind TSK)
Set the kind of specialization or template instantiation this is.
CXXRecordDecl * getPreviousDecl()
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.
char * location_data() const
Retrieve the data associated with the source-location information.
bool isValid() const
A scope specifier is present, and it refers to a real scope.
void MakeTrivial(ASTContext &Context, NestedNameSpecifier Qualifier, SourceRange R)
Make a new nested-name-specifier from incomplete source-location information.
SourceRange getRange() const
SourceLocation getBeginLoc() const
bool isSet() const
Deprecated.
NestedNameSpecifier getScopeRep() const
Retrieve the representation of the nested-name-specifier.
NestedNameSpecifierLoc getWithLocInContext(ASTContext &Context) const
Retrieve a nested-name-specifier with location information, copied into the given AST context.
bool isInvalid() const
An error occurred during parsing of the scope specifier.
bool isEmpty() const
No scope specifier.
void Adopt(NestedNameSpecifierLoc Other)
Adopt an existing nested-name-specifier (with source-range information).
A Microsoft C++ __uuidof expression, which gets the _GUID that corresponds to the supplied type or ex...
static CanQual< Type > CreateUnsafe(QualType Other)
const T * getTypePtr() const
Retrieve the underlying type pointer, which refers to a canonical type.
Declaration of a class template.
CXXRecordDecl * getTemplatedDecl() const
Get the underlying class declarations of the template.
static ClassTemplateDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation L, DeclarationName Name, TemplateParameterList *Params, NamedDecl *Decl)
Create a class template node.
static ClassTemplatePartialSpecializationDecl * Create(ASTContext &Context, TagKind TK, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, TemplateParameterList *Params, ClassTemplateDecl *SpecializedTemplate, ArrayRef< TemplateArgument > Args, CanQualType CanonInjectedTST, ClassTemplatePartialSpecializationDecl *PrevDecl)
void setMemberSpecialization()
Note that this member template is a specialization.
Represents a class template specialization, which refers to a class template with a given set of temp...
static ClassTemplateSpecializationDecl * Create(ASTContext &Context, TagKind TK, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, ClassTemplateDecl *SpecializedTemplate, ArrayRef< TemplateArgument > Args, bool StrictPackMatch, ClassTemplateSpecializationDecl *PrevDecl)
SourceLocation getPointOfInstantiation() const
Get the point of instantiation (if any), or null if none.
void setTemplateArgsAsWritten(const ASTTemplateArgumentListInfo *ArgsWritten)
Set the template argument list as written in the sources.
Complex values, per C99 6.2.5p11.
QualType getElementType() const
Declaration of a C++20 concept.
ConceptDecl * getCanonicalDecl() override
Retrieves the "canonical" declaration of the given declaration.
static ConceptDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation L, DeclarationName Name, TemplateParameterList *Params, Expr *ConstraintExpr=nullptr)
static ConceptReference * Create(const ASTContext &C, NestedNameSpecifierLoc NNS, SourceLocation TemplateKWLoc, DeclarationNameInfo ConceptNameInfo, NamedDecl *FoundDecl, TemplateDecl *NamedConcept, const ASTTemplateArgumentListInfo *ArgsAsWritten)
static ConceptSpecializationExpr * Create(const ASTContext &C, ConceptReference *ConceptRef, ImplicitConceptSpecializationDecl *SpecDecl, const ConstraintSatisfaction *Satisfaction)
const TypeClass * getTypePtr() const
Represents the canonical version of C arrays with a specified constant size.
static ConstantExpr * Create(const ASTContext &Context, Expr *E, const APValue &Result)
Represents a concrete matrix type with constant number of rows and columns.
The result of a constraint satisfaction check, containing the necessary information to diagnose an un...
Base class for callback objects used by Sema::CorrectTypo to check the validity of a potential typo c...
A POD class for pairing a NamedDecl* with an access specifier.
static DeclAccessPair make(NamedDecl *D, AccessSpecifier AS)
DeclContext - This is used only as base class of specific decl types that can act as declaration cont...
DeclContext * getParent()
getParent - Returns the containing DeclContext.
bool Equals(const DeclContext *DC) const
Determine whether this declaration context is equivalent to the declaration context DC.
bool isFileContext() const
void makeDeclVisibleInContext(NamedDecl *D)
Makes a declaration visible within this context.
bool isTransparentContext() const
isTransparentContext - Determines whether this context is a "transparent" context,...
bool isDependentContext() const
Determines whether this context is dependent on a template parameter.
bool InEnclosingNamespaceSetOf(const DeclContext *NS) const
Test if this context is part of the enclosing namespace set of the context NS, as defined in C++0x [n...
bool isTranslationUnit() const
DeclContext * getRedeclContext()
getRedeclContext - Retrieve the context in which an entity conflicts with other entities of the same ...
void addDecl(Decl *D)
Add the declaration D into this context.
bool isStdNamespace() const
DeclContext * getEnclosingNamespaceContext()
Retrieve the nearest enclosing namespace context.
bool isFunctionOrMethod() const
DeclContext * getLookupParent()
Find the parent context of this context that will be used for unqualified name lookup.
bool isExternCContext() const
Determines whether this context or some of its ancestors is a linkage specification context that spec...
const LinkageSpecDecl * getExternCContext() const
Retrieve the nearest enclosing C linkage specification context.
bool Encloses(const DeclContext *DC) const
Determine whether this declaration context semantically encloses the declaration context DC.
A reference to a declared variable, function, enum, etc.
NestedNameSpecifier getQualifier() const
If the name was qualified, retrieves the nested-name-specifier that precedes the name.
Captures information about "declaration specifiers".
bool isVirtualSpecified() const
void ClearStorageClassSpecs()
bool isNoreturnSpecified() const
SourceLocation getStorageClassSpecLoc() const
SCS getStorageClassSpec() const
SourceLocation getBeginLoc() const LLVM_READONLY
SourceRange getSourceRange() const LLVM_READONLY
SourceLocation getNoreturnSpecLoc() const
SourceLocation getExplicitSpecLoc() const
TSCS getThreadStorageClassSpec() const
ParsedAttributes & getAttributes()
bool isInlineSpecified() const
SourceLocation getThreadStorageClassSpecLoc() const
SourceLocation getVirtualSpecLoc() const
SourceLocation getConstexprSpecLoc() const
SourceLocation getInlineSpecLoc() const
bool hasExplicitSpecifier() const
bool hasConstexprSpecifier() const
Decl - This represents one declaration (or definition), e.g.
Decl * getPreviousDecl()
Retrieve the previous declaration that declares the same entity as this declaration,...
FriendObjectKind getFriendObjectKind() const
Determines whether this declaration is the object of a friend declaration and, if so,...
ASTContext & getASTContext() const LLVM_READONLY
bool isParameterPack() const
Whether this declaration is a parameter pack.
void setInvalidDecl(bool Invalid=true)
setInvalidDecl - Indicates the Decl had a semantic error.
@ FOK_None
Not a friend object.
bool isTemplated() const
Determine whether this declaration is a templated entity (whether it is.
Module * getOwningModule() const
Get the module that owns this declaration (for visibility purposes).
Module * getImportedOwningModule() const
Get the imported owning module, if this decl is from an imported (non-local) module.
static DeclContext * castToDeclContext(const Decl *)
void setObjectOfFriendDecl(bool PerformFriendInjection=false)
Changes the namespace of this declaration to reflect that it's the object of a friend declaration.
bool isTemplateParameter() const
isTemplateParameter - Determines whether this declaration is a template parameter.
bool isInvalidDecl() const
void setAccess(AccessSpecifier AS)
SourceLocation getLocation() const
bool isTemplateParameterPack() const
isTemplateParameter - Determines whether this declaration is a template parameter pack.
DeclContext * getDeclContext()
AccessSpecifier getAccess() const
SourceLocation getBeginLoc() const LLVM_READONLY
void print(raw_ostream &Out, unsigned Indentation=0, bool PrintInstantiation=false) const
DeclContext * getLexicalDeclContext()
getLexicalDeclContext - The declaration context where this Decl was lexically declared (LexicalDC).
void setLexicalDeclContext(DeclContext *DC)
virtual Decl * getCanonicalDecl()
Retrieves the "canonical" declaration of the given declaration.
virtual SourceRange getSourceRange() const LLVM_READONLY
Source range that this declaration covers.
The name of a declaration.
IdentifierInfo * getAsIdentifierInfo() const
Retrieve the IdentifierInfo * stored in this declaration name, or null if this declaration name isn't...
std::string getAsString() const
Retrieve the human-readable string for this name.
NameKind getNameKind() const
Determine what kind of name this is.
void setTypeSourceInfo(TypeSourceInfo *TI)
TypeSourceInfo * getTypeSourceInfo() const
Information about one declarator, including the parsed type information and the identifier.
const DeclSpec & getDeclSpec() const
getDeclSpec - Return the declaration-specifier that this declarator was declared with.
SourceLocation getIdentifierLoc() const
SourceLocation getEllipsisLoc() const
SourceLocation getBeginLoc() const LLVM_READONLY
UnqualifiedId & getName()
Retrieve the name specified by this declarator.
const CXXScopeSpec & getCXXScopeSpec() const
getCXXScopeSpec - Return the C++ scope specifier (global scope or nested-name-specifier) that is part...
bool isInvalidType() const
SourceRange getSourceRange() const LLVM_READONLY
Get the source range that spans this declarator.
DeclSpec & getMutableDeclSpec()
getMutableDeclSpec - Return a non-const version of the DeclSpec.
const IdentifierInfo * getIdentifier() const
Represents an extended address space qualifier where the input address space value is dependent.
QualType getPointeeType() const
void setNameLoc(SourceLocation Loc)
void setElaboratedKeywordLoc(SourceLocation Loc)
void setQualifierLoc(NestedNameSpecifierLoc QualifierLoc)
A qualified reference to a name whose declaration cannot yet be resolved.
static DependentScopeDeclRefExpr * Create(const ASTContext &Context, NestedNameSpecifierLoc QualifierLoc, SourceLocation TemplateKWLoc, const DeclarationNameInfo &NameInfo, const TemplateArgumentListInfo *TemplateArgs)
Represents an array type in C++ whose size is a value-dependent expression.
Represents an extended vector type where either the type or size is dependent.
QualType getElementType() const
Represents a matrix type where the type and the number of rows and columns is dependent on a template...
Represents a vector type where either the type or size is dependent.
QualType getElementType() const
virtual bool TraverseTemplateArgumentLoc(const TemplateArgumentLoc &ArgLoc)
virtual bool TraverseTypeLoc(TypeLoc TL, bool TraverseQualifier=true)
virtual bool TraverseStmt(MaybeConst< Stmt > *S)
virtual bool TraverseTemplateName(TemplateName Template)
RAII object that enters a new expression evaluation context.
MemberSpecializationInfo * getMemberSpecializationInfo() const
If this enumeration is an instantiation of a member enumeration of a class template specialization,...
EnumDecl * getInstantiatedFromMemberEnum() const
Returns the enumeration (declared within the template) from which this enumeration type was instantia...
static ExplicitInstantiationDecl * Create(ASTContext &C, DeclContext *DC, NamedDecl *Specialization, SourceLocation ExternLoc, SourceLocation TemplateLoc, NestedNameSpecifierLoc QualifierLoc, const ASTTemplateArgumentListInfo *ArgsAsWritten, SourceLocation NameLoc, TypeSourceInfo *TypeAsWritten, TemplateSpecializationKind TSK)
This represents one expression.
Expr * IgnoreParenCasts() LLVM_READONLY
Skip past any parentheses and casts which might surround this expression until reaching a fixed point...
bool isValueDependent() const
Determines whether the value of this expression depends on.
ExprValueKind getValueKind() const
getValueKind - The value kind that this expression produces.
bool isTypeDependent() const
Determines whether the type of this expression depends on.
Expr * IgnoreParenImpCasts() LLVM_READONLY
Skip past any parentheses and implicit casts which might surround this expression until reaching a fi...
bool containsErrors() const
Whether this expression contains subexpressions which had errors.
bool isLValue() const
isLValue - True if this expression is an "l-value" according to the rules of the current language.
@ NPC_NeverValueDependent
Specifies that the expression should never be value-dependent.
bool EvaluateAsRValue(EvalResult &Result, const ASTContext &Ctx, bool InConstantContext=false) const
EvaluateAsRValue - Return true if this is a constant which we can fold to an rvalue using any crazy t...
Expr * IgnoreImpCasts() LLVM_READONLY
Skip past any implicit casts which might surround this expression until reaching a fixed point.
NullPointerConstantKind isNullPointerConstant(ASTContext &Ctx, NullPointerConstantValueDependence NPC) const
isNullPointerConstant - C99 6.3.2.3p3 - Test if this reduces down to a Null pointer constant.
SourceLocation getExprLoc() const LLVM_READONLY
getExprLoc - Return the preferred location for the arrow when diagnosing a problem with a generic exp...
ExtVectorType - Extended vector type.
Represents a member of a struct/union/class.
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 FixedPointLiteral * CreateFromRawInt(const ASTContext &C, const llvm::APInt &V, QualType type, SourceLocation l, unsigned Scale)
static FloatingLiteral * Create(const ASTContext &C, const llvm::APFloat &V, bool isexact, QualType Type, SourceLocation L)
FriendDecl - Represents the declaration of a friend entity, which can be a function,...
static FriendDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation L, FriendUnion Friend_, SourceLocation FriendL, SourceLocation EllipsisLoc={}, ArrayRef< TemplateParameterList * > FriendTypeTPLists={})
Represents a function declaration or definition.
ConstexprSpecKind getConstexprKind() const
bool isFunctionTemplateSpecialization() const
Determine whether this function is a function template specialization.
SourceLocation getPointOfInstantiation() const
Retrieve the (first) point of instantiation of a function template specialization or a member of a cl...
FunctionTemplateDecl * getPrimaryTemplate() const
Retrieve the primary template that this function template specialization either specializes or was in...
MemberSpecializationInfo * getMemberSpecializationInfo() const
If this function is an instantiation of a member function of a class template specialization,...
FunctionDecl * getCanonicalDecl() override
Retrieves the "canonical" declaration of the given declaration.
bool isDeleted() const
Whether this function has been deleted.
TemplatedKind getTemplatedKind() const
What kind of templated function this is.
void setDependentTemplateSpecialization(ASTContext &Context, const UnresolvedSetImpl &Templates, const TemplateArgumentListInfo *TemplateArgs)
Specifies that this function declaration is actually a dependent function template specialization.
void setLateTemplateParsed(bool ILT=true)
State that this templated function will be late parsed.
TemplateSpecializationKind getTemplateSpecializationKind() const
Determine what kind of template instantiation this function represents.
void setDeletedAsWritten(bool D=true, StringLiteral *Message=nullptr)
FunctionDecl * getInstantiatedFromMemberFunction() const
If this function is an instantiation of a member function of a class template specialization,...
Represents a K&R-style 'int foo()' function, which has no information available about its arguments.
Represents a prototype with parameter type info, e.g.
ExtProtoInfo getExtProtoInfo() const
ArrayRef< QualType > getParamTypes() const
ArrayRef< QualType > param_types() const
Declaration of a template function.
FunctionDecl * getTemplatedDecl() const
Get the underlying function declaration of the template.
Provides information about a function template specialization, which is a FunctionDecl that has been ...
bool isExplicitSpecialization() const
void setTemplateSpecializationKind(TemplateSpecializationKind TSK)
Set the template specialization kind.
SourceLocation getPointOfInstantiation() const
Retrieve the first point of instantiation of this function template specialization.
TemplateSpecializationKind getTemplateSpecializationKind() const
Determine what kind of template specialization this is.
QualType getReturnType() const
One of these records is kept for each identifier that is lexed.
bool isStr(const char(&Str)[StrLen]) const
Return true if this is the identifier for the specified string.
ImplicitCastExpr - Allows us to explicitly represent implicit type conversions, which have no direct ...
static ImplicitConceptSpecializationDecl * Create(const ASTContext &C, DeclContext *DC, SourceLocation SL, ArrayRef< TemplateArgument > ConvertedArgs)
Represents a C array with an unspecified size.
const TypeClass * getTypePtr() const
Describes an C or C++ initializer list.
Describes the kind of initialization being performed, along with location information for tokens rela...
static InitializationKind CreateForInit(SourceLocation Loc, bool DirectInit, Expr *Init)
Create an initialization from an initializer (which, for direct initialization from a parenthesized l...
ExprResult Perform(Sema &S, const InitializedEntity &Entity, const InitializationKind &Kind, MultiExprArg Args, QualType *ResultType=nullptr)
Perform the actual initialization of the given entity based on the computed initialization sequence.
Describes an entity that is being initialized.
static InitializedEntity InitializeTemplateParameter(QualType T, NamedDecl *Param)
Create the initialization entity for a template parameter.
static IntegerLiteral * Create(const ASTContext &C, const llvm::APInt &V, QualType type, SourceLocation l)
Returns a new integer literal with value 'V' and type 'type'.
An lvalue reference type, per C++11 [dcl.ref].
Represents a linkage specification.
A stack-allocated class that identifies which local variable declaration instantiations are present i...
A class for iterating through a result set and possibly filtering out results.
void erase()
Erase the last element returned from this iterator.
Represents the results of name lookup.
LLVM_ATTRIBUTE_REINITIALIZES void clear()
Clears out any current state.
void setTemplateNameLookup(bool TemplateName)
Sets whether this is a template-name lookup.
bool empty() const
Return true if no decls were found.
NamedDecl * getFoundDecl() const
Fetch the unique decl found by this lookup.
bool isSingleResult() const
Determines if this names a single result which is not an unresolved value using decl.
UnresolvedSetImpl::iterator iterator
QualType getElementType() const
Returns type of the elements being stored in the matrix.
A pointer to member type per C++ 8.3.3 - Pointers to members.
NestedNameSpecifier getQualifier() const
CXXRecordDecl * getMostRecentCXXRecordDecl() const
Note: this can trigger extra deserialization when external AST sources are used.
QualType getPointeeType() const
Provides information a specialization of a member of a class template, which may be a member function...
TemplateSpecializationKind getTemplateSpecializationKind() const
Determine what kind of template specialization this is.
SourceLocation getPointOfInstantiation() const
Retrieve the first point of instantiation of this member.
std::string getFullModuleName(bool AllowStringLiterals=false) const
Retrieve the full name of this module, including the path from its top-level module.
Data structure that captures multiple levels of template argument lists for use in template instantia...
void addOuterTemplateArguments(Decl *AssociatedDecl, ArgList Args, bool Final)
Add a new outmost level to the multi-level template argument list.
void addOuterRetainedLevels(unsigned Num)
This represents a decl that may have a name.
NamedDecl * getUnderlyingDecl()
Looks through UsingDecls and ObjCCompatibleAliasDecls for the underlying named decl.
IdentifierInfo * getIdentifier() const
Get the identifier that names this declaration, if there is one.
StringRef getName() const
Get the name of identifier for this declaration as a StringRef.
DeclarationName getDeclName() const
Get the actual, stored name of the declaration, which may be a special name.
std::string getQualifiedNameAsString() const
NamedDecl * getMostRecentDecl()
Linkage getFormalLinkage() const
Get the linkage from a semantic point of view.
void setModulePrivate()
Specify that this declaration was marked as being private to the module in which it was defined.
bool hasLinkage() const
Determine whether this declaration has linkage.
Represent a C++ namespace.
A C++ nested-name-specifier augmented with source location information.
NamespaceAndPrefixLoc getAsNamespaceAndPrefix() const
NestedNameSpecifier getNestedNameSpecifier() const
Retrieve the nested-name-specifier to which this instance refers.
TypeLoc castAsTypeLoc() const
For a nested-name-specifier that refers to a type, retrieve the type with source-location information...
Represents a C++ nested name specifier, such as "\::std::vector<int>::".
bool isDependent() const
Whether this nested name specifier refers to a dependent type or not.
const Type * getAsType() const
@ MicrosoftSuper
Microsoft's '__super' specifier, stored as a CXXRecordDecl* of the class it appeared in.
@ Global
The global specifier '::'. There is no stored value.
@ Type
A type, stored as a Type*.
@ Namespace
A namespace-like entity, stored as a NamespaceBaseDecl*.
NonTypeTemplateParmDecl - Declares a non-type template parameter, e.g., "Size" in.
SourceLocation getDefaultArgumentLoc() const
Retrieve the location of the default argument, if any.
bool isPackExpansion() const
Whether this parameter pack is a pack expansion.
static NonTypeTemplateParmDecl * Create(const ASTContext &C, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, int D, int P, const IdentifierInfo *Id, QualType T, bool ParameterPack, TypeSourceInfo *TInfo)
bool hasDefaultArgument() const
Determine whether this template parameter has a default argument.
unsigned getIndex() const
Get the index of the template parameter within its parameter list.
unsigned getDepth() const
Get the nesting depth of the template parameter.
void setPlaceholderTypeConstraint(Expr *E)
Represents typeof(type), a C23 feature and GCC extension, or `typeof_unqual(type),...
Represents a pointer to an Objective C object.
static OpaquePtr make(TemplateName P)
OpaqueValueExpr - An expression referring to an opaque object of a fixed type and value class.
OverloadCandidateSet - A set of overload candidates, used in C++ overload resolution (C++ 13....
@ CSK_Normal
Normal lookup.
SmallVectorImpl< OverloadCandidate >::iterator iterator
void NoteCandidates(PartialDiagnosticAt PA, Sema &S, OverloadCandidateDisplayKind OCD, ArrayRef< Expr * > Args, StringRef Opc="", SourceLocation Loc=SourceLocation(), llvm::function_ref< bool(OverloadCandidate &)> Filter=[](OverloadCandidate &) { return true;})
When overload resolution fails, prints diagnostic messages containing the candidates in the candidate...
OverloadingResult BestViableFunction(Sema &S, SourceLocation Loc, OverloadCandidateSet::iterator &Best)
Find the best viable function on this overload set, if it exists.
OverloadCandidate & addCandidate(unsigned NumConversions=0, ConversionSequenceList Conversions={})
Add a new candidate with NumConversions conversion sequence slots to the overload set.
bool isVarDeclReference() const
TemplateTemplateParmDecl * getTemplateTemplateDecl() const
bool isConceptReference() const
ArrayRef< TemplateArgumentLoc > template_arguments() const
A structure for storing the information associated with an overloaded template name.
NamedDecl *const * iterator
Represents a C++11 pack expansion that produces a sequence of expressions.
A single parameter index whose accessors require each use to make explicit the parameter index encodi...
ParenExpr - This represents a parenthesized expression, e.g.
ParsedAttr - Represents a syntactic attribute.
Represents the parsed form of a C++ template argument.
ParsedTemplateArgument()
Build an empty template argument.
KindType getKind() const
Determine what kind of template argument we have.
ParsedTemplateTy getAsTemplate() const
Retrieve the template template argument's template name.
ParsedTemplateArgument getTemplatePackExpansion(SourceLocation EllipsisLoc) const
Retrieve a pack expansion of the given template template argument.
ParsedType getAsType() const
Retrieve the template type argument's type.
@ Type
A template type parameter, stored as a type.
@ Template
A template template argument, stored as a template name.
@ NonType
A non-type template parameter, stored as an expression.
SourceLocation getEllipsisLoc() const
Retrieve the location of the ellipsis that makes a template template argument into a pack expansion.
SourceLocation getTemplateKwLoc() const
Retrieve the location of the template argument.
Expr * getAsExpr() const
Retrieve the non-type template argument's expression.
SourceLocation getNameLoc() const
Retrieve the location of the template argument.
const CXXScopeSpec & getScopeSpec() const
Retrieve the nested-name-specifier that precedes the template name in a template template argument.
PointerType - C99 6.7.5.1 - Pointer Declarators.
QualType getPointeeType() const
Engages in a tight little dance with the lexer to efficiently preprocess tokens.
StringRef getImmediateMacroName(SourceLocation Loc)
Retrieve the name of the immediate macro expansion.
bool NeedsStdLibCxxWorkaroundBefore(std::uint64_t FixedVersion)
A (possibly-)qualified type.
bool hasQualifiers() const
Determine whether this type has any qualifiers.
QualType getNonLValueExprType(const ASTContext &Context) const
Determine the type of a (typically non-lvalue) expression with the specified result type.
void addConst()
Add the const type qualifier to this QualType.
bool isNull() const
Return true if this QualType doesn't point to a type yet.
const Type * getTypePtr() const
Retrieves a pointer to the underlying (unqualified) type.
QualType getNonReferenceType() const
If Type is a reference type (e.g., const int&), returns the type that the reference refers to ("const...
QualType getCanonicalType() const
QualType getUnqualifiedType() const
Retrieve the unqualified variant of the given type, removing as little sugar as possible.
QualType getNonPackExpansionType() const
Remove an outer pack expansion type (if any) from this type.
static std::string getAsString(SplitQualType split, const PrintingPolicy &Policy)
Callback class to reject typo corrections that look like template parameters when doing a qualified l...
bool ValidateCandidate(const TypoCorrection &Candidate) override
Simple predicate used by the default RankCandidate to determine whether to return an edit distance of...
QualifiedLookupValidatorCCC(bool HasQualifier)
The collection of all-type qualifiers we support.
@ OCL_Strong
Assigning into this object requires the old value to be released and the new value to be retained.
void setObjCLifetime(ObjCLifetime type)
An rvalue reference type, per C++11 [dcl.ref].
Represents a struct/union/class.
RecordDecl * getDefinition() const
Returns the RecordDecl that actually defines this struct/union/class.
void setMemberSpecialization()
Note that this member template is a specialization.
void setPreviousDecl(decl_type *PrevDecl)
Set the previous declaration.
Base for LValueReferenceType and RValueReferenceType.
QualType getPointeeType() const
Scope - A scope is a transient data structure that is used while parsing the program.
unsigned getFlags() const
getFlags - Return the flags for this scope.
DeclContext * getEntity() const
Get the entity corresponding to this scope.
bool isTemplateParamScope() const
isTemplateParamScope - Return true if this scope is a C++ template parameter scope.
const Scope * getParent() const
getParent - Return the scope that this is nested in.
Scope * getTemplateParamParent()
@ TemplateParamScope
This is a scope that corresponds to the template parameters of a C++ template.
A generic diagnostic builder for errors which may or may not be deferred.
PartialDiagnostic PDiag(unsigned DiagID=0)
Build a partial diagnostic.
SemaDiagnosticBuilder DiagCompat(SourceLocation Loc, unsigned CompatDiagId)
Emit a compatibility diagnostic.
SemaDiagnosticBuilder Diag(SourceLocation Loc, unsigned DiagID)
Emit a diagnostic.
void inheritTargetAttrs(FunctionDecl *FD, const FunctionTemplateDecl &TD)
Copies target attributes from the template TD to the function FD.
RAII object used to change the argument pack substitution index within a Sema object.
RAII object used to temporarily allow the C++ 'this' expression to be used, with the given qualifiers...
Whether and why a template name is required in this lookup.
SourceLocation getTemplateKeywordLoc() const
bool hasTemplateKeyword() const
RAII class used to determine whether SFINAE has trapped any errors that occur during template argumen...
bool hasErrorOccurred() const
Determine whether any SFINAE errors have been trapped.
Abstract base class used for diagnosing integer constant expression violations.
Sema - This implements semantic analysis and AST building for C.
bool hasReachableDefinition(NamedDecl *D, NamedDecl **Suggested, bool OnlyNeedComplete=false)
Determine if D has a reachable definition.
ParsedType CreateParsedType(QualType T, TypeSourceInfo *TInfo)
Package the given type and TSI into a ParsedType.
QualType getCurrentThisType()
Try to retrieve the type of the 'this' pointer.
DeclResult ActOnClassTemplateSpecialization(Scope *S, unsigned TagSpec, TagUseKind TUK, SourceLocation KWLoc, SourceLocation ModulePrivateLoc, CXXScopeSpec &SS, TemplateIdAnnotation &TemplateId, const ParsedAttributesView &Attr, MultiTemplateParamsArg TemplateParameterLists, SkipBodyInfo *SkipBody=nullptr)
ConceptDecl * ActOnStartConceptDefinition(Scope *S, MultiTemplateParamsArg TemplateParameterLists, const IdentifierInfo *Name, SourceLocation NameLoc)
SmallVector< CodeSynthesisContext, 16 > CodeSynthesisContexts
List of active code synthesis contexts.
LocalInstantiationScope * CurrentInstantiationScope
The current instantiation scope used to store local variables.
sema::CapturingScopeInfo * getEnclosingLambdaOrBlock() const
Get the innermost lambda or block enclosing the current location, if any.
bool isDeclInScope(NamedDecl *D, DeclContext *Ctx, Scope *S=nullptr, bool AllowInlineNamespace=false) const
isDeclInScope - If 'Ctx' is a function/method, isDeclInScope returns true if 'D' is in Scope 'S',...
ExprResult CreateBuiltinUnaryOp(SourceLocation OpLoc, UnaryOperatorKind Opc, Expr *InputExpr, bool IsAfterAmp=false)
LookupNameKind
Describes the kind of name lookup to perform.
@ LookupOrdinaryName
Ordinary name lookup, which finds ordinary names (functions, variables, typedefs, etc....
@ LookupMemberName
Member name lookup, which finds the names of class/struct/union members.
@ LookupTagName
Tag name lookup, which finds the names of enums, classes, structs, and unions.
ExprResult ActOnConstantExpression(ExprResult Res)
bool LookupTemplateName(LookupResult &R, Scope *S, CXXScopeSpec &SS, QualType ObjectType, bool EnteringContext, RequiredTemplateKind RequiredTemplate=SourceLocation(), AssumedTemplateKind *ATK=nullptr, bool AllowTypoCorrection=true)
bool SetMemberAccessSpecifier(NamedDecl *MemberDecl, NamedDecl *PrevMemberDecl, AccessSpecifier LexicalAS)
SetMemberAccessSpecifier - Set the access specifier of a member.
bool BuildTypeConstraint(const CXXScopeSpec &SS, TemplateIdAnnotation *TypeConstraint, TemplateTypeParmDecl *ConstrainedParameter, SourceLocation EllipsisLoc, bool AllowUnexpandedPack)
NonTagKind getNonTagTypeDeclKind(const Decl *D, TagTypeKind TTK)
Given a non-tag type declaration, returns an enum useful for indicating what kind of non-tag type thi...
bool diagnoseQualifiedDeclaration(CXXScopeSpec &SS, DeclContext *DC, DeclarationName Name, SourceLocation Loc, TemplateIdAnnotation *TemplateId, bool IsMemberSpecialization)
Diagnose a declaration whose declarator-id has the given nested-name-specifier.
TemplateParameterList * ActOnTemplateParameterList(unsigned Depth, SourceLocation ExportLoc, SourceLocation TemplateLoc, SourceLocation LAngleLoc, ArrayRef< NamedDecl * > Params, SourceLocation RAngleLoc, Expr *RequiresClause)
ActOnTemplateParameterList - Builds a TemplateParameterList, optionally constrained by RequiresClause...
bool ActOnTypeConstraint(const CXXScopeSpec &SS, TemplateIdAnnotation *TypeConstraint, TemplateTypeParmDecl *ConstrainedParameter, SourceLocation EllipsisLoc)
bool hasVisibleDeclaration(const NamedDecl *D, llvm::SmallVectorImpl< Module * > *Modules=nullptr)
Determine whether any declaration of an entity is visible.
bool DiagnoseClassNameShadow(DeclContext *DC, DeclarationNameInfo Info)
DiagnoseClassNameShadow - Implement C++ [class.mem]p13: If T is the name of a class,...
void NoteAllFoundTemplates(TemplateName Name)
TemplateName SubstTemplateName(SourceLocation TemplateKWLoc, NestedNameSpecifierLoc &QualifierLoc, TemplateName Name, SourceLocation NameLoc, const MultiLevelTemplateArgumentList &TemplateArgs)
TypeResult ActOnDependentTag(Scope *S, unsigned TagSpec, TagUseKind TUK, const CXXScopeSpec &SS, const IdentifierInfo *Name, SourceLocation TagLoc, SourceLocation NameLoc)
TemplateDecl * AdjustDeclIfTemplate(Decl *&Decl)
AdjustDeclIfTemplate - If the given decl happens to be a template, reset the parameter D to reference...
void InstantiateClassTemplateSpecializationMembers(SourceLocation PointOfInstantiation, ClassTemplateSpecializationDecl *ClassTemplateSpec, TemplateSpecializationKind TSK)
Instantiate the definitions of all of the members of the given class template specialization,...
bool RequireCompleteDeclContext(CXXScopeSpec &SS, DeclContext *DC)
Require that the context specified by SS be complete.
bool TemplateParameterListsAreEqual(const TemplateCompareNewDeclInfo &NewInstFrom, TemplateParameterList *New, const NamedDecl *OldInstFrom, TemplateParameterList *Old, bool Complain, TemplateParameterListEqualKind Kind, SourceLocation TemplateArgLoc=SourceLocation())
Determine whether the given template parameter lists are equivalent.
ExprResult RebuildExprInCurrentInstantiation(Expr *E)
ClassTemplatePartialSpecializationDecl * getMoreSpecializedPartialSpecialization(ClassTemplatePartialSpecializationDecl *PS1, ClassTemplatePartialSpecializationDecl *PS2, SourceLocation Loc)
Returns the more specialized class template partial specialization according to the rules of partial ...
FunctionDecl * getMoreConstrainedFunction(FunctionDecl *FD1, FunctionDecl *FD2)
Returns the more constrained function according to the rules of partial ordering by constraints (C++ ...
void referenceDLLExportedClassMethods()
static NamedDecl * getAsTemplateNameDecl(NamedDecl *D, bool AllowFunctionTemplates=true, bool AllowDependent=true)
Try to interpret the lookup result D as a template-name.
NamedDecl * HandleDeclarator(Scope *S, Declarator &D, MultiTemplateParamsArg TemplateParameterLists)
TemplateParameterList * MatchTemplateParametersToScopeSpecifier(SourceLocation DeclStartLoc, SourceLocation DeclLoc, const CXXScopeSpec &SS, TemplateIdAnnotation *TemplateId, ArrayRef< TemplateParameterList * > ParamLists, bool IsFriend, bool &IsMemberSpecialization, bool &Invalid, bool SuppressDiagnostic=false)
Match the given template parameter lists to the given scope specifier, returning the template paramet...
void AddAlignmentAttributesForRecord(RecordDecl *RD)
AddAlignmentAttributesForRecord - Adds any needed alignment attributes to a the record decl,...
bool RequireStructuralType(QualType T, SourceLocation Loc)
Require the given type to be a structural type, and diagnose if it is not.
VarTemplateSpecializationDecl * BuildVarTemplateInstantiation(VarTemplateDecl *VarTemplate, VarDecl *FromVar, const TemplateArgumentList *PartialSpecArgs, SmallVectorImpl< TemplateArgument > &Converted, SourceLocation PointOfInstantiation, LateInstantiatedAttrVec *LateAttrs=nullptr, LocalInstantiationScope *StartingScope=nullptr)
ExprResult EvaluateConvertedConstantExpression(Expr *E, QualType T, APValue &Value, CCEKind CCE, bool RequireInt, const APValue &PreNarrowingValue)
EvaluateConvertedConstantExpression - Evaluate an Expression That is a converted constant expression ...
ConceptDecl * ActOnFinishConceptDefinition(Scope *S, ConceptDecl *C, Expr *ConstraintExpr, const ParsedAttributesView &Attrs)
FPOptionsOverride CurFPFeatureOverrides()
ExprResult ActOnDependentIdExpression(const CXXScopeSpec &SS, SourceLocation TemplateKWLoc, const DeclarationNameInfo &NameInfo, bool isAddressOfOperand, const TemplateArgumentListInfo *TemplateArgs)
ActOnDependentIdExpression - Handle a dependent id-expression that was just parsed.
bool hasVisibleExplicitSpecialization(const NamedDecl *D, llvm::SmallVectorImpl< Module * > *Modules=nullptr)
Determine if there is a visible declaration of D that is an explicit specialization declaration for a...
bool IsInsideALocalClassWithinATemplateFunction()
Decl * ActOnTemplateDeclarator(Scope *S, MultiTemplateParamsArg TemplateParameterLists, Declarator &D)
NamedDecl * LookupSingleName(Scope *S, DeclarationName Name, SourceLocation Loc, LookupNameKind NameKind, RedeclarationKind Redecl=RedeclarationKind::NotForRedeclaration)
Look up a name, looking for a single declaration.
bool CheckConceptUseInDefinition(NamedDecl *Concept, SourceLocation Loc)
LateParsedTemplateMapT LateParsedTemplateMap
void UnmarkAsLateParsedTemplate(FunctionDecl *FD)
CheckTemplateArgumentKind
Specifies the context in which a particular template argument is being checked.
@ CTAK_Specified
The template argument was specified in the code or was instantiated with some deduced template argume...
@ CTAK_Deduced
The template argument was deduced via template argument deduction.
void CheckTemplatePartialSpecialization(ClassTemplatePartialSpecializationDecl *Partial)
ParsedTemplateArgument ActOnTemplateTypeArgument(TypeResult ParsedType)
Convert a parsed type into a parsed template argument.
bool DiagnoseUnknownTemplateName(const IdentifierInfo &II, SourceLocation IILoc, Scope *S, const CXXScopeSpec *SS, TemplateTy &SuggestedTemplate, TemplateNameKind &SuggestedKind)
bool InstantiateClassTemplateSpecialization(SourceLocation PointOfInstantiation, ClassTemplateSpecializationDecl *ClassTemplateSpec, TemplateSpecializationKind TSK, bool Complain, bool PrimaryStrictPackMatch)
bool IsQualificationConversion(QualType FromType, QualType ToType, bool CStyle, bool &ObjCLifetimeConversion)
IsQualificationConversion - Determines whether the conversion from an rvalue of type FromType to ToTy...
bool ConstraintExpressionDependsOnEnclosingTemplate(const FunctionDecl *Friend, unsigned TemplateDepth, const Expr *Constraint)
bool CheckTemplatePartialSpecializationArgs(SourceLocation Loc, TemplateDecl *PrimaryTemplate, unsigned NumExplicitArgs, ArrayRef< TemplateArgument > Args)
Check the non-type template arguments of a class template partial specialization according to C++ [te...
bool DiagnoseUseOfDecl(NamedDecl *D, ArrayRef< SourceLocation > Locs, const ObjCInterfaceDecl *UnknownObjCClass=nullptr, bool ObjCPropertyAccess=false, bool AvoidPartialAvailabilityChecks=false, ObjCInterfaceDecl *ClassReceiver=nullptr, bool SkipTrailingRequiresClause=false)
Determine whether the use of this declaration is valid, and emit any corresponding diagnostics.
DeclarationNameInfo GetNameForDeclarator(Declarator &D)
GetNameForDeclarator - Determine the full declaration name for the given Declarator.
DiagnosticsEngine & getDiagnostics() const
ExprResult BuildExpressionFromNonTypeTemplateArgument(const TemplateArgument &Arg, SourceLocation Loc)
void propagateDLLAttrToBaseClassTemplate(CXXRecordDecl *Class, Attr *ClassAttr, ClassTemplateSpecializationDecl *BaseTemplateSpec, SourceLocation BaseLoc)
Perform propagation of DLL attributes from a derived class to a templated base class for MS compatibi...
bool isRedefinitionAllowedFor(NamedDecl *D, NamedDecl **Suggested, bool &Visible)
Determine if D has a definition which allows we redefine it in current TU.
FunctionDecl * ResolveAddressOfOverloadedFunction(Expr *AddressOfExpr, QualType TargetType, bool Complain, DeclAccessPair &Found, bool *pHadMultipleCandidates=nullptr)
ResolveAddressOfOverloadedFunction - Try to resolve the address of an overloaded function (C++ [over....
void PushOnScopeChains(NamedDecl *D, Scope *S, bool AddToContext=true)
Add this decl to the scope shadowed decl chains.
void checkSpecializationReachability(SourceLocation Loc, NamedDecl *Spec)
bool hasVisibleDefaultArgument(const NamedDecl *D, llvm::SmallVectorImpl< Module * > *Modules=nullptr)
Determine if the template parameter D has a visible default argument.
ASTContext & getASTContext() const
void translateTemplateArguments(const ASTTemplateArgsPtr &In, TemplateArgumentListInfo &Out)
Translates template arguments as provided by the parser into template arguments used by semantic anal...
UnresolvedSetIterator getMostSpecialized(UnresolvedSetIterator SBegin, UnresolvedSetIterator SEnd, TemplateSpecCandidateSet &FailedCandidates, SourceLocation Loc, const PartialDiagnostic &NoneDiag, const PartialDiagnostic &AmbigDiag, const PartialDiagnostic &CandidateDiag, bool Complain=true, QualType TargetType=QualType())
Retrieve the most specialized of the given function template specializations.
bool IsIntegralPromotion(Expr *From, QualType FromType, QualType ToType)
IsIntegralPromotion - Determines whether the conversion from the expression From (whose potentially-a...
TypeSourceInfo * SubstType(TypeSourceInfo *T, const MultiLevelTemplateArgumentList &TemplateArgs, SourceLocation Loc, DeclarationName Entity, bool AllowDeducedTST=false)
Perform substitution on the type T with a given set of template arguments.
bool IsRedefinitionInModule(const NamedDecl *New, const NamedDecl *Old) const
Check the redefinition in C++20 Modules.
ExprResult BuildTemplateIdExpr(const CXXScopeSpec &SS, SourceLocation TemplateKWLoc, LookupResult &R, bool RequiresADL, const TemplateArgumentListInfo *TemplateArgs)
ExprResult ImpCastExprToType(Expr *E, QualType Type, CastKind CK, ExprValueKind VK=VK_PRValue, const CXXCastPath *BasePath=nullptr, CheckedConversionKind CCK=CheckedConversionKind::Implicit)
ImpCastExprToType - If Expr is not of type 'Type', insert an implicit cast.
ExprResult CheckConceptTemplateId(const CXXScopeSpec &SS, SourceLocation TemplateKWLoc, const DeclarationNameInfo &ConceptNameInfo, NamedDecl *FoundDecl, TemplateDecl *NamedConcept, const TemplateArgumentListInfo *TemplateArgs, bool DoCheckConstraintSatisfaction=true)
TemplateParameterList * GetTemplateParameterList(TemplateDecl *TD)
Returns the template parameter list with all default template argument information.
void InstantiateVariableDefinition(SourceLocation PointOfInstantiation, VarDecl *Var, bool Recursive=false, bool DefinitionRequired=false, bool AtEndOfTU=false)
Instantiate the definition of the given variable from its template.
void MarkAsLateParsedTemplate(FunctionDecl *FD, Decl *FnD, CachedTokens &Toks)
bool isTemplateTemplateParameterAtLeastAsSpecializedAs(TemplateParameterList *PParam, TemplateDecl *PArg, TemplateDecl *AArg, const DefaultArguments &DefaultArgs, SourceLocation ArgLoc, bool PartialOrdering, bool *StrictPackMatch)
bool RequireLiteralType(SourceLocation Loc, QualType T, TypeDiagnoser &Diagnoser)
Ensure that the type T is a literal type.
PrintingPolicy getPrintingPolicy() const
Retrieve a suitable printing policy for diagnostics.
bool CheckDeclCompatibleWithTemplateTemplate(TemplateDecl *Template, TemplateTemplateParmDecl *Param, const TemplateArgumentLoc &Arg)
bool isAcceptableTagRedeclaration(const TagDecl *Previous, TagTypeKind NewTag, bool isDefinition, SourceLocation NewTagLoc, const IdentifierInfo *Name)
Determine whether a tag with a given kind is acceptable as a redeclaration of the given tag declarati...
DeclRefExpr * BuildDeclRefExpr(ValueDecl *D, QualType Ty, ExprValueKind VK, SourceLocation Loc, const CXXScopeSpec *SS=nullptr)
ExprResult CheckConvertedConstantExpression(Expr *From, QualType T, llvm::APSInt &Value, CCEKind CCE)
ExprResult BuildCXXFoldExpr(UnresolvedLookupExpr *Callee, SourceLocation LParenLoc, Expr *LHS, BinaryOperatorKind Operator, SourceLocation EllipsisLoc, Expr *RHS, SourceLocation RParenLoc, UnsignedOrNone NumExpansions)
bool CheckConstraintSatisfaction(ConstrainedDeclOrNestedRequirement Entity, ArrayRef< AssociatedConstraint > AssociatedConstraints, const MultiLevelTemplateArgumentList &TemplateArgLists, SourceRange TemplateIDRange, ConstraintSatisfaction &Satisfaction, const ConceptReference *TopLevelConceptId=nullptr, Expr **ConvertedExpr=nullptr)
Check whether the given list of constraint expressions are satisfied (as if in a 'conjunction') given...
TemplateParameterListEqualKind
Enumeration describing how template parameter lists are compared for equality.
@ TPL_TemplateTemplateParmMatch
We are matching the template parameter lists of two template template parameters as part of matching ...
@ TPL_TemplateMatch
We are matching the template parameter lists of two templates that might be redeclarations.
@ TPL_TemplateParamsEquivalent
We are determining whether the template-parameters are equivalent according to C++ [temp....
NamedDecl * ActOnTypeParameter(Scope *S, bool Typename, SourceLocation EllipsisLoc, SourceLocation KeyLoc, IdentifierInfo *ParamName, SourceLocation ParamNameLoc, unsigned Depth, unsigned Position, SourceLocation EqualLoc, ParsedType DefaultArg, bool HasTypeConstraint)
ActOnTypeParameter - Called when a C++ template type parameter (e.g., "typename T") has been parsed.
bool CheckFunctionTemplateSpecialization(FunctionDecl *FD, TemplateArgumentListInfo *ExplicitTemplateArgs, LookupResult &Previous, bool QualifiedFriend=false)
Perform semantic analysis for the given function template specialization.
@ FoundFunctions
This is assumed to be a template name because lookup found one or more functions (but no function tem...
@ None
This is not assumed to be a template name.
@ FoundNothing
This is assumed to be a template name because lookup found nothing.
bool CheckTemplateArgument(NamedDecl *Param, TemplateArgumentLoc &Arg, NamedDecl *Template, SourceLocation TemplateLoc, SourceLocation RAngleLoc, unsigned ArgumentPackIndex, CheckTemplateArgumentInfo &CTAI, CheckTemplateArgumentKind CTAK)
Check that the given template argument corresponds to the given template parameter.
bool RebuildNestedNameSpecifierInCurrentInstantiation(CXXScopeSpec &SS)
ArrayRef< InventedTemplateParameterInfo > getInventedParameterInfos() const
void inferGslOwnerPointerAttribute(CXXRecordDecl *Record)
Add [[gsl::Owner]] and [[gsl::Pointer]] attributes for std:: types.
NamedDecl * ActOnTemplateTemplateParameter(Scope *S, SourceLocation TmpLoc, TemplateNameKind Kind, bool TypenameKeyword, TemplateParameterList *Params, SourceLocation EllipsisLoc, IdentifierInfo *ParamName, SourceLocation ParamNameLoc, unsigned Depth, unsigned Position, SourceLocation EqualLoc, ParsedTemplateArgument DefaultArg)
ActOnTemplateTemplateParameter - Called when a C++ template template parameter (e....
FPOptions & getCurFPFeatures()
Sema(Preprocessor &pp, ASTContext &ctxt, ASTConsumer &consumer, TranslationUnitKind TUKind=TU_Complete, CodeCompleteConsumer *CompletionConsumer=nullptr)
SourceLocation getLocForEndOfToken(SourceLocation Loc, unsigned Offset=0)
Calls Lexer::getLocForEndOfToken()
bool EnsureTemplateArgumentListConstraints(TemplateDecl *Template, const MultiLevelTemplateArgumentList &TemplateArgs, SourceRange TemplateIDRange)
Ensure that the given template arguments satisfy the constraints associated with the given template,...
@ UPPC_PartialSpecialization
Partial specialization.
@ UPPC_DefaultArgument
A default argument.
@ UPPC_ExplicitSpecialization
Explicit specialization.
@ UPPC_NonTypeTemplateParameterType
The type of a non-type template parameter.
@ UPPC_TypeConstraint
A type constraint.
const LangOptions & getLangOpts() const
void DiagnoseTemplateParameterShadow(SourceLocation Loc, Decl *PrevDecl, bool SupportedForCompatibility=false)
DiagnoseTemplateParameterShadow - Produce a diagnostic complaining that the template parameter 'PrevD...
TypoCorrection CorrectTypo(const DeclarationNameInfo &Typo, Sema::LookupNameKind LookupKind, Scope *S, CXXScopeSpec *SS, CorrectionCandidateCallback &CCC, CorrectTypoKind Mode, DeclContext *MemberContext=nullptr, bool EnteringContext=false, const ObjCObjectPointerType *OPT=nullptr, bool RecordFailure=true)
Try to "correct" a typo in the source code by finding visible declarations whose names are similar to...
bool RebuildTemplateParamsInCurrentInstantiation(TemplateParameterList *Params)
Rebuild the template parameters now that we know we're in a current instantiation.
void EnterTemplatedContext(Scope *S, DeclContext *DC)
Enter a template parameter scope, after it's been associated with a particular DeclContext.
const FunctionProtoType * ResolveExceptionSpec(SourceLocation Loc, const FunctionProtoType *FPT)
void NoteTemplateLocation(const NamedDecl &Decl, std::optional< SourceRange > ParamRange={})
bool LookupParsedName(LookupResult &R, Scope *S, CXXScopeSpec *SS, QualType ObjectType, bool AllowBuiltinCreation=false, bool EnteringContext=false)
Performs name lookup for a name that was parsed in the source code, and may contain a C++ scope speci...
bool isPotentialImplicitMemberAccess(const CXXScopeSpec &SS, LookupResult &R, bool IsAddressOfOperand)
Check whether an expression might be an implicit class member access.
void collectUnexpandedParameterPacks(TemplateArgument Arg, SmallVectorImpl< UnexpandedParameterPack > &Unexpanded)
Collect the set of unexpanded parameter packs within the given template argument.
bool DiagnoseUnexpandedParameterPack(SourceLocation Loc, TypeSourceInfo *T, UnexpandedParameterPackContext UPPC)
If the given type contains an unexpanded parameter pack, diagnose the error.
bool hasVisibleMemberSpecialization(const NamedDecl *D, llvm::SmallVectorImpl< Module * > *Modules=nullptr)
Determine if there is a visible declaration of D that is a member specialization declaration (as oppo...
void checkClassLevelDLLAttribute(CXXRecordDecl *Class)
Check class-level dllimport/dllexport attribute.
const LangOptions & LangOpts
void InstantiateClassMembers(SourceLocation PointOfInstantiation, CXXRecordDecl *Instantiation, const MultiLevelTemplateArgumentList &TemplateArgs, TemplateSpecializationKind TSK)
Instantiates the definitions of all of the member of the given class, which is an instantiation of a ...
std::pair< Expr *, std::string > findFailedBooleanCondition(Expr *Cond)
Find the failed Boolean condition within a given Boolean constant expression, and describe it with a ...
QualType CheckTypenameType(ElaboratedTypeKeyword Keyword, SourceLocation KeywordLoc, NestedNameSpecifierLoc QualifierLoc, const IdentifierInfo &II, SourceLocation IILoc, TypeSourceInfo **TSI, bool DeducedTSTContext)
void MarkAnyDeclReferenced(SourceLocation Loc, Decl *D, bool MightBeOdrUse)
Perform marking for a reference to an arbitrary declaration.
void ProcessDeclAttributeList(Scope *S, Decl *D, const ParsedAttributesView &AttrList, const ProcessDeclAttributeOptions &Options=ProcessDeclAttributeOptions())
ProcessDeclAttributeList - Apply all the decl attributes in the specified attribute list to the speci...
void MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class, bool DefinitionRequired=false)
Note that the vtable for the given class was used at the given location.
bool hasAnyAcceptableTemplateNames(LookupResult &R, bool AllowFunctionTemplates=true, bool AllowDependent=true, bool AllowNonTemplateFunctions=false)
ExprResult BuildConvertedConstantExpression(Expr *From, QualType T, CCEKind CCE, NamedDecl *Dest=nullptr)
bool CheckDependentFunctionTemplateSpecialization(FunctionDecl *FD, const TemplateArgumentListInfo *ExplicitTemplateArgs, LookupResult &Previous)
Perform semantic analysis for the given dependent function template specialization.
bool hasExplicitCallingConv(QualType T)
bool CheckTemplateTypeArgument(TemplateTypeParmDecl *Param, TemplateArgumentLoc &Arg, SmallVectorImpl< TemplateArgument > &SugaredConverted, SmallVectorImpl< TemplateArgument > &CanonicalConverted)
bool AreConstraintExpressionsEqual(const NamedDecl *Old, const Expr *OldConstr, const TemplateCompareNewDeclInfo &New, const Expr *NewConstr)
TemplateArgumentLoc getTrivialTemplateArgumentLoc(const TemplateArgument &Arg, QualType NTTPType, SourceLocation Loc)
Allocate a TemplateArgumentLoc where all locations have been initialized to the given location.
void AddPushedVisibilityAttribute(Decl *RD)
AddPushedVisibilityAttribute - If '#pragma GCC visibility' was used, add an appropriate visibility at...
QualType DeduceTemplateSpecializationFromInitializer(TypeSourceInfo *TInfo, const InitializedEntity &Entity, const InitializationKind &Kind, MultiExprArg Init)
ExprResult DefaultLvalueConversion(Expr *E)
ExprResult BuildDeclarationNameExpr(const CXXScopeSpec &SS, LookupResult &R, bool NeedsADL, bool AcceptInvalidDecl=false)
void NoteOverloadCandidate(const NamedDecl *Found, const FunctionDecl *Fn, OverloadCandidateRewriteKind RewriteKind=OverloadCandidateRewriteKind(), QualType DestType=QualType(), bool TakingAddress=false)
bool hasReachableDefaultArgument(const NamedDecl *D, llvm::SmallVectorImpl< Module * > *Modules=nullptr)
Determine if the template parameter D has a reachable default argument.
DeclContext * CurContext
CurContext - This is the current declaration context of parsing.
MultiLevelTemplateArgumentList getTemplateInstantiationArgs(const NamedDecl *D, const DeclContext *DC=nullptr, bool Final=false, std::optional< ArrayRef< TemplateArgument > > Innermost=std::nullopt, bool RelativeToPrimary=false, const FunctionDecl *Pattern=nullptr, bool ForConstraintInstantiation=false, bool SkipForSpecialization=false, bool ForDefaultArgumentSubstitution=false)
Retrieve the template argument list(s) that should be used to instantiate the definition of the given...
void ActOnDocumentableDecl(Decl *D)
Should be called on all declarations that might have attached documentation comments.
DeclarationNameInfo GetNameFromUnqualifiedId(const UnqualifiedId &Name)
Retrieves the declaration name from a parsed unqualified-id.
TypeSourceInfo * RebuildTypeInCurrentInstantiation(TypeSourceInfo *T, SourceLocation Loc, DeclarationName Name)
Rebuilds a type within the context of the current instantiation.
QualType BuiltinDecay(QualType BaseType, SourceLocation Loc)
void CompleteMemberSpecialization(NamedDecl *Member, LookupResult &Previous)
bool CheckFunctionConstraints(const FunctionDecl *FD, ConstraintSatisfaction &Satisfaction, SourceLocation UsageLoc=SourceLocation(), bool ForOverloadResolution=false)
Check whether the given function decl's trailing requires clause is satisfied, if any.
TemplateNameKindForDiagnostics getTemplateNameKindForDiagnostics(TemplateName Name)
void notePreviousDefinition(const NamedDecl *Old, SourceLocation New)
bool CheckSpecializationInstantiationRedecl(SourceLocation NewLoc, TemplateSpecializationKind ActOnExplicitInstantiationNewTSK, NamedDecl *PrevDecl, TemplateSpecializationKind PrevTSK, SourceLocation PrevPtOfInstantiation, bool &SuppressNew)
Diagnose cases where we have an explicit template specialization before/after an explicit template in...
bool CheckTypeConstraint(TemplateIdAnnotation *TypeConstraint)
TemplateNameKind ActOnTemplateName(Scope *S, CXXScopeSpec &SS, SourceLocation TemplateKWLoc, const UnqualifiedId &Name, ParsedType ObjectType, bool EnteringContext, TemplateTy &Template, bool AllowInjectedClassName=false)
Form a template name from a name that is syntactically required to name a template,...
ExprResult BuildSubstNonTypeTemplateParmExpr(Decl *AssociatedDecl, unsigned Index, QualType ParamType, SourceLocation loc, TemplateArgument Replacement, UnsignedOrNone PackIndex, bool Final)
void diagnoseExprIntendedAsTemplateName(Scope *S, ExprResult TemplateName, SourceLocation Less, SourceLocation Greater)
ExprResult FixOverloadedFunctionReference(Expr *E, DeclAccessPair FoundDecl, FunctionDecl *Fn)
FixOverloadedFunctionReference - E is an expression that refers to a C++ overloaded function (possibl...
ExprResult BuildPossibleImplicitMemberExpr(const CXXScopeSpec &SS, SourceLocation TemplateKWLoc, LookupResult &R, const TemplateArgumentListInfo *TemplateArgs, const Scope *S)
Builds an expression which might be an implicit member expression.
DeclContext * computeDeclContext(QualType T)
Compute the DeclContext that is associated with the given type.
QualType CheckNonTypeTemplateParameterType(TypeSourceInfo *&TSI, SourceLocation Loc)
Check that the type of a non-type template parameter is well-formed.
void diagnoseMissingImport(SourceLocation Loc, const NamedDecl *Decl, MissingImportKind MIK, bool Recover=true)
Diagnose that the specified declaration needs to be visible but isn't, and suggest a module import th...
bool AttachTypeConstraint(NestedNameSpecifierLoc NS, DeclarationNameInfo NameInfo, TemplateDecl *NamedConcept, NamedDecl *FoundDecl, const TemplateArgumentListInfo *TemplateArgs, TemplateTypeParmDecl *ConstrainedParameter, SourceLocation EllipsisLoc)
Attach a type-constraint to a template parameter.
TemplateArgumentLoc SubstDefaultTemplateArgumentIfAvailable(TemplateDecl *Template, SourceLocation TemplateKWLoc, SourceLocation TemplateNameLoc, SourceLocation RAngleLoc, Decl *Param, ArrayRef< TemplateArgument > SugaredConverted, ArrayRef< TemplateArgument > CanonicalConverted, bool &HasDefaultArg)
If the given template parameter has a default template argument, substitute into that default templat...
void FilterAcceptableTemplateNames(LookupResult &R, bool AllowFunctionTemplates=true, bool AllowDependent=true)
TypeSourceInfo * SubstAutoTypeSourceInfoDependent(TypeSourceInfo *TypeWithAuto)
bool CheckTemplateDeclScope(Scope *S, TemplateParameterList *TemplateParams)
Check whether a template can be declared within this scope.
void AddMsStructLayoutForRecord(RecordDecl *RD)
AddMsStructLayoutForRecord - Adds ms_struct layout attribute to record.
TemplateParameterList * SubstTemplateParams(TemplateParameterList *Params, DeclContext *Owner, const MultiLevelTemplateArgumentList &TemplateArgs, bool EvaluateConstraints=true)
SourceLocation getTopMostPointOfInstantiation(const NamedDecl *) const
Returns the top most location responsible for the definition of N.
bool isSFINAEContext() const
ParsedTemplateArgument ActOnPackExpansion(const ParsedTemplateArgument &Arg, SourceLocation EllipsisLoc)
Invoked when parsing a template argument followed by an ellipsis, which creates a pack expansion.
void ActOnUndeclaredTypeTemplateName(Scope *S, TemplateTy &Name, TemplateNameKind &TNK, SourceLocation NameLoc, IdentifierInfo *&II)
Try to resolve an undeclared template name as a type template.
bool CheckMemberSpecialization(NamedDecl *Member, LookupResult &Previous)
Perform semantic analysis for the given non-template member specialization.
TypeResult ActOnTypenameType(Scope *S, SourceLocation TypenameLoc, const CXXScopeSpec &SS, const IdentifierInfo &II, SourceLocation IdLoc, ImplicitTypenameContext IsImplicitTypename=ImplicitTypenameContext::No)
Called when the parser has parsed a C++ typename specifier, e.g., "typename T::type".
bool isCompleteType(SourceLocation Loc, QualType T, CompleteTypeKind Kind=CompleteTypeKind::Default)
bool InstantiateClass(SourceLocation PointOfInstantiation, CXXRecordDecl *Instantiation, CXXRecordDecl *Pattern, const MultiLevelTemplateArgumentList &TemplateArgs, TemplateSpecializationKind TSK, bool Complain=true)
Instantiate the definition of a class from a given pattern.
bool hasReachableMemberSpecialization(const NamedDecl *D, llvm::SmallVectorImpl< Module * > *Modules=nullptr)
Determine if there is a reachable declaration of D that is a member specialization declaration (as op...
QualType CheckTemplateIdType(ElaboratedTypeKeyword Keyword, TemplateName Template, SourceLocation TemplateLoc, TemplateArgumentListInfo &TemplateArgs, Scope *Scope, bool ForNestedNameSpecifier)
RedeclarationKind forRedeclarationInCurContext() const
bool SubstTemplateArgument(const TemplateArgumentLoc &Input, const MultiLevelTemplateArgumentList &TemplateArgs, TemplateArgumentLoc &Output, SourceLocation Loc={}, const DeclarationName &Entity={})
void InstantiateFunctionDefinition(SourceLocation PointOfInstantiation, FunctionDecl *Function, bool Recursive=false, bool DefinitionRequired=false, bool AtEndOfTU=false)
Instantiate the definition of the given function from its template.
void InstantiateAttrsForDecl(const MultiLevelTemplateArgumentList &TemplateArgs, const Decl *Pattern, Decl *Inst, LateInstantiatedAttrVec *LateAttrs=nullptr, LocalInstantiationScope *OuterMostScope=nullptr)
void MarkUnusedFileScopedDecl(const DeclaratorDecl *D)
If it's a file scoped decl that must warn if not used, keep track of it.
ExprResult VerifyIntegerConstantExpression(Expr *E, llvm::APSInt *Result, VerifyICEDiagnoser &Diagnoser, AllowFoldKind CanFold=AllowFoldKind::No)
VerifyIntegerConstantExpression - Verifies that an expression is an ICE, and reports the appropriate ...
DeclResult ActOnVarTemplateSpecialization(Scope *S, Declarator &D, TypeSourceInfo *TSI, LookupResult &Previous, SourceLocation TemplateKWLoc, TemplateParameterList *TemplateParams, StorageClass SC, bool IsPartialSpecialization)
ExprResult BuildQualifiedTemplateIdExpr(CXXScopeSpec &SS, SourceLocation TemplateKWLoc, const DeclarationNameInfo &NameInfo, const TemplateArgumentListInfo *TemplateArgs, bool IsAddressOfOperand)
llvm::SmallPtrSet< const Decl *, 4 > ParsingInitForAutoVars
ParsingInitForAutoVars - a set of declarations with auto types for which we are currently parsing the...
bool CheckTemplateTemplateArgument(TemplateTemplateParmDecl *Param, TemplateParameterList *Params, TemplateArgumentLoc &Arg, bool PartialOrdering, bool *StrictPackMatch)
Check a template argument against its corresponding template template parameter.
void MarkUsedTemplateParameters(const Expr *E, bool OnlyDeduced, unsigned Depth, llvm::SmallBitVector &Used)
Mark which template parameters are used in a given expression.
DeclResult ActOnExplicitInstantiation(Scope *S, SourceLocation ExternLoc, SourceLocation TemplateLoc, unsigned TagSpec, SourceLocation KWLoc, const CXXScopeSpec &SS, TemplateTy Template, SourceLocation TemplateNameLoc, SourceLocation LAngleLoc, ASTTemplateArgsPtr TemplateArgs, SourceLocation RAngleLoc, const ParsedAttributesView &Attr)
QualType CheckConditionalOperands(ExprResult &Cond, ExprResult &LHS, ExprResult &RHS, ExprValueKind &VK, ExprObjectKind &OK, SourceLocation QuestionLoc)
Note that LHS is not null here, even if this is the gnu "x ?: y" extension.
@ ConstantEvaluated
The current context is "potentially evaluated" in C++11 terms, but the expression is evaluated at com...
@ Unevaluated
The current expression and its subexpressions occur within an unevaluated operand (C++11 [expr]p7),...
QualType BuildDecltypeType(Expr *E, bool AsUnevaluated=true)
If AsUnevaluated is false, E is treated as though it were an evaluated context, such as when building...
ExprResult BuildDependentDeclRefExpr(const CXXScopeSpec &SS, SourceLocation TemplateKWLoc, const DeclarationNameInfo &NameInfo, const TemplateArgumentListInfo *TemplateArgs)
TypeSourceInfo * GetTypeForDeclarator(Declarator &D)
GetTypeForDeclarator - Convert the type for the specified declarator to Type instances.
void diagnoseTypo(const TypoCorrection &Correction, const PartialDiagnostic &TypoDiag, bool ErrorRecovery=true)
DeclResult ActOnTag(Scope *S, unsigned TagSpec, TagUseKind TUK, SourceLocation KWLoc, CXXScopeSpec &SS, IdentifierInfo *Name, SourceLocation NameLoc, const ParsedAttributesView &Attr, AccessSpecifier AS, SourceLocation ModulePrivateLoc, MultiTemplateParamsArg TemplateParameterLists, bool &OwnedDecl, bool &IsDependent, SourceLocation ScopedEnumKWLoc, bool ScopedEnumUsesClassTag, TypeResult UnderlyingType, bool IsTypeSpecifier, bool IsTemplateParamOrArg, OffsetOfKind OOK, SkipBodyInfo *SkipBody=nullptr)
This is invoked when we see 'struct foo' or 'struct {'.
bool inParameterMappingSubstitution() const
bool RequireCompleteType(SourceLocation Loc, QualType T, CompleteTypeKind Kind, TypeDiagnoser &Diagnoser)
Ensure that the type T is a complete type.
bool LookupQualifiedName(LookupResult &R, DeclContext *LookupCtx, bool InUnqualifiedLookup=false)
Perform qualified name lookup into a given context.
bool CheckEquivalentExceptionSpec(FunctionDecl *Old, FunctionDecl *New)
void makeMergedDefinitionVisible(NamedDecl *ND)
Make a merged definition of an existing hidden definition ND visible at the specified location.
void mergeDeclAttributes(NamedDecl *New, Decl *Old, AvailabilityMergeKind AMK=AvailabilityMergeKind::Redeclaration)
mergeDeclAttributes - Copy attributes from the Old decl to the New one.
bool DiagnoseUninstantiableTemplate(SourceLocation PointOfInstantiation, NamedDecl *Instantiation, bool InstantiatedFromMember, const NamedDecl *Pattern, const NamedDecl *PatternDef, TemplateSpecializationKind TSK, bool Complain=true, bool *Unreachable=nullptr)
Determine whether we would be unable to instantiate this template (because it either has no definitio...
bool isDependentScopeSpecifier(const CXXScopeSpec &SS)
DeclResult CheckVarTemplateId(VarTemplateDecl *Template, SourceLocation TemplateLoc, SourceLocation TemplateNameLoc, const TemplateArgumentListInfo &TemplateArgs, bool SetWrittenArgs)
Get the specialization of the given variable template corresponding to the specified argument list,...
bool hasReachableExplicitSpecialization(const NamedDecl *D, llvm::SmallVectorImpl< Module * > *Modules=nullptr)
Determine if there is a reachable declaration of D that is an explicit specialization declaration for...
bool isDeductionGuideName(Scope *S, const IdentifierInfo &Name, SourceLocation NameLoc, CXXScopeSpec &SS, ParsedTemplateTy *Template=nullptr)
Determine whether a particular identifier might be the name in a C++1z deduction-guide declaration.
bool IsAtLeastAsConstrained(const NamedDecl *D1, MutableArrayRef< AssociatedConstraint > AC1, const NamedDecl *D2, MutableArrayRef< AssociatedConstraint > AC2, bool &Result)
Check whether the given declaration's associated constraints are at least as constrained than another...
ExprResult DefaultFunctionArrayConversion(Expr *E, bool Diagnose=true)
DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4).
NamedDecl * ActOnNonTypeTemplateParameter(Scope *S, Declarator &D, unsigned Depth, unsigned Position, SourceLocation EqualLoc, Expr *DefaultArg)
void diagnoseMissingTemplateArguments(TemplateName Name, SourceLocation Loc)
void CheckFunctionOrTemplateParamDeclarator(Scope *S, Declarator &D)
Common checks for a parameter-declaration that should apply to both function parameters and non-type ...
TemplateParamListContext
The context in which we are checking a template parameter list.
@ TPC_TemplateTemplateParameterPack
@ TPC_FriendFunctionTemplate
@ TPC_ClassTemplateMember
@ TPC_FriendClassTemplate
@ TPC_FriendFunctionTemplateDefinition
friend class InitializationSequence
void checkSpecializationVisibility(SourceLocation Loc, NamedDecl *Spec)
We've found a use of a templated declaration that would trigger an implicit instantiation.
QualType SubstAutoTypeDependent(QualType TypeWithAuto)
void FilterLookupForScope(LookupResult &R, DeclContext *Ctx, Scope *S, bool ConsiderLinkage, bool AllowInlineNamespace)
Filters out lookup results that don't fall within the given scope as determined by isDeclInScope.
TemplateDeductionResult DeduceTemplateArguments(ClassTemplatePartialSpecializationDecl *Partial, ArrayRef< TemplateArgument > TemplateArgs, sema::TemplateDeductionInfo &Info)
TemplateNameKind isTemplateName(Scope *S, CXXScopeSpec &SS, bool hasTemplateKeyword, const UnqualifiedId &Name, ParsedType ObjectType, bool EnteringContext, TemplateTy &Template, bool &MemberOfUnknownSpecialization, bool AllowTypoCorrection=true)
static Scope * getScopeForDeclContext(Scope *S, DeclContext *DC)
Finds the scope corresponding to the given decl context, if it happens to be an enclosing scope.
void CheckConceptRedefinition(ConceptDecl *NewDecl, LookupResult &Previous, bool &AddToScope)
TypeResult ActOnTemplateIdType(Scope *S, ElaboratedTypeKeyword ElaboratedKeyword, SourceLocation ElaboratedKeywordLoc, CXXScopeSpec &SS, SourceLocation TemplateKWLoc, TemplateTy Template, const IdentifierInfo *TemplateII, SourceLocation TemplateIILoc, SourceLocation LAngleLoc, ASTTemplateArgsPtr TemplateArgs, SourceLocation RAngleLoc, bool IsCtorOrDtorName=false, bool IsClassName=false, ImplicitTypenameContext AllowImplicitTypename=ImplicitTypenameContext::No)
SmallVector< CXXRecordDecl *, 4 > DelayedDllExportClasses
bool CheckTemplateParameterList(TemplateParameterList *NewParams, TemplateParameterList *OldParams, TemplateParamListContext TPC, SkipBodyInfo *SkipBody=nullptr)
Checks the validity of a template parameter list, possibly considering the template parameter list fr...
bool isMoreSpecializedThanPrimary(ClassTemplatePartialSpecializationDecl *T, sema::TemplateDeductionInfo &Info)
ExprResult CreateRecoveryExpr(SourceLocation Begin, SourceLocation End, ArrayRef< Expr * > SubExprs, QualType T=QualType())
Attempts to produce a RecoveryExpr after some AST node cannot be created.
DeclResult CheckClassTemplate(Scope *S, unsigned TagSpec, TagUseKind TUK, SourceLocation KWLoc, CXXScopeSpec &SS, IdentifierInfo *Name, SourceLocation NameLoc, const ParsedAttributesView &Attr, TemplateParameterList *TemplateParams, AccessSpecifier AS, SourceLocation ModulePrivateLoc, SourceLocation FriendLoc, unsigned NumOuterTemplateParamLists, TemplateParameterList **OuterTemplateParamLists, bool IsMemberSpecialization, SkipBodyInfo *SkipBody=nullptr)
ExprResult CheckVarOrConceptTemplateTemplateId(const CXXScopeSpec &SS, const DeclarationNameInfo &NameInfo, TemplateTemplateParmDecl *Template, SourceLocation TemplateLoc, const TemplateArgumentListInfo *TemplateArgs)
bool IsFunctionConversion(QualType FromType, QualType ToType) const
Determine whether the conversion from FromType to ToType is a valid conversion of ExtInfo/ExtProtoInf...
void ProcessAPINotes(Decl *D)
Map any API notes provided for this declaration to attributes on the declaration.
std::string getTemplateArgumentBindingsText(const TemplateParameterList *Params, const TemplateArgumentList &Args)
Produces a formatted string that describes the binding of template parameters to template arguments.
bool CheckRedeclarationInModule(NamedDecl *New, NamedDecl *Old)
A wrapper function for checking the semantic restrictions of a redeclaration within a module.
bool MaybeEmitAmbiguousAtomicConstraintsDiagnostic(const NamedDecl *D1, ArrayRef< AssociatedConstraint > AC1, const NamedDecl *D2, ArrayRef< AssociatedConstraint > AC2)
If D1 was not at least as constrained as D2, but would've been if a pair of atomic constraints involv...
bool CheckTemplateArgumentList(TemplateDecl *Template, SourceLocation TemplateLoc, TemplateArgumentListInfo &TemplateArgs, const DefaultArguments &DefaultArgs, bool PartialTemplateArgs, CheckTemplateArgumentInfo &CTAI, bool UpdateArgsWithConversions=true, bool *ConstraintsNotSatisfied=nullptr)
Check that the given template arguments can be provided to the given template, converting the argumen...
ExprResult BuildExpressionFromDeclTemplateArgument(const TemplateArgument &Arg, QualType ParamType, SourceLocation Loc)
Given a non-type template argument that refers to a declaration and the type of its corresponding non...
@ Diagnose
Diagnose issues that are non-constant or that are extensions.
OpaquePtr< TemplateName > TemplateTy
unsigned getTemplateDepth(Scope *S) const
Determine the number of levels of enclosing template parameters.
TemplateDeductionResult DeduceAutoType(TypeLoc AutoTypeLoc, Expr *Initializer, QualType &Result, sema::TemplateDeductionInfo &Info, bool DependentDeduction=false, bool IgnoreConstraints=false, TemplateSpecCandidateSet *FailedTSC=nullptr)
Deduce the type for an auto type-specifier (C++11 [dcl.spec.auto]p6)
bool LookupName(LookupResult &R, Scope *S, bool AllowBuiltinCreation=false, bool ForceNoCPlusPlus=false)
Perform unqualified name lookup starting from a given scope.
static QualType GetTypeFromParser(ParsedType Ty, TypeSourceInfo **TInfo=nullptr)
QualType adjustCCAndNoReturn(QualType ArgFunctionType, QualType FunctionType, bool AdjustExceptionSpec=false)
Adjust the type ArgFunctionType to match the calling convention, noreturn, and optionally the excepti...
void NoteTemplateParameterLocation(const NamedDecl &Decl)
IdentifierResolver IdResolver
ArrayRef< sema::FunctionScopeInfo * > getFunctionScopes() const
void checkTypeDeclType(DeclContext *LookupCtx, DiagCtorKind DCK, TypeDecl *TD, SourceLocation NameLoc)
Returns the TypeDeclType for the given type declaration, as ASTContext::getTypeDeclType would,...
void CheckDeductionGuideTemplate(FunctionTemplateDecl *TD)
TypeResult ActOnTagTemplateIdType(TagUseKind TUK, TypeSpecifierType TagSpec, SourceLocation TagLoc, CXXScopeSpec &SS, SourceLocation TemplateKWLoc, TemplateTy TemplateD, SourceLocation TemplateLoc, SourceLocation LAngleLoc, ASTTemplateArgsPtr TemplateArgsIn, SourceLocation RAngleLoc)
Parsed an elaborated-type-specifier that refers to a template-id, such as class T::template apply.
bool hasReachableDeclaration(const NamedDecl *D, llvm::SmallVectorImpl< Module * > *Modules=nullptr)
Determine whether any declaration of an entity is reachable.
void MarkDeducedTemplateParameters(const FunctionTemplateDecl *FunctionTemplate, llvm::SmallBitVector &Deduced)
bool DiagnoseUnexpandedParameterPacks(SourceLocation Loc, UnexpandedParameterPackContext UPPC, ArrayRef< UnexpandedParameterPack > Unexpanded)
Diagnose unexpanded parameter packs.
void warnOnReservedIdentifier(const NamedDecl *D)
void inferNullableClassAttribute(CXXRecordDecl *CRD)
Add _Nullable attributes for std:: types.
ExprResult ActOnFinishFullExpr(Expr *Expr, bool DiscardedValue)
SFINAETrap * getSFINAEContext() const
Returns a pointer to the current SFINAE context, if any.
Encodes a location in the source.
bool isValid() const
Return true if this is a valid SourceLocation object.
A trivial tuple used to represent a source range.
SourceLocation getEnd() const
SourceLocation getBegin() const
SourceLocation getEndLoc() const LLVM_READONLY
void printPretty(raw_ostream &OS, PrinterHelper *Helper, const PrintingPolicy &Policy, unsigned Indentation=0, StringRef NewlineSymbol="\n", const ASTContext *Context=nullptr) const
SourceRange getSourceRange() const LLVM_READONLY
SourceLocation tokens are not useful in isolation - they are low level value objects created/interpre...
SourceLocation getBeginLoc() const LLVM_READONLY
Represents a reference to a non-type template parameter that has been substituted with a template arg...
Represents the declaration of a struct/union/class/enum.
StringRef getKindName() const
void startDefinition()
Starts the definition of this tag declaration.
void setTemplateParameterListsInfo(ASTContext &Context, ArrayRef< TemplateParameterList * > TPLists)
TagKind getTagKind() const
A convenient class for passing around template argument information.
SourceLocation getRAngleLoc() const
void setLAngleLoc(SourceLocation Loc)
void setRAngleLoc(SourceLocation Loc)
void addArgument(const TemplateArgumentLoc &Loc)
ArrayRef< TemplateArgumentLoc > arguments() const
SourceLocation getLAngleLoc() const
A template argument list.
const TemplateArgument * data() const
Retrieve a pointer to the template argument list.
static TemplateArgumentList * CreateCopy(ASTContext &Context, ArrayRef< TemplateArgument > Args)
Create a new template argument list that copies the given set of template arguments.
unsigned size() const
Retrieve the number of template arguments in this template argument list.
Location wrapper for a TemplateArgument.
SourceLocation getLocation() const
SourceLocation getTemplateEllipsisLoc() const
TemplateArgumentLocInfo getLocInfo() const
const TemplateArgument & getArgument() const
SourceLocation getTemplateNameLoc() const
TypeSourceInfo * getTypeSourceInfo() const
SourceRange getSourceRange() const LLVM_READONLY
NestedNameSpecifierLoc getTemplateQualifierLoc() const
Represents a template argument.
ArrayRef< TemplateArgument > getPackAsArray() const
Return the array of arguments in this template argument pack.
QualType getStructuralValueType() const
Get the type of a StructuralValue.
Expr * getAsExpr() const
Retrieve the template argument as an expression.
bool isDependent() const
Whether this template argument is dependent on a template parameter such that its result can change f...
bool isInstantiationDependent() const
Whether this template argument is dependent on a template parameter.
pack_iterator pack_begin() const
Iterator referencing the first argument of a template argument pack.
QualType getNonTypeTemplateArgumentType() const
If this is a non-type template argument, get its type.
QualType getAsType() const
Retrieve the type for a type template argument.
llvm::APSInt getAsIntegral() const
Retrieve the template argument as an integral value.
static TemplateArgument CreatePackCopy(ASTContext &Context, ArrayRef< TemplateArgument > Args)
Create a new template argument pack by copying the given set of template arguments.
TemplateName getAsTemplate() const
Retrieve the template name for a template name argument.
TemplateArgument getPackExpansionPattern() const
When the template argument is a pack expansion, returns the pattern of the pack expansion.
bool isNull() const
Determine whether this template argument has no value.
unsigned pack_size() const
The number of template arguments in the given template argument pack.
void print(const PrintingPolicy &Policy, raw_ostream &Out, bool IncludeType) const
Print this template argument to the given output stream.
QualType getIntegralType() const
Retrieve the type of the integral value.
ValueDecl * getAsDecl() const
Retrieve the declaration for a declaration non-type template argument.
@ Declaration
The template argument is a declaration that was provided for a pointer, reference,...
@ Template
The template argument is a template name that was provided for a template template parameter.
@ StructuralValue
The template argument is a non-type template argument that can't be represented by the special-case D...
@ Pack
The template argument is actually a parameter pack.
@ TemplateExpansion
The template argument is a pack expansion of a template name that was provided for a template templat...
@ NullPtr
The template argument is a null pointer or null pointer to member that was provided for a non-type te...
@ Type
The template argument is a type.
@ Null
Represents an empty template argument, e.g., one that has not been deduced.
@ Integral
The template argument is an integral value stored in an llvm::APSInt that was provided for an integra...
@ Expression
The template argument is an expression, and we've not resolved it to one of the other forms yet,...
ArgKind getKind() const
Return the kind of stored template argument.
bool isPackExpansion() const
Determine whether this template argument is a pack expansion.
TemplateName getAsTemplateOrTemplatePattern() const
Retrieve the template argument as a template name; if the argument is a pack expansion,...
const APValue & getAsStructuralValue() const
Get the value of a StructuralValue.
The base class of all kinds of template declarations (e.g., class, function, etc.).
bool hasAssociatedConstraints() const
TemplateParameterList * getTemplateParameters() const
Get the list of template parameters.
Represents a C++ template name within the type system.
TemplateDecl * getAsTemplateDecl(bool IgnoreDeduced=false) const
Retrieve the underlying template declaration that this template name refers to, if known.
DeducedTemplateStorage * getAsDeducedTemplateName() const
Retrieve the deduced template info, if any.
bool isNull() const
Determine whether this template name is NULL.
DependentTemplateName * getAsDependentTemplateName() const
Retrieve the underlying dependent template name structure, if any.
OverloadedTemplateStorage * getAsOverloadedTemplate() const
Retrieve the underlying, overloaded function template declarations that this template name refers to,...
AssumedTemplateStorage * getAsAssumedTemplateName() const
Retrieve information on a name that has been assumed to be a template-name in order to permit a call ...
std::pair< TemplateName, DefaultArguments > getTemplateDeclAndDefaultArgs() const
Retrieves the underlying template name that this template name refers to, along with the deduced defa...
UsingShadowDecl * getAsUsingShadowDecl() const
Retrieve the using shadow declaration through which the underlying template declaration is introduced...
bool isDependent() const
Determines whether this is a dependent template name.
Stores a list of template parameters for a TemplateDecl and its derived classes.
NamedDecl * getParam(unsigned Idx)
SourceRange getSourceRange() const LLVM_READONLY
unsigned getDepth() const
Get the depth of this template parameter list in the set of template parameter lists.
NamedDecl ** iterator
Iterates through the template parameters in this list.
bool hasAssociatedConstraints() const
static TemplateParameterList * Create(const ASTContext &C, SourceLocation TemplateLoc, SourceLocation LAngleLoc, ArrayRef< NamedDecl * > Params, SourceLocation RAngleLoc, Expr *RequiresClause)
NamedDecl *const * const_iterator
Iterates through the template parameters in this list.
Expr * getRequiresClause()
The constraint-expression of the associated requires-clause.
SourceLocation getRAngleLoc() const
SourceLocation getLAngleLoc() const
void getAssociatedConstraints(llvm::SmallVectorImpl< AssociatedConstraint > &AC) const
All associated constraints derived from this template parameter list, including the requires clause a...
static bool shouldIncludeTypeForArgument(const PrintingPolicy &Policy, const TemplateParameterList *TPL, unsigned Idx)
SourceLocation getTemplateLoc() const
TemplateSpecCandidateSet - A set of generalized overload candidates, used in template specializations...
void NoteCandidates(Sema &S, SourceLocation Loc)
NoteCandidates - When no template specialization match is found, prints diagnostic messages containin...
SourceLocation getLocation() const
TemplateSpecCandidate & addCandidate()
Add a new candidate with NumConversions conversion sequence slots to the overload set.
void set(SourceLocation ElaboratedKeywordLoc, NestedNameSpecifierLoc QualifierLoc, SourceLocation TemplateKeywordLoc, SourceLocation NameLoc, SourceLocation LAngleLoc, SourceLocation RAngleLoc)
TemplateTemplateParmDecl - Declares a template template parameter, e.g., "T" in.
TemplateParameterList * getExpansionTemplateParameters(unsigned I) const
Retrieve a particular expansion type within an expanded parameter pack.
bool isPackExpansion() const
Whether this parameter pack is a pack expansion.
TemplateNameKind templateParameterKind() const
const TemplateArgumentLoc & getDefaultArgument() const
Retrieve the default argument, if any.
void setInheritedDefaultArgument(const ASTContext &C, TemplateTemplateParmDecl *Prev)
bool isParameterPack() const
Whether this template template parameter is a template parameter pack.
unsigned getIndex() const
Get the index of the template parameter within its parameter list.
static TemplateTemplateParmDecl * Create(const ASTContext &C, DeclContext *DC, SourceLocation L, int D, int P, bool ParameterPack, IdentifierInfo *Id, TemplateNameKind ParameterKind, bool Typename, TemplateParameterList *Params)
unsigned getDepth() const
Get the nesting depth of the template parameter.
bool isExpandedParameterPack() const
Whether this parameter is a template template parameter pack that has a known list of different templ...
void removeDefaultArgument()
Removes the default argument of this template parameter.
bool hasDefaultArgument() const
Determine whether this template parameter has a default argument.
Declaration of a template type parameter.
SourceLocation getDefaultArgumentLoc() const
Retrieves the location of the default argument declaration.
void setTypeConstraint(ConceptReference *CR, Expr *ImmediatelyDeclaredConstraint, UnsignedOrNone ArgPackSubstIndex)
static TemplateTypeParmDecl * Create(const ASTContext &C, DeclContext *DC, SourceLocation KeyLoc, SourceLocation NameLoc, int D, int P, IdentifierInfo *Id, bool Typename, bool ParameterPack, bool HasTypeConstraint=false, UnsignedOrNone NumExpanded=std::nullopt)
bool hasDefaultArgument() const
Determine whether this template parameter has a default argument.
Represents the declaration of a typedef-name via a C++11 alias-declaration.
Declaration of an alias template.
Models the abbreviated syntax to constrain a template type parameter: template <convertible_to<string...
Represents a declaration of a type.
const Type * getTypeForDecl() const
SourceLocation getBeginLoc() const LLVM_READONLY
TyLocType push(QualType T)
Pushes space for a new TypeLoc of the given type.
TypeSpecTypeLoc pushTypeSpec(QualType T)
Pushes space for a typespec TypeLoc.
TypeSourceInfo * getTypeSourceInfo(ASTContext &Context, QualType T)
Creates a TypeSourceInfo for the given type.
Base wrapper for a particular "section" of type source info.
QualType getType() const
Get the type for which this source info wrapper provides information.
T getAs() const
Convert to the specified TypeLoc type, returning a null TypeLoc if this TypeLoc is not of the desired...
T castAs() const
Convert to the specified TypeLoc type, asserting that this TypeLoc is of the desired type.
SourceRange getSourceRange() const LLVM_READONLY
Get the full source range.
AutoTypeLoc getContainedAutoTypeLoc() const
Get the typeloc of an AutoType whose type will be deduced for a variable with an initializer of this ...
SourceLocation getBeginLoc() const
Get the begin source location.
Represents a typeof (or typeof) expression (a C23 feature and GCC extension) or a typeof_unqual expre...
A container of type source information.
TypeLoc getTypeLoc() const
Return the TypeLoc wrapper for the type source info.
QualType getType() const
Return the type wrapped by this type source info.
SourceLocation getNameLoc() const
void setNameLoc(SourceLocation Loc)
The base class of the type hierarchy.
bool isIncompleteOrObjectType() const
Return true if this is an incomplete or object type, in other words, not a function type.
bool isBooleanType() const
bool isSignedIntegerOrEnumerationType() const
Determines whether this is an integer type that is signed or an enumeration types whose underlying ty...
bool isUnsignedIntegerOrEnumerationType() const
Determines whether this is an integer type that is unsigned or an enumeration types whose underlying ...
bool isRValueReferenceType() const
CXXRecordDecl * getAsCXXRecordDecl() const
Retrieves the CXXRecordDecl that this type refers to, either because the type is a RecordType or beca...
bool isVoidPointerType() const
bool isPointerType() const
const T * castAs() const
Member-template castAs<specific type>.
bool isReferenceType() const
bool isEnumeralType() const
bool isIntegralType(const ASTContext &Ctx) const
Determine whether this type is an integral type.
const Type * getArrayElementTypeNoTypeQual() const
If this is an array type, return the element type of the array, potentially with type qualifiers miss...
QualType getPointeeType() const
If this is a pointer, ObjC object pointer, or block pointer, this returns the respective pointee.
bool isIntegralOrEnumerationType() const
Determine whether this type is an integral or enumeration type.
bool isObjCObjectOrInterfaceType() const
AutoType * getContainedAutoType() const
Get the AutoType whose type will be deduced for a variable with an initializer of this type.
bool isInstantiationDependentType() const
Determine whether this type is an instantiation-dependent type, meaning that the type involves a temp...
bool isLValueReferenceType() const
bool isBitIntType() const
bool isBuiltinType() const
Helper methods to distinguish type categories.
bool isDependentType() const
Whether this type is a dependent type, meaning that its definition somehow depends on a template para...
DeducedType * getContainedDeducedType() const
Get the DeducedType whose type will be deduced for a variable with an initializer of this type.
bool isMemberPointerType() const
bool isVariablyModifiedType() const
Whether this type is a variably-modified type (C99 6.7.5).
bool isUndeducedType() const
Determine whether this type is an undeduced type, meaning that it somehow involves a C++11 'auto' typ...
EnumDecl * getAsEnumDecl() const
Retrieves the EnumDecl this type refers to.
bool hasUnnamedOrLocalType() const
Whether this type is or contains a local or unnamed type.
bool isPointerOrReferenceType() const
bool isIncompleteType(NamedDecl **Def=nullptr) const
Types are partitioned into 3 broad categories (C99 6.2.5p1): object types, function types,...
bool isFunctionType() const
bool isVectorType() const
const T * getAsCanonical() const
If this type is canonically the specified type, return its canonical type cast to that specified type...
bool isCanonicalUnqualified() const
Determines if this type would be canonical if it had no further qualification.
const T * getAs() const
Member-template getAs<specific type>'.
bool isNullPtrType() const
bool isRecordType() const
QualType getUnderlyingType() const
Wrapper for source info for typedefs.
Simple class containing the result of Sema::CorrectTypo.
NamedDecl * getCorrectionDecl() const
Gets the pointer to the declaration of the typo correction.
DeclClass * getCorrectionDeclAs() const
NamedDecl * getFoundDecl() const
Get the correction declaration found by name lookup (before we looked through using shadow declaratio...
UnaryOperator - This represents the unary-expression's (except sizeof and alignof),...
Represents a C++ unqualified-id that has been parsed.
struct OFI OperatorFunctionId
When Kind == IK_OperatorFunctionId, the overloaded operator that we parsed.
SourceLocation getBeginLoc() const LLVM_READONLY
SourceRange getSourceRange() const LLVM_READONLY
Return the source range that covers this unqualified-id.
const IdentifierInfo * Identifier
When Kind == IK_Identifier, the parsed identifier, or when Kind == IK_UserLiteralId,...
UnqualifiedIdKind getKind() const
Determine what kind of name we have.
TemplateIdAnnotation * TemplateId
When Kind == IK_TemplateId or IK_ConstructorTemplateId, the template-id annotation that contains the ...
A reference to a name which we were able to look up during parsing but could not resolve to a specifi...
static UnresolvedLookupExpr * Create(const ASTContext &Context, CXXRecordDecl *NamingClass, NestedNameSpecifierLoc QualifierLoc, const DeclarationNameInfo &NameInfo, bool RequiresADL, UnresolvedSetIterator Begin, UnresolvedSetIterator End, bool KnownDependent, bool KnownInstantiationDependent)
void addDecl(NamedDecl *D)
The iterator over UnresolvedSets.
A set of unresolved declarations.
Wrapper for source info for unresolved typename using decls.
Represents the dependent type named by a dependently-scoped typename using declaration,...
Represents a dependent using declaration which was not marked with typename.
Represents a shadow declaration implicitly introduced into a scope by a (resolved) using-declaration ...
NamedDecl * getTargetDecl() const
Gets the underlying declaration which has been brought into the local scope.
Represent the declaration of a variable (in which case it is an lvalue) a function (in which case it ...
void setType(QualType newType)
Represents a variable declaration or definition.
TLSKind getTLSKind() const
bool isStaticDataMember() const
Determines whether this is a static data member.
VarDecl * getInstantiatedFromStaticDataMember() const
If this variable is an instantiated static data member of a class template specialization,...
void setTemplateSpecializationKind(TemplateSpecializationKind TSK, SourceLocation PointOfInstantiation=SourceLocation())
For a static data member that was instantiated from a static data member of a class template,...
VarDecl * getPreviousDecl()
Return the previous declaration of this declaration or NULL if this is the first declaration.
SourceLocation getPointOfInstantiation() const
If this variable is an instantiation of a variable template or a static data member of a class templa...
TemplateSpecializationKind getTemplateSpecializationKind() const
If this variable is an instantiation of a variable template or a static data member of a class templa...
MemberSpecializationInfo * getMemberSpecializationInfo() const
If this variable is an instantiation of a static data member of a class template specialization,...
Declaration of a variable template.
static VarTemplatePartialSpecializationDecl * Create(ASTContext &Context, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, TemplateParameterList *Params, VarTemplateDecl *SpecializedTemplate, QualType T, TypeSourceInfo *TInfo, StorageClass S, ArrayRef< TemplateArgument > Args)
Represents a variable template specialization, which refers to a variable template with a given set o...
SourceLocation getPointOfInstantiation() const
Get the point of instantiation (if any), or null if none.
void setTemplateArgsAsWritten(const ASTTemplateArgumentListInfo *ArgsWritten)
Set the template argument list as written in the sources.
static VarTemplateSpecializationDecl * Create(ASTContext &Context, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, VarTemplateDecl *SpecializedTemplate, QualType T, TypeSourceInfo *TInfo, StorageClass S, ArrayRef< TemplateArgument > Args)
TemplateSpecializationKind getSpecializationKind() const
Determine the kind of specialization that this declaration represents.
Represents a C array with a specified size that is not an integer-constant-expression.
Represents a GCC generic vector type.
QualType getElementType() const
Retains information about a function, method, or block that is currently being parsed.
Provides information about an attempted template argument deduction, whose success or failure was des...
TemplateArgumentList * takeSugared()
Take ownership of the deduced template argument lists.
void addSFINAEDiagnostic(SourceLocation Loc, PartialDiagnostic PD)
Set the diagnostic which caused the SFINAE failure.
bool hasSFINAEDiagnostic() const
Is a SFINAE diagnostic available?
const PartialDiagnosticAt & peekSFINAEDiagnostic() const
Peek at the SFINAE diagnostic.
void takeSFINAEDiagnostic(PartialDiagnosticAt &PD)
Take ownership of the SFINAE diagnostic.
Defines the clang::TargetInfo interface.
__inline void unsigned int _2
@ OS
Indicates that the tracking object is a descendant of a referenced-counted OSObject,...
The JSON file list parser is used to communicate input to InstallAPI.
CanQual< Type > CanQualType
Represents a canonical, potentially-qualified type.
TypeSpecifierType
Specifies the kind of type.
@ Match
This is not an overload because the signature exactly matches an existing declaration.
bool isa(CodeGen::Address addr)
OpaquePtr< TemplateName > ParsedTemplateTy
MutableArrayRef< TemplateParameterList * > MultiTemplateParamsArg
@ OR_Deleted
Succeeded, but refers to a deleted function.
@ OR_Success
Overload resolution succeeded.
@ OR_Ambiguous
Ambiguous candidates found.
@ OR_No_Viable_Function
No viable function found.
@ Specialization
We are substituting template parameters for template arguments in order to form a template specializa...
bool isUnresolvedExceptionSpec(ExceptionSpecificationType ESpecType)
@ Ambiguous
Name lookup results in an ambiguity; use getAmbiguityKind to figure out what kind of ambiguity we hav...
@ NotFound
No entity found met the criteria.
@ FoundOverloaded
Name lookup found a set of overloaded functions that met the criteria.
@ Found
Name lookup found a single declaration that met the criteria.
@ FoundUnresolvedValue
Name lookup found an unresolvable value declaration and cannot yet complete.
@ NotFoundInCurrentInstantiation
No entity found met the criteria within the current instantiation,, but there were dependent base cla...
@ ovl_fail_constraints_not_satisfied
This candidate was not viable because its associated constraints were not satisfied.
@ TemplateName
The identifier is a template name. FIXME: Add an annotation for that.
OverloadCandidateDisplayKind
@ OCD_AmbiguousCandidates
Requests that only tied-for-best candidates be shown.
@ OCD_AllCandidates
Requests that all candidates be shown.
ExprObjectKind
A further classification of the kind of object referenced by an l-value or x-value.
@ OK_Ordinary
An ordinary object is located at an address in memory.
NonTagKind
Common ways to introduce type names without a tag for use in diagnostics.
bool isPackProducingBuiltinTemplateName(TemplateName N)
@ IK_TemplateId
A template-id, e.g., f<int>.
@ IK_LiteralOperatorId
A user-defined literal name, e.g., operator "" _i.
@ IK_Identifier
An identifier.
@ IK_OperatorFunctionId
An overloaded operator name, e.g., operator+.
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',...
DynamicRecursiveASTVisitorBase< true > ConstDynamicRecursiveASTVisitor
StorageClass
Storage classes.
UnsignedOrNone getExpandedPackSize(const NamedDecl *Param)
Check whether the template parameter is a pack expansion, and if so, determine the number of paramete...
@ CRK_None
Candidate is not a rewritten candidate.
@ Internal
Internal linkage, which indicates that the entity can be referred to from within the translation unit...
TemplateDecl * getAsTypeTemplateDecl(Decl *D)
@ Result
The result type of a method or function.
ActionResult< ParsedType > TypeResult
InheritableAttr * getDLLAttr(Decl *D)
Return a DLL attribute from the declaration.
OptionalUnsigned< unsigned > UnsignedOrNone
@ Template
We are parsing a template declaration.
TagTypeKind
The kind of a tag type.
@ Enum
The "enum" keyword.
DeductionFailureInfo MakeDeductionFailureInfo(ASTContext &Context, TemplateDeductionResult TDK, sema::TemplateDeductionInfo &Info)
Convert from Sema's representation of template deduction information to the form used in overload-can...
@ Keyword
The name has been typo-corrected to a keyword.
@ Type
The name was classified as a type.
CastKind
CastKind - The kind of operation required for a conversion.
SourceRange getTemplateParamsRange(TemplateParameterList const *const *Params, unsigned NumParams)
Retrieves the range of the given template parameter lists.
MutableArrayRef< ParsedTemplateArgument > ASTTemplateArgsPtr
@ Undeduced
Not deduced yet. This is for example an 'auto' which was just parsed.
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_Function_template
The name refers to a function template or a set of overloaded functions that includes at least one fu...
@ TNK_Concept_template
The name refers to a concept.
@ TNK_Non_template
The name does not refer to a template.
@ TNK_Undeclared_template
Lookup for the name failed, but we're assuming it was a template name anyway.
std::pair< SourceLocation, PartialDiagnostic > PartialDiagnosticAt
A partial diagnostic along with the source location where this diagnostic occurs.
ExprValueKind
The categorization of expression values, currently following the C++11 scheme.
@ VK_PRValue
A pr-value expression (in the C++11 taxonomy) produces a temporary value.
@ VK_XValue
An x-value expression is a reference to an object with independent storage but which can be "moved",...
@ VK_LValue
An l-value expression is a reference to an object with independent storage.
llvm::PointerUnion< TemplateTypeParmDecl *, NonTypeTemplateParmDecl *, TemplateTemplateParmDecl * > TemplateParameter
Stores a template parameter of any kind.
DynamicRecursiveASTVisitorBase< false > DynamicRecursiveASTVisitor
TemplateDeductionResult
Describes the result of template argument deduction.
@ ConstraintsNotSatisfied
The deduced arguments did not satisfy the constraints associated with the template.
@ CUDATargetMismatch
CUDA Target attributes do not match.
@ Success
Template argument deduction was successful.
@ AlreadyDiagnosed
Some error which was already diagnosed.
TemplateSpecializationKind
Describes the kind of template specialization that a particular template specialization declaration r...
@ TSK_ExplicitInstantiationDefinition
This template specialization was instantiated from a template due to an explicit instantiation defini...
@ TSK_ExplicitInstantiationDeclaration
This template specialization was instantiated from a template due to an explicit instantiation declar...
@ TSK_ExplicitSpecialization
This template specialization was declared or defined by an explicit specialization (C++ [temp....
@ TSK_ImplicitInstantiation
This template specialization was implicitly instantiated from a template.
@ TSK_Undeclared
This template specialization was formed from a template-id but has not yet been declared,...
U cast(CodeGen::Address addr)
SmallVector< Token, 4 > CachedTokens
A set of tokens that has been cached for later parsing.
@ TemplateArg
Value of a non-type template parameter.
@ TempArgStrict
As above, but applies strict template checking rules.
@ PackIndex
Index of a pack indexing expression or specifier.
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...
@ None
No keyword precedes the qualified type name.
@ Enum
The "enum" keyword introduces the elaborated-type-specifier.
@ Typename
The "typename" keyword precedes the qualified type name, e.g., typename T::type.
ActionResult< Expr * > ExprResult
@ Parens
New-expression has a C++98 paren-delimited initializer.
Represents an explicit template argument list in C++, e.g., the "<int>" in "sort<int>".
static const ASTTemplateArgumentListInfo * Create(const ASTContext &C, const TemplateArgumentListInfo &List)
DeclarationNameInfo - A collector data type for bundling together a DeclarationName and the correspon...
SourceLocation getLoc() const
getLoc - Returns the main location of the declaration name.
DeclarationName getName() const
getName - Returns the embedded declaration name.
SourceLocation getBeginLoc() const
getBeginLoc - Retrieve the location of the first token.
SourceLocation getEndLoc() const LLVM_READONLY
ArrayRef< TemplateArgument > Args
EvalResult is a struct with detailed info about an evaluated expression.
APValue Val
Val - This is the value the expression can be folded to.
SmallVectorImpl< PartialDiagnosticAt > * Diag
Diag - If this is non-null, it will be filled in with a stack of notes indicating why evaluation fail...
bool HasSideEffects
Whether the evaluated expression has side effects.
Extra information about a function prototype.
static ElaboratedTypeKeyword getKeywordForTagTypeKind(TagTypeKind Tag)
Converts a TagTypeKind into an elaborated type keyword.
static TagTypeKind getTagTypeKindForKeyword(ElaboratedTypeKeyword Keyword)
Converts an elaborated type keyword into a TagTypeKind.
static TagTypeKind getTagTypeKindForTypeSpec(unsigned TypeSpec)
Converts a type specifier (DeclSpec::TST) into a tag type kind.
NestedNameSpecifierLoc Prefix
OverloadCandidate - A single candidate in an overload set (C++ 13.3).
Describes how types, statements, expressions, and declarations should be printed.
unsigned TerseOutput
Provide a 'terse' output.
unsigned PrintAsCanonical
Whether to print entities as written or canonically.
bool StrictPackMatch
Is set to true when, in the context of TTP matching, a pack parameter matches non-pack arguments.
bool MatchingTTP
If true, assume these template arguments are the injected template arguments for a template template ...
bool PartialOrdering
The check is being performed in the context of partial ordering.
SmallVector< TemplateArgument, 4 > SugaredConverted
The checked, converted argument will be added to the end of these vectors.
SmallVector< TemplateArgument, 4 > CanonicalConverted
A context in which code is being synthesized (where a source location alone is not sufficient to iden...
@ BuildingDeductionGuides
We are building deduction guides for a class.
A stack object to be created when performing template instantiation.
bool isInvalid() const
Determines whether we have exceeded the maximum recursive template instantiations.
Location information for a TemplateArgument.
Information about a template-id annotation token.
const IdentifierInfo * Name
FIXME: Temporarily stores the name of a specialization.
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.
ParsedTemplateTy Template
The declaration of the template corresponding to the template-name.
void set(DeclAccessPair Found, Decl *Spec, DeductionFailureInfo Info)
OverloadedOperatorKind Operator
The kind of overloaded operator.