37#include "llvm/ADT/DenseSet.h"
38#include "llvm/ADT/STLExtras.h"
39#include "llvm/ADT/STLForwardCompat.h"
40#include "llvm/ADT/ScopeExit.h"
41#include "llvm/ADT/SmallPtrSet.h"
42#include "llvm/ADT/SmallVector.h"
56 return P->hasAttr<PassObjectSizeAttr>();
77 if (HadMultipleCandidates)
88 CK_FunctionToPointerDecay);
92 bool InOverloadResolution,
95 bool AllowObjCWritebackConversion);
99 bool InOverloadResolution,
107 bool AllowObjCConversionOnExplicit);
168 return Rank[(
int)Kind];
193 static const char *
const Name[] = {
197 "Function-to-pointer",
198 "Function pointer conversion",
200 "Integral promotion",
201 "Floating point promotion",
203 "Integral conversion",
204 "Floating conversion",
205 "Complex conversion",
206 "Floating-integral conversion",
207 "Pointer conversion",
208 "Pointer-to-member conversion",
209 "Boolean conversion",
210 "Compatible-types conversion",
211 "Derived-to-base conversion",
213 "SVE Vector conversion",
214 "RVV Vector conversion",
216 "Complex-real conversion",
217 "Block Pointer conversion",
218 "Transparent Union Conversion",
219 "Writeback conversion",
220 "OpenCL Zero Event Conversion",
221 "OpenCL Zero Queue Conversion",
222 "C specific type conversion",
223 "Incompatible pointer conversion",
224 "Fixed point conversion",
225 "HLSL vector truncation",
226 "Non-decaying array conversion",
314 const Expr *Converted) {
317 if (
auto *EWC = dyn_cast<ExprWithCleanups>(Converted)) {
324 while (
auto *ICE = dyn_cast<ImplicitCastExpr>(Converted)) {
325 switch (ICE->getCastKind()) {
327 case CK_IntegralCast:
328 case CK_IntegralToBoolean:
329 case CK_IntegralToFloating:
330 case CK_BooleanToSignedIntegral:
331 case CK_FloatingToIntegral:
332 case CK_FloatingToBoolean:
333 case CK_FloatingCast:
334 Converted = ICE->getSubExpr();
358 QualType &ConstantType,
bool IgnoreFloatToIntegralConversion)
const {
360 "narrowing check outside C++");
371 ToType = ET->getDecl()->getIntegerType();
377 goto FloatingIntegralConversion;
379 goto IntegralConversion;
390 FloatingIntegralConversion:
395 if (IgnoreFloatToIntegralConversion)
398 assert(
Initializer &&
"Unknown conversion expression");
404 if (std::optional<llvm::APSInt> IntConstantValue =
408 Result.convertFromAPInt(*IntConstantValue, IntConstantValue->isSigned(),
409 llvm::APFloat::rmNearestTiesToEven);
411 llvm::APSInt ConvertedValue = *IntConstantValue;
413 Result.convertToInteger(ConvertedValue,
414 llvm::APFloat::rmTowardZero, &ignored);
416 if (*IntConstantValue != ConvertedValue) {
417 ConstantValue =
APValue(*IntConstantValue);
444 Initializer->isCXX11ConstantExpr(Ctx, &ConstantValue)) {
447 ConstantValue = R.
Val;
448 assert(ConstantValue.
isFloat());
449 llvm::APFloat FloatVal = ConstantValue.
getFloat();
452 llvm::APFloat Converted = FloatVal;
453 llvm::APFloat::opStatus ConvertStatus =
455 llvm::APFloat::rmNearestTiesToEven, &ignored);
457 llvm::APFloat::rmNearestTiesToEven, &ignored);
459 if (FloatVal.isNaN() && Converted.isNaN() &&
460 !FloatVal.isSignaling() && !Converted.isSignaling()) {
466 if (!Converted.bitwiseIsEqual(FloatVal)) {
473 if (ConvertStatus & llvm::APFloat::opOverflow) {
495 IntegralConversion: {
503 constexpr auto CanRepresentAll = [](
bool FromSigned,
unsigned FromWidth,
504 bool ToSigned,
unsigned ToWidth) {
505 return (FromWidth < ToWidth + (FromSigned == ToSigned)) &&
506 !(FromSigned && !ToSigned);
509 if (CanRepresentAll(FromSigned, FromWidth, ToSigned, ToWidth))
515 bool DependentBitField =
false;
517 if (BitField->getBitWidth()->isValueDependent())
518 DependentBitField =
true;
519 else if (
unsigned BitFieldWidth = BitField->getBitWidthValue();
520 BitFieldWidth < FromWidth) {
521 if (CanRepresentAll(FromSigned, BitFieldWidth, ToSigned, ToWidth))
525 FromWidth = BitFieldWidth;
533 std::optional<llvm::APSInt> OptInitializerValue =
535 if (!OptInitializerValue) {
539 if (DependentBitField && !(FromSigned && !ToSigned))
545 llvm::APSInt &InitializerValue = *OptInitializerValue;
546 bool Narrowing =
false;
547 if (FromWidth < ToWidth) {
550 if (InitializerValue.isSigned() && InitializerValue.isNegative())
556 InitializerValue.extend(InitializerValue.getBitWidth() + 1);
558 llvm::APSInt ConvertedValue = InitializerValue;
559 ConvertedValue = ConvertedValue.trunc(ToWidth);
560 ConvertedValue.setIsSigned(ToSigned);
561 ConvertedValue = ConvertedValue.extend(InitializerValue.getBitWidth());
562 ConvertedValue.setIsSigned(InitializerValue.isSigned());
564 if (ConvertedValue != InitializerValue)
569 ConstantValue =
APValue(InitializerValue);
585 ConstantValue = R.
Val;
586 assert(ConstantValue.
isFloat());
587 llvm::APFloat FloatVal = ConstantValue.
getFloat();
592 if (FloatVal.isNaN() && FloatVal.isSignaling()) {
608 raw_ostream &OS = llvm::errs();
609 bool PrintedSomething =
false;
612 PrintedSomething =
true;
616 if (PrintedSomething) {
622 OS <<
" (by copy constructor)";
624 OS <<
" (direct reference binding)";
626 OS <<
" (reference binding)";
628 PrintedSomething =
true;
632 if (PrintedSomething) {
636 PrintedSomething =
true;
639 if (!PrintedSomething) {
640 OS <<
"No conversions required";
647 raw_ostream &OS = llvm::errs();
655 OS <<
"aggregate initialization";
665 raw_ostream &OS = llvm::errs();
667 OS <<
"Worst list element conversion: ";
668 switch (ConversionKind) {
670 OS <<
"Standard conversion: ";
674 OS <<
"User-defined conversion: ";
678 OS <<
"Ellipsis conversion";
681 OS <<
"Ambiguous conversion";
684 OS <<
"Bad conversion";
709 struct DFIArguments {
715 struct DFIParamWithArguments : DFIArguments {
720 struct DFIDeducedMismatchArgs : DFIArguments {
722 unsigned CallArgIndex;
739 Result.Result =
static_cast<unsigned>(TDK);
740 Result.HasDiagnostic =
false;
759 auto *Saved =
new (Context) DFIDeducedMismatchArgs;
770 DFIArguments *Saved =
new (Context) DFIArguments;
782 DFIParamWithArguments *Saved =
new (Context) DFIParamWithArguments;
783 Saved->Param = Info.
Param;
796 Result.HasDiagnostic =
true;
801 CNSInfo *Saved =
new (Context) CNSInfo;
811 llvm_unreachable(
"not a deduction failure");
844 Diag->~PartialDiagnosticAt();
853 Diag->~PartialDiagnosticAt();
889 return TemplateParameter::getFromOpaqueValue(
Data);
894 return static_cast<DFIParamWithArguments*
>(
Data)->Param;
924 return static_cast<DFIDeducedMismatchArgs*
>(
Data)->TemplateArgs;
930 return static_cast<CNSInfo*
>(
Data)->TemplateArgs;
962 return &
static_cast<DFIArguments*
>(
Data)->FirstArg;
994 return &
static_cast<DFIArguments*
>(
Data)->SecondArg;
1009 return static_cast<DFIDeducedMismatchArgs*
>(
Data)->CallArgIndex;
1012 return std::nullopt;
1025 for (
unsigned I = 0; I <
X->getNumParams(); ++I)
1029 if (
auto *FTX =
X->getDescribedFunctionTemplate()) {
1034 FTY->getTemplateParameters()))
1043 OverloadedOperatorKind::OO_EqualEqual);
1055 OverloadedOperatorKind::OO_ExclaimEqual);
1056 if (isa<CXXMethodDecl>(EqFD)) {
1073 auto *NotEqFD = Op->getAsFunction();
1074 if (
auto *UD = dyn_cast<UsingShadowDecl>(Op))
1075 NotEqFD = UD->getUnderlyingDecl()->getAsFunction();
1078 cast<Decl>(Op->getLexicalDeclContext())))
1088 return Op == OO_EqualEqual || Op == OO_Spaceship;
1094 if (!allowsReversed(Op))
1096 if (Op == OverloadedOperatorKind::OO_EqualEqual) {
1097 assert(OriginalArgs.size() == 2);
1099 S, OpLoc, OriginalArgs[1], FD))
1110void OverloadCandidateSet::destroyCandidates() {
1112 for (
auto &
C : i->Conversions)
1113 C.~ImplicitConversionSequence();
1115 i->DeductionFailure.Destroy();
1120 destroyCandidates();
1121 SlabAllocator.Reset();
1122 NumInlineBytesUsed = 0;
1129 class UnbridgedCastsSet {
1139 Entry entry = { &
E,
E };
1140 Entries.push_back(entry);
1146 i = Entries.begin(), e = Entries.end(); i != e; ++i)
1147 *i->Addr = i->Saved;
1161 UnbridgedCastsSet *unbridgedCasts =
nullptr) {
1165 if (placeholder->getKind() == BuiltinType::Overload)
return false;
1169 if (placeholder->getKind() == BuiltinType::ARCUnbridgedCast &&
1171 unbridgedCasts->save(S,
E);
1191 UnbridgedCastsSet &unbridged) {
1192 for (
unsigned i = 0, e = Args.size(); i != e; ++i)
1201 NamedDecl *&Match,
bool NewIsUsingDecl) {
1206 bool OldIsUsingDecl =
false;
1207 if (isa<UsingShadowDecl>(OldD)) {
1208 OldIsUsingDecl =
true;
1212 if (NewIsUsingDecl)
continue;
1214 OldD = cast<UsingShadowDecl>(OldD)->getTargetDecl();
1219 if ((OldIsUsingDecl || NewIsUsingDecl) && !isVisible(*I))
1227 bool UseMemberUsingDeclRules =
1228 (OldIsUsingDecl || NewIsUsingDecl) && CurContext->isRecord() &&
1232 if (!IsOverload(New, OldF, UseMemberUsingDeclRules)) {
1233 if (UseMemberUsingDeclRules && OldIsUsingDecl) {
1234 HideUsingShadowDecl(S, cast<UsingShadowDecl>(*I));
1238 if (!isa<FunctionTemplateDecl>(OldD) &&
1239 !shouldLinkPossiblyHiddenDecl(*I, New))
1248 if (!getASTContext().canBuiltinBeRedeclared(OldF)) {
1250 return Ovl_NonFunction;
1252 }
else if (isa<UsingDecl>(OldD) || isa<UsingPackDecl>(OldD)) {
1256 }
else if (isa<TagDecl>(OldD)) {
1258 }
else if (
auto *UUD = dyn_cast<UnresolvedUsingValueDecl>(OldD)) {
1265 if (UUD->getQualifier()->isDependent() && !UUD->isCXXClassMember()) {
1267 return Ovl_NonFunction;
1274 return Ovl_NonFunction;
1299 if (CheckFunctionTemplateSpecialization(New,
nullptr, TemplateSpecResult,
1302 return Ovl_Overload;
1309 return Ovl_Overload;
1313 assert(
D &&
"function decl should not be null");
1315 return !A->isImplicit();
1321 bool UseMemberUsingDeclRules,
1322 bool ConsiderCudaAttrs,
1323 bool UseOverrideRules =
false) {
1340 if ((OldTemplate ==
nullptr) != (NewTemplate ==
nullptr))
1353 if (isa<FunctionNoProtoType>(OldQType.
getTypePtr()) ||
1354 isa<FunctionNoProtoType>(NewQType.
getTypePtr()))
1357 const auto *OldType = cast<FunctionProtoType>(OldQType);
1358 const auto *NewType = cast<FunctionProtoType>(NewQType);
1363 if (OldQType != NewQType && OldType->isVariadic() != NewType->isVariadic())
1378 OldDecl = OldTemplate;
1379 NewDecl = NewTemplate;
1397 bool ConstraintsInTemplateHead =
1408 if (UseMemberUsingDeclRules && ConstraintsInTemplateHead &&
1409 !SameTemplateParameterList)
1411 if (!UseMemberUsingDeclRules &&
1412 (!SameTemplateParameterList || !SameReturnType))
1416 const auto *OldMethod = dyn_cast<CXXMethodDecl>(Old);
1417 const auto *NewMethod = dyn_cast<CXXMethodDecl>(New);
1419 int OldParamsOffset = 0;
1420 int NewParamsOffset = 0;
1428 if (ThisType.isConstQualified())
1442 !isa<CXXConstructorDecl>(NewMethod))
1448 BS.
Quals = NormalizeQualifiers(OldMethod, BS.
Quals);
1449 DS.Quals = NormalizeQualifiers(NewMethod, DS.Quals);
1451 if (OldMethod->isExplicitObjectMemberFunction()) {
1453 DS.Quals.removeVolatile();
1456 return BS.
Quals == DS.Quals;
1460 auto BS =
Base.getNonReferenceType().getCanonicalType().split();
1461 auto DS =
D.getNonReferenceType().getCanonicalType().split();
1463 if (!AreQualifiersEqual(BS, DS))
1466 if (OldMethod->isImplicitObjectMemberFunction() &&
1467 OldMethod->getParent() != NewMethod->getParent()) {
1470 .getCanonicalType();
1480 if (
Base->isLValueReferenceType())
1481 return D->isLValueReferenceType();
1482 return Base->isRValueReferenceType() ==
D->isRValueReferenceType();
1487 auto DiagnoseInconsistentRefQualifiers = [&]() {
1490 if (OldMethod->getRefQualifier() == NewMethod->getRefQualifier())
1492 if (OldMethod->isExplicitObjectMemberFunction() ||
1493 NewMethod->isExplicitObjectMemberFunction())
1495 if (!UseMemberUsingDeclRules && (OldMethod->getRefQualifier() ==
RQ_None ||
1496 NewMethod->getRefQualifier() ==
RQ_None)) {
1497 SemaRef.
Diag(NewMethod->getLocation(), diag::err_ref_qualifier_overload)
1498 << NewMethod->getRefQualifier() << OldMethod->getRefQualifier();
1499 SemaRef.
Diag(OldMethod->getLocation(), diag::note_previous_declaration);
1505 if (OldMethod && OldMethod->isExplicitObjectMemberFunction())
1507 if (NewMethod && NewMethod->isExplicitObjectMemberFunction())
1510 if (OldType->getNumParams() - OldParamsOffset !=
1511 NewType->getNumParams() - NewParamsOffset ||
1513 {OldType->param_type_begin() + OldParamsOffset,
1514 OldType->param_type_end()},
1515 {NewType->param_type_begin() + NewParamsOffset,
1516 NewType->param_type_end()},
1521 if (OldMethod && NewMethod && !OldMethod->isStatic() &&
1522 !NewMethod->isStatic()) {
1523 bool HaveCorrespondingObjectParameters = [&](
const CXXMethodDecl *Old,
1525 auto NewObjectType = New->getFunctionObjectParameterReferenceType();
1529 return F->getRefQualifier() ==
RQ_None &&
1530 !F->isExplicitObjectMemberFunction();
1533 if (IsImplicitWithNoRefQual(Old) != IsImplicitWithNoRefQual(New) &&
1534 CompareType(OldObjectType.getNonReferenceType(),
1535 NewObjectType.getNonReferenceType()))
1537 return CompareType(OldObjectType, NewObjectType);
1538 }(OldMethod, NewMethod);
1540 if (!HaveCorrespondingObjectParameters) {
1541 if (DiagnoseInconsistentRefQualifiers())
1546 if (!UseOverrideRules || (!NewMethod->isExplicitObjectMemberFunction() &&
1547 !OldMethod->isExplicitObjectMemberFunction()))
1552 if (!UseOverrideRules &&
1556 if ((NewRC !=
nullptr) != (OldRC !=
nullptr))
1563 if (NewMethod && OldMethod && OldMethod->isImplicitObjectMemberFunction() &&
1564 NewMethod->isImplicitObjectMemberFunction()) {
1565 if (DiagnoseInconsistentRefQualifiers())
1583 NewI != NewE || OldI != OldE; ++NewI, ++OldI) {
1584 if (NewI == NewE || OldI == OldE)
1586 llvm::FoldingSetNodeID NewID, OldID;
1588 OldI->getCond()->Profile(OldID, SemaRef.
Context,
true);
1594 if (SemaRef.
getLangOpts().CUDA && ConsiderCudaAttrs) {
1597 if (!isa<CXXDestructorDecl>(New)) {
1602 "Unexpected invalid target.");
1606 if (NewTarget != OldTarget) {
1609 if (OldMethod && NewMethod && OldMethod->isVirtual() &&
1610 OldMethod->isConstexpr() && !NewMethod->isConstexpr() &&
1611 !hasExplicitAttr<CUDAHostAttr>(Old) &&
1612 !hasExplicitAttr<CUDADeviceAttr>(Old) &&
1613 !hasExplicitAttr<CUDAHostAttr>(New) &&
1614 !hasExplicitAttr<CUDADeviceAttr>(New)) {
1628 bool UseMemberUsingDeclRules,
bool ConsiderCudaAttrs) {
1634 bool UseMemberUsingDeclRules,
bool ConsiderCudaAttrs) {
1647 bool SuppressUserConversions,
1649 bool InOverloadResolution,
1651 bool AllowObjCWritebackConversion,
1652 bool AllowObjCConversionOnExplicit) {
1655 if (SuppressUserConversions) {
1666 Conversions, AllowExplicit,
1667 AllowObjCConversionOnExplicit)) {
1688 if (
const auto *InitList = dyn_cast<InitListExpr>(From);
1689 InitList && InitList->getNumInits() == 1 &&
1691 const Expr *SingleInit = InitList->getInit(0);
1692 FromType = SingleInit->
getType();
1702 if ((FromCanon == ToCanon ||
1713 if (ToCanon != FromCanon)
1724 Cand != Conversions.
end(); ++Cand)
1767 bool SuppressUserConversions,
1769 bool InOverloadResolution,
1771 bool AllowObjCWritebackConversion,
1772 bool AllowObjCConversionOnExplicit) {
1775 ICS.
Standard, CStyle, AllowObjCWritebackConversion)){
1816 auto *ToResType = cast<HLSLAttributedResourceType>(ToType);
1817 auto *FromResType = cast<HLSLAttributedResourceType>(FromType);
1819 FromResType->getWrappedType()) &&
1821 FromResType->getContainedType()) &&
1822 ToResType->getAttrs() == FromResType->getAttrs()) {
1832 AllowExplicit, InOverloadResolution, CStyle,
1833 AllowObjCWritebackConversion,
1834 AllowObjCConversionOnExplicit);
1839 bool SuppressUserConversions,
1841 bool InOverloadResolution,
1843 bool AllowObjCWritebackConversion) {
1844 return ::TryImplicitConversion(*
this, From, ToType, SuppressUserConversions,
1845 AllowExplicit, InOverloadResolution, CStyle,
1846 AllowObjCWritebackConversion,
1852 bool AllowExplicit) {
1857 bool AllowObjCWritebackConversion =
1860 if (getLangOpts().ObjC)
1864 *
this, From, ToType,
1866 AllowExplicit ? AllowedExplicit::All : AllowedExplicit::None,
1868 false, AllowObjCWritebackConversion,
1870 return PerformImplicitConversion(From, ToType, ICS, Action);
1888 if (TyClass != CanFrom->getTypeClass())
return false;
1889 if (TyClass != Type::FunctionProto && TyClass != Type::FunctionNoProto) {
1890 if (TyClass == Type::Pointer) {
1893 }
else if (TyClass == Type::BlockPointer) {
1896 }
else if (TyClass == Type::MemberPointer) {
1900 if (ToMPT->getClass() != FromMPT->
getClass())
1902 CanTo = ToMPT->getPointeeType();
1908 TyClass = CanTo->getTypeClass();
1909 if (TyClass != CanFrom->getTypeClass())
return false;
1910 if (TyClass != Type::FunctionProto && TyClass != Type::FunctionNoProto)
1914 const auto *FromFn = cast<FunctionType>(CanFrom);
1917 const auto *ToFn = cast<FunctionType>(CanTo);
1920 bool Changed =
false;
1929 if (
const auto *FromFPT = dyn_cast<FunctionProtoType>(FromFn)) {
1930 const auto *ToFPT = cast<FunctionProtoType>(ToFn);
1931 if (FromFPT->isNothrow() && !ToFPT->isNothrow()) {
1932 FromFn = cast<FunctionType>(
1943 bool CanUseToFPT, CanUseFromFPT;
1945 CanUseFromFPT, NewParamInfos) &&
1946 CanUseToFPT && !CanUseFromFPT) {
1949 NewParamInfos.empty() ? nullptr : NewParamInfos.data();
1951 FromFPT->getParamTypes(), ExtInfo);
1961 FromFPT = cast<FunctionProtoType>(FromFn);
1965 const auto FromFX = FromFPT->getFunctionEffects();
1966 const auto ToFX = ToFPT->getFunctionEffects();
1967 if (FromFX != ToFX) {
1971 FromFPT->getReturnType(), FromFPT->getParamTypes(), ExtInfo);
1981 assert(
QualType(FromFn, 0).isCanonical());
1982 if (
QualType(FromFn, 0) != CanTo)
return false;
2010 if ((&FromSem == &llvm::APFloat::PPCDoubleDouble() &&
2011 &ToSem == &llvm::APFloat::IEEEquad()) ||
2012 (&FromSem == &llvm::APFloat::IEEEquad() &&
2013 &ToSem == &llvm::APFloat::PPCDoubleDouble()))
2068 bool InOverloadResolution,
bool CStyle) {
2085 if (ToExtType && FromExtType) {
2087 unsigned ToElts = ToExtType->getNumElements();
2088 if (FromElts < ToElts)
2090 if (FromElts == ToElts)
2096 QualType ToElTy = ToExtType->getElementType();
2101 if (FromExtType && !ToExtType) {
2123 QualType ToElTy = ToExtType->getElementType();
2157 !ToType->
hasAttr(attr::ArmMveStrictPolymorphism))) {
2162 !InOverloadResolution && !CStyle) {
2164 << FromType << ToType;
2175 bool InOverloadResolution,
2188 bool InOverloadResolution,
2191 bool AllowObjCWritebackConversion) {
2217 FromType = Fn->getType();
2238 if (Method && !Method->
isStatic() &&
2241 "Non-unary operator on non-static member address");
2242 assert(cast<UnaryOperator>(From->
IgnoreParens())->getOpcode()
2244 "Non-address-of operator on non-static member address");
2245 const Type *ClassType
2249 assert(cast<UnaryOperator>(From->
IgnoreParens())->getOpcode() ==
2251 "Non-address-of operator for overloaded function expression");
2298 FromType =
Atomic->getValueType();
2333 if (
auto *FD = dyn_cast<FunctionDecl>(DRE->getDecl()))
2353 bool IncompatibleObjC =
false;
2408 }
else if (AllowObjCWritebackConversion &&
2412 FromType, IncompatibleObjC)) {
2418 InOverloadResolution, FromType)) {
2422 From, InOverloadResolution, CStyle)) {
2432 S, From, ToType, InOverloadResolution, SCS, CStyle)) {
2468 bool ObjCLifetimeConversion;
2474 ObjCLifetimeConversion)) {
2493 CanonFrom = CanonTo;
2498 if (CanonFrom == CanonTo)
2503 if (S.
getLangOpts().CPlusPlus || !InOverloadResolution)
2547 bool InOverloadResolution,
2557 for (
const auto *it : UD->
fields()) {
2560 ToType = it->getType();
2586 return To->
getKind() == BuiltinType::Int;
2589 return To->
getKind() == BuiltinType::UInt;
2613 if (FromEnumType->getDecl()->isScoped())
2620 if (FromEnumType->getDecl()->isFixed()) {
2621 QualType Underlying = FromEnumType->getDecl()->getIntegerType();
2623 IsIntegralPromotion(
nullptr, Underlying, ToType);
2630 ToType, FromEnumType->getDecl()->getPromotionType());
2655 uint64_t FromSize = Context.
getTypeSize(FromType);
2664 for (
int Idx = 0; Idx < 6; ++Idx) {
2665 uint64_t ToSize = Context.
getTypeSize(PromoteTypes[Idx]);
2666 if (FromSize < ToSize ||
2667 (FromSize == ToSize &&
2668 FromIsSigned == PromoteTypes[Idx]->isSignedIntegerType())) {
2693 std::optional<llvm::APSInt> BitWidth;
2696 MemberDecl->getBitWidth()->getIntegerConstantExpr(Context))) {
2697 llvm::APSInt ToSize(BitWidth->getBitWidth(), BitWidth->isUnsigned());
2701 if (*BitWidth < ToSize ||
2703 return To->
getKind() == BuiltinType::Int;
2709 return To->
getKind() == BuiltinType::UInt;
2737 if (FromBuiltin->getKind() == BuiltinType::Float &&
2738 ToBuiltin->getKind() == BuiltinType::Double)
2745 (FromBuiltin->getKind() == BuiltinType::Float ||
2746 FromBuiltin->getKind() == BuiltinType::Double) &&
2747 (ToBuiltin->getKind() == BuiltinType::LongDouble ||
2748 ToBuiltin->getKind() == BuiltinType::Float128 ||
2749 ToBuiltin->getKind() == BuiltinType::Ibm128))
2754 if (getLangOpts().
HLSL && FromBuiltin->getKind() == BuiltinType::Half &&
2755 (ToBuiltin->getKind() == BuiltinType::Float ||
2756 ToBuiltin->getKind() == BuiltinType::Double))
2760 if (!getLangOpts().NativeHalfType &&
2761 FromBuiltin->getKind() == BuiltinType::Half &&
2762 ToBuiltin->getKind() == BuiltinType::Float)
2794 bool StripObjCLifetime =
false) {
2797 "Invalid similarly-qualified pointer type");
2808 if (StripObjCLifetime)
2819 if (isa<ObjCObjectPointerType>(ToType))
2828 if (isa<ObjCObjectPointerType>(ToType))
2834 bool InOverloadResolution,
2840 return !InOverloadResolution;
2848 bool InOverloadResolution,
2850 bool &IncompatibleObjC) {
2851 IncompatibleObjC =
false;
2852 if (isObjCPointerConversion(FromType, ToType, ConvertedType,
2859 ConvertedType = ToType;
2866 ConvertedType = ToType;
2873 ConvertedType = ToType;
2881 ConvertedType = ToType;
2891 ConvertedType = ToType;
2899 !getLangOpts().ObjCAutoRefCount) {
2929 if (getLangOpts().MSVCCompat && FromPointeeType->
isFunctionType() &&
2963 IsDerivedFrom(From->
getBeginLoc(), FromPointeeType, ToPointeeType)) {
2997 bool &IncompatibleObjC) {
2998 if (!getLangOpts().
ObjC)
3010 if (ToObjCPtr && FromObjCPtr) {
3021 if (getLangOpts().CPlusPlus && LHS && RHS &&
3023 FromObjCPtr->getPointeeType(), getASTContext()))
3028 ConvertedType =
AdoptQualifiers(Context, ConvertedType, FromQualifiers);
3036 IncompatibleObjC =
true;
3040 ConvertedType =
AdoptQualifiers(Context, ConvertedType, FromQualifiers);
3052 if (FromObjCPtr && FromObjCPtr->isObjCBuiltinType()) {
3080 isObjCPointerConversion(FromPointeeType, ToPointeeType, ConvertedType,
3081 IncompatibleObjC)) {
3083 IncompatibleObjC =
true;
3085 ConvertedType =
AdoptQualifiers(Context, ConvertedType, FromQualifiers);
3092 isObjCPointerConversion(FromPointeeType, ToPointeeType, ConvertedType,
3093 IncompatibleObjC)) {
3096 ConvertedType =
AdoptQualifiers(Context, ConvertedType, FromQualifiers);
3108 if (FromFunctionType && ToFunctionType) {
3117 if (FromFunctionType->
getNumParams() != ToFunctionType->getNumParams() ||
3118 FromFunctionType->
isVariadic() != ToFunctionType->isVariadic() ||
3119 FromFunctionType->
getMethodQuals() != ToFunctionType->getMethodQuals())
3122 bool HasObjCConversion =
false;
3126 }
else if (isObjCPointerConversion(FromFunctionType->
getReturnType(),
3127 ToFunctionType->getReturnType(),
3128 ConvertedType, IncompatibleObjC)) {
3130 HasObjCConversion =
true;
3137 for (
unsigned ArgIdx = 0, NumArgs = FromFunctionType->
getNumParams();
3138 ArgIdx != NumArgs; ++ArgIdx) {
3140 QualType ToArgType = ToFunctionType->getParamType(ArgIdx);
3144 }
else if (isObjCPointerConversion(FromArgType, ToArgType,
3145 ConvertedType, IncompatibleObjC)) {
3147 HasObjCConversion =
true;
3154 if (HasObjCConversion) {
3158 IncompatibleObjC =
true;
3190 if (!FromFunctionType || !ToFunctionType)
3193 if (Context.
hasSameType(FromPointeeType, ToPointeeType))
3198 if (FromFunctionType->
getNumParams() != ToFunctionType->getNumParams() ||
3199 FromFunctionType->
isVariadic() != ToFunctionType->isVariadic())
3204 if (FromEInfo != ToEInfo)
3207 bool IncompatibleObjC =
false;
3209 ToFunctionType->getReturnType())) {
3213 QualType LHS = ToFunctionType->getReturnType();
3214 if ((!getLangOpts().CPlusPlus || !RHS->
isRecordType()) &&
3220 }
else if (isObjCPointerConversion(RHS, LHS,
3221 ConvertedType, IncompatibleObjC)) {
3222 if (IncompatibleObjC)
3231 for (
unsigned ArgIdx = 0, NumArgs = FromFunctionType->
getNumParams();
3232 ArgIdx != NumArgs; ++ArgIdx) {
3233 IncompatibleObjC =
false;
3235 QualType ToArgType = ToFunctionType->getParamType(ArgIdx);
3236 if (Context.
hasSameType(FromArgType, ToArgType)) {
3238 }
else if (isObjCPointerConversion(ToArgType, FromArgType,
3239 ConvertedType, IncompatibleObjC)) {
3240 if (IncompatibleObjC)
3249 bool CanUseToFPT, CanUseFromFPT;
3251 CanUseToFPT, CanUseFromFPT,
3255 ConvertedType = ToType;
3293 if (!Context.
hasSameType(FromMember->getClass(), ToMember->getClass())) {
3295 <<
QualType(FromMember->getClass(), 0);
3328 if (!FromFunction || !ToFunction) {
3333 if (FromFunction->
getNumParams() != ToFunction->getNumParams()) {
3341 if (!FunctionParamTypesAreEqual(FromFunction, ToFunction, &ArgPos)) {
3343 << ToFunction->getParamType(ArgPos)
3350 ToFunction->getReturnType())) {
3356 if (FromFunction->
getMethodQuals() != ToFunction->getMethodQuals()) {
3366 cast<FunctionProtoType>(ToFunction->getCanonicalTypeUnqualified())
3379 assert(llvm::size(Old) == llvm::size(New) &&
3380 "Can't compare parameters of functions with different number of "
3383 for (
auto &&[Idx,
Type] : llvm::enumerate(Old)) {
3385 size_t J =
Reversed ? (llvm::size(New) - Idx - 1) : Idx;
3406 return FunctionParamTypesAreEqual(OldType->
param_types(),
3419 unsigned OldIgnore =
3421 unsigned NewIgnore =
3424 auto *OldPT = cast<FunctionProtoType>(OldFunction->
getFunctionType());
3425 auto *NewPT = cast<FunctionProtoType>(NewFunction->
getFunctionType());
3427 return FunctionParamTypesAreEqual(OldPT->param_types().slice(OldIgnore),
3428 NewPT->param_types().slice(NewIgnore),
3435 bool IgnoreBaseAccess,
3438 bool IsCStyleOrFunctionalCast = IgnoreBaseAccess;
3442 if (Diagnose && !IsCStyleOrFunctionalCast && !FromType->
isAnyPointerType() &&
3446 DiagRuntimeBehavior(From->
getExprLoc(), From,
3447 PDiag(diag::warn_impcast_bool_to_null_pointer)
3449 else if (!isUnevaluatedContext())
3458 if (FromPointeeType->
isRecordType() && ToPointeeType->isRecordType() &&
3462 unsigned InaccessibleID = 0;
3463 unsigned AmbiguousID = 0;
3465 InaccessibleID = diag::err_upcast_to_inaccessible_base;
3466 AmbiguousID = diag::err_ambiguous_derived_to_base_conv;
3468 if (CheckDerivedToBaseConversion(
3469 FromPointeeType, ToPointeeType, InaccessibleID, AmbiguousID,
3471 &BasePath, IgnoreBaseAccess))
3475 Kind = CK_DerivedToBase;
3478 if (Diagnose && !IsCStyleOrFunctionalCast &&
3479 FromPointeeType->
isFunctionType() && ToPointeeType->isVoidType()) {
3480 assert(getLangOpts().MSVCCompat &&
3481 "this should only be possible with MSVCCompat!");
3493 if (FromPtrType->isObjCBuiltinType() || ToPtrType->isObjCBuiltinType())
3496 Kind = CK_BlockPointerToObjCPointerCast;
3498 Kind = CK_CPointerToObjCPointerCast;
3502 Kind = CK_AnyPointerToBlockPointerCast;
3508 Kind = CK_NullToPointer;
3515 bool InOverloadResolution,
3525 ConvertedType = ToType;
3540 IsDerivedFrom(From->
getBeginLoc(), ToClass, FromClass)) {
3552 bool IgnoreBaseAccess) {
3559 "Expr must be null pointer constant!");
3560 Kind = CK_NullToMemberPointer;
3565 assert(ToPtrType &&
"No member pointer cast has a target type "
3566 "that is not a member pointer.");
3572 assert(FromClass->
isRecordType() &&
"Pointer into non-class.");
3573 assert(ToClass->
isRecordType() &&
"Pointer into non-class.");
3577 bool DerivationOkay =
3578 IsDerivedFrom(From->
getBeginLoc(), ToClass, FromClass, Paths);
3579 assert(DerivationOkay &&
3580 "Should not have been called if derivation isn't OK.");
3581 (void)DerivationOkay;
3584 getUnqualifiedType())) {
3585 std::string PathDisplayStr = getAmbiguousPathsDisplayString(Paths);
3587 << 0 << FromClass << ToClass << PathDisplayStr << From->
getSourceRange();
3591 if (
const RecordType *VBase = Paths.getDetectedVirtual()) {
3593 << FromClass << ToClass <<
QualType(VBase, 0)
3598 if (!IgnoreBaseAccess)
3599 CheckBaseClassAccess(From->
getExprLoc(), FromClass, ToClass,
3601 diag::err_downcast_from_inaccessible_base);
3605 Kind = CK_BaseToDerivedMemberPointer;
3628 bool CStyle,
bool IsTopLevel,
3629 bool &PreviousToQualsIncludeConst,
3630 bool &ObjCLifetimeConversion,
3643 ObjCLifetimeConversion =
true;
3679 !PreviousToQualsIncludeConst)
3697 PreviousToQualsIncludeConst =
3698 PreviousToQualsIncludeConst && ToQuals.
hasConst();
3704 bool CStyle,
bool &ObjCLifetimeConversion) {
3707 ObjCLifetimeConversion =
false;
3717 bool PreviousToQualsIncludeConst =
true;
3718 bool UnwrappedAnyPointer =
false;
3721 !UnwrappedAnyPointer,
3722 PreviousToQualsIncludeConst,
3723 ObjCLifetimeConversion, getASTContext()))
3725 UnwrappedAnyPointer =
true;
3742 bool InOverloadResolution,
3751 InOverloadResolution, InnerSCS,
3768 if (CtorType->getNumParams() > 0) {
3769 QualType FirstArg = CtorType->getParamType(0);
3781 bool AllowExplicit) {
3788 bool Usable = !Info.Constructor->isInvalidDecl() &&
3791 bool SuppressUserConversions =
false;
3792 if (Info.ConstructorTmpl)
3795 CandidateSet, SuppressUserConversions,
3800 CandidateSet, SuppressUserConversions,
3801 false, AllowExplicit);
3805 bool HadMultipleCandidates = (CandidateSet.
size() > 1);
3814 QualType ThisType = Constructor->getFunctionObjectParameterType();
3832 llvm_unreachable(
"Invalid OverloadResult!");
3854 bool AllowObjCConversionOnExplicit) {
3855 assert(AllowExplicit != AllowedExplicit::None ||
3856 !AllowObjCConversionOnExplicit);
3860 bool ConstructorsOnly =
false;
3876 ConstructorsOnly =
true;
3881 = dyn_cast<CXXRecordDecl>(ToRecordType->getDecl())) {
3883 Expr **Args = &From;
3884 unsigned NumArgs = 1;
3885 bool ListInitializing =
false;
3886 if (
InitListExpr *InitList = dyn_cast<InitListExpr>(From)) {
3889 S, From, ToType, ToRecordDecl, User, CandidateSet,
3890 AllowExplicit == AllowedExplicit::All);
3899 Args = InitList->getInits();
3900 NumArgs = InitList->getNumInits();
3901 ListInitializing =
true;
3909 bool Usable = !Info.Constructor->isInvalidDecl();
3910 if (!ListInitializing)
3911 Usable = Usable && Info.Constructor->isConvertingConstructor(
3914 bool SuppressUserConversions = !ConstructorsOnly;
3922 if (SuppressUserConversions && ListInitializing) {
3923 SuppressUserConversions =
3924 NumArgs == 1 && isa<InitListExpr>(Args[0]) &&
3928 if (Info.ConstructorTmpl)
3930 Info.ConstructorTmpl, Info.FoundDecl,
3932 CandidateSet, SuppressUserConversions,
3934 AllowExplicit == AllowedExplicit::All);
3940 SuppressUserConversions,
3942 AllowExplicit == AllowedExplicit::All);
3949 if (ConstructorsOnly || isa<InitListExpr>(From)) {
3952 }
else if (
const RecordType *FromRecordType =
3955 = dyn_cast<CXXRecordDecl>(FromRecordType->getDecl())) {
3957 const auto &Conversions = FromRecordDecl->getVisibleConversionFunctions();
3958 for (
auto I = Conversions.begin(),
E = Conversions.end(); I !=
E; ++I) {
3962 if (isa<UsingShadowDecl>(
D))
3963 D = cast<UsingShadowDecl>(
D)->getTargetDecl();
3967 if ((ConvTemplate = dyn_cast<FunctionTemplateDecl>(
D)))
3970 Conv = cast<CXXConversionDecl>(
D);
3974 ConvTemplate, FoundDecl, ActingContext, From, ToType,
3975 CandidateSet, AllowObjCConversionOnExplicit,
3976 AllowExplicit != AllowedExplicit::None);
3979 CandidateSet, AllowObjCConversionOnExplicit,
3980 AllowExplicit != AllowedExplicit::None);
3985 bool HadMultipleCandidates = (CandidateSet.
size() > 1);
3994 = dyn_cast<CXXConstructorDecl>(Best->Function)) {
4001 if (isa<InitListExpr>(From)) {
4005 if (Best->Conversions[0].isEllipsis())
4008 User.
Before = Best->Conversions[0].Standard;
4021 = dyn_cast<CXXConversionDecl>(Best->Function)) {
4028 User.
Before = Best->Conversions[0].Standard;
4043 User.
After = Best->FinalConversion;
4046 llvm_unreachable(
"Not a constructor or conversion function?");
4055 llvm_unreachable(
"Invalid OverloadResult!");
4065 CandidateSet, AllowedExplicit::None,
false);
4079 if (!RequireCompleteType(From->
getBeginLoc(), ToType,
4080 diag::err_typecheck_nonviable_condition_incomplete,
4087 *
this, From, Cands);
4113 if (!Conv1 || !Conv2)
4128 if (Block1 != Block2)
4141 if (Conv1FuncRet && Conv2FuncRet &&
4152 CallOpProto->isVariadic(),
false);
4154 CallOpProto->isVariadic(),
true);
4156 CallingConv PrefOrder[] = {DefaultFree, DefaultMember, CallOpCC};
4251 if (!ICS1.
isBad()) {
4252 bool StdInit1 =
false, StdInit2 =
false;
4259 if (StdInit1 != StdInit2)
4270 CAT2->getElementType())) {
4272 if (CAT1->getSize() != CAT2->getSize())
4274 return CAT1->getSize().ult(CAT2->getSize())
4396 return FixedEnumPromotion::None;
4400 return FixedEnumPromotion::None;
4403 if (!
Enum->isFixed())
4404 return FixedEnumPromotion::None;
4408 return FixedEnumPromotion::ToUnderlyingType;
4410 return FixedEnumPromotion::ToPromotedUnderlyingType;
4439 else if (Rank2 < Rank1)
4462 if (FEP1 != FixedEnumPromotion::None && FEP2 != FixedEnumPromotion::None &&
4464 return FEP1 == FixedEnumPromotion::ToUnderlyingType
4474 bool SCS1ConvertsToVoid
4476 bool SCS2ConvertsToVoid
4478 if (SCS1ConvertsToVoid != SCS2ConvertsToVoid) {
4483 }
else if (!SCS1ConvertsToVoid && !SCS2ConvertsToVoid) {
4489 }
else if (SCS1ConvertsToVoid && SCS2ConvertsToVoid &&
4518 if (FromObjCPtr1 && FromObjCPtr2) {
4523 if (AssignLeft != AssignRight) {
4558 if (UnqualT1 == UnqualT2) {
4570 if (isa<ArrayType>(T1) && T1Quals)
4572 if (isa<ArrayType>(T2) && T2Quals)
4620 if (SCS1IsCompatibleVectorConversion != SCS2IsCompatibleVectorConversion)
4621 return SCS1IsCompatibleVectorConversion
4628 bool SCS1IsCompatibleSVEVectorConversion =
4630 bool SCS2IsCompatibleSVEVectorConversion =
4633 if (SCS1IsCompatibleSVEVectorConversion !=
4634 SCS2IsCompatibleSVEVectorConversion)
4635 return SCS1IsCompatibleSVEVectorConversion
4642 bool SCS1IsCompatibleRVVVectorConversion =
4644 bool SCS2IsCompatibleRVVVectorConversion =
4647 if (SCS1IsCompatibleRVVVectorConversion !=
4648 SCS2IsCompatibleRVVVectorConversion)
4649 return SCS1IsCompatibleRVVVectorConversion
4689 if (UnqualT1 == UnqualT2)
4707 bool ObjCLifetimeConversion;
4717 if (CanPick1 != CanPick2)
4771 if (FromPointee1 == FromPointee2 && ToPointee1 != ToPointee2) {
4779 if (FromPointee1 != FromPointee2 && ToPointee1 == ToPointee2) {
4796 if (FromPtr1 && FromPtr2 && ToPtr1 && ToPtr2) {
4803 bool FromAssignRight
4812 if (ToPtr1->isObjCIdType() &&
4813 (ToPtr2->isObjCQualifiedIdType() || ToPtr2->getInterfaceDecl()))
4815 if (ToPtr2->isObjCIdType() &&
4816 (ToPtr1->isObjCQualifiedIdType() || ToPtr1->getInterfaceDecl()))
4821 if (ToPtr1->isObjCQualifiedIdType() && ToPtr2->getInterfaceDecl())
4823 if (ToPtr2->isObjCQualifiedIdType() && ToPtr1->getInterfaceDecl())
4828 if (ToPtr1->isObjCClassType() &&
4829 (ToPtr2->isObjCQualifiedClassType() || ToPtr2->getInterfaceDecl()))
4831 if (ToPtr2->isObjCClassType() &&
4832 (ToPtr1->isObjCQualifiedClassType() || ToPtr1->getInterfaceDecl()))
4837 if (ToPtr1->isObjCQualifiedClassType() && ToPtr2->getInterfaceDecl())
4839 if (ToPtr2->isObjCQualifiedClassType() && ToPtr1->getInterfaceDecl())
4845 (ToAssignLeft != ToAssignRight)) {
4856 }
else if (IsSecondSame)
4865 (FromAssignLeft != FromAssignRight))
4879 const Type *FromPointeeType1 = FromMemPointer1->getClass();
4880 const Type *ToPointeeType1 = ToMemPointer1->
getClass();
4881 const Type *FromPointeeType2 = FromMemPointer2->
getClass();
4882 const Type *ToPointeeType2 = ToMemPointer2->
getClass();
4888 if (FromPointee1 == FromPointee2 && ToPointee1 != ToPointee2) {
4895 if (ToPointee1 == ToPointee2 && FromPointee1 != FromPointee2) {
4933 if (!
T.getQualifiers().hasUnaligned())
4947 "T1 must be the pointee type of the reference type");
4948 assert(!OrigT2->
isReferenceType() &&
"T2 cannot be a reference type");
4972 if (UnqualT1 == UnqualT2) {
4974 }
else if (isCompleteType(
Loc, OrigT2) &&
4975 IsDerivedFrom(
Loc, UnqualT2, UnqualT1))
4976 Conv |= ReferenceConversions::DerivedToBase;
4980 Conv |= ReferenceConversions::ObjC;
4982 IsFunctionConversion(UnqualT2, UnqualT1, ConvertedT2)) {
4983 Conv |= ReferenceConversions::Function;
4985 return Ref_Compatible;
4987 bool ConvertedReferent = Conv != 0;
4991 bool PreviousToQualsIncludeConst =
true;
4992 bool TopLevel =
true;
4998 Conv |= ReferenceConversions::Qualification;
5004 Conv |= ReferenceConversions::NestedQualification;
5012 bool ObjCLifetimeConversion =
false;
5014 PreviousToQualsIncludeConst,
5015 ObjCLifetimeConversion, getASTContext()))
5021 if (ObjCLifetimeConversion)
5022 Conv |= ReferenceConversions::ObjCLifetime;
5041 bool AllowExplicit) {
5042 assert(T2->
isRecordType() &&
"Can only find conversions of record types.");
5047 const auto &Conversions = T2RecordDecl->getVisibleConversionFunctions();
5048 for (
auto I = Conversions.begin(),
E = Conversions.end(); I !=
E; ++I) {
5051 if (isa<UsingShadowDecl>(
D))
5052 D = cast<UsingShadowDecl>(
D)->getTargetDecl();
5055 = dyn_cast<FunctionTemplateDecl>(
D);
5060 Conv = cast<CXXConversionDecl>(
D);
5072 if (!ConvTemplate &&
5096 ConvTemplate, I.getPair(), ActingDC,
Init, DeclType, CandidateSet,
5097 false, AllowExplicit);
5100 Conv, I.getPair(), ActingDC,
Init, DeclType, CandidateSet,
5101 false, AllowExplicit);
5104 bool HadMultipleCandidates = (CandidateSet.
size() > 1);
5119 if (!Best->FinalConversion.DirectBinding)
5131 "Expected a direct reference binding!");
5137 Cand != CandidateSet.
end(); ++Cand)
5149 llvm_unreachable(
"Invalid OverloadResult!");
5157 bool SuppressUserConversions,
5158 bool AllowExplicit) {
5159 assert(DeclType->
isReferenceType() &&
"Reference init needs a reference");
5186 auto SetAsReferenceBinding = [&](
bool BindsDirectly) {
5191 ICS.
Standard.
Second = (RefConv & Sema::ReferenceConversions::DerivedToBase)
5193 : (RefConv & Sema::ReferenceConversions::ObjC)
5201 Sema::ReferenceConversions::NestedQualification)
5215 (RefConv & Sema::ReferenceConversions::ObjCLifetime) != 0;
5238 SetAsReferenceBinding(
true);
5287 SetAsReferenceBinding(S.
getLangOpts().CPlusPlus11 ||
5378 AllowedExplicit::None,
5403 if (isRValRef && LValRefType) {
5421 bool SuppressUserConversions,
5422 bool InOverloadResolution,
5423 bool AllowObjCWritebackConversion,
5424 bool AllowExplicit =
false);
5430 bool SuppressUserConversions,
5431 bool InOverloadResolution,
5432 bool AllowObjCWritebackConversion) {
5445 if (
const auto *IAT = dyn_cast<IncompleteArrayType>(AT))
5447 InitTy = IAT->getElementType();
5473 if (From->
getNumInits() == 1 && !IsDesignatedInit) {
5479 SuppressUserConversions,
5480 InOverloadResolution,
5481 AllowObjCWritebackConversion);
5490 Result.Standard.setAsIdentityConversion();
5491 Result.Standard.setFromType(ToType);
5492 Result.Standard.setAllToTypes(ToType);
5517 bool IsUnbounded =
false;
5521 if (CT->getSize().ult(e)) {
5525 Result.setInitializerListContainerType(ContTy, IsUnbounded);
5528 if (CT->getSize().ugt(e)) {
5534 S, &EmptyList, InitTy, SuppressUserConversions,
5535 InOverloadResolution, AllowObjCWritebackConversion);
5536 if (DfltElt.
isBad()) {
5540 Result.setInitializerListContainerType(ContTy, IsUnbounded);
5545 assert(isa<IncompleteArrayType>(AT) &&
"Expected incomplete array");
5551 Result.setInitializerListContainerType(ContTy, IsUnbounded);
5561 Result.Standard.setAsIdentityConversion();
5562 Result.Standard.setFromType(InitTy);
5563 Result.Standard.setAllToTypes(InitTy);
5564 for (
unsigned i = 0; i < e; ++i) {
5567 S,
Init, InitTy, SuppressUserConversions, InOverloadResolution,
5568 AllowObjCWritebackConversion);
5579 Result.setInitializerListContainerType(ContTy, IsUnbounded);
5593 Result.setInitializerListContainerType(ContTy, IsUnbounded);
5607 AllowedExplicit::None,
5608 InOverloadResolution,
false,
5609 AllowObjCWritebackConversion,
5628 Result.UserDefined.Before.setAsIdentityConversion();
5633 Result.UserDefined.After.setAsIdentityConversion();
5634 Result.UserDefined.After.setFromType(ToType);
5635 Result.UserDefined.After.setAllToTypes(ToType);
5636 Result.UserDefined.ConversionFunction =
nullptr;
5653 if (From->
getNumInits() == 1 && !IsDesignatedInit) {
5674 SuppressUserConversions,
5682 InOverloadResolution,
5683 AllowObjCWritebackConversion);
5686 assert(!
Result.isEllipsis() &&
5687 "Sub-initialization cannot result in ellipsis conversion.");
5693 Result.UserDefined.After;
5714 if (NumInits == 1 && !isa<InitListExpr>(From->
getInit(0)))
5716 SuppressUserConversions,
5717 InOverloadResolution,
5718 AllowObjCWritebackConversion);
5721 else if (NumInits == 0) {
5723 Result.Standard.setAsIdentityConversion();
5724 Result.Standard.setFromType(ToType);
5725 Result.Standard.setAllToTypes(ToType);
5744 bool SuppressUserConversions,
5745 bool InOverloadResolution,
5746 bool AllowObjCWritebackConversion,
5747 bool AllowExplicit) {
5748 if (
InitListExpr *FromInitList = dyn_cast<InitListExpr>(From))
5750 InOverloadResolution,AllowObjCWritebackConversion);
5755 SuppressUserConversions, AllowExplicit);
5758 SuppressUserConversions,
5759 AllowedExplicit::None,
5760 InOverloadResolution,
5762 AllowObjCWritebackConversion,
5775 return !ICS.
isBad();
5784 const CXXRecordDecl *ActingContext,
bool InOverloadResolution =
false,
5786 bool SuppressUserConversion =
false) {
5794 assert(FromClassification.
isLValue());
5806 if (ExplicitParameterType.isNull())
5809 ValueKindFromClassification(FromClassification));
5811 S, &TmpExpr, ExplicitParameterType, SuppressUserConversion,
5829 if (isa<CXXDestructorDecl>(Method) || Method->
isStatic()) {
5866 FromType, ImplicitParamType);
5876 FromType, ImplicitParamType);
5891 FromType, ImplicitParamType);
5911 if (!FromClassification.
isRValue()) {
5951 FromRecordType = From->
getType();
5952 DestType = ImplicitParamRecordType;
5953 FromClassification = From->
Classify(Context);
5959 From = CreateMaterializeTemporaryExpr(FromRecordType, From,
5978 << Method->
getDeclName() << FromRecordType << (CVR - 1)
5989 bool IsRValueQualified =
5993 << IsRValueQualified;
6005 llvm_unreachable(
"Lists are not objects");
6008 return Diag(From->
getBeginLoc(), diag::err_member_function_call_bad_type)
6009 << ImplicitParamRecordType << FromRecordType
6015 PerformObjectMemberConversion(From, Qualifier, FoundDecl, Method);
6018 From = FromRes.
get();
6027 CK = CK_AddressSpaceConversion;
6030 From = ImpCastExprToType(From, DestType, CK, From->
getValueKind()).get();
6052 AllowedExplicit::Conversions,
6065 return PerformImplicitConversion(From, Context.
BoolTy, ICS,
6068 if (!DiagnoseMultipleUserDefinedConversion(From, Context.
BoolTy))
6133 llvm_unreachable(
"found a first conversion kind in Second");
6137 llvm_unreachable(
"found a third conversion kind in Second");
6143 llvm_unreachable(
"unknown conversion kind");
6155 "converted constant expression outside C++11");
6188 diag::err_typecheck_converted_constant_expression)
6194 llvm_unreachable(
"bad conversion in converted constant expression");
6200 diag::err_typecheck_converted_constant_expression_disallowed)
6206 diag::err_typecheck_converted_constant_expression_indirect)
6216 diag::err_reference_bind_to_bitfield_in_cce)
6226 "unexpected class type converted constant expr");
6229 T, cast<NonTypeTemplateParmDecl>(Dest)),
6247 bool ReturnPreNarrowingValue =
false;
6250 PreNarrowingType)) {
6263 PreNarrowingValue.
isInt()) {
6266 ReturnPreNarrowingValue =
true;
6278 << CCE << 0 << From->
getType() <<
T;
6281 if (!ReturnPreNarrowingValue)
6282 PreNarrowingValue = {};
6299 if (
Result.isInvalid() ||
Result.get()->isValueDependent()) {
6304 RequireInt, PreNarrowingValue);
6311 return ::BuildConvertedConstantExpression(*
this, From,
T, CCE, Dest,
6318 return ::CheckConvertedConstantExpression(*
this, From,
T,
Value, CCE,
false,
6323 llvm::APSInt &
Value,
6330 if (!R.isInvalid() && !R.get()->isValueDependent())
6338 const APValue &PreNarrowingValue) {
6348 Kind = ConstantExprKind::ClassTemplateArgument;
6350 Kind = ConstantExprKind::NonClassTemplateArgument;
6352 Kind = ConstantExprKind::Normal;
6355 (RequireInt && !Eval.
Val.
isInt())) {
6362 if (Notes.empty()) {
6365 if (
const auto *CE = dyn_cast<ConstantExpr>(
E)) {
6369 "ConstantExpr has no value associated with it");
6375 Value = std::move(PreNarrowingValue);
6381 if (Notes.size() == 1 &&
6382 Notes[0].second.getDiagID() == diag::note_invalid_subexpr_in_const_expr) {
6383 Diag(Notes[0].first, diag::err_expr_not_cce) << CCE;
6384 }
else if (!Notes.empty() && Notes[0].second.getDiagID() ==
6385 diag::note_constexpr_invalid_template_arg) {
6386 Notes[0].second.setDiagID(diag::err_constexpr_invalid_template_arg);
6387 for (
unsigned I = 0; I < Notes.size(); ++I)
6388 Diag(Notes[I].first, Notes[I].second);
6392 for (
unsigned I = 0; I < Notes.size(); ++I)
6393 Diag(Notes[I].first, Notes[I].second);
6420 AllowedExplicit::Conversions,
6454 return PerformImplicitConversion(From, Ty, ICS,
6461 assert((isa<UnresolvedMemberExpr, MemberExpr>(MemExprE)) &&
6462 "expected a member expression");
6464 if (
const auto M = dyn_cast<UnresolvedMemberExpr>(MemExprE);
6465 M && !M->isImplicitAccess())
6466 Base = M->getBase();
6467 else if (
const auto M = dyn_cast<MemberExpr>(MemExprE);
6468 M && !M->isImplicitAccess())
6469 Base = M->getBase();
6503 "Method is not an explicit member function");
6504 assert(NewArgs.empty() &&
"NewArgs should be empty");
6506 NewArgs.reserve(Args.size() + 1);
6508 NewArgs.push_back(This);
6509 NewArgs.append(Args.begin(), Args.end());
6512 Method, Object->getBeginLoc());
6531 for (
unsigned I = 0, N = ViableConversions.
size(); I != N; ++I) {
6533 cast<CXXConversionDecl>(ViableConversions[I]->getUnderlyingDecl());
6545 if (ExplicitConversions.
size() == 1 && !Converter.
Suppress) {
6548 cast<CXXConversionDecl>(
Found->getUnderlyingDecl());
6553 std::string TypeStr;
6558 "static_cast<" + TypeStr +
">(")
6570 HadMultipleCandidates);
6577 From,
Result.get()->getType());
6590 cast<CXXConversionDecl>(
Found->getUnderlyingDecl());
6603 HadMultipleCandidates);
6608 CK_UserDefinedConversion,
Result.get(),
6609 nullptr,
Result.get()->getValueKind(),
6631 if (isa<UsingShadowDecl>(
D))
6632 D = cast<UsingShadowDecl>(
D)->getTargetDecl();
6634 if (
auto *ConvTemplate = dyn_cast<FunctionTemplateDecl>(
D)) {
6636 ConvTemplate, FoundDecl, ActingContext, From, ToType, CandidateSet,
6642 Conv, FoundDecl, ActingContext, From, ToType, CandidateSet,
6673 ExprResult result = CheckPlaceholderExpr(From);
6676 From = result.
get();
6680 ExprResult Converted = DefaultLvalueConversion(From);
6691 if (!RecordTy || !getLangOpts().CPlusPlus) {
6703 : Converter(Converter), From(From) {}
6708 } IncompleteDiagnoser(Converter, From);
6711 : RequireCompleteType(
Loc,
T, IncompleteDiagnoser))
6718 const auto &Conversions =
6719 cast<CXXRecordDecl>(RecordTy->
getDecl())->getVisibleConversionFunctions();
6721 bool HadMultipleCandidates =
6722 (std::distance(Conversions.begin(), Conversions.end()) > 1);
6726 bool HasUniqueTargetType =
true;
6729 for (
auto I = Conversions.begin(),
E = Conversions.end(); I !=
E; ++I) {
6739 Conversion = cast<CXXConversionDecl>(
D);
6741 assert((!ConvTemplate || getLangOpts().
CPlusPlus14) &&
6742 "Conversion operator templates are considered potentially "
6746 if (Converter.
match(CurToType) || ConvTemplate) {
6752 ExplicitConversions.
addDecl(I.getDecl(), I.getAccess());
6757 else if (HasUniqueTargetType &&
6759 HasUniqueTargetType =
false;
6761 ViableConversions.
addDecl(I.getDecl(), I.getAccess());
6779 HadMultipleCandidates,
6780 ExplicitConversions))
6786 if (!HasUniqueTargetType)
6805 HadMultipleCandidates,
Found))
6814 HadMultipleCandidates,
6815 ExplicitConversions))
6823 switch (ViableConversions.
size()) {
6826 HadMultipleCandidates,
6827 ExplicitConversions))
6837 HadMultipleCandidates,
Found))
6868 if (Proto->getNumParams() < 1)
6872 QualType ArgType = Proto->getParamType(0).getNonReferenceType();
6877 if (Proto->getNumParams() < 2)
6881 QualType ArgType = Proto->getParamType(1).getNonReferenceType();
6901 unsigned SeenAt = 0;
6903 bool HasDefault =
false;
6912 return HasDefault || SeenAt != 0;
6918 bool PartialOverloading,
bool AllowExplicit,
bool AllowExplicitConversions,
6923 assert(Proto &&
"Functions without a prototype cannot be overloaded");
6924 assert(!
Function->getDescribedFunctionTemplate() &&
6925 "Use AddTemplateOverloadCandidate for function templates");
6928 if (!isa<CXXConstructorDecl>(Method)) {
6938 CandidateSet, SuppressUserConversions,
6939 PartialOverloading, EarlyConversions, PO);
6953 if (Constructor && Constructor->isDefaulted() && Constructor->isDeleted() &&
6954 Constructor->isMoveConstructor())
6974 CandidateSet.
addCandidate(Args.size(), EarlyConversions);
6987 Candidate.
Viable =
false;
6993 if (getLangOpts().CPlusPlusModules &&
Function->isInAnotherModuleUnit()) {
7000 bool IsImplicitlyInstantiated =
false;
7001 if (
auto *SpecInfo =
Function->getTemplateSpecializationInfo()) {
7002 ND = SpecInfo->getTemplate();
7003 IsImplicitlyInstantiated = SpecInfo->getTemplateSpecializationKind() ==
7014 const bool IsInlineFunctionInGMF =
7016 (IsImplicitlyInstantiated ||
Function->isInlined());
7019 Candidate.
Viable =
false;
7026 Candidate.
Viable =
false;
7036 if (Args.size() == 1 && Constructor->isSpecializationCopyingObject() &&
7038 IsDerivedFrom(Args[0]->getBeginLoc(), Args[0]->getType(),
7040 Candidate.
Viable =
false;
7052 auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>(FoundDecl.getDecl());
7053 if (Shadow && Args.size() == 1 && Constructor->getNumParams() >= 1 &&
7054 Constructor->getParamDecl(0)->getType()->isReferenceType()) {
7055 QualType P = Constructor->getParamDecl(0)->getType()->getPointeeType();
7061 Candidate.
Viable =
false;
7070 Constructor->getMethodQualifiers().getAddressSpace(),
7071 CandidateSet.
getDestAS(), getASTContext())) {
7072 Candidate.
Viable =
false;
7085 Candidate.
Viable =
false;
7095 unsigned MinRequiredArgs =
Function->getMinRequiredArguments();
7096 if (!AggregateCandidateDeduction && Args.size() < MinRequiredArgs &&
7097 !PartialOverloading) {
7099 Candidate.
Viable =
false;
7105 if (getLangOpts().
CUDA) {
7113 Candidate.
Viable =
false;
7119 if (
Function->getTrailingRequiresClause()) {
7121 if (CheckFunctionConstraints(
Function, Satisfaction, {},
7124 Candidate.
Viable =
false;
7132 for (
unsigned ArgIdx = 0; ArgIdx < Args.size(); ++ArgIdx) {
7135 if (Candidate.
Conversions[ConvIdx].isInitialized()) {
7138 }
else if (ArgIdx < NumParams) {
7149 *
this, Args[ArgIdx], ParamType, SuppressUserConversions,
7152 getLangOpts().ObjCAutoRefCount, AllowExplicitConversions);
7154 Candidate.
Viable =
false;
7166 if (EnableIfAttr *FailedAttr =
7168 Candidate.
Viable =
false;
7178 if (Methods.size() <= 1)
7181 for (
unsigned b = 0, e = Methods.size();
b < e;
b++) {
7189 if (Args.size() < NumNamedArgs)
7192 for (
unsigned i = 0; i < NumNamedArgs; i++) {
7194 if (Args[i]->isTypeDependent()) {
7200 Expr *argExpr = Args[i];
7201 assert(argExpr &&
"SelectBestMethod(): missing expression");
7206 !param->
hasAttr<CFConsumedAttr>())
7207 argExpr =
ObjC().stripARCUnbridgedCast(argExpr);
7220 getLangOpts().ObjCAutoRefCount,
7224 if (ConversionState.
isBad() ||
7234 for (
unsigned i = NumNamedArgs, e = Args.size(); i < e; ++i) {
7235 if (Args[i]->isTypeDependent()) {
7239 ExprResult Arg = DefaultVariadicArgumentPromotion(Args[i], VariadicMethod,
7248 if (Args.size() != NumNamedArgs)
7250 else if (Match && NumNamedArgs == 0 && Methods.size() > 1) {
7253 for (
unsigned b = 0, e = Methods.size();
b < e;
b++) {
7254 QualType ReturnT = Methods[
b]->getReturnType();
7273 assert(!isa<CXXConstructorDecl>(Method) &&
7274 "Shouldn't have `this` for ctors!");
7275 assert(!Method->
isStatic() &&
"Shouldn't have `this` for static methods!");
7277 ThisArg,
nullptr, Method, Method);
7280 ConvertedThis = R.
get();
7282 if (
auto *MD = dyn_cast<CXXMethodDecl>(
Function)) {
7284 assert((MissingImplicitThis || MD->isStatic() ||
7285 isa<CXXConstructorDecl>(MD)) &&
7286 "Expected `this` for non-ctor instance methods");
7288 ConvertedThis =
nullptr;
7293 unsigned ArgSizeNoVarargs = std::min(
Function->param_size(), Args.size());
7296 for (
unsigned I = 0; I != ArgSizeNoVarargs; ++I) {
7305 ConvertedArgs.push_back(R.
get());
7313 for (
unsigned i = Args.size(), e =
Function->getNumParams(); i != e; ++i) {
7315 if (!
P->hasDefaultArg())
7320 ConvertedArgs.push_back(R.
get());
7332 bool MissingImplicitThis) {
7333 auto EnableIfAttrs =
Function->specific_attrs<EnableIfAttr>();
7334 if (EnableIfAttrs.begin() == EnableIfAttrs.end())
7340 Expr *DiscardedThis;
7342 *
this,
Function,
nullptr, CallLoc, Args, Trap,
7343 true, DiscardedThis, ConvertedArgs))
7344 return *EnableIfAttrs.begin();
7346 for (
auto *EIA : EnableIfAttrs) {
7350 if (EIA->getCond()->isValueDependent() ||
7351 !EIA->getCond()->EvaluateWithSubstitution(
7355 if (!
Result.isInt() || !
Result.getInt().getBoolValue())
7361template <
typename CheckFn>
7364 CheckFn &&IsSuccessful) {
7367 if (ArgDependent == DIA->getArgDependent())
7368 Attrs.push_back(DIA);
7375 auto WarningBegin = std::stable_partition(
7376 Attrs.begin(), Attrs.end(),
7377 [](
const DiagnoseIfAttr *DIA) { return DIA->isError(); });
7381 auto ErrAttr = llvm::find_if(llvm::make_range(Attrs.begin(), WarningBegin),
7383 if (ErrAttr != WarningBegin) {
7384 const DiagnoseIfAttr *DIA = *ErrAttr;
7385 S.
Diag(
Loc, diag::err_diagnose_if_succeeded) << DIA->getMessage();
7386 S.
Diag(DIA->getLocation(), diag::note_from_diagnose_if)
7387 << DIA->getParent() << DIA->getCond()->getSourceRange();
7391 for (
const auto *DIA : llvm::make_range(WarningBegin, Attrs.end()))
7392 if (IsSuccessful(DIA)) {
7393 S.
Diag(
Loc, diag::warn_diagnose_if_succeeded) << DIA->getMessage();
7394 S.
Diag(DIA->getLocation(), diag::note_from_diagnose_if)
7395 << DIA->getParent() << DIA->getCond()->getSourceRange();
7402 const Expr *ThisArg,
7407 [&](
const DiagnoseIfAttr *DIA) {
7412 if (!DIA->getCond()->EvaluateWithSubstitution(
7413 Result, Context, cast<FunctionDecl>(DIA->getParent()), Args, ThisArg))
7415 return Result.isInt() &&
Result.getInt().getBoolValue();
7422 *
this, ND,
false,
Loc,
7423 [&](
const DiagnoseIfAttr *DIA) {
7434 bool SuppressUserConversions,
7435 bool PartialOverloading,
7436 bool FirstArgumentIsBase) {
7438 NamedDecl *
D = F.getDecl()->getUnderlyingDecl();
7445 if (isa<CXXMethodDecl>(FD) && !cast<CXXMethodDecl>(FD)->isStatic()) {
7448 if (Args.size() > 0) {
7449 if (
Expr *
E = Args[0]) {
7457 ObjectClassification =
E->
Classify(Context);
7459 FunctionArgs = Args.slice(1);
7462 AddMethodTemplateCandidate(
7463 FunTmpl, F.getPair(),
7465 ExplicitTemplateArgs, ObjectType, ObjectClassification,
7466 FunctionArgs, CandidateSet, SuppressUserConversions,
7467 PartialOverloading);
7469 AddMethodCandidate(cast<CXXMethodDecl>(FD), F.getPair(),
7470 cast<CXXMethodDecl>(FD)->getParent(), ObjectType,
7471 ObjectClassification, FunctionArgs, CandidateSet,
7472 SuppressUserConversions, PartialOverloading);
7479 if (Args.size() > 0 &&
7480 (!Args[0] || (FirstArgumentIsBase && isa<CXXMethodDecl>(FD) &&
7481 !isa<CXXConstructorDecl>(FD)))) {
7482 assert(cast<CXXMethodDecl>(FD)->isStatic());
7483 FunctionArgs = Args.slice(1);
7486 AddTemplateOverloadCandidate(FunTmpl, F.getPair(),
7487 ExplicitTemplateArgs, FunctionArgs,
7488 CandidateSet, SuppressUserConversions,
7489 PartialOverloading);
7491 AddOverloadCandidate(FD, F.getPair(), FunctionArgs, CandidateSet,
7492 SuppressUserConversions, PartialOverloading);
7502 bool SuppressUserConversions,
7507 if (isa<UsingShadowDecl>(
Decl))
7508 Decl = cast<UsingShadowDecl>(
Decl)->getTargetDecl();
7511 assert(isa<CXXMethodDecl>(TD->getTemplatedDecl()) &&
7512 "Expected a member function template");
7513 AddMethodTemplateCandidate(TD, FoundDecl, ActingContext,
7514 nullptr, ObjectType,
7515 ObjectClassification, Args, CandidateSet,
7516 SuppressUserConversions,
false, PO);
7518 AddMethodCandidate(cast<CXXMethodDecl>(
Decl), FoundDecl, ActingContext,
7519 ObjectType, ObjectClassification, Args, CandidateSet,
7520 SuppressUserConversions,
false, {}, PO);
7530 bool SuppressUserConversions,
7531 bool PartialOverloading,
7536 assert(Proto &&
"Methods without a prototype cannot be overloaded");
7537 assert(!isa<CXXConstructorDecl>(Method) &&
7538 "Use AddOverloadCandidate for constructors");
7556 CandidateSet.
addCandidate(Args.size() + 1, EarlyConversions);
7565 bool IgnoreExplicitObject =
7569 bool ImplicitObjectMethodTreatedAsStatic =
7574 unsigned ExplicitOffset =
7577 unsigned NumParams = Method->
getNumParams() - ExplicitOffset +
7578 int(ImplicitObjectMethodTreatedAsStatic);
7586 Candidate.
Viable =
false;
7598 int(ImplicitObjectMethodTreatedAsStatic);
7600 if (Args.size() < MinRequiredArgs && !PartialOverloading) {
7602 Candidate.
Viable =
false;
7622 Candidate.
Conversions[FirstConvIdx].setStaticObjectArgument();
7627 *
this, CandidateSet.
getLocation(), ObjectType, ObjectClassification,
7628 Method, ActingContext,
true);
7629 if (Candidate.
Conversions[FirstConvIdx].isBad()) {
7630 Candidate.
Viable =
false;
7637 if (getLangOpts().
CUDA)
7638 if (!
CUDA().IsAllowedCall(getCurFunctionDecl(
true),
7640 Candidate.
Viable =
false;
7647 if (CheckFunctionConstraints(Method, Satisfaction, {},
7650 Candidate.
Viable =
false;
7658 for (
unsigned ArgIdx = 0; ArgIdx < Args.size(); ++ArgIdx) {
7661 if (Candidate.
Conversions[ConvIdx].isInitialized()) {
7664 }
else if (ArgIdx < NumParams) {
7670 if (ImplicitObjectMethodTreatedAsStatic) {
7671 ParamType = ArgIdx == 0
7675 ParamType = Proto->
getParamType(ArgIdx + ExplicitOffset);
7679 SuppressUserConversions,
7682 getLangOpts().ObjCAutoRefCount);
7684 Candidate.
Viable =
false;
7696 if (EnableIfAttr *FailedAttr =
7697 CheckEnableIf(Method, CandidateSet.
getLocation(), Args,
true)) {
7698 Candidate.
Viable =
false;
7705 Candidate.
Viable =
false;
7734 PartialOverloading,
false, ObjectType,
7735 ObjectClassification,
7737 return CheckNonDependentConversions(
7738 MethodTmpl, ParamTypes, Args, CandidateSet, Conversions,
7739 SuppressUserConversions, ActingContext, ObjectType,
7740 ObjectClassification, PO);
7744 CandidateSet.
addCandidate(Conversions.size(), Conversions);
7747 Candidate.
Viable =
false;
7752 cast<CXXMethodDecl>(Candidate.
Function)->isStatic() ||
7767 assert(
Specialization &&
"Missing member function template specialization?");
7769 "Specialization is not a member function?");
7770 AddMethodCandidate(cast<CXXMethodDecl>(
Specialization), FoundDecl,
7771 ActingContext, ObjectType, ObjectClassification, Args,
7772 CandidateSet, SuppressUserConversions, PartialOverloading,
7786 bool PartialOverloading,
bool AllowExplicit,
ADLCallKind IsADLCandidate,
7798 Candidate.
Viable =
false;
7817 FunctionTemplate, ExplicitTemplateArgs, Args,
Specialization, Info,
7818 PartialOverloading, AggregateCandidateDeduction,
7822 return CheckNonDependentConversions(
7823 FunctionTemplate, ParamTypes, Args, CandidateSet, Conversions,
7824 SuppressUserConversions,
nullptr,
QualType(), {}, PO);
7828 CandidateSet.
addCandidate(Conversions.size(), Conversions);
7831 Candidate.
Viable =
false;
7839 isa<CXXMethodDecl>(Candidate.
Function) &&
7840 !isa<CXXConstructorDecl>(Candidate.
Function);
7854 assert(
Specialization &&
"Missing function template specialization?");
7855 AddOverloadCandidate(
7856 Specialization, FoundDecl, Args, CandidateSet, SuppressUserConversions,
7857 PartialOverloading, AllowExplicit,
7858 false, IsADLCandidate, Conversions, PO,
7871 const bool AllowExplicit =
false;
7874 auto *Method = dyn_cast<CXXMethodDecl>(FD);
7875 bool HasThisConversion = Method && !isa<CXXConstructorDecl>(Method);
7876 unsigned ThisConversions = HasThisConversion ? 1 : 0;
7888 if (HasThisConversion && !cast<CXXMethodDecl>(FD)->isStatic() &&
7891 if (!FD->hasCXXExplicitFunctionObjectParameter() ||
7892 !ParamTypes[0]->isDependentType()) {
7894 *
this, CandidateSet.
getLocation(), ObjectType, ObjectClassification,
7895 Method, ActingContext,
true,
7896 FD->hasCXXExplicitFunctionObjectParameter() ? ParamTypes[0]
7898 if (Conversions[ConvIdx].isBad())
7906 for (
unsigned I = 0, N = std::min(ParamTypes.size() - Offset, Args.size());
7908 QualType ParamType = ParamTypes[I + Offset];
7912 ConvIdx = Args.size() - 1 - I;
7913 assert(Args.size() + ThisConversions == 2 &&
7914 "number of args (including 'this') must be exactly 2 for "
7918 assert(!HasThisConversion || (ConvIdx == 0 && I == 0));
7921 ConvIdx = ThisConversions + I;
7923 Conversions[ConvIdx]
7925 SuppressUserConversions,
7928 getLangOpts().ObjCAutoRefCount,
7930 if (Conversions[ConvIdx].isBad())
7952 bool AllowObjCPointerConversion) {
7960 bool ObjCLifetimeConversion;
7962 ObjCLifetimeConversion))
7967 if (!AllowObjCPointerConversion)
7971 bool IncompatibleObjC =
false;
7981 bool AllowExplicit,
bool AllowResultConversion) {
7983 "Conversion function templates use AddTemplateConversionCandidate");
7991 if (DeduceReturnType(Conversion, From->
getExprLoc()))
7998 if (!AllowResultConversion &&
8010 AllowObjCConversionOnExplicit))
8030 if (!AllowExplicit && Conversion->
isExplicit()) {
8031 Candidate.
Viable =
false;
8046 const auto *ConversionContext =
8055 From->
Classify(Context), Conversion, ConversionContext,
8060 Candidate.
Viable =
false;
8067 if (CheckFunctionConstraints(Conversion, Satisfaction) ||
8069 Candidate.
Viable =
false;
8081 if (FromCanon == ToCanon ||
8082 IsDerivedFrom(CandidateSet.
getLocation(), FromCanon, ToCanon)) {
8083 Candidate.
Viable =
false;
8100 CK_FunctionToPointerDecay, &ConversionRef,
8104 if (!isCompleteType(From->
getBeginLoc(), ConversionType)) {
8105 Candidate.
Viable =
false;
8119 Buffer, &ConversionFn, CallResultType, VK, From->
getBeginLoc());
8137 Candidate.
Viable =
false;
8149 Candidate.
Viable =
false;
8156 Candidate.
Viable =
false;
8162 "Can only end up with a standard conversion sequence or failure");
8165 if (EnableIfAttr *FailedAttr =
8166 CheckEnableIf(Conversion, CandidateSet.
getLocation(), {})) {
8167 Candidate.
Viable =
false;
8174 Candidate.
Viable =
false;
8183 bool AllowExplicit,
bool AllowResultConversion) {
8185 "Only conversion function templates permitted here");
8197 Candidate.
Viable =
false;
8208 FunctionTemplate, ObjectType, ObjectClassification, ToType,
8214 Candidate.
Viable =
false;
8224 assert(
Specialization &&
"Missing function template specialization?");
8225 AddConversionCandidate(
Specialization, FoundDecl, ActingDC, From, ToType,
8226 CandidateSet, AllowObjCConversionOnExplicit,
8227 AllowExplicit, AllowResultConversion);
8262 *
this, CandidateSet.
getLocation(), Object->getType(),
8263 Object->Classify(Context), Conversion, ActingContext);
8266 if (ObjectInit.
isBad()) {
8267 Candidate.
Viable =
false;
8278 Candidate.
Conversions[0].UserDefined.EllipsisConversion =
false;
8279 Candidate.
Conversions[0].UserDefined.HadMultipleCandidates =
false;
8280 Candidate.
Conversions[0].UserDefined.ConversionFunction = Conversion;
8281 Candidate.
Conversions[0].UserDefined.FoundConversionFunction = FoundDecl;
8284 Candidate.
Conversions[0].UserDefined.After.setAsIdentityConversion();
8292 if (Args.size() > NumParams && !Proto->
isVariadic()) {
8293 Candidate.
Viable =
false;
8300 if (Args.size() < NumParams) {
8302 Candidate.
Viable =
false;
8309 for (
unsigned ArgIdx = 0, N = Args.size(); ArgIdx != N; ++ArgIdx) {
8310 if (ArgIdx < NumParams) {
8321 getLangOpts().ObjCAutoRefCount);
8323 Candidate.
Viable =
false;
8337 if (CheckFunctionConstraints(Conversion, Satisfaction, {},
8340 Candidate.
Viable =
false;
8346 if (EnableIfAttr *FailedAttr =
8347 CheckEnableIf(Conversion, CandidateSet.
getLocation(), {})) {
8348 Candidate.
Viable =
false;
8360 NamedDecl *
D = F.getDecl()->getUnderlyingDecl();
8371 assert(!isa<CXXMethodDecl>(FD) &&
8372 "unqualified operator lookup found a member function");
8375 AddTemplateOverloadCandidate(FunTmpl, F.getPair(), ExplicitTemplateArgs,
8376 FunctionArgs, CandidateSet);
8378 AddTemplateOverloadCandidate(
8379 FunTmpl, F.getPair(), ExplicitTemplateArgs,
8380 {FunctionArgs[1], FunctionArgs[0]}, CandidateSet,
false,
false,
8383 if (ExplicitTemplateArgs)
8385 AddOverloadCandidate(FD, F.getPair(), FunctionArgs, CandidateSet);
8387 AddOverloadCandidate(FD, F.getPair(),
8388 {FunctionArgs[1], FunctionArgs[0]}, CandidateSet,
8389 false,
false,
true,
false, ADLCallKind::NotADL, {},
8418 if (!isCompleteType(OpLoc, T1) && !T1Rec->isBeingDefined())
8421 if (!T1Rec->getDecl()->getDefinition())
8424 LookupResult Operators(*
this, OpName, OpLoc, LookupOrdinaryName);
8425 LookupQualifiedName(Operators, T1Rec->getDecl());
8429 OperEnd = Operators.
end();
8430 Oper != OperEnd; ++Oper) {
8431 if (Oper->getAsFunction() &&
8434 *
this, {Args[1], Args[0]}, Oper->getAsFunction()))
8436 AddMethodCandidate(Oper.getPair(), Args[0]->getType(),
8437 Args[0]->Classify(Context), Args.slice(1),
8438 CandidateSet,
false, PO);
8445 bool IsAssignmentOperator,
8446 unsigned NumContextualBoolArguments) {
8461 for (
unsigned ArgIdx = 0, N = Args.size(); ArgIdx != N; ++ArgIdx) {
8474 if (ArgIdx < NumContextualBoolArguments) {
8475 assert(ParamTys[ArgIdx] == Context.
BoolTy &&
8476 "Contextual conversion to bool requires bool type");
8482 ArgIdx == 0 && IsAssignmentOperator,
8485 getLangOpts().ObjCAutoRefCount);
8488 Candidate.
Viable =
false;
8501class BuiltinCandidateTypeSet {
8507 TypeSet PointerTypes;
8511 TypeSet MemberPointerTypes;
8515 TypeSet EnumerationTypes;
8519 TypeSet VectorTypes;
8523 TypeSet MatrixTypes;
8526 TypeSet BitIntTypes;
8529 bool HasNonRecordTypes;
8533 bool HasArithmeticOrEnumeralTypes;
8537 bool HasNullPtrType;
8546 bool AddPointerWithMoreQualifiedTypeVariants(
QualType Ty,
8548 bool AddMemberPointerWithMoreQualifiedTypeVariants(
QualType Ty);
8552 typedef TypeSet::iterator iterator;
8554 BuiltinCandidateTypeSet(
Sema &SemaRef)
8555 : HasNonRecordTypes(
false),
8556 HasArithmeticOrEnumeralTypes(
false),
8557 HasNullPtrType(
false),
8559 Context(SemaRef.Context) { }
8561 void AddTypesConvertedFrom(
QualType Ty,
8563 bool AllowUserConversions,
8564 bool AllowExplicitConversions,
8565 const Qualifiers &VisibleTypeConversionsQuals);
8567 llvm::iterator_range<iterator> pointer_types() {
return PointerTypes; }
8568 llvm::iterator_range<iterator> member_pointer_types() {
8569 return MemberPointerTypes;
8571 llvm::iterator_range<iterator> enumeration_types() {
8572 return EnumerationTypes;
8574 llvm::iterator_range<iterator> vector_types() {
return VectorTypes; }
8575 llvm::iterator_range<iterator> matrix_types() {
return MatrixTypes; }
8576 llvm::iterator_range<iterator> bitint_types() {
return BitIntTypes; }
8578 bool containsMatrixType(
QualType Ty)
const {
return MatrixTypes.count(Ty); }
8579 bool hasNonRecordTypes() {
return HasNonRecordTypes; }
8580 bool hasArithmeticOrEnumeralTypes() {
return HasArithmeticOrEnumeralTypes; }
8581 bool hasNullPtrType()
const {
return HasNullPtrType; }
8596BuiltinCandidateTypeSet::AddPointerWithMoreQualifiedTypeVariants(
QualType Ty,
8600 if (!PointerTypes.insert(Ty))
8605 bool buildObjCPtr =
false;
8609 buildObjCPtr =
true;
8621 unsigned BaseCVR = PointeeTy.getCVRQualifiers();
8627 if ((CVR | BaseCVR) != CVR)
continue;
8649 PointerTypes.insert(QPointerTy);
8665BuiltinCandidateTypeSet::AddMemberPointerWithMoreQualifiedTypeVariants(
8668 if (!MemberPointerTypes.insert(Ty))
8672 assert(PointerTy &&
"type was not a member pointer type!");
8687 if ((CVR | BaseCVR) != CVR)
continue;
8690 MemberPointerTypes.insert(
8706BuiltinCandidateTypeSet::AddTypesConvertedFrom(
QualType Ty,
8708 bool AllowUserConversions,
8709 bool AllowExplicitConversions,
8721 Ty = SemaRef.Context.getArrayDecayedType(Ty);
8728 HasNonRecordTypes = HasNonRecordTypes || !TyRec;
8731 HasArithmeticOrEnumeralTypes =
8735 PointerTypes.insert(Ty);
8739 if (!AddPointerWithMoreQualifiedTypeVariants(Ty, VisibleQuals))
8743 if (!AddMemberPointerWithMoreQualifiedTypeVariants(Ty))
8746 HasArithmeticOrEnumeralTypes =
true;
8747 EnumerationTypes.insert(Ty);
8749 HasArithmeticOrEnumeralTypes =
true;
8750 BitIntTypes.insert(Ty);
8754 HasArithmeticOrEnumeralTypes =
true;
8755 VectorTypes.insert(Ty);
8759 HasArithmeticOrEnumeralTypes =
true;
8760 MatrixTypes.insert(Ty);
8762 HasNullPtrType =
true;
8763 }
else if (AllowUserConversions && TyRec) {
8765 if (!SemaRef.isCompleteType(Loc, Ty))
8770 if (isa<UsingShadowDecl>(
D))
8771 D = cast<UsingShadowDecl>(
D)->getTargetDecl();
8775 if (isa<FunctionTemplateDecl>(
D))
8779 if (AllowExplicitConversions || !Conv->
isExplicit()) {
8842 if (isa<UsingShadowDecl>(
D))
8843 D = cast<UsingShadowDecl>(
D)->getTargetDecl();
8877 if (Available.hasAtomic()) {
8878 Available.removeAtomic();
8885 if (Available.hasVolatile()) {
8886 Available.removeVolatile();
8920class BuiltinOperatorOverloadBuilder {
8925 bool HasArithmeticOrEnumeralCandidateType;
8929 static constexpr int ArithmeticTypesCap = 26;
8935 unsigned FirstIntegralType,
8937 unsigned FirstPromotedIntegralType,
8938 LastPromotedIntegralType;
8939 unsigned FirstPromotedArithmeticType,
8940 LastPromotedArithmeticType;
8941 unsigned NumArithmeticTypes;
8943 void InitArithmeticTypes() {
8945 FirstPromotedArithmeticType = 0;
8955 FirstIntegralType = ArithmeticTypes.size();
8956 FirstPromotedIntegralType = ArithmeticTypes.size();
8979 llvm::for_each(CandidateTypes, [&BitIntCandidates](
8980 BuiltinCandidateTypeSet &Candidate) {
8981 for (
QualType BitTy : Candidate.bitint_types())
8984 llvm::move(BitIntCandidates, std::back_inserter(ArithmeticTypes));
8985 LastPromotedIntegralType = ArithmeticTypes.size();
8986 LastPromotedArithmeticType = ArithmeticTypes.size();
9000 LastIntegralType = ArithmeticTypes.size();
9001 NumArithmeticTypes = ArithmeticTypes.size();
9008 assert(ArithmeticTypes.size() - BitIntCandidates.size() <=
9009 ArithmeticTypesCap &&
9010 "Enough inline storage for all arithmetic types.");
9015 void addPlusPlusMinusMinusStyleOverloads(
QualType CandidateTy,
9064 BuiltinOperatorOverloadBuilder(
9067 bool HasArithmeticOrEnumeralCandidateType,
9071 VisibleTypeConversionsQuals(VisibleTypeConversionsQuals),
9072 HasArithmeticOrEnumeralCandidateType(
9073 HasArithmeticOrEnumeralCandidateType),
9074 CandidateTypes(CandidateTypes),
9075 CandidateSet(CandidateSet) {
9077 InitArithmeticTypes();
9100 if (!HasArithmeticOrEnumeralCandidateType)
9103 for (
unsigned Arith = 0; Arith < NumArithmeticTypes; ++Arith) {
9104 const auto TypeOfT = ArithmeticTypes[Arith];
9106 if (Op == OO_MinusMinus)
9108 if (Op == OO_PlusPlus && S.
getLangOpts().CPlusPlus17)
9111 addPlusPlusMinusMinusStyleOverloads(
9128 void addPlusPlusMinusMinusPointerOverloads() {
9129 for (
QualType PtrTy : CandidateTypes[0].pointer_types()) {
9131 if (!PtrTy->getPointeeType()->isObjectType())
9134 addPlusPlusMinusMinusStyleOverloads(
9136 (!PtrTy.isVolatileQualified() &&
9138 (!PtrTy.isRestrictQualified() &&
9153 void addUnaryStarPointerOverloads() {
9154 for (
QualType ParamTy : CandidateTypes[0].pointer_types()) {
9160 if (Proto->getMethodQuals() || Proto->getRefQualifier())
9173 void addUnaryPlusOrMinusArithmeticOverloads() {
9174 if (!HasArithmeticOrEnumeralCandidateType)
9177 for (
unsigned Arith = FirstPromotedArithmeticType;
9178 Arith < LastPromotedArithmeticType; ++Arith) {
9179 QualType ArithTy = ArithmeticTypes[Arith];
9184 for (
QualType VecTy : CandidateTypes[0].vector_types())
9193 void addUnaryPlusPointerOverloads() {
9194 for (
QualType ParamTy : CandidateTypes[0].pointer_types())
9203 void addUnaryTildePromotedIntegralOverloads() {
9204 if (!HasArithmeticOrEnumeralCandidateType)
9207 for (
unsigned Int = FirstPromotedIntegralType;
9208 Int < LastPromotedIntegralType; ++
Int) {
9214 for (
QualType VecTy : CandidateTypes[0].vector_types())
9224 void addEqualEqualOrNotEqualMemberPointerOrNullptrOverloads() {
9228 for (
unsigned ArgIdx = 0, N = Args.size(); ArgIdx != N; ++ArgIdx) {
9229 for (
QualType MemPtrTy : CandidateTypes[ArgIdx].member_pointer_types()) {
9234 QualType ParamTypes[2] = {MemPtrTy, MemPtrTy};
9238 if (CandidateTypes[ArgIdx].hasNullPtrType()) {
9240 if (AddedTypes.insert(NullPtrTy).second) {
9241 QualType ParamTypes[2] = { NullPtrTy, NullPtrTy };
9260 void addGenericBinaryPointerOrEnumeralOverloads(
bool IsSpaceship) {
9273 llvm::DenseSet<std::pair<CanQualType, CanQualType> >
9274 UserDefinedBinaryOperators;
9276 for (
unsigned ArgIdx = 0, N = Args.size(); ArgIdx != N; ++ArgIdx) {
9277 if (!CandidateTypes[ArgIdx].enumeration_types().empty()) {
9279 CEnd = CandidateSet.
end();
9281 if (!
C->Viable || !
C->Function ||
C->Function->getNumParams() != 2)
9284 if (
C->Function->isFunctionTemplateSpecialization())
9293 .getUnqualifiedType();
9296 .getUnqualifiedType();
9304 UserDefinedBinaryOperators.insert(
9314 for (
unsigned ArgIdx = 0, N = Args.size(); ArgIdx != N; ++ArgIdx) {
9315 for (
QualType PtrTy : CandidateTypes[ArgIdx].pointer_types()) {
9319 if (IsSpaceship && PtrTy->isFunctionPointerType())
9322 QualType ParamTypes[2] = {PtrTy, PtrTy};
9325 for (
QualType EnumTy : CandidateTypes[ArgIdx].enumeration_types()) {
9330 if (!AddedTypes.insert(CanonType).second ||
9331 UserDefinedBinaryOperators.count(std::make_pair(CanonType,
9334 QualType ParamTypes[2] = {EnumTy, EnumTy};
9361 for (
int Arg = 0; Arg < 2; ++Arg) {
9362 QualType AsymmetricParamTypes[2] = {
9366 for (
QualType PtrTy : CandidateTypes[Arg].pointer_types()) {
9371 AsymmetricParamTypes[Arg] = PtrTy;
9372 if (Arg == 0 || Op == OO_Plus) {
9377 if (Op == OO_Minus) {
9382 QualType ParamTypes[2] = {PtrTy, PtrTy};
9418 void addGenericBinaryArithmeticOverloads() {
9419 if (!HasArithmeticOrEnumeralCandidateType)
9422 for (
unsigned Left = FirstPromotedArithmeticType;
9423 Left < LastPromotedArithmeticType; ++
Left) {
9424 for (
unsigned Right = FirstPromotedArithmeticType;
9425 Right < LastPromotedArithmeticType; ++
Right) {
9427 ArithmeticTypes[
Right] };
9434 for (
QualType Vec1Ty : CandidateTypes[0].vector_types())
9435 for (
QualType Vec2Ty : CandidateTypes[1].vector_types()) {
9436 QualType LandR[2] = {Vec1Ty, Vec2Ty};
9446 void addMatrixBinaryArithmeticOverloads() {
9447 if (!HasArithmeticOrEnumeralCandidateType)
9450 for (
QualType M1 : CandidateTypes[0].matrix_types()) {
9451 AddCandidate(M1, cast<MatrixType>(M1)->getElementType());
9452 AddCandidate(M1, M1);
9455 for (
QualType M2 : CandidateTypes[1].matrix_types()) {
9456 AddCandidate(cast<MatrixType>(M2)->getElementType(), M2);
9457 if (!CandidateTypes[0].containsMatrixType(M2))
9458 AddCandidate(M2, M2);
9493 void addThreeWayArithmeticOverloads() {
9494 addGenericBinaryArithmeticOverloads();
9511 void addBinaryBitwiseArithmeticOverloads() {
9512 if (!HasArithmeticOrEnumeralCandidateType)
9515 for (
unsigned Left = FirstPromotedIntegralType;
9516 Left < LastPromotedIntegralType; ++
Left) {
9517 for (
unsigned Right = FirstPromotedIntegralType;
9520 ArithmeticTypes[
Right] };
9533 void addAssignmentMemberPointerOrEnumeralOverloads() {
9537 for (
unsigned ArgIdx = 0; ArgIdx < 2; ++ArgIdx) {
9538 for (
QualType EnumTy : CandidateTypes[ArgIdx].enumeration_types()) {
9545 for (
QualType MemPtrTy : CandidateTypes[ArgIdx].member_pointer_types()) {
9570 void addAssignmentPointerOverloads(
bool isEqualOp) {
9574 for (
QualType PtrTy : CandidateTypes[0].pointer_types()) {
9578 else if (!PtrTy->getPointeeType()->isObjectType())
9589 bool NeedVolatile = !PtrTy.isVolatileQualified() &&
9599 if (!PtrTy.isRestrictQualified() &&
9619 for (
QualType PtrTy : CandidateTypes[1].pointer_types()) {
9633 bool NeedVolatile = !PtrTy.isVolatileQualified() &&
9643 if (!PtrTy.isRestrictQualified() &&
9676 void addAssignmentArithmeticOverloads(
bool isEqualOp) {
9677 if (!HasArithmeticOrEnumeralCandidateType)
9680 for (
unsigned Left = 0;
Left < NumArithmeticTypes; ++
Left) {
9681 for (
unsigned Right = FirstPromotedArithmeticType;
9682 Right < LastPromotedArithmeticType; ++
Right) {
9684 ParamTypes[1] = ArithmeticTypes[
Right];
9686 S, ArithmeticTypes[Left], Args[0]);
9699 for (
QualType Vec1Ty : CandidateTypes[0].vector_types())
9700 for (
QualType Vec2Ty : CandidateTypes[0].vector_types()) {
9702 ParamTypes[1] = Vec2Ty;
9730 void addAssignmentIntegralOverloads() {
9731 if (!HasArithmeticOrEnumeralCandidateType)
9734 for (
unsigned Left = FirstIntegralType;
Left < LastIntegralType; ++
Left) {
9735 for (
unsigned Right = FirstPromotedIntegralType;
9738 ParamTypes[1] = ArithmeticTypes[
Right];
9740 S, ArithmeticTypes[Left], Args[0]);
9759 void addExclaimOverload() {
9765 void addAmpAmpOrPipePipeOverload() {
9782 void addSubscriptOverloads() {
9783 for (
QualType PtrTy : CandidateTypes[0].pointer_types()) {
9793 for (
QualType PtrTy : CandidateTypes[1].pointer_types()) {
9813 void addArrowStarOverloads() {
9814 for (
QualType PtrTy : CandidateTypes[0].pointer_types()) {
9819 if (!isa<RecordType>(C1))
9828 for (
QualType MemPtrTy : CandidateTypes[1].member_pointer_types()) {
9834 QualType ParamTypes[2] = {PtrTy, MemPtrTy};
9838 T.isVolatileQualified())
9841 T.isRestrictQualified())
9859 void addConditionalOperatorOverloads() {
9863 for (
unsigned ArgIdx = 0; ArgIdx < 2; ++ArgIdx) {
9864 for (
QualType PtrTy : CandidateTypes[ArgIdx].pointer_types()) {
9868 QualType ParamTypes[2] = {PtrTy, PtrTy};
9872 for (
QualType MemPtrTy : CandidateTypes[ArgIdx].member_pointer_types()) {
9876 QualType ParamTypes[2] = {MemPtrTy, MemPtrTy};
9881 for (
QualType EnumTy : CandidateTypes[ArgIdx].enumeration_types()) {
9888 QualType ParamTypes[2] = {EnumTy, EnumTy};
9907 VisibleTypeConversionsQuals.
addConst();
9908 for (
unsigned ArgIdx = 0, N = Args.size(); ArgIdx != N; ++ArgIdx) {
9910 if (Args[ArgIdx]->getType()->isAtomicType())
9911 VisibleTypeConversionsQuals.
addAtomic();
9914 bool HasNonRecordCandidateType =
false;
9915 bool HasArithmeticOrEnumeralCandidateType =
false;
9917 for (
unsigned ArgIdx = 0, N = Args.size(); ArgIdx != N; ++ArgIdx) {
9918 CandidateTypes.emplace_back(*
this);
9919 CandidateTypes[ArgIdx].AddTypesConvertedFrom(Args[ArgIdx]->getType(),
9922 (Op == OO_Exclaim ||
9925 VisibleTypeConversionsQuals);
9926 HasNonRecordCandidateType = HasNonRecordCandidateType ||
9927 CandidateTypes[ArgIdx].hasNonRecordTypes();
9928 HasArithmeticOrEnumeralCandidateType =
9929 HasArithmeticOrEnumeralCandidateType ||
9930 CandidateTypes[ArgIdx].hasArithmeticOrEnumeralTypes();
9938 if (!HasNonRecordCandidateType &&
9939 !(Op == OO_Exclaim || Op == OO_AmpAmp || Op == OO_PipePipe))
9943 BuiltinOperatorOverloadBuilder OpBuilder(*
this, Args,
9944 VisibleTypeConversionsQuals,
9945 HasArithmeticOrEnumeralCandidateType,
9946 CandidateTypes, CandidateSet);
9952 llvm_unreachable(
"Expected an overloaded operator");
9957 case OO_Array_Delete:
9960 "Special operators don't use AddBuiltinOperatorCandidates");
9972 if (Args.size() == 1)
9973 OpBuilder.addUnaryPlusPointerOverloads();
9977 if (Args.size() == 1) {
9978 OpBuilder.addUnaryPlusOrMinusArithmeticOverloads();
9980 OpBuilder.addBinaryPlusOrMinusPointerOverloads(Op);
9981 OpBuilder.addGenericBinaryArithmeticOverloads();
9982 OpBuilder.addMatrixBinaryArithmeticOverloads();
9987 if (Args.size() == 1)
9988 OpBuilder.addUnaryStarPointerOverloads();
9990 OpBuilder.addGenericBinaryArithmeticOverloads();
9991 OpBuilder.addMatrixBinaryArithmeticOverloads();
9996 OpBuilder.addGenericBinaryArithmeticOverloads();
10000 case OO_MinusMinus:
10001 OpBuilder.addPlusPlusMinusMinusArithmeticOverloads(Op);
10002 OpBuilder.addPlusPlusMinusMinusPointerOverloads();
10005 case OO_EqualEqual:
10006 case OO_ExclaimEqual:
10007 OpBuilder.addEqualEqualOrNotEqualMemberPointerOrNullptrOverloads();
10008 OpBuilder.addGenericBinaryPointerOrEnumeralOverloads(
false);
10009 OpBuilder.addGenericBinaryArithmeticOverloads();
10015 case OO_GreaterEqual:
10016 OpBuilder.addGenericBinaryPointerOrEnumeralOverloads(
false);
10017 OpBuilder.addGenericBinaryArithmeticOverloads();
10021 OpBuilder.addGenericBinaryPointerOrEnumeralOverloads(
true);
10022 OpBuilder.addThreeWayArithmeticOverloads();
10029 case OO_GreaterGreater:
10030 OpBuilder.addBinaryBitwiseArithmeticOverloads();
10034 if (Args.size() == 1)
10040 OpBuilder.addBinaryBitwiseArithmeticOverloads();
10044 OpBuilder.addUnaryTildePromotedIntegralOverloads();
10048 OpBuilder.addAssignmentMemberPointerOrEnumeralOverloads();
10052 case OO_MinusEqual:
10053 OpBuilder.addAssignmentPointerOverloads(Op == OO_Equal);
10057 case OO_SlashEqual:
10058 OpBuilder.addAssignmentArithmeticOverloads(Op == OO_Equal);
10061 case OO_PercentEqual:
10062 case OO_LessLessEqual:
10063 case OO_GreaterGreaterEqual:
10065 case OO_CaretEqual:
10067 OpBuilder.addAssignmentIntegralOverloads();
10071 OpBuilder.addExclaimOverload();
10076 OpBuilder.addAmpAmpOrPipePipeOverload();
10080 if (Args.size() == 2)
10081 OpBuilder.addSubscriptOverloads();
10085 OpBuilder.addArrowStarOverloads();
10088 case OO_Conditional:
10089 OpBuilder.addConditionalOperatorOverloads();
10090 OpBuilder.addGenericBinaryArithmeticOverloads();
10101 bool PartialOverloading) {
10112 ArgumentDependentLookup(Name,
Loc, Args, Fns);
10116 CandEnd = CandidateSet.
end();
10117 Cand != CandEnd; ++Cand)
10118 if (Cand->Function) {
10122 Fns.
erase(FunTmpl);
10131 if (ExplicitTemplateArgs)
10134 AddOverloadCandidate(
10135 FD, FoundDecl, Args, CandidateSet,
false,
10136 PartialOverloading,
true,
10137 false, ADLCallKind::UsesADL);
10139 AddOverloadCandidate(
10140 FD, FoundDecl, {Args[1], Args[0]}, CandidateSet,
10141 false, PartialOverloading,
10146 auto *FTD = cast<FunctionTemplateDecl>(*I);
10147 AddTemplateOverloadCandidate(
10148 FTD, FoundDecl, ExplicitTemplateArgs, Args, CandidateSet,
10149 false, PartialOverloading,
10150 true, ADLCallKind::UsesADL);
10152 *
this, Args, FTD->getTemplatedDecl())) {
10153 AddTemplateOverloadCandidate(
10154 FTD, FoundDecl, ExplicitTemplateArgs, {Args[1], Args[0]},
10155 CandidateSet,
false, PartialOverloading,
10156 true, ADLCallKind::UsesADL,
10164enum class Comparison {
Equal, Better, Worse };
10181 bool Cand1Attr = Cand1->
hasAttr<EnableIfAttr>();
10182 bool Cand2Attr = Cand2->
hasAttr<EnableIfAttr>();
10183 if (!Cand1Attr || !Cand2Attr) {
10184 if (Cand1Attr == Cand2Attr)
10185 return Comparison::Equal;
10186 return Cand1Attr ? Comparison::Better : Comparison::Worse;
10192 llvm::FoldingSetNodeID Cand1ID, Cand2ID;
10193 for (
auto Pair : zip_longest(Cand1Attrs, Cand2Attrs)) {
10194 std::optional<EnableIfAttr *> Cand1A = std::get<0>(Pair);
10195 std::optional<EnableIfAttr *> Cand2A = std::get<1>(Pair);
10200 return Comparison::Worse;
10202 return Comparison::Better;
10207 (*Cand1A)->getCond()->Profile(Cand1ID, S.
getASTContext(),
true);
10208 (*Cand2A)->getCond()->Profile(Cand2ID, S.
getASTContext(),
true);
10209 if (Cand1ID != Cand2ID)
10210 return Comparison::Worse;
10213 return Comparison::Equal;
10221 return Comparison::Equal;
10227 return Comparison::Equal;
10228 return Comparison::Worse;
10231 return Comparison::Better;
10237 const auto *Cand1CPUSpec = Cand1.
Function->
getAttr<CPUSpecificAttr>();
10238 const auto *Cand2CPUSpec = Cand2.
Function->
getAttr<CPUSpecificAttr>();
10240 if (!Cand1CPUDisp && !Cand2CPUDisp && !Cand1CPUSpec && !Cand2CPUSpec)
10241 return Comparison::Equal;
10243 if (Cand1CPUDisp && !Cand2CPUDisp)
10244 return Comparison::Better;
10245 if (Cand2CPUDisp && !Cand1CPUDisp)
10246 return Comparison::Worse;
10248 if (Cand1CPUSpec && Cand2CPUSpec) {
10249 if (Cand1CPUSpec->cpus_size() != Cand2CPUSpec->cpus_size())
10250 return Cand1CPUSpec->cpus_size() < Cand2CPUSpec->cpus_size()
10251 ? Comparison::Better
10252 : Comparison::Worse;
10254 std::pair<CPUSpecificAttr::cpus_iterator, CPUSpecificAttr::cpus_iterator>
10255 FirstDiff = std::mismatch(
10256 Cand1CPUSpec->cpus_begin(), Cand1CPUSpec->cpus_end(),
10257 Cand2CPUSpec->cpus_begin(),
10259 return LHS->getName() == RHS->getName();
10262 assert(FirstDiff.first != Cand1CPUSpec->cpus_end() &&
10263 "Two different cpu-specific versions should not have the same "
10264 "identifier list, otherwise they'd be the same decl!");
10265 return (*FirstDiff.first)->getName() < (*FirstDiff.second)->
getName()
10266 ? Comparison::Better
10267 : Comparison::Worse;
10269 llvm_unreachable(
"No way to get here unless both had cpu_dispatch");
10275static std::optional<QualType>
10277 if (!isa<CXXMethodDecl>(F) || isa<CXXConstructorDecl>(F))
10278 return std::nullopt;
10280 auto *M = cast<CXXMethodDecl>(F);
10284 return M->getFunctionObjectParameterReferenceType();
10298 PT2->getInstantiatedFromMemberTemplate()))
10309 assert(I < F->getNumParams());
10313 unsigned F1NumParams = F1->
getNumParams() + isa<CXXMethodDecl>(F1);
10314 unsigned F2NumParams = F2->
getNumParams() + isa<CXXMethodDecl>(F2);
10316 if (F1NumParams != F2NumParams)
10319 unsigned I1 = 0, I2 = 0;
10320 for (
unsigned I = 0; I != F1NumParams; ++I) {
10321 QualType T1 = NextParam(F1, I1, I == 0);
10322 QualType T2 = NextParam(F2, I2, I == 0);
10323 assert(!T1.
isNull() && !T2.
isNull() &&
"Unexpected null param types");
10351 auto *Mem1 = dyn_cast<CXXMethodDecl>(Fn1);
10352 auto *Mem2 = dyn_cast<CXXMethodDecl>(Fn2);
10353 if (Mem1 && Mem2) {
10356 if (Mem1->getParent() != Mem2->getParent())
10360 if (Mem1->isInstance() && Mem2->isInstance() &&
10362 Mem1->getFunctionObjectParameterReferenceType(),
10363 Mem1->getFunctionObjectParameterReferenceType()))
10419 bool IsCand1ImplicitHD =
10421 bool IsCand2ImplicitHD =
10436 auto EmitThreshold =
10437 (S.
getLangOpts().CUDAIsDevice && IsCallerImplicitHD &&
10438 (IsCand1ImplicitHD || IsCand2ImplicitHD))
10441 auto Cand1Emittable = P1 > EmitThreshold;
10442 auto Cand2Emittable = P2 > EmitThreshold;
10443 if (Cand1Emittable && !Cand2Emittable)
10445 if (!Cand1Emittable && Cand2Emittable)
10456 unsigned StartArg = 0;
10463 return ICS.isStandard() &&
10475 assert(Cand2.
Conversions.size() == NumArgs &&
"Overload candidate mismatch");
10476 bool HasBetterConversion =
false;
10477 for (
unsigned ArgIdx = StartArg; ArgIdx < NumArgs; ++ArgIdx) {
10478 bool Cand1Bad = IsIllFormedConversion(Cand1.
Conversions[ArgIdx]);
10479 bool Cand2Bad = IsIllFormedConversion(Cand2.
Conversions[ArgIdx]);
10480 if (Cand1Bad != Cand2Bad) {
10483 HasBetterConversion =
true;
10487 if (HasBetterConversion)
10494 bool HasWorseConversion =
false;
10495 for (
unsigned ArgIdx = StartArg; ArgIdx < NumArgs; ++ArgIdx) {
10501 HasBetterConversion =
true;
10520 HasWorseConversion =
true;
10535 if (HasBetterConversion && !HasWorseConversion)
10546 isa<CXXConversionDecl>(Cand1.
Function) &&
10547 isa<CXXConversionDecl>(Cand2.
Function)) {
10575 isa<CXXConstructorDecl>(Cand1.
Function) !=
10576 isa<CXXConstructorDecl>(Cand2.
Function))
10577 return isa<CXXConstructorDecl>(Cand1.
Function);
10581 bool Cand1IsSpecialization = Cand1.
Function &&
10583 bool Cand2IsSpecialization = Cand2.
Function &&
10585 if (Cand1IsSpecialization != Cand2IsSpecialization)
10586 return Cand2IsSpecialization;
10592 if (Cand1IsSpecialization && Cand2IsSpecialization) {
10593 const auto *Obj1Context =
10595 const auto *Obj2Context =
10603 Obj1Context ?
QualType(Obj1Context->getTypeForDecl(), 0)
10605 Obj2Context ?
QualType(Obj2Context->getTypeForDecl(), 0)
10614 if (!Cand1IsSpecialization && !Cand2IsSpecialization &&
10624 bool Cand1IsInherited =
10626 bool Cand2IsInherited =
10628 if (Cand1IsInherited != Cand2IsInherited)
10629 return Cand2IsInherited;
10630 else if (Cand1IsInherited) {
10631 assert(Cand2IsInherited);
10634 if (Cand1Class->isDerivedFrom(Cand2Class))
10636 if (Cand2Class->isDerivedFrom(Cand1Class))
10653 auto *Guide1 = dyn_cast_or_null<CXXDeductionGuideDecl>(Cand1.
Function);
10654 auto *Guide2 = dyn_cast_or_null<CXXDeductionGuideDecl>(Cand2.
Function);
10655 if (Guide1 && Guide2) {
10657 if (Guide1->isImplicit() != Guide2->isImplicit())
10658 return Guide2->isImplicit();
10668 const auto *Constructor1 = Guide1->getCorrespondingConstructor();
10669 const auto *Constructor2 = Guide2->getCorrespondingConstructor();
10670 if (Constructor1 && Constructor2) {
10671 bool isC1Templated = Constructor1->getTemplatedKind() !=
10673 bool isC2Templated = Constructor2->getTemplatedKind() !=
10675 if (isC1Templated != isC2Templated)
10676 return isC2Templated;
10684 if (Cmp != Comparison::Equal)
10685 return Cmp == Comparison::Better;
10688 bool HasPS1 = Cand1.
Function !=
nullptr &&
10690 bool HasPS2 = Cand2.
Function !=
nullptr &&
10692 if (HasPS1 != HasPS2 && HasPS1)
10696 if (MV == Comparison::Better)
10698 if (MV == Comparison::Worse)
10713 const auto *CD1 = dyn_cast_or_null<CXXConstructorDecl>(Cand1.
Function);
10714 const auto *CD2 = dyn_cast_or_null<CXXConstructorDecl>(Cand2.
Function);
10716 LangAS AS1 = CD1->getMethodQualifiers().getAddressSpace();
10717 LangAS AS2 = CD2->getMethodQualifiers().getAddressSpace();
10738 auto *VA = dyn_cast_or_null<ValueDecl>(A);
10739 auto *VB = dyn_cast_or_null<ValueDecl>(B);
10745 if (!VA->getDeclContext()->getRedeclContext()->Equals(
10746 VB->getDeclContext()->getRedeclContext()) ||
10747 getOwningModule(VA) == getOwningModule(VB) ||
10748 VA->isExternallyVisible() || VB->isExternallyVisible())
10756 if (Context.
hasSameType(VA->getType(), VB->getType()))
10761 if (
auto *EA = dyn_cast<EnumConstantDecl>(VA)) {
10762 if (
auto *EB = dyn_cast<EnumConstantDecl>(VB)) {
10765 auto *EnumA = cast<EnumDecl>(EA->getDeclContext());
10766 auto *EnumB = cast<EnumDecl>(EB->getDeclContext());
10767 if (EnumA->hasNameForLinkage() || EnumB->hasNameForLinkage() ||
10769 EnumB->getIntegerType()))
10772 return llvm::APSInt::isSameValue(EA->getInitVal(), EB->getInitVal());
10782 assert(
D &&
"Unknown declaration");
10783 Diag(
Loc, diag::ext_equivalent_internal_linkage_decl_in_modules) <<
D;
10785 Module *M = getOwningModule(
D);
10789 for (
auto *
E : Equiv) {
10790 Module *M = getOwningModule(
E);
10791 Diag(
E->getLocation(), diag::note_equivalent_internal_linkage_decl)
10800 static_cast<CNSInfo *
>(DeductionFailure.Data)
10801 ->Satisfaction.ContainsErrors;
10818 std::transform(
begin(),
end(), std::back_inserter(Candidates),
10834 bool ContainsSameSideCandidate =
10838 S.
CUDA().IdentifyPreference(Caller, Cand->
Function) ==
10841 if (ContainsSameSideCandidate) {
10848 llvm::erase_if(Candidates, IsWrongSideCandidate);
10854 for (
auto *Cand : Candidates) {
10855 Cand->
Best =
false;
10857 if (Best ==
end() ||
10877 PendingBest.push_back(&*Best);
10882 while (!PendingBest.empty()) {
10883 auto *Curr = PendingBest.pop_back_val();
10884 for (
auto *Cand : Candidates) {
10887 PendingBest.push_back(Cand);
10892 EquivalentCands.push_back(Cand->
Function);
10904 if (Best->Function && Best->Function->isDeleted())
10907 if (
auto *M = dyn_cast_or_null<CXXMethodDecl>(Best->Function);
10909 M->isImplicitObjectMemberFunction()) {
10913 if (!EquivalentCands.empty())
10922enum OverloadCandidateKind {
10925 oc_reversed_binary_operator,
10927 oc_implicit_default_constructor,
10928 oc_implicit_copy_constructor,
10929 oc_implicit_move_constructor,
10930 oc_implicit_copy_assignment,
10931 oc_implicit_move_assignment,
10932 oc_implicit_equality_comparison,
10933 oc_inherited_constructor
10936enum OverloadCandidateSelect {
10939 ocs_described_template,
10942static std::pair<OverloadCandidateKind, OverloadCandidateSelect>
10946 std::string &Description) {
10952 FunTmpl->getTemplateParameters(), *
Fn->getTemplateSpecializationArgs());
10955 OverloadCandidateSelect Select = [&]() {
10956 if (!Description.empty())
10957 return ocs_described_template;
10958 return isTemplate ? ocs_template : ocs_non_template;
10961 OverloadCandidateKind Kind = [&]() {
10962 if (
Fn->isImplicit() &&
Fn->getOverloadedOperator() == OO_EqualEqual)
10963 return oc_implicit_equality_comparison;
10966 return oc_reversed_binary_operator;
10968 if (
const auto *Ctor = dyn_cast<CXXConstructorDecl>(Fn)) {
10969 if (!Ctor->isImplicit()) {
10970 if (isa<ConstructorUsingShadowDecl>(
Found))
10971 return oc_inherited_constructor;
10973 return oc_constructor;
10976 if (Ctor->isDefaultConstructor())
10977 return oc_implicit_default_constructor;
10979 if (Ctor->isMoveConstructor())
10980 return oc_implicit_move_constructor;
10982 assert(Ctor->isCopyConstructor() &&
10983 "unexpected sort of implicit constructor");
10984 return oc_implicit_copy_constructor;
10987 if (
const auto *Meth = dyn_cast<CXXMethodDecl>(Fn)) {
10990 if (!Meth->isImplicit())
10993 if (Meth->isMoveAssignmentOperator())
10994 return oc_implicit_move_assignment;
10996 if (Meth->isCopyAssignmentOperator())
10997 return oc_implicit_copy_assignment;
10999 assert(isa<CXXConversionDecl>(Meth) &&
"expected conversion");
11003 return oc_function;
11006 return std::make_pair(Kind, Select);
11009void MaybeEmitInheritedConstructorNote(
Sema &S,
const Decl *FoundDecl) {
11012 if (
const auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>(FoundDecl))
11014 diag::note_ovl_candidate_inherited_constructor)
11015 << Shadow->getNominatedBaseClass();
11024 if (EnableIf->getCond()->isValueDependent() ||
11025 !EnableIf->getCond()->EvaluateAsBooleanCondition(AlwaysTrue, Ctx))
11042 bool InOverloadResolution,
11046 if (InOverloadResolution)
11048 diag::note_addrof_ovl_candidate_disabled_by_enable_if_attr);
11050 S.
Diag(
Loc, diag::err_addrof_function_disabled_by_enable_if_attr) << FD;
11061 if (InOverloadResolution) {
11064 TemplateArgString +=
" ";
11066 FunTmpl->getTemplateParameters(),
11071 diag::note_ovl_candidate_unsatisfied_constraints)
11072 << TemplateArgString;
11074 S.
Diag(
Loc, diag::err_addrof_function_constraints_not_satisfied)
11083 return P->hasAttr<PassObjectSizeAttr>();
11090 unsigned ParamNo = std::distance(FD->
param_begin(), I) + 1;
11091 if (InOverloadResolution)
11093 diag::note_ovl_candidate_has_pass_object_size_params)
11096 S.
Diag(
Loc, diag::err_address_of_function_with_pass_object_size_params)
11112 return ::checkAddressOfFunctionIsAvailable(*
this,
Function, Complain,
11120 const auto *ConvD = dyn_cast<CXXConversionDecl>(Fn);
11124 const auto *RD = cast<CXXRecordDecl>(Fn->getParent());
11125 if (!RD->isLambda())
11135 return ConvToCC != CallOpCC;
11141 QualType DestType,
bool TakingAddress) {
11144 if (Fn->isMultiVersion() && Fn->hasAttr<TargetAttr>() &&
11145 !Fn->getAttr<TargetAttr>()->isDefaultVersion())
11147 if (Fn->isMultiVersion() && Fn->hasAttr<TargetVersionAttr>() &&
11148 !Fn->getAttr<TargetVersionAttr>()->isDefaultVersion())
11153 std::string FnDesc;
11154 std::pair<OverloadCandidateKind, OverloadCandidateSelect> KSPair =
11155 ClassifyOverloadCandidate(*
this,
Found, Fn, RewriteKind, FnDesc);
11157 << (
unsigned)KSPair.first << (
unsigned)KSPair.second
11160 HandleFunctionTypeMismatch(PD, Fn->getType(), DestType);
11161 Diag(Fn->getLocation(), PD);
11162 MaybeEmitInheritedConstructorNote(*
this,
Found);
11180 FunctionDecl *FirstCand =
nullptr, *SecondCand =
nullptr;
11181 for (
auto I = Cands.begin(),
E = Cands.end(); I !=
E; ++I) {
11185 if (
auto *Template = I->Function->getPrimaryTemplate())
11186 Template->getAssociatedConstraints(AC);
11188 I->Function->getAssociatedConstraints(AC);
11191 if (FirstCand ==
nullptr) {
11192 FirstCand = I->Function;
11194 }
else if (SecondCand ==
nullptr) {
11195 SecondCand = I->Function;
11208 SecondCand, SecondAC))
11217 bool TakingAddress) {
11227 dyn_cast<FunctionTemplateDecl>((*I)->getUnderlyingDecl()) ) {
11228 NoteOverloadCandidate(*I, FunTmpl->getTemplatedDecl(),
CRK_None, DestType,
11231 = dyn_cast<FunctionDecl>((*I)->getUnderlyingDecl()) ) {
11232 NoteOverloadCandidate(*I, Fun,
CRK_None, DestType, TakingAddress);
11244 S.
Diag(CaretLoc, PDiag)
11245 << Ambiguous.getFromType() << Ambiguous.getToType();
11246 unsigned CandsShown = 0;
11248 for (I = Ambiguous.begin(),
E = Ambiguous.end(); I !=
E; ++I) {
11260 unsigned I,
bool TakingCandidateAddress) {
11262 assert(Conv.
isBad());
11263 assert(Cand->
Function &&
"for now, candidate must be a function");
11269 bool isObjectArgument =
false;
11270 if (isa<CXXMethodDecl>(Fn) && !isa<CXXConstructorDecl>(Fn)) {
11272 isObjectArgument =
true;
11273 else if (!Fn->hasCXXExplicitFunctionObjectParameter())
11277 std::string FnDesc;
11278 std::pair<OverloadCandidateKind, OverloadCandidateSelect> FnKindPair =
11289 bool HasParamPack =
11290 llvm::any_of(Fn->parameters().take_front(I), [](
const ParmVarDecl *Parm) {
11291 return Parm->isParameterPack();
11293 if (!isObjectArgument && !HasParamPack)
11294 ToParamRange = Fn->getParamDecl(I)->getSourceRange();
11297 assert(FromExpr &&
"overload set argument came from implicit argument?");
11299 if (isa<UnaryOperator>(
E))
11303 S.
Diag(Fn->getLocation(), diag::note_ovl_candidate_bad_overload)
11304 << (
unsigned)FnKindPair.first << (
unsigned)FnKindPair.second << FnDesc
11305 << ToParamRange << ToTy << Name << I + 1;
11306 MaybeEmitInheritedConstructorNote(S, Cand->
FoundDecl);
11315 CToTy = RT->getPointeeType();
11320 CFromTy = FromPT->getPointeeType();
11321 CToTy = ToPT->getPointeeType();
11331 if (isObjectArgument)
11332 S.
Diag(Fn->getLocation(), diag::note_ovl_candidate_bad_addrspace_this)
11333 << (
unsigned)FnKindPair.first << (
unsigned)FnKindPair.second
11336 S.
Diag(Fn->getLocation(), diag::note_ovl_candidate_bad_addrspace)
11337 << (
unsigned)FnKindPair.first << (
unsigned)FnKindPair.second
11340 MaybeEmitInheritedConstructorNote(S, Cand->
FoundDecl);
11345 S.
Diag(Fn->getLocation(), diag::note_ovl_candidate_bad_ownership)
11346 << (
unsigned)FnKindPair.first << (
unsigned)FnKindPair.second << FnDesc
11349 MaybeEmitInheritedConstructorNote(S, Cand->
FoundDecl);
11354 S.
Diag(Fn->getLocation(), diag::note_ovl_candidate_bad_gc)
11355 << (
unsigned)FnKindPair.first << (
unsigned)FnKindPair.second << FnDesc
11358 MaybeEmitInheritedConstructorNote(S, Cand->
FoundDecl);
11363 assert(CVR &&
"expected qualifiers mismatch");
11365 if (isObjectArgument) {
11366 S.
Diag(Fn->getLocation(), diag::note_ovl_candidate_bad_cvr_this)
11367 << (
unsigned)FnKindPair.first << (
unsigned)FnKindPair.second << FnDesc
11368 << FromTy << (CVR - 1);
11370 S.
Diag(Fn->getLocation(), diag::note_ovl_candidate_bad_cvr)
11371 << (
unsigned)FnKindPair.first << (
unsigned)FnKindPair.second << FnDesc
11372 << ToParamRange << FromTy << (CVR - 1) << I + 1;
11374 MaybeEmitInheritedConstructorNote(S, Cand->
FoundDecl);
11380 S.
Diag(Fn->getLocation(), diag::note_ovl_candidate_bad_value_category)
11381 << (
unsigned)FnKindPair.first << (
unsigned)FnKindPair.second << FnDesc
11382 << (
unsigned)isObjectArgument << I + 1
11385 MaybeEmitInheritedConstructorNote(S, Cand->
FoundDecl);
11391 if (FromExpr && isa<InitListExpr>(FromExpr)) {
11392 S.
Diag(Fn->getLocation(), diag::note_ovl_candidate_bad_list_argument)
11393 << (
unsigned)FnKindPair.first << (
unsigned)FnKindPair.second << FnDesc
11394 << ToParamRange << FromTy << ToTy << (
unsigned)isObjectArgument << I + 1
11399 MaybeEmitInheritedConstructorNote(S, Cand->
FoundDecl);
11411 S.
Diag(Fn->getLocation(), diag::note_ovl_candidate_bad_conv_incomplete)
11412 << (
unsigned)FnKindPair.first << (
unsigned)FnKindPair.second << FnDesc
11413 << ToParamRange << FromTy << ToTy << (
unsigned)isObjectArgument << I + 1
11414 << (
unsigned)(Cand->
Fix.
Kind);
11416 MaybeEmitInheritedConstructorNote(S, Cand->
FoundDecl);
11421 unsigned BaseToDerivedConversion = 0;
11424 if (ToPtrTy->getPointeeType().isAtLeastAsQualifiedAs(
11426 !FromPtrTy->getPointeeType()->isIncompleteType() &&
11427 !ToPtrTy->getPointeeType()->isIncompleteType() &&
11429 FromPtrTy->getPointeeType()))
11430 BaseToDerivedConversion = 1;
11438 if (ToPtrTy->getPointeeType().isAtLeastAsQualifiedAs(
11440 FromIface->isSuperClassOf(ToIface))
11441 BaseToDerivedConversion = 2;
11443 if (ToRefTy->getPointeeType().isAtLeastAsQualifiedAs(FromTy,
11446 !ToRefTy->getPointeeType()->isIncompleteType() &&
11448 BaseToDerivedConversion = 3;
11452 if (BaseToDerivedConversion) {
11453 S.
Diag(Fn->getLocation(), diag::note_ovl_candidate_bad_base_to_derived_conv)
11454 << (
unsigned)FnKindPair.first << (
unsigned)FnKindPair.second << FnDesc
11455 << ToParamRange << (BaseToDerivedConversion - 1) << FromTy << ToTy
11457 MaybeEmitInheritedConstructorNote(S, Cand->
FoundDecl);
11461 if (isa<ObjCObjectPointerType>(CFromTy) &&
11462 isa<PointerType>(CToTy)) {
11466 S.
Diag(Fn->getLocation(), diag::note_ovl_candidate_bad_arc_conv)
11467 << (
unsigned)FnKindPair.first << (
unsigned)FnKindPair.second << FnDesc
11468 << ToParamRange << FromTy << ToTy << (
unsigned)isObjectArgument
11470 MaybeEmitInheritedConstructorNote(S, Cand->
FoundDecl);
11480 FDiag << (
unsigned)FnKindPair.first << (
unsigned)FnKindPair.second << FnDesc
11481 << ToParamRange << FromTy << ToTy << (
unsigned)isObjectArgument << I + 1
11482 << (
unsigned)(Cand->
Fix.
Kind);
11491 S.
Diag(Fn->getLocation(), FDiag);
11493 MaybeEmitInheritedConstructorNote(S, Cand->
FoundDecl);
11500 unsigned NumArgs,
bool IsAddressOf =
false) {
11501 assert(Cand->
Function &&
"Candidate is required to be a function.");
11503 unsigned MinParams = Fn->getMinRequiredExplicitArguments() +
11504 ((IsAddressOf && !Fn->isStatic()) ? 1 : 0);
11511 if (Fn->isInvalidDecl() &&
11515 if (NumArgs < MinParams) {
11532 unsigned NumFormalArgs,
11533 bool IsAddressOf =
false) {
11534 assert(isa<FunctionDecl>(
D) &&
11535 "The templated declaration should at least be a function"
11536 " when diagnosing bad template argument deduction due to too many"
11537 " or too few arguments");
11543 unsigned MinParams = Fn->getMinRequiredExplicitArguments() +
11544 ((IsAddressOf && !Fn->isStatic()) ? 1 : 0);
11547 bool HasExplicitObjectParam =
11548 !IsAddressOf && Fn->hasCXXExplicitFunctionObjectParameter();
11550 unsigned ParamCount =
11551 Fn->getNumNonObjectParams() + ((IsAddressOf && !Fn->isStatic()) ? 1 : 0);
11552 unsigned mode, modeCount;
11554 if (NumFormalArgs < MinParams) {
11555 if (MinParams != ParamCount || FnTy->isVariadic() ||
11556 FnTy->isTemplateVariadic())
11560 modeCount = MinParams;
11562 if (MinParams != ParamCount)
11566 modeCount = ParamCount;
11569 std::string Description;
11570 std::pair<OverloadCandidateKind, OverloadCandidateSelect> FnKindPair =
11571 ClassifyOverloadCandidate(S,
Found, Fn,
CRK_None, Description);
11573 if (modeCount == 1 && !IsAddressOf &&
11574 Fn->getParamDecl(HasExplicitObjectParam ? 1 : 0)->getDeclName())
11575 S.
Diag(Fn->getLocation(), diag::note_ovl_candidate_arity_one)
11576 << (
unsigned)FnKindPair.first << (
unsigned)FnKindPair.second
11577 << Description << mode
11578 << Fn->getParamDecl(HasExplicitObjectParam ? 1 : 0) << NumFormalArgs
11579 << HasExplicitObjectParam << Fn->getParametersSourceRange();
11581 S.
Diag(Fn->getLocation(), diag::note_ovl_candidate_arity)
11582 << (
unsigned)FnKindPair.first << (
unsigned)FnKindPair.second
11583 << Description << mode << modeCount << NumFormalArgs
11584 << HasExplicitObjectParam << Fn->getParametersSourceRange();
11586 MaybeEmitInheritedConstructorNote(S,
Found);
11591 unsigned NumFormalArgs) {
11592 assert(Cand->
Function &&
"Candidate must be a function");
11602 llvm_unreachable(
"Unsupported: Getting the described template declaration"
11603 " for bad deduction diagnosis");
11610 bool TakingCandidateAddress) {
11616 switch (DeductionFailure.
getResult()) {
11619 "TemplateDeductionResult::Success while diagnosing bad deduction");
11621 llvm_unreachable(
"TemplateDeductionResult::NonDependentConversionFailure "
11622 "while diagnosing bad deduction");
11628 assert(ParamD &&
"no parameter found for incomplete deduction result");
11630 diag::note_ovl_candidate_incomplete_deduction)
11632 MaybeEmitInheritedConstructorNote(S,
Found);
11637 assert(ParamD &&
"no parameter found for incomplete deduction result");
11639 diag::note_ovl_candidate_incomplete_deduction_pack)
11643 MaybeEmitInheritedConstructorNote(S,
Found);
11648 assert(ParamD &&
"no parameter found for bad qualifiers deduction result");
11666 S.
Diag(Templated->
getLocation(), diag::note_ovl_candidate_underqualified)
11667 << ParamD->
getDeclName() << Arg << NonCanonParam;
11668 MaybeEmitInheritedConstructorNote(S,
Found);
11673 assert(ParamD &&
"no parameter found for inconsistent deduction result");
11675 if (isa<TemplateTypeParmDecl>(ParamD))
11677 else if (isa<NonTypeTemplateParmDecl>(ParamD)) {
11687 diag::note_ovl_candidate_inconsistent_deduction_types)
11690 MaybeEmitInheritedConstructorNote(S,
Found);
11710 diag::note_ovl_candidate_inconsistent_deduction)
11713 MaybeEmitInheritedConstructorNote(S,
Found);
11718 assert(ParamD &&
"no parameter found for invalid explicit arguments");
11721 diag::note_ovl_candidate_explicit_arg_mismatch_named)
11726 index = TTP->getIndex();
11728 = dyn_cast<NonTypeTemplateParmDecl>(ParamD))
11729 index = NTTP->getIndex();
11731 index = cast<TemplateTemplateParmDecl>(ParamD)->getIndex();
11733 diag::note_ovl_candidate_explicit_arg_mismatch_unnamed)
11736 MaybeEmitInheritedConstructorNote(S,
Found);
11743 TemplateArgString =
" ";
11746 if (TemplateArgString.size() == 1)
11747 TemplateArgString.clear();
11749 diag::note_ovl_candidate_unsatisfied_constraints)
11750 << TemplateArgString;
11753 static_cast<CNSInfo*
>(DeductionFailure.
Data)->Satisfaction);
11763 diag::note_ovl_candidate_instantiation_depth);
11764 MaybeEmitInheritedConstructorNote(S,
Found);
11772 TemplateArgString =
" ";
11775 if (TemplateArgString.size() == 1)
11776 TemplateArgString.clear();
11781 if (PDiag && PDiag->second.getDiagID() ==
11782 diag::err_typename_nested_not_found_enable_if) {
11785 S.
Diag(PDiag->first, diag::note_ovl_candidate_disabled_by_enable_if)
11786 <<
"'enable_if'" << TemplateArgString;
11791 if (PDiag && PDiag->second.getDiagID() ==
11792 diag::err_typename_nested_not_found_requirement) {
11794 diag::note_ovl_candidate_disabled_by_requirement)
11795 << PDiag->second.getStringArg(0) << TemplateArgString;
11805 SFINAEArgString =
": ";
11807 PDiag->second.EmitToString(S.
getDiagnostics(), SFINAEArgString);
11811 diag::note_ovl_candidate_substitution_failure)
11812 << TemplateArgString << SFINAEArgString << R;
11813 MaybeEmitInheritedConstructorNote(S,
Found);
11823 TemplateArgString =
" ";
11826 if (TemplateArgString.size() == 1)
11827 TemplateArgString.clear();
11830 S.
Diag(Templated->
getLocation(), diag::note_ovl_candidate_deduced_mismatch)
11833 << TemplateArgString
11858 diag::note_ovl_candidate_non_deduced_mismatch_qualified)
11865 if (TakingCandidateAddress && isa<FunctionDecl>(Templated) &&
11874 diag::note_ovl_candidate_non_deduced_mismatch)
11875 << FirstTA << SecondTA;
11881 S.
Diag(Templated->
getLocation(), diag::note_ovl_candidate_bad_deduction);
11882 MaybeEmitInheritedConstructorNote(S,
Found);
11886 diag::note_cuda_ovl_candidate_target_mismatch);
11894 bool TakingCandidateAddress) {
11895 assert(Cand->
Function &&
"Candidate must be a function");
11910 assert(Cand->
Function &&
"Candidate must be a Function.");
11916 std::string FnDesc;
11917 std::pair<OverloadCandidateKind, OverloadCandidateSelect> FnKindPair =
11918 ClassifyOverloadCandidate(S, Cand->
FoundDecl, Callee,
11921 S.
Diag(Callee->getLocation(), diag::note_ovl_candidate_bad_target)
11922 << (
unsigned)FnKindPair.first << (
unsigned)ocs_non_template
11924 << llvm::to_underlying(CalleeTarget) << llvm::to_underlying(CallerTarget);
11929 if (Meth !=
nullptr && Meth->
isImplicit()) {
11933 switch (FnKindPair.first) {
11936 case oc_implicit_default_constructor:
11939 case oc_implicit_copy_constructor:
11942 case oc_implicit_move_constructor:
11945 case oc_implicit_copy_assignment:
11948 case oc_implicit_move_assignment:
11953 bool ConstRHS =
false;
11957 ConstRHS = RT->getPointeeType().isConstQualified();
11968 assert(Cand->
Function &&
"Candidate must be a function");
11972 S.
Diag(Callee->getLocation(),
11973 diag::note_ovl_candidate_disabled_by_function_cond_attr)
11974 <<
Attr->getCond()->getSourceRange() <<
Attr->getMessage();
11978 assert(Cand->
Function &&
"Candidate must be a function");
11981 assert(ES.
isExplicit() &&
"not an explicit candidate");
11984 switch (Fn->getDeclKind()) {
11985 case Decl::Kind::CXXConstructor:
11988 case Decl::Kind::CXXConversion:
11991 case Decl::Kind::CXXDeductionGuide:
11992 Kind = Fn->isImplicit() ? 0 : 2;
11995 llvm_unreachable(
"invalid Decl");
12004 First = Pattern->getFirstDecl();
12007 diag::note_ovl_candidate_explicit)
12008 << Kind << (ES.
getExpr() ? 1 : 0)
12013 auto *DG = dyn_cast<CXXDeductionGuideDecl>(Fn);
12020 if (!(DG->isImplicit() || (OriginTemplate && OriginTemplate->
isTypeAlias())))
12022 std::string FunctionProto;
12023 llvm::raw_string_ostream OS(FunctionProto);
12036 "Non-template implicit deduction guides are only possible for "
12039 S.
Diag(DG->getLocation(), diag::note_implicit_deduction_guide)
12044 assert(Template &&
"Cannot find the associated function template of "
12045 "CXXDeductionGuideDecl?");
12047 Template->
print(OS);
12048 S.
Diag(DG->getLocation(), diag::note_implicit_deduction_guide)
12069 bool TakingCandidateAddress,
12071 assert(Cand->
Function &&
"Candidate must be a function");
12079 if (S.
getLangOpts().OpenCL && Fn->isImplicit() &&
12086 !Fn->hasCXXExplicitFunctionObjectParameter() && !Fn->isStatic())
12091 if (Fn->isDeleted()) {
12092 std::string FnDesc;
12093 std::pair<OverloadCandidateKind, OverloadCandidateSelect> FnKindPair =
12094 ClassifyOverloadCandidate(S, Cand->
FoundDecl, Fn,
12097 S.
Diag(Fn->getLocation(), diag::note_ovl_candidate_deleted)
12098 << (
unsigned)FnKindPair.first << (
unsigned)FnKindPair.second << FnDesc
12099 << (Fn->isDeleted() ? (Fn->isDeletedAsWritten() ? 1 : 2) : 0);
12100 MaybeEmitInheritedConstructorNote(S, Cand->
FoundDecl);
12127 TakingCandidateAddress);
12130 S.
Diag(Fn->getLocation(), diag::note_ovl_candidate_illegal_constructor)
12131 << (Fn->getPrimaryTemplate() ? 1 : 0);
12132 MaybeEmitInheritedConstructorNote(S, Cand->
FoundDecl);
12139 S.
Diag(Fn->getLocation(),
12140 diag::note_ovl_candidate_illegal_constructor_adrspace_mismatch)
12141 << QualsForPrinting;
12142 MaybeEmitInheritedConstructorNote(S, Cand->
FoundDecl);
12153 for (
unsigned N = Cand->
Conversions.size(); I != N; ++I)
12174 if (cast<CXXConstructorDecl>(Fn)->isCopyOrMoveConstructor())
12176 S.
Diag(Fn->getLocation(),
12177 diag::note_ovl_candidate_inherited_constructor_slice)
12178 << (Fn->getPrimaryTemplate() ? 1 : 0)
12179 << Fn->getParamDecl(0)->getType()->isRValueReferenceType();
12180 MaybeEmitInheritedConstructorNote(S, Cand->
FoundDecl);
12186 assert(!Available);
12194 std::string FnDesc;
12195 std::pair<OverloadCandidateKind, OverloadCandidateSelect> FnKindPair =
12196 ClassifyOverloadCandidate(S, Cand->
FoundDecl, Fn,
12199 S.
Diag(Fn->getLocation(),
12200 diag::note_ovl_candidate_constraints_not_satisfied)
12201 << (
unsigned)FnKindPair.first << (
unsigned)ocs_non_template
12219 bool isLValueReference =
false;
12220 bool isRValueReference =
false;
12221 bool isPointer =
false;
12225 isLValueReference =
true;
12229 isRValueReference =
true;
12245 diag::note_ovl_surrogate_constraints_not_satisfied)
12259 assert(Cand->
Conversions.size() <= 2 &&
"builtin operator is not binary");
12260 std::string TypeStr(
"operator");
12266 S.
Diag(OpLoc, diag::note_ovl_builtin_candidate) << TypeStr;
12271 S.
Diag(OpLoc, diag::note_ovl_builtin_candidate) << TypeStr;
12278 if (ICS.
isBad())
break;
12282 S, OpLoc, S.
PDiag(diag::note_ambiguous_type_conversion));
12299 llvm_unreachable(
"non-deduction failure while diagnosing bad deduction");
12329 llvm_unreachable(
"Unhandled deduction result");
12334struct CompareOverloadCandidatesForDisplay {
12340 CompareOverloadCandidatesForDisplay(
12343 : S(S), NumArgs(NArgs), CSK(CSK) {}
12353 if (NumArgs >
C->Function->getNumParams() && !
C->Function->isVariadic())
12355 if (NumArgs < C->
Function->getMinRequiredArguments())
12365 if (L == R)
return false;
12369 if (!R->
Viable)
return true;
12371 if (
int Ord = CompareConversions(*L, *R))
12391 if (LDist == RDist) {
12392 if (LFailureKind == RFailureKind)
12400 return LDist < RDist;
12418 numLFixes = (numLFixes == 0) ?
UINT_MAX : numLFixes;
12419 numRFixes = (numRFixes == 0) ?
UINT_MAX : numRFixes;
12420 if (numLFixes != numRFixes) {
12421 return numLFixes < numRFixes;
12425 if (
int Ord = CompareConversions(*L, *R))
12437 if (LRank != RRank)
12438 return LRank < RRank;
12464 struct ConversionSignals {
12465 unsigned KindRank = 0;
12469 ConversionSignals Sig;
12470 Sig.KindRank =
Seq.getKindRank();
12471 if (
Seq.isStandard())
12472 Sig.Rank =
Seq.Standard.getRank();
12473 else if (
Seq.isUserDefined())
12474 Sig.Rank =
Seq.UserDefined.After.getRank();
12480 static ConversionSignals ForObjectArgument() {
12496 for (
unsigned I = 0, N = L.
Conversions.size(); I != N; ++I) {
12498 ? ConversionSignals::ForObjectArgument()
12499 : ConversionSignals::ForSequence(L.Conversions[I]);
12501 ? ConversionSignals::ForObjectArgument()
12502 : ConversionSignals::ForSequence(R.Conversions[I]);
12503 if (std::tie(LS.KindRank, LS.Rank) != std::tie(RS.KindRank, RS.Rank))
12504 return std::tie(LS.KindRank, LS.Rank) < std::tie(RS.KindRank, RS.Rank)
12529 bool Unfixable =
false;
12537 assert(ConvIdx != ConvCount &&
"no bad conversion in candidate");
12538 if (Cand->
Conversions[ConvIdx].isInitialized() &&
12547 bool SuppressUserConversions =
false;
12549 unsigned ConvIdx = 0;
12550 unsigned ArgIdx = 0;
12565 if (isa<CXXMethodDecl>(Cand->
Function) &&
12578 assert(ConvCount <= 3);
12584 ConvIdx != ConvCount;
12586 assert(ArgIdx < Args.size() &&
"no argument for this arg conversion");
12587 if (Cand->
Conversions[ConvIdx].isInitialized()) {
12589 }
else if (
ParamIdx < ParamTypes.size()) {
12590 if (ParamTypes[
ParamIdx]->isDependentType())
12591 Cand->
Conversions[ConvIdx].setAsIdentityConversion(
12592 Args[ArgIdx]->getType());
12596 SuppressUserConversions,
12601 if (!Unfixable && Cand->
Conversions[ConvIdx].isBad())
12617 for (
iterator Cand =
begin(), LastCand =
end(); Cand != LastCand; ++Cand) {
12618 if (!Filter(*Cand))
12622 if (!Cand->Viable) {
12623 if (!Cand->Function && !Cand->IsSurrogate) {
12643 Cands.push_back(Cand);
12647 Cands, CompareOverloadCandidatesForDisplay(S, OpLoc, Args.size(), Kind));
12654 bool DeferHint =
false;
12658 auto WrongSidedCands =
12660 return (Cand.Viable ==
false &&
12663 Cand.Function->template hasAttr<CUDAHostAttr>() &&
12664 Cand.Function->template hasAttr<CUDADeviceAttr>());
12666 DeferHint = !WrongSidedCands.empty();
12684 bool NoteCands =
true;
12685 for (
const Expr *Arg : Args) {
12686 if (Arg->getType()->isWebAssemblyTableType())
12700 bool ReportedAmbiguousConversions =
false;
12703 unsigned CandsShown = 0;
12704 auto I = Cands.begin(),
E = Cands.end();
12705 for (; I !=
E; ++I) {
12721 "Non-viable built-in candidates are not added to Cands.");
12728 if (!ReportedAmbiguousConversions) {
12730 ReportedAmbiguousConversions =
true;
12743 S.
Diag(OpLoc, diag::note_ovl_too_many_candidates,
12755struct CompareTemplateSpecCandidatesForDisplay {
12757 CompareTemplateSpecCandidatesForDisplay(
Sema &S) : S(S) {}
12791 bool ForTakingAddress) {
12793 DeductionFailure, 0, ForTakingAddress);
12796void TemplateSpecCandidateSet::destroyCandidates() {
12798 i->DeductionFailure.Destroy();
12803 destroyCandidates();
12804 Candidates.clear();
12817 Cands.reserve(
size());
12818 for (
iterator Cand =
begin(), LastCand =
end(); Cand != LastCand; ++Cand) {
12819 if (Cand->Specialization)
12820 Cands.push_back(Cand);
12825 llvm::sort(Cands, CompareTemplateSpecCandidatesForDisplay(S));
12832 unsigned CandsShown = 0;
12833 for (I = Cands.begin(),
E = Cands.end(); I !=
E; ++I) {
12839 if (CandsShown >= 4 && ShowOverloads ==
Ovl_Best)
12844 "Non-matching built-in candidates are not added to Cands.");
12849 S.
Diag(
Loc, diag::note_ovl_too_many_candidates) <<
int(
E - I);
12859 QualType Ret = PossiblyAFunctionType;
12862 Ret = ToTypePtr->getPointeeType();
12865 Ret = ToTypeRef->getPointeeType();
12868 Ret = MemTypePtr->getPointeeType();
12875 bool Complain =
true) {
12892class AddressOfFunctionResolver {
12902 bool TargetTypeIsNonStaticMemberFunction;
12903 bool FoundNonTemplateFunction;
12904 bool StaticMemberFunctionFromBoundPointer;
12905 bool HasComplained;
12914 AddressOfFunctionResolver(
Sema &S,
Expr *SourceExpr,
12915 const QualType &TargetType,
bool Complain)
12916 : S(S), SourceExpr(SourceExpr), TargetType(TargetType),
12917 Complain(Complain), Context(S.getASTContext()),
12918 TargetTypeIsNonStaticMemberFunction(
12920 FoundNonTemplateFunction(
false),
12921 StaticMemberFunctionFromBoundPointer(
false),
12922 HasComplained(
false),
12925 FailedCandidates(OvlExpr->getNameLoc(),
true) {
12926 ExtractUnqualifiedFunctionTypeFromTargetType();
12930 if (!UME->isImplicitAccess() &&
12932 StaticMemberFunctionFromBoundPointer =
true;
12936 OvlExpr,
false, &dap)) {
12942 TargetTypeIsNonStaticMemberFunction =
true;
12950 Matches.push_back(std::make_pair(dap, Fn));
12958 if (FindAllFunctionsThatMatchTargetTypeExactly()) {
12961 if (Matches.size() > 1 && !eliminiateSuboptimalOverloadCandidates()) {
12962 if (FoundNonTemplateFunction)
12963 EliminateAllTemplateMatches();
12965 EliminateAllExceptMostSpecializedTemplate();
12970 EliminateSuboptimalCudaMatches();
12973 bool hasComplained()
const {
return HasComplained; }
12976 bool candidateHasExactlyCorrectType(
const FunctionDecl *FD) {
12988 return candidateHasExactlyCorrectType(A) &&
12989 (!candidateHasExactlyCorrectType(B) ||
12995 bool eliminiateSuboptimalOverloadCandidates() {
12998 auto Best = Matches.begin();
12999 for (
auto I = Matches.begin()+1,
E = Matches.end(); I !=
E; ++I)
13000 if (isBetterCandidate(I->second, Best->second))
13004 auto IsBestOrInferiorToBest = [
this, BestFn](
13005 const std::pair<DeclAccessPair, FunctionDecl *> &Pair) {
13006 return BestFn == Pair.second || isBetterCandidate(BestFn, Pair.second);
13011 if (!llvm::all_of(Matches, IsBestOrInferiorToBest))
13013 Matches[0] = *Best;
13018 bool isTargetTypeAFunction()
const {
13027 void inline ExtractUnqualifiedFunctionTypeFromTargetType() {
13038 bool CanConvertToFunctionPointer =
13040 if (CanConvertToFunctionPointer == TargetTypeIsNonStaticMemberFunction)
13043 else if (TargetTypeIsNonStaticMemberFunction)
13055 FunctionTemplate, &OvlExplicitTemplateArgs, TargetFunctionType,
13057 Result != TemplateDeductionResult::Success) {
13075 Matches.push_back(std::make_pair(CurAccessFunPair,
Specialization));
13079 bool AddMatchingNonTemplateFunction(
NamedDecl* Fn,
13084 bool CanConvertToFunctionPointer =
13086 if (CanConvertToFunctionPointer == TargetTypeIsNonStaticMemberFunction)
13089 else if (TargetTypeIsNonStaticMemberFunction)
13092 if (
FunctionDecl *FunDecl = dyn_cast<FunctionDecl>(Fn)) {
13099 if (FunDecl->isMultiVersion()) {
13100 const auto *TA = FunDecl->
getAttr<TargetAttr>();
13101 if (TA && !TA->isDefaultVersion())
13103 const auto *TVA = FunDecl->getAttr<TargetVersionAttr>();
13104 if (TVA && !TVA->isDefaultVersion())
13112 HasComplained |= Complain;
13121 candidateHasExactlyCorrectType(FunDecl)) {
13122 Matches.push_back(std::make_pair(
13123 CurAccessFunPair, cast<FunctionDecl>(FunDecl->getCanonicalDecl())));
13124 FoundNonTemplateFunction =
true;
13132 bool FindAllFunctionsThatMatchTargetTypeExactly() {
13137 if (IsInvalidFormOfPointerToMemberFunction())
13153 = dyn_cast<FunctionTemplateDecl>(Fn)) {
13154 if (AddMatchingTemplateFunction(FunctionTemplate, I.getPair()))
13159 AddMatchingNonTemplateFunction(Fn, I.getPair()))
13162 assert(Ret || Matches.empty());
13166 void EliminateAllExceptMostSpecializedTemplate() {
13179 for (
unsigned I = 0,
E = Matches.size(); I !=
E; ++I)
13180 MatchesCopy.
addDecl(Matches[I].second, Matches[I].first.getAccess());
13185 MatchesCopy.
begin(), MatchesCopy.
end(), FailedCandidates,
13187 S.
PDiag(diag::err_addr_ovl_ambiguous)
13188 << Matches[0].second->getDeclName(),
13189 S.
PDiag(diag::note_ovl_candidate)
13190 << (
unsigned)oc_function << (
unsigned)ocs_described_template,
13191 Complain, TargetFunctionType);
13193 if (Result != MatchesCopy.
end()) {
13195 Matches[0].first = Matches[Result - MatchesCopy.
begin()].first;
13196 Matches[0].second = cast<FunctionDecl>(*Result);
13199 HasComplained |= Complain;
13202 void EliminateAllTemplateMatches() {
13205 for (
unsigned I = 0, N = Matches.size(); I != N; ) {
13206 if (Matches[I].second->getPrimaryTemplate() ==
nullptr)
13209 Matches[I] = Matches[--N];
13215 void EliminateSuboptimalCudaMatches() {
13221 void ComplainNoMatchesFound()
const {
13222 assert(Matches.empty());
13224 << OvlExpr->
getName() << TargetFunctionType
13226 if (FailedCandidates.
empty())
13237 dyn_cast<FunctionDecl>((*I)->getUnderlyingDecl()))
13245 bool IsInvalidFormOfPointerToMemberFunction()
const {
13246 return TargetTypeIsNonStaticMemberFunction &&
13250 void ComplainIsInvalidFormOfPointerToMemberFunction()
const {
13258 bool IsStaticMemberFunctionFromBoundPointer()
const {
13259 return StaticMemberFunctionFromBoundPointer;
13262 void ComplainIsStaticMemberFunctionFromBoundPointer()
const {
13264 diag::err_invalid_form_pointer_member_function)
13268 void ComplainOfInvalidConversion()
const {
13270 << OvlExpr->
getName() << TargetType;
13273 void ComplainMultipleMatchesFound()
const {
13274 assert(Matches.size() > 1);
13281 bool hadMultipleCandidates()
const {
return (OvlExpr->
getNumDecls() > 1); }
13283 int getNumMatches()
const {
return Matches.size(); }
13286 if (Matches.size() != 1)
return nullptr;
13287 return Matches[0].second;
13291 if (Matches.size() != 1)
return nullptr;
13292 return &Matches[0].first;
13302 bool *pHadMultipleCandidates) {
13305 AddressOfFunctionResolver Resolver(*
this, AddressOfExpr, TargetType,
13307 int NumMatches = Resolver.getNumMatches();
13309 bool ShouldComplain = Complain && !Resolver.hasComplained();
13310 if (NumMatches == 0 && ShouldComplain) {
13311 if (Resolver.IsInvalidFormOfPointerToMemberFunction())
13312 Resolver.ComplainIsInvalidFormOfPointerToMemberFunction();
13314 Resolver.ComplainNoMatchesFound();
13316 else if (NumMatches > 1 && ShouldComplain)
13317 Resolver.ComplainMultipleMatchesFound();
13318 else if (NumMatches == 1) {
13319 Fn = Resolver.getMatchingFunctionDecl();
13322 ResolveExceptionSpec(AddressOfExpr->
getExprLoc(), FPT);
13323 FoundResult = *Resolver.getMatchingFunctionAccessPair();
13325 if (Resolver.IsStaticMemberFunctionFromBoundPointer())
13326 Resolver.ComplainIsStaticMemberFunctionFromBoundPointer();
13328 CheckAddressOfMemberAccess(AddressOfExpr, FoundResult);
13332 if (pHadMultipleCandidates)
13333 *pHadMultipleCandidates = Resolver.hadMultipleCandidates();
13341 bool IsResultAmbiguous =
false;
13349 return static_cast<int>(
CUDA().IdentifyPreference(Caller, FD1)) -
13350 static_cast<int>(
CUDA().IdentifyPreference(Caller, FD2));
13357 auto *FD = dyn_cast<FunctionDecl>(I->getUnderlyingDecl());
13365 auto FoundBetter = [&]() {
13366 IsResultAmbiguous =
false;
13377 if (getLangOpts().CUDA) {
13378 int PreferenceByCUDA = CheckCUDAPreference(FD,
Result);
13380 if (PreferenceByCUDA != 0) {
13382 if (PreferenceByCUDA > 0)
13390 if (MoreConstrained != FD) {
13391 if (!MoreConstrained) {
13392 IsResultAmbiguous =
true;
13393 AmbiguousDecls.push_back(FD);
13402 if (IsResultAmbiguous)
13413 if (getLangOpts().
CUDA && CheckCUDAPreference(Skipped,
Result) != 0)
13415 if (!getMoreConstrainedFunction(Skipped,
Result))
13424 ExprResult &SrcExpr,
bool DoFunctionPointerConversion) {
13430 if (!
Found ||
Found->isCPUDispatchMultiVersion() ||
13431 Found->isCPUSpecificMultiVersion())
13438 CheckAddressOfMemberAccess(
E, DAP);
13444 SrcExpr = DefaultFunctionArrayConversion(Fixed,
false);
13479 = cast<FunctionTemplateDecl>((*I)->getUnderlyingDecl());
13508 NoteAllOverloadCandidates(ovl);
13514 if (FoundResult) *FoundResult = I.getPair();
13525 ExprResult &SrcExpr,
bool doFunctionPointerConversion,
bool complain,
13527 unsigned DiagIDForComplaining) {
13534 if (
FunctionDecl *fn = ResolveSingleFunctionTemplateSpecialization(
13546 isa<CXXMethodDecl>(fn) &&
13547 cast<CXXMethodDecl>(fn)->isInstance()) {
13548 if (!complain)
return false;
13551 diag::err_bound_member_function)
13564 SingleFunctionExpression =
13565 FixOverloadedFunctionReference(SrcExpr.
get(), found, fn);
13568 if (doFunctionPointerConversion) {
13569 SingleFunctionExpression =
13570 DefaultFunctionArrayLvalueConversion(SingleFunctionExpression.
get());
13571 if (SingleFunctionExpression.
isInvalid()) {
13578 if (!SingleFunctionExpression.
isUsable()) {
13580 Diag(OpRangeForComplaining.
getBegin(), DiagIDForComplaining)
13582 << DestTypeForComplaining
13583 << OpRangeForComplaining
13585 NoteAllOverloadCandidates(SrcExpr.
get());
13594 SrcExpr = SingleFunctionExpression;
13604 bool PartialOverloading,
13606 NamedDecl *Callee = FoundDecl.getDecl();
13607 if (isa<UsingShadowDecl>(Callee))
13608 Callee = cast<UsingShadowDecl>(Callee)->getTargetDecl();
13611 if (ExplicitTemplateArgs) {
13612 assert(!KnownValid &&
"Explicit template arguments?");
13621 PartialOverloading);
13626 = dyn_cast<FunctionTemplateDecl>(Callee)) {
13628 ExplicitTemplateArgs, Args, CandidateSet,
13630 PartialOverloading);
13634 assert(!KnownValid &&
"unhandled case in overloaded call candidate");
13640 bool PartialOverloading) {
13663 assert(!(*I)->getDeclContext()->isRecord());
13664 assert(isa<UsingShadowDecl>(*I) ||
13665 !(*I)->getDeclContext()->isFunctionOrMethod());
13666 assert((*I)->getUnderlyingDecl()->isFunctionOrFunctionTemplate());
13676 ExplicitTemplateArgs = &TABuffer;
13682 CandidateSet, PartialOverloading,
13687 Args, ExplicitTemplateArgs,
13688 CandidateSet, PartialOverloading);
13696 CandidateSet,
false,
false);
13702 switch (Name.getCXXOverloadedOperator()) {
13703 case OO_New:
case OO_Array_New:
13704 case OO_Delete:
case OO_Array_Delete:
13727 if (DC->isTransparentContext())
13743 if (
auto *RD = dyn_cast<CXXRecordDecl>(DC)) {
13748 if (FoundInClass) {
13749 *FoundInClass = RD;
13752 R.
addDecl(Best->FoundDecl.getDecl(), Best->FoundDecl.getAccess());
13769 AssociatedNamespaces,
13770 AssociatedClasses);
13774 for (Sema::AssociatedNamespaceSet::iterator
13775 it = AssociatedNamespaces.begin(),
13776 end = AssociatedNamespaces.end(); it !=
end; ++it) {
13778 if (
Std &&
Std->Encloses(*it))
13788 SuggestedNamespaces.insert(*it);
13792 SemaRef.
Diag(R.
getNameLoc(), diag::err_not_found_by_two_phase_lookup)
13794 if (SuggestedNamespaces.empty()) {
13795 SemaRef.
Diag(Best->Function->getLocation(),
13796 diag::note_not_found_by_two_phase_lookup)
13798 }
else if (SuggestedNamespaces.size() == 1) {
13799 SemaRef.
Diag(Best->Function->getLocation(),
13800 diag::note_not_found_by_two_phase_lookup)
13806 SemaRef.
Diag(Best->Function->getLocation(),
13807 diag::note_not_found_by_two_phase_lookup)
13839class BuildRecoveryCallExprRAII {
13844 BuildRecoveryCallExprRAII(
Sema &S) : SemaRef(S), SatStack(S) {
13866 bool EmptyLookup,
bool AllowTypoCorrection) {
13874 BuildRecoveryCallExprRAII RCE(SemaRef);
13884 ExplicitTemplateArgs = &TABuffer;
13892 ExplicitTemplateArgs, Args, &FoundInClass)) {
13894 }
else if (EmptyLookup) {
13899 ExplicitTemplateArgs !=
nullptr,
13900 dyn_cast<MemberExpr>(Fn));
13902 AllowTypoCorrection
13908 }
else if (FoundInClass && SemaRef.
getLangOpts().MSVCCompat) {
13923 assert(!R.
empty() &&
"lookup results empty despite recovery");
13934 if ((*R.
begin())->isCXXClassMember())
13936 ExplicitTemplateArgs, S);
13937 else if (ExplicitTemplateArgs || TemplateKWLoc.
isValid())
13939 ExplicitTemplateArgs);
13963 assert(!ULE->
getQualifier() &&
"qualified name with ADL");
13970 (F = dyn_cast<FunctionDecl>(*ULE->
decls_begin())) &&
13972 llvm_unreachable(
"performing ADL for builtin");
13975 assert(getLangOpts().
CPlusPlus &&
"ADL enabled in C");
13979 UnbridgedCastsSet UnbridgedCasts;
13987 AddOverloadedCallCandidates(ULE, Args, *CandidateSet);
13989 if (getLangOpts().MSVCCompat &&
13990 CurContext->isDependentContext() && !isSFINAEContext() &&
13991 (isa<FunctionDecl>(CurContext) || isa<CXXRecordDecl>(CurContext))) {
13994 if (CandidateSet->
empty() ||
14003 RParenLoc, CurFPFeatureOverrides());
14010 if (CandidateSet->
empty())
14013 UnbridgedCasts.restore();
14020 std::optional<QualType>
Result;
14023 if (!Candidate.Function)
14025 if (Candidate.Function->isInvalidDecl())
14027 QualType T = Candidate.Function->getReturnType();
14040 if (Best && *Best != CS.
end())
14041 ConsiderCandidate(**Best);
14044 for (
const auto &
C : CS)
14046 ConsiderCandidate(
C);
14049 for (
const auto &
C : CS)
14050 ConsiderCandidate(
C);
14055 if (
Value.isNull() ||
Value->isUndeducedType())
14072 bool AllowTypoCorrection) {
14073 switch (OverloadResult) {
14084 Res.
get(), FDecl, LParenLoc, Args, RParenLoc, ExecConfig,
14085 false, (*Best)->IsADLCandidate);
14089 if (*Best != CandidateSet->
end() &&
14093 dyn_cast_if_present<CXXMethodDecl>((*Best)->Function);
14098 SemaRef.
PDiag(diag::err_member_call_without_object) << 0 << M),
14108 CandidateSet->
empty(),
14109 AllowTypoCorrection);
14116 for (
const Expr *Arg : Args) {
14117 if (!Arg->getType()->isFunctionType())
14119 if (
auto *DRE = dyn_cast<DeclRefExpr>(Arg->IgnoreParenImpCasts())) {
14120 auto *FD = dyn_cast<FunctionDecl>(DRE->getDecl());
14123 Arg->getExprLoc()))
14131 SemaRef.
PDiag(diag::err_ovl_no_viable_function_in_call)
14132 << ULE->
getName() << Fn->getSourceRange()),
14140 SemaRef.
PDiag(diag::err_ovl_ambiguous_call)
14141 << ULE->
getName() << Fn->getSourceRange()),
14148 Fn->getSourceRange(), ULE->
getName(),
14149 *CandidateSet, FDecl, Args);
14158 Res.
get(), FDecl, LParenLoc, Args, RParenLoc, ExecConfig,
14159 false, (*Best)->IsADLCandidate);
14165 SubExprs.append(Args.begin(), Args.end());
14172 for (
auto I = CS.
begin(),
E = CS.
end(); I !=
E; ++I) {
14187 bool AllowTypoCorrection,
14188 bool CalleesAddressIsTaken) {
14190 Fn->getExprLoc(), CalleesAddressIsTaken
14195 if (buildOverloadedCallSet(S, Fn, ULE, Args, LParenLoc, &CandidateSet,
14201 if (CalleesAddressIsTaken)
14215 if (
const auto *TP =
14219 VK_PRValue, RParenLoc, CurFPFeatureOverrides());
14225 ExecConfig, &CandidateSet, &Best,
14226 OverloadResult, AllowTypoCorrection);
14235 Context, NamingClass, NNSLoc, DNI, PerformADL, Fns.
begin(), Fns.
end(),
14241 bool HadMultipleCandidates) {
14246 Exp = InitializeExplicitObjectArgument(*
this,
E, Method);
14248 Exp = PerformImplicitObjectArgumentInitialization(
E,
nullptr,
14249 FoundDecl, Method);
14258 auto *CE = dyn_cast<CastExpr>(SubE);
14259 if (CE && CE->getCastKind() == CK_NoOp)
14260 SubE = CE->getSubExpr();
14262 if (
auto *BE = dyn_cast<CXXBindTemporaryExpr>(SubE))
14263 SubE = BE->getSubExpr();
14264 if (isa<LambdaExpr>(SubE)) {
14270 PushExpressionEvaluationContext(
14271 ExpressionEvaluationContext::PotentiallyEvaluated);
14272 ExprResult BlockExp = BuildBlockForLambdaConversion(
14274 PopExpressionEvaluationContext();
14292 Expr *ObjectParam = Exp.
get();
14295 CurFPFeatureOverrides());
14305 Exp.
get()->getEndLoc(),
14306 CurFPFeatureOverrides());
14309 if (CheckFunctionCall(Method, CE,
14319 Expr *Input,
bool PerformADL) {
14321 assert(Op !=
OO_None &&
"Invalid opcode for overloaded unary operator");
14329 Expr *Args[2] = { Input,
nullptr };
14330 unsigned NumArgs = 1;
14335 if (Opc == UO_PostInc || Opc == UO_PostDec) {
14349 if (Opc == UO_PreDec || Opc == UO_PreInc || Opc == UO_Deref)
14355 CurFPFeatureOverrides());
14360 if (Fn.isInvalid())
14364 CurFPFeatureOverrides());
14371 AddNonMemberOperatorCandidates(Fns, ArgsArray, CandidateSet);
14374 AddMemberOperatorCandidates(Op, OpLoc, ArgsArray, CandidateSet);
14378 AddArgumentDependentLookupCandidates(OpName, OpLoc, ArgsArray,
14384 AddBuiltinOperatorCandidates(Op, OpLoc, ArgsArray, CandidateSet);
14386 bool HadMultipleCandidates = (CandidateSet.
size() > 1);
14401 if (
CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) {
14402 CheckMemberOperatorAccess(OpLoc, Input,
nullptr, Best->FoundDecl);
14406 InputInit = InitializeExplicitObjectArgument(*
this, Input, Method);
14408 InputInit = PerformImplicitObjectArgumentInitialization(
14409 Input,
nullptr, Best->FoundDecl, Method);
14412 Base = Input = InputInit.
get();
14423 Input = InputInit.
get();
14428 Base, HadMultipleCandidates,
14440 Context, Op, FnExpr.
get(), ArgsArray, ResultTy, VK, OpLoc,
14441 CurFPFeatureOverrides(), Best->IsADLCandidate);
14443 if (CheckCallReturnType(FnDecl->
getReturnType(), OpLoc, TheCall, FnDecl))
14446 if (CheckFunctionCall(FnDecl, TheCall,
14449 return CheckForImmediateInvocation(MaybeBindToTemporary(TheCall), FnDecl);
14454 ExprResult InputRes = PerformImplicitConversion(
14455 Input, Best->BuiltinParamTypes[0], Best->Conversions[0],
14460 Input = InputRes.
get();
14480 PDiag(diag::err_ovl_ambiguous_oper_unary)
14497 << (Msg !=
nullptr)
14498 << (Msg ? Msg->
getString() : StringRef())
14509 return CreateBuiltinUnaryOp(OpLoc, Opc, Input);
14525 AddNonMemberOperatorCandidates(Fns, Args, CandidateSet);
14528 AddMemberOperatorCandidates(Op, OpLoc, Args, CandidateSet);
14530 AddMemberOperatorCandidates(Op, OpLoc, {Args[1], Args[0]}, CandidateSet,
14535 AddMemberOperatorCandidates(ExtraOp, OpLoc, Args, CandidateSet);
14537 AddMemberOperatorCandidates(ExtraOp, OpLoc, {Args[1], Args[0]},
14545 if (Op != OO_Equal && PerformADL) {
14547 AddArgumentDependentLookupCandidates(OpName, OpLoc, Args,
14553 AddArgumentDependentLookupCandidates(ExtraOpName, OpLoc, Args,
14572 AddBuiltinOperatorCandidates(Op, OpLoc, Args, CandidateSet);
14578 Expr *RHS,
bool PerformADL,
14579 bool AllowRewrittenCandidates,
14581 Expr *Args[2] = { LHS, RHS };
14585 AllowRewrittenCandidates =
false;
14591 if (Args[0]->isTypeDependent() || Args[1]->isTypeDependent()) {
14612 if (Fn.isInvalid())
14616 CurFPFeatureOverrides());
14621 if (Opc == BO_PtrMemD) {
14622 auto CheckPlaceholder = [&](
Expr *&Arg) {
14631 if (CheckPlaceholder(Args[0]) || CheckPlaceholder(Args[1]))
14633 return CreateBuiltinBinOp(OpLoc, Opc, Args[0], Args[1]);
14652 if (Opc == BO_Assign && !Args[0]->getType()->isOverloadableType())
14653 return CreateBuiltinBinOp(OpLoc, Opc, Args[0], Args[1]);
14658 Op, OpLoc, AllowRewrittenCandidates));
14660 CandidateSet.
exclude(DefaultedFn);
14661 LookupOverloadedBinOp(CandidateSet, Op, Fns, Args, PerformADL);
14663 bool HadMultipleCandidates = (CandidateSet.
size() > 1);
14672 bool IsReversed = Best->isReversed();
14674 std::swap(Args[0], Args[1]);
14691 if (Best->RewriteKind && ChosenOp == OO_EqualEqual &&
14695 Diag(OpLoc, IsExtension ? diag::ext_ovl_rewrite_equalequal_not_bool
14696 : diag::err_ovl_rewrite_equalequal_not_bool)
14704 if (AllowRewrittenCandidates && !IsReversed &&
14712 if (Cand.Viable && Cand.Function && Cand.isReversed() &&
14714 for (
unsigned ArgIdx = 0; ArgIdx < 2; ++ArgIdx) {
14716 *
this, OpLoc, Cand.Conversions[ArgIdx],
14717 Best->Conversions[ArgIdx]) ==
14719 AmbiguousWith.push_back(Cand.Function);
14726 if (!AmbiguousWith.empty()) {
14727 bool AmbiguousWithSelf =
14728 AmbiguousWith.size() == 1 &&
14730 Diag(OpLoc, diag::ext_ovl_ambiguous_oper_binary_reversed)
14732 << Args[0]->
getType() << Args[1]->
getType() << AmbiguousWithSelf
14734 if (AmbiguousWithSelf) {
14736 diag::note_ovl_ambiguous_oper_binary_reversed_self);
14741 if (
auto *MD = dyn_cast<CXXMethodDecl>(FnDecl))
14742 if (Op == OverloadedOperatorKind::OO_EqualEqual &&
14744 !MD->hasCXXExplicitFunctionObjectParameter() &&
14746 MD->getFunctionObjectParameterType(),
14747 MD->getParamDecl(0)->getType().getNonReferenceType()) &&
14749 MD->getFunctionObjectParameterType(),
14752 MD->getFunctionObjectParameterType(),
14755 diag::note_ovl_ambiguous_eqeq_reversed_self_non_const);
14758 diag::note_ovl_ambiguous_oper_binary_selected_candidate);
14759 for (
auto *F : AmbiguousWith)
14760 Diag(F->getLocation(),
14761 diag::note_ovl_ambiguous_oper_binary_reversed_candidate);
14769 if (Op == OO_Equal)
14770 diagnoseNullableToNonnullConversion(Args[0]->getType(),
14771 Args[1]->getType(), OpLoc);
14774 if (
CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) {
14776 CheckMemberOperatorAccess(OpLoc, Args[0], Args[1], Best->FoundDecl);
14781 Arg0 = InitializeExplicitObjectArgument(*
this, Args[0], FnDecl);
14784 Arg0 = PerformImplicitObjectArgumentInitialization(
14785 Args[0],
nullptr, Best->FoundDecl, Method);
14787 Arg1 = PerformCopyInitialization(
14798 ExprResult Arg0 = PerformCopyInitialization(
14806 PerformCopyInitialization(
14818 Best->FoundDecl,
Base,
14819 HadMultipleCandidates, OpLoc);
14830 const Expr *ImplicitThis =
nullptr;
14835 Context, ChosenOp, FnExpr.
get(), Args, ResultTy, VK, OpLoc,
14836 CurFPFeatureOverrides(), Best->IsADLCandidate);
14838 if (
const auto *Method = dyn_cast<CXXMethodDecl>(FnDecl);
14841 ImplicitThis = ArgsArray[0];
14842 ArgsArray = ArgsArray.slice(1);
14845 if (CheckCallReturnType(FnDecl->
getReturnType(), OpLoc, TheCall,
14849 if (Op == OO_Equal) {
14851 DiagnoseSelfMove(Args[0], Args[1], OpLoc);
14854 *
this,
AssignedEntity{Args[0], dyn_cast<CXXMethodDecl>(FnDecl)},
14857 if (ImplicitThis) {
14860 cast<CXXMethodDecl>(FnDecl)->getFunctionObjectParameterType());
14862 CheckArgAlignment(OpLoc, FnDecl,
"'this'", ThisType,
14866 checkCall(FnDecl,
nullptr, ImplicitThis, ArgsArray,
14868 VariadicDoesNotApply);
14870 ExprResult R = MaybeBindToTemporary(TheCall);
14874 R = CheckForImmediateInvocation(R, FnDecl);
14881 (Op == OO_Spaceship && IsReversed)) {
14882 if (Op == OO_ExclaimEqual) {
14883 assert(ChosenOp == OO_EqualEqual &&
"unexpected operator name");
14884 R = CreateBuiltinUnaryOp(OpLoc, UO_LNot, R.
get());
14886 assert(ChosenOp == OO_Spaceship &&
"unexpected operator name");
14888 Expr *ZeroLiteral =
14894 pushCodeSynthesisContext(Ctx);
14896 R = CreateOverloadedBinOp(
14897 OpLoc, Opc, Fns, IsReversed ? ZeroLiteral : R.
get(),
14898 IsReversed ? R.
get() : ZeroLiteral,
true,
14901 popCodeSynthesisContext();
14906 assert(ChosenOp == Op &&
"unexpected operator name");
14910 if (Best->RewriteKind !=
CRK_None)
14918 ExprResult ArgsRes0 = PerformImplicitConversion(
14919 Args[0], Best->BuiltinParamTypes[0], Best->Conversions[0],
14924 Args[0] = ArgsRes0.
get();
14926 ExprResult ArgsRes1 = PerformImplicitConversion(
14927 Args[1], Best->BuiltinParamTypes[1], Best->Conversions[1],
14932 Args[1] = ArgsRes1.
get();
14942 if (Opc == BO_Comma)
14947 if (DefaultedFn && Opc == BO_Cmp) {
14948 ExprResult E = BuildSynthesizedThreeWayComparison(OpLoc, Fns, Args[0],
14949 Args[1], DefaultedFn);
14950 if (
E.isInvalid() ||
E.isUsable())
14964 Opc >= BO_Assign && Opc <= BO_OrAssign) {
14965 Diag(OpLoc, diag::err_ovl_no_viable_oper)
14968 if (Args[0]->getType()->isIncompleteType()) {
14969 Diag(OpLoc, diag::note_assign_lhs_incomplete)
14983 Result = CreateBuiltinBinOp(OpLoc, Opc, Args[0], Args[1]);
14985 assert(
Result.isInvalid() &&
14986 "C++ binary operator overloading is missing candidates!");
14995 << Args[0]->getType()
14996 << Args[1]->getType()
14997 << Args[0]->getSourceRange()
14998 << Args[1]->getSourceRange()),
15004 if (isImplicitlyDeleted(Best->Function)) {
15008 Diag(OpLoc, diag::err_ovl_deleted_special_oper)
15013 Diag(OpLoc, diag::err_ovl_deleted_comparison)
15014 << Args[0]->
getType() << DeletedFD;
15019 NoteDeletedFunction(DeletedFD);
15027 PDiag(diag::err_ovl_deleted_oper)
15029 .getCXXOverloadedOperator())
15030 << (Msg !=
nullptr) << (Msg ? Msg->
getString() : StringRef())
15031 << Args[0]->getSourceRange() << Args[1]->getSourceRange()),
15039 return CreateBuiltinBinOp(OpLoc, Opc, Args[0], Args[1]);
15055 "cannot use prvalue expressions more than once");
15056 Expr *OrigLHS = LHS;
15057 Expr *OrigRHS = RHS;
15061 LHS =
new (Context)
15064 RHS =
new (Context)
15068 ExprResult Eq = CreateOverloadedBinOp(OpLoc, BO_EQ, Fns, LHS, RHS,
true,
true,
15070 if (
Eq.isInvalid())
15073 ExprResult Less = CreateOverloadedBinOp(OpLoc, BO_LT, Fns, LHS, RHS,
true,
15074 true, DefaultedFn);
15075 if (
Less.isInvalid())
15080 Greater = CreateOverloadedBinOp(OpLoc, BO_LT, Fns, RHS, LHS,
true,
true,
15087 struct Comparison {
15102 for (; I >= 0; --I) {
15104 auto *VI = Info->lookupValueInfo(Comparisons[I].
Result);
15115 Result = ActOnConditionalOp(OpLoc, OpLoc, Comparisons[I].Cmp.get(),
15127 Context, OrigLHS, OrigRHS, BO_Cmp,
Result.get()->getType(),
15128 Result.get()->getValueKind(),
Result.get()->getObjectKind(), OpLoc,
15129 CurFPFeatureOverrides());
15130 Expr *SemanticForm[] = {LHS, RHS,
Result.get()};
15140 unsigned NumArgsSlots =
15141 MethodArgs.size() + std::max<unsigned>(Args.size(), NumParams);
15144 MethodArgs.reserve(MethodArgs.size() + NumArgsSlots);
15145 bool IsError =
false;
15148 for (
unsigned i = 0; i != NumParams; i++) {
15150 if (i < Args.size()) {
15168 MethodArgs.push_back(Arg);
15178 Args.push_back(
Base);
15179 for (
auto *e : ArgExpr) {
15188 ArgExpr.back()->getEndLoc());
15200 if (Fn.isInvalid())
15206 CurFPFeatureOverrides());
15210 UnbridgedCastsSet UnbridgedCasts;
15220 AddMemberOperatorCandidates(OO_Subscript, LLoc, Args, CandidateSet);
15223 if (Args.size() == 2)
15224 AddBuiltinOperatorCandidates(OO_Subscript, LLoc, Args, CandidateSet);
15226 bool HadMultipleCandidates = (CandidateSet.
size() > 1);
15239 CheckMemberOperatorAccess(LLoc, Args[0], ArgExpr, Best->FoundDecl);
15248 InitializeExplicitObjectArgument(*
this, Args[0], Method);
15251 Args[0] = Res.
get();
15254 ExprResult Arg0 = PerformImplicitObjectArgumentInitialization(
15255 Args[0],
nullptr, Best->FoundDecl, Method);
15259 MethodArgs.push_back(Arg0.
get());
15263 *
this, MethodArgs, Method, ArgExpr, LLoc);
15271 *
this, FnDecl, Best->FoundDecl,
Base, HadMultipleCandidates,
15282 Context, OO_Subscript, FnExpr.
get(), MethodArgs, ResultTy, VK, RLoc,
15283 CurFPFeatureOverrides());
15285 if (CheckCallReturnType(FnDecl->
getReturnType(), LLoc, TheCall, FnDecl))
15288 if (CheckFunctionCall(Method, TheCall,
15292 return CheckForImmediateInvocation(MaybeBindToTemporary(TheCall),
15298 ExprResult ArgsRes0 = PerformImplicitConversion(
15299 Args[0], Best->BuiltinParamTypes[0], Best->Conversions[0],
15304 Args[0] = ArgsRes0.
get();
15306 ExprResult ArgsRes1 = PerformImplicitConversion(
15307 Args[1], Best->BuiltinParamTypes[1], Best->Conversions[1],
15312 Args[1] = ArgsRes1.
get();
15320 CandidateSet.
empty()
15321 ? (PDiag(diag::err_ovl_no_oper)
15322 << Args[0]->getType() << 0
15323 << Args[0]->getSourceRange() <<
Range)
15324 : (PDiag(diag::err_ovl_no_viable_subscript)
15325 << Args[0]->getType() << Args[0]->getSourceRange() <<
Range);
15332 if (Args.size() == 2) {
15335 LLoc, PDiag(diag::err_ovl_ambiguous_oper_binary)
15336 <<
"[]" << Args[0]->getType() << Args[1]->getType()
15337 << Args[0]->getSourceRange() <<
Range),
15342 PDiag(diag::err_ovl_ambiguous_subscript_call)
15343 << Args[0]->getType()
15344 << Args[0]->getSourceRange() <<
Range),
15353 PDiag(diag::err_ovl_deleted_oper)
15354 <<
"[]" << (Msg !=
nullptr)
15355 << (Msg ? Msg->
getString() : StringRef())
15356 << Args[0]->getSourceRange() <<
Range),
15363 return CreateBuiltinArraySubscriptExpr(Args[0], LLoc, Args[1], RLoc);
15370 Expr *ExecConfig,
bool IsExecConfig,
15371 bool AllowRecovery) {
15380 if (
BinaryOperator *op = dyn_cast<BinaryOperator>(NakedMemExpr)) {
15382 assert(op->getOpcode() == BO_PtrMemD || op->getOpcode() == BO_PtrMemI);
15395 QualType objectType = op->getLHS()->getType();
15396 if (op->getOpcode() == BO_PtrMemI)
15400 Qualifiers difference = objectQuals - funcQuals;
15404 std::string qualsString = difference.
getAsString();
15405 Diag(LParenLoc, diag::err_pointer_to_member_call_drops_quals)
15408 << (qualsString.find(
' ') == std::string::npos ? 1 : 2);
15412 Context, MemExprE, Args, resultType, valueKind, RParenLoc,
15415 if (CheckCallReturnType(proto->
getReturnType(), op->getRHS()->getBeginLoc(),
15419 if (ConvertArgumentsForCall(call, op,
nullptr, proto, Args, RParenLoc))
15422 if (CheckOtherCall(call, proto))
15425 return MaybeBindToTemporary(call);
15432 if (!AllowRecovery)
15434 std::vector<Expr *> SubExprs = {MemExprE};
15435 llvm::append_range(SubExprs, Args);
15436 return CreateRecoveryExpr(MemExprE->
getBeginLoc(), RParenLoc, SubExprs,
15439 if (isa<CXXPseudoDestructorExpr>(NakedMemExpr))
15441 RParenLoc, CurFPFeatureOverrides());
15443 UnbridgedCastsSet UnbridgedCasts;
15449 bool HadMultipleCandidates =
false;
15452 if (isa<MemberExpr>(NakedMemExpr)) {
15453 MemExpr = cast<MemberExpr>(NakedMemExpr);
15457 UnbridgedCasts.restore();
15475 TemplateArgs = &TemplateArgsBuffer;
15481 QualType ExplicitObjectType = ObjectType;
15485 if (isa<UsingShadowDecl>(
Func))
15486 Func = cast<UsingShadowDecl>(
Func)->getTargetDecl();
15488 bool HasExplicitParameter =
false;
15489 if (
const auto *M = dyn_cast<FunctionDecl>(
Func);
15490 M && M->hasCXXExplicitFunctionObjectParameter())
15491 HasExplicitParameter =
true;
15492 else if (
const auto *M = dyn_cast<FunctionTemplateDecl>(
Func);
15494 M->getTemplatedDecl()->hasCXXExplicitFunctionObjectParameter())
15495 HasExplicitParameter =
true;
15497 if (HasExplicitParameter)
15501 if (getLangOpts().MicrosoftExt && isa<CXXConstructorDecl>(
Func)) {
15502 AddOverloadCandidate(cast<CXXConstructorDecl>(
Func), I.getPair(), Args,
15505 }
else if ((Method = dyn_cast<CXXMethodDecl>(
Func))) {
15511 AddMethodCandidate(Method, I.getPair(), ActingDC, ExplicitObjectType,
15512 ObjectClassification, Args, CandidateSet,
15515 AddMethodTemplateCandidate(cast<FunctionTemplateDecl>(
Func),
15516 I.getPair(), ActingDC, TemplateArgs,
15517 ExplicitObjectType, ObjectClassification,
15518 Args, CandidateSet,
15523 HadMultipleCandidates = (CandidateSet.
size() > 1);
15527 UnbridgedCasts.restore();
15530 bool Succeeded =
false;
15534 Method = cast<CXXMethodDecl>(Best->Function);
15535 FoundDecl = Best->FoundDecl;
15536 CheckUnresolvedMemberAccess(UnresExpr, Best->FoundDecl);
15537 if (DiagnoseUseOfOverloadedDecl(Best->FoundDecl, UnresExpr->
getNameLoc()))
15545 if (Method != FoundDecl.getDecl() &&
15546 DiagnoseUseOfOverloadedDecl(Method, UnresExpr->
getNameLoc()))
15555 PDiag(diag::err_ovl_no_viable_member_function_in_call)
15562 PDiag(diag::err_ovl_ambiguous_member_call)
15567 DiagnoseUseOfDeletedFunction(
15569 CandidateSet, Best->Function, Args,
true);
15577 FixOverloadedFunctionReference(MemExprE, FoundDecl, Method);
15580 MemExprE = Res.
get();
15585 return BuildResolvedCallExpr(MemExprE, Method, LParenLoc, Args, RParenLoc,
15586 ExecConfig, IsExecConfig);
15596 assert(Method &&
"Member call to something that isn't a method?");
15609 HadMultipleCandidates, MemExpr->
getExprLoc());
15615 CurFPFeatureOverrides(), Proto->getNumParams());
15618 ExprResult ObjectArg = PerformImplicitObjectArgumentInitialization(
15619 MemExpr->
getBase(), Qualifier, FoundDecl, Method);
15624 RParenLoc, CurFPFeatureOverrides(),
15625 Proto->getNumParams());
15631 return BuildRecoveryExpr(ResultType);
15634 if (ConvertArgumentsForCall(TheCall, MemExpr, Method, Proto, Args,
15636 return BuildRecoveryExpr(ResultType);
15638 DiagnoseSentinelCalls(Method, LParenLoc, Args);
15640 if (CheckFunctionCall(Method, TheCall, Proto))
15646 if (
auto *MemE = dyn_cast<MemberExpr>(NakedMemExpr)) {
15647 if (
const EnableIfAttr *
Attr =
15648 CheckEnableIf(Method, LParenLoc, Args,
true)) {
15649 Diag(MemE->getMemberLoc(),
15650 diag::err_ovl_no_viable_member_function_in_call)
15653 diag::note_ovl_candidate_disabled_by_function_cond_attr)
15654 <<
Attr->getCond()->getSourceRange() <<
Attr->getMessage();
15659 if (isa<CXXConstructorDecl, CXXDestructorDecl>(CurContext) &&
15660 TheCall->getDirectCallee()->isPureVirtual()) {
15666 diag::warn_call_to_pure_virtual_member_function_from_ctor_dtor)
15667 << MD->
getDeclName() << isa<CXXDestructorDecl>(CurContext)
15671 if (getLangOpts().AppleKext)
15677 if (
auto *DD = dyn_cast<CXXDestructorDecl>(TheCall->getDirectCallee())) {
15679 bool CallCanBeVirtual = !MemExpr->
hasQualifier() || getLangOpts().AppleKext;
15680 CheckVirtualDtorCall(DD, MemExpr->
getBeginLoc(),
false,
15681 CallCanBeVirtual,
true,
15685 return CheckForImmediateInvocation(MaybeBindToTemporary(TheCall),
15686 TheCall->getDirectCallee());
15698 UnbridgedCastsSet UnbridgedCasts;
15702 assert(Object.get()->getType()->isRecordType() &&
15703 "Requires object type argument");
15716 if (RequireCompleteType(LParenLoc, Object.get()->getType(),
15717 diag::err_incomplete_object_call, Object.get()))
15721 LookupResult R(*
this, OpName, LParenLoc, LookupOrdinaryName);
15722 LookupQualifiedName(R,
Record->getDecl());
15723 R.suppressAccessDiagnostics();
15726 Oper != OperEnd; ++Oper) {
15727 AddMethodCandidate(Oper.getPair(), Object.get()->getType(),
15728 Object.get()->Classify(Context), Args, CandidateSet,
15740 bool IgnoreSurrogateFunctions =
false;
15741 if (CandidateSet.
size() == 1 &&
Record->getAsCXXRecordDecl()->isLambda()) {
15743 if (!Candidate.
Viable &&
15745 IgnoreSurrogateFunctions =
true;
15765 const auto &Conversions =
15766 cast<CXXRecordDecl>(
Record->getDecl())->getVisibleConversionFunctions();
15767 for (
auto I = Conversions.begin(),
E = Conversions.end();
15768 !IgnoreSurrogateFunctions && I !=
E; ++I) {
15771 if (isa<UsingShadowDecl>(
D))
15772 D = cast<UsingShadowDecl>(
D)->getTargetDecl();
15776 if (isa<FunctionTemplateDecl>(
D))
15789 AddSurrogateCandidate(Conv, I.getPair(), ActingContext, Proto,
15790 Object.get(), Args, CandidateSet);
15795 bool HadMultipleCandidates = (CandidateSet.
size() > 1);
15808 CandidateSet.
empty()
15809 ? (PDiag(diag::err_ovl_no_oper)
15810 << Object.get()->getType() << 1
15811 << Object.get()->getSourceRange())
15812 : (PDiag(diag::err_ovl_no_viable_object_call)
15813 << Object.get()->getType() << Object.get()->getSourceRange());
15820 if (!R.isAmbiguous())
15823 PDiag(diag::err_ovl_ambiguous_object_call)
15824 << Object.get()->getType()
15825 << Object.get()->getSourceRange()),
15836 PDiag(diag::err_ovl_deleted_object_call)
15837 << Object.get()->getType() << (Msg !=
nullptr)
15838 << (Msg ? Msg->
getString() : StringRef())
15839 << Object.get()->getSourceRange()),
15845 if (Best == CandidateSet.
end())
15848 UnbridgedCasts.restore();
15850 if (Best->Function ==
nullptr) {
15854 = cast<CXXConversionDecl>(
15855 Best->Conversions[0].UserDefined.ConversionFunction);
15857 CheckMemberOperatorAccess(LParenLoc, Object.get(),
nullptr,
15859 if (DiagnoseUseOfDecl(Best->FoundDecl, LParenLoc))
15861 assert(Conv == Best->FoundDecl.getDecl() &&
15862 "Found Decl & conversion-to-functionptr should be same, right?!");
15869 ExprResult Call = BuildCXXMemberCallExpr(Object.get(), Best->FoundDecl,
15870 Conv, HadMultipleCandidates);
15871 if (
Call.isInvalid())
15875 Context,
Call.get()->getType(), CK_UserDefinedConversion,
Call.get(),
15876 nullptr,
VK_PRValue, CurFPFeatureOverrides());
15878 return BuildCallExpr(S,
Call.get(), LParenLoc, Args, RParenLoc);
15881 CheckMemberOperatorAccess(LParenLoc, Object.get(),
nullptr, Best->FoundDecl);
15886 CXXMethodDecl *Method = cast<CXXMethodDecl>(Best->Function);
15899 Obj, HadMultipleCandidates,
15906 MethodArgs.reserve(NumParams + 1);
15908 bool IsError =
false;
15915 ExprResult ObjRes = PerformImplicitObjectArgumentInitialization(
15916 Object.get(),
nullptr, Best->FoundDecl, Method);
15921 MethodArgs.push_back(Object.get());
15925 *
this, MethodArgs, Method, Args, LParenLoc);
15928 if (Proto->isVariadic()) {
15930 for (
unsigned i = NumParams, e = Args.size(); i < e; i++) {
15931 ExprResult Arg = DefaultVariadicArgumentPromotion(Args[i], VariadicMethod,
15934 MethodArgs.push_back(Arg.
get());
15941 DiagnoseSentinelCalls(Method, LParenLoc, Args);
15949 Context, OO_Call, NewFn.
get(), MethodArgs, ResultTy, VK, RParenLoc,
15950 CurFPFeatureOverrides());
15952 if (CheckCallReturnType(Method->
getReturnType(), LParenLoc, TheCall, Method))
15955 if (CheckFunctionCall(Method, TheCall, Proto))
15958 return CheckForImmediateInvocation(MaybeBindToTemporary(TheCall), Method);
15963 bool *NoArrowOperatorFound) {
15964 assert(
Base->getType()->isRecordType() &&
15965 "left-hand side must have class type");
15982 if (RequireCompleteType(
Loc,
Base->getType(),
15983 diag::err_typecheck_incomplete_tag,
Base))
15986 LookupResult R(*
this, OpName, OpLoc, LookupOrdinaryName);
15991 Oper != OperEnd; ++Oper) {
15992 AddMethodCandidate(Oper.getPair(),
Base->getType(),
Base->Classify(Context),
15997 bool HadMultipleCandidates = (CandidateSet.
size() > 1);
16008 if (CandidateSet.
empty()) {
16010 if (NoArrowOperatorFound) {
16013 *NoArrowOperatorFound =
true;
16016 Diag(OpLoc, diag::err_typecheck_member_reference_arrow)
16017 << BaseType <<
Base->getSourceRange();
16019 Diag(OpLoc, diag::note_typecheck_member_reference_suggestion)
16023 Diag(OpLoc, diag::err_ovl_no_viable_oper)
16024 <<
"operator->" <<
Base->getSourceRange();
16032 <<
"->" <<
Base->getType()
16033 <<
Base->getSourceRange()),
16041 <<
"->" << (Msg !=
nullptr)
16042 << (Msg ? Msg->
getString() : StringRef())
16043 <<
Base->getSourceRange()),
16049 CheckMemberOperatorAccess(OpLoc,
Base,
nullptr, Best->FoundDecl);
16052 CXXMethodDecl *Method = cast<CXXMethodDecl>(Best->Function);
16055 ExprResult R = InitializeExplicitObjectArgument(*
this,
Base, Method);
16061 Base,
nullptr, Best->FoundDecl, Method);
16069 Base, HadMultipleCandidates, OpLoc);
16079 ResultTy, VK, OpLoc, CurFPFeatureOverrides());
16081 if (CheckCallReturnType(Method->
getReturnType(), OpLoc, TheCall, Method))
16084 if (CheckFunctionCall(Method, TheCall,
16088 return CheckForImmediateInvocation(MaybeBindToTemporary(TheCall), Method);
16100 AddNonMemberOperatorCandidates(R.
asUnresolvedSet(), Args, CandidateSet,
16103 bool HadMultipleCandidates = (CandidateSet.
size() > 1);
16116 PDiag(diag::err_ovl_no_viable_function_in_call)
16131 nullptr, HadMultipleCandidates,
16134 if (Fn.isInvalid())
16140 for (
unsigned ArgIdx = 0, N = Args.size(); ArgIdx != N; ++ArgIdx) {
16141 ExprResult InputInit = PerformCopyInitialization(
16146 ConvArgs[ArgIdx] = InputInit.
get();
16154 Context, Fn.get(),
llvm::ArrayRef(ConvArgs, Args.size()), ResultTy, VK,
16155 LitEndLoc, UDSuffixLoc, CurFPFeatureOverrides());
16157 if (CheckCallReturnType(FD->
getReturnType(), UDSuffixLoc, UDL, FD))
16160 if (CheckFunctionCall(FD, UDL,
nullptr))
16163 return CheckForImmediateInvocation(MaybeBindToTemporary(UDL), FD);
16173 Scope *S =
nullptr;
16176 if (!MemberLookup.
empty()) {
16186 return FRS_DiagnosticIssued;
16191 return FRS_DiagnosticIssued;
16194 ExprResult FnR = CreateUnresolvedLookupExpr(
nullptr,
16198 return FRS_DiagnosticIssued;
16201 bool CandidateSetError = buildOverloadedCallSet(S, Fn, Fn,
Range,
Loc,
16203 if (CandidateSet->
empty() || CandidateSetError) {
16205 return FRS_NoViableFunction;
16213 return FRS_NoViableFunction;
16216 Loc,
nullptr, CandidateSet, &Best,
16221 return FRS_DiagnosticIssued;
16224 return FRS_Success;
16229 if (
ParenExpr *PE = dyn_cast<ParenExpr>(
E)) {
16231 FixOverloadedFunctionReference(PE->getSubExpr(),
Found, Fn);
16234 if (SubExpr.
get() == PE->getSubExpr())
16237 return new (Context)
16238 ParenExpr(PE->getLParen(), PE->getRParen(), SubExpr.
get());
16243 FixOverloadedFunctionReference(ICE->getSubExpr(),
Found, Fn);
16246 assert(Context.
hasSameType(ICE->getSubExpr()->getType(),
16248 "Implicit cast type cannot be determined from overload");
16249 assert(ICE->path_empty() &&
"fixing up hierarchy conversion?");
16250 if (SubExpr.
get() == ICE->getSubExpr())
16255 CurFPFeatureOverrides());
16258 if (
auto *GSE = dyn_cast<GenericSelectionExpr>(
E)) {
16259 if (!GSE->isResultDependent()) {
16261 FixOverloadedFunctionReference(GSE->getResultExpr(),
Found, Fn);
16264 if (SubExpr.
get() == GSE->getResultExpr())
16271 unsigned ResultIdx = GSE->getResultIndex();
16272 AssocExprs[ResultIdx] = SubExpr.
get();
16274 if (GSE->isExprPredicate())
16276 Context, GSE->getGenericLoc(), GSE->getControllingExpr(),
16277 GSE->getAssocTypeSourceInfos(), AssocExprs, GSE->getDefaultLoc(),
16278 GSE->getRParenLoc(), GSE->containsUnexpandedParameterPack(),
16281 Context, GSE->getGenericLoc(), GSE->getControllingType(),
16282 GSE->getAssocTypeSourceInfos(), AssocExprs, GSE->getDefaultLoc(),
16283 GSE->getRParenLoc(), GSE->containsUnexpandedParameterPack(),
16292 assert(UnOp->getOpcode() == UO_AddrOf &&
16293 "Can only take the address of an overloaded function");
16303 FixOverloadedFunctionReference(UnOp->getSubExpr(),
Found, Fn);
16306 if (SubExpr.
get() == UnOp->getSubExpr())
16309 if (CheckUseOfCXXMethodAsAddressOfOperand(UnOp->getBeginLoc(),
16310 SubExpr.
get(), Method))
16313 assert(isa<DeclRefExpr>(SubExpr.
get()) &&
16314 "fixed to something other than a decl ref");
16315 assert(cast<DeclRefExpr>(SubExpr.
get())->getQualifier() &&
16316 "fixed to a member ref with no nested name qualifier");
16327 (void)isCompleteType(UnOp->getOperatorLoc(), MemPtrType);
16331 UnOp->getOperatorLoc(),
false,
16332 CurFPFeatureOverrides());
16336 FixOverloadedFunctionReference(UnOp->getSubExpr(),
Found, Fn);
16339 if (SubExpr.
get() == UnOp->getSubExpr())
16342 return CreateBuiltinUnaryOp(UnOp->getOperatorLoc(), UO_AddrOf,
16349 if (ULE->hasExplicitTemplateArgs()) {
16350 ULE->copyTemplateArgumentsInto(TemplateArgsBuffer);
16351 TemplateArgs = &TemplateArgsBuffer;
16356 getLangOpts().CPlusPlus && !Fn->hasCXXExplicitFunctionObjectParameter()
16361 if (
unsigned BID = Fn->getBuiltinID()) {
16369 Fn,
Type, ValueKind, ULE->getNameInfo(), ULE->getQualifierLoc(),
16370 Found.getDecl(), ULE->getTemplateKeywordLoc(), TemplateArgs);
16378 if (MemExpr->hasExplicitTemplateArgs()) {
16379 MemExpr->copyTemplateArgumentsInto(TemplateArgsBuffer);
16380 TemplateArgs = &TemplateArgsBuffer;
16387 if (MemExpr->isImplicitAccess()) {
16388 if (cast<CXXMethodDecl>(Fn)->isStatic()) {
16390 Fn, Fn->getType(),
VK_LValue, MemExpr->getNameInfo(),
16391 MemExpr->getQualifierLoc(),
Found.getDecl(),
16392 MemExpr->getTemplateKeywordLoc(), TemplateArgs);
16397 if (MemExpr->getQualifier())
16398 Loc = MemExpr->getQualifierLoc().getBeginLoc();
16400 BuildCXXThisExpr(
Loc, MemExpr->getBaseType(),
true);
16403 Base = MemExpr->getBase();
16407 if (cast<CXXMethodDecl>(Fn)->isStatic()) {
16409 type = Fn->getType();
16415 return BuildMemberExpr(
16416 Base, MemExpr->isArrow(), MemExpr->getOperatorLoc(),
16417 MemExpr->getQualifierLoc(), MemExpr->getTemplateKeywordLoc(), Fn,
Found,
16418 true, MemExpr->getMemberNameInfo(),
16422 llvm_unreachable(
"Invalid reference to overloaded function");
16428 return FixOverloadedFunctionReference(
E.get(),
Found, Fn);
16433 if (!PartialOverloading || !
Function)
16437 if (
const auto *Proto =
16438 dyn_cast<FunctionProtoType>(
Function->getFunctionType()))
16439 if (Proto->isTemplateVariadic())
16441 if (
auto *Pattern =
Function->getTemplateInstantiationPattern())
16442 if (
const auto *Proto =
16443 dyn_cast<FunctionProtoType>(Pattern->getFunctionType()))
16444 if (Proto->isTemplateVariadic())
16457 << IsMember << Name << (Msg !=
nullptr)
16458 << (Msg ? Msg->
getString() : StringRef())
Defines the clang::ASTContext interface.
Defines the Diagnostic-related interfaces.
static bool isBooleanType(QualType Ty)
Defines the C++ Decl subclasses, other than those for templates (found in DeclTemplate....
Defines the clang::Expr interface and subclasses for C++ expressions.
static bool EvaluateAsBooleanCondition(const Expr *E, bool &Result, EvalInfo &Info)
static const GlobalDecl isTemplate(GlobalDecl GD, const TemplateArgumentList *&TemplateArgs)
static DiagnosticBuilder Diag(DiagnosticsEngine *Diags, const LangOptions &Features, FullSourceLoc TokLoc, const char *TokBegin, const char *TokRangeBegin, const char *TokRangeEnd, unsigned DiagID)
Produce a diagnostic highlighting some portion of a literal.
llvm::MachO::Record Record
Defines an enumeration for C++ overloaded operators.
Implements a partial diagnostic that can be emitted anwyhere in a DiagnosticBuilder stream.
static std::string getName(const CallEvent &Call)
static bool hasExplicitAttr(const VarDecl *D)
This file declares semantic analysis for CUDA constructs.
static void BuildBasePathArray(const CXXBasePath &Path, CXXCastPath &BasePathArray)
static bool isRecordType(QualType T)
static void TryUserDefinedConversion(Sema &S, QualType DestType, const InitializationKind &Kind, Expr *Initializer, InitializationSequence &Sequence, bool TopLevelOfInitList)
Attempt a user-defined conversion between two types (C++ [dcl.init]), which enumerates all conversion...
This file declares semantic analysis for Objective-C.
static ImplicitConversionSequence::CompareKind CompareStandardConversionSequences(Sema &S, SourceLocation Loc, const StandardConversionSequence &SCS1, const StandardConversionSequence &SCS2)
CompareStandardConversionSequences - Compare two standard conversion sequences to determine whether o...
static bool isNullPointerConstantForConversion(Expr *Expr, bool InOverloadResolution, ASTContext &Context)
static bool shouldSkipNotingLambdaConversionDecl(const FunctionDecl *Fn)
static const FunctionType * getConversionOpReturnTyAsFunction(CXXConversionDecl *Conv)
static bool functionHasPassObjectSizeParams(const FunctionDecl *FD)
static Comparison compareEnableIfAttrs(const Sema &S, const FunctionDecl *Cand1, const FunctionDecl *Cand2)
Compares the enable_if attributes of two FunctionDecls, for the purposes of overload resolution.
static Qualifiers CollectVRQualifiers(ASTContext &Context, Expr *ArgExpr)
CollectVRQualifiers - This routine returns Volatile/Restrict qualifiers, if any, found in visible typ...
@ ToPromotedUnderlyingType
static void AddOverloadedCallCandidate(Sema &S, DeclAccessPair FoundDecl, TemplateArgumentListInfo *ExplicitTemplateArgs, ArrayRef< Expr * > Args, OverloadCandidateSet &CandidateSet, bool PartialOverloading, bool KnownValid)
Add a single candidate to the overload set.
static ExprResult FinishOverloadedCallExpr(Sema &SemaRef, Scope *S, Expr *Fn, UnresolvedLookupExpr *ULE, SourceLocation LParenLoc, MultiExprArg Args, SourceLocation RParenLoc, Expr *ExecConfig, OverloadCandidateSet *CandidateSet, OverloadCandidateSet::iterator *Best, OverloadingResult OverloadResult, bool AllowTypoCorrection)
FinishOverloadedCallExpr - given an OverloadCandidateSet, builds and returns the completed call expre...
static bool isQualificationConversionStep(QualType FromType, QualType ToType, bool CStyle, bool IsTopLevel, bool &PreviousToQualsIncludeConst, bool &ObjCLifetimeConversion, const ASTContext &Ctx)
Perform a single iteration of the loop for checking if a qualification conversion is valid.
static ImplicitConversionSequence::CompareKind CompareQualificationConversions(Sema &S, const StandardConversionSequence &SCS1, const StandardConversionSequence &SCS2)
CompareQualificationConversions - Compares two standard conversion sequences to determine whether the...
static void dropPointerConversion(StandardConversionSequence &SCS)
dropPointerConversions - If the given standard conversion sequence involves any pointer conversions,...
static SourceLocation GetLocationForCandidate(const OverloadCandidate *Cand)
static void DiagnoseArityMismatch(Sema &S, NamedDecl *Found, Decl *D, unsigned NumFormalArgs, bool IsAddressOf=false)
General arity mismatch diagnosis over a candidate in a candidate set.
static const Expr * IgnoreNarrowingConversion(ASTContext &Ctx, const Expr *Converted)
Skip any implicit casts which could be either part of a narrowing conversion or after one in an impli...
static bool allowAmbiguity(ASTContext &Context, const FunctionDecl *F1, const FunctionDecl *F2)
static unsigned RankDeductionFailure(const DeductionFailureInfo &DFI)
static QualType BuildSimilarlyQualifiedPointerType(const Type *FromPtr, QualType ToPointee, QualType ToType, ASTContext &Context, bool StripObjCLifetime=false)
BuildSimilarlyQualifiedPointerType - In a pointer conversion from the pointer type FromPtr to a point...
static void forAllQualifierCombinations(QualifiersAndAtomic Quals, llvm::function_ref< void(QualifiersAndAtomic)> Callback)
static bool FindConversionForRefInit(Sema &S, ImplicitConversionSequence &ICS, QualType DeclType, SourceLocation DeclLoc, Expr *Init, QualType T2, bool AllowRvalues, bool AllowExplicit)
Look for a user-defined conversion to a value reference-compatible with DeclType.
static bool tryAtomicConversion(Sema &S, Expr *From, QualType ToType, bool InOverloadResolution, StandardConversionSequence &SCS, bool CStyle)
static Expr * GetExplicitObjectExpr(Sema &S, Expr *Obj, const FunctionDecl *Fun)
static bool hasDeprecatedStringLiteralToCharPtrConversion(const ImplicitConversionSequence &ICS)
static ExprResult CheckConvertedConstantExpression(Sema &S, Expr *From, QualType T, APValue &Value, Sema::CCEKind CCE, bool RequireInt, NamedDecl *Dest)
CheckConvertedConstantExpression - Check that the expression From is a converted constant expression ...
static void AddBuiltinAssignmentOperatorCandidates(Sema &S, QualType T, ArrayRef< Expr * > Args, OverloadCandidateSet &CandidateSet)
Helper function for AddBuiltinOperatorCandidates() that adds the volatile- and non-volatile-qualified...
static bool CheckConvertedConstantConversions(Sema &S, StandardConversionSequence &SCS)
Check that the specified conversion is permitted in a converted constant expression,...
static void NoteBuiltinOperatorCandidate(Sema &S, StringRef Opc, SourceLocation OpLoc, OverloadCandidate *Cand)
static ImplicitConversionSequence::CompareKind compareConversionFunctions(Sema &S, FunctionDecl *Function1, FunctionDecl *Function2)
Compare the user-defined conversion functions or constructors of two user-defined conversion sequence...
static void forAllQualifierCombinationsImpl(QualifiersAndAtomic Available, QualifiersAndAtomic Applied, llvm::function_ref< void(QualifiersAndAtomic)> Callback)
static const char * GetImplicitConversionName(ImplicitConversionKind Kind)
GetImplicitConversionName - Return the name of this kind of implicit conversion.
static bool checkAddressOfFunctionIsAvailable(Sema &S, const FunctionDecl *FD, bool Complain, bool InOverloadResolution, SourceLocation Loc)
Returns true if we can take the address of the function.
static ImplicitConversionSequence::CompareKind CompareDerivedToBaseConversions(Sema &S, SourceLocation Loc, const StandardConversionSequence &SCS1, const StandardConversionSequence &SCS2)
CompareDerivedToBaseConversions - Compares two standard conversion sequences to determine whether the...
static bool convertArgsForAvailabilityChecks(Sema &S, FunctionDecl *Function, Expr *ThisArg, SourceLocation CallLoc, ArrayRef< Expr * > Args, Sema::SFINAETrap &Trap, bool MissingImplicitThis, Expr *&ConvertedThis, SmallVectorImpl< Expr * > &ConvertedArgs)
static TemplateDecl * getDescribedTemplate(Decl *Templated)
static void CompleteNonViableCandidate(Sema &S, OverloadCandidate *Cand, ArrayRef< Expr * > Args, OverloadCandidateSet::CandidateSetKind CSK)
CompleteNonViableCandidate - Normally, overload resolution only computes up to the first bad conversi...
static QualType AdoptQualifiers(ASTContext &Context, QualType T, Qualifiers Qs)
Adopt the given qualifiers for the given type.
static void NoteAmbiguousUserConversions(Sema &S, SourceLocation OpLoc, OverloadCandidate *Cand)
static bool CheckArityMismatch(Sema &S, OverloadCandidate *Cand, unsigned NumArgs, bool IsAddressOf=false)
Additional arity mismatch diagnosis specific to a function overload candidates.
static ImplicitConversionSequence::CompareKind compareStandardConversionSubsets(ASTContext &Context, const StandardConversionSequence &SCS1, const StandardConversionSequence &SCS2)
static bool IsVectorConversion(Sema &S, QualType FromType, QualType ToType, ImplicitConversionKind &ICK, ImplicitConversionKind &ElConv, Expr *From, bool InOverloadResolution, bool CStyle)
Determine whether the conversion from FromType to ToType is a valid vector conversion.
static ImplicitConversionSequence TryContextuallyConvertToObjCPointer(Sema &S, Expr *From)
TryContextuallyConvertToObjCPointer - Attempt to contextually convert the expression From to an Objec...
static ExprResult CreateFunctionRefExpr(Sema &S, FunctionDecl *Fn, NamedDecl *FoundDecl, const Expr *Base, bool HadMultipleCandidates, SourceLocation Loc=SourceLocation(), const DeclarationNameLoc &LocInfo=DeclarationNameLoc())
A convenience routine for creating a decayed reference to a function.
static std::optional< QualType > getImplicitObjectParamType(ASTContext &Context, const FunctionDecl *F)
Compute the type of the implicit object parameter for the given function, if any.
static bool checkPlaceholderForOverload(Sema &S, Expr *&E, UnbridgedCastsSet *unbridgedCasts=nullptr)
checkPlaceholderForOverload - Do any interesting placeholder-like preprocessing on the given expressi...
static FixedEnumPromotion getFixedEnumPromtion(Sema &S, const StandardConversionSequence &SCS)
Returns kind of fixed enum promotion the SCS uses.
static bool isAllowableExplicitConversion(Sema &S, QualType ConvType, QualType ToType, bool AllowObjCPointerConversion)
Determine whether this is an allowable conversion from the result of an explicit conversion operator ...
static bool isNonViableMultiVersionOverload(FunctionDecl *FD)
static ExprResult BuildConvertedConstantExpression(Sema &S, Expr *From, QualType T, Sema::CCEKind CCE, NamedDecl *Dest, APValue &PreNarrowingValue)
BuildConvertedConstantExpression - Check that the expression From is a converted constant expression ...
static bool FunctionsCorrespond(ASTContext &Ctx, const FunctionDecl *X, const FunctionDecl *Y)
static ImplicitConversionSequence TryImplicitConversion(Sema &S, Expr *From, QualType ToType, bool SuppressUserConversions, AllowedExplicit AllowExplicit, bool InOverloadResolution, bool CStyle, bool AllowObjCWritebackConversion, bool AllowObjCConversionOnExplicit)
TryImplicitConversion - Attempt to perform an implicit conversion from the given expression (Expr) to...
static bool IsVectorElementConversion(Sema &S, QualType FromType, QualType ToType, ImplicitConversionKind &ICK, Expr *From)
static ImplicitConversionSequence TryListConversion(Sema &S, InitListExpr *From, QualType ToType, bool SuppressUserConversions, bool InOverloadResolution, bool AllowObjCWritebackConversion)
TryListConversion - Try to copy-initialize a value of type ToType from the initializer list From.
static bool IsOverloadOrOverrideImpl(Sema &SemaRef, FunctionDecl *New, FunctionDecl *Old, bool UseMemberUsingDeclRules, bool ConsiderCudaAttrs, bool UseOverrideRules=false)
static QualType withoutUnaligned(ASTContext &Ctx, QualType T)
static void DiagnoseBadTarget(Sema &S, OverloadCandidate *Cand)
CUDA: diagnose an invalid call across targets.
static void MaybeDiagnoseAmbiguousConstraints(Sema &S, ArrayRef< OverloadCandidate > Cands)
static bool diagnoseNoViableConversion(Sema &SemaRef, SourceLocation Loc, Expr *&From, Sema::ContextualImplicitConverter &Converter, QualType T, bool HadMultipleCandidates, UnresolvedSetImpl &ExplicitConversions)
static ImplicitConversionSequence TryContextuallyConvertToBool(Sema &S, Expr *From)
TryContextuallyConvertToBool - Attempt to contextually convert the expression From to bool (C++0x [co...
static ImplicitConversionSequence TryObjectArgumentInitialization(Sema &S, SourceLocation Loc, QualType FromType, Expr::Classification FromClassification, CXXMethodDecl *Method, const CXXRecordDecl *ActingContext, bool InOverloadResolution=false, QualType ExplicitParameterType=QualType(), bool SuppressUserConversion=false)
TryObjectArgumentInitialization - Try to initialize the object parameter of the given member function...
static bool recordConversion(Sema &SemaRef, SourceLocation Loc, Expr *&From, Sema::ContextualImplicitConverter &Converter, QualType T, bool HadMultipleCandidates, DeclAccessPair &Found)
static ImplicitConversionSequence::CompareKind CompareImplicitConversionSequences(Sema &S, SourceLocation Loc, const ImplicitConversionSequence &ICS1, const ImplicitConversionSequence &ICS2)
CompareImplicitConversionSequences - Compare two implicit conversion sequences to determine whether o...
static void NoteFunctionCandidate(Sema &S, OverloadCandidate *Cand, unsigned NumArgs, bool TakingCandidateAddress, LangAS CtorDestAS=LangAS::Default)
Generates a 'note' diagnostic for an overload candidate.
static ImplicitConversionSequence TryCopyInitialization(Sema &S, Expr *From, QualType ToType, bool SuppressUserConversions, bool InOverloadResolution, bool AllowObjCWritebackConversion, bool AllowExplicit=false)
TryCopyInitialization - Try to copy-initialize a value of type ToType from the expression From.
static ExprResult diagnoseAmbiguousConversion(Sema &SemaRef, SourceLocation Loc, Expr *From, Sema::ContextualImplicitConverter &Converter, QualType T, UnresolvedSetImpl &ViableConversions)
static void markUnaddressableCandidatesUnviable(Sema &S, OverloadCandidateSet &CS)
static QualType GetExplicitObjectType(Sema &S, const Expr *MemExprE)
static bool sameFunctionParameterTypeLists(Sema &S, const OverloadCandidate &Cand1, const OverloadCandidate &Cand2)
We're allowed to use constraints partial ordering only if the candidates have the same parameter type...
static QualType AdjustAddressSpaceForBuiltinOperandType(Sema &S, QualType T, Expr *Arg)
Helper function for adjusting address spaces for the pointer or reference operands of builtin operato...
static void DiagnoseFailedExplicitSpec(Sema &S, OverloadCandidate *Cand)
static bool DiagnoseTwoPhaseLookup(Sema &SemaRef, SourceLocation FnLoc, const CXXScopeSpec &SS, LookupResult &R, OverloadCandidateSet::CandidateSetKind CSK, TemplateArgumentListInfo *ExplicitTemplateArgs, ArrayRef< Expr * > Args, CXXRecordDecl **FoundInClass=nullptr)
Attempt to recover from an ill-formed use of a non-dependent name in a template, where the non-depend...
static bool isBetterReferenceBindingKind(const StandardConversionSequence &SCS1, const StandardConversionSequence &SCS2)
Determine whether one of the given reference bindings is better than the other based on what kind of ...
static bool canBeDeclaredInNamespace(const DeclarationName &Name)
Determine whether a declaration with the specified name could be moved into a different namespace.
static ExprResult finishContextualImplicitConversion(Sema &SemaRef, SourceLocation Loc, Expr *From, Sema::ContextualImplicitConverter &Converter)
static bool IsStandardConversion(Sema &S, Expr *From, QualType ToType, bool InOverloadResolution, StandardConversionSequence &SCS, bool CStyle, bool AllowObjCWritebackConversion)
IsStandardConversion - Determines whether there is a standard conversion sequence (C++ [conv],...
static bool DiagnoseTwoPhaseOperatorLookup(Sema &SemaRef, OverloadedOperatorKind Op, SourceLocation OpLoc, ArrayRef< Expr * > Args)
Attempt to recover from ill-formed use of a non-dependent operator in a template, where the non-depen...
static bool isNonTrivialObjCLifetimeConversion(Qualifiers FromQuals, Qualifiers ToQuals)
Determine whether the lifetime conversion between the two given qualifiers sets is nontrivial.
static void DiagnoseBadConversion(Sema &S, OverloadCandidate *Cand, unsigned I, bool TakingCandidateAddress)
static bool completeFunctionType(Sema &S, FunctionDecl *FD, SourceLocation Loc, bool Complain=true)
static bool shouldAddReversedEqEq(Sema &S, SourceLocation OpLoc, Expr *FirstOperand, FunctionDecl *EqFD)
static bool isFunctionAlwaysEnabled(const ASTContext &Ctx, const FunctionDecl *FD)
static bool PrepareExplicitObjectArgument(Sema &S, CXXMethodDecl *Method, Expr *Object, MultiExprArg &Args, SmallVectorImpl< Expr * > &NewArgs)
static OverloadingResult IsInitializerListConstructorConversion(Sema &S, Expr *From, QualType ToType, CXXRecordDecl *To, UserDefinedConversionSequence &User, OverloadCandidateSet &CandidateSet, bool AllowExplicit)
static bool checkAddressOfCandidateIsAvailable(Sema &S, const FunctionDecl *FD)
static bool IsFloatingPointConversion(Sema &S, QualType FromType, QualType ToType)
Determine whether the conversion from FromType to ToType is a valid floating point conversion.
static bool isFirstArgumentCompatibleWithType(ASTContext &Context, CXXConstructorDecl *Constructor, QualType Type)
static Comparison isBetterMultiversionCandidate(const OverloadCandidate &Cand1, const OverloadCandidate &Cand2)
static void NoteImplicitDeductionGuide(Sema &S, FunctionDecl *Fn)
static void collectViableConversionCandidates(Sema &SemaRef, Expr *From, QualType ToType, UnresolvedSetImpl &ViableConversions, OverloadCandidateSet &CandidateSet)
static ImplicitConversionSequence TryReferenceInit(Sema &S, Expr *Init, QualType DeclType, SourceLocation DeclLoc, bool SuppressUserConversions, bool AllowExplicit)
Compute an implicit conversion sequence for reference initialization.
static bool isNonDependentlyExplicit(FunctionTemplateDecl *FTD)
Determine whether a given function template has a simple explicit specifier or a non-value-dependent ...
static bool checkArgPlaceholdersForOverload(Sema &S, MultiExprArg Args, UnbridgedCastsSet &unbridged)
checkArgPlaceholdersForOverload - Check a set of call operands for placeholders.
static QualType makeQualifiedLValueReferenceType(QualType Base, QualifiersAndAtomic Quals, Sema &S)
static QualType chooseRecoveryType(OverloadCandidateSet &CS, OverloadCandidateSet::iterator *Best)
static void NoteSurrogateCandidate(Sema &S, OverloadCandidate *Cand)
static ExprResult BuildRecoveryCallExpr(Sema &SemaRef, Scope *S, Expr *Fn, UnresolvedLookupExpr *ULE, SourceLocation LParenLoc, MutableArrayRef< Expr * > Args, SourceLocation RParenLoc, bool EmptyLookup, bool AllowTypoCorrection)
Attempts to recover from a call where no functions were found.
static void DiagnoseFailedEnableIfAttr(Sema &S, OverloadCandidate *Cand)
static bool diagnoseDiagnoseIfAttrsWith(Sema &S, const NamedDecl *ND, bool ArgDependent, SourceLocation Loc, CheckFn &&IsSuccessful)
static OverloadingResult IsUserDefinedConversion(Sema &S, Expr *From, QualType ToType, UserDefinedConversionSequence &User, OverloadCandidateSet &Conversions, AllowedExplicit AllowExplicit, bool AllowObjCConversionOnExplicit)
Determines whether there is a user-defined conversion sequence (C++ [over.ics.user]) that converts ex...
static bool IsAcceptableNonMemberOperatorCandidate(ASTContext &Context, FunctionDecl *Fn, ArrayRef< Expr * > Args)
IsAcceptableNonMemberOperatorCandidate - Determine whether Fn is an acceptable non-member overloaded ...
static void DiagnoseBadDeduction(Sema &S, NamedDecl *Found, Decl *Templated, DeductionFailureInfo &DeductionFailure, unsigned NumArgs, bool TakingCandidateAddress)
Diagnose a failed template-argument deduction.
static bool IsTransparentUnionStandardConversion(Sema &S, Expr *From, QualType &ToType, bool InOverloadResolution, StandardConversionSequence &SCS, bool CStyle)
static const FunctionProtoType * tryGetFunctionProtoType(QualType FromType)
Attempts to get the FunctionProtoType from a Type.
static bool PrepareArgumentsForCallToObjectOfClassType(Sema &S, SmallVectorImpl< Expr * > &MethodArgs, CXXMethodDecl *Method, MultiExprArg Args, SourceLocation LParenLoc)
static TemplateDeductionResult DeduceTemplateArguments(Sema &S, TemplateParameterList *TemplateParams, ArrayRef< TemplateArgument > Ps, ArrayRef< TemplateArgument > As, TemplateDeductionInfo &Info, SmallVectorImpl< DeducedTemplateArgument > &Deduced, bool NumberOfArgumentsMustMatch, bool PartialOrdering, PackFold PackFold, bool *HasDeducedAnyParam)
Defines the SourceManager interface.
static QualType getPointeeType(const MemRegion *R)
C Language Family Type Representation.
A class for storing results from argument-dependent lookup.
void erase(NamedDecl *D)
Removes any data associated with a given decl.
llvm::mapped_iterator< decltype(Decls)::iterator, select_second > iterator
APValue - This class implements a discriminated union of [uninitialized] [APSInt] [APFloat],...
std::string getAsString(const ASTContext &Ctx, QualType Ty) const
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
const ConstantArrayType * getAsConstantArrayType(QualType T) const
QualType getAtomicType(QualType T) const
Return the uniqued reference to the atomic type for the specified type.
bool areLaxCompatibleSveTypes(QualType FirstType, QualType SecondType)
Return true if the given vector types are lax-compatible SVE vector types, false otherwise.
QualType getRValueReferenceType(QualType T) const
Return the uniqued reference to the type for an rvalue reference to the specified type.
unsigned getIntWidth(QualType T) const
const FunctionType * adjustFunctionType(const FunctionType *Fn, FunctionType::ExtInfo EInfo)
Change the ExtInfo on a function type.
bool areCompatibleRVVTypes(QualType FirstType, QualType SecondType)
Return true if the given types are an RISC-V vector builtin type and a VectorType that is a fixed-len...
const llvm::fltSemantics & getFloatTypeSemantics(QualType T) const
Return the APFloat 'semantics' for the specified scalar floating point type.
QualType getMemberPointerType(QualType T, const Type *Cls) const
Return the uniqued reference to the type for a member pointer to the specified type in the specified ...
DeclarationNameTable DeclarationNames
QualType getRecordType(const RecordDecl *Decl) const
QualType getArrayParameterType(QualType Ty) const
Return the uniqued reference to a specified array parameter type from the original array type.
CanQualType getCanonicalType(QualType T) const
Return the canonical (structural) type corresponding to the specified potentially non-canonical type ...
bool mergeExtParameterInfo(const FunctionProtoType *FirstFnType, const FunctionProtoType *SecondFnType, bool &CanUseFirst, bool &CanUseSecond, SmallVectorImpl< FunctionProtoType::ExtParameterInfo > &NewParamInfos)
This function merges the ExtParameterInfo lists of two functions.
bool hasSameType(QualType T1, QualType T2) const
Determine whether the given types T1 and T2 are equivalent.
CallingConv getDefaultCallingConvention(bool IsVariadic, bool IsCXXMethod, bool IsBuiltin=false) const
Retrieves the default calling convention for the current target.
QualType getPointerType(QualType T) const
Return the uniqued reference to the type for a pointer to the specified type.
bool canAssignObjCInterfaces(const ObjCObjectPointerType *LHSOPT, const ObjCObjectPointerType *RHSOPT)
canAssignObjCInterfaces - Return true if the two interface types are compatible for assignment from R...
QualType getLValueReferenceType(QualType T, bool SpelledAsLValue=true) const
Return the uniqued reference to the type for an lvalue reference to the specified type.
QualType getTypeDeclType(const TypeDecl *Decl, const TypeDecl *PrevDecl=nullptr) const
Return the unique reference to the type for the specified type declaration.
Builtin::Context & BuiltinInfo
QualType getConstantArrayType(QualType EltTy, const llvm::APInt &ArySize, const Expr *SizeExpr, ArraySizeModifier ASM, unsigned IndexTypeQuals) const
Return the unique reference to the type for a constant array of the specified element type.
const LangOptions & getLangOpts() const
QualType removePtrSizeAddrSpace(QualType T) const
Remove the existing address space on the type if it is a pointer size address space and return the ty...
bool areLaxCompatibleRVVTypes(QualType FirstType, QualType SecondType)
Return true if the given vector types are lax-compatible RISC-V vector types as defined by -flax-vect...
bool canBindObjCObjectType(QualType To, QualType From)
QualType getFunctionTypeWithExceptionSpec(QualType Orig, const FunctionProtoType::ExceptionSpecInfo &ESI) const
Get a function type and produce the equivalent function type with the specified exception specificati...
void forEachMultiversionedFunctionVersion(const FunctionDecl *FD, llvm::function_ref< void(FunctionDecl *)> Pred) const
Visits all versions of a multiversioned function with the passed predicate.
QualType getPointerDiffType() const
Return the unique type for "ptrdiff_t" (C99 7.17) defined in <stddef.h>.
ComparisonCategories CompCategories
Types and expressions required to build C++2a three-way comparisons using operator<=>,...
int getFloatingTypeOrder(QualType LHS, QualType RHS) const
Compare the rank of the two specified floating point types, ignoring the domain of the type (i....
const TargetInfo * getAuxTargetInfo() const
CanQualType UnsignedLongTy
bool hasAnyFunctionEffects() const
QualType getRestrictType(QualType T) const
Return the uniqued reference to the type for a restrict qualified type.
CanQualType getSizeType() const
Return the unique type for "size_t" (C99 7.17), defined in <stddef.h>.
CanQualType BoundMemberTy
QualType getQualifiedType(SplitQualType split) const
Un-split a SplitQualType.
QualType getObjCObjectPointerType(QualType OIT) const
Return a ObjCObjectPointerType type for the given ObjCObjectType.
QualType getObjCIdType() const
Represents the Objective-CC id type.
bool hasSameUnqualifiedType(QualType T1, QualType T2) const
Determine whether the given types are equivalent after cvr-qualifiers have been removed.
const ArrayType * getAsArrayType(QualType T) const
Type Query functions.
bool isSameTemplateParameterList(const TemplateParameterList *X, const TemplateParameterList *Y) const
Determine whether two template parameter lists are similar enough that they may be used in declaratio...
uint64_t getTypeSize(QualType T) const
Return the size of the specified (complete) type T, in bits.
CanQualType UnsignedInt128Ty
CanQualType UnsignedCharTy
CanQualType UnsignedIntTy
QualType getVolatileType(QualType T) const
Return the uniqued reference to the type for a volatile qualified type.
CanQualType UnsignedLongLongTy
QualType getArrayDecayedType(QualType T) const
Return the properly qualified result of decaying the specified array type to a pointer.
CanQualType UnsignedShortTy
QualType getFunctionType(QualType ResultTy, ArrayRef< QualType > Args, const FunctionProtoType::ExtProtoInfo &EPI) const
Return a normal function type with a typed argument list.
bool hasSimilarType(QualType T1, QualType T2) const
Determine if two types are similar, according to the C++ rules.
bool areCompatibleSveTypes(QualType FirstType, QualType SecondType)
Return true if the given types are an SVE builtin and a VectorType that is a fixed-length representat...
QualType getCVRQualifiedType(QualType T, unsigned CVR) const
Return a type with additional const, volatile, or restrict qualifiers.
bool areCompatibleVectorTypes(QualType FirstVec, QualType SecondVec)
Return true if the given vector types are of the same unqualified type or if they are equivalent to t...
const TargetInfo & getTargetInfo() const
bool typesAreCompatible(QualType T1, QualType T2, bool CompareUnqualified=false)
Compatibility predicates used to check assignment expressions.
bool UnwrapSimilarTypes(QualType &T1, QualType &T2, bool AllowPiMismatch=true) const
Attempt to unwrap two types that may be similar (C++ [conv.qual]).
QualType getAddrSpaceQualType(QualType T, LangAS AddressSpace) const
Return the uniqued reference to the type for an address space qualified type with the specified type ...
bool isPromotableIntegerType(QualType T) const
More type predicates useful for type checking/promotion.
QualType getUnqualifiedArrayType(QualType T, Qualifiers &Quals) const
Return this type as a completely-unqualified array type, capturing the qualifiers in Quals.
Represents a constant array type that does not decay to a pointer when used as a function parameter.
QualType getConstantArrayType(const ASTContext &Ctx) const
Represents an array type, per C99 6.7.5.2 - Array Declarators.
QualType getElementType() const
QualType getValueType() const
Gets the type contained by this atomic type, i.e.
Attr - This represents one attribute.
A builtin binary operation expression such as "x + y" or "x <= y".
static OverloadedOperatorKind getOverloadedOperator(Opcode Opc)
Retrieve the overloaded operator kind that corresponds to the given binary opcode.
StringRef getOpcodeStr() const
bool isCompoundAssignmentOp() const
static BinaryOperator * Create(const ASTContext &C, Expr *lhs, Expr *rhs, Opcode opc, QualType ResTy, ExprValueKind VK, ExprObjectKind OK, SourceLocation opLoc, FPOptionsOverride FPFeatures)
This class is used for builtin types like 'int'.
bool isDirectlyAddressable(unsigned ID) const
Determines whether this builtin can have its address taken with no special action required.
BasePaths - Represents the set of paths from a derived class to one of its (direct or indirect) bases...
Represents a C++ constructor within a class.
Represents a C++ conversion function within a class.
bool isExplicit() const
Return true if the declaration is already resolved to be explicit.
QualType getConversionType() const
Returns the type that this conversion function is converting to.
Represents a call to a member function that may be written either with member call syntax (e....
static CXXMemberCallExpr * Create(const ASTContext &Ctx, Expr *Fn, ArrayRef< Expr * > Args, QualType Ty, ExprValueKind VK, SourceLocation RP, FPOptionsOverride FPFeatures, unsigned MinNumArgs=0)
Represents a static or instance method of a struct/union/class.
bool isExplicitObjectMemberFunction() const
[C++2b][dcl.fct]/p7 An explicit object member function is a non-static member function with an explic...
bool isImplicitObjectMemberFunction() const
[C++2b][dcl.fct]/p7 An implicit object member function is a non-static member function without an exp...
QualType getFunctionObjectParameterReferenceType() const
Return the type of the object pointed by this.
RefQualifierKind getRefQualifier() const
Retrieve the ref-qualifier associated with this method.
const CXXRecordDecl * getParent() const
Return the parent of this method declaration, which is the class in which this method is defined.
QualType getThisType() const
Return the type of the this pointer.
bool isMoveAssignmentOperator() const
Determine whether this is a move assignment operator.
Qualifiers getMethodQualifiers() const
QualType getFunctionObjectParameterType() const
static CXXOperatorCallExpr * Create(const ASTContext &Ctx, OverloadedOperatorKind OpKind, Expr *Fn, ArrayRef< Expr * > Args, QualType Ty, ExprValueKind VK, SourceLocation OperatorLoc, FPOptionsOverride FPFeatures, ADLCallKind UsesADL=NotADL)
Represents a C++ struct/union/class.
bool isLambda() const
Determine whether this class describes a lambda function object.
llvm::iterator_range< conversion_iterator > getVisibleConversionFunctions() const
Get all conversion functions visible in current class, including conversion function templates.
bool hasDefinition() const
CXXMethodDecl * getLambdaCallOperator() const
Retrieve the lambda call operator of the closure type if this is a closure type.
A rewritten comparison expression that was originally written using operator syntax.
Represents a C++ nested-name-specifier or a global scope specifier.
bool isEmpty() const
No scope specifier.
void Adopt(NestedNameSpecifierLoc Other)
Adopt an existing nested-name-specifier (with source-range information).
CallExpr - Represents a function call (C99 6.5.2.2, C++ [expr.call]).
static CallExpr * Create(const ASTContext &Ctx, Expr *Fn, ArrayRef< Expr * > Args, QualType Ty, ExprValueKind VK, SourceLocation RParenLoc, FPOptionsOverride FPFeatures, unsigned MinNumArgs=0, ADLCallKind UsesADL=NotADL)
Create a call expression.
FunctionDecl * getDirectCallee()
If the callee is a FunctionDecl, return it. Otherwise return null.
void markDependentForPostponedNameLookup()
Used by Sema to implement MSVC-compatible delayed name lookup.
static CallExpr * CreateTemporary(void *Mem, Expr *Fn, QualType Ty, ExprValueKind VK, SourceLocation RParenLoc, ADLCallKind UsesADL=NotADL)
Create a temporary call expression with no arguments in the memory pointed to by Mem.
bool isAtLeastAsQualifiedAs(CanQual< T > Other, const ASTContext &Ctx) const
Determines whether this canonical type is at least as qualified as the Other canonical type.
static CanQual< Type > CreateUnsafe(QualType Other)
Builds a canonical type from a QualType.
CanProxy< U > castAs() const
CanQual< T > getUnqualifiedType() const
Retrieve the unqualified form of this type.
Qualifiers getQualifiers() const
Retrieve all qualifiers.
CanProxy< U > getAs() const
Retrieve a canonical type pointer with a different static type, upcasting or downcasting as needed.
bool isVolatileQualified() const
const ComparisonCategoryInfo * lookupInfoForType(QualType Ty) const
bool isPartial() const
True iff the comparison is not totally ordered.
bool isStrong() const
True iff the comparison is "strong".
Complex values, per C99 6.2.5p11.
QualType getElementType() const
static CompoundAssignOperator * Create(const ASTContext &C, Expr *lhs, Expr *rhs, Opcode opc, QualType ResTy, ExprValueKind VK, ExprObjectKind OK, SourceLocation opLoc, FPOptionsOverride FPFeatures, QualType CompLHSType=QualType(), QualType CompResultType=QualType())
Represents the canonical version of C arrays with a specified constant size.
static ConstantExpr * Create(const ASTContext &Context, Expr *E, const APValue &Result)
The result of a constraint satisfaction check, containing the necessary information to diagnose an un...
Base class for callback objects used by Sema::CorrectTypo to check the validity of a potential typo c...
A POD class for pairing a NamedDecl* with an access specifier.
static DeclAccessPair make(NamedDecl *D, AccessSpecifier AS)
NamedDecl * getDecl() const
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.
lookup_result lookup(DeclarationName Name) const
lookup - Find the declarations (if any) with the given Name in this context.
DeclContext * getEnclosingNamespaceContext()
Retrieve the nearest enclosing namespace context.
A reference to a declared variable, function, enum, etc.
void setHadMultipleCandidates(bool V=true)
Sets the flag telling whether this expression refers to a function that was resolved from an overload...
Decl - This represents one declaration (or definition), e.g.
TemplateDecl * getDescribedTemplate() const
If this is a declaration that describes some template, this method returns that template declaration.
FriendObjectKind getFriendObjectKind() const
Determines whether this declaration is the object of a friend declaration and, if so,...
ASTContext & getASTContext() const LLVM_READONLY
bool isImplicit() const
isImplicit - Indicates whether the declaration was implicitly generated by the implementation.
void setInvalidDecl(bool Invalid=true)
setInvalidDecl - Indicates the Decl had a semantic error.
const FunctionType * getFunctionType(bool BlocksToo=true) const
Looks through the Decl's underlying type to extract a FunctionType when possible.
unsigned getTemplateDepth() const
Determine the number of levels of template parameter surrounding this declaration.
FunctionDecl * getAsFunction() LLVM_READONLY
Returns the function itself, or the templated function if this is a function template.
bool isInvalidDecl() const
llvm::iterator_range< specific_attr_iterator< T > > specific_attrs() const
SourceLocation getLocation() const
DeclContext * getDeclContext()
AccessSpecifier getAccess() const
specific_attr_iterator< T > specific_attr_end() const
specific_attr_iterator< T > specific_attr_begin() const
void print(raw_ostream &Out, unsigned Indentation=0, bool PrintInstantiation=false) const
DeclContext * getLexicalDeclContext()
getLexicalDeclContext - The declaration context where this Decl was lexically declared (LexicalDC).
DeclarationNameLoc - Additional source/type location info for a declaration name.
The name of a declaration.
TemplateDecl * getCXXDeductionGuideTemplate() const
If this name is the name of a C++ deduction guide, return the template associated with that name.
OverloadedOperatorKind getCXXOverloadedOperator() const
If this name is the name of an overloadable operator in C++ (e.g., operator+), retrieve the kind of o...
NestedNameSpecifier * getQualifier() const
Retrieve the nested-name-specifier that qualifies the name of this declaration, if it was present in ...
SourceLocation getBeginLoc() const LLVM_READONLY
Expr * getTrailingRequiresClause()
Get the constraint-expression introduced by the trailing requires-clause in the function/member decla...
void overloadCandidatesShown(unsigned N)
Call this after showing N overload candidates.
unsigned getNumOverloadCandidatesToShow() const
When a call or operator fails, print out up to this many candidate overloads as suggestions.
OverloadsShown getShowOverloads() const
RAII object that enters a new expression evaluation context.
bool isScoped() const
Returns true if this is a C++11 scoped enumeration.
A helper class that allows the use of isa/cast/dyncast to detect TagType objects of enums.
EnumDecl * getDecl() const
Store information needed for an explicit specifier.
bool isExplicit() const
Determine whether this specifier is known to correspond to an explicit declaration.
const Expr * getExpr() const
static ExplicitSpecifier getFromDecl(FunctionDecl *Function)
static ExprWithCleanups * Create(const ASTContext &C, EmptyShell empty, unsigned numObjects)
The return type of classify().
static Classification makeSimpleLValue()
Create a simple, modifiable lvalue.
This represents one expression.
Expr * IgnoreParenCasts() LLVM_READONLY
Skip past any parentheses and casts which might surround this expression until reaching a fixed point...
bool isValueDependent() const
Determines whether the value of this expression depends on.
ExprValueKind getValueKind() const
getValueKind - The value kind that this expression produces.
bool isTypeDependent() const
Determines whether the type of this expression depends on.
llvm::APSInt EvaluateKnownConstInt(const ASTContext &Ctx, SmallVectorImpl< PartialDiagnosticAt > *Diag=nullptr) const
EvaluateKnownConstInt - Call EvaluateAsRValue and return the folded integer.
Expr * IgnoreParens() LLVM_READONLY
Skip past any parentheses which might surround this expression until reaching a fixed point.
static bool hasAnyTypeDependentArguments(ArrayRef< Expr * > Exprs)
hasAnyTypeDependentArguments - Determines if any of the expressions in Exprs is type-dependent.
FieldDecl * getSourceBitField()
If this expression refers to a bit-field, retrieve the declaration of that bit-field.
@ NPC_ValueDependentIsNull
Specifies that a value-dependent expression of integral or dependent type should be considered a null...
@ NPC_ValueDependentIsNotNull
Specifies that a value-dependent expression should be considered to never be a null pointer constant.
ExprObjectKind getObjectKind() const
getObjectKind - The object kind that this expression produces.
bool EvaluateAsConstantExpr(EvalResult &Result, const ASTContext &Ctx, ConstantExprKind Kind=ConstantExprKind::Normal) const
Evaluate an expression that is required to be a constant expression.
bool isIntegerConstantExpr(const ASTContext &Ctx, SourceLocation *Loc=nullptr) const
@ NPCK_ZeroExpression
Expression is a Null pointer constant built from a zero integer expression that is not a simple,...
NullPointerConstantKind isNullPointerConstant(ASTContext &Ctx, NullPointerConstantValueDependence NPC) const
isNullPointerConstant - C99 6.3.2.3p3 - Test if this reduces down to a Null pointer constant.
SourceLocation getExprLoc() const LLVM_READONLY
getExprLoc - Return the preferred location for the arrow when diagnosing a problem with a generic exp...
bool refersToBitField() const
Returns true if this expression is a gl-value that potentially refers to a bit-field.
Classification Classify(ASTContext &Ctx) const
Classify - Classify this expression according to the C++11 expression taxonomy.
bool hasPlaceholderType() const
Returns whether this expression has a placeholder type.
static ExprValueKind getValueKindForType(QualType T)
getValueKindForType - Given a formal return or parameter type, give its value kind.
ExtVectorType - Extended vector type.
Represents difference between two FPOptions values.
Represents a member of a struct/union/class.
Annotates a diagnostic with some code that should be inserted, removed, or replaced to fix the proble...
static FixItHint CreateReplacement(CharSourceRange RemoveRange, StringRef Code)
Create a code modification hint that replaces the given source range with the given code string.
static FixItHint CreateInsertion(SourceLocation InsertionLoc, StringRef Code, bool BeforePreviousInsertions=false)
Create a code modification hint that inserts the given code string at a specific location.
Represents a function declaration or definition.
bool isMultiVersion() const
True if this function is considered a multiversioned function.
const ParmVarDecl * getParamDecl(unsigned i) const
unsigned getMinRequiredArguments() const
Returns the minimum number of arguments needed to call this function.
FunctionTemplateDecl * getDescribedFunctionTemplate() const
Retrieves the function template that is described by this function declaration.
unsigned getBuiltinID(bool ConsiderWrapperFunctions=false) const
Returns a value indicating whether this function corresponds to a builtin function.
param_iterator param_end()
bool isMemberLikeConstrainedFriend() const
Determine whether a function is a friend function that cannot be redeclared outside of its class,...
bool hasCXXExplicitFunctionObjectParameter() const
QualType getReturnType() const
ArrayRef< ParmVarDecl * > parameters() const
FunctionDecl * getTemplateInstantiationPattern(bool ForDefinition=true) const
Retrieve the function declaration from which this function could be instantiated, if it is an instant...
FunctionTemplateDecl * getPrimaryTemplate() const
Retrieve the primary template that this function template specialization either specializes or was in...
param_iterator param_begin()
bool isVariadic() const
Whether this function is variadic.
DependentFunctionTemplateSpecializationInfo * getDependentSpecializationInfo() const
bool isDeleted() const
Whether this function has been deleted.
const TemplateArgumentList * getTemplateSpecializationArgs() const
Retrieve the template arguments used to produce this function template specialization from the primar...
bool isMSVCRTEntryPoint() const
Determines whether this function is a MSVCRT user defined entry point.
bool isTemplateInstantiation() const
Determines if the given function was instantiated from a function template.
unsigned getNumNonObjectParams() const
bool isConstexpr() const
Whether this is a (C++11) constexpr function or constexpr constructor.
bool isMain() const
Determines whether this function is "main", which is the entry point into an executable program.
bool isDefaulted() const
Whether this function is defaulted.
SourceRange getSourceRange() const override LLVM_READONLY
Source range that this declaration covers.
OverloadedOperatorKind getOverloadedOperator() const
getOverloadedOperator - Which C++ overloaded operator this function represents, if any.
TemplateSpecializationKind getTemplateSpecializationKind() const
Determine what kind of template instantiation this function represents.
bool isTargetMultiVersion() const
True if this function is a multiversioned dispatch function as a part of the target functionality.
QualType getDeclaredReturnType() const
Get the declared return type, which may differ from the actual return type if the return type is dedu...
bool isTargetMultiVersionDefault() const
True if this function is the default version of a multiversioned dispatch function as a part of the t...
unsigned getNumParams() const
Return the number of parameters this function must have based on its FunctionType.
bool willHaveBody() const
True if this function will eventually have a body, once it's fully parsed.
Represents a prototype with parameter type info, e.g.
ExtParameterInfo getExtParameterInfo(unsigned I) const
unsigned getNumParams() const
Qualifiers getMethodQuals() const
QualType getParamType(unsigned i) const
bool isVariadic() const
Whether this function prototype is variadic.
ArrayRef< QualType > param_types() const
Declaration of a template function.
FunctionDecl * getTemplatedDecl() const
Get the underlying function declaration of the template.
A class which abstracts out some details necessary for making a call.
ExtInfo withNoReturn(bool noReturn) const
ParameterABI getABI() const
Return the ABI treatment of this parameter.
FunctionType - C99 6.7.5.3 - Function Declarators.
ExtInfo getExtInfo() const
CallingConv getCallConv() const
QualType getReturnType() const
QualType getCallResultType(const ASTContext &Context) const
Determine the type of an expression that calls a function of this type.
static GenericSelectionExpr * Create(const ASTContext &Context, SourceLocation GenericLoc, Expr *ControllingExpr, ArrayRef< TypeSourceInfo * > AssocTypes, ArrayRef< Expr * > AssocExprs, SourceLocation DefaultLoc, SourceLocation RParenLoc, bool ContainsUnexpandedParameterPack, unsigned ResultIndex)
Create a non-result-dependent generic selection expression accepting an expression predicate.
One of these records is kept for each identifier that is lexed.
ImplicitCastExpr - Allows us to explicitly represent implicit type conversions, which have no direct ...
static ImplicitCastExpr * Create(const ASTContext &Context, QualType T, CastKind Kind, Expr *Operand, const CXXCastPath *BasePath, ExprValueKind Cat, FPOptionsOverride FPO)
ImplicitConversionSequence - Represents an implicit conversion sequence, which may be a standard conv...
void dump() const
dump - Print this implicit conversion sequence to standard error.
bool isUserDefined() const
@ StaticObjectArgumentConversion
StandardConversionSequence Standard
When ConversionKind == StandardConversion, provides the details of the standard conversion sequence.
void setBad(BadConversionSequence::FailureKind Failure, Expr *FromExpr, QualType ToType)
Sets this sequence as a bad conversion for an explicit argument.
UserDefinedConversionSequence UserDefined
When ConversionKind == UserDefinedConversion, provides the details of the user-defined conversion seq...
static ImplicitConversionSequence getNullptrToBool(QualType SourceType, QualType DestType, bool NeedLValToRVal)
Form an "implicit" conversion sequence from nullptr_t to bool, for a direct-initialization of a bool ...
AmbiguousConversionSequence Ambiguous
When ConversionKind == AmbiguousConversion, provides the details of the ambiguous conversion.
bool hasInitializerListContainerType() const
unsigned getKindRank() const
Return a ranking of the implicit conversion sequence kind, where smaller ranks represent better conve...
bool isInitializerListOfIncompleteArray() const
BadConversionSequence Bad
When ConversionKind == BadConversion, provides the details of the bad conversion.
QualType getInitializerListContainerType() const
void DiagnoseAmbiguousConversion(Sema &S, SourceLocation CaretLoc, const PartialDiagnostic &PDiag) const
Diagnoses an ambiguous conversion.
Describes an C or C++ initializer list.
bool hasDesignatedInit() const
Determine whether this initializer list contains a designated initializer.
unsigned getNumInits() const
SourceLocation getBeginLoc() const LLVM_READONLY
const Expr * getInit(unsigned Init) const
SourceLocation getEndLoc() const LLVM_READONLY
Describes an entity that is being initialized.
static InitializedEntity InitializeParameter(ASTContext &Context, ParmVarDecl *Parm)
Create the initialization entity for a parameter.
static InitializedEntity InitializeTemplateParameter(QualType T, NonTypeTemplateParmDecl *Param)
Create the initialization entity for a template parameter.
static IntegerLiteral * Create(const ASTContext &C, const llvm::APInt &V, QualType type, SourceLocation l)
Returns a new integer literal with value 'V' and type 'type'.
An lvalue reference type, per C++11 [dcl.ref].
bool isCompatibleWithMSVC(MSVCMajorVersion MajorVersion) const
Represents the results of name lookup.
void addAllDecls(const LookupResult &Other)
Add all the declarations from another set of lookup results.
LLVM_ATTRIBUTE_REINITIALIZES void clear()
Clears out any current state.
DeclClass * getAsSingle() const
void addDecl(NamedDecl *D)
Add a declaration to these results with its natural access.
bool empty() const
Return true if no decls were found.
void resolveKind()
Resolves the result kind of the lookup, possibly hiding decls.
SourceLocation getNameLoc() const
Gets the location of the identifier.
Sema::LookupNameKind getLookupKind() const
Gets the kind of lookup to perform.
void suppressAccessDiagnostics()
Suppress the diagnostics that would normally fire because of this lookup due to access control violat...
const UnresolvedSetImpl & asUnresolvedSet() const
void suppressDiagnostics()
Suppress the diagnostics that would normally fire because of this lookup.
DeclarationName getLookupName() const
Gets the name to look up.
MemberExpr - [C99 6.5.2.3] Structure and Union Members.
SourceLocation getMemberLoc() const
getMemberLoc - Return the location of the "member", in X->F, it is the location of 'F'.
ValueDecl * getMemberDecl() const
Retrieve the member declaration to which this expression refers.
bool hasQualifier() const
Determines whether this member expression actually had a C++ nested-name-specifier prior to the name ...
bool performsVirtualDispatch(const LangOptions &LO) const
Returns true if virtual dispatch is performed.
NestedNameSpecifier * getQualifier() const
If the member name was qualified, retrieves the nested-name-specifier that precedes the member name.
SourceLocation getBeginLoc() const LLVM_READONLY
SourceLocation getExprLoc() const LLVM_READONLY
DeclAccessPair getFoundDecl() const
Retrieves the declaration found by lookup.
A pointer to member type per C++ 8.3.3 - Pointers to members.
QualType getPointeeType() const
const Type * getClass() const
Describes a module or submodule.
std::string getFullModuleName(bool AllowStringLiterals=false) const
Retrieve the full name of this module, including the path from its top-level module.
This represents a decl that may have a name.
StringRef getName() const
Get the name of identifier for this declaration as a StringRef.
DeclarationName getDeclName() const
Get the actual, stored name of the declaration, which may be a special name.
std::string getQualifiedNameAsString() const
Linkage getFormalLinkage() const
Get the linkage from a semantic point of view.
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.
Represents a C++ nested name specifier, such as "\::std::vector<int>::".
NonTypeTemplateParmDecl - Declares a non-type template parameter, e.g., "Size" in.
Represents an ObjC class declaration.
Interfaces are the core concept in Objective-C for object oriented design.
ObjCMethodDecl - Represents an instance or class method declaration.
ArrayRef< ParmVarDecl * > parameters() const
unsigned param_size() const
Represents a pointer to an Objective C object.
bool isSpecialized() const
Whether this type is specialized, meaning that it has type arguments.
bool isObjCIdType() const
True if this is equivalent to the 'id' type, i.e.
QualType getPointeeType() const
Gets the type pointed to by this ObjC pointer.
ObjCInterfaceDecl * getInterfaceDecl() const
If this pointer points to an Objective @interface type, gets the declaration for that interface.
const ObjCInterfaceType * getInterfaceType() const
If this pointer points to an Objective C @interface type, gets the type for that interface.
bool isObjCClassType() const
True if this is equivalent to the 'Class' type, i.e.
OpaqueValueExpr - An expression referring to an opaque object of a fixed type and value class.
OverloadCandidateSet - A set of overload candidates, used in C++ overload resolution (C++ 13....
void clear(CandidateSetKind CSK)
Clear out all of the candidates.
bool isNewCandidate(Decl *F, OverloadCandidateParamOrder PO=OverloadCandidateParamOrder::Normal)
Determine when this overload candidate will be new to the overload set.
ConversionSequenceList allocateConversionSequences(unsigned NumConversions)
Allocate storage for conversion sequences for NumConversions conversions.
OperatorRewriteInfo getRewriteInfo() const
@ CSK_AddressOfOverloadSet
C++ [over.match.call.general] Resolve a call through the address of an overload set.
@ CSK_InitByConstructor
C++ [over.match.ctor], [over.match.list] Initialization of an object of class type by constructor,...
@ CSK_InitByUserDefinedConversion
C++ [over.match.copy]: Copy-initialization of an object of class type by user-defined conversion.
@ CSK_Normal
Normal lookup.
@ CSK_Operator
C++ [over.match.oper]: Lookup of operator function candidates in a call using operator syntax.
SmallVectorImpl< OverloadCandidate >::iterator iterator
void NoteCandidates(PartialDiagnosticAt PA, Sema &S, OverloadCandidateDisplayKind OCD, ArrayRef< Expr * > Args, StringRef Opc="", SourceLocation Loc=SourceLocation(), llvm::function_ref< bool(OverloadCandidate &)> Filter=[](OverloadCandidate &) { return true;})
When overload resolution fails, prints diagnostic messages containing the candidates in the candidate...
bool shouldDeferDiags(Sema &S, ArrayRef< Expr * > Args, SourceLocation OpLoc)
Whether diagnostics should be deferred.
OverloadingResult BestViableFunction(Sema &S, SourceLocation Loc, OverloadCandidateSet::iterator &Best)
Find the best viable function on this overload set, if it exists.
void exclude(Decl *F)
Exclude a function from being considered by overload resolution.
SourceLocation getLocation() const
OverloadCandidate & addCandidate(unsigned NumConversions=0, ConversionSequenceList Conversions={})
Add a new candidate with NumConversions conversion sequence slots to the overload set.
CandidateSetKind getKind() const
SmallVector< OverloadCandidate *, 32 > CompleteCandidates(Sema &S, OverloadCandidateDisplayKind OCD, ArrayRef< Expr * > Args, SourceLocation OpLoc=SourceLocation(), llvm::function_ref< bool(OverloadCandidate &)> Filter=[](OverloadCandidate &) { return true;})
A reference to an overloaded function set, either an UnresolvedLookupExpr or an UnresolvedMemberExpr.
NestedNameSpecifier * getQualifier() const
Fetches the nested-name qualifier, if one was given.
bool hasExplicitTemplateArgs() const
Determines whether this expression had explicit template arguments.
static FindResult find(Expr *E)
Finds the overloaded expression in the given expression E of OverloadTy.
SourceLocation getNameLoc() const
Gets the location of the name.
decls_iterator decls_begin() const
unsigned getNumDecls() const
Gets the number of declarations in the unresolved set.
SourceLocation getTemplateKeywordLoc() const
Retrieve the location of the template keyword preceding this name, if any.
NestedNameSpecifierLoc getQualifierLoc() const
Fetches the nested-name qualifier with source-location information, if one was given.
void copyTemplateArgumentsInto(TemplateArgumentListInfo &List) const
Copies the template arguments into the given structure.
decls_iterator decls_end() const
DeclarationName getName() const
Gets the name looked up.
A single parameter index whose accessors require each use to make explicit the parameter index encodi...
ParenExpr - This represents a parenthesized expression, e.g.
Represents a parameter to a function.
PointerType - C99 6.7.5.1 - Pointer Declarators.
QualType getPointeeType() const
static PseudoObjectExpr * Create(const ASTContext &Context, Expr *syntactic, ArrayRef< Expr * > semantic, unsigned resultIndex)
A (possibly-)qualified type.
bool isVolatileQualified() const
Determine whether this type is volatile-qualified.
bool isRestrictQualified() const
Determine whether this type is restrict-qualified.
bool hasQualifiers() const
Determine whether this type has any qualifiers.
QualType getNonLValueExprType(const ASTContext &Context) const
Determine the type of a (typically non-lvalue) expression with the specified result type.
QualType getLocalUnqualifiedType() const
Return this type with all of the instance-specific qualifiers removed, but without removing any quali...
void addConst()
Add the const type qualifier to this QualType.
bool isNull() const
Return true if this QualType doesn't point to a type yet.
const Type * getTypePtr() const
Retrieves a pointer to the underlying (unqualified) type.
LangAS getAddressSpace() const
Return the address space of this type.
Qualifiers getQualifiers() const
Retrieve the set of qualifiers applied to this type.
void getAsStringInternal(std::string &Str, const PrintingPolicy &Policy) const
QualType getNonReferenceType() const
If Type is a reference type (e.g., const int&), returns the type that the reference refers to ("const...
QualType getUnqualifiedType() const
Retrieve the unqualified variant of the given type, removing as little sugar as possible.
unsigned getLocalCVRQualifiers() const
Retrieve the set of CVR (const-volatile-restrict) qualifiers local to this particular QualType instan...
bool isMoreQualifiedThan(QualType Other, const ASTContext &Ctx) const
Determine whether this type is more qualified than the other given type, requiring exact equality for...
bool isConstQualified() const
Determine whether this type is const-qualified.
bool hasAddressSpace() const
Check if this type has any address space qualifier.
unsigned getCVRQualifiers() const
Retrieve the set of CVR (const-volatile-restrict) qualifiers applied to this type.
static std::string getAsString(SplitQualType split, const PrintingPolicy &Policy)
bool isAtLeastAsQualifiedAs(QualType Other, const ASTContext &Ctx) const
Determine whether this type is at least as qualified as the other given type, requiring exact equalit...
Qualifiers getLocalQualifiers() const
Retrieve the set of qualifiers local to this particular QualType instance, not including any qualifie...
A qualifier set is used to build a set of qualifiers.
const Type * strip(QualType type)
Collect any qualifiers on the given type and return an unqualified type.
QualType apply(const ASTContext &Context, QualType QT) const
Apply the collected qualifiers to the given type.
QualifiersAndAtomic withVolatile()
QualifiersAndAtomic withAtomic()
The collection of all-type qualifiers we support.
unsigned getCVRQualifiers() const
bool hasOnlyConst() const
@ OCL_ExplicitNone
This object can be modified without requiring retains or releases.
void removeObjCLifetime()
bool compatiblyIncludes(Qualifiers other, const ASTContext &Ctx) const
Determines if these qualifiers compatibly include another set.
static bool isAddressSpaceSupersetOf(LangAS A, LangAS B, const ASTContext &Ctx)
Returns true if address space A is equal to or a superset of B.
void removeAddressSpace()
void setAddressSpace(LangAS space)
bool hasObjCGCAttr() const
ObjCLifetime getObjCLifetime() const
std::string getAsString() const
LangAS getAddressSpace() const
bool compatiblyIncludesObjCLifetime(Qualifiers other) const
Determines if these qualifiers compatibly include another set of qualifiers from the narrow perspecti...
An rvalue reference type, per C++11 [dcl.ref].
Represents a struct/union/class.
field_range fields() const
A helper class that allows the use of isa/cast/dyncast to detect TagType objects of structs/unions/cl...
RecordDecl * getDecl() const
Base for LValueReferenceType and RValueReferenceType.
QualType getPointeeType() const
Scope - A scope is a transient data structure that is used while parsing the program.
Smart pointer class that efficiently represents Objective-C method names.
unsigned getNumArgs() const
SemaDiagnosticBuilder Diag(SourceLocation Loc, unsigned DiagID, bool DeferHint=false)
Emit a diagnostic.
PartialDiagnostic PDiag(unsigned DiagID=0)
Build a partial diagnostic.
bool IsAllowedCall(const FunctionDecl *Caller, const FunctionDecl *Callee)
Determines whether Caller may invoke Callee, based on their CUDA host/device attributes.
CUDAFunctionTarget IdentifyTarget(const FunctionDecl *D, bool IgnoreImplicitHDAttr=false)
Determines whether the given function is a CUDA device/host/kernel/etc.
bool inferTargetForImplicitSpecialMember(CXXRecordDecl *ClassDecl, CXXSpecialMemberKind CSM, CXXMethodDecl *MemberDecl, bool ConstRHS, bool Diagnose)
Given a implicit special member, infer its CUDA target from the calls it needs to make to underlying ...
static bool isImplicitHostDeviceFunction(const FunctionDecl *D)
void EraseUnwantedMatches(const FunctionDecl *Caller, llvm::SmallVectorImpl< std::pair< DeclAccessPair, FunctionDecl * > > &Matches)
Finds a function in Matches with highest calling priority from Caller context and erases all function...
CUDAFunctionPreference IdentifyPreference(const FunctionDecl *Caller, const FunctionDecl *Callee)
Identifies relative preference of a given Caller/Callee combination, based on their host/device attri...
bool isObjCWritebackConversion(QualType FromType, QualType ToType, QualType &ConvertedType)
Determine whether this is an Objective-C writeback conversion, used for parameter passing when perfor...
Expr * stripARCUnbridgedCast(Expr *e)
stripARCUnbridgedCast - Given an expression of ARCUnbridgedCast type, remove the placeholder cast.
Abstract base class used to perform a contextual implicit conversion from an expression to any type p...
virtual SemaDiagnosticBuilder noteAmbiguous(Sema &S, CXXConversionDecl *Conv, QualType ConvTy)=0
Emits a note for one of the candidate conversions.
virtual SemaDiagnosticBuilder diagnoseNoMatch(Sema &S, SourceLocation Loc, QualType T)=0
Emits a diagnostic complaining that the expression does not have integral or enumeration type.
virtual SemaDiagnosticBuilder noteExplicitConv(Sema &S, CXXConversionDecl *Conv, QualType ConvTy)=0
Emits a note for the explicit conversion function.
virtual SemaDiagnosticBuilder diagnoseExplicitConv(Sema &S, SourceLocation Loc, QualType T, QualType ConvTy)=0
Emits a diagnostic when the only matching conversion function is explicit.
virtual SemaDiagnosticBuilder diagnoseConversion(Sema &S, SourceLocation Loc, QualType T, QualType ConvTy)=0
Emits a diagnostic when we picked a conversion function (for cases when we are not allowed to pick a ...
virtual SemaDiagnosticBuilder diagnoseAmbiguous(Sema &S, SourceLocation Loc, QualType T)=0
Emits a diagnostic when there are multiple possible conversion functions.
virtual bool match(QualType T)=0
Determine whether the specified type is a valid destination type for this conversion.
virtual SemaDiagnosticBuilder diagnoseIncomplete(Sema &S, SourceLocation Loc, QualType T)=0
Emits a diagnostic when the expression has incomplete class type.
For a defaulted function, the kind of defaulted function that it is.
bool isSpecialMember() const
bool isComparison() const
CXXSpecialMemberKind asSpecialMember() const
RAII class to control scope of DeferDiags.
bool match(QualType T) override
Match an integral or (possibly scoped) enumeration type.
RAII class used to determine whether SFINAE has trapped any errors that occur during template argumen...
bool hasErrorOccurred() const
Determine whether any SFINAE errors have been trapped.
Sema - This implements semantic analysis and AST building for C.
ExprResult PerformImplicitObjectArgumentInitialization(Expr *From, NestedNameSpecifier *Qualifier, NamedDecl *FoundDecl, CXXMethodDecl *Method)
PerformObjectArgumentInitialization - Perform initialization of the implicit object parameter for the...
QualType getCurrentThisType()
Try to retrieve the type of the 'this' pointer.
bool diagnoseArgDependentDiagnoseIfAttrs(const FunctionDecl *Function, const Expr *ThisArg, ArrayRef< const Expr * > Args, SourceLocation Loc)
Emit diagnostics for the diagnose_if attributes on Function, ignoring any non-ArgDependent DiagnoseIf...
ExprResult PerformContextuallyConvertToObjCPointer(Expr *From)
PerformContextuallyConvertToObjCPointer - Perform a contextual conversion of the expression From to a...
bool buildOverloadedCallSet(Scope *S, Expr *Fn, UnresolvedLookupExpr *ULE, MultiExprArg Args, SourceLocation RParenLoc, OverloadCandidateSet *CandidateSet, ExprResult *Result)
Constructs and populates an OverloadedCandidateSet from the given function.
bool IsBuildingRecoveryCallExpr
Flag indicating if Sema is building a recovery call expression.
bool IsOverload(FunctionDecl *New, FunctionDecl *Old, bool UseMemberUsingDeclRules, bool ConsiderCudaAttrs=true)
@ LookupOrdinaryName
Ordinary name lookup, which finds ordinary names (functions, variables, typedefs, etc....
@ LookupOperatorName
Look up of an operator name (e.g., operator+) for use with operator overloading.
@ LookupMemberName
Member name lookup, which finds the names of class/struct/union members.
bool DiagnoseEmptyLookup(Scope *S, CXXScopeSpec &SS, LookupResult &R, CorrectionCandidateCallback &CCC, TemplateArgumentListInfo *ExplicitTemplateArgs=nullptr, ArrayRef< Expr * > Args={}, DeclContext *LookupCtx=nullptr, TypoExpr **Out=nullptr)
Diagnose an empty lookup.
ImplicitConversionSequence TryImplicitConversion(Expr *From, QualType ToType, bool SuppressUserConversions, AllowedExplicit AllowExplicit, bool InOverloadResolution, bool CStyle, bool AllowObjCWritebackConversion)
ExprResult BuildLiteralOperatorCall(LookupResult &R, DeclarationNameInfo &SuffixInfo, ArrayRef< Expr * > Args, SourceLocation LitEndLoc, TemplateArgumentListInfo *ExplicitTemplateArgs=nullptr)
BuildLiteralOperatorCall - Build a UserDefinedLiteral by creating a call to a literal operator descri...
bool IsStringInit(Expr *Init, const ArrayType *AT)
ExprResult CreateOverloadedArraySubscriptExpr(SourceLocation LLoc, SourceLocation RLoc, Expr *Base, MultiExprArg Args)
void LookupOverloadedBinOp(OverloadCandidateSet &CandidateSet, OverloadedOperatorKind Op, const UnresolvedSetImpl &Fns, ArrayRef< Expr * > Args, bool RequiresADL=true)
Perform lookup for an overloaded binary operator.
void AddConversionCandidate(CXXConversionDecl *Conversion, DeclAccessPair FoundDecl, CXXRecordDecl *ActingContext, Expr *From, QualType ToType, OverloadCandidateSet &CandidateSet, bool AllowObjCConversionOnExplicit, bool AllowExplicit, bool AllowResultConversion=true)
AddConversionCandidate - Add a C++ conversion function as a candidate in the candidate set (C++ [over...
bool TemplateParameterListsAreEqual(const TemplateCompareNewDeclInfo &NewInstFrom, TemplateParameterList *New, const NamedDecl *OldInstFrom, TemplateParameterList *Old, bool Complain, TemplateParameterListEqualKind Kind, SourceLocation TemplateArgLoc=SourceLocation())
Determine whether the given template parameter lists are equivalent.
ReferenceCompareResult
ReferenceCompareResult - Expresses the result of comparing two types (cv1 T1 and cv2 T2) to determine...
@ Ref_Incompatible
Ref_Incompatible - The two types are incompatible, so direct reference binding is not possible.
@ Ref_Compatible
Ref_Compatible - The two types are reference-compatible.
@ Ref_Related
Ref_Related - The two types are reference-related, which means that their unqualified forms (T1 and T...
void AddTemplateConversionCandidate(FunctionTemplateDecl *FunctionTemplate, DeclAccessPair FoundDecl, CXXRecordDecl *ActingContext, Expr *From, QualType ToType, OverloadCandidateSet &CandidateSet, bool AllowObjCConversionOnExplicit, bool AllowExplicit, bool AllowResultConversion=true)
Adds a conversion function template specialization candidate to the overload set, using template argu...
FunctionDecl * getMoreConstrainedFunction(FunctionDecl *FD1, FunctionDecl *FD2)
Returns the more constrained function according to the rules of partial ordering by constraints (C++ ...
void AddBuiltinCandidate(QualType *ParamTys, ArrayRef< Expr * > Args, OverloadCandidateSet &CandidateSet, bool IsAssignmentOperator=false, unsigned NumContextualBoolArguments=0)
AddBuiltinCandidate - Add a candidate for a built-in operator.
void AddArgumentDependentLookupCandidates(DeclarationName Name, SourceLocation Loc, ArrayRef< Expr * > Args, TemplateArgumentListInfo *ExplicitTemplateArgs, OverloadCandidateSet &CandidateSet, bool PartialOverloading=false)
Add function candidates found via argument-dependent lookup to the set of overloading candidates.
ExprResult EvaluateConvertedConstantExpression(Expr *E, QualType T, APValue &Value, CCEKind CCE, bool RequireInt, const APValue &PreNarrowingValue)
EvaluateConvertedConstantExpression - Evaluate an Expression That is a converted constant expression ...
FPOptionsOverride CurFPFeatureOverrides()
ExprResult BuildOverloadedArrowExpr(Scope *S, Expr *Base, SourceLocation OpLoc, bool *NoArrowOperatorFound=nullptr)
BuildOverloadedArrowExpr - Build a call to an overloaded operator-> (if one exists),...
ExprResult BuildCallToMemberFunction(Scope *S, Expr *MemExpr, SourceLocation LParenLoc, MultiExprArg Args, SourceLocation RParenLoc, Expr *ExecConfig=nullptr, bool IsExecConfig=false, bool AllowRecovery=false)
BuildCallToMemberFunction - Build a call to a member function.
FunctionDecl * getCurFunctionDecl(bool AllowLambda=false) const
Returns a pointer to the innermost enclosing function, or nullptr if the current context is not insid...
ExprResult PerformContextualImplicitConversion(SourceLocation Loc, Expr *FromE, ContextualImplicitConverter &Converter)
Perform a contextual implicit conversion.
bool DeduceReturnType(FunctionDecl *FD, SourceLocation Loc, bool Diagnose=true)
bool IsQualificationConversion(QualType FromType, QualType ToType, bool CStyle, bool &ObjCLifetimeConversion)
IsQualificationConversion - Determines whether the conversion from an rvalue of type FromType to ToTy...
DiagnosticsEngine & getDiagnostics() const
bool checkAddressOfFunctionIsAvailable(const FunctionDecl *Function, bool Complain=false, SourceLocation Loc=SourceLocation())
Returns whether the given function's address can be taken or not, optionally emitting a diagnostic if...
bool isObjCPointerConversion(QualType FromType, QualType ToType, QualType &ConvertedType, bool &IncompatibleObjC)
isObjCPointerConversion - Determines whether this is an Objective-C pointer conversion.
FunctionDecl * ResolveAddressOfOverloadedFunction(Expr *AddressOfExpr, QualType TargetType, bool Complain, DeclAccessPair &Found, bool *pHadMultipleCandidates=nullptr)
ResolveAddressOfOverloadedFunction - Try to resolve the address of an overloaded function (C++ [over....
bool FunctionParamTypesAreEqual(ArrayRef< QualType > Old, ArrayRef< QualType > New, unsigned *ArgPos=nullptr, bool Reversed=false)
FunctionParamTypesAreEqual - This routine checks two function proto types for equality of their param...
ASTContext & getASTContext() const
UnresolvedSetIterator getMostSpecialized(UnresolvedSetIterator SBegin, UnresolvedSetIterator SEnd, TemplateSpecCandidateSet &FailedCandidates, SourceLocation Loc, const PartialDiagnostic &NoneDiag, const PartialDiagnostic &AmbigDiag, const PartialDiagnostic &CandidateDiag, bool Complain=true, QualType TargetType=QualType())
Retrieve the most specialized of the given function template specializations.
bool IsIntegralPromotion(Expr *From, QualType FromType, QualType ToType)
IsIntegralPromotion - Determines whether the conversion from the expression From (whose potentially-a...
bool IsFloatingPointPromotion(QualType FromType, QualType ToType)
IsFloatingPointPromotion - Determines whether the conversion from FromType to ToType is a floating po...
ExprResult BuildTemplateIdExpr(const CXXScopeSpec &SS, SourceLocation TemplateKWLoc, LookupResult &R, bool RequiresADL, const TemplateArgumentListInfo *TemplateArgs)
ExprResult CreateOverloadedBinOp(SourceLocation OpLoc, BinaryOperatorKind Opc, const UnresolvedSetImpl &Fns, Expr *LHS, Expr *RHS, bool RequiresADL=true, bool AllowRewrittenCandidates=true, FunctionDecl *DefaultedFn=nullptr)
Create a binary operation that may resolve to an overloaded operator.
ExprResult ImpCastExprToType(Expr *E, QualType Type, CastKind CK, ExprValueKind VK=VK_PRValue, const CXXCastPath *BasePath=nullptr, CheckedConversionKind CCK=CheckedConversionKind::Implicit)
ImpCastExprToType - If Expr is not of type 'Type', insert an implicit cast.
bool FunctionNonObjectParamTypesAreEqual(const FunctionDecl *OldFunction, const FunctionDecl *NewFunction, unsigned *ArgPos=nullptr, bool Reversed=false)
bool isInitListConstructor(const FunctionDecl *Ctor)
Determine whether Ctor is an initializer-list constructor, as defined in [dcl.init....
AccessResult CheckMemberOperatorAccess(SourceLocation Loc, Expr *ObjectExpr, const SourceRange &, DeclAccessPair FoundDecl)
QualType ExtractUnqualifiedFunctionType(QualType PossiblyAFunctionType)
bool IsPointerConversion(Expr *From, QualType FromType, QualType ToType, bool InOverloadResolution, QualType &ConvertedType, bool &IncompatibleObjC)
IsPointerConversion - Determines whether the conversion of the expression From, which has the (possib...
FunctionDecl * ResolveSingleFunctionTemplateSpecialization(OverloadExpr *ovl, bool Complain=false, DeclAccessPair *Found=nullptr, TemplateSpecCandidateSet *FailedTSC=nullptr)
Given an expression that refers to an overloaded function, try to resolve that overloaded function ex...
void DiagnoseUseOfDeletedFunction(SourceLocation Loc, SourceRange Range, DeclarationName Name, OverloadCandidateSet &CandidateSet, FunctionDecl *Fn, MultiExprArg Args, bool IsMember=false)
PrintingPolicy getPrintingPolicy() const
Retrieve a suitable printing policy for diagnostics.
bool IsComplexPromotion(QualType FromType, QualType ToType)
Determine if a conversion is a complex promotion.
ExprResult CheckConvertedConstantExpression(Expr *From, QualType T, llvm::APSInt &Value, CCEKind CCE)
@ TPL_TemplateMatch
We are matching the template parameter lists of two templates that might be redeclarations.
bool IsBlockPointerConversion(QualType FromType, QualType ToType, QualType &ConvertedType)
void FindAssociatedClassesAndNamespaces(SourceLocation InstantiationLoc, ArrayRef< Expr * > Args, AssociatedNamespaceSet &AssociatedNamespaces, AssociatedClassSet &AssociatedClasses)
Find the associated classes and namespaces for argument-dependent lookup for a call with the given se...
void AddMethodTemplateCandidate(FunctionTemplateDecl *MethodTmpl, DeclAccessPair FoundDecl, CXXRecordDecl *ActingContext, TemplateArgumentListInfo *ExplicitTemplateArgs, QualType ObjectType, Expr::Classification ObjectClassification, ArrayRef< Expr * > Args, OverloadCandidateSet &CandidateSet, bool SuppressUserConversions=false, bool PartialOverloading=false, OverloadCandidateParamOrder PO={})
Add a C++ member function template as a candidate to the candidate set, using template argument deduc...
bool isSameOrCompatibleFunctionType(QualType Param, QualType Arg)
Compare types for equality with respect to possibly compatible function types (noreturn adjustment,...
void AddTemplateOverloadCandidate(FunctionTemplateDecl *FunctionTemplate, DeclAccessPair FoundDecl, TemplateArgumentListInfo *ExplicitTemplateArgs, ArrayRef< Expr * > Args, OverloadCandidateSet &CandidateSet, bool SuppressUserConversions=false, bool PartialOverloading=false, bool AllowExplicit=true, ADLCallKind IsADLCandidate=ADLCallKind::NotADL, OverloadCandidateParamOrder PO={}, bool AggregateCandidateDeduction=false)
Add a C++ function template specialization as a candidate in the candidate set, using template argume...
bool CheckMemberPointerConversion(Expr *From, QualType ToType, CastKind &Kind, CXXCastPath &BasePath, bool IgnoreBaseAccess)
CheckMemberPointerConversion - Check the member pointer conversion from the expression From to the ty...
SourceLocation getLocForEndOfToken(SourceLocation Loc, unsigned Offset=0)
Calls Lexer::getLocForEndOfToken()
const LangOptions & getLangOpts() const
const FunctionProtoType * ResolveExceptionSpec(SourceLocation Loc, const FunctionProtoType *FPT)
bool isEquivalentInternalLinkageDeclaration(const NamedDecl *A, const NamedDecl *B)
Determine if A and B are equivalent internal linkage declarations from different modules,...
ExprResult BuildCallExpr(Scope *S, Expr *Fn, SourceLocation LParenLoc, MultiExprArg ArgExprs, SourceLocation RParenLoc, Expr *ExecConfig=nullptr, bool IsExecConfig=false, bool AllowRecovery=false)
BuildCallExpr - Handle a call to Fn with the specified array of arguments.
ExprResult BuildSynthesizedThreeWayComparison(SourceLocation OpLoc, const UnresolvedSetImpl &Fns, Expr *LHS, Expr *RHS, FunctionDecl *DefaultedFn)
void AddBuiltinOperatorCandidates(OverloadedOperatorKind Op, SourceLocation OpLoc, ArrayRef< Expr * > Args, OverloadCandidateSet &CandidateSet)
AddBuiltinOperatorCandidates - Add the appropriate built-in operator overloads to the candidate set (...
const LangOptions & LangOpts
bool IsMemberPointerConversion(Expr *From, QualType FromType, QualType ToType, bool InOverloadResolution, QualType &ConvertedType)
IsMemberPointerConversion - Determines whether the conversion of the expression From,...
ExprResult BuildResolvedCallExpr(Expr *Fn, NamedDecl *NDecl, SourceLocation LParenLoc, ArrayRef< Expr * > Arg, SourceLocation RParenLoc, Expr *Config=nullptr, bool IsExecConfig=false, ADLCallKind UsesADL=ADLCallKind::NotADL)
BuildResolvedCallExpr - Build a call to a resolved expression, i.e.
ExprResult BuildCXXMemberCallExpr(Expr *Exp, NamedDecl *FoundDecl, CXXConversionDecl *Method, bool HadMultipleCandidates)
bool diagnoseArgIndependentDiagnoseIfAttrs(const NamedDecl *ND, SourceLocation Loc)
Emit diagnostics for the diagnose_if attributes on Function, ignoring any ArgDependent DiagnoseIfAttr...
ExprResult BuildConvertedConstantExpression(Expr *From, QualType T, CCEKind CCE, NamedDecl *Dest=nullptr)
OverloadKind CheckOverload(Scope *S, FunctionDecl *New, const LookupResult &OldDecls, NamedDecl *&OldDecl, bool UseMemberUsingDeclRules)
Determine whether the given New declaration is an overload of the declarations in Old.
bool AreConstraintExpressionsEqual(const NamedDecl *Old, const Expr *OldConstr, const TemplateCompareNewDeclInfo &New, const Expr *NewConstr)
FunctionTemplateDecl * getMoreSpecializedTemplate(FunctionTemplateDecl *FT1, FunctionTemplateDecl *FT2, SourceLocation Loc, TemplatePartialOrderingContext TPOC, unsigned NumCallArguments1, QualType RawObj1Ty={}, QualType RawObj2Ty={}, bool Reversed=false)
Returns the more specialized function template according to the rules of function template partial or...
AssignConvertType CheckSingleAssignmentConstraints(QualType LHSType, ExprResult &RHS, bool Diagnose=true, bool DiagnoseCFAudited=false, bool ConvertRHS=true)
Check assignment constraints for an assignment of RHS to LHSType.
ExprResult CreateOverloadedUnaryOp(SourceLocation OpLoc, UnaryOperatorKind Opc, const UnresolvedSetImpl &Fns, Expr *input, bool RequiresADL=true)
Create a unary operation that may resolve to an overloaded operator.
std::optional< sema::TemplateDeductionInfo * > isSFINAEContext() const
Determines whether we are currently in a context where template argument substitution failures are no...
void AddOverloadedCallCandidates(UnresolvedLookupExpr *ULE, ArrayRef< Expr * > Args, OverloadCandidateSet &CandidateSet, bool PartialOverloading=false)
Add the overload candidates named by callee and/or found by argument dependent lookup to the given ov...
bool MaybeEmitAmbiguousAtomicConstraintsDiagnostic(NamedDecl *D1, ArrayRef< const Expr * > AC1, NamedDecl *D2, ArrayRef< const Expr * > AC2)
If D1 was not at least as constrained as D2, but would've been if a pair of atomic constraints involv...
ExprResult DefaultLvalueConversion(Expr *E)
ExprResult BuildDeclarationNameExpr(const CXXScopeSpec &SS, LookupResult &R, bool NeedsADL, bool AcceptInvalidDecl=false)
bool isVisible(const NamedDecl *D)
Determine whether a declaration is visible to name lookup.
void NoteOverloadCandidate(const NamedDecl *Found, const FunctionDecl *Fn, OverloadCandidateRewriteKind RewriteKind=OverloadCandidateRewriteKind(), QualType DestType=QualType(), bool TakingAddress=false)
bool DiagnoseMultipleUserDefinedConversion(Expr *From, QualType ToType)
FunctionDecl * resolveAddressOfSingleOverloadCandidate(Expr *E, DeclAccessPair &FoundResult)
Given an expression that refers to an overloaded function, try to resolve that function to a single f...
DeclContext * CurContext
CurContext - This is the current declaration context of parsing.
ExprResult PerformContextuallyConvertToBool(Expr *From)
PerformContextuallyConvertToBool - Perform a contextual conversion of the expression From to bool (C+...
bool CheckFunctionConstraints(const FunctionDecl *FD, ConstraintSatisfaction &Satisfaction, SourceLocation UsageLoc=SourceLocation(), bool ForOverloadResolution=false)
Check whether the given function decl's trailing requires clause is satisfied, if any.
ObjCMethodDecl * SelectBestMethod(Selector Sel, MultiExprArg Args, bool IsInstance, SmallVectorImpl< ObjCMethodDecl * > &Methods)
AssignConvertType
AssignConvertType - All of the 'assignment' semantic checks return this enum to indicate whether the ...
@ CompatiblePointerDiscardsQualifiers
CompatiblePointerDiscardsQualifiers - The assignment discards c/v/r qualifiers, which we accept as an...
@ IncompatiblePointer
IncompatiblePointer - The assignment is between two pointers types that are not compatible,...
@ Compatible
Compatible - the types are compatible according to the standard.
@ IncompatiblePointerSign
IncompatiblePointerSign - The assignment is between two pointers types which point to integers which ...
void MarkDeclRefReferenced(DeclRefExpr *E, const Expr *Base=nullptr)
Perform reference-marking and odr-use handling for a DeclRefExpr.
ExprResult CheckPlaceholderExpr(Expr *E)
Check for operands with placeholder types and complain if found.
EnableIfAttr * CheckEnableIf(FunctionDecl *Function, SourceLocation CallLoc, ArrayRef< Expr * > Args, bool MissingImplicitThis=false)
Check the enable_if expressions on the given function.
ExprResult CreateUnresolvedLookupExpr(CXXRecordDecl *NamingClass, NestedNameSpecifierLoc NNSLoc, DeclarationNameInfo DNI, const UnresolvedSetImpl &Fns, bool PerformADL=true)
bool inTemplateInstantiation() const
Determine whether we are currently performing template instantiation.
void AddMethodCandidate(DeclAccessPair FoundDecl, QualType ObjectType, Expr::Classification ObjectClassification, ArrayRef< Expr * > Args, OverloadCandidateSet &CandidateSet, bool SuppressUserConversion=false, OverloadCandidateParamOrder PO={})
AddMethodCandidate - Adds a named decl (which is some kind of method) as a method candidate to the gi...
void diagnoseEquivalentInternalLinkageDeclarations(SourceLocation Loc, const NamedDecl *D, ArrayRef< const NamedDecl * > Equiv)
ExprResult FixOverloadedFunctionReference(Expr *E, DeclAccessPair FoundDecl, FunctionDecl *Fn)
FixOverloadedFunctionReference - E is an expression that refers to a C++ overloaded function (possibl...
ExprResult BuildPossibleImplicitMemberExpr(const CXXScopeSpec &SS, SourceLocation TemplateKWLoc, LookupResult &R, const TemplateArgumentListInfo *TemplateArgs, const Scope *S)
Builds an expression which might be an implicit member expression.
bool resolveAndFixAddressOfSingleOverloadCandidate(ExprResult &SrcExpr, bool DoFunctionPointerConversion=false)
Given an overloaded function, tries to turn it into a non-overloaded function reference using resolve...
ExprResult BuildCXXDefaultArgExpr(SourceLocation CallLoc, FunctionDecl *FD, ParmVarDecl *Param, Expr *Init=nullptr)
BuildCXXDefaultArgExpr - Creates a CXXDefaultArgExpr, instantiating the default expr if needed.
bool anyAltivecTypes(QualType srcType, QualType destType)
bool isLaxVectorConversion(QualType srcType, QualType destType)
Is this a legal conversion between two types, one of which is known to be a vector type?
ExprResult BuildOverloadedCallExpr(Scope *S, Expr *Fn, UnresolvedLookupExpr *ULE, SourceLocation LParenLoc, MultiExprArg Args, SourceLocation RParenLoc, Expr *ExecConfig, bool AllowTypoCorrection=true, bool CalleesAddressIsTaken=false)
BuildOverloadedCallExpr - Given the call expression that calls Fn (which eventually refers to the dec...
ExprResult PerformImplicitConversion(Expr *From, QualType ToType, const ImplicitConversionSequence &ICS, AssignmentAction Action, CheckedConversionKind CCK=CheckedConversionKind::Implicit)
PerformImplicitConversion - Perform an implicit conversion of the expression From to the type ToType ...
bool DiagnoseUseOfDecl(NamedDecl *D, ArrayRef< SourceLocation > Locs, const ObjCInterfaceDecl *UnknownObjCClass=nullptr, bool ObjCPropertyAccess=false, bool AvoidPartialAvailabilityChecks=false, ObjCInterfaceDecl *ClassReciever=nullptr, bool SkipTrailingRequiresClause=false)
Determine whether the use of this declaration is valid, and emit any corresponding diagnostics.
ExprResult BuildCallToObjectOfClassType(Scope *S, Expr *Object, SourceLocation LParenLoc, MultiExprArg Args, SourceLocation RParenLoc)
BuildCallToObjectOfClassType - Build a call to an object of class type (C++ [over....
bool isCompleteType(SourceLocation Loc, QualType T, CompleteTypeKind Kind=CompleteTypeKind::Default)
bool CanPerformAggregateInitializationForOverloadResolution(const InitializedEntity &Entity, InitListExpr *From)
Determine whether we can perform aggregate initialization for the purposes of overload resolution.
bool IsOverride(FunctionDecl *MD, FunctionDecl *BaseMD, bool UseMemberUsingDeclRules, bool ConsiderCudaAttrs=true)
bool isStdInitializerList(QualType Ty, QualType *Element)
Tests whether Ty is an instance of std::initializer_list and, if it is and Element is not NULL,...
CCEKind
Contexts in which a converted constant expression is required.
@ CCEK_ExplicitBool
Condition in an explicit(bool) specifier.
@ CCEK_Noexcept
Condition in a noexcept(bool) specifier.
@ CCEK_ArrayBound
Array bound in array declarator or new-expression.
@ CCEK_TemplateArg
Value of a non-type template parameter.
void AddFunctionCandidates(const UnresolvedSetImpl &Functions, ArrayRef< Expr * > Args, OverloadCandidateSet &CandidateSet, TemplateArgumentListInfo *ExplicitTemplateArgs=nullptr, bool SuppressUserConversions=false, bool PartialOverloading=false, bool FirstArgumentIsBase=false)
Add all of the function declarations in the given function set to the overload candidate set.
bool CheckPointerConversion(Expr *From, QualType ToType, CastKind &Kind, CXXCastPath &BasePath, bool IgnoreBaseAccess, bool Diagnose=true)
CheckPointerConversion - Check the pointer conversion from the expression From to the type ToType.
void NoteAllOverloadCandidates(Expr *E, QualType DestType=QualType(), bool TakingAddress=false)
AccessResult CheckUnresolvedLookupAccess(UnresolvedLookupExpr *E, DeclAccessPair FoundDecl)
void AddNonMemberOperatorCandidates(const UnresolvedSetImpl &Functions, ArrayRef< Expr * > Args, OverloadCandidateSet &CandidateSet, TemplateArgumentListInfo *ExplicitTemplateArgs=nullptr)
Add all of the non-member operator function declarations in the given function set to the overload ca...
@ Unevaluated
The current expression and its subexpressions occur within an unevaluated operand (C++11 [expr]p7),...
ReferenceCompareResult CompareReferenceRelationship(SourceLocation Loc, QualType T1, QualType T2, ReferenceConversions *Conv=nullptr)
CompareReferenceRelationship - Compare the two types T1 and T2 to determine whether they are referenc...
bool LookupQualifiedName(LookupResult &R, DeclContext *LookupCtx, bool InUnqualifiedLookup=false)
Perform qualified name lookup into a given context.
SourceManager & SourceMgr
bool DiagnoseDependentMemberLookup(const LookupResult &R)
Diagnose a lookup that found results in an enclosing class during error recovery.
DiagnosticsEngine & Diags
NamespaceDecl * getStdNamespace() const
ExprResult PerformCopyInitialization(const InitializedEntity &Entity, SourceLocation EqualLoc, ExprResult Init, bool TopLevelOfInitList=false, bool AllowExplicit=false)
bool ResolveAndFixSingleFunctionTemplateSpecialization(ExprResult &SrcExpr, bool DoFunctionPointerConversion=false, bool Complain=false, SourceRange OpRangeForComplaining=SourceRange(), QualType DestTypeForComplaining=QualType(), unsigned DiagIDForComplaining=0)
TemplateDeductionResult DeduceTemplateArguments(ClassTemplatePartialSpecializationDecl *Partial, ArrayRef< TemplateArgument > TemplateArgs, sema::TemplateDeductionInfo &Info)
void AddSurrogateCandidate(CXXConversionDecl *Conversion, DeclAccessPair FoundDecl, CXXRecordDecl *ActingContext, const FunctionProtoType *Proto, Expr *Object, ArrayRef< Expr * > Args, OverloadCandidateSet &CandidateSet)
AddSurrogateCandidate - Adds a "surrogate" candidate function that converts the given Object to a fun...
ExprResult CreateRecoveryExpr(SourceLocation Begin, SourceLocation End, ArrayRef< Expr * > SubExprs, QualType T=QualType())
Attempts to produce a RecoveryExpr after some AST node cannot be created.
std::string getTemplateArgumentBindingsText(const TemplateParameterList *Params, const TemplateArgumentList &Args)
Produces a formatted string that describes the binding of template parameters to template arguments.
void DiagnoseUnsatisfiedConstraint(const ConstraintSatisfaction &Satisfaction, bool First=true)
Emit diagnostics explaining why a constraint expression was deemed unsatisfied.
bool IsDerivedFrom(SourceLocation Loc, QualType Derived, QualType Base)
Determine whether the type Derived is a C++ class that is derived from the type Base.
ForRangeStatus BuildForRangeBeginEndCall(SourceLocation Loc, SourceLocation RangeLoc, const DeclarationNameInfo &NameInfo, LookupResult &MemberLookup, OverloadCandidateSet *CandidateSet, Expr *Range, ExprResult *CallExpr)
Build a call to 'begin' or 'end' for a C++11 for-range statement.
ExprResult InitializeExplicitObjectArgument(Sema &S, Expr *Obj, FunctionDecl *Fun)
bool CanPerformCopyInitialization(const InitializedEntity &Entity, ExprResult Init)
bool DiagnoseInvalidExplicitObjectParameterInLambda(CXXMethodDecl *Method, SourceLocation CallLoc)
Returns true if the explicit object parameter was invalid.
bool IsStringLiteralToNonConstPointerConversion(Expr *From, QualType ToType)
Helper function to determine whether this is the (deprecated) C++ conversion from a string literal to...
bool CheckNonDependentConversions(FunctionTemplateDecl *FunctionTemplate, ArrayRef< QualType > ParamTypes, ArrayRef< Expr * > Args, OverloadCandidateSet &CandidateSet, ConversionSequenceList &Conversions, bool SuppressUserConversions, CXXRecordDecl *ActingContext=nullptr, QualType ObjectType=QualType(), Expr::Classification ObjectClassification={}, OverloadCandidateParamOrder PO={})
Check that implicit conversion sequences can be formed for each argument whose corresponding paramete...
void HandleFunctionTypeMismatch(PartialDiagnostic &PDiag, QualType FromType, QualType ToType)
HandleFunctionTypeMismatch - Gives diagnostic information for differeing function types.
DeclContextLookupResult LookupConstructors(CXXRecordDecl *Class)
Look up the constructors for the given class.
bool IsFunctionConversion(QualType FromType, QualType ToType, QualType &ResultTy)
Determine whether the conversion from FromType to ToType is a valid conversion that strips "noexcept"...
void AddMemberOperatorCandidates(OverloadedOperatorKind Op, SourceLocation OpLoc, ArrayRef< Expr * > Args, OverloadCandidateSet &CandidateSet, OverloadCandidateParamOrder PO={})
Add overload candidates for overloaded operators that are member functions.
ExprResult ActOnFinishFullExpr(Expr *Expr, bool DiscardedValue)
void AddOverloadCandidate(FunctionDecl *Function, DeclAccessPair FoundDecl, ArrayRef< Expr * > Args, OverloadCandidateSet &CandidateSet, bool SuppressUserConversions=false, bool PartialOverloading=false, bool AllowExplicit=true, bool AllowExplicitConversion=false, ADLCallKind IsADLCandidate=ADLCallKind::NotADL, ConversionSequenceList EarlyConversions={}, OverloadCandidateParamOrder PO={}, bool AggregateCandidateDeduction=false)
AddOverloadCandidate - Adds the given function to the set of candidate functions, using the given fun...
Encodes a location in the source.
bool isValid() const
Return true if this is a valid SourceLocation object.
bool isInSystemHeader(SourceLocation Loc) const
Returns if a SourceLocation is in a system header.
bool isBeforeInTranslationUnit(SourceLocation LHS, SourceLocation RHS) const
Determines the order of 2 source locations in the translation unit.
A trivial tuple used to represent a source range.
SourceLocation getBegin() const
StandardConversionSequence - represents a standard conversion sequence (C++ 13.3.3....
void dump() const
dump - Print this standard conversion sequence to standard error.
void setFromType(QualType T)
DeclAccessPair FoundCopyConstructor
bool isIdentityConversion() const
unsigned BindsToRvalue
Whether we're binding to an rvalue.
ImplicitConversionKind Second
Second - The second conversion can be an integral promotion, floating point promotion,...
QualType getFromType() const
ImplicitConversionKind First
First – The first conversion can be an lvalue-to-rvalue conversion, array-to-pointer conversion,...
unsigned BindsImplicitObjectArgumentWithoutRefQualifier
Whether this binds an implicit object argument to a non-static member function without a ref-qualifie...
unsigned ReferenceBinding
ReferenceBinding - True when this is a reference binding (C++ [over.ics.ref]).
void setAsIdentityConversion()
StandardConversionSequence - Set the standard conversion sequence to the identity conversion.
unsigned DeprecatedStringLiteralToCharPtr
Whether this is the deprecated conversion of a string literal to a pointer to non-const character dat...
CXXConstructorDecl * CopyConstructor
CopyConstructor - The copy constructor that is used to perform this conversion, when the conversion i...
unsigned IncompatibleObjC
IncompatibleObjC - Whether this is an Objective-C conversion that we should warn about (if we actuall...
unsigned ObjCLifetimeConversionBinding
Whether this binds a reference to an object with a different Objective-C lifetime qualifier.
ImplicitConversionKind Third
Third - The third conversion can be a qualification conversion or a function conversion.
unsigned QualificationIncludesObjCLifetime
Whether the qualification conversion involves a change in the Objective-C lifetime (for automatic ref...
void setToType(unsigned Idx, QualType T)
bool isPointerConversionToBool() const
isPointerConversionToBool - Determines whether this conversion is a conversion of a pointer or pointe...
void * ToTypePtrs[3]
ToType - The types that this conversion is converting to in each step.
NarrowingKind getNarrowingKind(ASTContext &Context, const Expr *Converted, APValue &ConstantValue, QualType &ConstantType, bool IgnoreFloatToIntegralConversion=false) const
Check if this standard conversion sequence represents a narrowing conversion, according to C++11 [dcl...
unsigned IsLvalueReference
Whether this is an lvalue reference binding (otherwise, it's an rvalue reference binding).
ImplicitConversionKind Dimension
Dimension - Between the second and third conversion a vector or matrix dimension conversion may occur...
unsigned BindsToFunctionLvalue
Whether we're binding to a function lvalue.
unsigned DirectBinding
DirectBinding - True when this is a reference binding that is a direct binding (C++ [dcl....
ImplicitConversionRank getRank() const
getRank - Retrieve the rank of this standard conversion sequence (C++ 13.3.3.1.1p3).
bool isPointerConversionToVoidPointer(ASTContext &Context) const
isPointerConversionToVoidPointer - Determines whether this conversion is a conversion of a pointer to...
void setAllToTypes(QualType T)
QualType getToType(unsigned Idx) const
Stmt - This represents one statement.
SourceLocation getEndLoc() const LLVM_READONLY
SourceRange getSourceRange() const LLVM_READONLY
SourceLocation tokens are not useful in isolation - they are low level value objects created/interpre...
void Profile(llvm::FoldingSetNodeID &ID, const ASTContext &Context, bool Canonical, bool ProfileLambdaExpr=false) const
Produce a unique representation of the given statement.
SourceLocation getBeginLoc() const LLVM_READONLY
StringLiteral - This represents a string literal expression, e.g.
StringRef getString() const
bool isMicrosoft() const
Is this ABI an MSVC-compatible ABI?
const llvm::Triple & getTriple() const
Returns the target triple of the primary target.
virtual bool hasInt128Type() const
Determine whether the __int128 type is supported on this target.
virtual bool hasIbm128Type() const
Determine whether the __ibm128 type is supported on this target.
virtual bool hasFloat128Type() const
Determine whether the __float128 type is supported on this target.
TargetCXXABI getCXXABI() const
Get the C++ ABI currently in use.
A convenient class for passing around template argument information.
A template argument list.
Represents a template argument.
QualType getNonTypeTemplateArgumentType() const
If this is a non-type template argument, get its type.
QualType getAsType() const
Retrieve the type for a type template argument.
TemplateName getAsTemplate() const
Retrieve the template name for a template name argument.
unsigned pack_size() const
The number of template arguments in the given template argument pack.
@ Template
The template argument is a template name that was provided for a template template parameter.
@ Pack
The template argument is actually a parameter pack.
ArgKind getKind() const
Return the kind of stored template argument.
The base class of all kinds of template declarations (e.g., class, function, etc.).
TemplateParameterList * getTemplateParameters() const
Get the list of template parameters.
Represents a C++ template name within the type system.
TemplateDecl * getAsTemplateDecl(bool IgnoreDeduced=false) const
Retrieve the underlying template declaration that this template name refers to, if known.
@ Template
A single template declaration.
bool hasAssociatedConstraints() const
TemplateSpecCandidateSet - A set of generalized overload candidates, used in template specializations...
SmallVector< TemplateSpecCandidate, 16 >::iterator iterator
void NoteCandidates(Sema &S, SourceLocation Loc)
NoteCandidates - When no template specialization match is found, prints diagnostic messages containin...
void clear()
Clear out all of the candidates.
SourceLocation getLocation() const
TemplateSpecCandidate & addCandidate()
Add a new candidate with NumConversions conversion sequence slots to the overload set.
Represents a type template specialization; the template must be a class template, a type alias templa...
TemplateTemplateParmDecl - Declares a template template parameter, e.g., "T" in.
Declaration of a template type parameter.
const Type * getTypeForDecl() const
The base class of the type hierarchy.
bool isIncompleteOrObjectType() const
Return true if this is an incomplete or object type, in other words, not a function type.
bool isBlockPointerType() const
bool isBooleanType() const
bool isObjCBuiltinType() const
bool isSignedIntegerOrEnumerationType() const
Determines whether this is an integer type that is signed or an enumeration types whose underlying ty...
bool hasAttr(attr::Kind AK) const
Determine whether this type had the specified attribute applied to it (looking through top-level type...
const RecordType * getAsUnionType() const
NOTE: getAs*ArrayType are methods on ASTContext.
bool isIncompleteArrayType() const
bool isSignedIntegerType() const
Return true if this is an integer type that is signed, according to C99 6.2.5p4 [char,...
bool isFloat16Type() const
bool isComplexType() const
isComplexType() does not include complex integers (a GCC extension).
bool isIntegralOrUnscopedEnumerationType() const
Determine whether this type is an integral or unscoped enumeration type.
bool isRValueReferenceType() const
bool isConstantArrayType() const
bool canDecayToPointerType() const
Determines whether this type can decay to a pointer type.
bool isConvertibleToFixedPointType() const
Return true if this can be converted to (or from) a fixed point type.
bool isArithmeticType() const
bool isPointerType() const
bool isArrayParameterType() const
CanQualType getCanonicalTypeUnqualified() const
bool isIntegerType() const
isIntegerType() does not include complex integers (a GCC extension).
bool isSVESizelessBuiltinType() const
Returns true for SVE scalable vector types.
const T * castAs() const
Member-template castAs<specific type>.
bool isReferenceType() const
bool isEnumeralType() const
bool isIntegralType(const ASTContext &Ctx) const
Determine whether this type is an integral type.
bool isObjCQualifiedIdType() const
QualType getPointeeType() const
If this is a pointer, ObjC object pointer, or block pointer, this returns the respective pointee.
bool isIntegralOrEnumerationType() const
Determine whether this type is an integral or enumeration type.
bool isAnyCharacterType() const
Determine whether this type is any of the built-in character types.
bool isObjCObjectOrInterfaceType() const
bool isInstantiationDependentType() const
Determine whether this type is an instantiation-dependent type, meaning that the type involves a temp...
bool isLValueReferenceType() const
bool isBitIntType() const
bool isDependentType() const
Whether this type is a dependent type, meaning that its definition somehow depends on a template para...
bool isAggregateType() const
Determines whether the type is a C++ aggregate type or C aggregate or union type.
bool isAnyComplexType() const
bool isFixedPointType() const
Return true if this is a fixed point type according to ISO/IEC JTC1 SC22 WG14 N1169.
const BuiltinType * getAsPlaceholderType() const
bool isMemberPointerType() const
bool isObjCIdType() const
bool isMatrixType() const
bool isUndeducedType() const
Determine whether this type is an undeduced type, meaning that it somehow involves a C++11 'auto' typ...
bool isObjectType() const
Determine whether this type is an object type.
bool isBFloat16Type() const
bool isIncompleteType(NamedDecl **Def=nullptr) const
Types are partitioned into 3 broad categories (C99 6.2.5p1): object types, function types,...
bool isFunctionType() const
bool isObjCObjectPointerType() const
bool isVectorType() const
bool isObjCClassType() const
bool isRealFloatingType() const
Floating point categories.
bool isRVVSizelessBuiltinType() const
Returns true for RVV scalable vector types.
bool isHLSLAttributedResourceType() const
bool isUnsignedIntegerType() const
Return true if this is an integer type that is unsigned, according to C99 6.2.5p6 [which returns true...
bool isAnyPointerType() const
TypeClass getTypeClass() const
const T * getAs() const
Member-template getAs<specific type>'.
bool isNullPtrType() const
bool isRecordType() const
UnaryOperator - This represents the unary-expression's (except sizeof and alignof),...
static OverloadedOperatorKind getOverloadedOperator(Opcode Opc)
Retrieve the overloaded operator kind that corresponds to the given unary opcode.
static UnaryOperator * Create(const ASTContext &C, Expr *input, Opcode opc, QualType type, ExprValueKind VK, ExprObjectKind OK, SourceLocation l, bool CanOverflow, FPOptionsOverride FPFeatures)
static StringRef getOpcodeStr(Opcode Op)
getOpcodeStr - Turn an Opcode enum value into the punctuation char it corresponds to,...
A reference to a name which we were able to look up during parsing but could not resolve to a specifi...
bool requiresADL() const
True if this declaration should be extended by argument-dependent lookup.
static UnresolvedLookupExpr * Create(const ASTContext &Context, CXXRecordDecl *NamingClass, NestedNameSpecifierLoc QualifierLoc, const DeclarationNameInfo &NameInfo, bool RequiresADL, UnresolvedSetIterator Begin, UnresolvedSetIterator End, bool KnownDependent, bool KnownInstantiationDependent)
Represents a C++ member access expression for which lookup produced a set of overloaded functions.
DeclarationName getMemberName() const
Retrieve the name of the member that this expression refers to.
QualType getBaseType() const
bool isArrow() const
Determine whether this member expression used the '->' operator; otherwise, it used the '.
Expr * getBase()
Retrieve the base object of this member expressions, e.g., the x in x.m.
SourceLocation getBeginLoc() const LLVM_READONLY
SourceLocation getMemberLoc() const
Retrieve the location of the name of the member that this expression refers to.
A set of unresolved declarations.
ArrayRef< DeclAccessPair > pairs() const
void addDecl(NamedDecl *D)
The iterator over UnresolvedSets.
A set of unresolved declarations.
A call to a literal operator (C++11 [over.literal]) written as a user-defined literal (C++11 [lit....
static UserDefinedLiteral * Create(const ASTContext &Ctx, Expr *Fn, ArrayRef< Expr * > Args, QualType Ty, ExprValueKind VK, SourceLocation LitEndLoc, SourceLocation SuffixLoc, FPOptionsOverride FPFeatures)
unsigned getNumElements() const
QualType getElementType() const
Provides information about an attempted template argument deduction, whose success or failure was des...
TemplateArgumentList * takeSugared()
Take ownership of the deduced template argument lists.
TemplateArgument SecondArg
The second template argument to which the template argument deduction failure refers.
TemplateParameter Param
The template parameter to which a template argument deduction failure refers.
bool hasSFINAEDiagnostic() const
Is a SFINAE diagnostic available?
bool AggregateDeductionCandidateHasMismatchedArity
TemplateArgument FirstArg
The first template argument to which the template argument deduction failure refers.
ConstraintSatisfaction AssociatedConstraintsSatisfaction
The constraint satisfaction details resulting from the associated constraints satisfaction tests.
void takeSFINAEDiagnostic(PartialDiagnosticAt &PD)
Take ownership of the SFINAE diagnostic.
unsigned CallArgIndex
The index of the function argument that caused a deduction failure.
specific_attr_iterator - Iterates over a subrange of an AttrVec, only providing attributes that are o...
Defines the clang::TargetInfo interface.
const internal::VariadicAllOfMatcher< Type > type
Matches Types in the clang AST.
bool Ret(InterpState &S, CodePtr &PC)
void checkAssignmentLifetime(Sema &SemaRef, const AssignedEntity &Entity, Expr *Init)
Check that the lifetime of the given expr (and its subobjects) is sufficient for assigning to the ent...
The JSON file list parser is used to communicate input to InstallAPI.
ImplicitConversionRank GetDimensionConversionRank(ImplicitConversionRank Base, ImplicitConversionKind Dimension)
OverloadedOperatorKind
Enumeration specifying the different kinds of C++ overloaded operators.
@ OO_None
Not an overloaded operator.
@ NUM_OVERLOADED_OPERATORS
OverloadingResult
OverloadingResult - Capture the result of performing overload resolution.
@ OR_Deleted
Succeeded, but refers to a deleted function.
@ OR_Success
Overload resolution succeeded.
@ OR_Ambiguous
Ambiguous candidates found.
@ OR_No_Viable_Function
No viable function found.
@ Specialization
We are substituting template parameters for template arguments in order to form a template specializa...
bool isUnresolvedExceptionSpec(ExceptionSpecificationType ESpecType)
@ ovl_fail_final_conversion_not_exact
This conversion function template specialization candidate is not viable because the final conversion...
@ ovl_fail_enable_if
This candidate function was not viable because an enable_if attribute disabled it.
@ ovl_fail_illegal_constructor
This conversion candidate was not considered because it is an illegal instantiation of a constructor ...
@ ovl_fail_bad_final_conversion
This conversion candidate is not viable because its result type is not implicitly convertible to the ...
@ ovl_fail_module_mismatched
This candidate was not viable because it has internal linkage and is from a different module unit tha...
@ ovl_fail_too_few_arguments
@ ovl_fail_addr_not_available
This candidate was not viable because its address could not be taken.
@ ovl_fail_too_many_arguments
@ ovl_non_default_multiversion_function
This candidate was not viable because it is a non-default multiversioned function.
@ ovl_fail_constraints_not_satisfied
This candidate was not viable because its associated constraints were not satisfied.
@ ovl_fail_bad_conversion
@ ovl_fail_bad_target
(CUDA) This candidate was not viable because the callee was not accessible from the caller's target (...
@ ovl_fail_inhctor_slice
This inherited constructor is not viable because it would slice the argument.
@ ovl_fail_object_addrspace_mismatch
This constructor/conversion candidate fail due to an address space mismatch between the object being ...
@ ovl_fail_explicit
This candidate constructor or conversion function is explicit but the context doesn't permit explicit...
@ ovl_fail_trivial_conversion
This conversion candidate was not considered because it duplicates the work of a trivial or derived-t...
@ RQ_None
No ref-qualifier was provided.
@ RQ_LValue
An lvalue ref-qualifier was provided (&).
@ RQ_RValue
An rvalue ref-qualifier was provided (&&).
ImplicitConversionRank
ImplicitConversionRank - The rank of an implicit conversion kind.
@ ICR_Conversion
Conversion.
@ ICR_Writeback_Conversion
ObjC ARC writeback conversion.
@ ICR_HLSL_Dimension_Reduction
HLSL Matching Dimension Reduction.
@ ICR_HLSL_Dimension_Reduction_Conversion
HLSL Dimension reduction with conversion.
@ ICR_HLSL_Scalar_Widening
HLSL Scalar Widening.
@ ICR_C_Conversion
Conversion only allowed in the C standard (e.g. void* to char*).
@ ICR_OCL_Scalar_Widening
OpenCL Scalar Widening.
@ ICR_Complex_Real_Conversion
Complex <-> Real conversion.
@ ICR_HLSL_Scalar_Widening_Conversion
HLSL Scalar Widening with conversion.
@ ICR_HLSL_Dimension_Reduction_Promotion
HLSL Dimension reduction with promotion.
@ ICR_Promotion
Promotion.
@ ICR_Exact_Match
Exact Match.
@ ICR_C_Conversion_Extension
Conversion not allowed by the C standard, but that we accept as an extension anyway.
@ ICR_HLSL_Scalar_Widening_Promotion
HLSL Scalar Widening with promotion.
OverloadCandidateDisplayKind
@ OCD_AmbiguousCandidates
Requests that only tied-for-best candidates be shown.
@ OCD_ViableCandidates
Requests that only viable candidates be shown.
@ OCD_AllCandidates
Requests that all candidates be shown.
@ OK_ObjCProperty
An Objective-C property is a logical field of an Objective-C object which is read and written via Obj...
@ OK_Ordinary
An ordinary object is located at an address in memory.
OverloadCandidateParamOrder
The parameter ordering that will be used for the candidate.
@ Seq
'seq' clause, allowed on 'loop' and 'routine' directives.
OverloadsShown
Specifies which overload candidates to display when overload resolution fails.
@ Ovl_Best
Show just the "best" overload candidates.
ComparisonCategoryResult
An enumeration representing the possible results of a three-way comparison.
OverloadCandidateRewriteKind
The kinds of rewrite we perform on overload candidates.
@ CRK_Reversed
Candidate is a rewritten candidate with a reversed order of parameters.
@ CRK_None
Candidate is not a rewritten candidate.
@ CRK_DifferentOperator
Candidate is a rewritten candidate with a different operator name.
@ Internal
Internal linkage, which indicates that the entity can be referred to from within the translation unit...
@ Result
The result type of a method or function.
ImplicitConversionKind
ImplicitConversionKind - The kind of implicit conversion used to convert an argument to a parameter's...
@ ICK_Complex_Conversion
Complex conversions (C99 6.3.1.6)
@ ICK_Floating_Promotion
Floating point promotions (C++ [conv.fpprom])
@ ICK_Boolean_Conversion
Boolean conversions (C++ [conv.bool])
@ ICK_Integral_Conversion
Integral conversions (C++ [conv.integral])
@ ICK_Fixed_Point_Conversion
Fixed point type conversions according to N1169.
@ ICK_Vector_Conversion
Vector conversions.
@ ICK_Block_Pointer_Conversion
Block Pointer conversions.
@ ICK_Pointer_Member
Pointer-to-member conversions (C++ [conv.mem])
@ ICK_Floating_Integral
Floating-integral conversions (C++ [conv.fpint])
@ ICK_HLSL_Array_RValue
HLSL non-decaying array rvalue cast.
@ ICK_SVE_Vector_Conversion
Arm SVE Vector conversions.
@ ICK_HLSL_Vector_Truncation
HLSL vector truncation.
@ ICK_Incompatible_Pointer_Conversion
C-only conversion between pointers with incompatible types.
@ ICK_Array_To_Pointer
Array-to-pointer conversion (C++ [conv.array])
@ ICK_RVV_Vector_Conversion
RISC-V RVV Vector conversions.
@ ICK_Complex_Promotion
Complex promotions (Clang extension)
@ ICK_Num_Conversion_Kinds
The number of conversion kinds.
@ ICK_Function_Conversion
Function pointer conversion (C++17 [conv.fctptr])
@ ICK_Vector_Splat
A vector splat from an arithmetic type.
@ ICK_Zero_Queue_Conversion
Zero constant to queue.
@ ICK_Identity
Identity conversion (no conversion)
@ ICK_Derived_To_Base
Derived-to-base (C++ [over.best.ics])
@ ICK_Lvalue_To_Rvalue
Lvalue-to-rvalue conversion (C++ [conv.lval])
@ ICK_Qualification
Qualification conversions (C++ [conv.qual])
@ ICK_Pointer_Conversion
Pointer conversions (C++ [conv.ptr])
@ ICK_TransparentUnionConversion
Transparent Union Conversions.
@ ICK_Integral_Promotion
Integral promotions (C++ [conv.prom])
@ ICK_Floating_Conversion
Floating point conversions (C++ [conv.double].
@ ICK_Compatible_Conversion
Conversions between compatible types in C99.
@ ICK_C_Only_Conversion
Conversions allowed in C, but not C++.
@ ICK_Writeback_Conversion
Objective-C ARC writeback conversion.
@ ICK_Zero_Event_Conversion
Zero constant to event (OpenCL1.2 6.12.10)
@ ICK_Complex_Real
Complex-real conversions (C99 6.3.1.7)
@ ICK_Function_To_Pointer
Function-to-pointer (C++ [conv.array])
ActionResult< Expr * > ExprResult
DeductionFailureInfo MakeDeductionFailureInfo(ASTContext &Context, TemplateDeductionResult TDK, sema::TemplateDeductionInfo &Info)
Convert from Sema's representation of template deduction information to the form used in overload-can...
llvm::PointerUnion< TemplateTypeParmDecl *, NonTypeTemplateParmDecl *, TemplateTemplateParmDecl * > TemplateParameter
Stores a template parameter of any kind.
LangAS
Defines the address space values used by the address space qualifier of QualType.
CastKind
CastKind - The kind of operation required for a conversion.
CXXSpecialMemberKind
Kinds of C++ special members.
OverloadedOperatorKind getRewrittenOverloadedOperator(OverloadedOperatorKind Kind)
Get the other overloaded operator that the given operator can be rewritten into, if any such operator...
ExprValueKind
The categorization of expression values, currently following the C++11 scheme.
@ VK_PRValue
A pr-value expression (in the C++11 taxonomy) produces a temporary value.
@ VK_XValue
An x-value expression is a reference to an object with independent storage but which can be "moved",...
@ VK_LValue
An l-value expression is a reference to an object with independent storage.
bool isBetterOverloadCandidate(Sema &S, const OverloadCandidate &Cand1, const OverloadCandidate &Cand2, SourceLocation Loc, OverloadCandidateSet::CandidateSetKind Kind)
isBetterOverloadCandidate - Determines whether the first overload candidate is a better candidate tha...
const FunctionProtoType * T
bool shouldEnforceArgLimit(bool PartialOverloading, FunctionDecl *Function)
NarrowingKind
NarrowingKind - The kind of narrowing conversion being performed by a standard conversion sequence ac...
@ NK_Not_Narrowing
Not a narrowing conversion.
@ NK_Constant_Narrowing
A narrowing conversion, because a constant expression got narrowed.
@ NK_Dependent_Narrowing
Cannot tell whether this is a narrowing conversion because the expression is value-dependent.
@ NK_Type_Narrowing
A narrowing conversion by virtue of the source and destination types.
@ NK_Variable_Narrowing
A narrowing conversion, because a non-constant-expression variable might have got narrowed.
@ TPOC_Conversion
Partial ordering of function templates for a call to a conversion function.
@ TPOC_Call
Partial ordering of function templates for a function call.
bool declaresSameEntity(const Decl *D1, const Decl *D2)
Determine whether two declarations declare the same entity.
std::pair< SourceLocation, PartialDiagnostic > PartialDiagnosticAt
A partial diagnostic along with the source location where this diagnostic occurs.
TemplateDeductionResult
Describes the result of template argument deduction.
@ MiscellaneousDeductionFailure
Deduction failed; that's all we know.
@ NonDependentConversionFailure
Checking non-dependent argument conversions failed.
@ ConstraintsNotSatisfied
The deduced arguments did not satisfy the constraints associated with the template.
@ Underqualified
Template argument deduction failed due to inconsistent cv-qualifiers on a template parameter type tha...
@ InstantiationDepth
Template argument deduction exceeded the maximum template instantiation depth (which has already been...
@ InvalidExplicitArguments
The explicitly-specified template arguments were not valid template arguments for the given template.
@ CUDATargetMismatch
CUDA Target attributes do not match.
@ TooFewArguments
When performing template argument deduction for a function template, there were too few call argument...
@ Incomplete
Template argument deduction did not deduce a value for every template parameter.
@ Invalid
The declaration was invalid; do nothing.
@ Success
Template argument deduction was successful.
@ SubstitutionFailure
Substitution of the deduced template argument values resulted in an error.
@ IncompletePack
Template argument deduction did not deduce a value for every expansion of an expanded template parame...
@ DeducedMismatch
After substituting deduced template arguments, a dependent parameter type did not match the correspon...
@ Inconsistent
Template argument deduction produced inconsistent deduced values for the given template parameter.
@ TooManyArguments
When performing template argument deduction for a function template, there were too many call argumen...
@ AlreadyDiagnosed
Some error which was already diagnosed.
@ DeducedMismatchNested
After substituting deduced template arguments, an element of a dependent parameter type did not match...
@ NonDeducedMismatch
A non-depnedent component of the parameter did not match the corresponding component of the argument.
@ 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.
CallingConv
CallingConv - Specifies the calling convention that a function uses.
const char * getOperatorSpelling(OverloadedOperatorKind Operator)
Retrieve the spelling of the given overloaded operator, without the preceding "operator" keyword.
ConstructorInfo getConstructorInfo(NamedDecl *ND)
@ None
The alignment was not explicit in code.
ImplicitConversionRank GetConversionRank(ImplicitConversionKind Kind)
GetConversionRank - Retrieve the implicit conversion rank corresponding to the given implicit convers...
@ Enum
The "enum" keyword introduces the elaborated-type-specifier.
@ EST_None
no exception specification
@ ForBuiltinOverloadedOp
A conversion for an operand of a builtin overloaded operator.
__DEVICE__ _Tp abs(const std::complex< _Tp > &__c)
Represents an ambiguous user-defined conversion sequence.
ConversionSet::const_iterator const_iterator
ConversionSet & conversions()
void setFromType(QualType T)
void setToType(QualType T)
void addConversion(NamedDecl *Found, FunctionDecl *D)
SmallVector< std::pair< NamedDecl *, FunctionDecl * >, 4 > ConversionSet
void copyFrom(const AmbiguousConversionSequence &)
QualType getToType() const
QualType getFromType() const
OverloadFixItKind Kind
The type of fix applied.
unsigned NumConversionsFixed
The number of Conversions fixed.
void setConversionChecker(TypeComparisonFuncTy Foo)
Resets the default conversion checker method.
std::vector< FixItHint > Hints
The list of Hints generated so far.
DeclarationNameInfo - A collector data type for bundling together a DeclarationName and the correspon...
SourceLocation getLoc() const
getLoc - Returns the main location of the declaration name.
void setCXXOperatorNameRange(SourceRange R)
setCXXOperatorNameRange - Sets the range of the operator name (without the operator keyword).
const DeclarationNameLoc & getInfo() const
SourceLocation getCXXLiteralOperatorNameLoc() const
getCXXLiteralOperatorNameLoc - Returns the location of the literal operator name (not the operator ke...
A structure used to record information about a failed template argument deduction,...
void * Data
Opaque pointer containing additional data about this deduction failure.
const TemplateArgument * getSecondArg()
Return the second template argument this deduction failure refers to, if any.
unsigned Result
A Sema::TemplateDeductionResult.
PartialDiagnosticAt * getSFINAEDiagnostic()
Retrieve the diagnostic which caused this deduction failure, if any.
std::optional< unsigned > getCallArgIndex()
Return the index of the call argument that this deduction failure refers to, if any.
unsigned HasDiagnostic
Indicates whether a diagnostic is stored in Diagnostic.
TemplateDeductionResult getResult() const
void Destroy()
Free any memory associated with this deduction failure.
char Diagnostic[sizeof(PartialDiagnosticAt)]
A diagnostic indicating why deduction failed.
TemplateParameter getTemplateParameter()
Retrieve the template parameter this deduction failure refers to, if any.
TemplateArgumentList * getTemplateArgumentList()
Retrieve the template argument list associated with this deduction failure, if any.
const TemplateArgument * getFirstArg()
Return the first template argument this deduction failure refers to, if any.
EvalResult is a struct with detailed info about an evaluated expression.
APValue Val
Val - This is the value the expression can be folded to.
SmallVectorImpl< PartialDiagnosticAt > * Diag
Diag - If this is non-null, it will be filled in with a stack of notes indicating why evaluation fail...
Extra information about a function prototype.
FunctionEffectsRef FunctionEffects
const ExtParameterInfo * ExtParameterInfos
Information about operator rewrites to consider when adding operator functions to a candidate set.
bool shouldAddReversed(Sema &S, ArrayRef< Expr * > OriginalArgs, FunctionDecl *FD)
Determine whether we should add a rewritten candidate for FD with reversed parameter order.
bool allowsReversed(OverloadedOperatorKind Op)
Determine whether reversing parameter order is allowed for operator Op.
bool AllowRewrittenCandidates
Whether we should include rewritten candidates in the overload set.
bool isReversible()
Determines whether this operator could be implemented by a function with reversed parameter order.
bool isAcceptableCandidate(const FunctionDecl *FD)
OverloadCandidateRewriteKind getRewriteKind(const FunctionDecl *FD, OverloadCandidateParamOrder PO)
Determine the kind of rewrite that should be performed for this candidate.
OverloadCandidate - A single candidate in an overload set (C++ 13.3).
CallExpr::ADLCallKind IsADLCandidate
True if the candidate was found using ADL.
bool TryToFixBadConversion(unsigned Idx, Sema &S)
bool NotValidBecauseConstraintExprHasError() const
bool IsSurrogate
IsSurrogate - True to indicate that this candidate is a surrogate for a conversion to a function poin...
QualType BuiltinParamTypes[3]
BuiltinParamTypes - Provides the parameter types of a built-in overload candidate.
bool IgnoreObjectArgument
IgnoreObjectArgument - True to indicate that the first argument's conversion, which for this function...
DeclAccessPair FoundDecl
FoundDecl - The original declaration that was looked up / invented / otherwise found,...
FunctionDecl * Function
Function - The actual function that this candidate represents.
bool Viable
Viable - True to indicate that this overload candidate is viable.
unsigned RewriteKind
Whether this is a rewritten candidate, and if so, of what kind?
ConversionFixItGenerator Fix
The FixIt hints which can be used to fix the Bad candidate.
StandardConversionSequence FinalConversion
FinalConversion - For a conversion function (where Function is a CXXConversionDecl),...
unsigned getNumParams() const
unsigned ExplicitCallArguments
The number of call arguments that were explicitly provided, to be used while performing partial order...
unsigned char FailureKind
FailureKind - The reason why this candidate is not viable.
ConversionSequenceList Conversions
The conversion sequences used to convert the function arguments to the function parameters.
bool TookAddressOfOverload
DeductionFailureInfo DeductionFailure
bool Best
Whether this candidate is the best viable function, or tied for being the best viable function.
CXXConversionDecl * Surrogate
Surrogate - The conversion function for which this candidate is a surrogate, but only if IsSurrogate ...
OverloadCandidateRewriteKind getRewriteKind() const
Get RewriteKind value in OverloadCandidateRewriteKind type (This function is to workaround the spurio...
bool HasFormOfMemberPointer
OverloadExpr * Expression
A context in which code is being synthesized (where a source location alone is not sufficient to iden...
enum clang::Sema::CodeSynthesisContext::SynthesisKind Kind
@ RewritingOperatorAsSpaceship
We are rewriting a comparison operator in terms of an operator<=>.
Decl * Entity
The entity that is being synthesized.
ReferenceConversions
The conversions that would be performed on an lvalue of type T2 when binding a reference of type T1 t...
Abstract class used to diagnose incomplete types.
A std::pair-like structure for storing a qualified type split into its local qualifiers and its local...
const Type * Ty
The locally-unqualified type.
Qualifiers Quals
The local qualifiers.
TemplateSpecCandidate - This is a generalization of OverloadCandidate which keeps track of template a...
void NoteDeductionFailure(Sema &S, bool ForTakingAddress)
Diagnose a template argument deduction failure.
DeductionFailureInfo DeductionFailure
Template argument deduction info.
Decl * Specialization
Specialization - The actual specialization that this candidate represents.
void set(DeclAccessPair Found, Decl *Spec, DeductionFailureInfo Info)
UserDefinedConversionSequence - Represents a user-defined conversion sequence (C++ 13....
StandardConversionSequence Before
Represents the standard conversion that occurs before the actual user-defined conversion.
FunctionDecl * ConversionFunction
ConversionFunction - The function that will perform the user-defined conversion.
bool HadMultipleCandidates
HadMultipleCandidates - When this is true, it means that the conversion function was resolved from an...
StandardConversionSequence After
After - Represents the standard conversion that occurs after the actual user-defined conversion.
bool EllipsisConversion
EllipsisConversion - When this is true, it means user-defined conversion sequence starts with a ....
DeclAccessPair FoundConversionFunction
The declaration that we found via name lookup, which might be the same as ConversionFunction or it mi...
void dump() const
dump - Print this user-defined conversion sequence to standard error.
Describes an entity that is being assigned.