46#include "llvm/ADT/APInt.h"
47#include "llvm/ADT/APSInt.h"
48#include "llvm/ADT/ArrayRef.h"
49#include "llvm/ADT/DenseMap.h"
50#include "llvm/ADT/FoldingSet.h"
51#include "llvm/ADT/SmallBitVector.h"
52#include "llvm/ADT/SmallPtrSet.h"
53#include "llvm/ADT/SmallVector.h"
54#include "llvm/Support/Casting.h"
55#include "llvm/Support/Compiler.h"
56#include "llvm/Support/ErrorHandling.h"
57#include "llvm/Support/SaveAndRestore.h"
115using namespace clang;
127 bool *HasDeducedAnyParam);
143 bool OnlyDeduced,
unsigned Depth,
144 llvm::SmallBitVector &
Used);
147 bool OnlyDeduced,
unsigned Level,
148 llvm::SmallBitVector &
Deduced);
154 if (
const auto *IC = dyn_cast<ImplicitCastExpr>(E))
155 E = IC->getSubExpr();
156 else if (
const auto *CE = dyn_cast<ConstantExpr>(E))
157 E = CE->getSubExpr();
158 else if (
const auto *Subst = dyn_cast<SubstNonTypeTemplateParmExpr>(E))
159 E = Subst->getReplacement();
160 else if (
const auto *CCE = dyn_cast<CXXConstructExpr>(E)) {
162 if (CCE->getParenOrBraceRange().isValid())
165 assert(CCE->getNumArgs() >= 1 &&
"implicit construct expr should have 1 arg");
186 if (
const auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(Template))
187 return NTTP->getType();
194 if (
const auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(Template))
195 return NTTP->getDepth();
200 if (
const auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(Template))
201 return NTTP->getIndex();
214 if (
const auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(Template))
220 if (
const auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(Template))
221 return NTTP->isExpandedParameterPack();
226 if (
const auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(Template))
227 return NTTP->getLocation();
231 operator bool()
const {
return Template; }
245 if (
const auto *DRE = dyn_cast<DeclRefExpr>(E))
246 if (
const auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(DRE->getDecl()))
247 if (NTTP->getDepth() == Depth)
251 if (
const auto *DTI = dyn_cast<DependentTemplateIdExpr>(E))
252 if (!DTI->getTemplateName().getAsPackIndexingTemplate() &&
253 DTI->getParameter()->getDepth() == Depth)
254 return DTI->getParameter();
268 X = NX->getUnderlyingDecl();
269 if (
NamedDecl *NY = dyn_cast<NamedDecl>(Y))
270 Y = NY->getUnderlyingDecl();
283 bool AggregateCandidateDeduction =
false) {
296 QualType XType =
X.getNonTypeTemplateArgumentType();
299 if (YType.
isNull() || !Context.hasSameType(XType, YType))
304 switch (
X.getKind()) {
306 llvm_unreachable(
"Non-deduced template arguments handled above");
313 X.wasDeducedFromArrayBound() ||
319 return X.wasDeducedFromArrayBound() ? Y :
X;
333 return X.wasDeducedFromArrayBound() ? Y :
X;
342 X.structurallyEquals(Y)))
350 Context.hasSameTemplateName(
X.getAsTemplate(), Y.
getAsTemplate()))
358 Context.hasSameTemplateName(
X.getAsTemplateOrTemplatePattern(),
370 llvm::FoldingSetNodeID ID1, ID2;
371 X.getAsExpr()->Profile(ID1, Context,
true);
374 return X.wasDeducedFromArrayBound() ? Y :
X;
381 assert(!
X.wasDeducedFromArrayBound());
394 X.getParamTypeForDecl());
431 (!AggregateCandidateDeduction &&
X.pack_size() != Y.
pack_size()))
443 if (Merged.isNull() && !(XA->isNull() && YA->isNull()))
445 NewPack.push_back(Merged);
448 NewPack.push_back(*XA);
458 llvm_unreachable(
"Invalid TemplateArgument Kind!");
471 bool *HasDeducedAnyParam) {
473 "deducing non-type template argument with wrong depth");
497 if (
auto *Expansion = dyn_cast<PackExpansionType>(ParamType))
498 ParamType = Expansion->getPattern();
512 S, TemplateParams, ParamType, ValueType, Info,
Deduced,
526 bool *HasDeducedAnyParam) {
528 S, TemplateParams, NTTP,
530 DeducedFromArrayBound),
542 bool *HasDeducedAnyParam) {
564 bool *HasDeducedAnyParam) {
580 bool *HasDeducedAnyParam) {
592 bool *HasDeducedAnyParam) {
600 if (
auto *TempParam = dyn_cast<TemplateTemplateParmDecl>(ParamDecl)) {
607 unsigned StartPos = 0;
624 Arg, {StartPos, DefaultArguments.drop_front(StartPos)}))
630 Info.
Param = TempParam;
637 if (HasDeducedAnyParam)
638 *HasDeducedAnyParam =
true;
673 const TemplateSpecializationType *LastTST =
nullptr;
675 const TemplateSpecializationType *TST =
676 T->getAs<TemplateSpecializationType>();
679 if (!TST->isSugared())
682 T = TST->desugar().getTypePtr();
691 bool *HasDeducedAnyParam) {
696 TNP = TP->getTemplateName();
705 TP->castAsCanonical<TemplateSpecializationType>()->template_arguments();
707 const auto *TT = P->
castAs<InjectedClassNameType>();
708 TNP = TT->getTemplateName(S.
Context);
709 PResolved = TT->getTemplateArgs(S.
Context);
731 SA->getCanonicalTypeInternal()
732 ->castAs<TemplateSpecializationType>()
733 ->template_arguments();
747 S, TemplateParams, PResolved, AResolved, Info,
Deduced,
755 const auto *TA = A->
getAs<TagType>();
761 TNA = TST->getTemplateName();
763 TNA = TA->getTemplateName(S.
Context);
782 S, TemplateParams, PResolved, AResolved, Info,
Deduced,
788 assert(
T->isCanonicalUnqualified());
790 switch (
T->getTypeClass()) {
791 case Type::TypeOfExpr:
793 case Type::DependentName:
795 case Type::PackIndexing:
796 case Type::UnresolvedUsing:
797 case Type::TemplateTypeParm:
801 case Type::ConstantArray:
802 case Type::IncompleteArray:
803 case Type::VariableArray:
804 case Type::DependentSizedArray:
817 T->getCanonicalTypeInternal().getTypePtr());
855class PackDeductionScope {
863 bool DeducePackIfNotAlreadyDeduced =
false,
864 bool FinishingDeduction =
false)
865 : S(S), TemplateParams(TemplateParams),
Deduced(
Deduced), Info(Info),
866 DeducePackIfNotAlreadyDeduced(DeducePackIfNotAlreadyDeduced),
867 FinishingDeduction(FinishingDeduction) {
868 unsigned NumNamedPacks = addPacks(Pattern);
869 finishConstruction(NumNamedPacks);
873 PackDeductionScope(Sema &S, TemplateParameterList *TemplateParams,
874 SmallVectorImpl<DeducedTemplateArgument> &Deduced,
875 TemplateDeductionInfo &Info,
unsigned Index)
876 : S(S), TemplateParams(TemplateParams), Deduced(Deduced), Info(Info) {
878 finishConstruction(1);
882 void addPack(
unsigned Index) {
885 DeducedFromEarlierParameter = !Deduced[Index].isNull();
886 DeducedPack Pack(Index);
887 if (!FinishingDeduction) {
888 Pack.Saved = Deduced[Index];
889 Deduced[Index] = TemplateArgument();
897 FixedNumExpansions = ExpandedPackExpansions;
899 Packs.push_back(Pack);
902 unsigned addPacks(TemplateArgument Pattern) {
905 llvm::SmallBitVector SawIndices(TemplateParams->size());
906 llvm::SmallVector<TemplateArgument, 4> ExtraDeductions;
908 auto AddPack = [&](
unsigned Index) {
909 if (SawIndices[Index])
911 SawIndices[Index] =
true;
918 if (
auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(
919 TemplateParams->getParam(Index))) {
920 if (!NTTP->isExpandedParameterPack())
923 if (
auto *Expansion = dyn_cast<PackExpansionType>(
924 S.Context.getUnconstrainedType(NTTP->getType())))
925 ExtraDeductions.push_back(Expansion->getPattern());
931 auto Collect = [&](TemplateArgument Pattern) {
932 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
933 S.collectUnexpandedParameterPacks(Pattern, Unexpanded);
934 for (
unsigned I = 0, N = Unexpanded.size(); I != N; ++I) {
935 unsigned Depth, Index;
938 if (isa_and_present<ParmVarDecl>(
939 dyn_cast<NamedDecl *>(Unexpanded[I].first)))
942 std::tie(Depth, Index) = *DI;
946 if (Depth == Info.getDeducedDepth())
954 unsigned NumNamedPacks = Packs.size();
958 while (!ExtraDeductions.empty())
959 Collect(ExtraDeductions.pop_back_val());
961 return NumNamedPacks;
964 void finishConstruction(
unsigned NumNamedPacks) {
966 const TemplateArgument *PartialPackArgs =
nullptr;
967 unsigned NumPartialPackArgs = 0;
968 std::pair<unsigned, unsigned> PartialPackDepthIndex(-1u, -1u);
969 if (
auto *Scope = S.CurrentInstantiationScope)
970 if (
auto *Partial = Scope->getPartiallySubstitutedPack(
971 &PartialPackArgs, &NumPartialPackArgs))
977 bool IsExpanded =
true;
978 for (
unsigned I = 0; I != NumNamedPacks; ++I) {
979 if (Packs[I].Index >= Info.getNumExplicitArgs()) {
981 IsPartiallyExpanded =
false;
984 if (PartialPackDepthIndex ==
985 std::make_pair(Info.getDeducedDepth(), Packs[I].Index)) {
986 IsPartiallyExpanded =
true;
994 if (IsPartiallyExpanded)
995 PackElements += NumPartialPackArgs;
996 else if (IsExpanded && FixedNumExpansions)
997 PackElements += *FixedNumExpansions;
999 for (
auto &Pack : Packs) {
1000 if (Info.PendingDeducedPacks.size() > Pack.Index)
1001 Pack.Outer = Info.PendingDeducedPacks[Pack.Index];
1003 Info.PendingDeducedPacks.resize(Pack.Index + 1);
1004 Info.PendingDeducedPacks[Pack.Index] = &Pack;
1006 if (PartialPackDepthIndex ==
1007 std::make_pair(Info.getDeducedDepth(), Pack.Index)) {
1008 Pack.New.append(PartialPackArgs, PartialPackArgs + NumPartialPackArgs);
1014 ~PackDeductionScope() {
1015 for (
auto &Pack : Packs)
1016 Info.PendingDeducedPacks[Pack.Index] = Pack.Outer;
1021 unsigned PackSize = Packs[0].Saved.pack_size();
1023 if (std::all_of(Packs.begin() + 1, Packs.end(), [&PackSize](
const auto &P) {
1024 return P.Saved.pack_size() == PackSize;
1027 return std::nullopt;
1032 bool isDeducedFromEarlierParameter()
const {
1033 return DeducedFromEarlierParameter;
1038 bool isPartiallyExpanded() {
return IsPartiallyExpanded; }
1043 bool hasFixedArity() {
return static_cast<bool>(FixedNumExpansions); }
1048 bool hasNextElement() {
1049 return !FixedNumExpansions || *FixedNumExpansions > PackElements;
1053 void nextPackElement() {
1057 if (!FinishingDeduction) {
1058 for (
auto &Pack : Packs) {
1059 DeducedTemplateArgument &DeducedArg = Deduced[Pack.Index];
1060 if (!Pack.New.empty() || !DeducedArg.
isNull()) {
1061 while (Pack.New.size() < PackElements)
1062 Pack.New.push_back(DeducedTemplateArgument());
1063 if (Pack.New.size() == PackElements)
1064 Pack.New.push_back(DeducedArg);
1066 Pack.New[PackElements] = DeducedArg;
1067 DeducedArg = Pack.New.size() > PackElements + 1
1068 ? Pack.New[PackElements + 1]
1069 : DeducedTemplateArgument();
1080 if (FinishingDeduction)
1081 return TemplateDeductionResult::Success;
1084 for (
auto &Pack : Packs) {
1086 if (!FinishingDeduction)
1087 Deduced[Pack.Index] = Pack.Saved;
1102 Pack.New.resize(PackElements);
1105 DeducedTemplateArgument NewPack;
1106 if (Pack.New.empty()) {
1110 TemplateArgument *ArgumentPack =
1111 new (S.Context) TemplateArgument[Pack.New.size()];
1112 std::copy(Pack.New.begin(), Pack.New.end(), ArgumentPack);
1113 NewPack = DeducedTemplateArgument(
1114 TemplateArgument(llvm::ArrayRef(ArgumentPack, Pack.New.size())),
1120 Pack.New[0].wasDeducedFromArrayBound());
1124 DeducedTemplateArgument *Loc;
1126 if (Pack.Outer->DeferredDeduction.isNull()) {
1129 Pack.Outer->DeferredDeduction = NewPack;
1132 Loc = &Pack.Outer->DeferredDeduction;
1134 Loc = &Deduced[Pack.Index];
1138 DeducedTemplateArgument OldPack = *Loc;
1140 S.Context, OldPack, NewPack, DeducePackIfNotAlreadyDeduced);
1142 Info.AggregateDeductionCandidateHasMismatchedArity =
1148 if (!
Result.isNull() && !Pack.DeferredDeduction.isNull()) {
1150 NewPack = Pack.DeferredDeduction;
1154 NamedDecl *Param = TemplateParams->getParam(Pack.Index);
1157 Info.FirstArg = OldPack;
1158 Info.SecondArg = NewPack;
1159 return TemplateDeductionResult::Inconsistent;
1165 if (*Expansions != PackElements) {
1168 return TemplateDeductionResult::IncompletePack;
1175 return TemplateDeductionResult::Success;
1180 TemplateParameterList *TemplateParams;
1181 SmallVectorImpl<DeducedTemplateArgument> &Deduced;
1182 TemplateDeductionInfo &Info;
1183 unsigned PackElements = 0;
1184 bool IsPartiallyExpanded =
false;
1185 bool DeducePackIfNotAlreadyDeduced =
false;
1186 bool DeducedFromEarlierParameter =
false;
1187 bool FinishingDeduction =
false;
1191 SmallVector<DeducedPack, 2> Packs;
1201 bool FinishingDeduction,
T &&DeductFunc) {
1210 const PackExpansionType *Expansion
1211 = dyn_cast<PackExpansionType>(Params[
ParamIdx]);
1216 if (ArgIdx >= Args.size())
1228 DeductFunc(S, TemplateParams,
ParamIdx, ArgIdx,
1229 Params[
ParamIdx].getUnqualifiedType(),
1230 Args[ArgIdx].getUnqualifiedType(), Info,
Deduced, POK);
1245 QualType Pattern = Expansion->getPattern();
1246 PackDeductionScope PackScope(S, TemplateParams,
Deduced, Info, Pattern,
1248 FinishingDeduction);
1252 if (
ParamIdx + 1 == Params.size() || PackScope.hasFixedArity()) {
1253 for (; ArgIdx < Args.size() && PackScope.hasNextElement(); ++ArgIdx) {
1256 S, TemplateParams,
ParamIdx, ArgIdx,
1261 PackScope.nextPackElement();
1282 if (NumExpansions && !PackScope.isPartiallyExpanded()) {
1283 for (
unsigned I = 0; I != *NumExpansions && ArgIdx < Args.size();
1285 PackScope.nextPackElement();
1291 if (
auto Result = PackScope.finish();
1307 if (ArgIdx < Args.size())
1350 llvm::SmallBitVector *HasDeducedParam) {
1351 return ::DeduceForEachType(
1352 S, TemplateParams, Params, Args, Info,
Deduced, POK,
1358 bool HasDeducedAnyParamCopy =
false;
1360 S, TemplateParams, P, A, Info,
Deduced, TDF, POK,
1361 false, &HasDeducedAnyParamCopy);
1362 if (HasDeducedAnyParam && HasDeducedAnyParamCopy)
1363 *HasDeducedAnyParam =
true;
1364 if (HasDeducedParam && HasDeducedAnyParamCopy)
1365 (*HasDeducedParam)[
ParamIdx] =
true;
1379 if (ParamQs == ArgQs)
1407 return Context.hasSameType(P, A);
1414 return Context.hasSameFunctionTypeIgnoringExceptionSpec(P, A);
1423 if (!Guide || !Guide->isImplicit())
1425 return Guide->getDeducedTemplate()->getTemplateParameters()->size();
1435 if (ParamRef->getPointeeType().getQualifiers())
1438 ParamRef->getPointeeType()->getAsCanonical<TemplateTypeParmType>();
1439 return TypeParm && TypeParm->getIndex() >= FirstInnerIndex;
1467 bool *HasDeducedAnyParam) {
1493 bool HasDeducedAnyParam;
1495 llvm::MapVector<const CXXRecordDecl *, MatchValue> Matches;
1497 auto AddBases = [&Visited, &ToVisit](
const CXXRecordDecl *RD) {
1500 assert(
T->isRecordType() &&
"Base class that isn't a record?");
1501 if (Visited.insert(
T->getAsCXXRecordDecl()).second)
1502 ToVisit.push_back(
T);
1511 while (!ToVisit.empty()) {
1512 QualType NextT = ToVisit.pop_back_val();
1517 bool HasDeducedAnyParamCopy =
false;
1520 &HasDeducedAnyParamCopy);
1526 Matches.insert({RD, {DeducedCopy, HasDeducedAnyParamCopy}});
1537 if (Matches.size() > 1) {
1539 for (
const auto &
Match : Matches)
1540 AddBases(
Match.first);
1544 while (Matches.size() > 1 && !ToVisit.empty()) {
1545 const CXXRecordDecl *RD = ToVisit.pop_back_val()->getAsCXXRecordDecl();
1554 if (Matches.empty())
1556 if (Matches.size() > 1)
1559 std::swap(Matches.front().second.Deduced,
Deduced);
1560 if (
bool HasDeducedAnyParamCopy = Matches.front().second.HasDeducedAnyParam;
1561 HasDeducedAnyParamCopy && HasDeducedAnyParam)
1562 *HasDeducedAnyParam = HasDeducedAnyParamCopy;
1603 bool *HasDeducedAnyParam) {
1607 if (
const auto *AExp = dyn_cast<PackExpansionType>(A))
1608 A = AExp->getPattern();
1703 if (
const auto *TTP = P->
getAsCanonical<TemplateTypeParmType>()) {
1709 unsigned Index = TTP->getIndex();
1736 "saw template type parameter with wrong depth");
1738 "Unresolved overloaded function");
1781 case Decl::TemplateTypeParm:
1784 case Decl::NonTypeTemplateParm:
1787 case Decl::TemplateTemplateParm:
1791 llvm_unreachable(
"unexpected kind");
1799 if (HasDeducedAnyParam)
1800 *HasDeducedAnyParam =
true;
1812 if (P->
getAs<SubstTemplateTypeParmPackType>())
1858#define NON_CANONICAL_TYPE(Class, Base) \
1859 case Type::Class: llvm_unreachable("deducing non-canonical type: " #Class);
1860#define TYPE(Class, Base)
1861#include "clang/AST/TypeNodes.inc"
1863 case Type::TemplateTypeParm:
1864 case Type::SubstTemplateTypeParmPack:
1865 case Type::SubstBuiltinTemplatePack:
1866 llvm_unreachable(
"Type nodes handled above");
1878 case Type::VariableArray:
1880 case Type::FunctionNoProto:
1883 case Type::ObjCObject:
1884 case Type::ObjCInterface:
1885 case Type::ObjCObjectPointer:
1895 case Type::Complex: {
1900 S, TemplateParams, CP->getElementType(), CA->getElementType(), Info,
1902 false, HasDeducedAnyParam);
1906 case Type::Atomic: {
1911 S, TemplateParams, PA->getValueType(), AA->getValueType(), Info,
1913 false, HasDeducedAnyParam);
1917 case Type::Pointer: {
1931 false, HasDeducedAnyParam);
1935 case Type::LValueReference: {
1942 S, TemplateParams, RP->getPointeeType(), RA->getPointeeType(), Info,
1944 false, HasDeducedAnyParam);
1948 case Type::RValueReference: {
1955 S, TemplateParams, RP->getPointeeType(), RA->getPointeeType(), Info,
1957 false, HasDeducedAnyParam);
1961 case Type::IncompleteArray: {
1967 assert(IAP &&
"Template parameter not of incomplete array type");
1970 S, TemplateParams, IAP->getElementType(), IAA->getElementType(), Info,
1973 false, HasDeducedAnyParam);
1977 case Type::ConstantArray: {
1981 if (!CAA || CAA->getSize() != CAP->getSize())
1985 S, TemplateParams, CAP->getElementType(), CAA->getElementType(), Info,
1988 false, HasDeducedAnyParam);
1992 case Type::DependentSizedArray: {
2001 S, TemplateParams, DAP->getElementType(), AA->getElementType(),
2004 false, HasDeducedAnyParam);
2017 "saw non-type template parameter with wrong depth");
2018 if (
const auto *CAA = dyn_cast<ConstantArrayType>(AA)) {
2019 llvm::APSInt Size(CAA->getSize());
2025 if (
const auto *DAA = dyn_cast<DependentSizedArrayType>(AA))
2026 if (DAA->getSizeExpr())
2028 S, TemplateParams, NTTP, DAA->getSizeExpr(), Info,
2038 case Type::FunctionProto: {
2044 if (FPP->getMethodQuals() != FPA->getMethodQuals() ||
2045 FPP->getRefQualifier() != FPA->getRefQualifier() ||
2046 FPP->isVariadic() != FPA->isVariadic())
2051 S, TemplateParams, FPP->getReturnType(), FPA->getReturnType(),
2053 false, HasDeducedAnyParam);
2059 S, TemplateParams, FPP->param_types(), FPA->param_types(), Info,
2072 Expr *NoexceptExpr = FPP->getNoexceptExpr();
2077 "saw non-type template parameter with wrong depth");
2080 switch (FPA->canThrow()) {
2094 if (
Expr *ArgNoexceptExpr = FPA->getNoexceptExpr())
2096 S, TemplateParams, NTTP, ArgNoexceptExpr, Info,
2110 case Type::InjectedClassName:
2119 case Type::TemplateSpecialization: {
2166 case Type::MemberPointer: {
2183 S, TemplateParams, PPT, APT, Info,
Deduced, SubTDF,
2185 false, HasDeducedAnyParam);
2192 :
QualType(MPP->getQualifier().getAsType(), 0);
2193 assert(!TP.
isNull() &&
"member pointer with non-type class");
2198 :
QualType(MPA->getQualifier().getAsType(), 0)
2200 assert(!TA.
isNull() &&
"member pointer with non-type class");
2203 S, TemplateParams, TP, TA, Info,
Deduced, SubTDF,
2205 false, HasDeducedAnyParam);
2213 case Type::BlockPointer: {
2219 S, TemplateParams, BPP->getPointeeType(), BPA->getPointeeType(), Info,
2221 false, HasDeducedAnyParam);
2227 case Type::ExtVector: {
2232 if (VP->getNumElements() != VA->getNumElements())
2234 ElementType = VA->getElementType();
2239 ElementType = VA->getElementType();
2245 S, TemplateParams, VP->getElementType(), ElementType, Info,
Deduced,
2247 false, HasDeducedAnyParam);
2250 case Type::DependentVector: {
2256 S, TemplateParams, VP->getElementType(), VA->getElementType(),
2258 false, HasDeducedAnyParam);
2269 ArgSize = VA->getNumElements();
2276 HasDeducedAnyParam);
2282 S, TemplateParams, VP->getElementType(), VA->getElementType(),
2284 false, HasDeducedAnyParam);
2295 S, TemplateParams, NTTP, VA->getSizeExpr(), Info,
2305 case Type::DependentSizedExtVector: {
2311 S, TemplateParams, VP->getElementType(), VA->getElementType(),
2313 false, HasDeducedAnyParam);
2324 ArgSize = VA->getNumElements();
2329 S, TemplateParams, NTTP, ArgSize, S.
Context.
IntTy,
true, Info,
2336 S, TemplateParams, VP->getElementType(), VA->getElementType(),
2338 false, HasDeducedAnyParam);
2349 S, TemplateParams, NTTP, VA->getSizeExpr(), Info,
2360 case Type::ConstantMatrix: {
2367 if (MP->getNumRows() != MA->getNumRows() ||
2368 MP->getNumColumns() != MA->getNumColumns()) {
2373 S, TemplateParams, MP->getElementType(), MA->getElementType(), Info,
2375 false, HasDeducedAnyParam);
2378 case Type::DependentSizedMatrix: {
2388 false, HasDeducedAnyParam);
2393 auto DeduceMatrixArg =
2394 [&S, &Info, &
Deduced, &TemplateParams, &HasDeducedAnyParam, POK](
2398 const auto *ACM = dyn_cast<ConstantMatrixType>(A);
2399 const auto *ADM = dyn_cast<DependentSizedMatrixType>(A);
2400 if (!ParamExpr->isValueDependent()) {
2401 std::optional<llvm::APSInt> ParamConst =
2402 ParamExpr->getIntegerConstantExpr(S.
Context);
2407 if ((ACM->*GetArgDimension)() == *ParamConst)
2412 Expr *ArgExpr = (ADM->*GetArgDimensionExpr)();
2413 if (std::optional<llvm::APSInt> ArgConst =
2415 if (*ArgConst == *ParamConst)
2426 llvm::APSInt ArgConst(
2428 ArgConst = (ACM->*GetArgDimension)();
2436 S, TemplateParams, NTTP, (ADM->*GetArgDimensionExpr)(), Info,
2440 if (
auto Result = DeduceMatrixArg(MP->getRowExpr(), MA,
2446 return DeduceMatrixArg(MP->getColumnExpr(), MA,
2454 case Type::DependentAddressSpace: {
2460 S, TemplateParams, ASP->getPointeeType(), ASA->getPointeeType(),
2462 false, HasDeducedAnyParam);
2473 S, TemplateParams, NTTP, ASA->getAddrSpaceExpr(), Info,
2484 S, TemplateParams, ASP->getPointeeType(),
2487 false, HasDeducedAnyParam);
2498 S, TemplateParams, NTTP, ArgAddressSpace, S.
Context.
IntTy,
true,
2500 HasDeducedAnyParam);
2505 case Type::DependentBitInt: {
2509 if (IP->isUnsigned() != IA->isUnsigned())
2520 ArgSize = IA->getNumBits();
2523 S, TemplateParams, NTTP, ArgSize,
T,
true, Info,
2528 if (IP->isUnsigned() != IA->isUnsigned())
2536 case Type::TypeOfExpr:
2538 case Type::DependentName:
2539 case Type::UnresolvedUsing:
2540 case Type::Decltype:
2541 case Type::UnaryTransform:
2542 case Type::DeducedTemplateSpecialization:
2543 case Type::PackExpansion:
2545 case Type::ArrayParameter:
2546 case Type::HLSLAttributedResource:
2547 case Type::HLSLInlineSpirv:
2548 case Type::OverflowBehavior:
2552 case Type::PackIndexing: {
2553 const PackIndexingType *PIT = P->
getAs<PackIndexingType>();
2554 if (PIT->hasSelectedType()) {
2556 S, TemplateParams, PIT->getSelectedType(), A, Info,
Deduced, TDF,
2558 false, HasDeducedAnyParam);
2564 llvm_unreachable(
"Invalid Type Class!");
2572 bool *HasDeducedAnyParam) {
2581 llvm_unreachable(
"Null template argument in parameter list");
2589 false, HasDeducedAnyParam);
2601 HasDeducedAnyParam);
2607 llvm_unreachable(
"caller should handle pack expansions");
2662 HasDeducedAnyParam);
2683 llvm_unreachable(
"Unknown template argument kind");
2688 llvm_unreachable(
"Argument packs should be expanded by the caller!");
2691 llvm_unreachable(
"Invalid TemplateArgument Kind!");
2704 if (ArgIdx == Args.size())
2711 assert(ArgIdx == Args.size() - 1 &&
"Pack not at the end of argument list?");
2714 return ArgIdx < Args.size();
2720 bool FoundPackExpansion =
false;
2721 for (
const auto &A : Args) {
2722 if (FoundPackExpansion)
2730 if (A.isPackExpansion())
2731 FoundPackExpansion =
true;
2761 for (
unsigned ArgIdx = 0,
ParamIdx = 0; ; ) {
2767 if (!Ps[
ParamIdx].isPackExpansion()) {
2772 return !FoldPackArgument && NumberOfArgumentsMustMatch
2776 if (As[ArgIdx].isPackExpansion()) {
2781 if (!FoldPackArgument)
2788 S, TemplateParams, Ps[
ParamIdx], Pattern, Info,
2796 if (Ps[
ParamIdx].isPackExpansion())
2802 S, TemplateParams, Ps[
ParamIdx], As[ArgIdx], Info,
2823 PackDeductionScope PackScope(S, TemplateParams,
Deduced, Info, Pattern);
2829 PackScope.hasNextElement();
2831 if (!As[ArgIdx].isPackExpansion()) {
2832 if (!FoldPackParameter)
2834 if (FoldPackArgument)
2844 PackScope.nextPackElement();
2849 return PackScope.finish();
2857 bool NumberOfArgumentsMustMatch) {
2858 return ::DeduceTemplateArguments(
2859 *
this, TemplateParams, Ps, As, Info,
Deduced, NumberOfArgumentsMustMatch,
2869 llvm_unreachable(
"Can't get a NULL template argument here");
2917 llvm_unreachable(
"Invalid TemplateArgument Kind!");
2935 unsigned ArgumentPackIndex) {
2947 Template->getSourceRange().getEnd(), ArgumentPackIndex, CTAI,
2961 CanonicalPackedArgsBuilder;
2969 "deduced nested pack");
2975 S.
Diag(Param->getLocation(),
2976 diag::err_template_arg_deduced_incomplete_pack)
2980 if (ConvertArg(InnerArg, SugaredPackedArgsBuilder.size()))
2985 CanonicalPackedArgsBuilder.push_back(
2991 if (SugaredPackedArgsBuilder.empty()) {
2997 if (
auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(Param)) {
3002 S.
SubstType(NTTP->getType(), Args, NTTP->getLocation(),
3003 NTTP->getDeclName()).isNull())
3005 }
else if (
auto *TTP = dyn_cast<TemplateTemplateParmDecl>(Param)) {
3021 S.
Context, CanonicalPackedArgsBuilder));
3025 return ConvertArg(Arg, 0);
3037 unsigned NumAlreadyConverted,
bool *IsIncomplete) {
3038 for (
unsigned I = 0, N = TemplateParams->
size(); I != N; ++I) {
3045 if (
Deduced[I].isNull() && Param->isTemplateParameterPack()) {
3047 PackDeductionScope(S, TemplateParams,
Deduced, Info, I).finish();
3053 if (I < NumAlreadyConverted) {
3057 if (Param->isParameterPack() && CurrentInstantiationScope &&
3097 *IsIncomplete =
true;
3104 bool HasDefaultArg =
false;
3117 if (Rec->isLambda())
3118 if (
auto *Method = dyn_cast<CXXMethodDecl>(Rec->getDeclContext())) {
3120 ThisTypeQuals = Method->getMethodQualifiers();
3165 if (
auto *DC = dyn_cast<DeclContext>(D))
3188 bool DeducedArgsNeedReplacement =
false;
3189 if (
auto *TD = dyn_cast<ClassTemplatePartialSpecializationDecl>(
Template)) {
3190 TD->getAssociatedConstraints(AssociatedConstraints);
3191 DeducedArgsNeedReplacement = !TD->isClassScopeExplicitSpecialization();
3192 }
else if (
auto *TD =
3193 dyn_cast<VarTemplatePartialSpecializationDecl>(
Template)) {
3194 TD->getAssociatedConstraints(AssociatedConstraints);
3195 DeducedArgsNeedReplacement = !TD->isClassScopeExplicitSpecialization();
3198 AssociatedConstraints);
3201 std::optional<ArrayRef<TemplateArgument>> Innermost;
3204 if (!DeducedArgsNeedReplacement)
3205 Innermost = SugaredDeducedArgs;
3244 Info.
FirstArg = Ps[ArgIdx].getArgument();
3251 {},
false, InstCTAI,
3264 while (!Stack.empty()) {
3265 auto &Xs = Stack.back();
3270 auto &
X = Xs.front();
3272 Stack.emplace_back(
X.getPackAsArray());
3273 Xs = Xs.drop_front();
3276 assert(!
X.isNull());
3283 auto [Ps, P] = take(PsStack);
3284 auto [As, A] = take(AsStack);
3285 if (P.isNull() && A.isNull())
3288 PA = A.isPackExpansion() ? A.getPackExpansionPattern() : A;
3290 if (!P.isPackExpansion() && !A.isPackExpansion()) {
3292 (AsStack.empty() ? As.end() : AsStack.back().begin()) -
3298 if (P.isPackExpansion()) {
3299 Ps = Ps.drop_front();
3302 if (A.isPackExpansion()) {
3303 As = As.drop_front();
3307 Ps = Ps.drop_front(P.isPackExpansion() ? 0 : 1);
3308 As = As.drop_front(A.isPackExpansion() && !P.isPackExpansion() ? 0 : 1);
3310 assert(PsStack.empty());
3311 assert(AsStack.empty());
3336 if (CopyDeducedArgs) {
3342 Info.
reset(SugaredDeducedArgumentList, CanonicalDeducedArgumentList);
3370 for (
unsigned I = 0, N = Ps.size(); I != N; ++I)
3375 Info, CopyDeducedArgs);
3406template <
typename T>
3407static std::enable_if_t<IsPartialSpecialization<T>::value,
3412 if (Partial->isInvalidDecl())
3431 Deduced.resize(Partial->getTemplateParameters()->size());
3433 S, Partial->getTemplateParameters(),
3434 Partial->getTemplateArgs().asArray(), TemplateArgs, Info,
Deduced,
3448 Result = ::FinishTemplateArgumentDeduction(
3449 S, Partial, Partial->getTemplateParameters(),
3450 Partial->getSpecializedTemplate(),
3452 Partial->getTemplateArgsAsWritten()->arguments(), TemplateArgs, Deduced,
3469 return ::DeduceTemplateArguments(*
this, Partial, TemplateArgs, Info);
3475 return ::DeduceTemplateArguments(*
this, Partial, TemplateArgs, Info);
3485 if (
const auto *CTD = dyn_cast<ClassTemplateDecl>(TD)) {
3487 PType =
Context.getCanonicalTagType(CTD->getTemplatedDecl());
3488 }
else if (
const auto *
AliasTemplate = dyn_cast<TypeAliasTemplateDecl>(TD)) {
3489 PType =
AliasTemplate->getTemplatedDecl()->getUnderlyingType();
3491 assert(
false &&
"Expected a class or alias template");
3510 return DeducedResult;
3520 Result = ::FinishTemplateArgumentDeduction(*this, TD, Deduced, Info);
3534 if (
const TemplateSpecializationType *Spec
3535 =
T->getAs<TemplateSpecializationType>())
3536 return Spec->getTemplateName().getAsTemplateDecl() !=
nullptr;
3565 if (ExplicitTemplateArgs.
size() == 0) {
3568 for (
auto *P :
Function->parameters())
3569 ParamTypes.push_back(P->getType());
3594 ExplicitTemplateArgs, {},
3598 if (Index >= TemplateParams->
size())
3611 CanonicalExplicitArgumentList);
3623 unsigned PartiallySubstitutedPackIndex = -1u;
3631 if (!Expansions || Arg.
pack_size() < *Expansions) {
3641 assert(Proto &&
"Function template does not have a prototype?");
3649 SugaredExplicitArgumentList->
asArray(),
3659 nullptr, ExtParamInfos))
3675 ThisContext =
Method->getParent();
3676 ThisTypeQuals =
Method->getMethodQualifiers();
3690 Diag(
Function->getLocation(), diag::err_kern_type_not_void_return)
3701 nullptr, ExtParamInfos))
3726 for (
unsigned I = 0, N = SugaredExplicitArgumentList->
size(); I != N; ++I) {
3728 if (I == PartiallySubstitutedPackIndex)
3801 if (AQuals == DeducedAQuals) {
3819 bool ObjCLifetimeConversion =
false;
3822 ObjCLifetimeConversion) ||
3844 if (Context.hasSameUnqualifiedType(A, DeducedA))
3868 if (PD->isParameterPack()) {
3871 unsigned NumExpansions = NumArgs ? *NumArgs : 1;
3872 if (Idx + NumExpansions >
ParamIdx)
3874 Idx += NumExpansions;
3877 return std::nullopt;
3882 llvm_unreachable(
"parameter index would not be produced from template");
3937 bool ForOverloadSetAddressResolution,
3938 llvm::function_ref<
bool(
bool)> CheckNonDependent) {
3953 bool IsIncomplete =
false;
3958 NumExplicitlySpecified, PartialOverloading ? &IsIncomplete :
nullptr);
3967 Info.
reset(SugaredDeducedArgumentList, CanonicalDeducedArgumentList);
3976 if (CheckNonDependent(
true))
3988 if (!IsLambda && !IsIncomplete) {
4008 if (CheckNonDependent(
false))
4025 CanonicalDeducedArgumentList)
4036 if (IsLambda && !IsIncomplete) {
4059 if (OriginalCallArgs) {
4064 llvm::SmallDenseMap<std::pair<unsigned, QualType>,
QualType> DeducedATypes;
4065 for (
unsigned I = 0, N = OriginalCallArgs->size(); I != N; ++I) {
4069 unsigned ExplicitOffset =
4071 !ForOverloadSetAddressResolution)
4092 if (CacheEntry.
isNull()) {
4101 DeducedA = CacheEntry;
4116 auto [Pos, Inserted] =
4133 if (Candidate.Specialization &&
4164 DeducedArgLists.reserve(TPLs.size());
4170 Params, PatternArgs, CandidateArgs, Info,
Deduced,
4174 bool IsIncomplete =
false;
4177 *
this, PatternCTD, Params,
false,
Deduced, Info, CTAI,
4178 &InstantiationScope, 0, &IsIncomplete);
4180 for (
unsigned I = 0, N =
Deduced.size(); I != N; ++I) {
4199 DeducedArgLists.push_back(
4211 return Params->hasAssociatedConstraints();
4216 PatternArgLocs.reserve(PatternArgs.size());
4218 PatternArgLocs.push_back(
4225 *
this, CandidateCTD, PatternArgLocs, CandidateArgs, DeducedArgs, Info);
4238 if (Constraints.empty())
4249 CanonicalCandidateArgs.reserve(CandidateArgs.size());
4251 CanonicalCandidateArgs.push_back(
4252 Context.getCanonicalTemplateArgument(Arg));
4257 *
this, PatternCTD, Info,
4271 if (S.
getLangOpts().CPlusPlus14 && Fn->getReturnType()->isUndeducedType() &&
4276 if (Method->isImplicitObjectMemberFunction()) {
4279 if (!R.HasFormOfMemberPointer)
4283 Fn->getType(), std::nullopt, Method->getParent());
4286 if (!R.IsAddressOfOperand)
return Fn->getType();
4297 bool ParamWasReference,
4306 if (ParamWasReference)
4308 if (R.IsAddressOfOperand)
4365 if (ArgType.isNull())
continue;
4369 ArgType->isFunctionType())
4388 S, TemplateParams, ParamType, ArgType, Info,
Deduced, TDF,
4432 assert(Arg &&
"expected a non-null arg expression");
4434 ParamRefType !=
nullptr, FailedTSC);
4435 if (ArgType.isNull())
4441 if (ArgType->isIncompleteArrayType()) {
4442 assert(Arg &&
"expected a non-null arg expression");
4451 if (S.
getLangOpts().OpenCL && !ArgType.hasAddressSpace())
4465 if (ArgType->canDecayToPointerType())
4470 ArgType = ArgType.getUnqualifiedType();
4488 if (ArgType->isPointerType() || ArgType->isMemberPointerType() ||
4489 ArgType->isObjCObjectPointerType())
4516 bool DecomposedParam,
unsigned ArgIdx,
unsigned TDF,
4541 ElTy = ArrTy->getElementType();
4558 S, TemplateParams, 0, ElTy, E->getType(),
4560 OriginalCallArgs,
true, ArgIdx, TDF);
4568 if (
auto *DependentArrTy = dyn_cast_or_null<DependentSizedArrayType>(ArrTy)) {
4571 Info, DependentArrTy->getSizeExpr())) {
4580 S, TemplateParams, NTTP, llvm::APSInt(Size),
T,
4600 bool DecomposedParam,
unsigned ArgIdx,
unsigned TDF,
4603 QualType OrigParamType = ParamType;
4608 S, TemplateParams, FirstInnerIndex, ParamType, ArgType,
4609 ArgClassification, Arg, TDF, FailedTSC))
4613 if (
InitListExpr *ILE = dyn_cast_if_present<InitListExpr>(Arg))
4615 Deduced, OriginalCallArgs, ArgIdx, TDF);
4623 OriginalCallArgs.push_back(
4626 S, TemplateParams, ParamType, ArgType, Info,
Deduced, TDF,
4635 bool PartialOverloading,
bool AggregateDeductionCandidate,
4638 bool ForOverloadSetAddressResolution,
4644 unsigned NumParams =
Function->getNumParams();
4645 bool HasExplicitObject =
false;
4646 int ExplicitObjectOffset = 0;
4654 if (!ForOverloadSetAddressResolution &&
4655 Function->hasCXXExplicitFunctionObjectParameter()) {
4656 HasExplicitObject =
true;
4657 ExplicitObjectOffset = 1;
4666 if (Args.size() <
Function->getMinRequiredExplicitArguments() &&
4667 !PartialOverloading)
4670 PartialOverloading)) {
4672 if (Proto->isTemplateVariadic())
4674 else if (!Proto->isVariadic())
4689 unsigned NumExplicitlySpecified = 0;
4690 if (ExplicitTemplateArgs) {
4693 Result = SubstituteExplicitTemplateArguments(
4694 FunctionTemplate, *ExplicitTemplateArgs, Deduced, ParamTypes, nullptr,
4702 NumExplicitlySpecified =
Deduced.size();
4705 for (
unsigned I = 0; I != NumParams; ++I)
4706 ParamTypes.push_back(
Function->getParamDecl(I)->getType());
4712 auto DeduceCallArgument = [&](
QualType ParamType,
unsigned ArgIdx,
4713 bool ExplicitObjectArgument) {
4721 if (ExplicitObjectArgument) {
4724 *
this, TemplateParams, FirstInnerIndex, ParamType, ObjectType,
4725 ObjectClassification,
4726 nullptr, Info,
Deduced, OriginalCallArgs,
4732 *
this, TemplateParams, FirstInnerIndex, ParamType,
4734 Args[ArgIdx], Info,
Deduced, OriginalCallArgs,
false,
4741 for (
unsigned ParamIdx = 0, NumParamTypes = ParamTypes.size(), ArgIdx = 0;
4745 const PackExpansionType *ParamExpansion =
4746 dyn_cast<PackExpansionType>(ParamType);
4747 if (!ParamExpansion) {
4749 if (ArgIdx >= Args.size() && !(HasExplicitObject &&
ParamIdx == 0))
4752 ParamTypesForArgChecking.push_back(ParamType);
4754 if (
ParamIdx == 0 && HasExplicitObject) {
4758 if (
auto Result = DeduceCallArgument(ParamType, 0,
4765 if (
auto Result = DeduceCallArgument(ParamType, ArgIdx++,
4773 bool IsTrailingPack =
ParamIdx + 1 == NumParamTypes;
4775 QualType ParamPattern = ParamExpansion->getPattern();
4776 PackDeductionScope PackScope(*
this, TemplateParams,
Deduced, Info,
4778 AggregateDeductionCandidate && IsTrailingPack);
4796 if (IsTrailingPack || PackScope.hasFixedArity()) {
4797 for (; ArgIdx < Args.size() && PackScope.hasNextElement();
4798 PackScope.nextPackElement(), ++ArgIdx) {
4799 ParamTypesForArgChecking.push_back(ParamPattern);
4800 if (
auto Result = DeduceCallArgument(ParamPattern, ArgIdx,
4809 UnsignedOrNone NumExpansions = ParamExpansion->getNumExpansions();
4810 if (NumExpansions && !PackScope.isPartiallyExpanded()) {
4811 for (
unsigned I = 0; I != *NumExpansions && ArgIdx < Args.size();
4813 ParamTypesForArgChecking.push_back(ParamPattern);
4816 PackScope.nextPackElement();
4818 }
else if (!IsTrailingPack && !PackScope.isPartiallyExpanded() &&
4819 PackScope.isDeducedFromEarlierParameter()) {
4833 PackScope.getSavedPackSizeIfAllEqual();
4834 if (!ArgPosAfterSubstitution)
4837 unsigned PackArgEnd = ArgIdx + *ArgPosAfterSubstitution;
4838 for (; ArgIdx < PackArgEnd && ArgIdx < Args.size(); ArgIdx++) {
4839 ParamTypesForArgChecking.push_back(ParamPattern);
4841 DeduceCallArgument(ParamPattern, ArgIdx,
4846 PackScope.nextPackElement();
4853 if (
auto Result = PackScope.finish();
4864 Result = FinishTemplateArgumentDeduction(
4865 FunctionTemplate, Deduced, NumExplicitlySpecified, Specialization, Info,
4866 &OriginalCallArgs, PartialOverloading, PartialOrdering,
4867 ForOverloadSetAddressResolution,
4868 [&, CallingCtx](bool OnlyInitializeNonUserDefinedConversions) {
4869 ContextRAII SavedContext(*this, CallingCtx);
4870 return CheckNonDependent(ParamTypesForArgChecking,
4871 OnlyInitializeNonUserDefinedConversions);
4874 if (Trap.hasErrorOccurred()) {
4884 bool AdjustExceptionSpec) {
4885 if (ArgFunctionType.
isNull())
4886 return ArgFunctionType;
4891 bool Rebuild =
false;
4894 if (EPI.ExtInfo.getCC() != CC) {
4895 EPI.ExtInfo = EPI.ExtInfo.withCallingConv(CC);
4899 bool NoReturn = FunctionTypeP->getNoReturnAttr();
4900 if (EPI.ExtInfo.getNoReturn() != NoReturn) {
4901 EPI.ExtInfo = EPI.ExtInfo.withNoReturn(NoReturn);
4905 if (AdjustExceptionSpec && (FunctionTypeP->hasExceptionSpec() ||
4907 EPI.ExceptionSpec = FunctionTypeP->getExtProtoInfo().ExceptionSpec;
4912 return ArgFunctionType;
4922 bool IsAddressOfFunction) {
4942 unsigned NumExplicitlySpecified = 0;
4944 if (ExplicitTemplateArgs) {
4947 Result = SubstituteExplicitTemplateArguments(
4948 FunctionTemplate, *ExplicitTemplateArgs, Deduced, ParamTypes,
4949 &FunctionType, Info);
4956 NumExplicitlySpecified =
Deduced.size();
4962 if (!IsAddressOfFunction)
4970 bool HasDeducedReturnType =
false;
4972 Function->getReturnType()->getContainedAutoType()) {
4974 HasDeducedReturnType =
true;
4995 Result = FinishTemplateArgumentDeduction(
4996 FunctionTemplate, Deduced, NumExplicitlySpecified, Specialization, Info,
4998 true, IsAddressOfFunction);
5041 if (HasDeducedReturnType && IsAddressOfFunction &&
5061 if (!IsAddressOfFunction) {
5067 if (HasDeducedReturnType) {
5076 if (!ArgFunctionType.
isNull()) {
5078 SpecializationType, ArgFunctionType)
5079 : !
Context.hasSameFunctionTypeIgnoringExceptionSpec(
5080 SpecializationType, ArgFunctionType)) {
5118 if (!IsReferenceP) {
5127 assert(!A->
isReferenceType() &&
"Reference types were handled above");
5133 P =
Context.getArrayDecayedType(P);
5138 P =
Context.getPointerType(P);
5193 ParamType, ObjectType, ObjectClassification,
5194 nullptr, Info,
Deduced, OriginalCallArgs,
5201 *
this, TemplateParams, P, A, Info,
Deduced, TDF,
5213 Result = FinishTemplateArgumentDeduction(
5214 ConversionTemplate, Deduced, 0, ConversionSpecialized, Info,
5215 &OriginalCallArgs, false,
5218 Specialization = cast_or_null<CXXConversionDecl>(ConversionSpecialized);
5227 bool IsAddressOfFunction) {
5230 IsAddressOfFunction);
5234 struct DependentAuto {
bool IsPack; };
5238 class SubstituteDeducedTypeTransform :
5246 SubstituteDeducedTypeTransform(
Sema &SemaRef, DependentAuto DA)
5250 UseTypeSugar(
true) {}
5252 SubstituteDeducedTypeTransform(Sema &SemaRef, QualType Replacement,
5253 bool UseTypeSugar =
true)
5254 : TreeTransform<SubstituteDeducedTypeTransform>(SemaRef),
5257 Replacement(Replacement), UseTypeSugar(UseTypeSugar) {
5258 assert((!Replacement.isNull() || UseTypeSugar) &&
5259 "An undeduced auto type is never type sugar");
5262 QualType TransformDesugared(TypeLocBuilder &TLB, DeducedTypeLoc TL) {
5264 "unexpected unsugared replacement kind");
5265 QualType
Result = Replacement;
5266 TemplateTypeParmTypeLoc NewTL = TLB.
push<TemplateTypeParmTypeLoc>(
Result);
5271 QualType TransformAutoType(TypeLocBuilder &TLB, AutoTypeLoc TL) {
5282 return TransformDesugared(TLB, TL);
5285 DK, Replacement, TL.
getTypePtr()->getKeyword(),
5287 TL.
getTypePtr()->getTypeConstraintArguments());
5293 QualType TransformDeducedTemplateSpecializationType(
5294 TypeLocBuilder &TLB, DeducedTemplateSpecializationTypeLoc TL) {
5296 return TransformDesugared(TLB, TL);
5299 DK, Replacement, TL.
getTypePtr()->getKeyword(),
5301 auto NewTL = TLB.
push<DeducedTemplateSpecializationTypeLoc>(
Result);
5308 QualType TransformAtomicType(TypeLocBuilder &TLB, AtomicTypeLoc TL) {
5321 if (isa_and_nonnull<TemplateTypeParmType>(Replacement) &&
5323 return getDerived().TransformType(TLB, TL.
getValueLoc());
5324 return inherited::TransformAtomicType(TLB, TL);
5331 bool TransformExceptionSpec(SourceLocation Loc,
5332 FunctionProtoType::ExceptionSpecInfo &ESI,
5333 SmallVectorImpl<QualType> &Exceptions,
5339 return inherited::TransformExceptionSpec(Loc, ESI, Exceptions, Changed);
5342 QualType Apply(TypeLoc TL) {
5347 return TransformType(TLB, TL);
5365 for (
unsigned I = 0,
C =
TypeLoc.getNumArgs(); I !=
C; ++I)
5381 llvm::raw_string_ostream OS(Buf);
5382 OS <<
"'" <<
Concept->getName();
5383 if (
TypeLoc.hasExplicitTemplateArgs()) {
5384 printTemplateArgumentList(OS,
Type.getTypeConstraintArguments(),
5386 Type.getTypeConstraintConcept()
5387 .getAsTemplateDecl()
5388 ->getTemplateParameters());
5392 diag::err_placeholder_constraints_not_satisfied)
5403 bool IgnoreConstraints,
5406 if (
Init->containsErrors())
5412 if (
Init->getType()->isNonOverloadPlaceholderType() || AT->isDecltypeAuto()) {
5419 DependentAuto DependentResult = {
5422 if (!DependentDeduction &&
5424 Init->containsUnexpandedParameterPack())) {
5425 Result = SubstituteDeducedTypeTransform(*
this, DependentResult).Apply(
Type);
5426 assert(!
Result.isNull() &&
"substituting DependentTy can't fail");
5430 auto *InitList = dyn_cast<InitListExpr>(
Init);
5433 Diag(
Init->getBeginLoc(), diag::err_auto_init_list_from_c)
5434 << (int)AT->getKeyword() << IsArrayType;
5440 Diag(
Type.getBeginLoc(), diag::ext_c23_auto_non_plain_identifier);
5451 if (AT->isDecltypeAuto()) {
5453 Diag(
Init->getBeginLoc(), diag::err_decltype_auto_initializer_list);
5458 assert(!DeducedType.
isNull());
5466 nullptr,
false,
false,
false);
5470 Context, Loc, Loc, TemplParamPtr, Loc,
nullptr);
5476 if (!
Type.getType().getNonReferenceType()->
getAs<AutoType>())
5480 for (
Expr *
Init : InitList->inits()) {
5486 *
this, TemplateParamsSt.get(), 0, TemplArg,
Init->getType(),
5495 <<
Init->getSourceRange();
5503 DeducedFromInitRange =
Init->getSourceRange();
5507 Diag(Loc, diag::err_auto_bitfield);
5511 SubstituteDeducedTypeTransform(*
this, TemplArg).Apply(
Type);
5512 assert(!FuncParam.
isNull() &&
5513 "substituting template parameter for 'auto' failed");
5515 *
this, TemplateParamsSt.get(), 0, FuncParam,
Init->getType(),
5518 false, 0, 0, FailedTSC);
5526 DeducedType =
Deduced[0].getAsType();
5530 if (DeducedType.
isNull())
5541 DeducedType =
Context.getCommonSugaredType(
Result, DeducedType);
5544 if (AT->isConstrained() && !IgnoreConstraints &&
5546 *
this, *AT,
Type.getContainedAutoTypeLoc(), DeducedType))
5549 Result = SubstituteDeducedTypeTransform(*
this, DeducedType).Apply(
Type);
5557 assert((
bool)InitList == OriginalArg.DecomposedParam &&
5558 "decomposed non-init-list in auto deduction?");
5572 assert(TypeToReplaceAuto !=
Context.DependentTy);
5573 return SubstituteDeducedTypeTransform(*
this, TypeToReplaceAuto)
5574 .TransformType(TypeWithAuto);
5579 assert(TypeToReplaceAuto !=
Context.DependentTy);
5580 return SubstituteDeducedTypeTransform(*
this, TypeToReplaceAuto)
5581 .TransformType(TypeWithAuto);
5585 return SubstituteDeducedTypeTransform(
5588 .TransformType(TypeWithAuto);
5593 return SubstituteDeducedTypeTransform(
5596 .TransformType(TypeWithAuto);
5601 return SubstituteDeducedTypeTransform(*
this, TypeToReplaceAuto,
5603 .TransformType(TypeWithAuto);
5608 return SubstituteDeducedTypeTransform(*
this, TypeToReplaceAuto,
5610 .TransformType(TypeWithAuto);
5618 ? diag::err_init_capture_deduction_failure_from_init_list
5619 : diag::err_auto_var_deduction_failure_from_init_list)
5623 VDecl->
isInitCapture() ? diag::err_init_capture_deduction_failure
5624 : diag::err_auto_var_deduction_failure)
5626 <<
Init->getSourceRange();
5658 "failed to deduce lambda return type");
5668 RetType =
Context.getPointerType(RetType);
5671 RetType =
Context.getBlockPointerType(RetType);
5673 Context.adjustDeducedFunctionResultType(FD, RetType);
5685 Diag(Loc, diag::err_auto_fn_used_before_defined) << FD;
5689 return StillUndeduced;
5732 assert(Method && !Method->isExplicitObjectMemberFunction() &&
5733 "expected a member function with no explicit object parameter");
5735 RawType = Context.getQualifiedType(RawType, Method->getMethodQualifiers());
5736 if (Method->getRefQualifier() ==
RQ_RValue ||
5737 (IsOtherRvr && Method->getRefQualifier() ==
RQ_None))
5738 return Context.getRValueReferenceType(RawType);
5739 return Context.getLValueReferenceType(RawType);
5750 bool IsIncompleteSubstitution =
false;
5759 if (IsDeductionGuide) {
5761 P = Injected->getDecl()->getCanonicalTemplateSpecializationType(
5766 if (InstP.
isNull() && !IsIncompleteSubstitution)
5768 if (!CheckConsistency)
5770 if (IsIncompleteSubstitution)
5775 if (
auto *PA = dyn_cast<PackExpansionType>(A);
5777 A = PA->getPattern();
5780 if (IsDeductionGuide) {
5781 if (
auto *Injected = T1->getAsCanonical<InjectedClassNameType>())
5782 T1 = Injected->getDecl()->getCanonicalTemplateSpecializationType(
5784 if (
auto *Injected = T2->getAsCanonical<InjectedClassNameType>())
5785 T2 = Injected->getDecl()->getCanonicalTemplateSpecializationType(
5803 bool IsIncomplete =
false;
5819 Info.
reset(SugaredDeducedArgumentList, CanonicalDeducedArgumentList);
5838 assert(Proto1 && Proto2 &&
"Function templates must have prototypes");
5854 Proto1->
isVariadic() == Proto2->isVariadic() &&
5855 "shouldn't partial order functions with different qualifiers in a "
5856 "context where the function type is used");
5858 assert(Args1.empty() && Args2.empty() &&
5859 "Only call context should have arguments");
5861 Args2 = Proto2->getParamTypes();
5868 bool HasDeducedAnyParamFromReturnType =
false;
5871 S, TemplateParams, Proto2->getReturnType(), Proto1->
getReturnType(),
5874 &HasDeducedAnyParamFromReturnType) !=
5879 llvm::SmallBitVector HasDeducedParam;
5881 HasDeducedParam.resize(Args2.size());
5885 &HasDeducedParam) !=
5900 bool AtLeastAsSpecialized;
5902 AtLeastAsSpecialized =
5903 ::FinishTemplateArgumentDeduction(
5904 S, FT2, Deduced, Info,
5905 [&](Sema &S, FunctionTemplateDecl *FTD,
5906 ArrayRef<TemplateArgument> DeducedArgs) {
5911 if (TPOC != TPOC_Call) {
5912 if (auto TDR = ::CheckDeductionConsistency(
5913 S, FTD, std::nullopt,
5914 Proto2->getReturnType(), Proto1->getReturnType(),
5916 HasDeducedAnyParamFromReturnType);
5917 TDR != TemplateDeductionResult::Success)
5921 if (TPOC == TPOC_Conversion)
5922 return TemplateDeductionResult::Success;
5924 return ::DeduceForEachType(
5925 S, TemplateParams, Args2, Args1, Info, Deduced,
5926 PartialOrderingKind::Call, true,
5927 [&](Sema &S, TemplateParameterList *, int ParamIdx,
5928 UnsignedOrNone ArgIdx, QualType P, QualType A,
5929 TemplateDeductionInfo &Info,
5930 SmallVectorImpl<DeducedTemplateArgument> &Deduced,
5931 PartialOrderingKind) {
5932 if (ArgIdx && *ArgIdx >= static_cast<unsigned>(Args1Offset))
5933 ArgIdx = *ArgIdx - Args1Offset;
5935 ArgIdx = std::nullopt;
5936 return ::CheckDeductionConsistency(
5937 S, FTD, ArgIdx, P, A, DeducedArgs,
5938 HasDeducedParam[ParamIdx]);
5942 if (!AtLeastAsSpecialized || Trap.hasErrorOccurred())
5951 unsigned ArgIdx = 0, NumArgs =
Deduced.size();
5952 for (; ArgIdx != NumArgs; ++ArgIdx)
5956 if (ArgIdx == NumArgs) {
5963 llvm::SmallBitVector UsedParameters(TemplateParams->size());
5966 for (
unsigned I = 0, N = Args2.size(); I != N; ++I)
5968 TemplateParams->getDepth(), UsedParameters);
5974 TemplateParams->getDepth(), UsedParameters);
5999 S.Context.getFunctionTypeWithExceptionSpec(FD2->getType(),
EST_None),
6000 false, TemplateParams->getDepth(), UsedParameters);
6004 for (; ArgIdx != NumArgs; ++ArgIdx)
6007 if (
Deduced[ArgIdx].isNull() && UsedParameters[ArgIdx])
6019 const TemplateSpecializationType *TST1,
6020 const TemplateSpecializationType *TST2) {
6022 As2 = TST2->template_arguments();
6028 assert(As1.size() == As2.size());
6030 unsigned PackSize1 = TA1.
pack_size(), PackSize2 = TA2.pack_size();
6031 bool IsPackExpansion1 =
6033 bool IsPackExpansion2 =
6034 PackSize2 && TA2.pack_elements().back().isPackExpansion();
6035 if (PackSize1 == PackSize2 && IsPackExpansion1 == IsPackExpansion2)
6037 if (PackSize1 > PackSize2 && IsPackExpansion1)
6039 if (PackSize1 < PackSize2 && IsPackExpansion2)
6048 bool PartialOverloading) {
6053 bool ShouldConvert1 =
false;
6054 bool ShouldConvert2 =
false;
6055 bool Args1Offset =
false;
6056 bool Args2Offset =
false;
6067 const CXXMethodDecl *Method1 = dyn_cast<CXXMethodDecl>(FD1);
6068 const CXXMethodDecl *Method2 = dyn_cast<CXXMethodDecl>(FD2);
6079 bool NonStaticMethod1 = Method1 && !Method1->isStatic(),
6080 NonStaticMethod2 = Method2 && !Method2->
isStatic();
6083 Params2Begin = Proto2->param_type_begin();
6085 size_t NumComparedArguments = NumCallArguments1;
6088 (NonStaticMethod1 && NonStaticMethod2) ||
6089 (OO !=
OO_None && OO != OO_Call && OO != OO_Subscript)) {
6091 NonStaticMethod1 && !Method1->hasCXXExplicitFunctionObjectParameter();
6094 NumComparedArguments += 1;
6096 if (ShouldConvert1) {
6100 : Proto2->param_type_begin()[0]->isRValueReferenceType();
6103 RawObj1Ty, IsRValRef2);
6104 Args1.push_back(Obj1Ty);
6107 if (ShouldConvert2) {
6110 ? Method1->getRefQualifier() ==
RQ_RValue
6114 RawObj2Ty, IsRValRef1);
6115 Args2.push_back(Obj2Ty);
6119 if (NonStaticMethod1 && Method1->hasCXXExplicitFunctionObjectParameter())
6124 Args1.insert(Args1.end(), Params1Begin, Proto1->
param_type_end());
6125 Args2.insert(Args2.end(), Params2Begin, Proto2->param_type_end());
6130 Args1.resize(std::min(Args1.size(), NumComparedArguments));
6131 Args2.resize(std::min(Args2.size(), NumComparedArguments));
6134 std::reverse(Args2.begin(), Args2.end());
6136 assert(!
Reversed &&
"Only call context could have reversed arguments");
6139 Args2, Args2Offset);
6141 Args1, Args1Offset);
6145 if (Better1 != Better2)
6146 return Better1 ? FT1 : FT2;
6148 if (!Better1 && !Better2)
6157 Param1.reserve(FD1->
param_size() + ShouldConvert1);
6159 Param1.push_back(Obj1Ty);
6161 Param1.push_back(P->getType());
6164 Param2.reserve(FD2->
param_size() + ShouldConvert2);
6166 Param2.push_back(Obj2Ty);
6168 Param2.push_back(P->getType());
6170 unsigned NumParams1 = Param1.size();
6171 unsigned NumParams2 = Param2.size();
6177 if (Variadic1 != Variadic2) {
6178 if (Variadic1 && NumParams1 > NumParams2)
6180 if (Variadic2 && NumParams2 > NumParams1)
6187 for (
int i = 0, e = std::min(NumParams1, NumParams2);
6188 !PartialOverloading && i < e; ++i) {
6189 QualType T1 = Param1[i].getCanonicalType();
6190 QualType T2 = Param2[i].getCanonicalType();
6191 auto *TST1 = dyn_cast<TemplateSpecializationType>(T1);
6192 auto *TST2 = dyn_cast<TemplateSpecializationType>(T2);
6204 "unknown MoreSpecializedTrailingPackTieBreakerResult value");
6207 if (!
Context.getLangOpts().CPlusPlus20)
6223 if (TPL1->
size() != TPL2->
size() || NumParams1 != NumParams2)
6239 for (
unsigned i = 0; i < NumParams1; ++i)
6240 if (!
Context.hasSameUnqualifiedType(Param1[i], Param2[i]))
6255 bool AtLeastAsConstrained1, AtLeastAsConstrained2;
6260 if (AtLeastAsConstrained1 == AtLeastAsConstrained2)
6262 return AtLeastAsConstrained1 ? FT1 : FT2;
6270 bool Complain,
QualType TargetType) {
6271 if (SpecBegin == SpecEnd) {
6273 Diag(Loc, NoneDiag);
6279 if (SpecBegin + 1 == SpecEnd)
6287 assert(BestTemplate &&
"Not a function template specialization?");
6291 assert(Challenger &&
"Not a function template specialization?");
6296 BestTemplate = Challenger;
6322 Diag(Loc, AmbigDiag);
6329 FD->getPrimaryTemplate()->getTemplateParameters(),
6330 *FD->getTemplateSpecializationArgs());
6331 if (!TargetType.
isNull())
6333 Diag((*I)->getLocation(), PD);
6343 "not for function templates");
6360 bool AtLeastAsConstrained1, AtLeastAsConstrained2;
6365 if (AtLeastAsConstrained1 == AtLeastAsConstrained2)
6367 return AtLeastAsConstrained1 ? FD1 : FD2;
6379template <
typename TemplateLikeDecl>
6381 TemplateLikeDecl *P2,
6411 Deduced.resize(P2->getTemplateParameters()->size());
6432 Result = ::FinishTemplateArgumentDeduction(
6433 S, P2, P2->getTemplateParameters(), Template,
6434 true, Ps, As, Deduced, Info,
6444 template <
typename T1,
typename T2,
6445 std::enable_if_t<std::is_same_v<T1, T2>,
bool> =
true>
6446 T2 *operator()(T1 *, T2 *P2) {
6449 template <
typename T1,
typename T2,
6450 std::enable_if_t<!std::is_same_v<T1, T2>,
bool> =
true>
6451 T1 *operator()(T1 *, T2 *) {
6457struct TemplateArgumentListAreEqual {
6459 TemplateArgumentListAreEqual(ASTContext &Ctx) : Ctx(Ctx) {}
6461 template <
typename T1,
typename T2,
6462 std::enable_if_t<std::is_same_v<T1, T2>,
bool> =
true>
6463 bool operator()(T1 *PS1, T2 *PS2) {
6464 ArrayRef<TemplateArgument> Args1 = PS1->getTemplateArgs().asArray(),
6465 Args2 = PS2->getTemplateArgs().asArray();
6467 for (
unsigned I = 0, E = Args1.size(); I < E; ++I) {
6471 llvm::FoldingSetNodeID IDA, IDB;
6472 Args1[I].Profile(IDA, Ctx);
6473 Args2[I].Profile(IDB, Ctx);
6480 template <
typename T1,
typename T2,
6481 std::enable_if_t<!std::is_same_v<T1, T2>,
bool> =
true>
6482 bool operator()(T1 *Spec, T2 *Primary) {
6483 ArrayRef<TemplateArgument> Args1 = Spec->getTemplateArgs().asArray(),
6484 Args2 = Primary->getInjectedTemplateArgs(Ctx);
6486 for (
unsigned I = 0, E = Args1.size(); I < E; ++I) {
6490 llvm::FoldingSetNodeID IDA, IDB;
6491 Args1[I].Profile(IDA, Ctx);
6525template <
typename TemplateLikeDecl,
typename PrimaryDel>
6526static TemplateLikeDecl *
6529 constexpr bool IsMoreSpecialThanPrimaryCheck =
6530 !std::is_same_v<TemplateLikeDecl, PrimaryDel>;
6533 if constexpr (IsMoreSpecialThanPrimaryCheck)
6536 P2T = P2->getSpecializedTemplate();
6539 if (IsMoreSpecialThanPrimaryCheck && !Better1)
6543 P1->getSpecializedTemplate(), Info);
6544 if (IsMoreSpecialThanPrimaryCheck && !Better2)
6550 if (Better1 != Better2)
6551 return Better1 ? P1 : GetP2()(P1, P2);
6553 if (!Better1 && !Better2)
6562 return GetP2()(P1, P2);
6591 if (!TemplateArgumentListAreEqual(S.
getASTContext())(P1, P2))
6595 P1->getAssociatedConstraints(AC1);
6596 P2->getAssociatedConstraints(AC2);
6597 bool AtLeastAsConstrained1, AtLeastAsConstrained2;
6599 (IsMoreSpecialThanPrimaryCheck && !AtLeastAsConstrained1))
6603 if (AtLeastAsConstrained1 == AtLeastAsConstrained2)
6605 return AtLeastAsConstrained1 ? P1 : GetP2()(P1, P2);
6640 "the partial specializations being compared should specialize"
6641 " the same template.");
6659 Context.canonicalizeTemplateArguments(PrimaryCanonArgs);
6711 for (
unsigned I = 0, N = P->
size(); I != N; ++I) {
6736 if (StrictPackMatch)
6757 *
this, A, AArgs, PArgs, Info,
Deduced,
6763 *StrictPackMatch =
true;
6767 Diag(AArg->
getLocation(), diag::err_template_param_list_different_arity)
6777 diag::err_inconsistent_deduction)
6798 llvm_unreachable(
"Unexpected Result");
6803 TDK = ::FinishTemplateArgumentDeduction(
6804 *this, AArg, AArg->getTemplateParameters(), AArg, PartialOrdering,
6805 AArgs, PArgs, Deduced, Info, false);
6815 assert(PArg->
isInvalidDecl() &&
"Unexpected NonDeducedMismatch");
6839 llvm_unreachable(
"Unexpected Result");
6841 llvm_unreachable(
"Unexpected TDK");
6846 llvm::SmallBitVector &
Used;
6848 bool VisitDeclRefTypes =
true;
6850 MarkUsedTemplateParameterVisitor(llvm::SmallBitVector &
Used,
unsigned Depth,
6851 bool VisitDeclRefTypes =
true)
6852 :
Used(
Used), Depth(Depth), VisitDeclRefTypes(VisitDeclRefTypes) {}
6854 bool VisitTemplateTypeParmType(TemplateTypeParmType *
T)
override {
6855 if (
T->getDepth() == Depth)
6856 Used[
T->getIndex()] =
true;
6861 bool TraverseQualifier)
override {
6862 if (
auto *TTP = llvm::dyn_cast_or_null<TemplateTemplateParmDecl>(
6864 if (TTP->getDepth() == Depth)
6865 Used[TTP->getIndex()] =
true;
6871 bool VisitDeclRefExpr(DeclRefExpr *E)
override {
6872 if (
auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(E->
getDecl()))
6873 if (NTTP->getDepth() == Depth)
6874 Used[NTTP->getIndex()] =
true;
6875 if (VisitDeclRefTypes)
6880 bool VisitDependentTemplateIdExpr(DependentTemplateIdExpr *E)
override {
6887 bool TraverseSizeOfPackExpr(SizeOfPackExpr *SOPE)
override {
6888 return TraverseDecl(SOPE->
getPack());
6900 llvm::SmallBitVector &
Used) {
6902 MarkUsedTemplateParameterVisitor(
Used, Depth)
6903 .TraverseStmt(
const_cast<Expr *
>(E));
6909 E = Expansion->getPattern();
6913 if (
const auto *DTI = dyn_cast<DependentTemplateIdExpr>(E)) {
6914 Used[DTI->getParameter()->getIndex()] =
true;
6915 for (
const auto &TLoc : DTI->template_arguments())
6937 bool OnlyDeduced,
unsigned Depth,
6938 llvm::SmallBitVector &
Used) {
6952 llvm::SmallBitVector &
Used) {
6955 = dyn_cast<TemplateTemplateParmDecl>(
Template)) {
6976 llvm::SmallBitVector &
Used) {
6981 if (!
T->isDependentType())
6985 switch (
T->getTypeClass()) {
6994 case Type::BlockPointer:
7002 case Type::LValueReference:
7003 case Type::RValueReference:
7011 case Type::MemberPointer: {
7017 OnlyDeduced, Depth,
Used);
7021 case Type::DependentSizedArray:
7024 OnlyDeduced, Depth,
Used);
7028 case Type::ConstantArray:
7029 case Type::IncompleteArray:
7030 case Type::ArrayParameter:
7033 OnlyDeduced, Depth,
Used);
7036 case Type::ExtVector:
7039 OnlyDeduced, Depth,
Used);
7042 case Type::DependentVector: {
7050 case Type::DependentSizedExtVector: {
7060 case Type::DependentAddressSpace: {
7064 OnlyDeduced, Depth,
Used);
7067 OnlyDeduced, Depth,
Used);
7071 case Type::ConstantMatrix: {
7078 case Type::DependentSizedMatrix: {
7089 case Type::FunctionProto: {
7093 for (
unsigned I = 0, N = Proto->
getNumParams(); I != N; ++I) {
7098 if (!OnlyDeduced || I + 1 == N ||
7116 case Type::TemplateTypeParm: {
7118 if (TTP->getDepth() == Depth)
7119 Used[TTP->getIndex()] =
true;
7123 case Type::SubstTemplateTypeParmPack: {
7124 const SubstTemplateTypeParmPackType *Subst
7126 if (Subst->getReplacedParameter()->getDepth() == Depth)
7127 Used[Subst->getIndex()] =
true;
7132 case Type::SubstBuiltinTemplatePack: {
7134 OnlyDeduced, Depth,
Used);
7138 case Type::InjectedClassName:
7141 ->getCanonicalTemplateSpecializationType(Ctx);
7144 case Type::TemplateSpecialization: {
7145 const TemplateSpecializationType *Spec
7162 for (
const auto &Arg : Spec->template_arguments())
7171 OnlyDeduced, Depth,
Used);
7178 OnlyDeduced, Depth,
Used);
7181 case Type::DependentName:
7185 OnlyDeduced, Depth,
Used);
7191 OnlyDeduced, Depth,
Used);
7194 case Type::TypeOfExpr:
7198 OnlyDeduced, Depth,
Used);
7201 case Type::Decltype:
7205 OnlyDeduced, Depth,
Used);
7208 case Type::PackIndexing:
7211 OnlyDeduced, Depth,
Used);
7213 OnlyDeduced, Depth,
Used);
7217 case Type::UnaryTransform:
7220 auto Next = UTT->getUnderlyingType();
7222 Next = UTT->getBaseType();
7227 case Type::PackExpansion:
7230 OnlyDeduced, Depth,
Used);
7234 case Type::DeducedTemplateSpecialization:
7237 OnlyDeduced, Depth,
Used);
7239 case Type::DependentBitInt:
7242 OnlyDeduced, Depth,
Used);
7245 case Type::HLSLAttributedResource:
7252 OnlyDeduced, Depth,
Used);
7257 case Type::VariableArray:
7258 case Type::FunctionNoProto:
7261 case Type::ObjCInterface:
7262 case Type::ObjCObject:
7263 case Type::ObjCObjectPointer:
7264 case Type::UnresolvedUsing:
7267 case Type::HLSLInlineSpirv:
7268 case Type::OverflowBehavior:
7269#define TYPE(Class, Base)
7270#define ABSTRACT_TYPE(Class, Base)
7271#define DEPENDENT_TYPE(Class, Base)
7272#define NON_CANONICAL_TYPE(Class, Base) case Type::Class:
7273#include "clang/AST/TypeNodes.inc"
7285 llvm::SmallBitVector &
Used) {
7303 OnlyDeduced, Depth,
Used);
7321 llvm::SmallBitVector &
Used) {
7326 const Expr *E,
unsigned Depth, llvm::SmallBitVector &
Used) {
7327 MarkUsedTemplateParameterVisitor(
Used, Depth,
false)
7328 .TraverseStmt(
const_cast<Expr *
>(E));
7333 bool OnlyDeduced,
unsigned Depth,
7334 llvm::SmallBitVector &
Used) {
7343 for (
unsigned I = 0, N = TemplateArgs.
size(); I != N; ++I)
7349 bool OnlyDeduced,
unsigned Depth,
7350 llvm::SmallBitVector &
Used) {
7354 for (
unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
7361 llvm::SmallBitVector &
Used) {
7362 for (
unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
7364 false, Depth,
Used);
7369 llvm::SmallBitVector &
Deduced) {
7376 for (
unsigned I = 0, N =
Function->getNumParams(); I != N; ++I)
7384 if (!
T->isDependentType())
7389 llvm::SmallBitVector
Deduced(TemplateParams->
size());
Defines the clang::ASTContext interface.
This file provides some common utility functions for processing Lambda related AST Constructs.
Provides definitions for the various language-specific address spaces.
static Decl::Kind getKind(const Decl *D)
Defines the C++ Decl subclasses, other than those for templates (found in DeclTemplate....
Defines the C++ template declaration subclasses.
Defines the ExceptionSpecificationType enumeration and various utility functions.
Defines the clang::Expr interface and subclasses for C++ expressions.
Result
Implement __builtin_bit_cast and related operations.
Forward-declares and imports various common LLVM datatypes that clang wants to use unqualified.
Defines the clang::LangOptions interface.
Implements a partial diagnostic that can be emitted anwyhere in a DiagnosticBuilder stream.
static AccessResult DeduceTemplateArguments(Sema &S, FriendTemplateDecl *FTD, DeclContext *DC, const TemplateSpecializationType *TST, ArrayRef< TemplateParameterList * > TPLs, TemplateSpecCandidateSet *FailedTSC, MultiLevelTemplateArgumentList &DeducedArgs)
static TemplateDeductionResult DeduceNullPtrTemplateArgument(Sema &S, TemplateParameterList *TemplateParams, NonTypeOrVarTemplateParmDecl NTTP, QualType NullPtrType, TemplateDeductionInfo &Info, bool PartialOrdering, SmallVectorImpl< DeducedTemplateArgument > &Deduced, bool *HasDeducedAnyParam)
Deduce the value of the given non-type template parameter from the given null pointer template argume...
static bool ConvertDeducedTemplateArgument(Sema &S, NamedDecl *Param, DeducedTemplateArgument Arg, NamedDecl *Template, TemplateDeductionInfo &Info, bool IsDeduced, Sema::CheckTemplateArgumentInfo &CTAI)
Convert the given deduced template argument and add it to the set of fully-converted template argumen...
static TemplateDeductionResult DeduceTemplateArguments(Sema &S, TemplateParameterList *TemplateParams, ArrayRef< TemplateArgument > Ps, ArrayRef< TemplateArgument > As, TemplateDeductionInfo &Info, SmallVectorImpl< DeducedTemplateArgument > &Deduced, bool NumberOfArgumentsMustMatch, bool PartialOrdering, PackFold PackFold, bool *HasDeducedAnyParam)
static TemplateDeductionResult DeduceTemplateSpecArguments(Sema &S, TemplateParameterList *TemplateParams, const QualType P, QualType A, TemplateDeductionInfo &Info, bool PartialOrdering, SmallVectorImpl< DeducedTemplateArgument > &Deduced, bool *HasDeducedAnyParam)
static TemplateDeductionResult DeduceTemplateArgumentsByTypeMatch(Sema &S, TemplateParameterList *TemplateParams, QualType Param, QualType Arg, TemplateDeductionInfo &Info, SmallVectorImpl< DeducedTemplateArgument > &Deduced, unsigned TDF, PartialOrderingKind POK, bool DeducedFromArrayBound, bool *HasDeducedAnyParam)
Deduce the template arguments by comparing the parameter type and the argument type (C++ [temp....
static TemplateDeductionResult CheckDeductionConsistency(Sema &S, FunctionTemplateDecl *FTD, UnsignedOrNone ArgIdx, QualType P, QualType A, ArrayRef< TemplateArgument > DeducedArgs, bool CheckConsistency)
static PartialOrderingKind degradeCallPartialOrderingKind(PartialOrderingKind POK)
When propagating a partial ordering kind into a NonCall context, this is used to downgrade a 'Call' i...
static MoreSpecializedTrailingPackTieBreakerResult getMoreSpecializedTrailingPackTieBreaker(const TemplateSpecializationType *TST1, const TemplateSpecializationType *TST2)
static TemplateLikeDecl * getMoreSpecialized(Sema &S, QualType T1, QualType T2, TemplateLikeDecl *P1, PrimaryDel *P2, TemplateDeductionInfo &Info)
Returns the more specialized template specialization between T1/P1 and T2/P2.
static DeducedTemplateArgument checkDeducedTemplateArguments(ASTContext &Context, const DeducedTemplateArgument &X, const DeducedTemplateArgument &Y, bool AggregateCandidateDeduction=false)
Verify that the given, deduced template arguments are compatible.
static const Expr * unwrapExpressionForDeduction(const Expr *E)
static bool isSameDeclaration(Decl *X, Decl *Y)
Determine whether two declaration pointers refer to the same declaration.
static NonTypeOrVarTemplateParmDecl getDeducedNTTParameterFromExpr(const Expr *E, unsigned Depth)
If the given expression is of a form that permits the deduction of a non-type template parameter,...
static TemplateDeductionResult DeduceForEachType(Sema &S, TemplateParameterList *TemplateParams, ArrayRef< QualType > Params, ArrayRef< QualType > Args, TemplateDeductionInfo &Info, SmallVectorImpl< DeducedTemplateArgument > &Deduced, PartialOrderingKind POK, bool FinishingDeduction, T &&DeductFunc)
static void AddFriendTemplateDeductionCandidate(Sema &S, TemplateDecl *TD, TemplateDeductionInfo &Info, TemplateDeductionResult Result, TemplateSpecCandidateSet *FailedTSC)
static TemplateDeductionResult DeduceTemplateBases(Sema &S, const CXXRecordDecl *RD, TemplateParameterList *TemplateParams, QualType P, TemplateDeductionInfo &Info, bool PartialOrdering, SmallVectorImpl< DeducedTemplateArgument > &Deduced, bool *HasDeducedAnyParam)
Attempt to deduce the template arguments by checking the base types according to (C++20 [temp....
static bool hasTemplateArgumentForDeduction(ArrayRef< TemplateArgument > &Args, unsigned &ArgIdx)
Determine whether there is a template argument to be used for deduction.
static DeclContext * getAsDeclContextOrEnclosing(Decl *D)
static bool hasInconsistentOrSupersetQualifiersOf(QualType ParamType, QualType ArgType)
Determine whether the parameter has qualifiers that the argument lacks.
static void MarkUsedTemplateParameters(ASTContext &Ctx, const TemplateArgument &TemplateArg, bool OnlyDeduced, unsigned Depth, llvm::SmallBitVector &Used)
Mark the template parameters that are used by this template argument.
static UnsignedOrNone getPackIndexForParam(Sema &S, FunctionTemplateDecl *FunctionTemplate, const MultiLevelTemplateArgumentList &Args, unsigned ParamIdx)
Find the pack index for a particular parameter index in an instantiation of a function template with ...
static QualType GetTypeOfFunction(Sema &S, const OverloadExpr::FindResult &R, FunctionDecl *Fn)
Gets the type of a function for template-argument-deducton purposes when it's considered as part of a...
static bool hasPackExpansionBeforeEnd(ArrayRef< TemplateArgument > Args)
Determine whether the given set of template arguments has a pack expansion that is not the last templ...
static bool isSimpleTemplateIdType(QualType T)
Determine whether the given type T is a simple-template-id type.
PartialOrderingKind
The kind of PartialOrdering we're performing template argument deduction for (C++11 [temp....
MoreSpecializedTrailingPackTieBreakerResult
static TemplateParameter makeTemplateParameter(Decl *D)
Helper function to build a TemplateParameter when we don't know its type statically.
static TemplateDeductionResult CheckOriginalCallArgDeduction(Sema &S, TemplateDeductionInfo &Info, Sema::OriginalCallArg OriginalArg, QualType DeducedA)
Check whether the deduced argument type for a call to a function template matches the actual argument...
static bool AdjustFunctionParmAndArgTypesForDeduction(Sema &S, TemplateParameterList *TemplateParams, unsigned FirstInnerIndex, QualType &ParamType, QualType &ArgType, Expr::Classification ArgClassification, Expr *Arg, unsigned &TDF, TemplateSpecCandidateSet *FailedTSC=nullptr)
Perform the adjustments to the parameter and argument types described in C++ [temp....
static TemplateDeductionResult DeduceTemplateArgumentsFromCallArgument(Sema &S, TemplateParameterList *TemplateParams, unsigned FirstInnerIndex, QualType ParamType, QualType ArgType, Expr::Classification ArgClassification, Expr *Arg, TemplateDeductionInfo &Info, SmallVectorImpl< DeducedTemplateArgument > &Deduced, SmallVectorImpl< Sema::OriginalCallArg > &OriginalCallArgs, bool DecomposedParam, unsigned ArgIdx, unsigned TDF, TemplateSpecCandidateSet *FailedTSC=nullptr)
Perform template argument deduction per [temp.deduct.call] for a single parameter / argument pair.
static bool isAtLeastAsSpecializedAs(Sema &S, SourceLocation Loc, FunctionTemplateDecl *FT1, FunctionTemplateDecl *FT2, TemplatePartialOrderingContext TPOC, ArrayRef< QualType > Args1, ArrayRef< QualType > Args2, bool Args1Offset)
Determine whether the function template FT1 is at least as specialized as FT2.
static QualType GetImplicitObjectParameterType(ASTContext &Context, const CXXMethodDecl *Method, QualType RawType, bool IsOtherRvr)
static TemplateDeductionResult DeduceFromInitializerList(Sema &S, TemplateParameterList *TemplateParams, QualType AdjustedParamType, InitListExpr *ILE, TemplateDeductionInfo &Info, SmallVectorImpl< DeducedTemplateArgument > &Deduced, SmallVectorImpl< Sema::OriginalCallArg > &OriginalCallArgs, unsigned ArgIdx, unsigned TDF)
Attempt template argument deduction from an initializer list deemed to be an argument in a function c...
static unsigned getFirstInnerIndex(FunctionTemplateDecl *FTD)
Get the index of the first template parameter that was originally from the innermost template-paramet...
static TemplateDeductionResult CheckDeducedTemplateArgumentList(Sema &S, TemplateDecl *Template, ArrayRef< TemplateArgumentLoc > Ps, ArrayRef< TemplateArgument > As, const MultiLevelTemplateArgumentList &MLTAL, TemplateDeductionInfo &Info)
PackFold
What directions packs are allowed to match non-packs.
static TemplateDeductionResult ConvertDeducedTemplateArguments(Sema &S, NamedDecl *Template, TemplateParameterList *TemplateParams, bool IsDeduced, SmallVectorImpl< DeducedTemplateArgument > &Deduced, TemplateDeductionInfo &Info, Sema::CheckTemplateArgumentInfo &CTAI, LocalInstantiationScope *CurrentInstantiationScope, unsigned NumAlreadyConverted, bool *IsIncomplete)
static QualType ResolveOverloadForDeduction(Sema &S, TemplateParameterList *TemplateParams, Expr *Arg, QualType ParamType, bool ParamWasReference, TemplateSpecCandidateSet *FailedTSC=nullptr)
Apply the deduction rules for overload sets.
static bool IsPossiblyOpaquelyQualifiedType(QualType T)
Determines whether the given type is an opaque type that might be more qualified when instantiated.
static TemplateDeductionResult CheckDeducedArgumentConstraints(Sema &S, NamedDecl *Template, ArrayRef< TemplateArgument > SugaredDeducedArgs, ArrayRef< TemplateArgument > CanonicalDeducedArgs, TemplateDeductionInfo &Info)
static const TemplateSpecializationType * getLastTemplateSpecType(QualType QT)
Deduce the template arguments by comparing the template parameter type (which is a template-id) with ...
static TemplateDeductionResult instantiateExplicitSpecifierDeferred(Sema &S, FunctionDecl *Specialization, const MultiLevelTemplateArgumentList &SubstArgs, TemplateDeductionInfo &Info, FunctionTemplateDecl *FunctionTemplate, ArrayRef< TemplateArgument > DeducedArgs)
static bool CheckDeducedPlaceholderConstraints(Sema &S, const AutoType &Type, AutoTypeLoc TypeLoc, QualType Deduced)
static TemplateDeductionResult DeduceNonTypeTemplateArgument(Sema &S, TemplateParameterList *TemplateParams, const NonTypeOrVarTemplateParmDecl NTTP, const DeducedTemplateArgument &NewDeduced, QualType ValueType, TemplateDeductionInfo &Info, bool PartialOrdering, SmallVectorImpl< DeducedTemplateArgument > &Deduced, bool *HasDeducedAnyParam)
Deduce the value of the given non-type template parameter as the given deduced template argument.
static bool IsPossiblyOpaquelyQualifiedTypeInternal(const Type *T)
static bool hasDeducibleTemplateParameters(Sema &S, FunctionTemplateDecl *FunctionTemplate, QualType T)
static bool isForwardingReference(QualType Param, unsigned FirstInnerIndex)
Determine whether a type denotes a forwarding reference.
static TemplateDeductionResult FinishTemplateArgumentDeduction(Sema &S, NamedDecl *Entity, TemplateParameterList *EntityTPL, TemplateDecl *Template, bool PartialOrdering, ArrayRef< TemplateArgumentLoc > Ps, ArrayRef< TemplateArgument > As, SmallVectorImpl< DeducedTemplateArgument > &Deduced, TemplateDeductionInfo &Info, bool CopyDeducedArgs)
Complete template argument deduction.
static bool isParameterPack(Expr *PackExpression)
Defines the clang::SourceLocation class and associated facilities.
Defines various enumerations that describe declaration and type specifiers.
static QualType getPointeeType(const MemRegion *R)
Defines the clang::TemplateNameKind enum.
Defines the clang::TypeLoc interface and its subclasses.
Allows QualTypes to be sorted and hence used in maps and sets.
static const TemplateArgument & getArgument(const TemplateArgument &A)
C Language Family Type Representation.
SourceLocation getLocation() const
const TemplateTemplateParmDecl * getTemplate() const
bool isExpandedParameterPack() const
const NonTypeTemplateParmDecl * getNTTP() const
unsigned getIndex() const
NonTypeOrVarTemplateParmDecl(const NamedDecl *Template)
TemplateParameter asTemplateParam() const
unsigned getDepth() const
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
const ConstantArrayType * getAsConstantArrayType(QualType T) const
QualType getRValueReferenceType(QualType T) const
Return the uniqued reference to the type for an rvalue reference to the specified type.
unsigned getIntWidth(QualType T) const
QualType getAutoType(DeducedKind DK, QualType DeducedAsType, AutoTypeKeyword Keyword, TemplateName TypeConstraintConcept=TemplateName(), ArrayRef< TemplateArgument > TypeConstraintArgs={}) const
C++11 deduced auto type.
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 IncompleteArrayType * getAsIncompleteArrayType(QualType T) const
QualType getLValueReferenceType(QualType T, bool SpelledAsLValue=true) const
Return the uniqued reference to the type for an lvalue reference to the specified type.
const LangOptions & getLangOpts() const
QualType getDecayedType(QualType T) const
Return the uniqued reference to the decayed version of the given type.
TypeSourceInfo * getTrivialTypeSourceInfo(QualType T, SourceLocation Loc=SourceLocation()) const
Allocate a TypeSourceInfo where all locations have been initialized to a given location,...
QualType removeAddrSpaceQualType(QualType T) const
Remove any existing address space on the type and returns the type with qualifiers intact (or that's ...
QualType getQualifiedType(SplitQualType split) const
Un-split a SplitQualType.
LangAS getDefaultOpenCLPointeeAddrSpace()
Returns default address space based on OpenCL version and enabled features.
const ArrayType * getAsArrayType(QualType T) const
Type Query functions.
uint64_t getTypeSize(QualType T) const
Return the size of the specified (complete) type T, in bits.
CanQualType UnsignedIntTy
QualType getMemberPointerType(QualType T, NestedNameSpecifier Qualifier, const CXXRecordDecl *Cls) const
Return the uniqued reference to the type for a member pointer to the specified type in the specified ...
static bool hasSameType(QualType T1, QualType T2)
Determine whether the given types T1 and T2 are equivalent.
QualType getAdjustedParameterType(QualType T) const
Perform adjustment on the parameter type of a function.
QualType getSizeType() const
Return the unique type for "size_t" (C99 7.17), defined in <stddef.h>.
bool hasSameTemplateName(const TemplateName &X, const TemplateName &Y, bool IgnoreDeduced=false) const
Determine whether the given template names refer to the same template.
QualType getAddrSpaceQualType(QualType T, LangAS AddressSpace) const
Return the uniqued reference to the type for an address space qualified type with the specified type ...
CanQualType getCanonicalTagType(const TagDecl *TD) const
bool isSameTemplateArgument(const TemplateArgument &Arg1, const TemplateArgument &Arg2) const
Determine whether the given template arguments Arg1 and Arg2 are equivalent.
static bool hasSameUnqualifiedType(QualType T1, QualType T2)
Determine whether the given types are equivalent after cvr-qualifiers have been removed.
QualType getUnqualifiedArrayType(QualType T, Qualifiers &Quals) const
Return this type as a completely-unqualified array type, capturing the qualifiers in Quals.
TemplateName getDeducedTemplateName(TemplateName Underlying, DefaultArguments DefaultArgs) const
Represents a TemplateName which had some of its default arguments deduced.
QualType getDeducedTemplateSpecializationType(DeducedKind DK, QualType DeducedAsType, ElaboratedTypeKeyword Keyword, TemplateName Template) const
C++17 deduced class template specialization type.
const DependentSizedArrayType * getAsDependentSizedArrayType(QualType T) const
TypeLoc getValueLoc() const
A fixed int type of a specified bitwidth.
Represents a C++ conversion function within a class.
QualType getConversionType() const
Returns the type that this conversion function is converting to.
Represents a static or instance method of a struct/union/class.
bool isExplicitObjectMemberFunction() const
[C++2b][dcl.fct]/p7 An explicit object member function is a non-static member function with an explic...
RefQualifierKind getRefQualifier() const
Retrieve the ref-qualifier associated with this method.
The null pointer literal (C++11 [lex.nullptr])
Represents a C++ struct/union/class.
CXXMethodDecl * getLambdaCallOperator() const
Retrieve the lambda call operator of the closure type if this is a closure type.
Declaration of a class template.
CanQualType getCanonicalInjectedSpecializationType(const ASTContext &Ctx) const
Retrieve the canonical template specialization type of the injected-class-name for this class templat...
CanQualType getCanonicalInjectedSpecializationType(const ASTContext &Ctx) const
Retrieves the canonical injected specialization type for this partial specialization.
ClassTemplateDecl * getSpecializedTemplate() const
Retrieve the template that this specialization specializes.
Complex values, per C99 6.2.5p11.
Declaration of a C++20 concept.
const TypeClass * getTypePtr() const
Represents a concrete matrix type with constant number of rows and columns.
unsigned getNumColumns() const
Returns the number of columns in the matrix.
unsigned getNumRows() const
Returns the number of rows in the matrix.
The result of a constraint satisfaction check, containing the necessary information to diagnose an un...
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.
Decl - This represents one declaration (or definition), e.g.
TemplateDecl * getDescribedTemplate() const
If this is a declaration that describes some template, this method returns that template declaration.
ASTContext & getASTContext() const LLVM_READONLY
bool isInvalidDecl() const
SourceLocation getLocation() const
DeclContext * getDeclContext()
virtual Decl * getCanonicalDecl()
Retrieves the "canonical" declaration of the given declaration.
Captures a template argument whose value has been deduced via c++ template argument deduction.
void setDeducedFromArrayBound(bool Deduced)
Specify whether the given non-type template argument was deduced from an array bound.
bool wasDeducedFromArrayBound() const
For a non-type template argument, determine whether the template argument was deduced from an array b...
SourceLocation getElaboratedKeywordLoc() const
NestedNameSpecifierLoc getQualifierLoc() const
Represents an extended address space qualifier where the input address space value is dependent.
Expr * getAddrSpaceExpr() const
QualType getPointeeType() const
Represents an extended vector type where either the type or size is dependent.
Expr * getSizeExpr() const
QualType getElementType() const
Represents a matrix type where the type and the number of rows and columns is dependent on a template...
Expr * getColumnExpr() const
Expr * getRowExpr() const
TemplateTemplateParmDecl * getParameter() const
Represents a vector type where either the type or size is dependent.
virtual bool TraverseTemplateName(TemplateName Template, bool TraverseQualifier=true)
virtual bool TraverseType(QualType T, bool TraverseQualifier=true)
RAII object that enters a new expression evaluation context.
Store information needed for an explicit specifier.
bool isInvalid() const
Determine if the explicit specifier is invalid.
const Expr * getExpr() const
The return type of classify().
This represents one expression.
bool isValueDependent() const
Determines whether the value of this expression depends on.
Expr * IgnoreImplicitAsWritten() LLVM_READONLY
Skip past any implicit AST nodes which might surround this expression until reaching a fixed point.
std::optional< llvm::APSInt > getIntegerConstantExpr(const ASTContext &Ctx, bool AllowRelaxedEval=false) const
isIntegerConstantExpr - Return the value if this expression is a valid integer constant expression.
ExtVectorType - Extended vector type.
Stores a list of template parameters and the associated requires-clause (if any) for a TemplateDecl a...
Declaration of a friend template.
Represents a function declaration or definition.
const ParmVarDecl * getParamDecl(unsigned i) const
bool isFunctionTemplateSpecialization() const
Determine whether this function is a function template specialization.
FunctionTemplateDecl * getDescribedFunctionTemplate() const
Retrieves the function template that is described by this function declaration.
bool hasCXXExplicitFunctionObjectParameter() const
QualType getReturnType() const
ArrayRef< ParmVarDecl * > parameters() const
FunctionDecl * getTemplateInstantiationPattern(bool ForDefinition=true) const
Retrieve the function declaration from which this function could be instantiated, if it is an instant...
void getAssociatedConstraints(SmallVectorImpl< AssociatedConstraint > &ACs) const
Get the associated-constraints of this function declaration.
const TemplateArgumentList * getTemplateSpecializationArgs() const
Retrieve the template arguments used to produce this function template specialization from the primar...
bool isImmediateEscalating() const
OverloadedOperatorKind getOverloadedOperator() const
getOverloadedOperator - Which C++ overloaded operator this function represents, if any.
size_t param_size() const
Represents a prototype with parameter type info, e.g.
param_type_iterator param_type_begin() const
const ExtParameterInfo * getExtParameterInfosOrNull() const
Return a pointer to the beginning of the array of extra parameter information, if present,...
unsigned getNumParams() const
bool hasTrailingReturn() const
Whether this function prototype has a trailing return type.
Qualifiers getMethodQuals() const
QualType getParamType(unsigned i) const
bool hasExceptionSpec() const
Return whether this function has any kind of exception spec.
bool isVariadic() const
Whether this function prototype is variadic.
ExtProtoInfo getExtProtoInfo() const
Expr * getNoexceptExpr() const
Return the expression inside noexcept(expression), or a null pointer if there is none (because the ex...
param_type_iterator param_type_end() const
ArrayRef< QualType > getParamTypes() const
RefQualifierKind getRefQualifier() const
Retrieve the ref-qualifier associated with this function type.
Declaration of a template function.
FunctionDecl * getTemplatedDecl() const
Get the underlying function declaration of the template.
FunctionType - C99 6.7.5.3 - Function Declarators.
QualType getReturnType() const
Describes an C or C++ initializer list.
unsigned getNumInits() const
unsigned getNumInitsWithEmbedExpanded() const
getNumInits but if the list has an EmbedExpr inside includes full length of embedded data.
ArrayRef< Expr * > inits() const
An lvalue reference type, per C++11 [dcl.ref].
A stack-allocated class that identifies which local variable declaration instantiations are present i...
NamedDecl * getPartiallySubstitutedPack(const TemplateArgument **ExplicitArgs=nullptr, unsigned *NumExplicitArgs=nullptr) const
Retrieve the partially-substitued template parameter pack.
void ResetPartiallySubstitutedPack()
Reset the partially-substituted pack when it is no longer of interest.
Represents a matrix type, as defined in the Matrix Types clang extensions.
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
QualType getPointeeType() const
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)
bool isAnyArgInstantiationDependent() const
void replaceInnermostTemplateArguments(Decl *AssociatedDecl, ArgList Args, bool Final=false)
Replaces the current 'innermost' level with the provided argument list.
This represents a decl that may have a name.
NamedDecl * getUnderlyingDecl()
Looks through UsingDecls and ObjCCompatibleAliasDecls for the underlying named decl.
DeclarationName getDeclName() const
Get the actual, stored name of the declaration, which may be a special name.
Class that aids in the construction of nested-name-specifiers along with source-location information ...
Represents a C++ nested name specifier, such as "\::std::vector<int>::".
const Type * getAsType() const
@ Type
A type, stored as a Type*.
NonTypeTemplateParmDecl - Declares a non-type template parameter, e.g., "Size" in.
Represents a pointer to an Objective C object.
A reference to an overloaded function set, either an UnresolvedLookupExpr or an UnresolvedMemberExpr.
bool hasExplicitTemplateArgs() const
Determines whether this expression had explicit template arguments.
static FindResult find(Expr *E)
Finds the overloaded expression in the given expression E of OverloadTy.
SourceLocation getNameLoc() const
Gets the location of the name.
decls_iterator decls_begin() const
void copyTemplateArgumentsInto(TemplateArgumentListInfo &List) const
Copies the template arguments into the given structure.
decls_iterator decls_end() const
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...
PointerType - C99 6.7.5.1 - Pointer Declarators.
QualType getPointeeType() const
A (possibly-)qualified type.
bool hasQualifiers() const
Determine whether this type has any qualifiers.
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.
LangAS getAddressSpace() const
Return the address space of this type.
Qualifiers getQualifiers() const
Retrieve the set of qualifiers applied to this 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 getAtomicUnqualifiedType() const
Remove all qualifiers including _Atomic.
unsigned getCVRQualifiers() const
Retrieve the set of CVR (const-volatile-restrict) qualifiers applied to this type.
Represents a template name as written in source code.
The collection of all-type qualifiers we support.
unsigned getCVRQualifiers() const
void removeCVRQualifiers(unsigned mask)
@ OCL_Strong
Assigning into this object requires the old value to be released and the new value to be retained.
@ OCL_ExplicitNone
This object can be modified without requiring retains or releases.
@ OCL_None
There is no lifetime qualification on this type.
void removeObjCLifetime()
bool isStrictSupersetOf(Qualifiers Other) const
Determine whether this set of qualifiers is a strict superset of another set of qualifiers,...
bool hasNonTrivialObjCLifetime() const
True if the lifetime is neither None or ExplicitNone.
bool compatiblyIncludes(Qualifiers other, const ASTContext &Ctx) const
Determines if these qualifiers compatibly include another set.
bool hasAddressSpace() const
void removeAddressSpace()
bool hasObjCGCAttr() const
void setCVRQualifiers(unsigned mask)
bool hasObjCLifetime() const
ObjCLifetime getObjCLifetime() const
Qualifiers withoutObjCLifetime() const
LangAS getAddressSpace() const
void setObjCLifetime(ObjCLifetime type)
An rvalue reference type, per C++11 [dcl.ref].
ArrayRef< TemplateArgument > getInjectedTemplateArgs(const ASTContext &Context) const
Retrieve the "injected" template arguments that correspond to the template parameters of this templat...
Base for LValueReferenceType and RValueReferenceType.
QualType getPointeeType() const
Scope - A scope is a transient data structure that is used while parsing the program.
SemaDiagnosticBuilder Diag(SourceLocation Loc, unsigned DiagID)
Emit a diagnostic.
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...
A helper class for building up ExtParameterInfos.
const FunctionProtoType::ExtParameterInfo * getPointerOrNull(unsigned numParams)
Return a pointer (suitable for setting in an ExtProtoInfo) to the ExtParameterInfo array we've built ...
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.
Sema - This implements semantic analysis and AST building for C.
bool TryFunctionConversion(QualType FromType, QualType ToType, QualType &ResultTy) const
Same as IsFunctionConversion, but if this would return true, it sets ResultTy to ToType.
QualType SubstAutoType(QualType TypeWithAuto, QualType Replacement)
Substitute Replacement for auto in TypeWithAuto.
LocalInstantiationScope * CurrentInstantiationScope
The current instantiation scope used to store local variables.
TemplateDeductionResult DeduceTemplateArgumentsFromType(TemplateDecl *TD, QualType FromType, sema::TemplateDeductionInfo &Info)
Deduce the template arguments of the given template from FromType.
QualType ReplaceAutoType(QualType TypeWithAuto, QualType Replacement)
Completely replace the auto in TypeWithAuto by Replacement.
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.
ClassTemplatePartialSpecializationDecl * getMoreSpecializedPartialSpecialization(ClassTemplatePartialSpecializationDecl *PS1, ClassTemplatePartialSpecializationDecl *PS2, SourceLocation Loc)
Returns the more specialized class template partial specialization according to the rules of partial ...
const ExpressionEvaluationContextRecord & currentEvaluationContext() const
FunctionDecl * getMoreConstrainedFunction(FunctionDecl *FD1, FunctionDecl *FD2)
Returns the more constrained function according to the rules of partial ordering by constraints (C++ ...
FunctionDecl * InstantiateFunctionDeclaration(FunctionTemplateDecl *FTD, const TemplateArgumentList *Args, SourceLocation Loc, CodeSynthesisContext::SynthesisKind CSC=CodeSynthesisContext::ExplicitTemplateArgumentSubstitution)
Instantiate (or find existing instantiation of) a function template with a given set of template argu...
QualType BuildStdInitializerList(QualType Element, SourceLocation Loc)
Looks for the std::initializer_list template and instantiates it with Element, or emits an error if i...
TemplateDeductionResult FinishTemplateArgumentDeduction(FunctionTemplateDecl *FunctionTemplate, SmallVectorImpl< DeducedTemplateArgument > &Deduced, unsigned NumExplicitlySpecified, FunctionDecl *&Specialization, sema::TemplateDeductionInfo &Info, SmallVectorImpl< OriginalCallArg > const *OriginalCallArgs, bool PartialOverloading, bool PartialOrdering, bool ForOverloadSetAddressResolution, llvm::function_ref< bool(bool)> CheckNonDependent=[](bool) { return false;})
Finish template argument deduction for a function template, checking the deduced template arguments f...
@ CTAK_DeducedFromArrayBound
The template argument was deduced from an array bound via template argument deduction.
@ 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.
bool DeduceReturnType(FunctionDecl *FD, SourceLocation Loc, bool Diagnose=true)
bool IsQualificationConversion(QualType FromType, QualType ToType, bool CStyle, bool &ObjCLifetimeConversion)
IsQualificationConversion - Determines whether the conversion from an rvalue of type FromType to ToTy...
void MarkUsedTemplateParametersForSubsumptionParameterMapping(const Expr *E, unsigned Depth, llvm::SmallBitVector &Used)
Mark which template parameters are named in a given expression.
QualType BuildFunctionType(QualType T, MutableArrayRef< QualType > ParamTypes, SourceLocation Loc, DeclarationName Entity, const FunctionProtoType::ExtProtoInfo &EPI)
Build a function type.
ExprResult BuildExpressionFromNonTypeTemplateArgument(const TemplateArgument &Arg, SourceLocation Loc)
ASTContext & getASTContext() const
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.
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.
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.
bool isTemplateTemplateParameterAtLeastAsSpecializedAs(TemplateParameterList *PParam, TemplateDecl *PArg, TemplateDecl *AArg, const DefaultArguments &DefaultArgs, SourceLocation ArgLoc, bool PartialOrdering, bool *StrictPackMatch)
PrintingPolicy getPrintingPolicy() const
Retrieve a suitable printing policy for diagnostics.
bool SubstTemplateArguments(ArrayRef< TemplateArgumentLoc > Args, const MultiLevelTemplateArgumentList &TemplateArgs, TemplateArgumentListInfo &Outputs)
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...
@ TPL_TemplateParamsEquivalent
We are determining whether the template-parameters are equivalent according to C++ [temp....
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 isSameOrCompatibleFunctionType(QualType Param, QualType Arg)
Compare types for equality with respect to possibly compatible function types (noreturn adjustment,...
const LangOptions & getLangOpts() const
UnsignedOrNone getNumArgumentsInExpansion(QualType T, const MultiLevelTemplateArgumentList &TemplateArgs)
Determine the number of arguments in the given pack expansion type.
TemplateArgumentLoc getTrivialTemplateArgumentLoc(const TemplateArgument &Arg, QualType NTTPType, SourceLocation Loc)
Allocate a TemplateArgumentLoc where all locations have been initialized to the given location.
ExplicitSpecifier instantiateExplicitSpecifier(const MultiLevelTemplateArgumentList &TemplateArgs, ExplicitSpecifier ES)
TemplateDeductionResult SubstituteExplicitTemplateArguments(FunctionTemplateDecl *FunctionTemplate, TemplateArgumentListInfo &ExplicitTemplateArgs, SmallVectorImpl< DeducedTemplateArgument > &Deduced, SmallVectorImpl< QualType > &ParamTypes, QualType *FunctionType, sema::TemplateDeductionInfo &Info)
Substitute the explicitly-provided template arguments into the given function template according to C...
bool SubstParmTypes(SourceLocation Loc, ArrayRef< ParmVarDecl * > Params, const FunctionProtoType::ExtParameterInfo *ExtParamInfos, const MultiLevelTemplateArgumentList &TemplateArgs, SmallVectorImpl< QualType > &ParamTypes, SmallVectorImpl< ParmVarDecl * > *OutParams, ExtParameterInfoBuilder &ParamInfos)
Substitute the given template arguments into the given set of parameters, producing the set of parame...
FunctionDecl * resolveAddressOfSingleOverloadCandidate(Expr *E, DeclAccessPair &FoundResult)
Given an expression that refers to an overloaded function, try to resolve that function to a single f...
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...
SuppressedDiagnosticsMap SuppressedDiagnostics
void DiagnoseUnsatisfiedConstraint(const ConstraintSatisfaction &Satisfaction, SourceLocation Loc={}, bool First=true)
Emit diagnostics explaining why a constraint expression was deemed unsatisfied.
bool IsDerivedFrom(SourceLocation Loc, CXXRecordDecl *Derived, CXXRecordDecl *Base, CXXBasePaths &Paths)
Determine whether the type Derived is a C++ class that is derived from the type Base.
bool isUnevaluatedContext() const
Determines whether we are currently in a context that is not evaluated as per C++ [expr] p5.
FunctionDecl * ResolveSingleFunctionTemplateSpecialization(OverloadExpr *ovl, bool Complain=false, DeclAccessPair *Found=nullptr, TemplateSpecCandidateSet *FailedTSC=nullptr, bool ForTypeDeduction=false)
Given an expression that refers to an overloaded function, try to resolve that overloaded function ex...
QualType getDecltypeForExpr(Expr *E)
getDecltypeForExpr - Given an expr, will return the decltype for that expression, according to the ru...
ExprResult CheckPlaceholderExpr(Expr *E)
Check for operands with placeholder types and complain if found.
Decl * SubstDecl(Decl *D, DeclContext *Owner, const MultiLevelTemplateArgumentList &TemplateArgs)
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...
TypeSourceInfo * SubstAutoTypeSourceInfoDependent(TypeSourceInfo *TypeWithAuto)
TypeSourceInfo * ReplaceAutoTypeSourceInfo(TypeSourceInfo *TypeWithAuto, QualType Replacement)
TemplateParameterList * SubstTemplateParams(TemplateParameterList *Params, DeclContext *Owner, const MultiLevelTemplateArgumentList &TemplateArgs, bool EvaluateConstraints=true)
bool isSFINAEContext() const
bool isCompleteType(SourceLocation Loc, QualType T, CompleteTypeKind Kind=CompleteTypeKind::Default)
bool isStdInitializerList(QualType Ty, QualType *Element)
Tests whether Ty is an instance of std::initializer_list and, if it is and Element is not NULL,...
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 MarkUsedTemplateParameters(const Expr *E, bool OnlyDeduced, unsigned Depth, llvm::SmallBitVector &Used)
Mark which template parameters are used in a given expression.
@ PotentiallyEvaluated
The current expression is potentially evaluated at run time, which means that code may be generated t...
@ Unevaluated
The current expression and its subexpressions occur within an unevaluated operand (C++11 [expr]p7),...
QualType getLambdaConversionFunctionResultType(const FunctionProtoType *CallOpType, CallingConv CC)
Get the return type to use for a lambda's conversion function(s) to function pointer type,...
QualType getCompletedType(Expr *E)
Get the type of expression E, triggering instantiation to complete the type if necessary – that is,...
TypeSourceInfo * SubstAutoTypeSourceInfo(TypeSourceInfo *TypeWithAuto, QualType Replacement)
Substitute Replacement for auto in TypeWithAuto.
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...
void DiagnoseAutoDeductionFailure(const VarDecl *VDecl, const Expr *Init)
TemplateArgumentLoc getIdentityTemplateArgumentLoc(NamedDecl *Param, SourceLocation Location)
Get a template argument mapping the given template parameter to itself, e.g.
bool CheckIfFunctionSpecializationIsImmediate(FunctionDecl *FD, SourceLocation Loc)
QualType SubstAutoTypeDependent(QualType TypeWithAuto)
TemplateDeductionResult DeduceTemplateArguments(ClassTemplatePartialSpecializationDecl *Partial, ArrayRef< TemplateArgument > TemplateArgs, sema::TemplateDeductionInfo &Info)
bool CheckFunctionTemplateConstraints(SourceLocation PointOfInstantiation, FunctionDecl *Decl, ArrayRef< TemplateArgument > TemplateArgs, ConstraintSatisfaction &Satisfaction)
void runWithSufficientStackSpace(SourceLocation Loc, llvm::function_ref< void()> Fn)
Run some code with "sufficient" stack space.
bool isMoreSpecializedThanPrimary(ClassTemplatePartialSpecializationDecl *T, sema::TemplateDeductionInfo &Info)
bool IsFunctionConversion(QualType FromType, QualType ToType) const
Determine whether the conversion from FromType to ToType is a valid conversion of ExtInfo/ExtProtoInf...
std::string getTemplateArgumentBindingsText(const TemplateParameterList *Params, const TemplateArgumentList &Args)
Produces a formatted string that describes the binding of template parameters to template arguments.
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...
void adjustMemberFunctionCC(QualType &T, bool HasThisPointer, bool IsCtorOrDtor, SourceLocation Loc)
Adjust the calling convention of a method to be the ABI default if it wasn't specified explicitly.
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.
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)
QualType adjustCCAndNoReturn(QualType ArgFunctionType, QualType FunctionType, bool AdjustExceptionSpec=false)
Adjust the type ArgFunctionType to match the calling convention, noreturn, and optionally the excepti...
void HandleFunctionTypeMismatch(PartialDiagnostic &PDiag, QualType FromType, QualType ToType)
HandleFunctionTypeMismatch - Gives diagnostic information for differeing function types.
FunctionTemplateDecl * getMoreSpecializedTemplate(FunctionTemplateDecl *FT1, FunctionTemplateDecl *FT2, SourceLocation Loc, TemplatePartialOrderingContext TPOC, unsigned NumCallArguments1, QualType RawObj1Ty={}, QualType RawObj2Ty={}, bool Reversed=false, bool PartialOverloading=false)
Returns the more specialized function template according to the rules of function template partial or...
void MarkDeducedTemplateParameters(const FunctionTemplateDecl *FunctionTemplate, llvm::SmallBitVector &Deduced)
NamedDecl * getPack() const
Retrieve the parameter pack.
Encodes a location in the source.
A trivial tuple used to represent a source range.
SourceLocation getEnd() const
void Profile(llvm::FoldingSetNodeID &ID, const ASTContext &Context, bool Canonical, bool ProfileLambdaExpr=false) const
Produce a unique representation of the given statement.
A convenient class for passing around template argument information.
void addArgument(const TemplateArgumentLoc &Loc)
A 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.
const TemplateArgument & get(unsigned Idx) const
Retrieve the template argument at a given index.
ArrayRef< TemplateArgument > asArray() const
Produce this as an array ref.
Location wrapper for a TemplateArgument.
const TemplateArgument & getArgument() const
Represents a template argument.
QualType getParamTypeForDecl() const
Expr * getAsExpr() const
Retrieve the template argument as an expression.
pack_iterator pack_end() const
Iterator referencing one past the last argument of a template argument pack.
const TemplateArgument * pack_iterator
Iterator that traverses the elements of a template argument pack.
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.
void Profile(llvm::FoldingSetNodeID &ID, const ASTContext &Context) const
Used to insert TemplateArguments into FoldingSets.
QualType getAsType() const
Retrieve the type for a type template argument.
llvm::APSInt getAsIntegral() const
Retrieve the template argument as an integral value.
QualType getNullPtrType() const
Retrieve the type for null non-type template argument.
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.
static TemplateArgument getEmptyPack()
unsigned pack_size() const
The number of template arguments in the given template argument pack.
bool structurallyEquals(const TemplateArgument &Other) const
Determines whether two template arguments are superficially the same.
ValueDecl * getAsDecl() const
Retrieve the declaration for a declaration non-type template argument.
ArrayRef< TemplateArgument > pack_elements() const
Iterator range referencing all of the elements of a template argument pack.
@ 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,...
The base class of all kinds of template declarations (e.g., class, function, etc.).
void getAssociatedConstraints(llvm::SmallVectorImpl< AssociatedConstraint > &AC) const
Get the total constraint-expression associated with this template, including constraint-expressions d...
NamedDecl * getTemplatedDecl() const
Get the underlying, templated declaration.
SourceRange getSourceRange() const override LLVM_READONLY
Source range that this declaration covers.
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.
DependentTemplateName * getAsDependentTemplateName() const
Retrieve the underlying dependent template name structure, if any.
QualifiedTemplateName * getAsQualifiedTemplateName() const
Retrieve the underlying qualified template name structure, if any.
Stores a list of template parameters for a TemplateDecl and its derived classes.
NamedDecl * getParam(unsigned Idx)
ArrayRef< TemplateArgument > getInjectedTemplateArgs(const ASTContext &Context)
Get the template argument list of the template parameter list.
unsigned getDepth() const
Get the depth of this template parameter list in the set of template parameter lists.
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...
ArrayRef< NamedDecl * > asArray()
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...
TemplateSpecCandidate & addCandidate()
Add a new candidate with NumConversions conversion sequence slots to the overload set.
TemplateTemplateParmDecl - Declares a template template parameter, e.g., "T" in.
TemplateNameKind templateParameterKind() const
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.
bool isExpandedParameterPack() const
Whether this parameter is a template template parameter pack that has a known list of different templ...
Declaration of a template type parameter.
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)
const Type * getTypeForDecl() const
TyLocType push(QualType T)
Pushes space for a new TypeLoc of the given type.
void reserve(size_t Requested)
Ensures that this buffer has at least as much capacity as described.
Base wrapper for a particular "section" of type source info.
QualType getType() const
Get the type for which this source info wrapper provides information.
SourceRange getLocalSourceRange() const
Get the local source range.
unsigned getFullDataSize() const
Returns the size of the type source info data block.
void copy(TypeLoc other)
Copies the other type loc into this one.
A container of type source information.
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.
const TemplateSpecializationType * getAsNonAliasTemplateSpecializationType() const
Look through sugar for an instance of TemplateSpecializationType which is not a type alias,...
bool isPlaceholderType() const
Test for a type which does not represent an actual type-system type but is instead used as a placehol...
bool isRValueReferenceType() const
CXXRecordDecl * getAsCXXRecordDecl() const
Retrieves the CXXRecordDecl that this type refers to, either because the type is a RecordType or beca...
bool isFunctionPointerType() const
bool isPointerType() const
const T * castAs() const
Member-template castAs<specific type>.
bool isReferenceType() const
QualType getPointeeType() const
If this is a pointer, ObjC object pointer, or block pointer, this returns the respective pointee.
AutoType * getContainedAutoType() const
Get the AutoType whose type will be deduced for a variable with an initializer of this type.
bool isLValueReferenceType() const
bool isDependentType() const
Whether this type is a dependent type, meaning that its definition somehow depends on a template para...
QualType getCanonicalTypeInternal() const
bool isMemberPointerType() const
bool isObjCLifetimeType() const
Returns true if objects of this type have lifetime semantics under ARC.
bool isUndeducedType() const
Determine whether this type is an undeduced type, meaning that it somehow involves a C++11 'auto' typ...
bool isFunctionType() const
bool isMemberFunctionPointerType() const
const T * getAsCanonical() const
If this type is canonically the specified type, return its canonical type cast to that specified type...
bool isAnyPointerType() const
TypeClass getTypeClass() const
const T * getAs() const
Member-template getAs<specific type>'.
bool isRecordType() const
The iterator over UnresolvedSets.
Represent the declaration of a variable (in which case it is an lvalue) a function (in which case it ...
Represents a variable declaration or definition.
bool isInitCapture() const
Whether this variable is the implicit variable for a lambda init-capture.
Declaration of a variable template.
VarTemplateDecl * getCanonicalDecl() override
Retrieves the canonical declaration of this template.
const TemplateArgumentList & getTemplateArgs() const
Retrieve the template arguments of the variable template specialization.
VarTemplateDecl * getSpecializedTemplate() const
Retrieve the template that this specialization specializes.
Represents a GCC generic vector type.
Provides information about an attempted template argument deduction, whose success or failure was des...
void setExplicitArgs(TemplateArgumentList *NewDeducedSugared, TemplateArgumentList *NewDeducedCanonical)
Provide an initial template argument list that contains the explicitly-specified arguments.
TemplateArgumentList * takeCanonical()
TemplateArgumentList * takeSugared()
Take ownership of the deduced template argument lists.
SourceLocation getLocation() const
Returns the location at which template argument is occurring.
void clearSFINAEDiagnostic()
Discard any SFINAE diagnostics.
TemplateArgument SecondArg
The second template argument to which the template argument deduction failure refers.
void setStrictPackMatch()
TemplateParameter Param
The template parameter to which a template argument deduction failure refers.
diag_iterator diag_end() const
Returns an iterator at the end of the sequence of suppressed diagnostics.
void reset(TemplateArgumentList *NewDeducedSugared, TemplateArgumentList *NewDeducedCanonical)
Provide a new template argument list that contains the results of template argument deduction.
unsigned getDeducedDepth() const
The depth of template parameters for which deduction is being performed.
diag_iterator diag_begin() const
Returns an iterator at the beginning of the sequence of suppressed diagnostics.
TemplateArgument FirstArg
The first template argument to which the template argument deduction failure refers.
ConstraintSatisfaction AssociatedConstraintsSatisfaction
The constraint satisfaction details resulting from the associated constraints satisfaction tests.
unsigned CallArgIndex
The index of the function argument that caused a deduction failure.
bool hasStrictPackMatch() const
__inline void unsigned int _2
Top level wrappers for InstallAPI frontend operations.
@ OO_None
Not an overloaded operator.
@ Match
This is not an overload because the signature exactly matches an existing declaration.
bool isa(CodeGen::Address addr)
bool isTargetAddressSpace(LangAS AS)
@ Specialization
We are substituting template parameters for template arguments in order to form a template specializa...
@ Both
Look for allocation functions in both the global scope and in the scope of the allocated class.
@ RQ_None
No ref-qualifier was provided.
@ RQ_RValue
An rvalue ref-qualifier was provided (&&).
@ TemplateName
The identifier is a template name. FIXME: Add an annotation for that.
NamedDecl * getAsNamedDecl(TemplateParameter P)
bool isPackProducingBuiltinTemplateName(TemplateName N)
UnsignedOrNone getExpandedPackSize(const NamedDecl *Param)
Check whether the template parameter is a pack expansion, and if so, determine the number of paramete...
unsigned toTargetAddressSpace(LangAS AS)
bool isLambdaCallOperator(const CXXMethodDecl *MD)
@ Result
The result type of a method or function.
std::pair< unsigned, unsigned > getDepthAndIndex(const NamedDecl *ND)
Retrieve the depth and index of a template parameter.
OptionalUnsigned< unsigned > UnsignedOrNone
const FunctionProtoType * T
@ Template
We are parsing a template declaration.
ActionResult< CXXBaseSpecifier * > BaseResult
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...
@ FunctionTemplate
The name was classified as a function template name.
@ Concept
The name was classified as a concept name.
bool isLambdaConversionOperator(CXXConversionDecl *C)
@ Deduced
The normal deduced case.
@ Undeduced
Not deduced yet. This is for example an 'auto' which was just parsed.
@ DeducedAsPack
Same as above, but additionally this represents a case where the deduced entity itself is a pack.
@ DeducedAsDependent
This is a special case where the initializer is dependent, so we can't deduce a type yet.
@ TNK_Var_template
The name refers to a variable template whose specialization produces a variable.
@ TNK_Concept_template
The name refers to a concept.
llvm::PointerUnion< TemplateTypeParmDecl *, NonTypeTemplateParmDecl *, TemplateTemplateParmDecl * > TemplateParameter
Stores a template parameter of any kind.
TPOC
The context in which partial ordering of function templates occurs.
@ TPOC_Conversion
Partial ordering of function templates for a call to a conversion function.
@ TPOC_Other
Partial ordering of function templates in other contexts, e.g., taking the address of a function temp...
@ TPOC_Call
Partial ordering of function templates for a function call.
bool declaresSameEntity(const Decl *D1, const Decl *D2)
Determine whether two declarations declare the same entity.
DynamicRecursiveASTVisitorBase< false > DynamicRecursiveASTVisitor
TemplateDeductionResult
Describes the result of template argument deduction.
@ MiscellaneousDeductionFailure
Deduction failed; that's all we know.
@ NonDependentConversionFailure
Checking non-dependent argument conversions failed.
@ ConstraintsNotSatisfied
The deduced arguments did not satisfy the constraints associated with the template.
@ Underqualified
Template argument deduction failed due to inconsistent cv-qualifiers on a template parameter type tha...
@ InstantiationDepth
Template argument deduction exceeded the maximum template instantiation depth (which has already been...
@ InvalidExplicitArguments
The explicitly-specified template arguments were not valid template arguments for the given template.
@ CUDATargetMismatch
CUDA Target attributes do not match.
@ TooFewArguments
When performing template argument deduction for a function template, there were too few call argument...
@ Incomplete
Template argument deduction did not deduce a value for every template parameter.
@ Invalid
The declaration was invalid; do nothing.
@ Success
Template argument deduction was successful.
@ SubstitutionFailure
Substitution of the deduced template argument values resulted in an error.
@ IncompletePack
Template argument deduction did not deduce a value for every expansion of an expanded template parame...
@ DeducedMismatch
After substituting deduced template arguments, a dependent parameter type did not match the correspon...
@ Inconsistent
Template argument deduction produced inconsistent deduced values for the given template parameter.
@ TooManyArguments
When performing template argument deduction for a function template, there were too many call argumen...
@ AlreadyDiagnosed
Some error which was already diagnosed.
@ DeducedMismatchNested
After substituting deduced template arguments, an element of a dependent parameter type did not match...
@ NonDeducedMismatch
A non-depnedent component of the parameter did not match the corresponding component of the argument.
CallingConv
CallingConv - Specifies the calling convention that a function uses.
U cast(CodeGen::Address addr)
@ None
The alignment was not explicit in code.
@ Noexcept
Condition in a noexcept(bool) specifier.
@ PackIndex
Index of a pack indexing expression or specifier.
@ None
No keyword precedes the qualified type name.
ActionResult< Expr * > ExprResult
@ EST_Uninstantiated
not instantiated yet
@ EST_None
no exception specification
TemplateDeductionFlags
Various flags that control template argument deduction.
@ TDF_None
No template argument deduction flags, which indicates the strictest results for template argument ded...
@ TDF_DerivedClass
Within template argument deduction from a function call, we are matching in a case where we can perfo...
@ TDF_TopLevelParameterTypeList
Whether we are performing template argument deduction for parameters and arguments in a top-level tem...
@ TDF_IgnoreQualifiers
Within template argument deduction from a function call, we are matching in a case where we ignore cv...
@ TDF_ParamWithReferenceType
Within template argument deduction from a function call, we are matching with a parameter type for wh...
@ TDF_SkipNonDependent
Allow non-dependent types to differ, e.g., when performing template argument deduction from a functio...
@ TDF_AllowCompatibleFunctionType
Within template argument deduction from overload resolution per C++ [over.over] allow matching functi...
@ TDF_ArgWithReferenceType
Within template argument deduction for a conversion function, we are matching with an argument type f...
static constexpr bool value
static constexpr bool value
static constexpr bool value
A pack that we're currently deducing.
DeducedPack(unsigned Index)
SmallVector< DeducedTemplateArgument, 4 > New
DeducedTemplateArgument Saved
DeducedTemplateArgument DeferredDeduction
ExceptionSpecificationType Type
The kind of exception specification this is.
Extra information about a function prototype.
const ExtParameterInfo * ExtParameterInfos
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
@ ExplicitTemplateArgumentSubstitution
We are substituting explicit template arguments provided for a function template.
@ DeducedTemplateArgumentSubstitution
We are substituting template argument determined as part of template argument deduction for either a ...
bool isPotentiallyEvaluated() const
A stack object to be created when performing template instantiation.
bool isInvalid() const
Determines whether we have exceeded the maximum recursive template instantiations.
brief A function argument from which we performed template argument
QualType OriginalParamType
Location information for a TemplateArgument.
TemplateSpecCandidate - This is a generalization of OverloadCandidate which keeps track of template a...
void set(DeclAccessPair Found, Decl *Spec, DeductionFailureInfo Info)