36#include "llvm/Support/TimeProfiler.h"
52template<
typename DeclT>
55 if (!OldDecl->getQualifierLoc())
58 assert((NewDecl->getFriendObjectKind() ||
59 !OldDecl->getLexicalDeclContext()->isDependentContext()) &&
60 "non-friend with qualified name defined in dependent context");
63 const_cast<DeclContext *
>(NewDecl->getFriendObjectKind()
64 ? NewDecl->getLexicalDeclContext()
65 : OldDecl->getLexicalDeclContext()));
74 NewDecl->setQualifierInfo(NewQualifierLoc);
80 return ::SubstQualifier(SemaRef, OldDecl, NewDecl, TemplateArgs);
85 return ::SubstQualifier(SemaRef, OldDecl, NewDecl, TemplateArgs);
89#include "clang/Sema/AttrTemplateInstantiate.inc"
93 const AlignedAttr *Aligned,
Decl *
New,
bool IsPackExpansion) {
94 if (Aligned->isAlignmentExpr()) {
99 if (!Result.isInvalid())
103 S.
SubstType(Aligned->getAlignmentType(), TemplateArgs,
106 Aligned->getLocation(),
107 Result->getTypeLoc().getSourceRange()))
115 const AlignedAttr *Aligned,
Decl *
New) {
116 if (!Aligned->isPackExpansion()) {
122 if (Aligned->isAlignmentExpr())
128 assert(!Unexpanded.empty() &&
"Pack expansion without parameter packs?");
131 bool Expand =
true, RetainExpansion =
false;
136 Unexpanded, TemplateArgs,
138 Expand, RetainExpansion, NumExpansions))
145 for (
unsigned I = 0; I != *NumExpansions; ++I) {
154 const AssumeAlignedAttr *Aligned,
Decl *
New) {
159 Expr *E, *OE =
nullptr;
161 if (Result.isInvalid())
163 E = Result.getAs<
Expr>();
165 if (Aligned->getOffset()) {
166 Result = S.
SubstExpr(Aligned->getOffset(), TemplateArgs);
167 if (Result.isInvalid())
169 OE = Result.getAs<
Expr>();
177 const AlignValueAttr *Aligned,
Decl *
New) {
182 if (!Result.isInvalid())
188 const AllocAlignAttr *Align,
Decl *
New) {
191 llvm::APInt(64, Align->getParamIndex().getSourceIndex()),
204 bool HasDelayedArgs =
Attr->delayedArgs_size();
213 false, TemplateArgs, Args))
216 StringRef Str =
Attr->getAnnotation();
217 if (HasDelayedArgs) {
218 if (Args.size() < 1) {
228 ActualArgs.insert(ActualArgs.begin(), Args.begin() + 1, Args.end());
229 std::swap(Args, ActualArgs);
237template <
typename Attr>
241 Expr *tempInstPriority =
nullptr;
246 if (Result.isInvalid())
248 tempInstPriority = Result.get();
249 if (std::optional<llvm::APSInt> CE =
253 if (!CE->isIntN(32)) {
255 <<
toString(*CE, 10,
false) << 32 << 1;
260 New->addAttr(Attr::Create(
C, tempInstPriority, *A));
272 if (Result.isInvalid())
276 if (!
Cond->isTypeDependent()) {
286 S.
Diag(A->
getLocation(), diag::err_attr_cond_never_constant_expr) << A;
287 for (
const auto &P : Diags)
288 S.
Diag(P.first, P.second);
298 S, TemplateArgs, EIA, EIA->getCond(), Tmpl,
New);
302 Cond, EIA->getMessage()));
309 S, TemplateArgs, DIA, DIA->getCond(), Tmpl,
New);
314 DIA->getDefaultSeverity(), DIA->getWarningGroup(),
315 DIA->getArgDependent(),
New));
328 if (Result.isInvalid())
330 Expr *MaxThreads = Result.getAs<
Expr>();
332 Expr *MinBlocks =
nullptr;
333 if (
Attr.getMinBlocks()) {
335 if (Result.isInvalid())
340 Expr *MaxBlocks =
nullptr;
341 if (
Attr.getMaxBlocks()) {
343 if (Result.isInvalid())
345 MaxBlocks = Result.getAs<
Expr>();
364 if (
auto *FTD = dyn_cast<FunctionTemplateDecl>(
New))
365 New = FTD->getTemplatedDecl();
367 auto *ThisContext = dyn_cast_or_null<CXXRecordDecl>(FD->getDeclContext());
372 if (
auto *DRE = dyn_cast<DeclRefExpr>(E->IgnoreParenImpCasts()))
373 if (
auto *PVD = dyn_cast<ParmVarDecl>(DRE->getDecl())) {
376 if (FD->getNumParams() > PVD->getFunctionScopeIndex())
377 Local.InstantiatedLocal(
378 PVD, FD->getParamDecl(PVD->getFunctionScopeIndex()));
382 FD->isCXXInstanceMember());
398 if (
auto *E =
Attr.getSimdlen())
401 if (
Attr.uniforms_size() > 0) {
402 for(
auto *E :
Attr.uniforms()) {
406 Uniforms.push_back(Inst.
get());
410 auto AI =
Attr.alignments_begin();
411 for (
auto *E :
Attr.aligneds()) {
415 Aligneds.push_back(Inst.
get());
419 Alignments.push_back(Inst.
get());
423 auto SI =
Attr.steps_begin();
424 for (
auto *E :
Attr.linears()) {
428 Linears.push_back(Inst.
get());
432 Steps.push_back(Inst.
get());
435 LinModifiers.append(
Attr.modifiers_begin(),
Attr.modifiers_end());
438 Uniforms, Aligneds, Alignments, Linears, LinModifiers, Steps,
447 if (
auto *FTD = dyn_cast<FunctionTemplateDecl>(
New))
448 New = FTD->getTemplatedDecl();
450 auto *ThisContext = dyn_cast_or_null<CXXRecordDecl>(FD->getDeclContext());
452 auto &&SubstExpr = [FD, ThisContext, &S, &TemplateArgs](
Expr *E) {
453 if (
auto *DRE = dyn_cast<DeclRefExpr>(E->IgnoreParenImpCasts()))
454 if (
auto *PVD = dyn_cast<ParmVarDecl>(DRE->getDecl())) {
457 if (FD->getNumParams() > PVD->getFunctionScopeIndex())
458 Local.InstantiatedLocal(
459 PVD, FD->getParamDecl(PVD->getFunctionScopeIndex()));
463 FD->isCXXInstanceMember());
469 auto &&Subst = [&SubstExpr, &S](
Expr *E) {
479 if (
Expr *E =
Attr.getVariantFuncRef()) {
484 VariantFuncRef = Subst(E);
490 TI = *
Attr.getTraitInfos();
493 auto SubstScoreOrConditionExpr = [&S, Subst](
Expr *&E,
bool) {
508 Expr *E = VariantFuncRef.
get();
512 std::optional<std::pair<FunctionDecl *, Expr *>> DeclVarData =
520 E = DeclVarData->second;
521 FD = DeclVarData->first;
523 if (
auto *VariantDRE = dyn_cast<DeclRefExpr>(E->IgnoreParenImpCasts())) {
524 if (
auto *VariantFD = dyn_cast<FunctionDecl>(VariantDRE->getDecl())) {
525 if (
auto *VariantFTD = VariantFD->getDescribedFunctionTemplate()) {
526 if (!VariantFTD->isThisDeclarationADefinition())
537 SubstFD->getType(), FD->getType(),
543 New->getLocation(), SubstFD,
true,
545 SubstFD->setInstantiationIsPending(!SubstFD->isDefined());
549 SubstFD->getLocation(),
560 for (
Expr *E :
Attr.adjustArgsNothing()) {
564 NothingExprs.push_back(ER.
get());
566 for (
Expr *E :
Attr.adjustArgsNeedDevicePtr()) {
570 NeedDevicePtrExprs.push_back(ER.
get());
572 for (
Expr *E :
Attr.adjustArgsNeedDeviceAddr()) {
576 NeedDeviceAddrExprs.push_back(ER.
get());
580 AppendArgs.emplace_back(II.IsTarget, II.IsTargetSync);
584 FD, E, TI, NothingExprs, NeedDevicePtrExprs, NeedDeviceAddrExprs,
590 const AMDGPUFlatWorkGroupSizeAttr &
Attr,
Decl *
New) {
596 if (Result.isInvalid())
598 Expr *MinExpr = Result.getAs<
Expr>();
601 if (Result.isInvalid())
603 Expr *MaxExpr = Result.getAs<
Expr>();
616 if (Result.isInvalid())
621 if (Result.isInvalid())
626 if (Result.isInvalid())
631 New->addAttr(::new (Context) ReqdWorkGroupSizeAttr(Context,
Attr,
X, Y, Z));
650 if (!
Cond->isTypeDependent())
663 if (Result.isInvalid())
665 Expr *MinExpr = Result.getAs<
Expr>();
667 Expr *MaxExpr =
nullptr;
668 if (
auto Max =
Attr.getMax()) {
670 if (Result.isInvalid())
680 const AMDGPUMaxNumWorkGroupsAttr &
Attr,
Decl *
New) {
684 Expr *XExpr =
nullptr;
685 Expr *YExpr =
nullptr;
686 Expr *ZExpr =
nullptr;
688 if (
Attr.getMaxNumWorkGroupsX()) {
694 if (
Attr.getMaxNumWorkGroupsY()) {
700 if (
Attr.getMaxNumWorkGroupsZ()) {
725 if (
const auto *PNA = dyn_cast<PreferredNameAttr>(A)) {
728 if (!
T->isDependentType() && !RD->isDependentContext() &&
731 for (
const auto *ExistingPNA : D->
specific_attrs<PreferredNameAttr>())
733 PNA->getTypedefType()))
738 if (
const auto *BA = dyn_cast<BuiltinAttr>(A)) {
740 switch (BA->getID()) {
741 case Builtin::BIforward:
751 case Builtin::BImove:
752 case Builtin::BImove_if_noexcept:
782 for (
const auto *TmplAttr : Tmpl->
attrs()) {
789 *
this, dyn_cast_or_null<CXXRecordDecl>(ND->getDeclContext()),
793 TmplAttr,
Context, *
this, TemplateArgs);
795 New->addAttr(NewAttr);
803 case clang::attr::CFConsumed:
805 case clang::attr::OSConsumed:
807 case clang::attr::NSConsumed:
810 llvm_unreachable(
"Wrong argument supplied");
817 const OpenACCRoutineDeclAttr *OldAttr,
const Decl *Old,
Decl *
New);
823 for (
const auto *TmplAttr : Tmpl->
attrs()) {
828 const AlignedAttr *Aligned = dyn_cast<AlignedAttr>(TmplAttr);
829 if (Aligned && Aligned->isAlignmentDependent()) {
834 if (
const auto *AssumeAligned = dyn_cast<AssumeAlignedAttr>(TmplAttr)) {
839 if (
const auto *AlignValue = dyn_cast<AlignValueAttr>(TmplAttr)) {
844 if (
const auto *AllocAlign = dyn_cast<AllocAlignAttr>(TmplAttr)) {
849 if (
const auto *Annotate = dyn_cast<AnnotateAttr>(TmplAttr)) {
854 if (
auto *
Constructor = dyn_cast<ConstructorAttr>(TmplAttr)) {
860 if (
auto *
Destructor = dyn_cast<DestructorAttr>(TmplAttr)) {
866 if (
const auto *EnableIf = dyn_cast<EnableIfAttr>(TmplAttr)) {
872 if (
const auto *DiagnoseIf = dyn_cast<DiagnoseIfAttr>(TmplAttr)) {
878 if (
const auto *CUDALaunchBounds =
879 dyn_cast<CUDALaunchBoundsAttr>(TmplAttr)) {
881 *CUDALaunchBounds,
New);
885 if (
const auto *Mode = dyn_cast<ModeAttr>(TmplAttr)) {
890 if (
const auto *OMPAttr = dyn_cast<OMPDeclareSimdDeclAttr>(TmplAttr)) {
895 if (
const auto *OMPAttr = dyn_cast<OMPDeclareVariantAttr>(TmplAttr)) {
900 if (
const auto *ReqdWorkGroupSize =
901 dyn_cast<ReqdWorkGroupSizeAttr>(TmplAttr)) {
903 *ReqdWorkGroupSize,
New);
906 if (
const auto *AMDGPUFlatWorkGroupSize =
907 dyn_cast<AMDGPUFlatWorkGroupSizeAttr>(TmplAttr)) {
909 *
this, TemplateArgs, *AMDGPUFlatWorkGroupSize,
New);
912 if (
const auto *AMDGPUFlatWorkGroupSize =
913 dyn_cast<AMDGPUWavesPerEUAttr>(TmplAttr)) {
915 *AMDGPUFlatWorkGroupSize,
New);
918 if (
const auto *AMDGPUMaxNumWorkGroups =
919 dyn_cast<AMDGPUMaxNumWorkGroupsAttr>(TmplAttr)) {
921 *
this, TemplateArgs, *AMDGPUMaxNumWorkGroups,
New);
924 if (
const auto *ParamAttr = dyn_cast<HLSLParamModifierAttr>(TmplAttr)) {
930 if (
const auto *RoutineAttr = dyn_cast<OpenACCRoutineDeclAttr>(TmplAttr)) {
932 RoutineAttr, Tmpl,
New);
937 if (TmplAttr->getKind() == attr::DLLExport ||
938 TmplAttr->getKind() == attr::DLLImport) {
939 if (
New->hasAttr<DLLExportAttr>() ||
New->hasAttr<DLLImportAttr>()) {
944 if (
const auto *ABIAttr = dyn_cast<ParameterABIAttr>(TmplAttr)) {
957 if (
auto *A = dyn_cast<PointerAttr>(TmplAttr)) {
958 if (!
New->hasAttr<PointerAttr>())
963 if (
auto *A = dyn_cast<OwnerAttr>(TmplAttr)) {
964 if (!
New->hasAttr<OwnerAttr>())
969 if (
auto *A = dyn_cast<DeviceKernelAttr>(TmplAttr)) {
974 if (
auto *A = dyn_cast<CUDAGridConstantAttr>(TmplAttr)) {
975 if (!
New->hasAttr<CUDAGridConstantAttr>())
980 assert(!TmplAttr->isPackExpansion());
981 if (TmplAttr->isLateParsed() && LateAttrs) {
991 auto *ThisContext = dyn_cast_or_null<CXXRecordDecl>(ND->getDeclContext());
993 ND->isCXXInstanceMember());
996 *
this, TemplateArgs);
998 New->addAttr(NewAttr);
1004 for (
const auto *
Attr : Pattern->
attrs()) {
1005 if (
auto *A = dyn_cast<StrictFPAttr>(
Attr)) {
1006 if (!Inst->
hasAttr<StrictFPAttr>())
1014 assert(
Context.getTargetInfo().getCXXABI().isMicrosoft() &&
1019 DLLExportAttr *
Attr = Ctor->
getAttr<DLLExportAttr>();
1022 for (
unsigned I = 0; I != NumParams; ++I) {
1033template<
typename DeclT>
1035 DeclT *Result = D->getPreviousDecl();
1041 D->getLexicalDeclContext() != Result->getLexicalDeclContext())
1049 llvm_unreachable(
"Translation units cannot be instantiated");
1053 llvm_unreachable(
"HLSL buffer declarations cannot be instantiated");
1056Decl *TemplateDeclInstantiator::VisitHLSLRootSignatureDecl(
1058 llvm_unreachable(
"HLSL root signature declarations cannot be instantiated");
1063 llvm_unreachable(
"pragma comment cannot be instantiated");
1066Decl *TemplateDeclInstantiator::VisitPragmaDetectMismatchDecl(
1068 llvm_unreachable(
"pragma comment cannot be instantiated");
1073 llvm_unreachable(
"extern \"C\" context cannot be instantiated");
1077 llvm_unreachable(
"GUID declaration cannot be instantiated");
1080Decl *TemplateDeclInstantiator::VisitUnnamedGlobalConstantDecl(
1082 llvm_unreachable(
"UnnamedGlobalConstantDecl cannot be instantiated");
1085Decl *TemplateDeclInstantiator::VisitTemplateParamObjectDecl(
1087 llvm_unreachable(
"template parameter objects cannot be instantiated");
1091TemplateDeclInstantiator::VisitLabelDecl(
LabelDecl *D) {
1094 SemaRef.InstantiateAttrs(TemplateArgs, D, Inst, LateAttrs, StartingScope);
1095 Owner->addDecl(Inst);
1100TemplateDeclInstantiator::VisitNamespaceDecl(
NamespaceDecl *D) {
1101 llvm_unreachable(
"Namespaces cannot be instantiated");
1105class OpenACCDeclClauseInstantiator final
1108 const MultiLevelTemplateArgumentList &MLTAL;
1109 ArrayRef<OpenACCClause *> ExistingClauses;
1110 SemaOpenACC::OpenACCParsedClause &ParsedClause;
1111 OpenACCClause *NewClause =
nullptr;
1114 OpenACCDeclClauseInstantiator(Sema &S,
1115 const MultiLevelTemplateArgumentList &MLTAL,
1116 ArrayRef<OpenACCClause *> ExistingClauses,
1117 SemaOpenACC::OpenACCParsedClause &ParsedClause)
1118 : SemaRef(S), MLTAL(MLTAL), ExistingClauses(ExistingClauses),
1119 ParsedClause(ParsedClause) {}
1121 OpenACCClause *CreatedClause() {
return NewClause; }
1122#define VISIT_CLAUSE(CLAUSE_NAME) \
1123 void Visit##CLAUSE_NAME##Clause(const OpenACC##CLAUSE_NAME##Clause &Clause);
1124#include "clang/Basic/OpenACCClauses.def"
1128 for (
Expr *CurVar : VarList) {
1129 ExprResult Res = SemaRef.SubstExpr(CurVar, MLTAL);
1138 InstantiatedVarList.push_back(Res.
get());
1140 return InstantiatedVarList;
1144#define CLAUSE_NOT_ON_DECLS(CLAUSE_NAME) \
1145 void OpenACCDeclClauseInstantiator::Visit##CLAUSE_NAME##Clause( \
1146 const OpenACC##CLAUSE_NAME##Clause &) { \
1147 llvm_unreachable("Clause type invalid on declaration construct, or " \
1148 "instantiation not implemented"); \
1177#undef CLAUSE_NOT_ON_DECLS
1179void OpenACCDeclClauseInstantiator::VisitGangClause(
1183 assert(
C.getNumExprs() <= 1 &&
1184 "Only 1 expression allowed on gang clause in routine");
1186 if (
C.getNumExprs() > 0) {
1188 "Only dim allowed on routine");
1190 SemaRef.SubstExpr(
const_cast<Expr *
>(
C.getExpr(0).second), MLTAL);
1192 ER = SemaRef.OpenACC().CheckGangExpr(ExistingClauses,
1193 ParsedClause.getDirectiveKind(),
1194 C.getExpr(0).first, ER.
get());
1197 TransformedIntExprs.push_back(ER.
get());
1202 NewClause = SemaRef.OpenACC().CheckGangClause(
1203 ParsedClause.getDirectiveKind(), ExistingClauses,
1204 ParsedClause.getBeginLoc(), ParsedClause.getLParenLoc(),
1205 TransformedGangKinds, TransformedIntExprs, ParsedClause.getEndLoc());
1210 ParsedClause.getBeginLoc(),
1211 ParsedClause.getEndLoc());
1213void OpenACCDeclClauseInstantiator::VisitNoHostClause(
1216 ParsedClause.getBeginLoc(),
1217 ParsedClause.getEndLoc());
1220void OpenACCDeclClauseInstantiator::VisitDeviceTypeClause(
1224 SemaRef.getASTContext(),
C.getClauseKind(), ParsedClause.getBeginLoc(),
1225 ParsedClause.getLParenLoc(),
C.getArchitectures(),
1226 ParsedClause.getEndLoc());
1229void OpenACCDeclClauseInstantiator::VisitWorkerClause(
1231 assert(!
C.hasIntExpr() &&
"Int Expr not allowed on routine 'worker' clause");
1233 ParsedClause.getBeginLoc(), {},
1234 nullptr, ParsedClause.getEndLoc());
1237void OpenACCDeclClauseInstantiator::VisitVectorClause(
1239 assert(!
C.hasIntExpr() &&
"Int Expr not allowed on routine 'vector' clause");
1241 ParsedClause.getBeginLoc(), {},
1242 nullptr, ParsedClause.getEndLoc());
1245void OpenACCDeclClauseInstantiator::VisitCopyClause(
1247 ParsedClause.setVarListDetails(VisitVarList(
C.getVarList()),
1248 C.getModifierList());
1249 if (SemaRef.OpenACC().CheckDeclareClause(ParsedClause,
C.getModifierList()))
1252 SemaRef.getASTContext(), ParsedClause.getClauseKind(),
1253 ParsedClause.getBeginLoc(), ParsedClause.getLParenLoc(),
1254 ParsedClause.getModifierList(), ParsedClause.getVarList(),
1255 ParsedClause.getEndLoc());
1258void OpenACCDeclClauseInstantiator::VisitLinkClause(
1260 ParsedClause.setVarListDetails(
1261 SemaRef.OpenACC().CheckLinkClauseVarList(VisitVarList(
C.getVarList())),
1264 if (SemaRef.OpenACC().CheckDeclareClause(ParsedClause,
1269 SemaRef.getASTContext(), ParsedClause.getBeginLoc(),
1270 ParsedClause.getLParenLoc(), ParsedClause.getVarList(),
1271 ParsedClause.getEndLoc());
1274void OpenACCDeclClauseInstantiator::VisitDeviceResidentClause(
1276 ParsedClause.setVarListDetails(VisitVarList(
C.getVarList()),
1278 if (SemaRef.OpenACC().CheckDeclareClause(ParsedClause,
1282 SemaRef.getASTContext(), ParsedClause.getBeginLoc(),
1283 ParsedClause.getLParenLoc(), ParsedClause.getVarList(),
1284 ParsedClause.getEndLoc());
1287void OpenACCDeclClauseInstantiator::VisitCopyInClause(
1289 ParsedClause.setVarListDetails(VisitVarList(
C.getVarList()),
1290 C.getModifierList());
1292 if (SemaRef.OpenACC().CheckDeclareClause(ParsedClause,
C.getModifierList()))
1295 SemaRef.getASTContext(), ParsedClause.getClauseKind(),
1296 ParsedClause.getBeginLoc(), ParsedClause.getLParenLoc(),
1297 ParsedClause.getModifierList(), ParsedClause.getVarList(),
1298 ParsedClause.getEndLoc());
1300void OpenACCDeclClauseInstantiator::VisitCopyOutClause(
1302 ParsedClause.setVarListDetails(VisitVarList(
C.getVarList()),
1303 C.getModifierList());
1305 if (SemaRef.OpenACC().CheckDeclareClause(ParsedClause,
C.getModifierList()))
1308 SemaRef.getASTContext(), ParsedClause.getClauseKind(),
1309 ParsedClause.getBeginLoc(), ParsedClause.getLParenLoc(),
1310 ParsedClause.getModifierList(), ParsedClause.getVarList(),
1311 ParsedClause.getEndLoc());
1313void OpenACCDeclClauseInstantiator::VisitCreateClause(
1315 ParsedClause.setVarListDetails(VisitVarList(
C.getVarList()),
1316 C.getModifierList());
1318 if (SemaRef.OpenACC().CheckDeclareClause(ParsedClause,
C.getModifierList()))
1321 SemaRef.getASTContext(), ParsedClause.getClauseKind(),
1322 ParsedClause.getBeginLoc(), ParsedClause.getLParenLoc(),
1323 ParsedClause.getModifierList(), ParsedClause.getVarList(),
1324 ParsedClause.getEndLoc());
1326void OpenACCDeclClauseInstantiator::VisitPresentClause(
1328 ParsedClause.setVarListDetails(VisitVarList(
C.getVarList()),
1330 if (SemaRef.OpenACC().CheckDeclareClause(ParsedClause,
1334 SemaRef.getASTContext(), ParsedClause.getBeginLoc(),
1335 ParsedClause.getLParenLoc(), ParsedClause.getVarList(),
1336 ParsedClause.getEndLoc());
1338void OpenACCDeclClauseInstantiator::VisitDevicePtrClause(
1342 llvm::erase_if(VarList, [&](
Expr *E) {
1347 if (SemaRef.OpenACC().CheckDeclareClause(ParsedClause,
1351 SemaRef.getASTContext(), ParsedClause.getBeginLoc(),
1352 ParsedClause.getLParenLoc(), ParsedClause.getVarList(),
1353 ParsedClause.getEndLoc());
1356void OpenACCDeclClauseInstantiator::VisitBindClause(
1359 if (
C.isStringArgument())
1361 SemaRef.getASTContext(), ParsedClause.getBeginLoc(),
1362 ParsedClause.getLParenLoc(),
C.getStringArgument(),
1363 ParsedClause.getEndLoc());
1366 SemaRef.getASTContext(), ParsedClause.getBeginLoc(),
1367 ParsedClause.getLParenLoc(),
C.getIdentifierArgument(),
1368 ParsedClause.getEndLoc());
1376 for (
const auto *Clause : ClauseList) {
1378 Clause->getBeginLoc());
1379 ParsedClause.setEndLoc(Clause->getEndLoc());
1380 if (
const auto *WithParms = dyn_cast<OpenACCClauseWithParams>(Clause))
1381 ParsedClause.setLParenLoc(WithParms->getLParenLoc());
1383 OpenACCDeclClauseInstantiator Instantiator{S, MLTAL, TransformedClauses,
1385 Instantiator.Visit(Clause);
1386 if (Instantiator.CreatedClause())
1387 TransformedClauses.push_back(Instantiator.CreatedClause());
1389 return TransformedClauses;
1396 const OpenACCRoutineDeclAttr *OldAttr,
const Decl *OldDecl,
Decl *NewDecl) {
1397 OpenACCRoutineDeclAttr *A =
1398 OpenACCRoutineDeclAttr::Create(S.
getASTContext(), OldAttr->getLocation());
1400 if (!OldAttr->Clauses.empty()) {
1402 InstantiateOpenACCClauseList(
1404 A->Clauses.assign(TransformedClauses.begin(), TransformedClauses.end());
1415 llvm::SmallVector<OpenACCClause *> TransformedClauses =
1419 if (SemaRef.OpenACC().ActOnStartDeclDirective(
1423 DeclGroupRef Res = SemaRef.OpenACC().ActOnEndDeclDirective(
1435 llvm::SmallVector<OpenACCClause *> TransformedClauses =
1443 FuncRef = SemaRef.OpenACC().ActOnRoutineName(FuncRef.
get());
1448 if (SemaRef.OpenACC().ActOnStartDeclDirective(
1452 DeclGroupRef Res = SemaRef.OpenACC().ActOnEndRoutineDeclDirective(
1464 NamespaceAliasDecl *Inst
1472 Owner->addDecl(Inst);
1482 DI = SemaRef.SubstType(DI, TemplateArgs,
1486 DI = SemaRef.Context.getTrivialTypeSourceInfo(SemaRef.Context.IntTy);
1497 if (SemaRef.getPreprocessor().NeedsStdLibCxxWorkaroundBefore(2014'04'22)) {
1498 const DecltypeType *DT = DI->
getType()->
getAs<DecltypeType>();
1501 DT->isReferenceType() &&
1502 RD->getEnclosingNamespaceContext() == SemaRef.getStdNamespace() &&
1503 RD->getIdentifier() && RD->getIdentifier()->isStr(
"common_type") &&
1505 SemaRef.getSourceManager().isInSystemHeader(D->
getBeginLoc()))
1507 DI = SemaRef.Context.getTrivialTypeSourceInfo(
1525 TagDecl *oldTag = oldTagType->getOriginalDecl();
1542 SemaRef.isIncompatibleTypedef(InstPrevTypedef,
Typedef);
1544 Typedef->setPreviousDecl(InstPrevTypedef);
1547 SemaRef.InstantiateAttrs(TemplateArgs, D,
Typedef);
1550 SemaRef.inferGslPointerAttribute(
Typedef);
1588 : (TemplateArgs.begin() + TemplateArgs.getNumLevels() - 1 -
1597 if (!
Found.empty()) {
1598 PrevAliasTemplate = dyn_cast<TypeAliasTemplateDecl>(
Found.front());
1611 if (PrevAliasTemplate)
1616 if (!PrevAliasTemplate)
1643 SmallVector<BindingDecl*, 16> NewBindings;
1644 BindingDecl *OldBindingPack =
nullptr;
1645 for (
auto *OldBD : D->
bindings()) {
1646 Expr *BindingExpr = OldBD->getBinding();
1647 if (isa_and_present<FunctionParmPackExpr>(BindingExpr)) {
1649 assert(!OldBindingPack &&
"no more than one pack is allowed");
1650 OldBindingPack = OldBD;
1654 ArrayRef<BindingDecl*> NewBindingArray = NewBindings;
1656 auto *NewDD = cast_if_present<DecompositionDecl>(
1659 if (!NewDD || NewDD->isInvalidDecl()) {
1660 for (
auto *NewBD : NewBindings)
1661 NewBD->setInvalidDecl();
1662 }
else if (OldBindingPack) {
1665 BindingDecl *NewBindingPack = *llvm::find_if(
1667 assert(NewBindingPack !=
nullptr &&
"new bindings should also have a pack");
1668 llvm::ArrayRef<BindingDecl *> OldDecls =
1670 llvm::ArrayRef<BindingDecl *> NewDecls =
1672 assert(OldDecls.size() == NewDecls.size());
1673 for (
unsigned I = 0; I < OldDecls.size(); I++)
1674 SemaRef.CurrentInstantiationScope->InstantiatedLocal(OldDecls[I],
1686 bool InstantiatingVarTemplate,
1697 SemaRef.
Diag(D->
getLocation(), diag::err_variable_instantiates_to_function)
1730 StartingScope, InstantiatingVarTemplate);
1733 if (
auto *F = dyn_cast<FunctionDecl>(DC))
1734 RT = F->getReturnType();
1739 llvm_unreachable(
"Unknown context type");
1760 SemaRef.CheckStaticLocalForDllExport(Var);
1763 SemaRef.CheckThreadLocalForLargeAlignment(Var);
1765 if (SemaRef.getLangOpts().OpenACC)
1766 SemaRef.OpenACC().ActOnVariableDeclarator(Var);
1775 Owner->addHiddenDecl(AD);
1779Decl *TemplateDeclInstantiator::VisitFieldDecl(
FieldDecl *D) {
1784 DI = SemaRef.SubstType(DI, TemplateArgs,
1796 SemaRef.Diag(D->
getLocation(), diag::err_field_instantiates_to_function)
1807 else if (BitWidth) {
1813 = SemaRef.SubstExpr(BitWidth, TemplateArgs);
1818 BitWidth = InstantiatedBitWidth.
getAs<Expr>();
1836 SemaRef.InstantiateAttrs(TemplateArgs, D, Field, LateAttrs, StartingScope);
1838 if (
Field->hasAttrs())
1839 SemaRef.CheckAlignasUnderalignment(Field);
1842 Field->setInvalidDecl();
1844 if (!
Field->getDeclName() ||
Field->isPlaceholderVar(SemaRef.getLangOpts())) {
1846 SemaRef.Context.setInstantiatedFromUnnamedFieldDecl(Field, D);
1848 if (CXXRecordDecl *Parent= dyn_cast<CXXRecordDecl>(
Field->getDeclContext())) {
1849 if (Parent->isAnonymousStructOrUnion() &&
1850 Parent->getRedeclContext()->isFunctionOrMethod())
1851 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Field);
1856 Owner->addDecl(Field);
1866 SemaRef.Diag(D->
getLocation(), diag::err_property_is_variably_modified)
1870 DI = SemaRef.SubstType(DI, TemplateArgs,
1882 SemaRef.Diag(D->
getLocation(), diag::err_field_instantiates_to_function)
1894 SemaRef.InstantiateAttrs(TemplateArgs, D,
Property, LateAttrs,
1907 NamedDecl **NamedChain =
1911 for (
auto *PI : D->
chain()) {
1917 NamedChain[i++] =
Next;
1923 {NamedChain, D->getChainingSize()});
1925 for (
const auto *Attr : D->
attrs())
1926 IndirectField->
addAttr(Attr->clone(SemaRef.Context));
1930 Owner->addDecl(IndirectField);
1931 return IndirectField;
1938 TypeSourceInfo *InstTy;
1947 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
1948 SemaRef.collectUnexpandedParameterPacks(Ty->getTypeLoc(), Unexpanded);
1949 assert(!Unexpanded.empty() &&
"Pack expansion without packs");
1951 bool ShouldExpand =
true;
1952 bool RetainExpansion =
false;
1953 UnsignedOrNone NumExpansions = std::nullopt;
1954 if (SemaRef.CheckParameterPacksForExpansion(
1957 ShouldExpand, RetainExpansion, NumExpansions))
1960 assert(!RetainExpansion &&
1961 "should never retain an expansion for a variadic friend decl");
1964 SmallVector<FriendDecl *> Decls;
1965 for (
unsigned I = 0; I != *NumExpansions; I++) {
1966 Sema::ArgPackSubstIndexRAII SubstIndex(SemaRef, I);
1967 TypeSourceInfo *TSI = SemaRef.SubstType(
1978 Decls.push_back(FD);
1986 InstTy = SemaRef.SubstType(Ty, TemplateArgs, D->
getLocation(),
2001 assert(ND &&
"friend decl must be a decl or a type!");
2008 if (!NewND)
return nullptr;
2027 = SemaRef.SubstExpr(AssertExpr, TemplateArgs);
2032 SemaRef.SubstExpr(D->
getMessage(), TemplateArgs);
2033 if (InstantiatedMessageExpr.
isInvalid())
2036 return SemaRef.BuildStaticAssertDeclaration(
2041Decl *TemplateDeclInstantiator::VisitEnumDecl(
EnumDecl *D) {
2042 EnumDecl *PrevDecl =
nullptr;
2044 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->
getLocation(),
2047 if (!Prev)
return nullptr;
2060 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
2061 TypeSourceInfo *NewTI = SemaRef.SubstType(TI, TemplateArgs, UnderlyingLoc,
2063 if (!NewTI || SemaRef.CheckEnumUnderlyingType(NewTI))
2064 Enum->setIntegerType(SemaRef.Context.IntTy);
2074 Enum->setIntegerTypeSourceInfo(NewTI);
2084 QualType UnderlyingType =
Enum->getIntegerType();
2085 Enum->setPromotionType(
2086 SemaRef.Context.isPromotableIntegerType(UnderlyingType)
2087 ? SemaRef.Context.getPromotedIntegerType(UnderlyingType)
2091 &&
"Dependent type without type source info");
2096 SemaRef.InstantiateAttrs(TemplateArgs, D,
Enum);
2101 SemaRef.Context.setManglingNumber(
Enum, SemaRef.Context.getManglingNumber(D));
2104 if (DeclaratorDecl *DD = SemaRef.Context.getDeclaratorForUnnamedTagDecl(D))
2105 SemaRef.Context.addDeclaratorForUnnamedTagDecl(
Enum, DD);
2108 if (TypedefNameDecl *TND = SemaRef.Context.getTypedefNameForUnnamedTagDecl(D))
2109 SemaRef.Context.addTypedefNameForUnnamedTagDecl(
Enum, TND);
2111 Owner->addDecl(
Enum);
2114 if (Def && Def != D) {
2119 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
2120 QualType DefnUnderlying =
2121 SemaRef.SubstType(TI->getType(), TemplateArgs,
2122 UnderlyingLoc, DeclarationName());
2124 DefnUnderlying,
true,
Enum);
2139 if (PrevDecl ==
nullptr) {
2140 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D,
Enum);
2150 Enum->startDefinition();
2161 if (
Expr *UninstValue = EC->getInitExpr()) {
2166 Value = SemaRef.SubstExpr(UninstValue, TemplateArgs);
2171 if (
Value.isInvalid()) {
2177 = SemaRef.CheckEnumConstant(
Enum, LastEnumConst,
2184 Enum->setInvalidDecl();
2188 SemaRef.InstantiateAttrs(TemplateArgs, EC, EnumConst);
2191 Enum->addDecl(EnumConst);
2192 Enumerators.push_back(EnumConst);
2193 LastEnumConst = EnumConst;
2196 !
Enum->isScoped()) {
2199 SemaRef.CurrentInstantiationScope->InstantiatedLocal(EC, EnumConst);
2204 SemaRef.ActOnEnumBody(
Enum->getLocation(),
Enum->getBraceRange(),
Enum,
2209 llvm_unreachable(
"EnumConstantDecls can only occur within EnumDecls.");
2214 llvm_unreachable(
"BuiltinTemplateDecls cannot be instantiated.");
2222 LocalInstantiationScope Scope(SemaRef);
2235 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
2241 CXXRecordDecl *PrevDecl =
nullptr;
2242 ClassTemplateDecl *PrevClassTemplate =
nullptr;
2246 if (!
Found.empty()) {
2247 PrevClassTemplate = dyn_cast<ClassTemplateDecl>(
Found.front());
2248 if (PrevClassTemplate)
2257 DeclContext *DC = Owner;
2261 SS.
Adopt(QualifierLoc);
2262 DC = SemaRef.computeDeclContext(SS);
2263 if (!DC)
return nullptr;
2265 DC = SemaRef.FindInstantiatedContext(Pattern->
getLocation(),
2274 SemaRef.forRedeclarationInCurContext());
2275 SemaRef.LookupQualifiedName(R, DC);
2277 if (R.isSingleResult()) {
2278 PrevClassTemplate = R.getAsSingle<ClassTemplateDecl>();
2279 if (PrevClassTemplate)
2283 if (!PrevClassTemplate && QualifierLoc) {
2284 SemaRef.Diag(Pattern->
getLocation(), diag::err_not_tag_in_scope)
2297 SemaRef.InstantiateAttrsForDecl(TemplateArgs, Pattern, RecordInst, LateAttrs,
2300 ClassTemplateDecl *Inst
2306 assert(!Owner->isDependentContext());
2311 if (PrevClassTemplate) {
2313 const ClassTemplateDecl *MostRecentPrevCT =
2315 TemplateParameterList *PrevParams =
2319 if (!SemaRef.TemplateParameterListsAreEqual(
2326 if (SemaRef.CheckTemplateParameterList(InstParams, PrevParams,
2340 if (!PrevClassTemplate)
2357 Owner->addDecl(Inst);
2359 if (!PrevClassTemplate) {
2363 SmallVector<ClassTemplatePartialSpecializationDecl *, 4> PartialSpecs;
2365 for (
unsigned I = 0, N = PartialSpecs.size(); I != N; ++I)
2366 if (PartialSpecs[I]->getFirstDecl()->isOutOfLine())
2367 OutOfLinePartialSpecs.push_back(std::make_pair(Inst, PartialSpecs[I]));
2374TemplateDeclInstantiator::VisitClassTemplatePartialSpecializationDecl(
2385 ClassTemplateDecl *InstClassTemplate
2386 = dyn_cast<ClassTemplateDecl>(
Found.front());
2387 if (!InstClassTemplate)
2390 if (ClassTemplatePartialSpecializationDecl *
Result
2399 "Only static data member templates are allowed.");
2403 LocalInstantiationScope Scope(SemaRef);
2410 VarTemplateDecl *PrevVarTemplate =
nullptr;
2415 PrevVarTemplate = dyn_cast<VarTemplateDecl>(
Found.front());
2421 if (!VarInst)
return nullptr;
2423 DeclContext *DC = Owner;
2432 if (!PrevVarTemplate)
2440 Owner->addDecl(Inst);
2442 if (!PrevVarTemplate) {
2446 SmallVector<VarTemplatePartialSpecializationDecl *, 1> PartialSpecs;
2448 for (
unsigned I = 0, N = PartialSpecs.size(); I != N; ++I)
2449 if (PartialSpecs[I]->getFirstDecl()->isOutOfLine())
2450 OutOfLineVarPartialSpecs.push_back(
2451 std::make_pair(Inst, PartialSpecs[I]));
2457Decl *TemplateDeclInstantiator::VisitVarTemplatePartialSpecializationDecl(
2460 "Only static data member templates are allowed.");
2466 assert(!
Found.empty() &&
"Instantiation found nothing?");
2468 VarTemplateDecl *InstVarTemplate = dyn_cast<VarTemplateDecl>(
Found.front());
2469 assert(InstVarTemplate &&
"Instantiation did not find a variable template?");
2471 if (VarTemplatePartialSpecializationDecl *
Result =
2484 LocalInstantiationScope Scope(SemaRef);
2485 Sema::ConstraintEvalRAII<TemplateDeclInstantiator> RAII(*
this);
2492 FunctionDecl *Instantiated =
nullptr;
2493 if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(D->
getTemplatedDecl()))
2506 FunctionTemplateDecl *InstTemplate
2509 assert(InstTemplate &&
2510 "VisitFunctionDecl/CXXMethodDecl didn't create a template!");
2522 Owner->addDecl(InstTemplate);
2525 SemaRef.CheckFriendAccess(InstTemplate);
2528 return InstTemplate;
2532 CXXRecordDecl *PrevDecl =
nullptr;
2534 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->
getLocation(),
2537 if (!Prev)
return nullptr;
2541 CXXRecordDecl *
Record =
nullptr;
2559 SemaRef.InstantiateAttrsForDecl(TemplateArgs, D,
Record, LateAttrs,
2567 if (!IsInjectedClassName)
2573 Record->setObjectOfFriendDecl();
2577 Record->setAnonymousStructOrUnion(
true);
2580 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D,
Record);
2583 SemaRef.Context.setManglingNumber(
Record,
2584 SemaRef.Context.getManglingNumber(D));
2588 if (DeclaratorDecl *DD = SemaRef.Context.getDeclaratorForUnnamedTagDecl(D))
2589 SemaRef.Context.addDeclaratorForUnnamedTagDecl(
Record, DD);
2593 if (TypedefNameDecl *TND = SemaRef.Context.getTypedefNameForUnnamedTagDecl(D))
2594 SemaRef.Context.addTypedefNameForUnnamedTagDecl(
Record, TND);
2601 Sema::LocalEagerInstantiationScope LocalInstantiations(SemaRef,
2616 LocalInstantiations.perform();
2619 SemaRef.DiagnoseUnusedNestedTypedefs(
Record);
2621 if (IsInjectedClassName)
2622 assert(
Record->isInjectedClassName() &&
"Broken injected-class-name");
2640 if (OrigFunc->
getExtInfo() == NewFunc->getExtInfo())
2645 return Context.getFunctionType(NewFunc->getReturnType(),
2646 NewFunc->getParamTypes(), NewEPI);
2670 if (isFriend && Source->wasThisDeclarationADefinition(D)) {
2682 void *InsertPos =
nullptr;
2691 bool MergeWithParentScope = (TemplateParams !=
nullptr) ||
2692 Owner->isFunctionOrMethod() ||
2694 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
2698 if (
auto *DGuide = dyn_cast<CXXDeductionGuideDecl>(D)) {
2699 InstantiatedExplicitSpecifier = SemaRef.instantiateExplicitSpecifier(
2700 TemplateArgs, DGuide->getExplicitSpecifier());
2701 if (InstantiatedExplicitSpecifier.
isInvalid())
2711 if (TemplateParams && TemplateParams->
size()) {
2713 dyn_cast<TemplateTypeParmDecl>(TemplateParams->
asArray().back());
2714 if (LastParam && LastParam->isImplicit() &&
2715 LastParam->hasTypeConstraint()) {
2730 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
2744 SemaRef.adjustContextForLocalExternDecl(DC);
2745 }
else if (isFriend && QualifierLoc) {
2747 SS.
Adopt(QualifierLoc);
2748 DC = SemaRef.computeDeclContext(SS);
2749 if (!DC)
return nullptr;
2756 = SemaRef.SubstDeclarationNameInfo(D->
getNameInfo(), TemplateArgs);
2762 if (
auto *DGuide = dyn_cast<CXXDeductionGuideDecl>(D)) {
2765 InstantiatedExplicitSpecifier, NameInfo,
T, TInfo,
2767 DGuide->getDeductionCandidateKind(), TrailingRequiresClause,
2768 DGuide->getSourceDeductionGuide(),
2769 DGuide->getSourceDeductionGuideKind());
2776 TrailingRequiresClause);
2777 Function->setFriendConstraintRefersToEnclosingTemplate(
2786 Function->setQualifierInfo(QualifierLoc);
2797 LexicalDC = SemaRef.CurContext;
2801 Function->setIsTypeAwareOperatorNewOrDelete(
2803 Function->setLexicalDeclContext(LexicalDC);
2806 for (
unsigned P = 0; P < Params.size(); ++P)
2808 Params[P]->setOwningFunction(
Function);
2811 if (TrailingRequiresClause)
2812 Function->setTrailingRequiresClause(TrailingRequiresClause);
2814 if (TemplateParams) {
2842 SemaRef.CodeSynthesisContexts.back().Kind !=
2856 }
else if (!isFriend) {
2860 Function->setInstantiatedFromDecl(D);
2867 FT->setObjectOfFriendDecl();
2873 bool IsExplicitSpecialization =
false;
2880 : SemaRef.forRedeclarationInCurContext());
2884 assert(isFriend &&
"dependent specialization info on "
2885 "non-member non-friend function?");
2889 if (
const auto *ArgsWritten = DFTSI->TemplateArgumentsAsWritten) {
2890 ExplicitArgs.
setLAngleLoc(ArgsWritten->getLAngleLoc());
2891 ExplicitArgs.
setRAngleLoc(ArgsWritten->getRAngleLoc());
2892 if (SemaRef.SubstTemplateArguments(ArgsWritten->arguments(), TemplateArgs,
2900 SemaRef.FindInstantiatedDecl(D->
getLocation(), FTD, TemplateArgs))
2906 if (SemaRef.CheckFunctionTemplateSpecialization(
2908 DFTSI->TemplateArgumentsAsWritten ? &ExplicitArgs :
nullptr,
2912 IsExplicitSpecialization =
true;
2916 SemaRef.LookupQualifiedName(
Previous, DC);
2920 ArgsWritten->getRAngleLoc());
2921 if (SemaRef.SubstTemplateArguments(ArgsWritten->arguments(), TemplateArgs,
2925 if (SemaRef.CheckFunctionTemplateSpecialization(
Function,
2930 IsExplicitSpecialization =
true;
2947 if (isFriend && !QualifierLoc) {
2948 SemaRef.FilterLookupForScope(
Previous, DC,
nullptr,
2967 if (
Function->isLocalExternDecl()) {
2969 if (!PVD->hasDefaultArg())
2971 if (SemaRef.SubstDefaultArgument(D->
getInnerLocStart(), PVD, TemplateArgs)) {
2975 Expr *UninstExpr = PVD->getUninstantiatedDefaultArg();
2976 ExprResult ErrorResult = SemaRef.CreateRecoveryExpr(
2978 { UninstExpr }, UninstExpr->
getType());
2980 PVD->setDefaultArg(ErrorResult.
get());
2986 IsExplicitSpecialization,
2987 Function->isThisDeclarationADefinition());
2994 SemaRef.CheckTemplateParameterList(
2997 Function->isThisDeclarationADefinition()
3008 Function->getMemberSpecializationInfo()) {
3009 if (MSInfo->getPointOfInstantiation().isInvalid()) {
3011 MSInfo->setPointOfInstantiation(Loc);
3012 SemaRef.PendingLocalImplicitInstantiations.emplace_back(
Function, Loc);
3050 void *InsertPos =
nullptr;
3065 bool MergeWithParentScope = (TemplateParams !=
nullptr) ||
3067 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
3071 SemaRef, D, TemplateArgs,
Scope);
3075 unsigned NumTempParamLists = 0;
3077 TempParamLists.resize(NumTempParamLists);
3078 for (
unsigned I = 0; I != NumTempParamLists; ++I) {
3083 TempParamLists[I] = InstParams;
3089 const bool CouldInstantiate =
3090 InstantiatedExplicitSpecifier.getExpr() ==
nullptr ||
3091 !InstantiatedExplicitSpecifier.getExpr()->isValueDependent();
3095 if (CouldInstantiate ||
3096 SemaRef.CodeSynthesisContexts.back().Kind !=
3098 InstantiatedExplicitSpecifier = SemaRef.instantiateExplicitSpecifier(
3099 TemplateArgs, InstantiatedExplicitSpecifier);
3101 if (InstantiatedExplicitSpecifier.isInvalid())
3116 SemaRef.Context.getTrivialTypeSourceInfo(D->
getType());
3126 if (TemplateParams && TemplateParams->
size()) {
3128 dyn_cast<TemplateTypeParmDecl>(TemplateParams->
asArray().back());
3129 if (LastParam && LastParam->isImplicit() &&
3130 LastParam->hasTypeConstraint()) {
3145 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
3155 SS.
Adopt(QualifierLoc);
3156 DC = SemaRef.computeDeclContext(SS);
3158 if (DC && SemaRef.RequireCompleteDeclContext(SS, DC))
3161 DC = SemaRef.FindInstantiatedContext(D->
getLocation(),
3165 if (!DC)
return nullptr;
3172 = SemaRef.SubstDeclarationNameInfo(D->
getNameInfo(), TemplateArgs);
3183 SemaRef.Context,
Record, StartLoc, NameInfo,
T, TInfo,
3184 InstantiatedExplicitSpecifier,
Constructor->UsesFPIntrin(),
3187 TrailingRequiresClause);
3191 SemaRef.Context,
Record, StartLoc, NameInfo,
T, TInfo,
3193 Destructor->getConstexprKind(), TrailingRequiresClause);
3194 Method->setIneligibleOrNotSelected(
true);
3196 Method->setDeclName(SemaRef.Context.DeclarationNames.getCXXDestructorName(
3198 SemaRef.Context.getCanonicalTagType(
Record)));
3201 SemaRef.Context,
Record, StartLoc, NameInfo,
T, TInfo,
3202 Conversion->UsesFPIntrin(), Conversion->isInlineSpecified(),
3203 InstantiatedExplicitSpecifier, Conversion->getConstexprKind(),
3204 Conversion->getEndLoc(), TrailingRequiresClause);
3208 SemaRef.Context,
Record, StartLoc, NameInfo,
T, TInfo, SC,
3210 D->
getEndLoc(), TrailingRequiresClause);
3214 Method->setImplicitlyInline();
3217 Method->setQualifierInfo(QualifierLoc);
3219 if (TemplateParams) {
3259 if (NumTempParamLists)
3260 Method->setTemplateParameterListsInfo(
3264 Method->setLexicalDeclContext(Owner);
3265 Method->setObjectOfFriendDecl();
3270 for (
unsigned P = 0; P < Params.size(); ++P)
3271 Params[P]->setOwningFunction(
Method);
3272 Method->setParams(Params);
3275 Method->setInvalidDecl();
3280 bool IsExplicitSpecialization =
false;
3288 if (
const auto *ArgsWritten = DFTSI->TemplateArgumentsAsWritten) {
3289 ExplicitArgs.
setLAngleLoc(ArgsWritten->getLAngleLoc());
3290 ExplicitArgs.
setRAngleLoc(ArgsWritten->getRAngleLoc());
3291 if (SemaRef.SubstTemplateArguments(ArgsWritten->arguments(), TemplateArgs,
3299 SemaRef.FindInstantiatedDecl(D->
getLocation(), FTD, TemplateArgs))
3305 if (SemaRef.CheckFunctionTemplateSpecialization(
3306 Method, DFTSI->TemplateArgumentsAsWritten ? &ExplicitArgs :
nullptr,
3308 Method->setInvalidDecl();
3310 IsExplicitSpecialization =
true;
3313 SemaRef.LookupQualifiedName(
Previous, DC);
3316 ArgsWritten->getRAngleLoc());
3318 if (SemaRef.SubstTemplateArguments(ArgsWritten->arguments(), TemplateArgs,
3322 if (SemaRef.CheckFunctionTemplateSpecialization(
Method,
3325 Method->setInvalidDecl();
3327 IsExplicitSpecialization =
true;
3355 for (
unsigned P = 0; P < Params.size(); ++P) {
3356 if (!Params[P]->hasDefaultArg())
3358 if (SemaRef.SubstDefaultArgument(StartLoc, Params[P], TemplateArgs)) {
3362 Expr *UninstExpr = Params[P]->getUninstantiatedDefaultArg();
3363 ExprResult ErrorResult = SemaRef.CreateRecoveryExpr(
3365 { UninstExpr }, UninstExpr->
getType());
3367 Params[P]->setDefaultArg(ErrorResult.
get());
3373 IsExplicitSpecialization,
3374 Method->isThisDeclarationADefinition());
3382 if (isFriend &&
Method->getPreviousDecl())
3383 Method->setAccess(
Method->getPreviousDecl()->getAccess());
3389 SemaRef.CheckOverrideControl(
Method);
3403 if (IsExplicitSpecialization && !isFriend)
3416 Method->setIneligibleOrNotSelected(
true);
3417 }
else if (
Method->isCopyAssignmentOperator() ||
3418 Method->isMoveAssignmentOperator()) {
3419 Method->setIneligibleOrNotSelected(
true);
3431 }
else if (isFriend) {
3435 SemaRef.CheckFriendAccess(
Method);
3448 if (
Method->hasAttr<UsedAttr>()) {
3449 if (
const auto *A = dyn_cast<CXXRecordDecl>(Owner)) {
3452 A->getMemberSpecializationInfo())
3453 Loc = MSInfo->getPointOfInstantiation();
3454 else if (
const auto *Spec = dyn_cast<ClassTemplateSpecializationDecl>(A))
3455 Loc = Spec->getPointOfInstantiation();
3456 SemaRef.MarkFunctionReferenced(Loc,
Method);
3476 return SemaRef.SubstParmVarDecl(D, TemplateArgs, 0,
3481Decl *TemplateDeclInstantiator::VisitTemplateTypeParmDecl(
3485 UnsignedOrNone NumExpanded = std::nullopt;
3489 assert(TC->getTemplateArgsAsWritten() &&
3490 "type parameter can only be an expansion when explicit arguments "
3495 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
3496 for (
auto &ArgLoc : TC->getTemplateArgsAsWritten()->arguments())
3497 SemaRef.collectUnexpandedParameterPacks(ArgLoc, Unexpanded);
3502 bool RetainExpansion =
false;
3503 if (SemaRef.CheckParameterPacksForExpansion(
3506 SourceRange(TC->getConceptNameLoc(),
3507 TC->hasExplicitTemplateArgs()
3508 ? TC->getTemplateArgsAsWritten()->getRAngleLoc()
3509 : TC->getConceptNameInfo().getEndLoc()),
3510 Unexpanded, TemplateArgs,
true,
3511 Expand, RetainExpansion, NumExpanded))
3529 if (SemaRef.SubstTypeConstraint(Inst, TC, TemplateArgs,
3530 EvaluateConstraints))
3535 TemplateArgumentLoc Output;
3543 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Inst);
3548Decl *TemplateDeclInstantiator::VisitNonTypeTemplateParmDecl(
3552 SmallVector<TypeSourceInfo *, 4> ExpandedParameterPackTypesAsWritten;
3553 SmallVector<QualType, 4> ExpandedParameterPackTypes;
3554 bool IsExpandedParameterPack =
false;
3565 TypeSourceInfo *NewDI =
3572 SemaRef.CheckNonTypeTemplateParameterType(NewDI, D->
getLocation());
3576 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
3577 ExpandedParameterPackTypes.push_back(NewT);
3580 IsExpandedParameterPack =
true;
3587 PackExpansionTypeLoc Expansion = TL.
castAs<PackExpansionTypeLoc>();
3589 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
3590 SemaRef.collectUnexpandedParameterPacks(Pattern, Unexpanded);
3595 bool RetainExpansion =
false;
3596 UnsignedOrNone OrigNumExpansions =
3598 UnsignedOrNone NumExpansions = OrigNumExpansions;
3599 if (SemaRef.CheckParameterPacksForExpansion(
3600 Expansion.
getEllipsisLoc(), Pattern.getSourceRange(), Unexpanded,
3601 TemplateArgs,
true, Expand,
3602 RetainExpansion, NumExpansions))
3606 for (
unsigned I = 0; I != *NumExpansions; ++I) {
3607 Sema::ArgPackSubstIndexRAII SubstIndex(SemaRef, I);
3608 TypeSourceInfo *NewDI = SemaRef.SubstType(Pattern, TemplateArgs,
3615 SemaRef.CheckNonTypeTemplateParameterType(NewDI, D->
getLocation());
3619 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
3620 ExpandedParameterPackTypes.push_back(NewT);
3626 IsExpandedParameterPack =
true;
3632 Sema::ArgPackSubstIndexRAII SubstIndex(SemaRef, std::nullopt);
3633 TypeSourceInfo *NewPattern = SemaRef.SubstType(Pattern, TemplateArgs,
3639 SemaRef.CheckNonTypeTemplateParameterType(NewPattern, D->
getLocation());
3640 DI = SemaRef.CheckPackExpansion(NewPattern, Expansion.
getEllipsisLoc(),
3655 T = SemaRef.CheckNonTypeTemplateParameterType(DI, D->
getLocation());
3657 T = SemaRef.Context.IntTy;
3662 NonTypeTemplateParmDecl *Param;
3663 if (IsExpandedParameterPack)
3666 D->
getDepth() - TemplateArgs.getNumSubstitutedLevels(),
3668 ExpandedParameterPackTypesAsWritten);
3672 D->
getDepth() - TemplateArgs.getNumSubstitutedLevels(),
3676 if (AutoLoc.isConstrained()) {
3677 SourceLocation EllipsisLoc;
3678 if (IsExpandedParameterPack)
3681 else if (
auto *Constraint = dyn_cast_if_present<CXXFoldExpr>(
3683 EllipsisLoc = Constraint->getEllipsisLoc();
3687 if (SemaRef.AttachTypeConstraint(AutoLoc, Param,
3698 EnterExpressionEvaluationContext ConstantEvaluated(
3700 TemplateArgumentLoc
Result;
3708 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
3716 for (
const auto &P : *Params) {
3717 if (P->isTemplateParameterPack())
3729TemplateDeclInstantiator::VisitTemplateTemplateParmDecl(
3733 TemplateParameterList *InstParams;
3734 SmallVector<TemplateParameterList*, 8> ExpandedParams;
3736 bool IsExpandedParameterPack =
false;
3745 LocalInstantiationScope Scope(SemaRef,
true);
3746 TemplateParameterList *Expansion =
3750 ExpandedParams.push_back(Expansion);
3753 IsExpandedParameterPack =
true;
3754 InstParams = TempParams;
3759 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
3766 bool RetainExpansion =
false;
3767 UnsignedOrNone NumExpansions = std::nullopt;
3768 if (SemaRef.CheckParameterPacksForExpansion(
3770 TemplateArgs,
true, Expand,
3771 RetainExpansion, NumExpansions))
3775 for (
unsigned I = 0; I != *NumExpansions; ++I) {
3776 Sema::ArgPackSubstIndexRAII SubstIndex(SemaRef, I);
3777 LocalInstantiationScope Scope(SemaRef,
true);
3781 ExpandedParams.push_back(Expansion);
3787 IsExpandedParameterPack =
true;
3790 Sema::ArgPackSubstIndexRAII SubstIndex(SemaRef, std::nullopt);
3792 LocalInstantiationScope Scope(SemaRef,
true);
3799 LocalInstantiationScope Scope(SemaRef,
true);
3806 TemplateTemplateParmDecl *Param;
3807 if (IsExpandedParameterPack)
3810 D->
getDepth() - TemplateArgs.getNumSubstitutedLevels(),
3816 D->
getDepth() - TemplateArgs.getNumSubstitutedLevels(),
3829 TemplateArgumentLoc(SemaRef.Context, TemplateArgument(TName),
3838 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
3847 UsingDirectiveDecl *Inst
3857 if (!Owner->isFunctionOrMethod())
3858 Owner->addDecl(Inst);
3867 bool isFunctionScope = Owner->isFunctionOrMethod();
3869 for (
auto *Shadow : D->
shadows()) {
3873 NamedDecl *OldTarget = Shadow->getTargetDecl();
3874 if (
auto *CUSD = dyn_cast<ConstructorUsingShadowDecl>(Shadow))
3875 if (
auto *BaseShadow = CUSD->getNominatedBaseClassShadowDecl())
3876 OldTarget = BaseShadow;
3880 dyn_cast<UnresolvedUsingIfExistsDecl>(Shadow->getTargetDecl())) {
3882 SemaRef.Context, Owner, EmptyD->getLocation(), EmptyD->getDeclName());
3884 InstTarget = cast_or_null<NamedDecl>(SemaRef.FindInstantiatedDecl(
3885 Shadow->getLocation(), OldTarget, TemplateArgs));
3892 SemaRef.CheckUsingShadowDecl(Inst, InstTarget, *Lookup, PrevDecl))
3896 PrevDecl = cast_or_null<UsingShadowDecl>(SemaRef.FindInstantiatedDecl(
3897 Shadow->getLocation(), OldPrev, TemplateArgs));
3900 nullptr, Inst, InstTarget, PrevDecl);
3901 SemaRef.Context.setInstantiatedFromUsingShadowDecl(InstShadow, Shadow);
3903 if (isFunctionScope)
3904 SemaRef.CurrentInstantiationScope->InstantiatedLocal(Shadow, InstShadow);
3910Decl *TemplateDeclInstantiator::VisitUsingDecl(
UsingDecl *D) {
3931 if (
auto *RD = dyn_cast<CXXRecordDecl>(SemaRef.
CurContext))
3937 bool CheckRedeclaration = Owner->
isRecord();
3948 SS.
Adopt(QualifierLoc);
3949 if (CheckRedeclaration) {
3950 Prev.setHideTags(
false);
3983 EnumDecl *EnumD = cast_or_null<EnumDecl>(SemaRef.FindInstantiatedDecl(
3986 if (SemaRef.RequireCompleteEnumDecl(EnumD, EnumD->
getLocation()))
3989 TypeSourceInfo *TSI = SemaRef.SubstType(D->
getEnumType(), TemplateArgs,
3995 UsingEnumDecl *NewUD =
3999 SemaRef.Context.setInstantiatedFromUsingEnumDecl(NewUD, D);
4001 Owner->addDecl(NewUD);
4019Decl *TemplateDeclInstantiator::VisitConstructorUsingShadowDecl(
4025template <
typename T>
4026Decl *TemplateDeclInstantiator::instantiateUnresolvedUsingDecl(
4027 T *D,
bool InstantiatingPackElement) {
4029 if (D->isPackExpansion() && !InstantiatingPackElement) {
4030 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
4031 SemaRef.collectUnexpandedParameterPacks(D->getQualifierLoc(), Unexpanded);
4032 SemaRef.collectUnexpandedParameterPacks(D->getNameInfo(), Unexpanded);
4037 bool RetainExpansion =
false;
4038 UnsignedOrNone NumExpansions = std::nullopt;
4039 if (SemaRef.CheckParameterPacksForExpansion(
4040 D->getEllipsisLoc(), D->getSourceRange(), Unexpanded, TemplateArgs,
4041 true, Expand, RetainExpansion,
4047 assert(!RetainExpansion &&
4048 "should never need to retain an expansion for UsingPackDecl");
4053 Sema::ArgPackSubstIndexRAII SubstIndex(SemaRef, std::nullopt);
4054 return instantiateUnresolvedUsingDecl(D,
true);
4064 if (D->getDeclContext()->isFunctionOrMethod() && *NumExpansions > 1) {
4065 SemaRef.Diag(D->getEllipsisLoc(),
4066 diag::err_using_decl_redeclaration_expansion);
4071 SmallVector<NamedDecl*, 8> Expansions;
4072 for (
unsigned I = 0; I != *NumExpansions; ++I) {
4073 Sema::ArgPackSubstIndexRAII SubstIndex(SemaRef, I);
4074 Decl *Slice = instantiateUnresolvedUsingDecl(D,
true);
4084 auto *NewD = SemaRef.BuildUsingPackDecl(D, Expansions);
4086 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, NewD);
4090 UnresolvedUsingTypenameDecl *TD = dyn_cast<UnresolvedUsingTypenameDecl>(D);
4091 SourceLocation TypenameLoc = TD ? TD->
getTypenameLoc() : SourceLocation();
4093 NestedNameSpecifierLoc QualifierLoc
4094 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
4100 SS.
Adopt(QualifierLoc);
4102 DeclarationNameInfo NameInfo
4103 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
4107 bool InstantiatingSlice =
4108 D->getEllipsisLoc().isValid() && SemaRef.ArgPackSubstIndex;
4109 SourceLocation EllipsisLoc =
4110 InstantiatingSlice ? SourceLocation() : D->getEllipsisLoc();
4113 NamedDecl *UD = SemaRef.BuildUsingDeclaration(
4114 nullptr, D->getAccess(), D->getUsingLoc(),
4115 TD, TypenameLoc, SS, NameInfo, EllipsisLoc,
4116 ParsedAttributesView(),
4117 true, IsUsingIfExists);
4119 SemaRef.InstantiateAttrs(TemplateArgs, D, UD);
4120 SemaRef.Context.setInstantiatedFromUsingDecl(UD, D);
4126Decl *TemplateDeclInstantiator::VisitUnresolvedUsingTypenameDecl(
4128 return instantiateUnresolvedUsingDecl(D);
4131Decl *TemplateDeclInstantiator::VisitUnresolvedUsingValueDecl(
4133 return instantiateUnresolvedUsingDecl(D);
4136Decl *TemplateDeclInstantiator::VisitUnresolvedUsingIfExistsDecl(
4138 llvm_unreachable(
"referring to unresolved decl out of UsingShadowDecl");
4142 SmallVector<NamedDecl*, 8> Expansions;
4144 if (NamedDecl *NewUD =
4145 SemaRef.FindInstantiatedDecl(D->
getLocation(), UD, TemplateArgs))
4146 Expansions.push_back(NewUD);
4151 auto *NewD = SemaRef.BuildUsingPackDecl(D, Expansions);
4153 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, NewD);
4157Decl *TemplateDeclInstantiator::VisitOMPThreadPrivateDecl(
4159 SmallVector<Expr *, 5> Vars;
4160 for (
auto *I : D->
varlist()) {
4161 Expr *Var = SemaRef.SubstExpr(I, TemplateArgs).get();
4163 Vars.push_back(Var);
4166 OMPThreadPrivateDecl *TD =
4167 SemaRef.OpenMP().CheckOMPThreadPrivateDecl(D->
getLocation(), Vars);
4177 SmallVector<Expr *, 5> Vars;
4178 for (
auto *I : D->
varlist()) {
4179 Expr *Var = SemaRef.SubstExpr(I, TemplateArgs).get();
4181 Vars.push_back(Var);
4184 OMPGroupPrivateDecl *TD =
4185 SemaRef.OpenMP().CheckOMPGroupPrivateDecl(D->
getLocation(), Vars);
4194 SmallVector<Expr *, 5> Vars;
4195 for (
auto *I : D->
varlist()) {
4196 Expr *Var = SemaRef.SubstExpr(I, TemplateArgs).get();
4198 Vars.push_back(Var);
4200 SmallVector<OMPClause *, 4> Clauses;
4203 OMPClause *IC =
nullptr;
4204 if (
auto *AC = dyn_cast<OMPAllocatorClause>(
C)) {
4205 ExprResult NewE = SemaRef.SubstExpr(AC->getAllocator(), TemplateArgs);
4208 IC = SemaRef.OpenMP().ActOnOpenMPAllocatorClause(
4209 NewE.
get(), AC->
getBeginLoc(), AC->getLParenLoc(), AC->getEndLoc());
4210 }
else if (
auto *AC = dyn_cast<OMPAlignClause>(
C)) {
4211 ExprResult NewE = SemaRef.SubstExpr(AC->getAlignment(), TemplateArgs);
4214 IC = SemaRef.OpenMP().ActOnOpenMPAlignClause(
4215 NewE.
get(), AC->
getBeginLoc(), AC->getLParenLoc(), AC->getEndLoc());
4220 Clauses.push_back(IC);
4232 "Requires directive cannot be instantiated within a dependent context");
4235Decl *TemplateDeclInstantiator::VisitOMPDeclareReductionDecl(
4238 const bool RequiresInstantiation =
4242 QualType SubstReductionType;
4243 if (RequiresInstantiation) {
4244 SubstReductionType = SemaRef.OpenMP().ActOnOpenMPDeclareReductionType(
4249 SubstReductionType = D->
getType();
4251 if (SubstReductionType.
isNull())
4255 bool IsCorrect =
true;
4257 std::pair<QualType, SourceLocation> ReductionTypes[] = {
4258 std::make_pair(SubstReductionType, D->
getLocation())};
4260 if (PrevDeclInScope && !PrevDeclInScope->isInvalidDecl()) {
4262 cast<Decl *>(*SemaRef.CurrentInstantiationScope->findInstantiationOf(
4265 auto DRD = SemaRef.OpenMP().ActOnOpenMPDeclareReductionDirectiveStart(
4269 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, NewDRD);
4270 Expr *SubstCombiner =
nullptr;
4271 Expr *SubstInitializer =
nullptr;
4274 SemaRef.OpenMP().ActOnOpenMPDeclareReductionCombinerStart(
4276 SemaRef.CurrentInstantiationScope->InstantiatedLocal(
4279 SemaRef.CurrentInstantiationScope->InstantiatedLocal(
4282 auto *ThisContext = dyn_cast_or_null<CXXRecordDecl>(Owner);
4283 Sema::CXXThisScopeRAII ThisScope(SemaRef, ThisContext, Qualifiers(),
4285 SubstCombiner = SemaRef.SubstExpr(Combiner, TemplateArgs).get();
4286 SemaRef.OpenMP().ActOnOpenMPDeclareReductionCombinerEnd(NewDRD,
4291 VarDecl *OmpPrivParm =
4292 SemaRef.OpenMP().ActOnOpenMPDeclareReductionInitializerStart(
4294 SemaRef.CurrentInstantiationScope->InstantiatedLocal(
4297 SemaRef.CurrentInstantiationScope->InstantiatedLocal(
4301 SubstInitializer = SemaRef.SubstExpr(
Init, TemplateArgs).get();
4305 IsCorrect = IsCorrect && OldPrivParm->hasInit();
4307 SemaRef.InstantiateVariableInitializer(OmpPrivParm, OldPrivParm,
4310 SemaRef.OpenMP().ActOnOpenMPDeclareReductionInitializerEnd(
4311 NewDRD, SubstInitializer, OmpPrivParm);
4313 IsCorrect = IsCorrect && SubstCombiner &&
4316 SubstInitializer) ||
4318 !SubstInitializer));
4320 (void)SemaRef.OpenMP().ActOnOpenMPDeclareReductionDirectiveEnd(
4329 const bool RequiresInstantiation =
4333 QualType SubstMapperTy;
4335 if (RequiresInstantiation) {
4336 SubstMapperTy = SemaRef.OpenMP().ActOnOpenMPDeclareMapperType(
4343 if (SubstMapperTy.
isNull())
4347 if (PrevDeclInScope && !PrevDeclInScope->isInvalidDecl()) {
4349 cast<Decl *>(*SemaRef.CurrentInstantiationScope->findInstantiationOf(
4352 bool IsCorrect =
true;
4353 SmallVector<OMPClause *, 6> Clauses;
4355 DeclarationNameInfo DirName;
4356 SemaRef.OpenMP().StartOpenMPDSABlock(llvm::omp::OMPD_declare_mapper, DirName,
4360 SemaRef.OpenMP().ActOnOpenMPDeclareMapperDirectiveVarDecl(
4362 SemaRef.CurrentInstantiationScope->InstantiatedLocal(
4365 auto *ThisContext = dyn_cast_or_null<CXXRecordDecl>(Owner);
4366 Sema::CXXThisScopeRAII ThisScope(SemaRef, ThisContext, Qualifiers(),
4371 SmallVector<Expr *, 4> NewVars;
4372 for (Expr *OE : OldC->varlist()) {
4373 Expr *
NE = SemaRef.SubstExpr(OE, TemplateArgs).get();
4378 NewVars.push_back(NE);
4382 NestedNameSpecifierLoc NewQualifierLoc =
4383 SemaRef.SubstNestedNameSpecifierLoc(OldC->getMapperQualifierLoc(),
4386 SS.
Adopt(NewQualifierLoc);
4387 DeclarationNameInfo NewNameInfo =
4388 SemaRef.SubstDeclarationNameInfo(OldC->getMapperIdInfo(), TemplateArgs);
4389 OMPVarListLocTy Locs(OldC->getBeginLoc(), OldC->getLParenLoc(),
4391 OMPClause *NewC = SemaRef.OpenMP().ActOnOpenMPMapClause(
4392 OldC->getIteratorModifier(), OldC->getMapTypeModifiers(),
4393 OldC->getMapTypeModifiersLoc(), SS, NewNameInfo, OldC->getMapType(),
4394 OldC->isImplicitMapType(), OldC->getMapLoc(), OldC->getColonLoc(),
4396 Clauses.push_back(NewC);
4398 SemaRef.OpenMP().EndOpenMPDSABlock(
nullptr);
4403 VN, D->
getAccess(), MapperVarRef.
get(), Clauses, PrevDeclInScope);
4405 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, NewDMD);
4409Decl *TemplateDeclInstantiator::VisitOMPCapturedExprDecl(
4411 llvm_unreachable(
"Should not be met in templates");
4422 Owner->addDecl(Inst);
4431 llvm_unreachable(
"There are only CXXRecordDecls in C++");
4435TemplateDeclInstantiator::VisitClassTemplateSpecializationDecl(
4442 "can only instantiate an explicit specialization "
4443 "for a member class template");
4447 ClassTemplateDecl *InstClassTemplate =
4448 cast_or_null<ClassTemplateDecl>(SemaRef.FindInstantiatedDecl(
4450 if (!InstClassTemplate)
4455 TemplateArgumentListInfo InstTemplateArgs;
4456 if (
const ASTTemplateArgumentListInfo *TemplateArgsInfo =
4458 InstTemplateArgs.
setLAngleLoc(TemplateArgsInfo->getLAngleLoc());
4459 InstTemplateArgs.
setRAngleLoc(TemplateArgsInfo->getRAngleLoc());
4461 if (SemaRef.SubstTemplateArguments(TemplateArgsInfo->arguments(),
4462 TemplateArgs, InstTemplateArgs))
4468 Sema::CheckTemplateArgumentInfo CTAI;
4469 if (SemaRef.CheckTemplateArgumentList(
4470 InstClassTemplate, D->
getLocation(), InstTemplateArgs,
4477 void *InsertPos =
nullptr;
4478 ClassTemplateSpecializationDecl *PrevDecl =
4485 SemaRef.CheckSpecializationInstantiationRedecl(D->
getLocation(),
4507 SemaRef.Diag(D->
getLocation(), diag::err_redefinition) << PrevDecl;
4509 diag::note_previous_definition);
4514 ClassTemplateSpecializationDecl *InstD =
4536 Owner->addDecl(InstD);
4543 SemaRef.InstantiateClass(D->
getLocation(), InstD, D, TemplateArgs,
4557 "A template specialization without specialized template?");
4560 cast_or_null<VarTemplateDecl>(SemaRef.FindInstantiatedDecl(
4562 if (!InstVarTemplate)
4568 VarTemplateArgsInfo.
setLAngleLoc(TemplateArgsInfo->getLAngleLoc());
4569 VarTemplateArgsInfo.
setRAngleLoc(TemplateArgsInfo->getRAngleLoc());
4571 if (SemaRef.SubstTemplateArguments(TemplateArgsInfo->arguments(),
4572 TemplateArgs, VarTemplateArgsInfo))
4578 if (SemaRef.CheckTemplateArgumentList(
4579 InstVarTemplate, D->
getLocation(), VarTemplateArgsInfo,
4585 void *InsertPos =
nullptr;
4592 if (PrevDecl && SemaRef.CheckSpecializationInstantiationRedecl(
4600 VTSD->setTemplateArgsAsWritten(VarTemplateArgsInfo);
4620 SemaRef.
Diag(D->
getLocation(), diag::err_variable_instantiates_to_function)
4630 void *InsertPos =
nullptr;
4631 VarTemplate->findSpecialization(Converted, InsertPos);
4635 if (SemaRef.getLangOpts().OpenCL)
4636 SemaRef.deduceOpenCLAddressSpace(Var);
4642 SemaRef.BuildVariableInstantiation(Var, D, TemplateArgs, LateAttrs, Owner,
4643 StartingScope,
false, PrevDecl);
4649 llvm_unreachable(
"@defs is not supported in Objective-C++");
4654 unsigned DiagID = SemaRef.getDiagnostics().getCustomDiagID(
4656 "cannot instantiate %0 yet");
4664 llvm_unreachable(
"Concept definitions cannot reside inside a template");
4667Decl *TemplateDeclInstantiator::VisitImplicitConceptSpecializationDecl(
4669 llvm_unreachable(
"Concept specializations cannot reside inside a template");
4679 llvm_unreachable(
"Unexpected decl");
4690 SubstD = Instantiator.Visit(D);
4704 T = SemaRef.Context.getFunctionType(
4705 SemaRef.Context.BoolTy, FPT->getParamTypes(), FPT->getExtProtoInfo());
4714 SemaRef.Context.getTrivialTypeSourceInfo(
T, Orig->
getEndLoc());
4716 assert(OldLoc &&
"type of function is not a function type?");
4718 for (
unsigned I = 0, N = OldLoc.getNumParams(); I != N; ++I)
4719 NewLoc.
setParam(I, OldLoc.getParam(I));
4724 SemaRef.Context.DeclarationNames.getCXXOperatorName(OO_EqualEqual));
4729 if (Spaceship->isInvalidDecl())
4741 if (
auto *MD = dyn_cast<CXXMethodDecl>(Spaceship)) {
4746 assert(Spaceship->getFriendObjectKind() &&
4747 "defaulted spaceship is neither a member nor a friend");
4761 return cast_or_null<FunctionDecl>(R);
4775 unsigned N = L->
size();
4779 for (
auto &P : *L) {
4781 Params.push_back(D);
4801 bool EvaluateConstraints) {
4840 if (SemaRef.SubstTemplateArguments(TemplArgInfo->
arguments(), TemplateArgs,
4847 if (SemaRef.CheckTemplateArgumentList(
4848 ClassTemplate, PartialSpec->
getLocation(), InstTemplateArgs,
4854 if (SemaRef.CheckTemplatePartialSpecializationArgs(
4861 void *InsertPos =
nullptr;
4864 InstParams, InsertPos);
4869 SemaRef.Context, PartialSpec->
getTagKind(), Owner,
4900 diag::err_partial_spec_redeclared)
4902 SemaRef.Diag(PrevDecl->
getLocation(), diag::note_prev_partial_spec_here)
4903 << SemaRef.Context.getCanonicalTagType(PrevDecl);
4908 SemaRef.CheckTemplatePartialSpecialization(InstPartialSpec);
4914 return InstPartialSpec;
4950 if (SemaRef.SubstTemplateArguments(TemplArgInfo->
arguments(), TemplateArgs,
4958 InstTemplateArgs, {},
4963 if (SemaRef.CheckTemplatePartialSpecializationArgs(
4970 void *InsertPos =
nullptr;
4973 InstParams, InsertPos);
4984 diag::err_variable_instantiates_to_function)
5021 diag::err_var_partial_spec_redeclared)
5024 diag::note_var_prev_partial_spec_here);
5028 SemaRef.CheckTemplatePartialSpecialization(InstPartialSpec);
5032 VarTemplate->AddPartialSpecialization(InstPartialSpec,
nullptr);
5034 SemaRef.BuildVariableInstantiation(InstPartialSpec, PartialSpec, TemplateArgs,
5035 LateAttrs, Owner, StartingScope);
5037 return InstPartialSpec;
5044 assert(OldTInfo &&
"substituting function without type source info");
5045 assert(Params.empty() &&
"parameter vector is non-empty at start");
5051 ThisTypeQuals =
Method->getFunctionObjectParameterType().getQualifiers();
5056 ThisContext, ThisTypeQuals, EvaluateConstraints);
5062 if (NewTInfo != OldTInfo) {
5066 unsigned NewIdx = 0;
5067 for (
unsigned OldIdx = 0, NumOldParams = OldProtoLoc.getNumParams();
5068 OldIdx != NumOldParams; ++OldIdx) {
5069 ParmVarDecl *OldParam = OldProtoLoc.getParam(OldIdx);
5077 NumArgumentsInExpansion =
5078 SemaRef.getNumArgumentsInExpansion(OldParam->
getType(),
5080 if (!NumArgumentsInExpansion) {
5084 Params.push_back(NewParam);
5085 Scope->InstantiatedLocal(OldParam, NewParam);
5088 Scope->MakeInstantiatedLocalArgPack(OldParam);
5089 for (
unsigned I = 0; I != *NumArgumentsInExpansion; ++I) {
5091 Params.push_back(NewParam);
5092 Scope->InstantiatedLocalPackArg(OldParam, NewParam);
5102 for (
unsigned i = 0, i_end = OldProtoLoc.getNumParams(); i != i_end;
5106 Params.push_back(SemaRef.BuildParmVarDeclForTypedef(
5112 cast_or_null<ParmVarDecl>(VisitParmVarDecl(OldParam));
5115 Params.push_back(Parm);
5132 TemplateArgs, ParamTypes, &Params,
5145 for (
auto *
decl : PatternDecl->
decls()) {
5152 auto it = llvm::find_if(
Function->decls(), [&](
Decl *inst) {
5153 VarDecl *InstVD = dyn_cast<VarDecl>(inst);
5154 return InstVD && InstVD->isLocalVarDecl() &&
5155 InstVD->getIdentifier() == II;
5161 Scope.InstantiatedLocal(VD, *it);
5168bool Sema::addInstantiatedParametersToScope(
5172 unsigned FParamIdx = 0;
5173 for (
unsigned I = 0, N = PatternDecl->
getNumParams(); I != N; ++I) {
5174 const ParmVarDecl *PatternParam = PatternDecl->
getParamDecl(I);
5177 assert(FParamIdx < Function->getNumParams());
5202 UnsignedOrNone NumArgumentsInExpansion =
5204 if (NumArgumentsInExpansion) {
5205 QualType PatternType =
5206 PatternParam->
getType()->
castAs<PackExpansionType>()->getPattern();
5207 for (
unsigned Arg = 0; Arg < *NumArgumentsInExpansion; ++Arg) {
5211 Sema::ArgPackSubstIndexRAII SubstIndex(*
this, Arg);
5231 assert(Param->hasUninstantiatedDefaultArg());
5263 false, std::nullopt,
5272 L->DefaultArgumentInstantiated(Param);
5294 Diag(PointOfInstantiation, diag::err_exception_spec_cycle) <<
Decl;
5306 false, std::nullopt,
5339 SemaRef.Context.setManglingNumber(
New,
5340 SemaRef.Context.getManglingNumber(Tmpl));
5353 ActiveInstType &ActiveInst = SemaRef.CodeSynthesisContexts.back();
5354 if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution ||
5355 ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) {
5357 SemaRef.InstantiatingSpecializations.erase(
5358 {ActiveInst.Entity->getCanonicalDecl(), ActiveInst.Kind});
5359 atTemplateEnd(SemaRef.TemplateInstCallbacks, SemaRef, ActiveInst);
5360 ActiveInst.Kind = ActiveInstType::TemplateInstantiation;
5361 ActiveInst.Entity =
New;
5367 assert(Proto &&
"Function template without prototype?");
5376 if (SemaRef.getLangOpts().CPlusPlus11 &&
5391 assert(NewProto &&
"Template instantiation without function prototype?");
5396 New->setType(SemaRef.Context.getFunctionType(
5400 SemaRef.SubstExceptionSpec(
New, Proto, TemplateArgs);
5409 LateAttrs, StartingScope);
5430 New->setVirtualAsWritten(
true);
5441 Lookups.reserve(DFI->getUnqualifiedLookups().size());
5442 bool AnyChanged =
false;
5444 NamedDecl *D = SemaRef.FindInstantiatedDecl(
New->getLocation(),
5445 DA.getDecl(), TemplateArgs);
5448 AnyChanged |= (D != DA.getDecl());
5454 New->setDefaultedOrDeletedInfo(
5456 SemaRef.Context, Lookups)
5484 bool DefinitionRequired,
5492 Function->getTemplateSpecializationKindForInstantiation();
5499 !DefinitionRequired)
5504 if (
Function->isDefined(ExistingDefn,
5518 assert(PatternDecl &&
"instantiating a non-template");
5521 Stmt *Pattern =
nullptr;
5523 Pattern = PatternDef->
getBody(PatternDef);
5524 PatternDecl = PatternDef;
5526 PatternDef =
nullptr;
5530 bool Unreachable =
false;
5535 Function->getInstantiatedFromMemberFunction(), PatternDecl,
5537 DefinitionRequired, &Unreachable)) {
5538 if (DefinitionRequired)
5541 (
Function->isConstexpr() && !Recursive)) {
5545 Function->setInstantiationIsPending(
true);
5548 if (llvm::isTimeTraceVerbose()) {
5549 llvm::timeTraceAddInstantEvent(
"DeferInstantiation", [&] {
5551 llvm::raw_string_ostream
OS(Name);
5560 Diag(PointOfInstantiation, diag::warn_func_template_missing)
5566 diag::note_unreachable_template_decl);
5570 Diag(PointOfInstantiation, diag::note_inst_declaration_hint)
5582 Function->setInstantiationIsPending(
true);
5584 std::make_pair(
Function, PointOfInstantiation));
5588 llvm::TimeTraceScope TimeScope(
"InstantiateFunction", [&]() {
5589 llvm::TimeTraceMetadata M;
5590 llvm::raw_string_ostream
OS(M.Detail);
5593 if (llvm::isTimeTraceVerbose()) {
5596 M.Line =
SourceMgr.getExpansionLineNumber(Loc);
5622 "missing LateParsedTemplate");
5624 Pattern = PatternDecl->
getBody(PatternDecl);
5631 "unexpected kind of function template definition");
5646 for (
auto *D =
Function->getMostRecentDecl(); ;
5648 D->setImplicitlyInline();
5658 "instantiating function definition");
5662 Function->setVisibleDespiteOwningModule();
5688 auto NameLocPointsToPattern = [&] {
5699 return PatternNameLoc;
5709 return PatternNameLoc;
5717 assert(PatternTSI &&
"Pattern is supposed to have an associated TSI");
5725 Function->setDeclarationNameLoc(NameLocPointsToPattern());
5733 ThisContext =
Method->getParent();
5734 ThisTypeQuals =
Method->getMethodQualifiers();
5744 bool MergeWithParentScope =
false;
5746 MergeWithParentScope =
5747 Rec->isLocalClass() && !
Function->isFunctionTemplateSpecialization();
5750 auto RebuildTypeSourceInfoForDefaultSpecialMembers = [&]() {
5756 "Special member needs to be defaulted");
5764 auto *NewRec = dyn_cast<CXXRecordDecl>(
Function->getDeclContext());
5765 const auto *PatternRec =
5767 if (!NewRec || !PatternRec)
5769 if (!PatternRec->isLambda())
5772 struct SpecialMemberTypeInfoRebuilder
5792 getDerived().TransformDecl(TL.
getNameLoc(),
T->getOriginalDecl()));
5794 return Base::TransformRecordType(TLB, TL);
5808 } IR{*
this, PatternRec, NewRec};
5811 assert(NewSI &&
"Type Transform failed?");
5813 Function->setTypeSourceInfo(NewSI);
5817 assert(NewParmSI &&
"Type transformation failed.");
5823 RebuildTypeSourceInfoForDefaultSpecialMembers();
5827 std::optional<ArrayRef<TemplateArgument>> Innermost;
5828 if (
auto *Primary =
Function->getPrimaryTemplate();
5831 Function->getTemplateSpecializationKind() !=
5833 auto It = llvm::find_if(Primary->redecls(),
5835 return cast<FunctionTemplateDecl>(RTD)
5836 ->isCompatibleWithDefinition();
5838 assert(It != Primary->redecls().end() &&
5839 "Should't get here without a definition");
5841 ->getTemplatedDecl()
5845 DC = (*It)->getLexicalDeclContext();
5846 Innermost.emplace(
Function->getTemplateSpecializationArgs()->asArray());
5849 Function, DC,
false, Innermost,
false, PatternDecl);
5867 if (addInstantiatedParametersToScope(
Function, PatternDecl,
Scope,
5883 if (
Context.getTargetInfo().getCXXABI().isMicrosoft() &&
5884 Ctor->isDefaultConstructor()) {
5890 Body =
SubstStmt(Pattern, TemplateArgs);
5899 checkReferenceToTULocalFromOtherTU(
Function, PointOfInstantiation);
5904 Listener->FunctionDefinitionInstantiated(
Function);
5914 bool ShouldSkipCG = [&] {
5915 auto *RD = dyn_cast<CXXRecordDecl>(
Function->getParent());
5916 if (!RD || !RD->isLambda())
5920 return Context.isUnevaluated() ||
Context.isImmediateFunctionContext();
5923 if (!ShouldSkipCG) {
5930 LocalInstantiations.
perform();
5932 GlobalInstantiations.perform();
5957 bool IsMemberSpec =
false;
5959 if (
auto *PartialSpec =
5960 dyn_cast<VarTemplatePartialSpecializationDecl>(FromVar)) {
5961 assert(PartialSpecArgs);
5962 IsMemberSpec = PartialSpec->isMemberSpecialization();
5964 PartialSpec, PartialSpecArgs->
asArray(),
false);
5967 IsMemberSpec =
VarTemplate->isMemberSpecialization();
5987 "don't have a definition to instantiate from");
6016 bool InstantiatingVarTemplate,
6020 bool InstantiatingVarTemplatePartialSpec =
6025 bool InstantiatingSpecFromTemplate =
6051 if (OldVar->
isUsed(
false))
6076 }
else if (PrevDeclForVarTemplateSpecialization) {
6077 Previous.addDecl(PrevDeclForVarTemplateSpecialization);
6081 if (!InstantiatingVarTemplate) {
6099 !InstantiatingSpecFromTemplate)
6106 dyn_cast<VarTemplateSpecializationDecl>(OldVar)) {
6114 Context.setManglingNumber(NewVar,
Context.getManglingNumber(OldVar));
6115 Context.setStaticLocalNumber(NewVar,
Context.getStaticLocalNumber(OldVar));
6118 if (InstantiatingVarTemplate || InstantiatingVarTemplatePartialSpec) {
6123 }
else if (InstantiatingSpecFromTemplate ||
6145 L->VariableDefinitionInstantiated(Var);
6171 if (!
Init.isInvalid()) {
6174 if (Var->
hasAttr<DLLImportAttr>() &&
6178 }
else if (InitExpr) {
6214 bool DefinitionRequired,
bool AtEndOfTU) {
6226 assert(PatternDecl &&
"no pattern for templated variable");
6231 dyn_cast<VarTemplateSpecializationDecl>(Var);
6242 (PatternDecl = PatternDecl->
getFirstDecl())->hasInit() &&
6250 "instantiating variable initializer");
6261 Recursive, AtEndOfTU);
6270 PreviousContext.
pop();
6274 LocalInstantiations.
perform();
6276 GlobalInstantiations.
perform();
6280 "not a static data member?");
6289 if (!Def && !DefinitionRequired) {
6296 Diag(PointOfInstantiation, diag::warn_var_template_missing)
6300 Diag(PointOfInstantiation, diag::note_inst_declaration_hint) << Var;
6311 PatternDecl, Def, TSK,
6312 DefinitionRequired))
6329 struct PassToConsumerRAII {
6336 ~PassToConsumerRAII() {
6337 Consumer.HandleCXXStaticMemberVarInstantiation(Var);
6339 } PassToConsumerRAII(
Consumer, Var);
6346 PointOfInstantiation);
6354 "instantiating variable definition");
6376 }
else if (!VarSpec) {
6421 PreviousContext.
pop();
6424 PassToConsumerRAII.Var = Var;
6431 LocalInstantiations.
perform();
6433 GlobalInstantiations.
perform();
6445 for (
const auto *
Init : Tmpl->
inits()) {
6448 if (!
Init->isWritten())
6453 if (
Init->isPackExpansion()) {
6455 TypeLoc BaseTL =
Init->getTypeSourceInfo()->getTypeLoc();
6459 bool ShouldExpand =
false;
6460 bool RetainExpansion =
false;
6464 TemplateArgs,
true, ShouldExpand,
6465 RetainExpansion, NumExpansions)) {
6467 New->setInvalidDecl();
6470 assert(ShouldExpand &&
"Partial instantiation of base initializer?");
6473 for (
unsigned I = 0; I != *NumExpansions; ++I) {
6487 Init->getSourceLocation(),
6488 New->getDeclName());
6496 BaseTInfo, TempInit.
get(),
6504 NewInits.push_back(NewInit.
get());
6519 if (
Init->isDelegatingInitializer() ||
Init->isBaseInitializer()) {
6522 Init->getSourceLocation(),
6523 New->getDeclName());
6526 New->setInvalidDecl();
6530 if (
Init->isBaseInitializer())
6532 New->getParent(), EllipsisLoc);
6536 }
else if (
Init->isMemberInitializer()) {
6538 Init->getMemberLocation(),
6543 New->setInvalidDecl();
6548 Init->getSourceLocation());
6549 }
else if (
Init->isIndirectMemberInitializer()) {
6552 Init->getMemberLocation(),
6553 Init->getIndirectMember(), TemplateArgs));
6555 if (!IndirectMember) {
6557 New->setInvalidDecl();
6562 Init->getSourceLocation());
6567 New->setInvalidDecl();
6569 NewInits.push_back(NewInit.
get());
6588 Instance = Instance->getCanonicalDecl();
6589 if (Pattern == Instance)
return true;
6590 Instance = Instance->getInstantiatedFromMemberTemplate();
6601 Instance = Instance->getCanonicalDecl();
6602 if (Pattern == Instance)
return true;
6603 Instance = Instance->getInstantiatedFromMemberTemplate();
6616 Instance->getCanonicalDecl());
6617 if (Pattern == Instance)
6619 Instance = Instance->getInstantiatedFromMember();
6630 Instance = Instance->getCanonicalDecl();
6631 if (Pattern == Instance)
return true;
6632 Instance = Instance->getInstantiatedFromMemberClass();
6643 Instance = Instance->getCanonicalDecl();
6644 if (Pattern == Instance)
return true;
6645 Instance = Instance->getInstantiatedFromMemberFunction();
6656 Instance = Instance->getCanonicalDecl();
6657 if (Pattern == Instance)
return true;
6658 Instance = Instance->getInstantiatedFromMemberEnum();
6685 bool OtherIsPackExpansion;
6687 if (
auto *OtherUUD = dyn_cast<T>(
Other)) {
6688 OtherIsPackExpansion = OtherUUD->isPackExpansion();
6690 }
else if (
auto *OtherUPD = dyn_cast<UsingPackDecl>(
Other)) {
6691 OtherIsPackExpansion =
true;
6692 OtherFrom = OtherUPD->getInstantiatedFromUsingDecl();
6693 }
else if (
auto *OtherUD = dyn_cast<UsingDecl>(
Other)) {
6694 OtherIsPackExpansion =
false;
6699 return Pattern->isPackExpansion() == OtherIsPackExpansion &&
6705 assert(Instance->isStaticDataMember());
6710 Instance = Instance->getCanonicalDecl();
6711 if (Pattern == Instance)
return true;
6712 Instance = Instance->getInstantiatedFromStaticDataMember();
6721 if (
auto *UUD = dyn_cast<UnresolvedUsingTypenameDecl>(D))
6724 if (
auto *UUD = dyn_cast<UnresolvedUsingValueDecl>(D))
6730 if (
auto *
Record = dyn_cast<CXXRecordDecl>(
Other))
6733 if (
auto *Function = dyn_cast<FunctionDecl>(
Other))
6736 if (
auto *
Enum = dyn_cast<EnumDecl>(
Other))
6739 if (
auto *Var = dyn_cast<VarDecl>(
Other))
6743 if (
auto *Temp = dyn_cast<ClassTemplateDecl>(
Other))
6746 if (
auto *Temp = dyn_cast<FunctionTemplateDecl>(
Other))
6749 if (
auto *PartialSpec =
6750 dyn_cast<ClassTemplatePartialSpecializationDecl>(
Other))
6754 if (
auto *Field = dyn_cast<FieldDecl>(
Other)) {
6755 if (!Field->getDeclName()) {
6762 if (
auto *Using = dyn_cast<UsingDecl>(
Other))
6765 if (
auto *Shadow = dyn_cast<UsingShadowDecl>(
Other))
6772template<
typename ForwardIterator>
6775 ForwardIterator first,
6776 ForwardIterator last) {
6777 for (; first != last; ++first)
6786 if (
NamedDecl *D = dyn_cast<NamedDecl>(DC)) {
6788 return cast_or_null<DeclContext>(ID);
6803 return cast<Decl>(DC)->getTemplateDepth() > Level;
6808 bool FindingInstantiatedContext) {
6846 if (
auto *BD = dyn_cast<BindingDecl>(FD);
6854 "found declaration pack but not pack expanding");
6884 bool NeedInstantiate =
false;
6886 NeedInstantiate = RD->isLocalClass();
6889 NeedInstantiate =
true;
6892 if (NeedInstantiate) {
6903 assert(Inst &&
"Failed to instantiate label??");
6910 if (!
Record->isDependentContext())
6919 dyn_cast<ClassTemplateSpecializationDecl>(
Record))
6920 ClassTemplate = Spec->getSpecializedTemplate()->getCanonicalDecl();
6931 if (
CXXRecordDecl *InstRecord = dyn_cast<CXXRecordDecl>(DC)) {
6935 = dyn_cast<ClassTemplateSpecializationDecl>(InstRecord)){
6955 auto *Guide = dyn_cast<CXXDeductionGuideDecl>(FD);
6956 if (Guide && Guide->isImplicit()) {
6964 Unpacked = Arg.pack_elements();
6977 if (
T.isNull() ||
T->containsErrors())
6987 assert(
SemaRef.RebuildingImmediateInvocation ||
7000 if (FindingInstantiatedContext &&
7003 Diag(Loc, diag::err_specialization_not_primary_template)
7020 if (!ParentDependsOnArgs)
7034 bool IsBeingInstantiated =
false;
7035 if (
auto *Spec = dyn_cast<CXXRecordDecl>(ParentDC)) {
7036 if (!Spec->isDependentContext()) {
7037 if (Spec->isEntityBeingDefined())
7038 IsBeingInstantiated =
true;
7040 diag::err_incomplete_type))
7043 ParentDC = Spec->getDefinitionOrSelf();
7082 }
else if (IsBeingInstantiated) {
7088 Diag(Loc, diag::err_member_not_yet_instantiated)
7101 Diag(Loc, diag::err_enumerator_does_not_exist)
7105 <<
Context.getCanonicalTagType(Spec);
7108 llvm_unreachable(
"Unable to find instantiation of declaration!");
7119 std::deque<PendingImplicitInstantiation> DelayedImplicitInstantiations;
7124 bool LocalInstantiation =
false;
7131 LocalInstantiation =
true;
7136 bool DefinitionRequired =
Function->getTemplateSpecializationKind() ==
7141 [
this, Inst, DefinitionRequired, AtEndOfTU](
FunctionDecl *CurFD) {
7143 DefinitionRequired, AtEndOfTU);
7149 DefinitionRequired, AtEndOfTU);
7151 Function->setInstantiationIsPending(
false);
7154 if (!LocalOnly &&
LangOpts.PCHInstantiateTemplates &&
7156 DelayedImplicitInstantiations.push_back(Inst);
7157 else if (!AtEndOfTU &&
Function->instantiationIsPending() &&
7158 !LocalInstantiation)
7159 DelayedImplicitInstantiations.push_back(Inst);
7168 "Not a static data member, nor a variable template"
7169 " specialization?");
7181 llvm_unreachable(
"Cannot instantitiate an undeclared specialization.");
7196 "instantiating variable definition");
7203 DefinitionRequired, AtEndOfTU);
7206 if (!DelayedImplicitInstantiations.empty())
7212 for (
auto *DD : Pattern->
ddiags()) {
7213 switch (DD->getKind()) {
Defines the clang::ASTContext interface.
Defines the C++ template declaration subclasses.
Defines the clang::Expr interface and subclasses for C++ expressions.
llvm::MachO::Record Record
@ ForExternalRedeclaration
The lookup results will be used for redeclaration of a name with external linkage; non-visible lookup...
@ ForVisibleRedeclaration
The lookup results will be used for redeclaration of a name, if an entity by that name already exists...
llvm::SmallVector< std::pair< const MemRegion *, SVal >, 4 > Bindings
static std::string toString(const clang::SanitizerSet &Sanitizers)
Produce a string containing comma-separated names of sanitizers in Sanitizers set.
This file declares semantic analysis functions specific to AMDGPU.
static bool hasAttr(const Decl *D, bool IgnoreImplicitAttr)
This file declares semantic analysis for CUDA constructs.
static const NamedDecl * getDefinition(const Decl *D)
This file declares semantic analysis for HLSL constructs.
This file declares semantic analysis for Objective-C.
This file declares semantic analysis for OpenMP constructs and clauses.
This file declares semantic analysis functions specific to Swift.
static void instantiateDependentAMDGPUWavesPerEUAttr(Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs, const AMDGPUWavesPerEUAttr &Attr, Decl *New)
static NamedDecl * findInstantiationOf(ASTContext &Ctx, NamedDecl *D, ForwardIterator first, ForwardIterator last)
static void instantiateDependentAMDGPUMaxNumWorkGroupsAttr(Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs, const AMDGPUMaxNumWorkGroupsAttr &Attr, Decl *New)
static void instantiateDependentAMDGPUFlatWorkGroupSizeAttr(Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs, const AMDGPUFlatWorkGroupSizeAttr &Attr, Decl *New)
static void sharedInstantiateConstructorDestructorAttr(Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs, const Attr *A, Decl *New, ASTContext &C)
static void instantiateDependentDiagnoseIfAttr(Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs, const DiagnoseIfAttr *DIA, const Decl *Tmpl, FunctionDecl *New)
static QualType adjustFunctionTypeForInstantiation(ASTContext &Context, FunctionDecl *D, TypeSourceInfo *TInfo)
Adjust the given function type for an instantiation of the given declaration, to cope with modificati...
static bool isRelevantAttr(Sema &S, const Decl *D, const Attr *A)
Determine whether the attribute A might be relevant to the declaration D.
static void instantiateDependentReqdWorkGroupSizeAttr(Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs, const ReqdWorkGroupSizeAttr &Attr, Decl *New)
#define CLAUSE_NOT_ON_DECLS(CLAUSE_NAME)
static bool isDependentContextAtLevel(DeclContext *DC, unsigned Level)
Determine whether the given context is dependent on template parameters at level Level or below.
static void instantiateDependentModeAttr(Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs, const ModeAttr &Attr, Decl *New)
static void instantiateDependentDeviceKernelAttr(Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs, const DeviceKernelAttr &Attr, Decl *New)
static void instantiateDependentCUDALaunchBoundsAttr(Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs, const CUDALaunchBoundsAttr &Attr, Decl *New)
static bool isDeclWithinFunction(const Decl *D)
static void instantiateDependentAssumeAlignedAttr(Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs, const AssumeAlignedAttr *Aligned, Decl *New)
static bool SubstQualifier(Sema &SemaRef, const DeclT *OldDecl, DeclT *NewDecl, const MultiLevelTemplateArgumentList &TemplateArgs)
static void collectUnexpandedParameterPacks(Sema &S, TemplateParameterList *Params, SmallVectorImpl< UnexpandedParameterPack > &Unexpanded)
static DeclT * getPreviousDeclForInstantiation(DeclT *D)
Get the previous declaration of a declaration for the purposes of template instantiation.
static Expr * instantiateDependentFunctionAttrCondition(Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs, const Attr *A, Expr *OldCond, const Decl *Tmpl, FunctionDecl *New)
static bool isInstantiationOf(ClassTemplateDecl *Pattern, ClassTemplateDecl *Instance)
static void instantiateDependentHLSLParamModifierAttr(Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs, const HLSLParamModifierAttr *Attr, Decl *New)
static void instantiateDependentAllocAlignAttr(Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs, const AllocAlignAttr *Align, Decl *New)
static bool isInstantiationOfStaticDataMember(VarDecl *Pattern, VarDecl *Instance)
static void instantiateOMPDeclareSimdDeclAttr(Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs, const OMPDeclareSimdDeclAttr &Attr, Decl *New)
Instantiation of 'declare simd' attribute and its arguments.
static void instantiateDependentAlignValueAttr(Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs, const AlignValueAttr *Aligned, Decl *New)
static void instantiateDependentAlignedAttr(Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs, const AlignedAttr *Aligned, Decl *New, bool IsPackExpansion)
static void instantiateOMPDeclareVariantAttr(Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs, const OMPDeclareVariantAttr &Attr, Decl *New)
Instantiation of 'declare variant' attribute and its arguments.
static void instantiateDependentEnableIfAttr(Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs, const EnableIfAttr *EIA, const Decl *Tmpl, FunctionDecl *New)
static void instantiateDependentAnnotationAttr(Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs, const AnnotateAttr *Attr, Decl *New)
static Sema::RetainOwnershipKind attrToRetainOwnershipKind(const Attr *A)
static void instantiateDependentOpenACCRoutineDeclAttr(Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs, const OpenACCRoutineDeclAttr *OldAttr, const Decl *Old, Decl *New)
static bool isInstantiationOfUnresolvedUsingDecl(T *Pattern, Decl *Other, ASTContext &Ctx)
static bool isInvalid(LocType Loc, bool *Invalid)
Defines the SourceManager interface.
Defines the clang::TypeLoc interface and its subclasses.
ASTConsumer - This is an abstract interface that should be implemented by clients that read ASTs.
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
void setInstantiatedFromUsingDecl(NamedDecl *Inst, NamedDecl *Pattern)
Remember that the using decl Inst is an instantiation of the using decl Pattern of a class template.
QualType mergeFunctionTypes(QualType, QualType, bool OfBlockPointer=false, bool Unqualified=false, bool AllowCXX=false, bool IsConditionalOperator=false)
NamedDecl * getInstantiatedFromUsingDecl(NamedDecl *Inst)
If the given using decl Inst is an instantiation of another (possibly unresolved) using decl,...
DeclarationNameTable DeclarationNames
bool hasSameType(QualType T1, QualType T2) const
Determine whether the given types T1 and T2 are equivalent.
void forEachMultiversionedFunctionVersion(const FunctionDecl *FD, llvm::function_ref< void(FunctionDecl *)> Pred) const
Visits all versions of a multiversioned function with the passed predicate.
OMPTraitInfo & getNewOMPTraitInfo()
Return a new OMPTraitInfo object owned by this context.
FieldDecl * getInstantiatedFromUnnamedFieldDecl(FieldDecl *Field) const
CanQualType UnsignedLongLongTy
CanQualType getCanonicalTagType(const TagDecl *TD) const
An abstract interface that should be implemented by listeners that want to be notified when an AST en...
Represents an access specifier followed by colon ':'.
static AccessSpecDecl * Create(ASTContext &C, AccessSpecifier AS, DeclContext *DC, SourceLocation ASLoc, SourceLocation ColonLoc)
SourceLocation getColonLoc() const
The location of the colon following the access specifier.
SourceLocation getAccessSpecifierLoc() const
The location of the access specifier.
Attr - This represents one attribute.
attr::Kind getKind() const
Attr * clone(ASTContext &C) const
SourceLocation getLocation() const
SourceRange getRange() const
SourceLocation getLoc() const
Represents a C++ declaration that introduces decls from somewhere else.
shadow_range shadows() const
A binding in a decomposition declaration.
static BindingDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation IdLoc, IdentifierInfo *Id, QualType T)
ArrayRef< BindingDecl * > getBindingPackDecls() const
Represents the builtin template declaration which is used to implement __make_integer_seq and other b...
Represents a C++ constructor within a class.
bool isDefaultConstructor() const
Whether this constructor is a default constructor (C++ [class.ctor]p5), which can be used to default-...
static CXXConstructorDecl * Create(ASTContext &C, CXXRecordDecl *RD, SourceLocation StartLoc, const DeclarationNameInfo &NameInfo, QualType T, TypeSourceInfo *TInfo, ExplicitSpecifier ES, bool UsesFPIntrin, bool isInline, bool isImplicitlyDeclared, ConstexprSpecKind ConstexprKind, InheritedConstructor Inherited=InheritedConstructor(), const AssociatedConstraint &TrailingRequiresClause={})
Represents a C++ conversion function within a class.
static CXXConversionDecl * Create(ASTContext &C, CXXRecordDecl *RD, SourceLocation StartLoc, const DeclarationNameInfo &NameInfo, QualType T, TypeSourceInfo *TInfo, bool UsesFPIntrin, bool isInline, ExplicitSpecifier ES, ConstexprSpecKind ConstexprKind, SourceLocation EndLocation, const AssociatedConstraint &TrailingRequiresClause={})
Represents a C++ deduction guide declaration.
static CXXDeductionGuideDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, ExplicitSpecifier ES, const DeclarationNameInfo &NameInfo, QualType T, TypeSourceInfo *TInfo, SourceLocation EndLocation, CXXConstructorDecl *Ctor=nullptr, DeductionCandidate Kind=DeductionCandidate::Normal, const AssociatedConstraint &TrailingRequiresClause={}, const CXXDeductionGuideDecl *SourceDG=nullptr, SourceDeductionGuideKind SK=SourceDeductionGuideKind::None)
Represents a C++ destructor within a class.
static CXXDestructorDecl * Create(ASTContext &C, CXXRecordDecl *RD, SourceLocation StartLoc, const DeclarationNameInfo &NameInfo, QualType T, TypeSourceInfo *TInfo, bool UsesFPIntrin, bool isInline, bool isImplicitlyDeclared, ConstexprSpecKind ConstexprKind, const AssociatedConstraint &TrailingRequiresClause={})
Represents a static or instance method of a struct/union/class.
static CXXMethodDecl * Create(ASTContext &C, CXXRecordDecl *RD, SourceLocation StartLoc, const DeclarationNameInfo &NameInfo, QualType T, TypeSourceInfo *TInfo, StorageClass SC, bool UsesFPIntrin, bool isInline, ConstexprSpecKind ConstexprKind, SourceLocation EndLocation, const AssociatedConstraint &TrailingRequiresClause={})
Represents a C++ struct/union/class.
static CXXRecordDecl * Create(const ASTContext &C, TagKind TK, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, CXXRecordDecl *PrevDecl=nullptr)
bool isGenericLambda() const
Determine whether this class describes a generic lambda function object (i.e.
unsigned getLambdaDependencyKind() const
const FunctionDecl * isLocalClass() const
If the class is a local class [class.local], returns the enclosing function declaration.
bool isLambda() const
Determine whether this class describes a lambda function object.
CXXRecordDecl * getDefinition() const
static CXXRecordDecl * CreateLambda(const ASTContext &C, DeclContext *DC, TypeSourceInfo *Info, SourceLocation Loc, unsigned DependencyKind, bool IsGeneric, LambdaCaptureDefault CaptureDefault)
TemplateSpecializationKind getTemplateSpecializationKind() const
Determine whether this particular class is a specialization or instantiation of a class template or m...
TypeSourceInfo * getLambdaTypeInfo() const
void setInstantiationOfMemberClass(CXXRecordDecl *RD, TemplateSpecializationKind TSK)
Specify that this record is an instantiation of the member class RD.
bool isInjectedClassName() const
Determines whether this declaration represents the injected class name.
LambdaCaptureDefault getLambdaCaptureDefault() const
void setDescribedClassTemplate(ClassTemplateDecl *Template)
CXXRecordDecl * getCanonicalDecl() override
Retrieves the "canonical" declaration of the given declaration.
Represents a C++ nested-name-specifier or a global scope specifier.
void Adopt(NestedNameSpecifierLoc Other)
Adopt an existing nested-name-specifier (with source-range information).
Declaration of a class template.
void AddPartialSpecialization(ClassTemplatePartialSpecializationDecl *D, void *InsertPos)
Insert the specified partial specialization knowing that it is not already in.
ClassTemplateDecl * getMostRecentDecl()
CXXRecordDecl * getTemplatedDecl() const
Get the underlying class declarations of the template.
llvm::FoldingSetVector< ClassTemplatePartialSpecializationDecl > & getPartialSpecializations() const
Retrieve the set of partial specializations of this class template.
ClassTemplatePartialSpecializationDecl * findPartialSpecialization(ArrayRef< TemplateArgument > Args, TemplateParameterList *TPL, void *&InsertPos)
Return the partial specialization with the provided arguments if it exists, otherwise return the inse...
static ClassTemplateDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation L, DeclarationName Name, TemplateParameterList *Params, NamedDecl *Decl)
Create a class template node.
ClassTemplateDecl * getCanonicalDecl() override
Retrieves the "canonical" declaration of the given declaration.
ClassTemplatePartialSpecializationDecl * findPartialSpecInstantiatedFromMember(ClassTemplatePartialSpecializationDecl *D)
Find a class template partial specialization which was instantiated from the given member partial spe...
void AddSpecialization(ClassTemplateSpecializationDecl *D, void *InsertPos)
Insert the specified specialization knowing that it is not already in.
void setCommonPtr(Common *C)
Common * getCommonPtr() const
ClassTemplateSpecializationDecl * findSpecialization(ArrayRef< TemplateArgument > Args, void *&InsertPos)
Return the specialization with the provided arguments if it exists, otherwise return the insertion po...
void setInstantiatedFromMember(ClassTemplatePartialSpecializationDecl *PartialSpec)
static ClassTemplatePartialSpecializationDecl * Create(ASTContext &Context, TagKind TK, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, TemplateParameterList *Params, ClassTemplateDecl *SpecializedTemplate, ArrayRef< TemplateArgument > Args, CanQualType CanonInjectedTST, ClassTemplatePartialSpecializationDecl *PrevDecl)
TemplateParameterList * getTemplateParameters() const
Get the list of template parameters.
Represents a class template specialization, which refers to a class template with a given set of temp...
TemplateSpecializationKind getSpecializationKind() const
Determine the kind of specialization that this declaration represents.
const ASTTemplateArgumentListInfo * getTemplateArgsAsWritten() const
Retrieve the template argument list as written in the sources, if any.
ClassTemplateDecl * getSpecializedTemplate() const
Retrieve the template that this specialization specializes.
static ClassTemplateSpecializationDecl * Create(ASTContext &Context, TagKind TK, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, ClassTemplateDecl *SpecializedTemplate, ArrayRef< TemplateArgument > Args, bool StrictPackMatch, ClassTemplateSpecializationDecl *PrevDecl)
SourceLocation getPointOfInstantiation() const
Get the point of instantiation (if any), or null if none.
void setExternKeywordLoc(SourceLocation Loc)
Sets the location of the extern keyword.
void setSpecializationKind(TemplateSpecializationKind TSK)
SourceLocation getExternKeywordLoc() const
Gets the location of the extern keyword, if present.
SourceLocation getTemplateKeywordLoc() const
Gets the location of the template keyword, if present.
void setTemplateKeywordLoc(SourceLocation Loc)
Sets the location of the template keyword.
void setTemplateArgsAsWritten(const ASTTemplateArgumentListInfo *ArgsWritten)
Set the template argument list as written in the sources.
Declaration of a C++20 concept.
const TypeClass * getTypePtr() const
Represents a shadow constructor declaration introduced into a class by a C++11 using-declaration that...
A POD class for pairing a NamedDecl* with an access specifier.
static DeclAccessPair make(NamedDecl *D, AccessSpecifier AS)
DeclContext - This is used only as base class of specific decl types that can act as declaration cont...
DeclContext * getParent()
getParent - Returns the containing DeclContext.
bool Equals(const DeclContext *DC) const
Determine whether this declaration context is equivalent to the declaration context DC.
bool isFileContext() const
void makeDeclVisibleInContext(NamedDecl *D)
Makes a declaration visible within this context.
DeclContextLookupResult lookup_result
bool isDependentContext() const
Determines whether this context is dependent on a template parameter.
lookup_result lookup(DeclarationName Name) const
lookup - Find the declarations (if any) with the given Name in this context.
DeclContext * getRedeclContext()
getRedeclContext - Retrieve the context in which an entity conflicts with other entities of the same ...
void addDecl(Decl *D)
Add the declaration D into this context.
decl_iterator decls_end() const
ddiag_range ddiags() const
decl_range decls() const
decls_begin/decls_end - Iterate over the declarations stored in this context.
bool isFunctionOrMethod() const
void addHiddenDecl(Decl *D)
Add the declaration D to this context without modifying any lookup tables.
decl_iterator decls_begin() const
static DeclRefExpr * Create(const ASTContext &Context, NestedNameSpecifierLoc QualifierLoc, SourceLocation TemplateKWLoc, ValueDecl *D, bool RefersToEnclosingVariableOrCapture, SourceLocation NameLoc, QualType T, ExprValueKind VK, NamedDecl *FoundD=nullptr, const TemplateArgumentListInfo *TemplateArgs=nullptr, NonOdrUseReason NOUR=NOUR_None)
Decl - This represents one declaration (or definition), e.g.
Decl * getPreviousDecl()
Retrieve the previous declaration that declares the same entity as this declaration,...
SourceLocation getEndLoc() const LLVM_READONLY
FriendObjectKind getFriendObjectKind() const
Determines whether this declaration is the object of a friend declaration and, if so,...
bool isImplicit() const
isImplicit - Indicates whether the declaration was implicitly generated by the implementation.
void setLocalExternDecl()
Changes the namespace of this declaration to reflect that it's a function-local extern declaration.
virtual bool isOutOfLine() const
Determine whether this declaration is declared out of line (outside its semantic context).
void setInvalidDecl(bool Invalid=true)
setInvalidDecl - Indicates the Decl had a semantic error.
bool isInIdentifierNamespace(unsigned NS) const
@ FOK_None
Not a friend object.
bool isReferenced() const
Whether any declaration of this entity was referenced.
unsigned getTemplateDepth() const
Determine the number of levels of template parameter surrounding this declaration.
void setObjectOfFriendDecl(bool PerformFriendInjection=false)
Changes the namespace of this declaration to reflect that it's the object of a friend declaration.
bool isFromASTFile() const
Determine whether this declaration came from an AST file (such as a precompiled header or module) rat...
bool isInLocalScopeForInstantiation() const
Determine whether a substitution into this declaration would occur as part of a substitution into a d...
DeclContext * getNonTransparentDeclContext()
Return the non transparent context.
bool isInvalidDecl() const
bool isLocalExternDecl() const
Determine whether this is a block-scope declaration with linkage.
llvm::iterator_range< specific_attr_iterator< T > > specific_attrs() const
void setAccess(AccessSpecifier AS)
SourceLocation getLocation() const
const char * getDeclKindName() const
@ IDNS_Ordinary
Ordinary names.
void setImplicit(bool I=true)
void setReferenced(bool R=true)
void setIsUsed()
Set whether the declaration is used, in the sense of odr-use.
bool isUsed(bool CheckUsedAttr=true) const
Whether any (re-)declaration of the entity was used, meaning that a definition is required.
DeclContext * getDeclContext()
AccessSpecifier getAccess() const
SourceLocation getBeginLoc() const LLVM_READONLY
DeclContext * getLexicalDeclContext()
getLexicalDeclContext - The declaration context where this Decl was lexically declared (LexicalDC).
void setNonMemberOperator()
Specifies that this declaration is a C++ overloaded non-member.
void setLexicalDeclContext(DeclContext *DC)
void setVisibleDespiteOwningModule()
Set that this declaration is globally visible, even if it came from a module that is not visible.
DeclarationNameLoc - Additional source/type location info for a declaration name.
static DeclarationNameLoc makeNamedTypeLoc(TypeSourceInfo *TInfo)
Construct location information for a constructor, destructor or conversion operator.
The name of a declaration.
@ CXXConversionFunctionName
NameKind getNameKind() const
Determine what kind of name this is.
Represents a ValueDecl that came out of a declarator.
SourceLocation getInnerLocStart() const
Return start of source range ignoring outer template declarations.
TemplateParameterList * getTemplateParameterList(unsigned index) const
SourceLocation getTypeSpecStartLoc() const
SourceLocation getBeginLoc() const LLVM_READONLY
const AssociatedConstraint & getTrailingRequiresClause() const
Get the constraint-expression introduced by the trailing requires-clause in the function/member decla...
unsigned getNumTemplateParameterLists() const
void setTypeSourceInfo(TypeSourceInfo *TI)
NestedNameSpecifierLoc getQualifierLoc() const
Retrieve the nested-name-specifier (with source-location information) that qualifies the name of this...
TypeSourceInfo * getTypeSourceInfo() const
A decomposition declaration.
ArrayRef< BindingDecl * > bindings() const
static DecompositionDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, SourceLocation LSquareLoc, QualType T, TypeSourceInfo *TInfo, StorageClass S, ArrayRef< BindingDecl * > Bindings)
Provides information about a dependent function-template specialization declaration.
RAII object that enters a new function expression evaluation context.
RAII object that enters a new expression evaluation context.
An instance of this object exists for each enum constant that is defined.
enumerator_range enumerators() const
bool isScoped() const
Returns true if this is a C++11 scoped enumeration.
bool isScopedUsingClassTag() const
Returns true if this is a C++11 scoped enumeration.
static EnumDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, EnumDecl *PrevDecl, bool IsScoped, bool IsScopedUsingClassTag, bool IsFixed)
TypeSourceInfo * getIntegerTypeSourceInfo() const
Return the type source info for the underlying integer type, if no type source info exists,...
bool isFixed() const
Returns true if this is an Objective-C, C++11, or Microsoft-style enumeration with a fixed underlying...
EnumDecl * getCanonicalDecl() override
Retrieves the "canonical" declaration of the given declaration.
QualType getIntegerType() const
Return the integer type this enum decl corresponds to.
EnumDecl * getDefinition() const
TemplateSpecializationKind getTemplateSpecializationKind() const
If this enumeration is a member of a specialization of a templated class, determine what kind of temp...
Store information needed for an explicit specifier.
ExplicitSpecKind getKind() const
bool isInvalid() const
Determine if the explicit specifier is invalid.
static ExplicitSpecifier Invalid()
const Expr * getExpr() const
static ExplicitSpecifier getFromDecl(FunctionDecl *Function)
This represents one expression.
static bool isPotentialConstantExprUnevaluated(Expr *E, const FunctionDecl *FD, SmallVectorImpl< PartialDiagnosticAt > &Diags)
isPotentialConstantExprUnevaluated - Return true if this expression might be usable in a constant exp...
bool isValueDependent() const
Determines whether the value of this expression depends on.
std::optional< llvm::APSInt > getIntegerConstantExpr(const ASTContext &Ctx) const
isIntegerConstantExpr - Return the value if this expression is a valid integer constant expression.
bool isConstantInitializer(ASTContext &Ctx, bool ForRef, const Expr **Culprit=nullptr) const
isConstantInitializer - Returns true if this expression can be emitted to IR as a constant,...
SourceLocation getExprLoc() const LLVM_READONLY
getExprLoc - Return the preferred location for the arrow when diagnosing a problem with a generic exp...
Declaration context for names declared as extern "C" in C++.
Abstract interface for external sources of AST nodes.
Represents difference between two FPOptions values.
Represents a member of a struct/union/class.
bool isMutable() const
Determines whether this field is mutable (C++ only).
InClassInitStyle getInClassInitStyle() const
Get the kind of (C++11) default member initializer that this field has.
Expr * getBitWidth() const
Returns the expression that represents the bit width, if this field is a bit field.
FriendDecl - Represents the declaration of a friend entity, which can be a function,...
bool isUnsupportedFriend() const
Determines if this friend kind is unsupported.
static FriendDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation L, FriendUnion Friend_, SourceLocation FriendL, SourceLocation EllipsisLoc={}, ArrayRef< TemplateParameterList * > FriendTypeTPLists={})
SourceLocation getFriendLoc() const
Retrieves the location of the 'friend' keyword.
void setUnsupportedFriend(bool Unsupported)
SourceRange getSourceRange() const override LLVM_READONLY
Retrieves the source range for the friend declaration.
SourceLocation getEllipsisLoc() const
Retrieves the location of the '...', if present.
NamedDecl * getFriendDecl() const
If this friend declaration doesn't name a type, return the inner declaration.
TypeSourceInfo * getFriendType() const
If this friend declaration names an (untemplated but possibly dependent) type, return the type; other...
bool isPackExpansion() const
Declaration of a friend template.
static DefaultedOrDeletedFunctionInfo * Create(ASTContext &Context, ArrayRef< DeclAccessPair > Lookups, StringLiteral *DeletedMessage=nullptr)
Represents a function declaration or definition.
void setInstantiationIsPending(bool IC)
State that the instantiation of this function is pending.
static FunctionDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, SourceLocation NLoc, DeclarationName N, QualType T, TypeSourceInfo *TInfo, StorageClass SC, bool UsesFPIntrin=false, bool isInlineSpecified=false, bool hasWrittenPrototype=true, ConstexprSpecKind ConstexprKind=ConstexprSpecKind::Unspecified, const AssociatedConstraint &TrailingRequiresClause={})
const ParmVarDecl * getParamDecl(unsigned i) const
Stmt * getBody(const FunctionDecl *&Definition) const
Retrieve the body (definition) of the function.
ConstexprSpecKind getConstexprKind() const
FunctionTemplateDecl * getDescribedFunctionTemplate() const
Retrieves the function template that is described by this function declaration.
bool isThisDeclarationADefinition() const
Returns whether this specific declaration of the function is also a definition that does not contain ...
bool isDestroyingOperatorDelete() const
Determine whether this is a destroying operator delete.
StringLiteral * getDeletedMessage() const
Get the message that indicates why this function was deleted.
bool isInlined() const
Determine whether this function should be inlined, because it is either marked "inline" or "constexpr...
bool UsesFPIntrin() const
Determine whether the function was declared in source context that requires constrained FP intrinsics...
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...
bool isExplicitlyDefaulted() const
Whether this function is explicitly defaulted.
bool hasWrittenPrototype() const
Whether this function has a written prototype.
FunctionDecl * getCanonicalDecl() override
Retrieves the "canonical" declaration of the given declaration.
DependentFunctionTemplateSpecializationInfo * getDependentSpecializationInfo() const
bool isDeleted() const
Whether this function has been deleted.
StorageClass getStorageClass() const
Returns the storage class as written in the source.
bool isOutOfLine() const override
Determine whether this is or was instantiated from an out-of-line definition of a member function.
bool FriendConstraintRefersToEnclosingTemplate() const
bool isDeletedAsWritten() const
bool isPureVirtual() const
Whether this virtual function is pure, i.e.
bool isLateTemplateParsed() const
Whether this templated function will be late parsed.
bool hasSkippedBody() const
True if the function was a definition but its body was skipped.
FunctionDecl * getDefinition()
Get the definition for this declaration.
bool isTypeAwareOperatorNewOrDelete() const
Determine whether this is a type aware operator new or delete.
bool isThisDeclarationInstantiatedFromAFriendDefinition() const
Determine whether this specific declaration of the function is a friend declaration that was instanti...
bool isDefaulted() const
Whether this function is defaulted.
SourceRange getSourceRange() const override LLVM_READONLY
Source range that this declaration covers.
bool isVirtualAsWritten() const
Whether this function is marked as virtual explicitly.
unsigned getNumParams() const
Return the number of parameters this function must have based on its FunctionType.
DeclarationNameInfo getNameInfo() const
bool hasBody(const FunctionDecl *&Definition) const
Returns true if the function has a body.
bool isDefined(const FunctionDecl *&Definition, bool CheckForPendingFriendDefinition=false) const
Returns true if the function has a definition that does not need to be instantiated.
FunctionDecl * getPreviousDecl()
Return the previous declaration of this declaration or NULL if this is the first declaration.
bool isInlineSpecified() const
Determine whether the "inline" keyword was specified for this function.
DefaultedOrDeletedFunctionInfo * getDefalutedOrDeletedInfo() const
bool willHaveBody() const
True if this function will eventually have a body, once it's fully parsed.
const ASTTemplateArgumentListInfo * getTemplateSpecializationArgsAsWritten() const
Retrieve the template argument list as written in the sources, if any.
Represents a prototype with parameter type info, e.g.
ExceptionSpecificationType getExceptionSpecType() const
Get the kind of exception specification on this function.
QualType getParamType(unsigned i) const
bool hasExceptionSpec() const
Return whether this function has any kind of exception spec.
ExtProtoInfo getExtProtoInfo() const
FunctionDecl * getExceptionSpecTemplate() const
If this function type has an uninstantiated exception specification, this is the function whose excep...
ArrayRef< QualType > getParamTypes() const
Declaration of a template function.
FunctionTemplateDecl * getCanonicalDecl() override
Retrieves the "canonical" declaration of the given declaration.
FunctionDecl * getTemplatedDecl() const
Get the underlying function declaration of the template.
FunctionTemplateDecl * getInstantiatedFromMemberTemplate() const
void setInstantiatedFromMemberTemplate(FunctionTemplateDecl *D)
static FunctionTemplateDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation L, DeclarationName Name, TemplateParameterList *Params, NamedDecl *Decl)
Create a function template node.
ParmVarDecl * getParam(unsigned i) const
void setParam(unsigned i, ParmVarDecl *VD)
ExtInfo getExtInfo() const
bool getNoReturnAttr() const
Determine whether this function type includes the GNU noreturn attribute.
QualType getReturnType() const
HLSLBufferDecl - Represent a cbuffer or tbuffer declaration.
One of these records is kept for each identifier that is lexed.
bool isStr(const char(&Str)[StrLen]) const
Return true if this is the identifier for the specified string.
Represents a field injected from an anonymous union/struct into the parent scope.
unsigned getChainingSize() const
static IndirectFieldDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation L, const IdentifierInfo *Id, QualType T, MutableArrayRef< NamedDecl * > CH)
ArrayRef< NamedDecl * > chain() const
Description of a constructor that was inherited from a base class.
const TypeClass * getTypePtr() const
static IntegerLiteral * Create(const ASTContext &C, const llvm::APInt &V, QualType type, SourceLocation l)
Returns a new integer literal with value 'V' and type 'type'.
Represents the declaration of a label.
static LabelDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation IdentL, IdentifierInfo *II)
A stack-allocated class that identifies which local variable declaration instantiations are present i...
SmallVector< ValueDecl *, 4 > DeclArgumentPack
A set of declarations.
void InstantiatedLocal(const Decl *D, Decl *Inst)
void InstantiatedLocalPackArg(const Decl *D, VarDecl *Inst)
void MakeInstantiatedLocalArgPack(const Decl *D)
Represents the results of name lookup.
An instance of this class represents the declaration of a property member.
static MSPropertyDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation L, DeclarationName N, QualType T, TypeSourceInfo *TInfo, SourceLocation StartL, IdentifierInfo *Getter, IdentifierInfo *Setter)
IdentifierInfo * getGetterId() const
IdentifierInfo * getSetterId() const
Provides information a specialization of a member of a class template, which may be a member function...
Data structure that captures multiple levels of template argument lists for use in template instantia...
const ArgList & getInnermost() const
Retrieve the innermost template argument list.
void addOuterTemplateArguments(Decl *AssociatedDecl, ArgList Args, bool Final)
Add a new outmost level to the multi-level template argument list.
void setKind(TemplateSubstitutionKind K)
void addOuterRetainedLevels(unsigned Num)
unsigned getNumRetainedOuterLevels() const
This represents a decl that may have a name.
IdentifierInfo * getIdentifier() const
Get the identifier that names this declaration, if there is one.
DeclarationName getDeclName() const
Get the actual, stored name of the declaration, which may be a special name.
bool hasLinkage() const
Determine whether this declaration has linkage.
bool isCXXClassMember() const
Determine whether this declaration is a C++ class member.
Represents a C++ namespace alias.
NestedNameSpecifierLoc getQualifierLoc() const
Retrieve the nested-name-specifier that qualifies the name of the namespace, with source-location inf...
SourceLocation getAliasLoc() const
Returns the location of the alias name, i.e.
static NamespaceAliasDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation NamespaceLoc, SourceLocation AliasLoc, IdentifierInfo *Alias, NestedNameSpecifierLoc QualifierLoc, SourceLocation IdentLoc, NamespaceBaseDecl *Namespace)
SourceLocation getNamespaceLoc() const
Returns the location of the namespace keyword.
SourceLocation getTargetNameLoc() const
Returns the location of the identifier in the named namespace.
NamespaceDecl * getNamespace()
Retrieve the namespace declaration aliased by this directive.
Represent a C++ namespace.
A C++ nested-name-specifier augmented with source location information.
SourceRange getSourceRange() const LLVM_READONLY
Retrieve the source range covering the entirety of this nested-name-specifier.
bool hasQualifier() const
Evaluates true when this nested-name-specifier location is non-empty.
NonTypeTemplateParmDecl - Declares a non-type template parameter, e.g., "Size" in.
bool isPackExpansion() const
Whether this parameter pack is a pack expansion.
bool hasDefaultArgument() const
Determine whether this template parameter has a default argument.
unsigned getPosition() const
Get the position of the template parameter within its parameter list.
bool defaultArgumentWasInherited() const
Determines whether the default argument was inherited from a previous declaration of this template.
TypeSourceInfo * getExpansionTypeSourceInfo(unsigned I) const
Retrieve a particular expansion type source info within an expanded parameter pack.
unsigned getNumExpansionTypes() const
Retrieves the number of expansion types in an expanded parameter pack.
const TemplateArgumentLoc & getDefaultArgument() const
Retrieve the default argument, if any.
bool isExpandedParameterPack() const
Whether this parameter is a non-type template parameter pack that has a known list of different types...
static NonTypeTemplateParmDecl * Create(const ASTContext &C, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, unsigned D, unsigned P, const IdentifierInfo *Id, QualType T, bool ParameterPack, TypeSourceInfo *TInfo)
bool isParameterPack() const
Whether this parameter is a non-type template parameter pack.
unsigned getDepth() const
Get the nesting depth of the template parameter.
Expr * getPlaceholderTypeConstraint() const
Return the constraint introduced by the placeholder type of this non-type template parameter (if any)...
void setDefaultArgument(const ASTContext &C, const TemplateArgumentLoc &DefArg)
Set the default argument for this template parameter, and whether that default argument was inherited...
This represents 'pragma omp allocate ...' directive.
clauselist_range clauselists()
Pseudo declaration for capturing expressions.
This represents 'pragma omp declare mapper ...' directive.
OMPDeclareMapperDecl * getPrevDeclInScope()
Get reference to previous declare mapper construct in the same scope with the same name.
clauselist_iterator clauselist_begin()
clauselist_range clauselists()
DeclarationName getVarName()
Get the name of the variable declared in the mapper.
Expr * getMapperVarRef()
Get the variable declared in the mapper.
This represents 'pragma omp declare reduction ...' directive.
Expr * getInitializer()
Get initializer expression (if specified) of the declare reduction construct.
Expr * getInitPriv()
Get Priv variable of the initializer.
Expr * getCombinerOut()
Get Out variable of the combiner.
Expr * getCombinerIn()
Get In variable of the combiner.
Expr * getCombiner()
Get combiner expression of the declare reduction construct.
OMPDeclareReductionDecl * getPrevDeclInScope()
Get reference to previous declare reduction construct in the same scope with the same name.
Expr * getInitOrig()
Get Orig variable of the initializer.
OMPDeclareReductionInitKind getInitializerKind() const
Get initializer kind.
This represents 'pragma omp groupprivate ...' directive.
This represents 'pragma omp requires...' directive.
This represents 'pragma omp threadprivate ...' directive.
Helper data structure representing the traits in a match clause of an declare variant or metadirectiv...
bool anyScoreOrCondition(llvm::function_ref< bool(Expr *&, bool)> Cond)
Represents a field declaration created by an @defs(...).
static OpaquePtr make(QualType P)
static OpenACCBindClause * Create(const ASTContext &C, SourceLocation BeginLoc, SourceLocation LParenLoc, const IdentifierInfo *ID, SourceLocation EndLoc)
OpenACCDirectiveKind getDirectiveKind() const
ArrayRef< const OpenACCClause * > clauses() const
SourceLocation getDirectiveLoc() const
static OpenACCCopyClause * Create(const ASTContext &C, OpenACCClauseKind Spelling, SourceLocation BeginLoc, SourceLocation LParenLoc, OpenACCModifierKind Mods, ArrayRef< Expr * > VarList, SourceLocation EndLoc)
static OpenACCCopyInClause * Create(const ASTContext &C, OpenACCClauseKind Spelling, SourceLocation BeginLoc, SourceLocation LParenLoc, OpenACCModifierKind Mods, ArrayRef< Expr * > VarList, SourceLocation EndLoc)
static OpenACCCopyOutClause * Create(const ASTContext &C, OpenACCClauseKind Spelling, SourceLocation BeginLoc, SourceLocation LParenLoc, OpenACCModifierKind Mods, ArrayRef< Expr * > VarList, SourceLocation EndLoc)
static OpenACCCreateClause * Create(const ASTContext &C, OpenACCClauseKind Spelling, SourceLocation BeginLoc, SourceLocation LParenLoc, OpenACCModifierKind Mods, ArrayRef< Expr * > VarList, SourceLocation EndLoc)
static OpenACCDevicePtrClause * Create(const ASTContext &C, SourceLocation BeginLoc, SourceLocation LParenLoc, ArrayRef< Expr * > VarList, SourceLocation EndLoc)
static OpenACCDeviceResidentClause * Create(const ASTContext &C, SourceLocation BeginLoc, SourceLocation LParenLoc, ArrayRef< Expr * > VarList, SourceLocation EndLoc)
A 'device_type' or 'dtype' clause, takes a list of either an 'asterisk' or an identifier.
static OpenACCDeviceTypeClause * Create(const ASTContext &C, OpenACCClauseKind K, SourceLocation BeginLoc, SourceLocation LParenLoc, ArrayRef< DeviceTypeArgument > Archs, SourceLocation EndLoc)
static OpenACCLinkClause * Create(const ASTContext &C, SourceLocation BeginLoc, SourceLocation LParenLoc, ArrayRef< Expr * > VarList, SourceLocation EndLoc)
static OpenACCNoHostClause * Create(const ASTContext &Ctx, SourceLocation BeginLoc, SourceLocation EndLoc)
static OpenACCPresentClause * Create(const ASTContext &C, SourceLocation BeginLoc, SourceLocation LParenLoc, ArrayRef< Expr * > VarList, SourceLocation EndLoc)
SourceLocation getRParenLoc() const
const Expr * getFunctionReference() const
SourceLocation getLParenLoc() const
static OpenACCSeqClause * Create(const ASTContext &Ctx, SourceLocation BeginLoc, SourceLocation EndLoc)
static OpenACCVectorClause * Create(const ASTContext &Ctx, SourceLocation BeginLoc, SourceLocation LParenLoc, Expr *IntExpr, SourceLocation EndLoc)
static OpenACCWorkerClause * Create(const ASTContext &Ctx, SourceLocation BeginLoc, SourceLocation LParenLoc, Expr *IntExpr, SourceLocation EndLoc)
SourceLocation getEllipsisLoc() const
TypeLoc getPatternLoc() const
Represents a parameter to a function.
Represents a #pragma detect_mismatch line.
PrettyDeclStackTraceEntry - If a crash occurs in the parser while parsing something related to a decl...
A (possibly-)qualified type.
bool isNull() const
Return true if this QualType doesn't point to a type yet.
QualType getNonReferenceType() const
If Type is a reference type (e.g., const int&), returns the type that the reference refers to ("const...
QualType getAtomicUnqualifiedType() const
Remove all qualifiers including _Atomic.
The collection of all-type qualifiers we support.
Represents a struct/union/class.
bool isAnonymousStructOrUnion() const
Whether this is an anonymous struct or union.
Wrapper for source info for record types.
Declaration of a redeclarable template.
void setInstantiatedFromMemberTemplate(RedeclarableTemplateDecl *TD)
decl_type * getFirstDecl()
Return the first declaration of this declaration or itself if this is the only declaration.
void setPreviousDecl(decl_type *PrevDecl)
Set the previous declaration.
Represents the body of a requires-expression.
static RequiresExprBodyDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation StartLoc)
Scope - A scope is a transient data structure that is used while parsing the program.
void addAMDGPUFlatWorkGroupSizeAttr(Decl *D, const AttributeCommonInfo &CI, Expr *Min, Expr *Max)
addAMDGPUFlatWorkGroupSizeAttr - Adds an amdgpu_flat_work_group_size attribute to a particular declar...
void addAMDGPUWavesPerEUAttr(Decl *D, const AttributeCommonInfo &CI, Expr *Min, Expr *Max)
addAMDGPUWavePersEUAttr - Adds an amdgpu_waves_per_eu attribute to a particular declaration.
void addAMDGPUMaxNumWorkGroupsAttr(Decl *D, const AttributeCommonInfo &CI, Expr *XExpr, Expr *YExpr, Expr *ZExpr)
addAMDGPUMaxNumWorkGroupsAttr - Adds an amdgpu_max_num_work_groups attribute to a particular declarat...
SemaDiagnosticBuilder Diag(SourceLocation Loc, unsigned DiagID, bool DeferHint=false)
Emit a diagnostic.
void checkAllowedInitializer(VarDecl *VD)
QualType getInoutParameterType(QualType Ty)
bool inferObjCARCLifetime(ValueDecl *decl)
void AddXConsumedAttr(Decl *D, const AttributeCommonInfo &CI, Sema::RetainOwnershipKind K, bool IsTemplateInstantiation)
A type to represent all the data for an OpenACC Clause that has been parsed, but not yet created/sema...
OpenACCDirectiveKind getDirectiveKind() const
OpenACCClauseKind getClauseKind() const
void ActOnOpenMPDeclareVariantDirective(FunctionDecl *FD, Expr *VariantRef, OMPTraitInfo &TI, ArrayRef< Expr * > AdjustArgsNothing, ArrayRef< Expr * > AdjustArgsNeedDevicePtr, ArrayRef< Expr * > AdjustArgsNeedDeviceAddr, ArrayRef< OMPInteropInfo > AppendArgs, SourceLocation AdjustArgsLoc, SourceLocation AppendArgsLoc, SourceRange SR)
Called on well-formed '#pragma omp declare variant' after parsing of the associated method/function.
std::optional< std::pair< FunctionDecl *, Expr * > > checkOpenMPDeclareVariantFunction(DeclGroupPtrTy DG, Expr *VariantRef, OMPTraitInfo &TI, unsigned NumAppendArgs, SourceRange SR)
Checks '#pragma omp declare variant' variant function and original functions after parsing of the ass...
DeclGroupPtrTy ActOnOpenMPDeclareSimdDirective(DeclGroupPtrTy DG, OMPDeclareSimdDeclAttr::BranchStateTy BS, Expr *Simdlen, ArrayRef< Expr * > Uniforms, ArrayRef< Expr * > Aligneds, ArrayRef< Expr * > Alignments, ArrayRef< Expr * > Linears, ArrayRef< unsigned > LinModifiers, ArrayRef< Expr * > Steps, SourceRange SR)
Called on well-formed '#pragma omp declare simd' after parsing of the associated method/function.
void AddParameterABIAttr(Decl *D, const AttributeCommonInfo &CI, ParameterABI abi)
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...
CXXSpecialMemberKind asSpecialMember() const
A helper class for building up ExtParameterInfos.
Records and restores the CurFPFeatures state on entry/exit of compound statements.
RAII class used to indicate that we are performing provisional semantic analysis to determine the val...
Sema - This implements semantic analysis and AST building for C.
MemInitResult BuildDelegatingInitializer(TypeSourceInfo *TInfo, Expr *Init, CXXRecordDecl *ClassDecl)
SmallVector< CodeSynthesisContext, 16 > CodeSynthesisContexts
List of active code synthesis contexts.
LocalInstantiationScope * CurrentInstantiationScope
The current instantiation scope used to store local variables.
TemplateArgumentLoc getTrivialTemplateArgumentLoc(const TemplateArgument &Arg, QualType NTTPType, SourceLocation Loc, NamedDecl *TemplateParam=nullptr)
Allocate a TemplateArgumentLoc where all locations have been initialized to the given location.
bool CheckUsingDeclQualifier(SourceLocation UsingLoc, bool HasTypename, const CXXScopeSpec &SS, const DeclarationNameInfo &NameInfo, SourceLocation NameLoc, const LookupResult *R=nullptr, const UsingDecl *UD=nullptr)
Checks that the given nested-name qualifier used in a using decl in the current context is appropriat...
DefaultedFunctionKind getDefaultedFunctionKind(const FunctionDecl *FD)
Determine the kind of defaulting that would be done for a given function.
@ LookupOrdinaryName
Ordinary name lookup, which finds ordinary names (functions, variables, typedefs, etc....
@ LookupUsingDeclName
Look up all declarations in a scope with the given name, including resolved using declarations.
@ LookupRedeclarationWithLinkage
Look up an ordinary name that is going to be redeclared as a name with linkage.
Decl * ActOnSkippedFunctionBody(Decl *Decl)
NamedDecl * FindInstantiatedDecl(SourceLocation Loc, NamedDecl *D, const MultiLevelTemplateArgumentList &TemplateArgs, bool FindingInstantiatedContext=false)
Find the instantiation of the given declaration within the current instantiation.
MemInitResult BuildBaseInitializer(QualType BaseType, TypeSourceInfo *BaseTInfo, Expr *Init, CXXRecordDecl *ClassDecl, SourceLocation EllipsisLoc)
bool InstantiateDefaultArgument(SourceLocation CallLoc, FunctionDecl *FD, ParmVarDecl *Param)
void AddAlignedAttr(Decl *D, const AttributeCommonInfo &CI, Expr *E, bool IsPackExpansion)
AddAlignedAttr - Adds an aligned attribute to a particular declaration.
const TranslationUnitKind TUKind
The kind of translation unit we are processing.
void InstantiateExceptionSpec(SourceLocation PointOfInstantiation, FunctionDecl *Function)
void AddAssumeAlignedAttr(Decl *D, const AttributeCommonInfo &CI, Expr *E, Expr *OE)
AddAssumeAlignedAttr - Adds an assume_aligned attribute to a particular declaration.
const ExpressionEvaluationContextRecord & currentEvaluationContext() const
void deduceOpenCLAddressSpace(ValueDecl *decl)
PragmaStack< FPOptionsOverride > FpPragmaStack
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...
bool tryResolveExplicitSpecifier(ExplicitSpecifier &ExplicitSpec)
tryResolveExplicitSpecifier - Attempt to resolve the explict specifier.
ExprResult SubstInitializer(Expr *E, const MultiLevelTemplateArgumentList &TemplateArgs, bool CXXDirectInit)
MemInitResult BuildMemberInitializer(ValueDecl *Member, Expr *Init, SourceLocation IdLoc)
VarTemplateSpecializationDecl * BuildVarTemplateInstantiation(VarTemplateDecl *VarTemplate, VarDecl *FromVar, const TemplateArgumentList *PartialSpecArgs, SmallVectorImpl< TemplateArgument > &Converted, SourceLocation PointOfInstantiation, LateInstantiatedAttrVec *LateAttrs=nullptr, LocalInstantiationScope *StartingScope=nullptr)
Decl * ActOnFinishFunctionBody(Decl *Decl, Stmt *Body, bool IsInstantiation=false, bool RetainFunctionScopeInfo=false)
Performs semantic analysis at the end of a function body.
void SubstExceptionSpec(FunctionDecl *New, const FunctionProtoType *Proto, const MultiLevelTemplateArgumentList &Args)
ExpressionEvaluationContextRecord & parentEvaluationContext()
LateParsedTemplateMapT LateParsedTemplateMap
bool SubstExprs(ArrayRef< Expr * > Exprs, bool IsCall, const MultiLevelTemplateArgumentList &TemplateArgs, SmallVectorImpl< Expr * > &Outputs)
Substitute the given template arguments into a list of expressions, expanding pack expansions if requ...
StmtResult SubstStmt(Stmt *S, const MultiLevelTemplateArgumentList &TemplateArgs)
ExprResult SubstExpr(Expr *E, const MultiLevelTemplateArgumentList &TemplateArgs)
DiagnosticsEngine & getDiagnostics() const
DeclGroupPtrTy ConvertDeclToDeclGroup(Decl *Ptr, Decl *OwnedType=nullptr)
void InstantiateMemInitializers(CXXConstructorDecl *New, const CXXConstructorDecl *Tmpl, const MultiLevelTemplateArgumentList &TemplateArgs)
void CleanupVarDeclMarking()
ASTContext & getASTContext() const
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.
void InstantiateVariableDefinition(SourceLocation PointOfInstantiation, VarDecl *Var, bool Recursive=false, bool DefinitionRequired=false, bool AtEndOfTU=false)
Instantiate the definition of the given variable from its template.
SmallVector< LateInstantiatedAttribute, 1 > LateInstantiatedAttrVec
PrintingPolicy getPrintingPolicy() const
Retrieve a suitable printing policy for diagnostics.
void HandleDependentAccessCheck(const DependentDiagnostic &DD, const MultiLevelTemplateArgumentList &TemplateArgs)
@ TPL_TemplateMatch
We are matching the template parameter lists of two templates that might be redeclarations.
void SetDeclDefaulted(Decl *dcl, SourceLocation DefaultLoc)
NamedReturnInfo getNamedReturnInfo(Expr *&E, SimplerImplicitMoveMode Mode=SimplerImplicitMoveMode::Normal)
Determine whether the given expression might be move-eligible or copy-elidable in either a (co_)retur...
Sema(Preprocessor &pp, ASTContext &ctxt, ASTConsumer &consumer, TranslationUnitKind TUKind=TU_Complete, CodeCompleteConsumer *CompletionConsumer=nullptr)
void InstantiateAttrs(const MultiLevelTemplateArgumentList &TemplateArgs, const Decl *Pattern, Decl *Inst, LateInstantiatedAttrVec *LateAttrs=nullptr, LocalInstantiationScope *OuterMostScope=nullptr)
const LangOptions & getLangOpts() const
void AddModeAttr(Decl *D, const AttributeCommonInfo &CI, IdentifierInfo *Name, bool InInstantiation=false)
AddModeAttr - Adds a mode attribute to a particular declaration.
void collectUnexpandedParameterPacks(TemplateArgument Arg, SmallVectorImpl< UnexpandedParameterPack > &Unexpanded)
Collect the set of unexpanded parameter packs within the given template argument.
const LangOptions & LangOpts
Decl * ActOnStartOfFunctionDef(Scope *S, Declarator &D, MultiTemplateParamsArg TemplateParamLists, SkipBodyInfo *SkipBody=nullptr, FnBodyKind BodyKind=FnBodyKind::Other)
VarTemplateSpecializationDecl * CompleteVarTemplateSpecializationDecl(VarTemplateSpecializationDecl *VarSpec, VarDecl *PatternDecl, const MultiLevelTemplateArgumentList &TemplateArgs)
Instantiates a variable template specialization by completing it with appropriate type information an...
void updateAttrsForLateParsedTemplate(const Decl *Pattern, Decl *Inst)
Update instantiation attributes after template was late parsed.
void InstantiateVariableInitializer(VarDecl *Var, VarDecl *OldVar, const MultiLevelTemplateArgumentList &TemplateArgs)
Instantiate the initializer of a variable.
SmallVector< PendingImplicitInstantiation, 1 > LateParsedInstantiations
Queue of implicit template instantiations that cannot be performed eagerly.
DeclarationNameInfo SubstDeclarationNameInfo(const DeclarationNameInfo &NameInfo, const MultiLevelTemplateArgumentList &TemplateArgs)
Do template substitution on declaration name info.
const VarDecl * getCopyElisionCandidate(NamedReturnInfo &Info, QualType ReturnType)
Updates given NamedReturnInfo's move-eligible and copy-elidable statuses, considering the function re...
void AddAllocAlignAttr(Decl *D, const AttributeCommonInfo &CI, Expr *ParamExpr)
AddAllocAlignAttr - Adds an alloc_align attribute to a particular declaration.
UnsignedOrNone getNumArgumentsInExpansion(QualType T, const MultiLevelTemplateArgumentList &TemplateArgs)
Determine the number of arguments in the given pack expansion type.
bool usesPartialOrExplicitSpecialization(SourceLocation Loc, ClassTemplateSpecializationDecl *ClassTemplateSpec)
ExplicitSpecifier instantiateExplicitSpecifier(const MultiLevelTemplateArgumentList &TemplateArgs, ExplicitSpecifier ES)
bool CheckVariableDeclaration(VarDecl *NewVD, LookupResult &Previous)
Perform semantic checking on a newly-created variable declaration.
sema::BlockScopeInfo * getCurBlock()
Retrieve the current block, if any.
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...
std::deque< PendingImplicitInstantiation > PendingLocalImplicitInstantiations
The queue of implicit template instantiations that are required and must be performed within the curr...
ExprResult PerformContextuallyConvertToBool(Expr *From)
PerformContextuallyConvertToBool - Perform a contextual conversion of the expression From to bool (C+...
SourceManager & getSourceManager() const
FunctionDecl * SubstSpaceshipAsEqualEqual(CXXRecordDecl *RD, FunctionDecl *Spaceship)
Substitute the name and return type of a defaulted 'operator<=>' to form an implicit 'operator=='.
void PerformPendingInstantiations(bool LocalOnly=false, bool AtEndOfTU=true)
Performs template instantiation for all implicit template instantiations we have seen until this poin...
Decl * SubstDecl(Decl *D, DeclContext *Owner, const MultiLevelTemplateArgumentList &TemplateArgs)
void ActOnMemInitializers(Decl *ConstructorDecl, SourceLocation ColonLoc, ArrayRef< CXXCtorInitializer * > MemInits, bool AnyErrors)
ActOnMemInitializers - Handle the member initializers for a constructor.
TemplateParameterList * SubstTemplateParams(TemplateParameterList *Params, DeclContext *Owner, const MultiLevelTemplateArgumentList &TemplateArgs, bool EvaluateConstraints=true)
void AddLaunchBoundsAttr(Decl *D, const AttributeCommonInfo &CI, Expr *MaxThreads, Expr *MinBlocks, Expr *MaxBlocks)
AddLaunchBoundsAttr - Adds a launch_bounds attribute to a particular declaration.
UnsignedOrNone ArgPackSubstIndex
The current index into pack expansion arguments that will be used for substitution of parameter packs...
void InstantiateDefaultCtorDefaultArgs(CXXConstructorDecl *Ctor)
In the MS ABI, we need to instantiate default arguments of dllexported default constructors along wit...
QualType CheckTemplateIdType(ElaboratedTypeKeyword Keyword, TemplateName Template, SourceLocation TemplateLoc, TemplateArgumentListInfo &TemplateArgs, Scope *Scope, bool ForNestedNameSpecifier)
RedeclarationKind forRedeclarationInCurContext() const
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.
bool CheckUsingDeclRedeclaration(SourceLocation UsingLoc, bool HasTypenameKeyword, const CXXScopeSpec &SS, SourceLocation NameLoc, const LookupResult &Previous)
Checks that the given using declaration is not an invalid redeclaration.
bool SubstDefaultArgument(SourceLocation Loc, ParmVarDecl *Param, const MultiLevelTemplateArgumentList &TemplateArgs, bool ForCallExpr=false)
Substitute the given template arguments into the default argument.
void InstantiateAttrsForDecl(const MultiLevelTemplateArgumentList &TemplateArgs, const Decl *Pattern, Decl *Inst, LateInstantiatedAttrVec *LateAttrs=nullptr, LocalInstantiationScope *OuterMostScope=nullptr)
IntrusiveRefCntPtr< ExternalSemaSource > ExternalSource
Source of additional semantic information.
bool hasUncompilableErrorOccurred() const
Whether uncompilable error has occurred.
std::deque< PendingImplicitInstantiation > PendingInstantiations
The queue of implicit template instantiations that are required but have not yet been performed.
bool CheckInheritingConstructorUsingDecl(UsingDecl *UD)
Additional checks for a using declaration referring to a constructor name.
@ ConstantEvaluated
The current context is "potentially evaluated" in C++11 terms, but the expression is evaluated at com...
@ 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),...
NestedNameSpecifierLoc SubstNestedNameSpecifierLoc(NestedNameSpecifierLoc NNS, const MultiLevelTemplateArgumentList &TemplateArgs)
bool RequireCompleteType(SourceLocation Loc, QualType T, CompleteTypeKind Kind, TypeDiagnoser &Diagnoser)
Ensure that the type T is a complete type.
LateTemplateParserCB * LateTemplateParser
bool LookupQualifiedName(LookupResult &R, DeclContext *LookupCtx, bool InUnqualifiedLookup=false)
Perform qualified name lookup into a given context.
SmallVector< ExpressionEvaluationContextRecord, 8 > ExprEvalContexts
A stack of expression evaluation contexts.
bool DiagnoseUninstantiableTemplate(SourceLocation PointOfInstantiation, NamedDecl *Instantiation, bool InstantiatedFromMember, const NamedDecl *Pattern, const NamedDecl *PatternDef, TemplateSpecializationKind TSK, bool Complain=true, bool *Unreachable=nullptr)
Determine whether we would be unable to instantiate this template (because it either has no definitio...
SourceManager & SourceMgr
bool CheckParameterPacksForExpansion(SourceLocation EllipsisLoc, SourceRange PatternRange, ArrayRef< UnexpandedParameterPack > Unexpanded, const MultiLevelTemplateArgumentList &TemplateArgs, bool FailOnPackProducingTemplates, bool &ShouldExpand, bool &RetainExpansion, UnsignedOrNone &NumExpansions)
Determine whether we could expand a pack expansion with the given set of parameter packs into separat...
bool CheckAlignasTypeArgument(StringRef KWName, TypeSourceInfo *TInfo, SourceLocation OpLoc, SourceRange R)
static bool adjustContextForLocalExternDecl(DeclContext *&DC)
Adjust the DeclContext for a function or variable that might be a function-local external declaration...
Attr * CreateAnnotationAttr(const AttributeCommonInfo &CI, StringRef Annot, MutableArrayRef< Expr * > Args)
CreateAnnotationAttr - Creates an annotation Annot with Args arguments.
@ TPC_FriendFunctionTemplate
@ TPC_FriendFunctionTemplateDefinition
void DiagnoseUnusedDecl(const NamedDecl *ND)
void ActOnUninitializedDecl(Decl *dcl)
void AddInitializerToDecl(Decl *dcl, Expr *init, bool DirectInit)
AddInitializerToDecl - Adds the initializer Init to the declaration dcl.
void runWithSufficientStackSpace(SourceLocation Loc, llvm::function_ref< void()> Fn)
Run some code with "sufficient" stack space.
void BuildVariableInstantiation(VarDecl *NewVar, VarDecl *OldVar, const MultiLevelTemplateArgumentList &TemplateArgs, LateInstantiatedAttrVec *LateAttrs, DeclContext *Owner, LocalInstantiationScope *StartingScope, bool InstantiatingVarTemplate=false, VarTemplateSpecializationDecl *PrevVTSD=nullptr)
BuildVariableInstantiation - Used after a new variable has been created.
void UpdateExceptionSpec(FunctionDecl *FD, const FunctionProtoType::ExceptionSpecInfo &ESI)
std::pair< ValueDecl *, SourceLocation > PendingImplicitInstantiation
An entity for which implicit template instantiation is required.
DeclContext * FindInstantiatedContext(SourceLocation Loc, DeclContext *DC, const MultiLevelTemplateArgumentList &TemplateArgs)
Finds the instantiation of the given declaration context within the current instantiation.
void AddAlignValueAttr(Decl *D, const AttributeCommonInfo &CI, Expr *E)
AddAlignValueAttr - Adds an align_value attribute to a particular declaration.
ArrayRef< sema::FunctionScopeInfo * > getFunctionScopes() const
void PerformDependentDiagnostics(const DeclContext *Pattern, const MultiLevelTemplateArgumentList &TemplateArgs)
OpaquePtr< DeclGroupRef > DeclGroupPtrTy
bool checkStringLiteralArgumentAttr(const AttributeCommonInfo &CI, const Expr *E, StringRef &Str, SourceLocation *ArgLocation=nullptr)
Check if the argument E is a ASCII string literal.
bool CheckCXXDefaultArgExpr(SourceLocation CallLoc, FunctionDecl *FD, ParmVarDecl *Param, Expr *Init=nullptr, bool SkipImmediateInvocations=true)
Instantiate or parse a C++ default argument expression as necessary.
ASTMutationListener * getASTMutationListener() const
ExprResult ActOnFinishFullExpr(Expr *Expr, bool DiscardedValue)
Encodes a location in the source.
A trivial tuple used to represent a source range.
SourceLocation getEnd() const
Represents a C++11 static_assert declaration.
SourceLocation getRParenLoc() const
Stmt - This represents one statement.
SourceLocation getEndLoc() const LLVM_READONLY
SourceLocation getBeginLoc() const LLVM_READONLY
Represents the declaration of a struct/union/class/enum.
bool isThisDeclarationADefinition() const
Return true if this declaration is a completion definition of the type.
bool isCompleteDefinition() const
Return true if this decl has its body fully specified.
NestedNameSpecifierLoc getQualifierLoc() const
Retrieve the nested-name-specifier (with source-location information) that qualifies the name of this...
TypedefNameDecl * getTypedefNameForAnonDecl() const
void setTypedefNameForAnonDecl(TypedefNameDecl *TDD)
void setQualifierInfo(NestedNameSpecifierLoc QualifierLoc)
bool hasNameForLinkage() const
Is this tag type named, either directly or via being defined in a typedef of this type?
TagKind getTagKind() const
SourceLocation getNameLoc() const
void setQualifierLoc(NestedNameSpecifierLoc QualifierLoc)
void setNameLoc(SourceLocation Loc)
void setElaboratedKeywordLoc(SourceLocation Loc)
A convenient class for passing around template argument information.
void setLAngleLoc(SourceLocation Loc)
void setRAngleLoc(SourceLocation Loc)
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.
ArrayRef< TemplateArgument > asArray() const
Produce this as an array ref.
Location wrapper for a TemplateArgument.
const TemplateArgument & getArgument() const
SourceLocation getTemplateNameLoc() const
SourceLocation getTemplateKWLoc() const
NestedNameSpecifierLoc getTemplateQualifierLoc() const
Represents a template argument.
TemplateName getAsTemplate() const
Retrieve the template name for a template name argument.
@ Pack
The template argument is actually a parameter pack.
@ RewriteSpaceshipAsEqualEqual
void setEvaluateConstraints(bool B)
Decl * VisitDecl(Decl *D)
VarTemplateSpecializationDecl * VisitVarTemplateSpecializationDecl(VarTemplateDecl *VarTemplate, VarDecl *FromVar, ArrayRef< TemplateArgument > Converted, VarTemplateSpecializationDecl *PrevDecl=nullptr)
Decl * VisitVarDecl(VarDecl *D, bool InstantiatingVarTemplate, ArrayRef< BindingDecl * > *Bindings=nullptr)
bool InitMethodInstantiation(CXXMethodDecl *New, CXXMethodDecl *Tmpl)
Initializes common fields of an instantiated method declaration (New) from the corresponding fields o...
bool InitFunctionInstantiation(FunctionDecl *New, FunctionDecl *Tmpl)
Initializes the common fields of an instantiation function declaration (New) from the corresponding f...
VarTemplatePartialSpecializationDecl * InstantiateVarTemplatePartialSpecialization(VarTemplateDecl *VarTemplate, VarTemplatePartialSpecializationDecl *PartialSpec)
Instantiate the declaration of a variable template partial specialization.
void adjustForRewrite(RewriteKind RK, FunctionDecl *Orig, QualType &T, TypeSourceInfo *&TInfo, DeclarationNameInfo &NameInfo)
TypeSourceInfo * SubstFunctionType(FunctionDecl *D, SmallVectorImpl< ParmVarDecl * > &Params)
void InstantiateEnumDefinition(EnumDecl *Enum, EnumDecl *Pattern)
Decl * VisitFunctionDecl(FunctionDecl *D, TemplateParameterList *TemplateParams, RewriteKind RK=RewriteKind::None)
Normal class members are of more specific types and therefore don't make it here.
Decl * VisitCXXMethodDecl(CXXMethodDecl *D, TemplateParameterList *TemplateParams, RewriteKind RK=RewriteKind::None)
Decl * InstantiateTypeAliasTemplateDecl(TypeAliasTemplateDecl *D)
Decl * VisitBaseUsingDecls(BaseUsingDecl *D, BaseUsingDecl *Inst, LookupResult *Lookup)
bool SubstQualifier(const DeclaratorDecl *OldDecl, DeclaratorDecl *NewDecl)
TemplateParameterList * SubstTemplateParams(TemplateParameterList *List)
Instantiates a nested template parameter list in the current instantiation context.
Decl * InstantiateTypedefNameDecl(TypedefNameDecl *D, bool IsTypeAlias)
ClassTemplatePartialSpecializationDecl * InstantiateClassTemplatePartialSpecialization(ClassTemplateDecl *ClassTemplate, ClassTemplatePartialSpecializationDecl *PartialSpec)
Instantiate the declaration of a class template partial specialization.
bool SubstDefaultedFunction(FunctionDecl *New, FunctionDecl *Tmpl)
The base class of all kinds of template declarations (e.g., class, function, etc.).
TemplateParameterList * getTemplateParameters() const
Get the list of template parameters.
bool isNull() const
Determine whether this template name is NULL.
A template parameter object.
Stores a list of template parameters for a TemplateDecl and its derived classes.
SourceRange getSourceRange() const LLVM_READONLY
static TemplateParameterList * Create(const ASTContext &C, SourceLocation TemplateLoc, SourceLocation LAngleLoc, ArrayRef< NamedDecl * > Params, SourceLocation RAngleLoc, Expr *RequiresClause)
Expr * getRequiresClause()
The constraint-expression of the associated requires-clause.
SourceLocation getRAngleLoc() const
SourceLocation getLAngleLoc() const
ArrayRef< NamedDecl * > asArray()
SourceLocation getTemplateLoc() const
TemplateTemplateParmDecl - Declares a template template parameter, e.g., "T" in.
bool wasDeclaredWithTypename() const
Whether this template template parameter was declared with the 'typename' keyword.
TemplateParameterList * getExpansionTemplateParameters(unsigned I) const
Retrieve a particular expansion type within an expanded parameter pack.
bool isPackExpansion() const
Whether this parameter pack is a pack expansion.
unsigned getNumExpansionTemplateParameters() const
Retrieves the number of expansion template parameters in an expanded parameter pack.
TemplateNameKind templateParameterKind() const
const TemplateArgumentLoc & getDefaultArgument() const
Retrieve the default argument, if any.
unsigned getPosition() const
Get the position of the template parameter within its parameter list.
static TemplateTemplateParmDecl * Create(const ASTContext &C, DeclContext *DC, SourceLocation L, unsigned D, unsigned P, bool ParameterPack, IdentifierInfo *Id, TemplateNameKind ParameterKind, bool Typename, TemplateParameterList *Params)
bool isParameterPack() const
Whether this template template parameter is a template parameter pack.
bool defaultArgumentWasInherited() const
Determines whether the default argument was inherited from a previous declaration of this template.
void setDefaultArgument(const ASTContext &C, const TemplateArgumentLoc &DefArg)
Set the default argument for this template parameter, and whether that default argument was inherited...
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...
bool hasDefaultArgument() const
Determine whether this template parameter has a default argument.
Declaration of a template type parameter.
bool wasDeclaredWithTypename() const
Whether this template type parameter was declared with the 'typename' keyword.
const TemplateArgumentLoc & getDefaultArgument() const
Retrieve the default argument, if any.
unsigned getIndex() const
Retrieve the index of the template parameter.
bool hasTypeConstraint() const
Determine whether this template parameter has a type-constraint.
const TypeConstraint * getTypeConstraint() const
Returns the type constraint associated with this template parameter (if any).
UnsignedOrNone getNumExpansionParameters() const
Whether this parameter is a template type parameter pack that has a known list of different type-cons...
bool hasDefaultArgument() const
Determine whether this template parameter has a default argument.
bool defaultArgumentWasInherited() const
Determines whether the default argument was inherited from a previous declaration of this template.
bool isParameterPack() const
Returns whether this is a parameter pack.
static TemplateTypeParmDecl * Create(const ASTContext &C, DeclContext *DC, SourceLocation KeyLoc, SourceLocation NameLoc, unsigned D, unsigned P, IdentifierInfo *Id, bool Typename, bool ParameterPack, bool HasTypeConstraint=false, UnsignedOrNone NumExpanded=std::nullopt)
unsigned getDepth() const
Retrieve the depth of the template parameter.
void setDefaultArgument(const ASTContext &C, const TemplateArgumentLoc &DefArg)
Set the default argument for this template parameter.
bool isPackExpansion() const
Whether this parameter pack is a pack expansion.
The top declaration context.
Represents the declaration of a typedef-name via a C++11 alias-declaration.
static TypeAliasDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, const IdentifierInfo *Id, TypeSourceInfo *TInfo)
void setDescribedAliasTemplate(TypeAliasTemplateDecl *TAT)
Declaration of an alias template.
static TypeAliasTemplateDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation L, DeclarationName Name, TemplateParameterList *Params, NamedDecl *Decl)
Create a function template node.
TypeAliasDecl * getTemplatedDecl() const
Get the underlying function declaration of the template.
const Type * getTypeForDecl() const
SourceLocation getBeginLoc() const LLVM_READONLY
TyLocType push(QualType T)
Pushes space for a new TypeLoc of the given type.
TypeSourceInfo * getTypeSourceInfo(ASTContext &Context, QualType T)
Creates a TypeSourceInfo for the given type.
void pushTrivial(ASTContext &Context, QualType T, SourceLocation Loc)
Pushes 'T' with all locations pointing to 'Loc'.
Base wrapper for a particular "section" of type source info.
T getAs() const
Convert to the specified TypeLoc type, returning a null TypeLoc if this TypeLoc is not of the desired...
TypeLoc IgnoreParens() const
T castAs() const
Convert to the specified TypeLoc type, asserting that this TypeLoc is of the desired type.
SourceRange getSourceRange() const LLVM_READONLY
Get the full source range.
AutoTypeLoc getContainedAutoTypeLoc() const
Get the typeloc of an AutoType whose type will be deduced for a variable with an initializer of this ...
T getAsAdjusted() const
Convert to the specified TypeLoc type, returning a null TypeLoc if this TypeLoc is not of the desired...
SourceLocation getBeginLoc() const
Get the begin source location.
A container of type source information.
TypeLoc getTypeLoc() const
Return the TypeLoc wrapper for the type source info.
QualType getType() const
Return the type wrapped by this type source info.
bool isRValueReferenceType() const
const T * castAs() const
Member-template castAs<specific type>.
bool isReferenceType() const
AutoType * getContainedAutoType() const
Get the AutoType whose type will be deduced for a variable with an initializer of this type.
bool isInstantiationDependentType() const
Determine whether this type is an instantiation-dependent type, meaning that the type involves a temp...
bool isLValueReferenceType() const
bool isDependentType() const
Whether this type is a dependent type, meaning that its definition somehow depends on a template para...
bool containsUnexpandedParameterPack() const
Whether this type is or contains an unexpanded parameter pack, used to support C++0x variadic templat...
bool isTemplateTypeParmType() const
bool isAtomicType() const
bool isVariablyModifiedType() const
Whether this type is a variably-modified type (C99 6.7.5).
bool isUndeducedType() const
Determine whether this type is an undeduced type, meaning that it somehow involves a C++11 'auto' typ...
bool isFunctionType() const
const T * getAs() const
Member-template getAs<specific type>'.
Represents the declaration of a typedef-name via the 'typedef' type specifier.
static TypedefDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, const IdentifierInfo *Id, TypeSourceInfo *TInfo)
Base class for declarations which introduce a typedef-name.
TypeSourceInfo * getTypeSourceInfo() const
QualType getUnderlyingType() const
An artificial decl, representing a global anonymous constant value which is uniquified by value withi...
This node is generated when a using-declaration that was annotated with attribute((using_if_exists)) ...
static UnresolvedUsingIfExistsDecl * Create(ASTContext &Ctx, DeclContext *DC, SourceLocation Loc, DeclarationName Name)
Represents a dependent using declaration which was marked with typename.
SourceLocation getTypenameLoc() const
Returns the source location of the 'typename' keyword.
Represents a dependent using declaration which was not marked with typename.
Represents a C++ using-declaration.
bool hasTypename() const
Return true if the using declaration has 'typename'.
NestedNameSpecifierLoc getQualifierLoc() const
Retrieve the nested-name-specifier that qualifies the name, with source-location information.
DeclarationNameInfo getNameInfo() const
static UsingDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation UsingL, NestedNameSpecifierLoc QualifierLoc, const DeclarationNameInfo &NameInfo, bool HasTypenameKeyword)
SourceLocation getUsingLoc() const
Return the source location of the 'using' keyword.
Represents C++ using-directive.
static UsingDirectiveDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation UsingLoc, SourceLocation NamespaceLoc, NestedNameSpecifierLoc QualifierLoc, SourceLocation IdentLoc, NamedDecl *Nominated, DeclContext *CommonAncestor)
NamespaceDecl * getNominatedNamespace()
Returns the namespace nominated by this using-directive.
DeclContext * getCommonAncestor()
Returns the common ancestor context of this using-directive and its nominated namespace.
SourceLocation getNamespaceKeyLocation() const
Returns the location of the namespace keyword.
SourceLocation getIdentLocation() const
Returns the location of this using declaration's identifier.
NestedNameSpecifierLoc getQualifierLoc() const
Retrieve the nested-name-specifier that qualifies the name of the namespace, with source-location inf...
Represents a C++ using-enum-declaration.
SourceLocation getEnumLoc() const
The source location of the 'enum' keyword.
EnumDecl * getEnumDecl() const
TypeSourceInfo * getEnumType() const
static UsingEnumDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation UsingL, SourceLocation EnumL, SourceLocation NameL, TypeSourceInfo *EnumType)
SourceLocation getUsingLoc() const
The source location of the 'using' keyword.
Represents a pack of using declarations that a single using-declarator pack-expanded into.
ArrayRef< NamedDecl * > expansions() const
Get the set of using declarations that this pack expanded into.
Represents a shadow declaration implicitly introduced into a scope by a (resolved) using-declaration ...
void setType(QualType newType)
bool isParameterPack() const
Determine whether this value is actually a function parameter pack, init-capture pack,...
Represents a variable declaration or definition.
VarTemplateDecl * getDescribedVarTemplate() const
Retrieves the variable template that is described by this variable declaration.
void setObjCForDecl(bool FRD)
static VarDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, const IdentifierInfo *Id, QualType T, TypeSourceInfo *TInfo, StorageClass S)
void setCXXForRangeDecl(bool FRD)
bool isConstexpr() const
Whether this variable is (C++11) constexpr.
void setInstantiationOfStaticDataMember(VarDecl *VD, TemplateSpecializationKind TSK)
Specify that this variable is an instantiation of the static data member VD.
TLSKind getTLSKind() const
void setInitStyle(InitializationStyle Style)
VarDecl * getMostRecentDecl()
Returns the most recent (re)declaration of this declaration.
InitializationStyle getInitStyle() const
The style of initialization for this declaration.
void setInitCapture(bool IC)
DefinitionKind isThisDeclarationADefinition(ASTContext &) const
Check whether this declaration is a definition.
bool isOutOfLine() const override
Determine whether this is or was instantiated from an out-of-line definition of a static data member.
VarDecl * getCanonicalDecl() override
Retrieves the "canonical" declaration of the given declaration.
bool isInitCapture() const
Whether this variable is the implicit variable for a lambda init-capture.
@ CallInit
Call-style initialization (C++98)
bool isObjCForDecl() const
Determine whether this variable is a for-loop declaration for a for-in statement in Objective-C.
void setPreviousDeclInSameBlockScope(bool Same)
bool isInlineSpecified() const
bool isStaticDataMember() const
Determines whether this is a static data member.
VarDecl * getTemplateInstantiationPattern() const
Retrieve the variable declaration from which this variable could be instantiated, if it is an instant...
bool isCXXForRangeDecl() const
Determine whether this variable is the for-range-declaration in a C++0x for-range statement.
VarDecl * getDefinition(ASTContext &)
Get the real (not just tentative) definition for this declaration.
bool mightBeUsableInConstantExpressions(const ASTContext &C) const
Determine whether this variable's value might be usable in a constant expression, according to the re...
bool isNRVOVariable() const
Determine whether this local variable can be used with the named return value optimization (NRVO).
void setInlineSpecified()
bool isStaticLocal() const
Returns true if a variable with function scope is a static local variable.
void setTemplateSpecializationKind(TemplateSpecializationKind TSK, SourceLocation PointOfInstantiation=SourceLocation())
For a static data member that was instantiated from a static data member of a class template,...
void setTSCSpec(ThreadStorageClassSpecifier TSC)
void setNRVOVariable(bool NRVO)
bool isInline() const
Whether this variable is (C++1z) inline.
ThreadStorageClassSpecifier getTSCSpec() const
const Expr * getInit() const
void setConstexpr(bool IC)
void setDescribedVarTemplate(VarTemplateDecl *Template)
bool isDirectInit() const
Whether the initializer is a direct-initializer (list or call).
StorageClass getStorageClass() const
Returns the storage class as written in the source.
void setImplicitlyInline()
bool isPreviousDeclInSameBlockScope() const
Whether this local extern variable declaration's previous declaration was declared in the same block ...
VarDecl * getPreviousDecl()
Return the previous declaration of this declaration or NULL if this is the first declaration.
SourceLocation getPointOfInstantiation() const
If this variable is an instantiation of a variable template or a static data member of a class templa...
TemplateSpecializationKind getTemplateSpecializationKindForInstantiation() const
Get the template specialization kind of this variable for the purposes of template instantiation.
TemplateSpecializationKind getTemplateSpecializationKind() const
If this variable is an instantiation of a variable template or a static data member of a class templa...
Declaration of a variable template.
VarDecl * getTemplatedDecl() const
Get the underlying variable declarations of the template.
static VarTemplateDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation L, DeclarationName Name, TemplateParameterList *Params, VarDecl *Decl)
Create a variable template node.
llvm::FoldingSetVector< VarTemplatePartialSpecializationDecl > & getPartialSpecializations() const
Retrieve the set of partial specializations of this class template.
VarTemplateSpecializationDecl * findSpecialization(ArrayRef< TemplateArgument > Args, void *&InsertPos)
Return the specialization with the provided arguments if it exists, otherwise return the insertion po...
VarTemplatePartialSpecializationDecl * findPartialSpecInstantiatedFromMember(VarTemplatePartialSpecializationDecl *D)
Find a variable template partial specialization which was instantiated from the given member partial ...
static VarTemplatePartialSpecializationDecl * Create(ASTContext &Context, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, TemplateParameterList *Params, VarTemplateDecl *SpecializedTemplate, QualType T, TypeSourceInfo *TInfo, StorageClass S, ArrayRef< TemplateArgument > Args)
TemplateParameterList * getTemplateParameters() const
Get the list of template parameters.
void setInstantiatedFromMember(VarTemplatePartialSpecializationDecl *PartialSpec)
Represents a variable template specialization, which refers to a variable template with a given set o...
SourceLocation getPointOfInstantiation() const
Get the point of instantiation (if any), or null if none.
void setTemplateArgsAsWritten(const ASTTemplateArgumentListInfo *ArgsWritten)
Set the template argument list as written in the sources.
const ASTTemplateArgumentListInfo * getTemplateArgsAsWritten() const
Retrieve the template argument list as written in the sources, if any.
const TemplateArgumentList & getTemplateArgs() const
Retrieve the template arguments of the variable template specialization.
const TemplateArgumentList & getTemplateInstantiationArgs() const
Retrieve the set of template arguments that should be used to instantiate the initializer of the vari...
static VarTemplateSpecializationDecl * Create(ASTContext &Context, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, VarTemplateDecl *SpecializedTemplate, QualType T, TypeSourceInfo *TInfo, StorageClass S, ArrayRef< TemplateArgument > Args)
llvm::PointerUnion< VarTemplateDecl *, VarTemplatePartialSpecializationDecl * > getSpecializedTemplateOrPartial() const
Retrieve the variable template or variable template partial specialization which was specialized by t...
TemplateSpecializationKind getSpecializationKind() const
Determine the kind of specialization that this declaration represents.
VarTemplateDecl * getSpecializedTemplate() const
Retrieve the template that this specialization specializes.
void setCompleteDefinition()
Decl * Visit(PTR(Decl) D)
QualType FunctionType
BlockType - The function type of the block, if one was given.
void addCapture(ValueDecl *Var, bool isBlock, bool isByref, bool isNested, SourceLocation Loc, SourceLocation EllipsisLoc, QualType CaptureType, bool Invalid)
Provides information about an attempted template argument deduction, whose success or failure was des...
Defines the clang::TargetInfo interface.
const internal::VariadicAllOfMatcher< Decl > decl
Matches declarations.
bool NE(InterpState &S, CodePtr OpPC)
std::variant< struct RequiresDecl, struct HeaderDecl, struct UmbrellaDirDecl, struct ModuleDecl, struct ExcludeDecl, struct ExportDecl, struct ExportAsDecl, struct ExternModuleDecl, struct UseDecl, struct LinkDecl, struct ConfigMacrosDecl, struct ConflictDecl > Decl
All declarations that can appear in a module declaration.
Attr * instantiateTemplateAttribute(const Attr *At, ASTContext &C, Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs)
Attr * instantiateTemplateAttributeForDecl(const Attr *At, ASTContext &C, Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs)
The JSON file list parser is used to communicate input to InstallAPI.
CanQual< Type > CanQualType
Represents a canonical, potentially-qualified type.
void atTemplateEnd(TemplateInstantiationCallbackPtrs &Callbacks, const Sema &TheSema, const Sema::CodeSynthesisContext &Inst)
bool isa(CodeGen::Address addr)
void atTemplateBegin(TemplateInstantiationCallbackPtrs &Callbacks, const Sema &TheSema, const Sema::CodeSynthesisContext &Inst)
@ Rewrite
We are substituting template parameters for (typically) other template parameters in order to rewrite...
@ TemplateName
The identifier is a template name. FIXME: Add an annotation for that.
@ DevicePtr
'deviceptr' clause, allowed on Compute and Combined Constructs, plus 'data' and 'declare'.
@ VectorLength
'vector_length' clause, allowed on 'parallel', 'kernels', 'parallel loop', and 'kernels loop' constru...
@ Async
'async' clause, allowed on Compute, Data, 'update', 'wait', and Combined constructs.
@ Collapse
'collapse' clause, allowed on 'loop' and Combined constructs.
@ DeviceNum
'device_num' clause, allowed on 'init', 'shutdown', and 'set' constructs.
@ DefaultAsync
'default_async' clause, allowed on 'set' construct.
@ Attach
'attach' clause, allowed on Compute and Combined constructs, plus 'data' and 'enter data'.
@ NumGangs
'num_gangs' clause, allowed on 'parallel', 'kernels', parallel loop', and 'kernels loop' constructs.
@ If
'if' clause, allowed on all the Compute Constructs, Data Constructs, Executable Constructs,...
@ UseDevice
'use_device' clause, allowed on 'host_data' construct.
@ NoCreate
'no_create' clause, allowed on allowed on Compute and Combined constructs, plus 'data'.
@ Reduction
'reduction' clause, allowed on Parallel, Serial, Loop, and the combined constructs.
@ Self
'self' clause, allowed on Compute and Combined Constructs, plus 'update'.
@ FirstPrivate
'firstprivate' clause, allowed on 'parallel', 'serial', 'parallel loop', and 'serial loop' constructs...
@ Tile
'tile' clause, allowed on 'loop' and Combined constructs.
@ Independent
'independent' clause, allowed on 'loop' directives.
@ NumWorkers
'num_workers' clause, allowed on 'parallel', 'kernels', parallel loop', and 'kernels loop' constructs...
@ IfPresent
'if_present' clause, allowed on 'host_data' and 'update' directives.
@ Detach
'detach' clause, allowed on the 'exit data' construct.
@ Delete
'delete' clause, allowed on the 'exit data' construct.
@ Finalize
'finalize' clause, allowed on 'exit data' directive.
StorageClass
Storage classes.
bool isGenericLambdaCallOperatorOrStaticInvokerSpecialization(const DeclContext *DC)
@ Property
The type of a property.
@ Result
The result type of a method or function.
ActionResult< CXXCtorInitializer * > MemInitResult
const FunctionProtoType * T
@ Template
We are parsing a template declaration.
@ FunctionTemplate
The name was classified as a function template name.
@ VarTemplate
The name was classified as a variable template name.
@ TU_Prefix
The translation unit is a prefix to a translation unit, and is not complete.
@ VK_PRValue
A pr-value expression (in the C++11 taxonomy) produces a temporary value.
bool declaresSameEntity(const Decl *D1, const Decl *D2)
Determine whether two declarations declare the same entity.
TemplateSpecializationKind
Describes the kind of template specialization that a particular template specialization declaration r...
@ TSK_ExplicitInstantiationDefinition
This template specialization was instantiated from a template due to an explicit instantiation defini...
@ TSK_ExplicitInstantiationDeclaration
This template specialization was instantiated from a template due to an explicit instantiation declar...
@ TSK_ExplicitSpecialization
This template specialization was declared or defined by an explicit specialization (C++ [temp....
@ TSK_ImplicitInstantiation
This template specialization was implicitly instantiated from a template.
@ TSK_Undeclared
This template specialization was formed from a template-id but has not yet been declared,...
U cast(CodeGen::Address addr)
@ None
No keyword precedes the qualified type name.
@ Enum
The "enum" keyword introduces the elaborated-type-specifier.
bool isLambdaMethod(const DeclContext *DC)
ActionResult< Expr * > ExprResult
@ Other
Other implicit parameter.
ExceptionSpecificationType
The various types of exception specifications that exist in C++11.
@ EST_Uninstantiated
not instantiated yet
@ EST_None
no exception specification
@ EST_BasicNoexcept
noexcept
@ EST_Unevaluated
not evaluated yet, for special member function
ActionResult< Stmt * > StmtResult
Represents an explicit template argument list in C++, e.g., the "<int>" in "sort<int>".
SourceLocation RAngleLoc
The source location of the right angle bracket ('>').
SourceLocation LAngleLoc
The source location of the left angle bracket ('<').
ArrayRef< TemplateArgumentLoc > arguments() const
DeclarationNameInfo - A collector data type for bundling together a DeclarationName and the correspon...
DeclarationName getName() const
getName - Returns the embedded declaration name.
void setName(DeclarationName N)
setName - Sets the embedded declaration name.
const DeclarationNameLoc & getInfo() const
TypeSourceInfo * getNamedTypeInfo() const
getNamedTypeInfo - Returns the source type info associated to the name.
Holds information about the various types of exception specification.
FunctionDecl * SourceDecl
The function whose exception specification this is, for EST_Unevaluated and EST_Uninstantiated.
FunctionDecl * SourceTemplate
The function template whose exception specification this is instantiated from, for EST_Uninstantiated...
ExceptionSpecificationType Type
The kind of exception specification this is.
Extra information about a function prototype.
ExceptionSpecInfo ExceptionSpec
FunctionType::ExtInfo ExtInfo
bool StrictPackMatch
Is set to true when, in the context of TTP matching, a pack parameter matches non-pack arguments.
SmallVector< TemplateArgument, 4 > CanonicalConverted
A context in which code is being synthesized (where a source location alone is not sufficient to iden...
SynthesisKind
The kind of template instantiation we are performing.
@ BuildingDeductionGuides
We are building deduction guides for a class.
@ DeducedTemplateArgumentSubstitution
We are substituting template argument determined as part of template argument deduction for either a ...
bool InLifetimeExtendingContext
Whether we are currently in a context in which all temporaries must be lifetime-extended,...
bool RebuildDefaultArgOrDefaultInit
Whether we should rebuild CXXDefaultArgExpr and CXXDefaultInitExpr.
A stack object to be created when performing template instantiation.
bool isInvalid() const
Determines whether we have exceeded the maximum recursive template instantiations.
bool isAlreadyInstantiating() const
Determine whether we are already instantiating this specialization in some surrounding active instant...