49#include "llvm/ADT/APInt.h"
50#include "llvm/ADT/STLExtras.h"
51#include "llvm/ADT/STLForwardCompat.h"
52#include "llvm/ADT/StringExtras.h"
53#include "llvm/Support/ErrorHandling.h"
54#include "llvm/Support/TypeSize.h"
84 llvm_unreachable(
"Nested name specifier is not a type for inheriting ctor");
98 "not a constructor name");
120 auto *RD = dyn_cast<CXXRecordDecl>(ND);
121 if (RD && RD->isInjectedClassName()) {
122 InjectedClassName = RD;
126 if (!InjectedClassName) {
131 diag::err_incomplete_nested_name_spec) << CurClass << SS.
getRange();
146 bool EnteringContext) {
192 auto IsAcceptableResult = [&](
NamedDecl *
D) ->
bool {
193 auto *
Type = dyn_cast<TypeDecl>(
D->getUnderlyingDecl());
204 unsigned NumAcceptableResults = 0;
206 if (IsAcceptableResult(
D))
207 ++NumAcceptableResults;
212 if (
auto *RD = dyn_cast<CXXRecordDecl>(
D))
213 if (RD->isInjectedClassName())
214 D = cast<NamedDecl>(RD->getParent());
216 if (FoundDeclSet.insert(
D).second)
217 FoundDecls.push_back(
D);
225 if (
Found.isAmbiguous() && NumAcceptableResults == 1) {
226 Diag(NameLoc, diag::ext_dtor_name_ambiguous);
230 if (
auto *TD = dyn_cast<TypeDecl>(
D->getUnderlyingDecl()))
236 if (!IsAcceptableResult(
D))
242 if (
Found.isAmbiguous())
246 if (IsAcceptableResult(
Type)) {
258 bool IsDependent =
false;
260 auto LookupInObjectType = [&]() ->
ParsedType {
261 if (Failed || SearchType.
isNull())
271 return CheckLookupResult(
Found);
289 return CheckLookupResult(
Found);
298 return CheckLookupResult(
Found);
345 if (
ParsedType T = LookupInNestedNameSpec(PrefixSS))
375 unsigned NumNonExtensionDecls = FoundDecls.size();
399 Diag(SS.
getEndLoc(), diag::ext_qualified_dtor_named_in_lexical_scope)
401 Diag(FoundDecls.back()->getLocation(), diag::note_destructor_type_here)
412 FoundDecls.resize(NumNonExtensionDecls);
415 std::stable_sort(FoundDecls.begin(), FoundDecls.end(),
417 return isa<TypeDecl>(A->getUnderlyingDecl()) >
418 isa<TypeDecl>(B->getUnderlyingDecl());
422 auto MakeFixItHint = [&]{
428 Destroyed = dyn_cast_or_null<CXXRecordDecl>(S->getEntity());
435 if (FoundDecls.empty()) {
437 Diag(NameLoc, diag::err_undeclared_destructor_name)
438 << &II << MakeFixItHint();
439 }
else if (!SearchType.
isNull() && FoundDecls.size() == 1) {
440 if (
auto *TD = dyn_cast<TypeDecl>(FoundDecls[0]->getUnderlyingDecl())) {
441 assert(!SearchType.
isNull() &&
442 "should only reject a type result if we have a search type");
444 Diag(NameLoc, diag::err_destructor_expr_type_mismatch)
445 <<
T << SearchType << MakeFixItHint();
447 Diag(NameLoc, diag::err_destructor_expr_nontype)
448 << &II << MakeFixItHint();
451 Diag(NameLoc, SearchType.
isNull() ? diag::err_destructor_name_nontype
452 : diag::err_destructor_expr_mismatch)
453 << &II << SearchType << MakeFixItHint();
457 if (
auto *TD = dyn_cast<TypeDecl>(FoundD->getUnderlyingDecl()))
458 Diag(FoundD->getLocation(), diag::note_destructor_type_here)
461 Diag(FoundD->getLocation(), diag::note_destructor_nontype_here)
479 "unexpected type in getDestructorType");
508 Name.getSourceRange(),
509 (StringRef(
"operator\"\"") + II->
getName()).str());
518 Diag(
Loc, diag::warn_deprecated_literal_operator_id) << II << Hint;
521 Diag(
Loc, diag::warn_reserved_extern_symbol)
522 << II << static_cast<int>(Status) << Hint;
536 Diag(Name.getBeginLoc(), diag::err_literal_operator_id_outside_namespace)
547 llvm_unreachable(
"unknown nested name specifier kind");
568 return ExprError(
Diag(TypeidLoc, diag::err_variably_modified_typeid) <<
T);
581 bool WasEvaluated =
false;
591 CXXRecordDecl *RecordD = cast<CXXRecordDecl>(RecordT->getDecl());
637 return ExprError(
Diag(TypeidLoc, diag::err_variably_modified_typeid)
644 ? diag::warn_side_effects_typeid
645 : diag::warn_side_effects_unevaluated_context);
658 return ExprError(
Diag(OpLoc, diag::err_openclcxx_not_supported)
664 return ExprError(
Diag(OpLoc, diag::err_need_header_before_typeid));
678 return ExprError(
Diag(OpLoc, diag::err_need_header_before_typeid));
682 return ExprError(
Diag(OpLoc, diag::err_no_typeid_with_fno_rtti));
706 if (
auto *CTE = dyn_cast<CXXTypeidExpr>(
Result.get()))
707 if (CTE->isPotentiallyEvaluated() && !CTE->isMostDerived(
Context))
708 Diag(OpLoc, diag::warn_no_typeid_with_rtti_disabled)
730 if (
const auto *Uuid = TD->getMostRecentDecl()->getAttr<UuidAttr>()) {
731 UuidAttrs.insert(Uuid);
736 if (
const auto *CTSD = dyn_cast<ClassTemplateSpecializationDecl>(TD)) {
739 const UuidAttr *UuidForTA =
nullptr;
746 UuidAttrs.insert(UuidForTA);
756 if (!Operand->getType()->isDependentType()) {
759 if (UuidAttrs.empty())
760 return ExprError(
Diag(TypeidLoc, diag::err_uuidof_without_guid));
761 if (UuidAttrs.size() > 1)
762 return ExprError(
Diag(TypeidLoc, diag::err_uuidof_with_multiple_guids));
763 Guid = UuidAttrs.back()->getGuidDecl();
780 if (UuidAttrs.empty())
781 return ExprError(
Diag(TypeidLoc, diag::err_uuidof_without_guid));
782 if (UuidAttrs.size() > 1)
783 return ExprError(
Diag(TypeidLoc, diag::err_uuidof_with_multiple_guids));
784 Guid = UuidAttrs.back()->getGuidDecl();
819 assert((Kind == tok::kw_true || Kind == tok::kw_false) &&
820 "Unknown C++ Boolean value!");
832 bool IsThrownVarInScope =
false;
845 if (
const auto *DRE = dyn_cast<DeclRefExpr>(Ex->
IgnoreParens()))
846 if (
const auto *Var = dyn_cast<VarDecl>(DRE->getDecl());
847 Var && Var->hasLocalStorage() &&
848 !Var->getType().isVolatileQualified()) {
849 for (; S; S = S->getParent()) {
850 if (S->isDeclScope(Var)) {
851 IsThrownVarInScope =
true;
868 bool IsThrownVarInScope) {
870 const bool IsOpenMPGPUTarget =
871 getLangOpts().OpenMPIsTargetDevice && (
T.isNVPTX() ||
T.isAMDGCN());
874 if (!IsOpenMPGPUTarget && !
getLangOpts().CXXExceptions &&
877 targetDiag(OpLoc, diag::err_exceptions_disabled) <<
"throw";
881 if (IsOpenMPGPUTarget)
882 targetDiag(OpLoc, diag::warn_throw_not_valid_on_target) <<
T.str();
887 <<
"throw" << llvm::to_underlying(
CUDA().CurrentTarget());
890 Diag(OpLoc, diag::err_omp_simd_region_cannot_use_stmt) <<
"throw";
895 Diag(OpLoc, diag::err_acc_branch_in_out_compute_construct)
939 llvm::DenseMap<CXXRecordDecl *, unsigned> &SubobjectsSeen,
940 llvm::SmallPtrSetImpl<CXXRecordDecl *> &VBases,
941 llvm::SetVector<CXXRecordDecl *> &PublicSubobjectsSeen,
942 bool ParentIsPublic) {
944 CXXRecordDecl *BaseDecl = BS.getType()->getAsCXXRecordDecl();
949 NewSubobject = VBases.insert(BaseDecl).second;
954 ++SubobjectsSeen[BaseDecl];
957 bool PublicPath = ParentIsPublic && BS.getAccessSpecifier() ==
AS_public;
959 PublicSubobjectsSeen.insert(BaseDecl);
969 llvm::DenseMap<CXXRecordDecl *, unsigned> SubobjectsSeen;
970 llvm::SmallSet<CXXRecordDecl *, 2> VBases;
971 llvm::SetVector<CXXRecordDecl *> PublicSubobjectsSeen;
972 SubobjectsSeen[RD] = 1;
973 PublicSubobjectsSeen.insert(RD);
977 for (
CXXRecordDecl *PublicSubobject : PublicSubobjectsSeen) {
979 if (SubobjectsSeen[PublicSubobject] > 1)
982 Objects.push_back(PublicSubobject);
991 bool isPointer =
false;
1011 isPointer ? diag::err_throw_incomplete_ptr
1012 : diag::err_throw_incomplete,
1022 diag::err_throw_abstract_type,
E))
1044 PDiag(diag::err_access_dtor_exception) << Ty);
1060 for (
CXXRecordDecl *Subobject : UnambiguousPublicSubobjects) {
1101 if (ExnObjAlign < TypeAlign) {
1102 Diag(ThrowLoc, diag::warn_throw_underaligned_obj);
1103 Diag(ThrowLoc, diag::note_throw_underaligned_obj)
1108 if (!isPointer &&
getLangOpts().AssumeNothrowExceptionDtor) {
1110 auto Ty = Dtor->getType();
1114 Diag(ThrowLoc, diag::err_throw_object_throwing_dtor) << RD;
1166 for (
int I = FunctionScopes.size();
1167 I-- && isa<LambdaScopeInfo>(FunctionScopes[I]) &&
1169 cast<LambdaScopeInfo>(FunctionScopes[I])->CallOperator);
1171 CurLSI = cast<LambdaScopeInfo>(FunctionScopes[I]);
1178 if (
C.isCopyCapture()) {
1190 "While computing 'this' capture-type for a generic lambda, when we "
1191 "run out of enclosing LSI's, yet the enclosing DC is a "
1192 "lambda-call-operator we must be (i.e. Current LSI) in a generic "
1193 "lambda call oeprator");
1196 auto IsThisCaptured =
1201 if (
C.capturesThis()) {
1212 bool IsByCopyCapture =
false;
1213 bool IsConstCapture =
false;
1216 IsThisCaptured(Closure, IsByCopyCapture, IsConstCapture)) {
1217 if (IsByCopyCapture) {
1235 if (method && method->isImplicitObjectMemberFunction())
1236 ThisTy = method->getThisType().getNonReferenceType();
1264 : S(S), OldCXXThisTypeOverride(S.CXXThisTypeOverride), Enabled(
false)
1266 if (!Enabled || !ContextDecl)
1271 Record = Template->getTemplatedDecl();
1273 Record = cast<CXXRecordDecl>(ContextDecl);
1281 this->Enabled =
true;
1298 Sema.
Diag(DiagLoc, diag::note_lambda_this_capture_fixit)
1304 bool BuildAndDiagnose,
const unsigned *
const FunctionScopeIndexToStopAt,
1305 const bool ByCopy) {
1310 assert((!ByCopy ||
Explicit) &&
"cannot implicitly capture *this by value");
1312 const int MaxFunctionScopesIndex = FunctionScopeIndexToStopAt
1313 ? *FunctionScopeIndexToStopAt
1339 unsigned NumCapturingClosures = 0;
1340 for (
int idx = MaxFunctionScopesIndex; idx >= 0; idx--) {
1343 if (CSI->CXXThisCaptureIndex != 0) {
1345 CSI->Captures[CSI->CXXThisCaptureIndex - 1].markUsed(BuildAndDiagnose);
1351 if (BuildAndDiagnose) {
1353 Diag(
Loc, diag::err_this_capture)
1354 << (
Explicit && idx == MaxFunctionScopesIndex);
1364 (
Explicit && idx == MaxFunctionScopesIndex)) {
1370 NumCapturingClosures++;
1374 if (BuildAndDiagnose) {
1376 Diag(
Loc, diag::err_this_capture)
1377 << (
Explicit && idx == MaxFunctionScopesIndex);
1385 if (!BuildAndDiagnose)
return false;
1398 "Only a lambda can capture the enclosing object (referred to by "
1401 for (
int idx = MaxFunctionScopesIndex; NumCapturingClosures;
1402 --idx, --NumCapturingClosures) {
1409 bool isNested = NumCapturingClosures > 1;
1443 const auto *Method = dyn_cast<CXXMethodDecl>(DC);
1444 if (Method && Method->isExplicitObjectMemberFunction()) {
1445 Diag(
Loc, diag::err_invalid_this_use) << 1;
1447 Diag(
Loc, diag::err_invalid_this_use) << 1;
1449 Diag(
Loc, diag::err_invalid_this_use) << 0;
1463 if (This->isTypeDependent())
1468 auto IsDependent = [&]() {
1470 auto *LSI = dyn_cast<sema::LambdaScopeInfo>(
Scope);
1474 if (LSI->Lambda && !LSI->Lambda->Encloses(
CurContext) &&
1475 LSI->AfterParameterList)
1482 if (LSI->isCXXThisCaptured()) {
1483 if (!LSI->getCXXThisCapture().isCopyCapture())
1486 const auto *MD = LSI->CallOperator;
1487 if (MD->getType().isNull())
1491 return Ty && MD->isExplicitObjectMemberFunction() &&
1498 This->setCapturedByCopyInLambdaWithExplicitObjectParameter(IsDependent);
1518 bool ListInitialization) {
1528 RParenOrBraceLoc, ListInitialization);
1532 if (!
Result.isInvalid() &&
Result.get()->isInstantiationDependent() &&
1533 !
Result.get()->isTypeDependent())
1535 else if (
Result.isInvalid())
1537 RParenOrBraceLoc, exprs, Ty);
1546 bool ListInitialization) {
1555 ? ListInitialization
1557 TyBeginLoc, LParenOrBraceLoc, RParenOrBraceLoc)
1571 isa<DeducedTemplateSpecializationType>(Deduced)) {
1577 }
else if (Deduced && !Deduced->
isDeduced()) {
1579 if (ListInitialization) {
1580 auto *ILE = cast<InitListExpr>(Exprs[0]);
1581 Inits =
MultiExprArg(ILE->getInits(), ILE->getNumInits());
1585 return ExprError(
Diag(TyBeginLoc, diag::err_auto_expr_init_no_expression)
1586 << Ty << FullRange);
1587 if (Inits.size() > 1) {
1588 Expr *FirstBad = Inits[1];
1590 diag::err_auto_expr_init_multiple_expressions)
1591 << Ty << FullRange);
1595 Diag(TyBeginLoc, diag::warn_cxx20_compat_auto_expr) << FullRange;
1597 Expr *Deduce = Inits[0];
1598 if (isa<InitListExpr>(Deduce))
1601 << ListInitialization << Ty << FullRange);
1608 return ExprError(
Diag(TyBeginLoc, diag::err_auto_expr_deduction_failure)
1609 << Ty << Deduce->
getType() << FullRange
1623 RParenOrBraceLoc, ListInitialization);
1629 if (Exprs.size() == 1 && !ListInitialization &&
1630 !isa<InitListExpr>(Exprs[0])) {
1631 Expr *Arg = Exprs[0];
1639 if (!ListInitialization)
1640 return ExprError(
Diag(TyBeginLoc, diag::err_value_init_for_array_type)
1650 return ExprError(
Diag(TyBeginLoc, diag::err_init_for_function_type)
1651 << Ty << FullRange);
1660 if (ListInitialization &&
1661 cast<InitListExpr>(Exprs[0])->getNumInits() == 0) {
1665 Exprs[0]->getBeginLoc(), Exprs[0]->getEndLoc());
1668 diag::err_invalid_incomplete_type_use,
1682 Inner = BTE->getSubExpr();
1683 if (
auto *CE = dyn_cast<ConstantExpr>(Inner);
1684 CE && CE->isImmediateInvocation())
1685 Inner = CE->getSubExpr();
1686 if (!isa<CXXTemporaryObjectExpr>(Inner) &&
1687 !isa<CXXScalarValueInitExpr>(Inner)) {
1699 :
SourceRange(LParenOrBraceLoc, RParenOrBraceLoc);
1721 for (
const auto *
D : R) {
1722 if (
const auto *FD = dyn_cast<FunctionDecl>(
D)) {
1739 return llvm::none_of(PreventedBy, [&](
const FunctionDecl *FD) {
1741 "Only single-operand functions should be in PreventedBy");
1756 unsigned UsualParams = 1;
1758 if (S.
getLangOpts().SizedDeallocation && UsualParams < FD->getNumParams() &&
1764 if (S.
getLangOpts().AlignedAllocation && UsualParams < FD->getNumParams() &&
1774 struct UsualDeallocFnInfo {
1775 UsualDeallocFnInfo() :
Found(), FD(nullptr) {}
1783 unsigned NumBaseParams = 1;
1784 if (FD->isDestroyingOperatorDelete()) {
1789 if (NumBaseParams < FD->getNumParams() &&
1791 FD->getParamDecl(NumBaseParams)->getType(),
1797 if (NumBaseParams < FD->getNumParams() &&
1798 FD->getParamDecl(NumBaseParams)->getType()->isAlignValT()) {
1800 HasAlignValT =
true;
1809 explicit operator bool()
const {
return FD; }
1811 bool isBetterThan(
const UsualDeallocFnInfo &
Other,
bool WantSize,
1812 bool WantAlign)
const {
1816 if (Destroying !=
Other.Destroying)
1823 if (HasAlignValT !=
Other.HasAlignValT)
1824 return HasAlignValT == WantAlign;
1826 if (HasSizeT !=
Other.HasSizeT)
1827 return HasSizeT == WantSize;
1830 return CUDAPref >
Other.CUDAPref;
1835 bool Destroying, HasSizeT, HasAlignValT;
1855 UsualDeallocFnInfo Best;
1857 for (
auto I = R.
begin(),
E = R.
end(); I !=
E; ++I) {
1858 UsualDeallocFnInfo Info(S, I.getPair());
1866 BestFns->push_back(Info);
1870 if (Best.isBetterThan(Info, WantSize, WantAlign))
1875 if (BestFns && Info.isBetterThan(Best, WantSize, WantAlign))
1880 BestFns->push_back(Info);
1894 if (!record)
return false;
1907 if (ops.
empty())
return false;
1919 return Best && Best.HasSizeT;
1927 std::optional<Expr *> ArraySize;
1929 if (
D.getNumTypeObjects() > 0 &&
1932 if (
D.getDeclSpec().hasAutoTypeSpec())
1943 D.DropFirstTypeObject();
1948 for (
unsigned I = 0, N =
D.getNumTypeObjects(); I < N; ++I) {
1953 if (
Expr *NumElts = (
Expr *)Array.NumElts) {
1954 if (!NumElts->isTypeDependent() && !NumElts->isValueDependent()) {
1969 NumElts,
nullptr, diag::err_new_array_nonconst,
AllowFold)
1981 if (
D.isInvalidType())
1986 DirectInitRange = List->getSourceRange();
1989 PlacementLParen, PlacementArgs, PlacementRParen,
1990 TypeIdParens, AllocType, TInfo, ArraySize, DirectInitRange,
1999 return IsCPlusPlus20 || PLE->getNumExprs() == 0;
2000 if (isa<ImplicitValueInitExpr>(
Init))
2003 return !CCE->isListInitialization() &&
2004 CCE->getConstructor()->isDefaultConstructor();
2006 assert(isa<InitListExpr>(
Init) &&
2007 "Shouldn't create list CXXConstructExprs for arrays.");
2019 std::optional<unsigned> AlignmentParam;
2032 StringRef OSName = AvailabilityAttr::getPlatformNameSourceSpelling(
2037 bool IsDelete = Kind == OO_Delete || Kind == OO_Array_Delete;
2038 Diag(
Loc, diag::err_aligned_allocation_unavailable)
2040 << OSVersion.getAsString() << OSVersion.empty();
2041 Diag(
Loc, diag::note_silence_aligned_allocation_unavailable);
2051 std::optional<Expr *> ArraySize,
2057 if (DirectInitRange.
isValid()) {
2058 assert(
Initializer &&
"Have parens but no initializer.");
2060 }
else if (isa_and_nonnull<InitListExpr>(
Initializer))
2065 "Initializer expression that cannot have been implicitly created.");
2072 "paren init for non-call init");
2073 Exprs =
MultiExprArg(List->getExprs(), List->getNumExprs());
2080 switch (InitStyle) {
2091 DirectInitRange.
getEnd());
2097 llvm_unreachable(
"Unknown initialization kind");
2102 if (Deduced && !Deduced->isDeduced() &&
2103 isa<DeducedTemplateSpecializationType>(Deduced)) {
2106 Diag(*ArraySize ? (*ArraySize)->getExprLoc() : TypeRange.
getBegin(),
2107 diag::err_deduced_class_template_compound_type)
2109 << (*ArraySize ? (*ArraySize)->getSourceRange() : TypeRange));
2114 AllocTypeInfo, Entity, Kind, Exprs);
2117 }
else if (Deduced && !Deduced->isDeduced()) {
2121 auto *ILE = cast<InitListExpr>(Exprs[0]);
2122 Inits =
MultiExprArg(ILE->getInits(), ILE->getNumInits());
2126 return ExprError(
Diag(StartLoc, diag::err_auto_new_requires_ctor_arg)
2127 << AllocType << TypeRange);
2128 if (Inits.size() > 1) {
2129 Expr *FirstBad = Inits[1];
2131 diag::err_auto_new_ctor_multiple_expressions)
2132 << AllocType << TypeRange);
2136 << AllocType << TypeRange;
2137 Expr *Deduce = Inits[0];
2138 if (isa<InitListExpr>(Deduce))
2141 << Braced << AllocType << TypeRange);
2148 return ExprError(
Diag(StartLoc, diag::err_auto_new_deduction_failure)
2149 << AllocType << Deduce->
getType() << TypeRange
2167 AllocType = Array->getElementType();
2187 if (ArraySize && *ArraySize &&
2188 (*ArraySize)->getType()->isNonOverloadPlaceholderType()) {
2191 ArraySize = result.
get();
2200 std::optional<uint64_t> KnownArraySize;
2201 if (ArraySize && *ArraySize && !(*ArraySize)->isTypeDependent()) {
2210 (*ArraySize)->getType()->getAs<
RecordType>())
2212 Diag(StartLoc, diag::warn_cxx98_compat_array_size_conversion)
2213 << (*ArraySize)->getType() << 0 <<
"'size_t'";
2220 SizeConvertDiagnoser(
Expr *ArraySize)
2222 ArraySize(ArraySize) {}
2226 return S.
Diag(
Loc, diag::err_array_size_not_integral)
2232 return S.
Diag(
Loc, diag::err_array_size_incomplete_type)
2238 return S.
Diag(
Loc, diag::err_array_size_explicit_conversion) <<
T << ConvTy;
2249 return S.
Diag(
Loc, diag::err_array_size_ambiguous_conversion) <<
T;
2263 ? diag::warn_cxx98_compat_array_size_conversion
2264 : diag::ext_array_size_conversion)
2267 } SizeDiagnoser(*ArraySize);
2275 ArraySize = ConvertedSize.
get();
2276 QualType SizeType = (*ArraySize)->getType();
2294 if (std::optional<llvm::APSInt>
Value =
2295 (*ArraySize)->getIntegerConstantExpr(
Context)) {
2296 if (
Value->isSigned() &&
Value->isNegative()) {
2298 diag::err_typecheck_negative_array_size)
2299 << (*ArraySize)->getSourceRange());
2303 unsigned ActiveSizeBits =
2307 Diag((*ArraySize)->getBeginLoc(), diag::err_array_too_large)
2311 KnownArraySize =
Value->getZExtValue();
2312 }
else if (TypeIdParens.
isValid()) {
2314 Diag((*ArraySize)->getBeginLoc(), diag::ext_new_paren_array_nonconst)
2315 << (*ArraySize)->getSourceRange()
2328 unsigned Alignment =
2331 bool PassAlignment =
getLangOpts().AlignedAllocation &&
2332 Alignment > NewAlignment;
2342 AllocType, ArraySize.has_value(), PassAlignment, PlacementArgs,
2343 OperatorNew, OperatorDelete))
2348 bool UsualArrayDeleteWantsSize =
false;
2350 UsualArrayDeleteWantsSize =
2363 unsigned NumImplicitArgs = PassAlignment ? 2 : 1;
2365 NumImplicitArgs, PlacementArgs, AllPlaceArgs,
2369 if (!AllPlaceArgs.empty())
2370 PlacementArgs = AllPlaceArgs;
2380 llvm::APInt SingleEltSize(
2384 std::optional<llvm::APInt> AllocationSize;
2387 AllocationSize = SingleEltSize;
2391 AllocationSize = llvm::APInt(SizeTyWidth, *KnownArraySize)
2392 .umul_ov(SingleEltSize, Overflow);
2396 "Expected that all the overflows would have been handled already.");
2400 Context, AllocationSize.value_or(llvm::APInt::getZero(SizeTyWidth)),
2419 CK_IntegralCast, &AlignmentLiteral,
2424 CallArgs.reserve(NumImplicitArgs + PlacementArgs.size());
2425 CallArgs.emplace_back(AllocationSize
2426 ?
static_cast<Expr *
>(&AllocationSizeLiteral)
2427 : &OpaqueAllocationSize);
2429 CallArgs.emplace_back(&DesiredAlignment);
2430 CallArgs.insert(CallArgs.end(), PlacementArgs.begin(), PlacementArgs.end());
2434 checkCall(OperatorNew, Proto,
nullptr, CallArgs,
2435 false, StartLoc,
Range, CallType);
2439 if (PlacementArgs.empty() && !PassAlignment &&
2440 (OperatorNew->isImplicit() ||
2441 (OperatorNew->getBeginLoc().isValid() &&
2443 if (Alignment > NewAlignment)
2444 Diag(StartLoc, diag::warn_overaligned_type)
2456 SourceRange InitRange(Exprs.front()->getBeginLoc(),
2457 Exprs.back()->getEndLoc());
2458 Diag(StartLoc, diag::err_new_array_init_args) << InitRange;
2478 InitType = AllocType;
2491 dyn_cast_or_null<CXXBindTemporaryExpr>(FullInit.
get()))
2492 FullInit = Binder->getSubExpr();
2499 if (ArraySize && !*ArraySize) {
2507 Diag(TypeRange.
getEnd(), diag::err_new_array_size_unknown_from_init)
2519 if (OperatorDelete) {
2526 PassAlignment, UsualArrayDeleteWantsSize,
2527 PlacementArgs, TypeIdParens, ArraySize, InitStyle,
2537 return Diag(
Loc, diag::err_bad_new_type)
2538 << AllocType << 0 << R;
2540 return Diag(
Loc, diag::err_bad_new_type)
2541 << AllocType << 1 << R;
2544 Loc, AllocType, diag::err_new_incomplete_or_sizeless_type, R))
2547 diag::err_allocation_of_abstract_type))
2550 return Diag(
Loc, diag::err_variably_modified_new_type)
2554 return Diag(
Loc, diag::err_address_space_qualified_new)
2562 return Diag(
Loc, diag::err_arc_new_array_without_ownership)
2577 Alloc != AllocEnd; ++Alloc) {
2580 NamedDecl *
D = (*Alloc)->getUnderlyingDecl();
2614 if (PassAlignment) {
2615 PassAlignment =
false;
2617 Args.erase(Args.begin() + 1);
2619 Operator, &Candidates, AlignArg,
2645 (Args[1]->getType()->isObjectPointerType() ||
2646 Args[1]->getType()->isArrayType())) {
2647 S.
Diag(R.
getNameLoc(), diag::err_need_header_before_placement_new)
2662 if (AlignedCandidates) {
2664 return C.Function->getNumParams() > 1 &&
2665 C.Function->getParamDecl(1)->getType()->isAlignValT();
2669 AlignedArgs.reserve(Args.size() + 1);
2670 AlignedArgs.push_back(Args[0]);
2671 AlignedArgs.push_back(AlignArg);
2672 AlignedArgs.append(Args.begin() + 1, Args.end());
2685 if (AlignedCandidates)
2686 AlignedCandidates->
NoteCandidates(S, AlignedArgs, AlignedCands,
"",
2696 S.
PDiag(diag::err_ovl_ambiguous_call)
2705 Candidates, Best->Function, Args);
2709 llvm_unreachable(
"Unreachable, bad result from BestViableFunction");
2731 AllocArgs.reserve((PassAlignment ? 2 : 1) + PlaceArgs.size());
2741 AllocArgs.push_back(&Size);
2744 if (PassAlignment) {
2750 AllocArgs.push_back(&Align);
2752 AllocArgs.insert(AllocArgs.end(), PlaceArgs.begin(), PlaceArgs.end());
2761 IsArray ? OO_Array_New : OO_New);
2793 if (PlaceArgs.empty()) {
2794 Diag(StartLoc, diag::err_openclcxx_not_supported) <<
"default new";
2796 Diag(StartLoc, diag::err_openclcxx_placement_new);
2801 assert(!R.
empty() &&
"implicitly declared allocation functions not found");
2802 assert(!R.
isAmbiguous() &&
"global allocation functions are ambiguous");
2808 OperatorNew,
nullptr,
2815 OperatorDelete =
nullptr;
2822 OperatorNew->getDeclName().getCXXOverloadedOperator() == OO_Array_New
2850 while (Filter.hasNext()) {
2851 auto *FD = dyn_cast<FunctionDecl>(Filter.next()->getUnderlyingDecl());
2852 if (FD && FD->isDestroyingOperatorDelete())
2858 bool FoundGlobalDelete = FoundDelete.
empty();
2859 if (FoundDelete.
empty()) {
2886 bool isPlacementNew = !PlaceArgs.empty() || OperatorNew->param_size() != 1 ||
2887 OperatorNew->isVariadic();
2889 if (isPlacementNew) {
2906 for (
unsigned I = 1, N = Proto->getNumParams(); I < N; ++I)
2907 ArgTypes.push_back(Proto->getParamType(I));
2911 EPI.
Variadic = Proto->isVariadic();
2913 ExpectedFunctionType
2918 DEnd = FoundDelete.
end();
2922 dyn_cast<FunctionTemplateDecl>((*D)->getUnderlyingDecl())) {
2930 Fn = cast<FunctionDecl>((*D)->getUnderlyingDecl());
2933 ExpectedFunctionType,
2935 ExpectedFunctionType))
2936 Matches.push_back(std::make_pair(
D.getPair(), Fn));
2952 *
this, FoundDelete, FoundGlobalDelete,
2956 Matches.push_back(std::make_pair(Selected.Found, Selected.FD));
2960 for (
auto Fn : BestDeallocFns)
2961 Matches.push_back(std::make_pair(Fn.Found, Fn.FD));
2969 if (Matches.size() == 1) {
2970 OperatorDelete = Matches[0].second;
2980 UsualDeallocFnInfo Info(*
this,
2986 bool IsSizedDelete = Info.HasSizeT;
2987 if (IsSizedDelete && !FoundGlobalDelete) {
2988 auto NonSizedDelete =
2991 if (NonSizedDelete && !NonSizedDelete.HasSizeT &&
2992 NonSizedDelete.HasAlignValT == Info.HasAlignValT)
2993 IsSizedDelete =
false;
2996 if (IsSizedDelete) {
3000 PlaceArgs.back()->getEndLoc());
3001 Diag(StartLoc, diag::err_placement_new_non_placement_delete) << R;
3002 if (!OperatorDelete->isImplicit())
3003 Diag(OperatorDelete->getLocation(), diag::note_previous_decl)
3010 }
else if (!Matches.empty()) {
3014 Diag(StartLoc, diag::warn_ambiguous_suitable_delete_function_found)
3015 << DeleteName << AllocElemType;
3017 for (
auto &Match : Matches)
3018 Diag(Match.second->getLocation(),
3019 diag::note_member_declared_here) << DeleteName;
3083 if (TheGlobalModuleFragment) {
3098 if (TheGlobalModuleFragment) {
3099 AlignValT->setModuleOwnershipKind(
3101 AlignValT->setLocalOwningModule(TheGlobalModuleFragment);
3106 AlignValT->setImplicit(
true);
3119 Params.push_back(Param);
3122 bool HasSizedVariant =
getLangOpts().SizedDeallocation &&
3123 (Kind == OO_Delete || Kind == OO_Array_Delete);
3124 bool HasAlignedVariant =
getLangOpts().AlignedAllocation;
3126 int NumSizeVariants = (HasSizedVariant ? 2 : 1);
3127 int NumAlignVariants = (HasAlignedVariant ? 2 : 1);
3128 for (
int Sized = 0; Sized < NumSizeVariants; ++Sized) {
3130 Params.push_back(SizeT);
3132 for (
int Aligned = 0; Aligned < NumAlignVariants; ++Aligned) {
3145 DeclareGlobalAllocationFunctions(OO_New, VoidPtr, SizeT);
3146 DeclareGlobalAllocationFunctions(OO_Array_New, VoidPtr, SizeT);
3147 DeclareGlobalAllocationFunctions(OO_Delete,
Context.
VoidTy, VoidPtr);
3148 DeclareGlobalAllocationFunctions(OO_Array_Delete,
Context.
VoidTy, VoidPtr);
3151 PopGlobalModuleFragment();
3164 Alloc != AllocEnd; ++Alloc) {
3168 if (
Func->getNumParams() == Params.size()) {
3170 for (
auto *
P :
Func->parameters())
3171 FuncParams.push_back(
3177 Func->setVisibleDespiteOwningModule();
3185 false,
false,
true));
3188 bool HasBadAllocExceptionSpec
3189 = (Name.getCXXOverloadedOperator() == OO_New ||
3190 Name.getCXXOverloadedOperator() == OO_Array_New);
3191 if (HasBadAllocExceptionSpec) {
3194 assert(
StdBadAlloc &&
"Must have std::bad_alloc declared");
3206 auto CreateAllocationFunctionDecl = [&](
Attr *ExtraAttr) {
3212 Alloc->setImplicit();
3214 Alloc->setVisibleDespiteOwningModule();
3216 if (HasBadAllocExceptionSpec &&
getLangOpts().NewInfallible &&
3219 ReturnsNonNullAttr::CreateImplicit(
Context, Alloc->getLocation()));
3231 if (TheGlobalModuleFragment) {
3232 Alloc->setModuleOwnershipKind(
3234 Alloc->setLocalOwningModule(TheGlobalModuleFragment);
3238 Alloc->addAttr(VisibilityAttr::CreateImplicit(
3240 ? VisibilityAttr::Hidden
3242 ? VisibilityAttr::Protected
3243 : VisibilityAttr::Default));
3250 ParamDecls.back()->setImplicit();
3252 Alloc->setParams(ParamDecls);
3254 Alloc->addAttr(ExtraAttr);
3261 CreateAllocationFunctionDecl(
nullptr);
3265 CreateAllocationFunctionDecl(CUDAHostAttr::CreateImplicit(
Context));
3266 CreateAllocationFunctionDecl(CUDADeviceAttr::CreateImplicit(
Context));
3271 bool CanProvideSize,
3285 assert(
Result.FD &&
"operator delete missing from global scope?");
3297 return OperatorDelete;
3309 bool WantSize,
bool WantAligned) {
3314 if (
Found.isAmbiguous())
3317 Found.suppressDiagnostics();
3327 Overaligned, &Matches);
3330 if (Matches.size() == 1) {
3331 Operator = cast<CXXMethodDecl>(Matches[0].FD);
3337 Diag(StartLoc, diag::err_deleted_function_use)
3338 << (Msg !=
nullptr) << (Msg ? Msg->
getString() : StringRef());
3354 if (!Matches.empty()) {
3356 Diag(StartLoc, diag::err_ambiguous_suitable_delete_member_function_found)
3358 for (
auto &Match : Matches)
3359 Diag(Match.FD->getLocation(), diag::note_member_declared_here) << Name;
3366 if (!
Found.empty()) {
3368 Diag(StartLoc, diag::err_no_suitable_delete_member_function_found)
3373 diag::note_member_declared_here) << Name;
3385class MismatchingNewDeleteDetector {
3387 enum MismatchResult {
3393 MemberInitMismatches,
3402 explicit MismatchingNewDeleteDetector(
bool EndOfTU)
3403 : Field(nullptr), IsArrayForm(
false), EndOfTU(EndOfTU),
3404 HasUndefinedConstructors(
false) {}
3421 MismatchResult analyzeField(
FieldDecl *Field,
bool DeleteWasArrayForm);
3431 bool HasUndefinedConstructors;
3443 MismatchResult analyzeMemberExpr(
const MemberExpr *ME);
3466 MismatchResult analyzeInClassInitializer();
3470MismatchingNewDeleteDetector::MismatchResult
3471MismatchingNewDeleteDetector::analyzeDeleteExpr(
const CXXDeleteExpr *DE) {
3473 assert(DE &&
"Expected delete-expression");
3476 if (
const MemberExpr *ME = dyn_cast<const MemberExpr>(
E)) {
3477 return analyzeMemberExpr(ME);
3478 }
else if (
const DeclRefExpr *
D = dyn_cast<const DeclRefExpr>(
E)) {
3479 if (!hasMatchingVarInit(
D))
3480 return VarInitMismatches;
3486MismatchingNewDeleteDetector::getNewExprFromInitListOrExpr(
const Expr *
E) {
3487 assert(
E !=
nullptr &&
"Expected a valid initializer expression");
3489 if (
const InitListExpr *ILE = dyn_cast<const InitListExpr>(
E)) {
3490 if (ILE->getNumInits() == 1)
3491 E = dyn_cast<const CXXNewExpr>(ILE->getInit(0)->IgnoreParenImpCasts());
3494 return dyn_cast_or_null<const CXXNewExpr>(
E);
3497bool MismatchingNewDeleteDetector::hasMatchingNewInCtorInit(
3501 (NE = getNewExprFromInitListOrExpr(CI->
getInit()))) {
3502 if (
NE->isArray() == IsArrayForm)
3505 NewExprs.push_back(NE);
3510bool MismatchingNewDeleteDetector::hasMatchingNewInCtor(
3516 HasUndefinedConstructors =
true;
3519 for (
const auto *CI : cast<const CXXConstructorDecl>(
Definition)->inits()) {
3520 if (hasMatchingNewInCtorInit(CI))
3526MismatchingNewDeleteDetector::MismatchResult
3527MismatchingNewDeleteDetector::analyzeInClassInitializer() {
3528 assert(Field !=
nullptr &&
"This should be called only for members");
3529 const Expr *InitExpr =
Field->getInClassInitializer();
3531 return EndOfTU ? NoMismatch : AnalyzeLater;
3532 if (
const CXXNewExpr *NE = getNewExprFromInitListOrExpr(InitExpr)) {
3533 if (
NE->isArray() != IsArrayForm) {
3534 NewExprs.push_back(NE);
3535 return MemberInitMismatches;
3541MismatchingNewDeleteDetector::MismatchResult
3542MismatchingNewDeleteDetector::analyzeField(
FieldDecl *Field,
3543 bool DeleteWasArrayForm) {
3544 assert(Field !=
nullptr &&
"Analysis requires a valid class member.");
3545 this->Field =
Field;
3546 IsArrayForm = DeleteWasArrayForm;
3548 for (
const auto *CD : RD->
ctors()) {
3549 if (hasMatchingNewInCtor(CD))
3552 if (HasUndefinedConstructors)
3553 return EndOfTU ? NoMismatch : AnalyzeLater;
3554 if (!NewExprs.empty())
3555 return MemberInitMismatches;
3556 return Field->hasInClassInitializer() ? analyzeInClassInitializer()
3560MismatchingNewDeleteDetector::MismatchResult
3561MismatchingNewDeleteDetector::analyzeMemberExpr(
const MemberExpr *ME) {
3562 assert(ME !=
nullptr &&
"Expected a member expression");
3564 return analyzeField(F, IsArrayForm);
3568bool MismatchingNewDeleteDetector::hasMatchingVarInit(
const DeclRefExpr *
D) {
3570 if (
const VarDecl *VD = dyn_cast<const VarDecl>(
D->getDecl())) {
3571 if (VD->hasInit() && (NE = getNewExprFromInitListOrExpr(VD->getInit())) &&
3572 NE->isArray() != IsArrayForm) {
3573 NewExprs.push_back(NE);
3576 return NewExprs.empty();
3581 const MismatchingNewDeleteDetector &Detector) {
3584 if (!Detector.IsArrayForm)
3593 SemaRef.
Diag(DeleteLoc, diag::warn_mismatched_delete_new)
3594 << Detector.IsArrayForm << H;
3596 for (
const auto *NE : Detector.NewExprs)
3597 SemaRef.
Diag(NE->getExprLoc(), diag::note_allocated_here)
3598 << Detector.IsArrayForm;
3601void Sema::AnalyzeDeleteExprMismatch(
const CXXDeleteExpr *DE) {
3604 MismatchingNewDeleteDetector Detector(
false);
3605 switch (Detector.analyzeDeleteExpr(DE)) {
3606 case MismatchingNewDeleteDetector::VarInitMismatches:
3607 case MismatchingNewDeleteDetector::MemberInitMismatches: {
3611 case MismatchingNewDeleteDetector::AnalyzeLater: {
3616 case MismatchingNewDeleteDetector::NoMismatch:
3622 bool DeleteWasArrayForm) {
3623 MismatchingNewDeleteDetector Detector(
true);
3624 switch (Detector.analyzeField(Field, DeleteWasArrayForm)) {
3625 case MismatchingNewDeleteDetector::VarInitMismatches:
3626 llvm_unreachable(
"This analysis should have been done for class members.");
3627 case MismatchingNewDeleteDetector::AnalyzeLater:
3628 llvm_unreachable(
"Analysis cannot be postponed any point beyond end of "
3629 "translation unit.");
3630 case MismatchingNewDeleteDetector::MemberInitMismatches:
3633 case MismatchingNewDeleteDetector::NoMismatch:
3640 bool ArrayForm,
Expr *ExE) {
3650 bool ArrayFormAsWritten = ArrayForm;
3651 bool UsualArrayDeleteWantsSize =
false;
3669 if (ConvPtrType->getPointeeType()->isIncompleteOrObjectType())
3676 return S.
Diag(
Loc, diag::err_delete_operand) <<
T;
3681 return S.
Diag(
Loc, diag::err_delete_incomplete_class_type) <<
T;
3687 return S.
Diag(
Loc, diag::err_delete_explicit_conversion) <<
T << ConvTy;
3698 return S.
Diag(
Loc, diag::err_ambiguous_delete_operand) <<
T;
3710 llvm_unreachable(
"conversion functions are permitted");
3718 if (!Converter.match(
Type))
3729 diag::err_address_space_qualified_delete)
3739 Diag(StartLoc,
LangOpts.CPlusPlus26 ? diag::err_delete_incomplete
3740 : diag::ext_delete_void_ptr_operand)
3753 ? diag::err_delete_incomplete
3754 : diag::warn_delete_incomplete,
3757 PointeeRD = cast<CXXRecordDecl>(RT->getDecl());
3762 Diag(StartLoc, diag::warn_delete_array_type)
3769 ArrayForm ? OO_Array_Delete : OO_Delete);
3783 UsualArrayDeleteWantsSize =
3788 else if (isa_and_nonnull<CXXMethodDecl>(OperatorDelete))
3789 UsualArrayDeleteWantsSize =
3790 UsualDeallocFnInfo(*
this,
3809 if (!OperatorDelete) {
3811 Diag(StartLoc, diag::err_openclcxx_not_supported) <<
"default delete";
3816 bool CanProvideSize =
3817 IsComplete && (!ArrayForm || UsualArrayDeleteWantsSize ||
3823 Overaligned, DeleteName);
3826 if (OperatorDelete->isInvalidDecl())
3833 bool IsVirtualDelete =
false;
3837 PDiag(diag::err_access_dtor) << PointeeElem);
3838 IsVirtualDelete = Dtor->isVirtual();
3848 QualType ParamType = OperatorDelete->getParamDecl(0)->getType();
3868 UsualArrayDeleteWantsSize, OperatorDelete, Ex.
get(), StartLoc);
3869 AnalyzeDeleteExprMismatch(
Result);
3878 IsDelete ? OO_Delete : OO_New);
3882 assert(!R.
empty() &&
"implicitly declared allocation functions not found");
3883 assert(!R.
isAmbiguous() &&
"global allocation functions are ambiguous");
3892 FnOvl != FnOvlEnd; ++FnOvl) {
3895 NamedDecl *
D = (*FnOvl)->getUnderlyingDecl();
3919 "class members should not be considered");
3922 S.
Diag(R.
getNameLoc(), diag::err_builtin_operator_new_delete_not_usual)
3923 << (IsDelete ? 1 : 0) <<
Range;
3924 S.
Diag(FnDecl->
getLocation(), diag::note_non_usual_function_declared_here)
3936 S.
PDiag(diag::err_ovl_no_viable_function_in_call)
3944 S.
PDiag(diag::err_ovl_ambiguous_call)
3951 Candidates, Best->Function, Args);
3954 llvm_unreachable(
"Unreachable, bad result from BestViableFunction");
3959 CallExpr *TheCall = cast<CallExpr>(TheCallResult.
get());
3962 << (IsDelete ?
"__builtin_operator_delete" :
"__builtin_operator_new")
3972 OperatorNewOrDelete))
3974 assert(OperatorNewOrDelete &&
"should be found");
3980 for (
unsigned i = 0; i != TheCall->
getNumArgs(); ++i) {
3991 assert(Callee &&
Callee->getCastKind() == CK_BuiltinFnToFnPtr &&
3992 "Callee expected to be implicit cast to a builtin function pointer");
3995 return TheCallResult;
3999 bool IsDelete,
bool CallCanBeVirtual,
4000 bool WarnOnNonAbstractTypes,
4027 Diag(
Loc, diag::warn_delete_abstract_non_virtual_dtor) << (IsDelete ? 0 : 1)
4029 }
else if (WarnOnNonAbstractTypes) {
4032 Diag(
Loc, diag::warn_delete_non_virtual_dtor) << (IsDelete ? 0 : 1)
4036 std::string TypeStr;
4038 Diag(DtorLoc, diag::note_delete_non_virtual)
4066 diag::err_invalid_use_of_function_type)
4070 diag::err_invalid_use_of_array_type)
4088 llvm_unreachable(
"unexpected condition kind");
4114 diag::err_constexpr_if_condition_expression_is_not_constant);
4122 From = Cast->getSubExpr();
4134 if (!ToPtrType->getPointeeType().hasQualifiers()) {
4135 switch (StrLit->getKind()) {
4142 return (ToPointeeType->getKind() == BuiltinType::Char_U ||
4143 ToPointeeType->getKind() == BuiltinType::Char_S);
4148 assert(
false &&
"Unevaluated string literal in expression");
4163 bool HadMultipleCandidates,
4166 default: llvm_unreachable(
"Unhandled cast kind!");
4167 case CK_ConstructorConversion: {
4172 diag::err_allocation_of_abstract_type))
4185 CastLoc, Ty, FoundDecl, cast<CXXConstructorDecl>(Method),
4186 ConstructorArgs, HadMultipleCandidates,
4187 false,
false,
false,
4195 case CK_UserDefinedConversion: {
4205 HadMultipleCandidates);
4210 CK_UserDefinedConversion,
Result.get(),
4211 nullptr,
Result.get()->getValueKind(),
4244 assert(FD &&
"no conversion function for user-defined conversion seq");
4246 CastKind = CK_UserDefinedConversion;
4254 CastKind = CK_ConstructorConversion;
4281 From = CastArg.
get();
4295 PDiag(diag::err_typecheck_ambiguous_condition)
4301 llvm_unreachable(
"bad conversion");
4308 ToType, From->
getType(), From, Action);
4309 assert(Diagnosed &&
"failed to diagnose bad conversion"); (void)Diagnosed;
4323 ElType = ToVec->getElementType();
4360 false,
false,
false,
4367 false,
false,
false,
4400 ToAtomicType = ToType;
4401 ToType = ToAtomic->getValueType();
4404 QualType InitialFromType = FromType;
4406 switch (SCS.
First) {
4409 FromType = FromAtomic->getValueType().getUnqualifiedType();
4422 From = FromRes.
get();
4442 "FromType must be ArrayParameterType in ICK_HLSL_Array_RValue \
4443 if it is not ToType");
4460 llvm_unreachable(
"Improper first standard conversion");
4501 "only enums with fixed underlying type can promote to bool");
4531 CK = CK_FloatingComplexCast;
4533 CK = CK_FloatingComplexToIntegralComplex;
4535 CK = CK_IntegralComplexToFloatingComplex;
4537 CK = CK_IntegralComplexCast;
4563 "Attempting implicit fixed point conversion without a fixed "
4568 nullptr, CCK).
get();
4572 nullptr, CCK).
get();
4576 nullptr, CCK).
get();
4580 nullptr, CCK).
get();
4584 nullptr, CCK).
get();
4588 nullptr, CCK).
get();
4593 nullptr, CCK).
get();
4603 diag::ext_typecheck_convert_incompatible_pointer)
4608 diag::ext_typecheck_convert_incompatible_pointer)
4615 }
else if (
getLangOpts().allowsNonTrivialObjCLifetimeQualifiers() &&
4616 !
ObjC().CheckObjCARCUnavailableWeakConversion(ToType,
4621 Diag(From->
getBeginLoc(), diag::err_arc_convesion_of_weak_unavailable)
4650 if (Kind == CK_BlockPointerToObjCPointerCast) {
4712 &BasePath, CCK).
get();
4741 QualType ElType = ToComplex->getElementType();
4749 isFloatingComplex ? CK_FloatingCast : CK_FloatingToIntegral).
get();
4753 isFloatingComplex ? CK_IntegralToFloating : CK_IntegralCast).
get();
4757 isFloatingComplex ? CK_FloatingRealToComplex
4758 : CK_IntegralRealToComplex).
get();
4763 QualType ElType = FromComplex->getElementType();
4768 isFloatingComplex ? CK_FloatingComplexToReal
4769 : CK_IntegralComplexToReal,
4778 isFloatingComplex ? CK_FloatingCast
4779 : CK_IntegralToFloating,
4785 isFloatingComplex ? CK_FloatingToIntegral
4802 AddrSpaceL != AddrSpaceR ? CK_AddressSpaceConversion : CK_BitCast;
4815 From = FromRes.
get();
4817 "Improper transparent union conversion");
4825 CK_ZeroToOCLOpaqueType,
4840 llvm_unreachable(
"Improper second standard conversion");
4849 "Dimension conversion for matrix types is not implemented yet.");
4851 "Dimension conversion output must be vector or scalar type.");
4868 QualType TruncTy = FromVec->getElementType();
4879 llvm_unreachable(
"Improper element standard conversion");
4883 switch (SCS.
Third) {
4906 CK = CK_AddressSpaceConversion;
4911 CK = CK_AddressSpaceConversion;
4917 << InitialFromType << ToType;
4928 ? diag::ext_deprecated_string_literal_conversion
4929 : diag::warn_deprecated_string_literal_conversion)
4937 llvm_unreachable(
"Improper third standard conversion");
4942 if (!ToAtomicType.
isNull()) {
4978 S.
Diag(
T->getTypeLoc().getBeginLoc(), diag::err_vla_unsupported)
4979 << 1 << TypeTraitID;
4992 S.
Diag(
T->getTypeLoc().getBeginLoc(), diag::err_atomic_unsupported)
5016 default: llvm_unreachable(
"not a UTT");
5018 case UTT_IsCompleteType:
5026 case UTT_IsIntegral:
5027 case UTT_IsFloatingPoint:
5029 case UTT_IsBoundedArray:
5031 case UTT_IsReferenceable:
5032 case UTT_IsLvalueReference:
5033 case UTT_IsRvalueReference:
5034 case UTT_IsMemberFunctionPointer:
5035 case UTT_IsMemberObjectPointer:
5037 case UTT_IsScopedEnum:
5040 case UTT_IsFunction:
5041 case UTT_IsReference:
5042 case UTT_IsArithmetic:
5043 case UTT_IsFundamental:
5046 case UTT_IsCompound:
5047 case UTT_IsMemberPointer:
5048 case UTT_IsTypedResourceElementCompatible:
5057 case UTT_IsVolatile:
5059 case UTT_IsUnboundedArray:
5060 case UTT_IsUnsigned:
5063 case UTT_IsInterfaceClass:
5069 case UTT_IsPolymorphic:
5070 case UTT_IsAbstract:
5074 Loc, ArgTy, diag::err_incomplete_type_used_in_type_trait_expr);
5083 Loc, ArgTy, diag::err_incomplete_type_used_in_type_trait_expr);
5087 case UTT_IsAggregate:
5088 case UTT_IsImplicitLifetime:
5093 Loc, ArgTy, diag::err_incomplete_type_used_in_type_trait_expr);
5098 case UTT_IsTriviallyCopyable:
5099 case UTT_IsStandardLayout:
5102 case UTT_IsBitwiseCloneable:
5105 case UTT_IsTriviallyRelocatable:
5106 case UTT_IsTriviallyEqualityComparable:
5107 case UTT_CanPassInRegs:
5111 case UTT_HasNothrowAssign:
5112 case UTT_HasNothrowMoveAssign:
5113 case UTT_HasNothrowConstructor:
5114 case UTT_HasNothrowCopy:
5115 case UTT_HasTrivialAssign:
5116 case UTT_HasTrivialMoveAssign:
5117 case UTT_HasTrivialDefaultConstructor:
5118 case UTT_HasTrivialMoveConstructor:
5119 case UTT_HasTrivialCopy:
5120 case UTT_HasTrivialDestructor:
5121 case UTT_HasVirtualDestructor:
5125 case UTT_HasUniqueObjectRepresentations:
5131 case UTT_IsDestructible:
5132 case UTT_IsNothrowDestructible:
5133 case UTT_IsTriviallyDestructible:
5134 case UTT_IsIntangibleType:
5139 Loc, ArgTy, diag::err_incomplete_type_used_in_type_trait_expr);
5150 if ((RD->*HasTrivial)() && !(RD->*HasNonTrivial)())
5156 if (
Self.LookupQualifiedName(Res, RD)) {
5157 bool FoundOperator =
false;
5160 Op != OpEnd; ++Op) {
5161 if (isa<FunctionTemplateDecl>(*Op))
5165 if((Operator->*IsDesiredOp)()) {
5166 FoundOperator =
true;
5168 CPT =
Self.ResolveExceptionSpec(KeyLoc, CPT);
5173 return FoundOperator;
5181 if (
Decl->isUnion())
5183 if (
Decl->isLambda())
5184 return Decl->isCapturelessLambda();
5195 Decl->getTypeForDecl()->getCanonicalTypeUnqualified().withConst(),
5202 Functions, &Operand, &Operand);
5206 const auto *
CallExpr = dyn_cast<CXXOperatorCallExpr>(
Result.get());
5210 auto ParamT = Callee->getParamDecl(0)->getType();
5211 if (!Callee->isDefaulted())
5213 if (!ParamT->isReferenceType() && !
Decl->isTriviallyCopyable())
5215 if (ParamT.getNonReferenceType()->getUnqualifiedDesugaredType() !=
5216 Decl->getTypeForDecl())
5220 return llvm::all_of(
Decl->bases(),
5222 if (const auto *RD = BS.getType()->getAsCXXRecordDecl())
5223 return HasNonDeletedDefaultedEqualityComparison(
5228 auto Type = FD->getType();
5229 if (Type->isArrayType())
5230 Type = Type->getBaseElementTypeUnsafe()
5231 ->getCanonicalTypeUnqualified();
5233 if (Type->isReferenceType() || Type->isEnumeralType())
5235 if (const auto *RD = Type->getAsCXXRecordDecl())
5236 return HasNonDeletedDefaultedEqualityComparison(S, RD, KeyLoc);
5253 CanonicalType,
false);
5260 assert(!
T->
isDependentType() &&
"Cannot evaluate traits of dependent type");
5264 default: llvm_unreachable(
"not a UTT");
5269 case UTT_IsIntegral:
5271 case UTT_IsFloatingPoint:
5276 if (
const auto *CAT =
C.getAsConstantArrayType(
T))
5277 return CAT->getSize() != 0;
5279 case UTT_IsBoundedArray:
5284 if (
const auto *CAT =
C.getAsConstantArrayType(
T))
5285 return CAT->getSize() != 0;
5287 case UTT_IsUnboundedArray:
5293 case UTT_IsLvalueReference:
5295 case UTT_IsRvalueReference:
5297 case UTT_IsMemberFunctionPointer:
5299 case UTT_IsMemberObjectPointer:
5303 case UTT_IsScopedEnum:
5309 case UTT_IsFunction:
5314 case UTT_IsReference:
5316 case UTT_IsArithmetic:
5318 case UTT_IsFundamental:
5328 switch (
T.getObjCLifetime()) {
5341 case UTT_IsCompound:
5343 case UTT_IsMemberPointer:
5349 return T.isConstQualified();
5350 case UTT_IsVolatile:
5351 return T.isVolatileQualified();
5353 return T.isTrivialType(
C);
5354 case UTT_IsTriviallyCopyable:
5355 return T.isTriviallyCopyableType(
C);
5356 case UTT_IsStandardLayout:
5359 return T.isPODType(
C);
5366 case UTT_IsPolymorphic:
5370 case UTT_IsAbstract:
5374 case UTT_IsAggregate:
5383 case UTT_IsInterfaceClass:
5388 return RD->
hasAttr<FinalAttr>();
5395 case UTT_IsUnsigned:
5414 case UTT_HasTrivialDefaultConstructor:
5421 if (
CXXRecordDecl *RD =
C.getBaseElementType(
T)->getAsCXXRecordDecl())
5425 case UTT_HasTrivialMoveConstructor:
5431 if (
CXXRecordDecl *RD =
C.getBaseElementType(
T)->getAsCXXRecordDecl())
5434 case UTT_HasTrivialCopy:
5446 case UTT_HasTrivialMoveAssign:
5452 if (
CXXRecordDecl *RD =
C.getBaseElementType(
T)->getAsCXXRecordDecl())
5455 case UTT_HasTrivialAssign:
5468 if (
T.isConstQualified())
5476 case UTT_IsDestructible:
5477 case UTT_IsTriviallyDestructible:
5478 case UTT_IsNothrowDestructible:
5497 if (UTT == UTT_IsTriviallyDestructible &&
T.isDestructedType())
5504 if (
auto *RD =
C.getBaseElementType(
T)->getAsCXXRecordDecl()) {
5515 if (UTT == UTT_IsNothrowDestructible) {
5517 CPT =
Self.ResolveExceptionSpec(KeyLoc, CPT);
5524 case UTT_HasTrivialDestructor:
5539 if (
CXXRecordDecl *RD =
C.getBaseElementType(
T)->getAsCXXRecordDecl())
5543 case UTT_HasNothrowAssign:
5551 if (
C.getBaseElementType(
T).isConstQualified())
5564 case UTT_HasNothrowMoveAssign:
5577 case UTT_HasNothrowCopy:
5590 bool FoundConstructor =
false;
5592 for (
const auto *ND :
Self.LookupConstructors(RD)) {
5596 if (isa<FunctionTemplateDecl>(ND->getUnderlyingDecl()))
5599 if (isa<UsingDecl>(ND))
5601 auto *Constructor = cast<CXXConstructorDecl>(ND->getUnderlyingDecl());
5602 if (Constructor->isCopyConstructor(FoundTQs)) {
5603 FoundConstructor =
true;
5605 CPT =
Self.ResolveExceptionSpec(KeyLoc, CPT);
5615 return FoundConstructor;
5618 case UTT_HasNothrowConstructor:
5626 if (
CXXRecordDecl *RD =
C.getBaseElementType(
T)->getAsCXXRecordDecl()) {
5631 bool FoundConstructor =
false;
5632 for (
const auto *ND :
Self.LookupConstructors(RD)) {
5634 if (isa<FunctionTemplateDecl>(ND->getUnderlyingDecl()))
5637 if (isa<UsingDecl>(ND))
5639 auto *Constructor = cast<CXXConstructorDecl>(ND->getUnderlyingDecl());
5640 if (Constructor->isDefaultConstructor()) {
5641 FoundConstructor =
true;
5643 CPT =
Self.ResolveExceptionSpec(KeyLoc, CPT);
5652 return FoundConstructor;
5655 case UTT_HasVirtualDestructor:
5667 case UTT_IsCompleteType:
5672 case UTT_HasUniqueObjectRepresentations:
5673 return C.hasUniqueObjectRepresentations(
T);
5674 case UTT_IsTriviallyRelocatable:
5675 return T.isTriviallyRelocatableType(
C);
5676 case UTT_IsBitwiseCloneable:
5677 return T.isBitwiseCloneableType(
C);
5678 case UTT_IsReferenceable:
5679 return T.isReferenceable();
5680 case UTT_CanPassInRegs:
5683 Self.Diag(KeyLoc, diag::err_builtin_pass_in_regs_non_class) <<
T;
5685 case UTT_IsTriviallyEqualityComparable:
5687 case UTT_IsImplicitLifetime: {
5689 tok::kw___builtin_is_implicit_lifetime);
5691 tok::kw___builtin_is_implicit_lifetime);
5721 case UTT_IsIntangibleType:
5722 assert(
Self.getLangOpts().HLSL &&
"intangible types are HLSL-only feature");
5725 diag::err_incomplete_type))
5728 tok::kw___builtin_hlsl_is_intangible))
5732 case UTT_IsTypedResourceElementCompatible:
5733 assert(
Self.getLangOpts().HLSL &&
5734 "typed resource element compatible types are an HLSL-only feature");
5738 return Self.HLSL().IsTypedResourceElementCompatible(
T);
5747 SourceLocation KeyLoc, llvm::BumpPtrAllocator &OpaqueExprAllocator) {
5788 LhsT =
Self.Context.getRValueReferenceType(LhsT);
5828 if (Kind <=
BTT_Last && Kind != BTT_ReferenceBindsToTemporary &&
5829 Kind != BTT_ReferenceConstructsFromTemporary &&
5830 Kind != BTT_ReferenceConvertsFromTemporary)
5832 Args[1], RParenLoc);
5835 case clang::BTT_ReferenceBindsToTemporary:
5836 case clang::BTT_ReferenceConstructsFromTemporary:
5837 case clang::BTT_ReferenceConvertsFromTemporary:
5838 case clang::TT_IsConstructible:
5839 case clang::TT_IsNothrowConstructible:
5840 case clang::TT_IsTriviallyConstructible: {
5854 assert(!Args.empty());
5859 for (
const auto *TSI : Args) {
5865 diag::err_incomplete_type_used_in_type_trait_expr))
5879 llvm::BumpPtrAllocator OpaqueExprAllocator;
5881 ArgExprs.reserve(Args.size() - 1);
5882 for (
unsigned I = 1, N = Args.size(); I != N; ++I) {
5883 QualType ArgTy = Args[I]->getType();
5902 Kind == clang::BTT_ReferenceConvertsFromTemporary
5913 if (Kind == clang::TT_IsConstructible)
5916 if (Kind == clang::BTT_ReferenceBindsToTemporary ||
5917 Kind == clang::BTT_ReferenceConstructsFromTemporary ||
5918 Kind == clang::BTT_ReferenceConvertsFromTemporary) {
5922 if (!
Init.isDirectReferenceBinding())
5925 if (Kind == clang::BTT_ReferenceBindsToTemporary)
5929 if (
U->isReferenceType())
5937 OpaqueExprAllocator)
5941 if (Kind == clang::TT_IsNothrowConstructible)
5944 if (Kind == clang::TT_IsTriviallyConstructible) {
5947 if (
T.getNonReferenceType().hasNonTrivialObjCLifetime())
5955 llvm_unreachable(
"unhandled type trait");
5958 default: llvm_unreachable(
"not a TT");
5969 case UTT_HasNothrowAssign:
5970 case UTT_HasNothrowMoveAssign:
5971 Replacement = BTT_IsNothrowAssignable;
5973 case UTT_HasNothrowCopy:
5974 case UTT_HasNothrowConstructor:
5975 Replacement = TT_IsNothrowConstructible;
5977 case UTT_HasTrivialAssign:
5978 case UTT_HasTrivialMoveAssign:
5979 Replacement = BTT_IsTriviallyAssignable;
5981 case UTT_HasTrivialCopy:
5982 Replacement = UTT_IsTriviallyCopyable;
5984 case UTT_HasTrivialDefaultConstructor:
5985 case UTT_HasTrivialMoveConstructor:
5986 Replacement = TT_IsTriviallyConstructible;
5988 case UTT_HasTrivialDestructor:
5989 Replacement = UTT_IsTriviallyDestructible;
5994 S.
Diag(KWLoc, diag::warn_deprecated_builtin)
6000 if (Arity && N != Arity) {
6001 Diag(
Loc, diag::err_type_trait_arity)
6006 if (!Arity && N == 0) {
6007 Diag(
Loc, diag::err_type_trait_arity)
6019 return TypeTraitReturnType::Bool;
6029 *
this, Kind, KWLoc, Args[0]->getType()))
6032 DiagnoseBuiltinDeprecation(*
this, Kind, KWLoc);
6035 for (
unsigned I = 0, N = Args.size(); I != N; ++I) {
6036 if (Args[I]->getType()->isDependentType()) {
6043 case TypeTraitReturnType::Bool: {
6047 KWLoc, Kind, Args, RParenLoc,
Result);
6050 llvm_unreachable(
"unhandled type trait return type");
6057 ConvertedArgs.reserve(Args.size());
6059 for (
unsigned I = 0, N = Args.size(); I != N; ++I) {
6065 ConvertedArgs.push_back(TInfo);
6077 "Cannot evaluate traits of dependent types");
6080 case BTT_IsBaseOf: {
6088 if (!rhsRecord || !lhsRecord) {
6091 if (!LHSObjTy || !RHSObjTy)
6096 if (!BaseInterface || !DerivedInterface)
6099 if (
Self.RequireCompleteType(
6101 diag::err_incomplete_type_used_in_type_trait_expr))
6107 assert(
Self.Context.hasSameUnqualifiedType(LhsT, RhsT)
6108 == (lhsRecord == rhsRecord));
6114 if (rhsRecord && rhsRecord->getDecl()->isUnion())
6117 if (lhsRecord == rhsRecord)
6124 if (
Self.RequireCompleteType(
6126 diag::err_incomplete_type_used_in_type_trait_expr))
6129 return cast<CXXRecordDecl>(rhsRecord->getDecl())
6130 ->isDerivedFrom(cast<CXXRecordDecl>(lhsRecord->
getDecl()));
6132 case BTT_IsVirtualBaseOf: {
6136 if (!BaseRecord || !DerivedRecord) {
6138 tok::kw___builtin_is_virtual_base_of);
6140 tok::kw___builtin_is_virtual_base_of);
6144 if (BaseRecord->
isUnionType() || DerivedRecord->isUnionType())
6148 !DerivedRecord->isStructureOrClassType())
6152 diag::err_incomplete_type))
6155 return cast<CXXRecordDecl>(DerivedRecord->getDecl())
6156 ->isVirtuallyDerivedFrom(cast<CXXRecordDecl>(BaseRecord->
getDecl()));
6159 return Self.Context.hasSameType(LhsT, RhsT);
6160 case BTT_TypeCompatible: {
6163 QualType Lhs =
Self.getASTContext().getUnqualifiedArrayType(LhsT, LhsQuals);
6164 QualType Rhs =
Self.getASTContext().getUnqualifiedArrayType(RhsT, RhsQuals);
6165 return Self.Context.typesAreCompatible(Lhs, Rhs);
6167 case BTT_IsConvertible:
6168 case BTT_IsConvertibleTo:
6169 case BTT_IsNothrowConvertible: {
6172 llvm::BumpPtrAllocator OpaqueExprAllocator;
6174 OpaqueExprAllocator);
6178 if (BTT != BTT_IsNothrowConvertible)
6184 case BTT_IsAssignable:
6185 case BTT_IsNothrowAssignable:
6186 case BTT_IsTriviallyAssignable: {
6199 Self.RequireCompleteType(
6201 diag::err_incomplete_type_used_in_type_trait_expr))
6204 Self.RequireCompleteType(
6206 diag::err_incomplete_type_used_in_type_trait_expr))
6216 LhsT =
Self.Context.getRValueReferenceType(LhsT);
6218 RhsT =
Self.Context.getRValueReferenceType(RhsT);
6236 Self.CheckUnusedVolatileAssignment(
Result.get());
6241 if (BTT == BTT_IsAssignable)
6244 if (BTT == BTT_IsNothrowAssignable)
6247 if (BTT == BTT_IsTriviallyAssignable) {
6253 return !
Result.get()->hasNonTrivialCall(
Self.Context);
6256 llvm_unreachable(
"unhandled type trait");
6259 case BTT_IsLayoutCompatible: {
6262 diag::err_incomplete_type);
6265 diag::err_incomplete_type);
6270 return Self.IsLayoutCompatible(LhsT, RhsT);
6272 case BTT_IsPointerInterconvertibleBaseOf: {
6274 !
Self.getASTContext().hasSameUnqualifiedType(LhsT, RhsT)) {
6276 diag::err_incomplete_type);
6280 tok::kw___is_pointer_interconvertible_base_of);
6282 tok::kw___is_pointer_interconvertible_base_of);
6284 return Self.IsPointerInterconvertibleBaseOf(Lhs, Rhs);
6286 case BTT_IsDeducible: {
6287 const auto *TSTToBeDeduced = cast<DeducedTemplateSpecializationType>(LhsT);
6289 return Self.DeduceTemplateArgumentsFromType(
6290 TSTToBeDeduced->getTemplateName().getAsTemplateDecl(), RhsT,
6293 case BTT_IsScalarizedLayoutCompatible: {
6296 diag::err_incomplete_type))
6300 diag::err_incomplete_type))
6304 Self, Lhs, tok::kw___builtin_hlsl_is_scalarized_layout_compatible);
6306 Self, Rhs, tok::kw___builtin_hlsl_is_scalarized_layout_compatible);
6308 return Self.HLSL().IsScalarizedLayoutCompatible(LhsT, RhsT);
6311 llvm_unreachable(
"not a BTT");
6313 llvm_unreachable(
"Unknown type trait or not implemented");
6332 assert(!
T->
isDependentType() &&
"Cannot evaluate traits of dependent type");
6340 T = AT->getElementType();
6346 case ATT_ArrayExtent: {
6349 if (
Self.VerifyIntegerConstantExpression(
6350 DimExpr, &
Value, diag::err_dimension_expr_not_constant_integer)
6353 if (
Value.isSigned() &&
Value.isNegative()) {
6354 Self.Diag(KeyLoc, diag::err_dimension_expr_not_constant_integer)
6362 bool Matched =
false;
6369 T = AT->getElementType();
6374 return CAT->getLimitedSize();
6380 llvm_unreachable(
"Unknown type trait or not implemented");
6420 case ET_IsLValueExpr:
return E->
isLValue();
6421 case ET_IsRValueExpr:
6424 llvm_unreachable(
"Expression trait not covered by switch");
6450 "placeholders should have been weeded out by now");
6465 const char *OpSpelling = isIndirect ?
"->*" :
".*";
6473 Diag(
Loc, diag::err_bad_memptr_rhs)
6495 Diag(
Loc, diag::err_bad_memptr_lhs)
6496 << OpSpelling << 1 << LHSType
6505 OpSpelling, (
int)isIndirect)) {
6510 Diag(
Loc, diag::err_bad_memptr_lhs) << OpSpelling
6534 Diag(
Loc, diag::err_pointer_to_member_type) << isIndirect;
6553 switch (Proto->getRefQualifier()) {
6562 if (Proto->isConst() && !Proto->isVolatile())
6564 ? diag::warn_cxx17_compat_pointer_to_const_ref_member_on_rvalue
6565 : diag::ext_pointer_to_const_ref_member_on_rvalue);
6567 Diag(
Loc, diag::err_pointer_to_member_oper_value_classify)
6574 Diag(
Loc, diag::err_pointer_to_member_oper_value_classify)
6587 if (
Result->isFunctionType()) {
6590 }
else if (isIndirect) {
6608 bool &HaveConversion,
6610 HaveConversion =
false;
6633 HaveConversion =
true;
6648 bool FDerivedFromT = FRec && TRec && FRec != TRec &&
6649 Self.IsDerivedFrom(QuestionLoc, FTy, TTy);
6650 if (FRec && TRec && (FRec == TRec || FDerivedFromT ||
6651 Self.IsDerivedFrom(QuestionLoc, TTy, FTy))) {
6655 if (FRec == TRec || FDerivedFromT) {
6660 HaveConversion =
true;
6683 HaveConversion = !InitSeq.
Failed();
6701 Self.AddBuiltinOperatorCandidates(OO_Conditional, QuestionLoc, Args,
6709 LHS.
get(), Best->BuiltinParamTypes[0], Best->Conversions[0],
6716 RHS.
get(), Best->BuiltinParamTypes[1], Best->Conversions[1],
6722 Self.MarkFunctionReferenced(QuestionLoc, Best->Function);
6731 if (
Self.DiagnoseConditionalForNull(LHS.
get(), RHS.
get(), QuestionLoc))
6734 Self.Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
6740 Self.Diag(QuestionLoc, diag::err_conditional_ambiguous_ovl)
6748 llvm_unreachable(
"Conditional operator has only built-in overloads");
6759 Expr *Arg =
E.get();
6777 assert(!EltTy->
isEnumeralType() &&
"Vectors cant be enum types");
6787 assert(!EltTy->
isEnumeralType() &&
"Vectors cant be enum types");
6799 QualType CondElementTy = CondVT->getElementType();
6800 unsigned CondElementCount = CondVT->getNumElements();
6809 if (LHSVT && RHSVT) {
6810 if (isa<ExtVectorType>(CondVT) != isa<ExtVectorType>(LHSVT)) {
6811 Diag(QuestionLoc, diag::err_conditional_vector_cond_result_mismatch)
6812 << isa<ExtVectorType>(CondVT);
6818 Diag(QuestionLoc, diag::err_conditional_vector_mismatched)
6819 << LHSType << RHSType;
6823 }
else if (LHSVT || RHSVT) {
6825 LHS, RHS, QuestionLoc,
false,
true,
6829 if (ResultType.isNull())
6842 Diag(QuestionLoc, diag::err_conditional_vector_operand_type)
6857 assert(!ResultType.isNull() && ResultType->isVectorType() &&
6859 "Result should have been a vector type");
6860 auto *ResultVectorTy = ResultType->castAs<
VectorType>();
6861 QualType ResultElementTy = ResultVectorTy->getElementType();
6862 unsigned ResultElementCount = ResultVectorTy->getNumElements();
6864 if (ResultElementCount != CondElementCount) {
6865 Diag(QuestionLoc, diag::err_conditional_vector_size) << CondType
6872 Diag(QuestionLoc, diag::err_conditional_vector_element_size) << CondType
6890 llvm::ElementCount CondElementCount =
6902 if (LHSBT && RHSBT) {
6905 Diag(QuestionLoc, diag::err_conditional_vector_mismatched)
6906 << LHSType << RHSType;
6909 ResultType = LHSType;
6910 }
else if (LHSBT || RHSBT) {
6913 if (ResultType.isNull())
6922 ResultElementTy = LHSType;
6928 Diag(QuestionLoc, diag::err_conditional_vector_operand_type)
6934 ResultElementTy, CondElementCount.getKnownMinValue());
6940 assert(!ResultType.isNull() && ResultType->isSveVLSBuiltinType() &&
6941 "Result should have been a vector type");
6942 auto *ResultBuiltinTy = ResultType->castAs<
BuiltinType>();
6944 llvm::ElementCount ResultElementCount =
6947 if (ResultElementCount != CondElementCount) {
6948 Diag(QuestionLoc, diag::err_conditional_vector_size)
6949 << CondType << ResultType;
6955 Diag(QuestionLoc, diag::err_conditional_vector_element_size)
6956 << CondType << ResultType;
6973 bool IsVectorConditional =
6976 bool IsSizelessVectorConditional =
6983 ExprResult CondRes = IsVectorConditional || IsSizelessVectorConditional
7009 if (LVoid || RVoid) {
7018 if (IsVectorConditional) {
7021 bool IsThrow = LVoid ? LThrow : RThrow;
7022 Diag(DiagLoc.
getBegin(), diag::err_conditional_vector_has_void)
7023 << DiagLoc << IsThrow;
7027 if (LThrow != RThrow) {
7028 Expr *NonThrow = LThrow ? RHS.
get() : LHS.
get();
7042 Diag(QuestionLoc, diag::err_conditional_void_nonvoid)
7043 << (LVoid ? RTy : LTy) << (LVoid ? 0 : 1)
7049 if (IsVectorConditional)
7052 if (IsSizelessVectorConditional)
7057 Diag(QuestionLoc, diag::err_wasm_table_conditional_expression)
7070 bool HaveL2R, HaveR2L;
7077 if (HaveL2R && HaveR2L) {
7078 Diag(QuestionLoc, diag::err_conditional_ambiguous)
7090 }
else if (HaveR2L) {
7114 ReferenceConversions::Qualification |
7115 ReferenceConversions::NestedQualification |
7116 ReferenceConversions::Function;
7121 !(RefConv & ~AllowedConversions) &&
7129 !(RefConv & ~AllowedConversions) &&
7145 if (Same && LVK == RVK && LVK !=
VK_PRValue &&
7219 diag::err_typecheck_cond_incompatible_operands) << LTy << RTy
7257 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
7277 bool T2IsPointerLike = T2->isAnyPointerType() || T2->isMemberPointerType() ||
7278 T2->isNullPtrType();
7279 if (!T1IsPointerLike && !T2IsPointerLike)
7287 if (T1IsPointerLike &&
7291 ? CK_NullToMemberPointer
7292 : CK_NullToPointer).
get();
7295 if (T2IsPointerLike &&
7299 ? CK_NullToMemberPointer
7300 : CK_NullToPointer).
get();
7305 if (!T1IsPointerLike || !T2IsPointerLike)
7308 "nullptr_t should be a null pointer constant");
7311 enum Kind {
Pointer, ObjCPointer, MemberPointer, Array } K;
7316 const Type *ClassOrBound;
7318 Step(
Kind K,
const Type *ClassOrBound =
nullptr)
7319 : K(K), ClassOrBound(ClassOrBound) {}
7330 if (
auto *CAT = cast_or_null<ConstantArrayType>(ClassOrBound))
7332 ArraySizeModifier::Normal, 0);
7336 llvm_unreachable(
"unknown step kind");
7358 unsigned NeedConstBefore = 0;
7367 if (!Steps.empty()) {
7377 }
else if (Steps.size() == 1) {
7380 if (MaybeQ1 == MaybeQ2) {
7399 assert(Steps.size() == 1);
7407 assert(Steps.size() == 1);
7411 Steps.back().Quals = Quals;
7412 if (Q1 != Quals || Q2 != Quals)
7413 NeedConstBefore = Steps.size() - 1;
7421 auto *CAT1 = dyn_cast<ConstantArrayType>(Arr1);
7422 auto *CAT2 = dyn_cast<ConstantArrayType>(Arr2);
7423 if (CAT1 && CAT2 && CAT1->getSize() == CAT2->getSize()) {
7426 Steps.emplace_back(Step::Array, CAT1);
7429 bool IAT1 = isa<IncompleteArrayType>(Arr1);
7430 bool IAT2 = isa<IncompleteArrayType>(Arr2);
7431 if ((IAT1 && IAT2) ||
7433 ((
bool)CAT1 != (
bool)CAT2) &&
7434 (Steps.empty() || Steps.back().K != Step::Array))) {
7440 Steps.emplace_back(Step::Array);
7442 NeedConstBefore = Steps.size();
7452 Steps.emplace_back(Step::Pointer);
7461 Steps.emplace_back(Step::ObjCPointer);
7485 else if (Steps.empty())
7491 Steps.emplace_back(Step::MemberPointer,
Class);
7503 Steps.emplace_back(Step::Pointer);
7541 if (Steps.size() == 1) {
7560 FPT1->getParamTypes(), EPI1);
7562 FPT2->getParamTypes(), EPI2);
7568 if (Steps.size() == 1 && Steps.front().K == Step::Pointer &&
7574 Composite2 = Composite1;
7576 Composite1 = Composite2;
7585 Composite1 = Composite2;
7587 Composite2 = Composite1;
7597 for (
unsigned I = 0; I != NeedConstBefore; ++I)
7598 Steps[I].Quals.addConst();
7602 for (
auto &S : llvm::reverse(Steps))
7603 Composite = S.rebuild(
Context, Composite);
7624 E1 = E1Result.
get();
7629 E2 = E2Result.
get();
7639 assert(!isa<CXXBindTemporaryExpr>(
E) &&
"Double-bound temporary?");
7650 bool ReturnsRetained;
7655 Expr *Callee =
Call->getCallee()->IgnoreParens();
7661 T = BinOp->getRHS()->getType();
7662 else if (
MemberExpr *Mem = dyn_cast<MemberExpr>(Callee))
7663 T = Mem->getMemberDecl()->getType();
7678 }
else if (isa<StmtExpr>(
E)) {
7679 ReturnsRetained =
true;
7683 }
else if (isa<CastExpr>(
E) &&
7684 isa<BlockExpr>(cast<CastExpr>(
E)->getSubExpr())) {
7693 D = Send->getMethodDecl();
7694 }
else if (
ObjCBoxedExpr *BoxedExpr = dyn_cast<ObjCBoxedExpr>(
E)) {
7695 D = BoxedExpr->getBoxingMethod();
7699 if (ArrayLit->getNumElements() == 0 &&
7703 D = ArrayLit->getArrayWithObjectsMethod();
7705 = dyn_cast<ObjCDictionaryLiteral>(
E)) {
7708 if (DictLit->getNumElements() == 0 &&
7712 D = DictLit->getDictWithObjectsMethod();
7715 ReturnsRetained = (
D &&
D->
hasAttr<NSReturnsRetainedAttr>());
7720 if (!ReturnsRetained &&
7731 CastKind ck = (ReturnsRetained ? CK_ARCConsumeObject
7732 : CK_ARCReclaimReturnedObject);
7750 RT = cast<RecordType>(
T);
7752 case Type::ConstantArray:
7753 case Type::IncompleteArray:
7754 case Type::VariableArray:
7755 case Type::DependentSizedArray:
7756 T = cast<ArrayType>(
T)->getElementType().getTypePtr();
7776 PDiag(diag::err_access_dtor_temp)
7807 assert(SubExpr &&
"subexpression can't be null!");
7829 assert(SubStmt &&
"sub-statement can't be null!");
7852 "not in a decltype expression");
7869 if (
ParenExpr *PE = dyn_cast<ParenExpr>(
E)) {
7873 if (SubExpr.
get() == PE->getSubExpr())
7878 if (BO->getOpcode() == BO_Comma) {
7882 if (RHS.
get() == BO->getRHS())
7885 BO->
getType(), BO->getValueKind(),
7886 BO->getObjectKind(), BO->getOperatorLoc(),
7887 BO->getFPFeatures());
7914 for (
unsigned I = 0, N =
ExprEvalContexts.back().DelayedDecltypeCalls.size();
7917 if (
Call == TopCall)
7927 for (
unsigned I = 0, N =
ExprEvalContexts.back().DelayedDecltypeBinds.size();
7931 if (
Bind == TopBind)
7937 Bind->getType()->getBaseElementTypeUnsafe()->getAsCXXRecordDecl();
7943 PDiag(diag::err_access_dtor_temp)
7944 <<
Bind->getType());
7959 unsigned SkipStart = OperatorArrows.size(), SkipCount = 0;
7962 if (OperatorArrows.size() > Limit) {
7964 SkipStart = (Limit - 1) / 2 + (Limit - 1) % 2;
7965 SkipCount = OperatorArrows.size() - (Limit - 1);
7968 for (
unsigned I = 0; I < OperatorArrows.size(); ) {
7969 if (I == SkipStart) {
7970 S.
Diag(OperatorArrows[I]->getLocation(),
7971 diag::note_operator_arrows_suppressed)
7975 S.
Diag(OperatorArrows[I]->getLocation(), diag::note_operator_arrow_here)
7976 << OperatorArrows[I]->getCallResultType();
7986 bool &MayBePseudoDestructor) {
7997 MayBePseudoDestructor =
false;
8002 if (OpKind == tok::arrow)
8007 MayBePseudoDestructor =
true;
8014 if (OpKind == tok::arrow) {
8016 bool NoArrowOperatorFound =
false;
8017 bool FirstIteration =
true;
8025 if (OperatorArrows.size() >=
getLangOpts().ArrowDepth) {
8026 Diag(OpLoc, diag::err_operator_arrow_depth_exceeded)
8027 << StartingType <<
getLangOpts().ArrowDepth <<
Base->getSourceRange();
8029 Diag(OpLoc, diag::note_operator_arrow_depth)
8042 : &NoArrowOperatorFound);
8043 if (
Result.isInvalid()) {
8044 if (NoArrowOperatorFound) {
8045 if (FirstIteration) {
8046 Diag(OpLoc, diag::err_typecheck_member_reference_suggestion)
8047 << BaseType << 1 <<
Base->getSourceRange()
8049 OpKind = tok::period;
8052 Diag(OpLoc, diag::err_typecheck_member_reference_arrow)
8053 << BaseType <<
Base->getSourceRange();
8057 diag::note_member_reference_arrow_from_operator_arrow);
8064 OperatorArrows.push_back(OpCall->getDirectCallee());
8065 BaseType =
Base->getType();
8067 if (!CTypes.insert(CBaseType).second) {
8068 Diag(OpLoc, diag::err_operator_arrow_circular) << StartingType;
8072 FirstIteration =
false;
8075 if (OpKind == tok::arrow) {
8079 BaseType = AT->getElementType();
8101 MayBePseudoDestructor =
true;
8113 diag::err_incomplete_member_access)) {
8128 if (
Base->hasPlaceholderType()) {
8133 ObjectType =
Base->getType();
8141 if (OpKind == tok::arrow) {
8151 ObjectType =
Base->getType();
8156 }
else if (!
Base->isTypeDependent()) {
8158 S.
Diag(OpLoc, diag::err_typecheck_member_reference_suggestion)
8159 << ObjectType <<
true
8164 OpKind = tok::period;
8206 Diag(OpLoc, diag::ext_pseudo_dtor_on_void) <<
Base->getSourceRange();
8208 Diag(OpLoc, diag::err_pseudo_dtor_base_not_scalar)
8209 << ObjectType <<
Base->getSourceRange();
8217 if (DestructedTypeInfo) {
8230 Diag(OpLoc, diag::err_typecheck_member_reference_suggestion)
8231 << ObjectType << 0 <<
Base->getSourceRange();
8235 *
this, DestructedType))
8240 ObjectType = DestructedType;
8241 OpKind = tok::arrow;
8243 Diag(DestructedTypeStart, diag::err_pseudo_dtor_type_mismatch)
8244 << ObjectType << DestructedType <<
Base->getSourceRange()
8248 DestructedType = ObjectType;
8249 DestructedTypeInfo =
8260 Diag(DestructedTypeStart, diag::err_arc_pseudo_dtor_inconstant_quals)
8261 << ObjectType << DestructedType <<
Base->getSourceRange()
8266 DestructedType = ObjectType;
8268 DestructedTypeStart);
8281 if (ScopeTypeInfo) {
8283 if (!ScopeType->isDependentType() && !ObjectType->
isDependentType() &&
8287 diag::err_pseudo_dtor_type_mismatch)
8288 << ObjectType << ScopeType <<
Base->getSourceRange()
8292 ScopeTypeInfo =
nullptr;
8298 OpKind == tok::arrow, OpLoc,
8318 "Invalid first type name in pseudo-destructor");
8321 "Invalid second type name in pseudo-destructor");
8345 S, &SS,
true,
false, ObjectTypePtrForLookup,
8358 diag::err_pseudo_dtor_destructor_non_type)
8364 DestructedType = ObjectType;
8382 if (
T.isInvalid() || !
T.get()) {
8384 DestructedType = ObjectType;
8391 if (!DestructedType.
isNull()) {
8392 if (!DestructedTypeInfo)
8406 S, &SS,
true,
false, ObjectTypePtrForLookup,
8410 diag::err_pseudo_dtor_destructor_non_type)
8435 if (
T.isInvalid() || !
T.get()) {
8443 if (!ScopeType.isNull() && !ScopeTypeInfo)
8449 ScopeTypeInfo, CCLoc, TildeLoc,
8481 cast<PackIndexingType>(
T.getTypePtr())->getPattern(),
8488 llvm_unreachable(
"Unsupported type in pseudo destructor");
8514 Operand->HasSideEffects(
Context,
false)) {
8517 Diag(Operand->getExprLoc(), diag::warn_side_effects_unevaluated_context);
8533 bool IsCompoundAssign =
false;
8534 bool isIncrementDecrementUnaryOp =
false;
8536 if (BO->getLHS()->getType()->isDependentType() ||
8537 BO->getRHS()->getType()->isDependentType()) {
8538 if (BO->getOpcode() != BO_Assign)
8540 }
else if (!BO->isAssignmentOp())
8543 IsCompoundAssign = BO->isCompoundAssignmentOp();
8544 LHS = dyn_cast<DeclRefExpr>(BO->getLHS());
8546 if (COCE->getOperator() != OO_Equal)
8548 LHS = dyn_cast<DeclRefExpr>(COCE->getArg(0));
8550 if (!UO->isIncrementDecrementOp())
8552 isIncrementDecrementUnaryOp =
true;
8553 LHS = dyn_cast<DeclRefExpr>(UO->getSubExpr());
8563 if ((IsCompoundAssign || isIncrementDecrementUnaryOp) &&
8569 iter->getSecond()--;
8634 if (!
T->getDecl()->isComplete()) {
8648 diag::err_incomplete_type);
8674 if (isa<ParmVarDecl>(Var))
return true;
8675 const VarDecl *DefVD =
nullptr;
8709 while (isa_and_nonnull<CapturedDecl>(DC))
8713 "The current call operator must be synchronized with Sema's CurContext");
8734 !IsFullExprInstantiationDependent)
8743 if (
const std::optional<unsigned> Index =
8747 const bool IsVarNeverAConstantExpression =
8749 if (!IsFullExprInstantiationDependent || IsVarNeverAConstantExpression) {
8761 DeclRefType,
nullptr)) {
8767 DeclRefType,
nullptr);
8776 if (
const std::optional<unsigned> Index =
8779 const unsigned FunctionScopeIndexOfCapturableLambda = *Index;
8782 &FunctionScopeIndexOfCapturableLambda);
8794 Consumer.getLookupResult().getLookupKind());
8807 if (ND->isCXXClassMember()) {
8811 Record = NNS->getAsType()->getAsCXXRecordDecl();
8814 dyn_cast<CXXRecordDecl>(ND->getDeclContext()->getRedeclContext());
8821 NewSS, R,
Consumer.isAddressOfOperand()))
8825 }
else if (
auto *Ivar = dyn_cast<ObjCIvarDecl>(ND)) {
8827 Ivar->getIdentifier());
8841 : TypoExprs(TypoExprs) {}
8842 bool VisitTypoExpr(
TypoExpr *TE)
override {
8843 TypoExprs.insert(TE);
8848class TransformTypos :
public TreeTransform<TransformTypos> {
8855 llvm::SmallDenseMap<TypoExpr *, ExprResult, 2> TransformCache;
8856 llvm::SmallDenseMap<OverloadExpr *, Expr *, 4> OverloadResolution;
8868 void EmitAllDiagnostics(
bool IsAmbiguous) {
8870 auto &State = SemaRef.getTypoExprState(TE);
8871 if (State.DiagHandler) {
8882 Replacement.isInvalid() ?
nullptr : Replacement.get()))
8885 State.DiagHandler(TC);
8887 SemaRef.clearDelayedTypo(TE);
8905 bool CheckAndAdvanceTypoExprCorrectionStreams() {
8906 for (
auto *TE : TypoExprs) {
8907 auto &State = SemaRef.getTypoExprState(TE);
8908 TransformCache.erase(TE);
8909 if (!State.Consumer->hasMadeAnyCorrectionProgress())
8911 if (!State.Consumer->finished())
8913 State.Consumer->resetCorrectionStream();
8919 if (
auto *OE = dyn_cast_or_null<OverloadExpr>(
E))
8920 E = OverloadResolution[OE];
8924 if (
auto *DRE = dyn_cast<DeclRefExpr>(
E))
8925 return DRE->getFoundDecl();
8926 if (
auto *ME = dyn_cast<MemberExpr>(
E))
8937 if (Trap.hasErrorOccurred() || Res.
isInvalid())
8940 return ExprFilter(Res.
get());
8954 auto SavedTypoExprs = std::move(TypoExprs);
8955 auto SavedAmbiguousTypoExprs = std::move(AmbiguousTypoExprs);
8957 AmbiguousTypoExprs.clear();
8959 FindTypoExprs(TypoExprs).TraverseStmt(FixedExpr);
8960 if (!TypoExprs.empty()) {
8964 RecursiveTransformLoop(FixedExpr, IsAmbiguous);
8972 auto &SemaTypoExprs = SemaRef.TypoExprs;
8973 for (
auto *TE : TypoExprs) {
8974 TransformCache.erase(TE);
8975 SemaRef.clearDelayedTypo(TE);
8977 auto SI = find(SemaTypoExprs, TE);
8978 if (SI != SemaTypoExprs.end()) {
8979 SemaTypoExprs.erase(SI);
8986 SavedTypoExprs.set_union(TypoExprs);
8990 TypoExprs = std::move(SavedTypoExprs);
8991 AmbiguousTypoExprs = std::move(SavedAmbiguousTypoExprs);
9003 auto SavedTypoExprs = std::move(SemaRef.TypoExprs);
9004 SemaRef.TypoExprs.clear();
9007 Res = CheckForRecursiveTypos(TryTransform(
E), IsAmbiguous);
9021 if (!CheckAndAdvanceTypoExprCorrectionStreams())
9026 if (!IsAmbiguous && !Res.
isInvalid() && !AmbiguousTypoExprs.empty()) {
9027 auto SavedTransformCache =
9028 llvm::SmallDenseMap<TypoExpr *, ExprResult, 2>(TransformCache);
9032 while (!AmbiguousTypoExprs.empty()) {
9033 auto TE = AmbiguousTypoExprs.back();
9037 SemaRef.getTypoExprState(TE).Consumer->saveCurrentPosition();
9039 TypoCorrection TC = SemaRef.getTypoExprState(TE).Consumer->peekNextCorrection();
9045 TransformCache.erase(TE);
9046 ExprResult AmbigRes = CheckForRecursiveTypos(TryTransform(
E), IsAmbiguous);
9048 if (!AmbigRes.
isInvalid() || IsAmbiguous) {
9049 SemaRef.getTypoExprState(TE).Consumer->resetCorrectionStream();
9050 SavedTransformCache.erase(TE);
9055 }
while ((Next = SemaRef.getTypoExprState(TE).Consumer->peekNextCorrection()) &&
9061 AmbiguousTypoExprs.remove(TE);
9062 SemaRef.getTypoExprState(TE).Consumer->restoreSavedPosition();
9063 TransformCache[TE] = SavedTransformCache[TE];
9065 TransformCache = std::move(SavedTransformCache);
9072 auto &SemaTypoExprs = SemaRef.TypoExprs;
9073 for (
auto Iterator = SemaTypoExprs.begin(); Iterator != SemaTypoExprs.end();) {
9074 auto TE = *Iterator;
9075 auto FI = find(TypoExprs, TE);
9076 if (FI != TypoExprs.end()) {
9080 SemaRef.clearDelayedTypo(TE);
9081 Iterator = SemaTypoExprs.erase(Iterator);
9083 SemaRef.TypoExprs = std::move(SavedTypoExprs);
9090 : BaseTransform(SemaRef), InitDecl(InitDecl), ExprFilter(
Filter) {}
9095 Expr *ExecConfig =
nullptr) {
9096 auto Result = BaseTransform::RebuildCallExpr(Callee, LParenLoc, Args,
9097 RParenLoc, ExecConfig);
9098 if (
auto *OE = dyn_cast<OverloadExpr>(Callee)) {
9099 if (Result.isUsable()) {
9100 Expr *ResultCall = Result.get();
9101 if (
auto *BE = dyn_cast<CXXBindTemporaryExpr>(ResultCall))
9102 ResultCall = BE->getSubExpr();
9103 if (
auto *CE = dyn_cast<CallExpr>(ResultCall))
9104 OverloadResolution[OE] = CE->getCallee();
9115 bool IsAmbiguous =
false;
9116 ExprResult Res = RecursiveTransformLoop(
E, IsAmbiguous);
9119 FindTypoExprs(TypoExprs).TraverseStmt(
E);
9121 EmitAllDiagnostics(IsAmbiguous);
9130 auto &CacheEntry = TransformCache[
E];
9131 if (!TypoExprs.insert(
E) && !CacheEntry.isUnset()) {
9136 assert(State.Consumer &&
"Cannot transform a cleared TypoExpr");
9140 while (
TypoCorrection TC = State.Consumer->getNextCorrection()) {
9146 State.RecoveryHandler(SemaRef,
E, TC) :
9148 if (!
NE.isInvalid()) {
9153 if ((Next = State.Consumer->peekNextCorrection()) &&
9155 AmbiguousTypoExprs.insert(
E);
9157 AmbiguousTypoExprs.remove(
E);
9159 assert(!
NE.isUnset() &&
9160 "Typo was transformed into a valid-but-null ExprResult");
9161 return CacheEntry =
NE;
9171 bool RecoverUncorrectedTypos,
9179 auto TyposResolved = DelayedTypos.size();
9180 auto Result = TransformTypos(*
this, InitDecl, Filter).Transform(
E);
9181 TyposResolved -= DelayedTypos.size();
9184 if (
Result.isInvalid() && RecoverUncorrectedTypos) {
9192 return TT.TransformExpr(
E);
9196 assert(TyposResolved == 0 &&
"Corrected typo but got same Expr back?");
9202 bool DiscardedValue,
bool IsConstexpr,
9203 bool IsTemplateArgument) {
9212 if (DiscardedValue) {
9237 CheckCompletedExpr(
FullExpr.get(), CC, IsConstexpr);
9286 while (isa_and_nonnull<CapturedDecl>(DC))
9289 if (IsInLambdaDeclContext && CurrentLSI &&
9316 RedeclarationKind::NotForRedeclaration);
9334 llvm_unreachable(
"Invalid LookupResult Kind!");
9362 "Exactly one of TypeName and TemplateId must be specified.");
9430 E,
false, NoexceptLoc,
9458 auto *Param = cast<TemplateTypeParmDecl>(TPL->
getParam(0));
9463 assert(TC &&
"Type Constraint cannot be null here");
9465 assert(IDC &&
"ImmediatelyDeclaredConstraint can't be null here.");
9470 [&](llvm::raw_ostream &
OS) {
9471 IDC->printPretty(OS, nullptr,
9472 getPrintingPolicy());
9474 IsSimple, NoexceptLoc, ReturnTypeRequirement);
9476 SubstitutedConstraintExpr =
9477 cast<ConceptSpecializationExpr>(Constraint.
get());
9482 ReturnTypeRequirement, Status,
9483 SubstitutedConstraintExpr);
9492 IsSimple, NoexceptLoc,
9493 ReturnTypeRequirement);
9526 InvalidConstraintEntity,
9542 if (Param->getType()->isVoidType()) {
9543 if (LocalParameters.size() > 1) {
9544 Diag(Param->getBeginLoc(), diag::err_void_only_param);
9546 }
else if (Param->getIdentifier()) {
9547 Diag(Param->getBeginLoc(), diag::err_param_with_void_type);
9549 }
else if (Param->getType().hasQualifiers()) {
9550 Diag(Param->getBeginLoc(), diag::err_void_param_qualified);
9552 }
else if (Param->hasDefaultArg()) {
9556 Diag(Param->getDefaultArgRange().getBegin(),
9557 diag::err_requires_expr_local_parameter_default_argument);
9559 }
else if (Param->isExplicitObjectParameter()) {
9570 Diag(Param->getExplicitObjectParamThisLoc(),
9571 diag::err_requires_expr_explicit_object_parameter);
9575 Param->setDeclContext(Body);
9577 if (Param->getIdentifier()) {
9586 assert(
CurContext &&
"DeclContext imbalance!");
9588 assert(
CurContext &&
"Popped translation unit!");
9597 LocalParameters, RParenLoc, Requirements,
Defines the clang::ASTContext interface.
This file provides some common utility functions for processing Lambda related AST Constructs.
Defines a function that returns the minimum OS versions supporting C++17's aligned allocation functio...
static bool CanThrow(Expr *E, ASTContext &Ctx)
static CanQualType GetReturnType(QualType RetTy)
Returns the "extra-canonicalized" return type, which discards qualifiers on the return type.
enum clang::sema::@1718::IndirectLocalPathEntry::EntryKind Kind
static const char * getPlatformName(Darwin::DarwinPlatformKind Platform, Darwin::DarwinEnvironmentKind Environment)
Defines the clang::Expr interface and subclasses for C++ expressions.
Defines Expressions and AST nodes for C++2a concepts.
llvm::MachO::Record Record
Implements a partial diagnostic that can be emitted anwyhere in a DiagnosticBuilder stream.
Defines the clang::Preprocessor interface.
static std::string toString(const clang::SanitizerSet &Sanitizers)
Produce a string containing comma-separated names of sanitizers in Sanitizers set.
This file declares semantic analysis for CUDA constructs.
static void collectPublicBases(CXXRecordDecl *RD, llvm::DenseMap< CXXRecordDecl *, unsigned > &SubobjectsSeen, llvm::SmallPtrSetImpl< CXXRecordDecl * > &VBases, llvm::SetVector< CXXRecordDecl * > &PublicSubobjectsSeen, bool ParentIsPublic)
static bool EvaluateBinaryTypeTrait(Sema &Self, TypeTrait BTT, const TypeSourceInfo *Lhs, const TypeSourceInfo *Rhs, SourceLocation KeyLoc)
static bool HasNonDeletedDefaultedEqualityComparison(Sema &S, const CXXRecordDecl *Decl, SourceLocation KeyLoc)
static bool DiagnoseVLAInCXXTypeTrait(Sema &S, const TypeSourceInfo *T, clang::tok::TokenKind TypeTraitID)
Checks that type T is not a VLA.
static bool ConvertForConditional(Sema &Self, ExprResult &E, QualType T)
Perform an "extended" implicit conversion as returned by TryClassUnification.
static void MaybeDecrementCount(Expr *E, llvm::DenseMap< const VarDecl *, int > &RefsMinusAssignments)
static ExprResult attemptRecovery(Sema &SemaRef, const TypoCorrectionConsumer &Consumer, const TypoCorrection &TC)
static void DiagnoseMismatchedNewDelete(Sema &SemaRef, SourceLocation DeleteLoc, const MismatchingNewDeleteDetector &Detector)
static void getUnambiguousPublicSubobjects(CXXRecordDecl *RD, llvm::SmallVectorImpl< CXXRecordDecl * > &Objects)
static bool isLegalArrayNewInitializer(CXXNewInitializationStyle Style, Expr *Init, bool IsCPlusPlus20)
static QualType adjustVectorType(ASTContext &Context, QualType FromTy, QualType ToType, QualType *ElTy=nullptr)
static void CheckIfAnyEnclosingLambdasMustCaptureAnyPotentialCaptures(Expr *const FE, LambdaScopeInfo *const CurrentLSI, Sema &S)
Check if the current lambda has any potential captures that must be captured by any of its enclosing ...
static void getUuidAttrOfType(Sema &SemaRef, QualType QT, llvm::SmallSetVector< const UuidAttr *, 1 > &UuidAttrs)
Grabs __declspec(uuid()) off a type, or returns 0 if we cannot resolve to a single GUID.
static bool resolveAllocationOverload(Sema &S, LookupResult &R, SourceRange Range, SmallVectorImpl< Expr * > &Args, bool &PassAlignment, FunctionDecl *&Operator, OverloadCandidateSet *AlignedCandidates, Expr *AlignArg, bool Diagnose)
static QualType adjustCVQualifiersForCXXThisWithinLambda(ArrayRef< FunctionScopeInfo * > FunctionScopes, QualType ThisTy, DeclContext *CurSemaContext, ASTContext &ASTCtx)
static bool DiagnoseAtomicInCXXTypeTrait(Sema &S, const TypeSourceInfo *T, clang::tok::TokenKind TypeTraitID)
Checks that type T is not an atomic type (_Atomic).
static bool FindConditionalOverload(Sema &Self, ExprResult &LHS, ExprResult &RHS, SourceLocation QuestionLoc)
Try to find a common type for two according to C++0x 5.16p5.
static bool TryClassUnification(Sema &Self, Expr *From, Expr *To, SourceLocation QuestionLoc, bool &HaveConversion, QualType &ToType)
Try to convert a type to another according to C++11 5.16p3.
static bool HasNoThrowOperator(const RecordType *RT, OverloadedOperatorKind Op, Sema &Self, SourceLocation KeyLoc, ASTContext &C, bool(CXXRecordDecl::*HasTrivial)() const, bool(CXXRecordDecl::*HasNonTrivial)() const, bool(CXXMethodDecl::*IsDesiredOp)() const)
static bool EvaluateExpressionTrait(ExpressionTrait ET, Expr *E)
static UsualDeallocFnInfo resolveDeallocationOverload(Sema &S, LookupResult &R, bool WantSize, bool WantAlign, llvm::SmallVectorImpl< UsualDeallocFnInfo > *BestFns=nullptr)
Select the correct "usual" deallocation function to use from a selection of deallocation functions (e...
static bool hasNewExtendedAlignment(Sema &S, QualType AllocType)
Determine whether a type has new-extended alignment.
static ExprResult BuildCXXCastArgument(Sema &S, SourceLocation CastLoc, QualType Ty, CastKind Kind, CXXMethodDecl *Method, DeclAccessPair FoundDecl, bool HadMultipleCandidates, Expr *From)
static bool VariableCanNeverBeAConstantExpression(VarDecl *Var, ASTContext &Context)
static bool canRecoverDotPseudoDestructorCallsOnPointerObjects(Sema &SemaRef, QualType DestructedType)
Check if it's ok to try and recover dot pseudo destructor calls on pointer objects.
static bool CheckArrow(Sema &S, QualType &ObjectType, Expr *&Base, tok::TokenKind &OpKind, SourceLocation OpLoc)
static bool resolveBuiltinNewDeleteOverload(Sema &S, CallExpr *TheCall, bool IsDelete, FunctionDecl *&Operator)
static bool doesUsualArrayDeleteWantSize(Sema &S, SourceLocation loc, QualType allocType)
Determine whether a given type is a class for which 'delete[]' would call a member 'operator delete[]...
static bool EvaluateUnaryTypeTrait(Sema &Self, TypeTrait UTT, SourceLocation KeyLoc, TypeSourceInfo *TInfo)
static uint64_t EvaluateArrayTypeTrait(Sema &Self, ArrayTypeTrait ATT, QualType T, Expr *DimExpr, SourceLocation KeyLoc)
static bool isValidVectorForConditionalCondition(ASTContext &Ctx, QualType CondTy)
static bool CheckUnaryTypeTraitTypeCompleteness(Sema &S, TypeTrait UTT, SourceLocation Loc, QualType ArgTy)
Check the completeness of a type in a unary type trait.
static void noteOperatorArrows(Sema &S, ArrayRef< FunctionDecl * > OperatorArrows)
Note a set of 'operator->' functions that were used for a member access.
static bool isValidSizelessVectorForConditionalCondition(ASTContext &Ctx, QualType CondTy)
static void buildLambdaThisCaptureFixit(Sema &Sema, LambdaScopeInfo *LSI)
static ExprResult CheckConvertibilityForTypeTraits(Sema &Self, const TypeSourceInfo *Lhs, const TypeSourceInfo *Rhs, SourceLocation KeyLoc, llvm::BumpPtrAllocator &OpaqueExprAllocator)
static bool EvaluateBooleanTypeTrait(Sema &S, TypeTrait Kind, SourceLocation KWLoc, ArrayRef< TypeSourceInfo * > Args, SourceLocation RParenLoc, bool IsDependent)
static bool isTriviallyEqualityComparableType(Sema &S, QualType Type, SourceLocation KeyLoc)
static bool isNonPlacementDeallocationFunction(Sema &S, FunctionDecl *FD)
Determine whether the given function is a non-placement deallocation function.
static NamedDecl * getDeclFromExpr(Expr *E)
This file declares semantic analysis for HLSL constructs.
This file provides some common utility functions for processing Lambdas.
This file declares semantic analysis for Objective-C.
This file declares semantic analysis functions specific to PowerPC.
static QualType getPointeeType(const MemRegion *R)
Defines the clang::TokenKind enum and support functions.
Defines the clang::TypeLoc interface and its subclasses.
Defines enumerations for the type traits support.
C Language Family Type Representation.
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
MSGuidDecl * getMSGuidDecl(MSGuidDeclParts Parts) const
Return a declaration for the global GUID object representing the given GUID value.
BuiltinVectorTypeInfo getBuiltinVectorTypeInfo(const BuiltinType *VecTy) const
Returns the element type, element count and number of vectors (in case of tuple) for a builtin vector...
TranslationUnitDecl * getTranslationUnitDecl() const
const ConstantArrayType * getAsConstantArrayType(QualType T) const
CharUnits getTypeAlignInChars(QualType T) const
Return the ABI-specified alignment of a (complete) type T, in characters.
QualType getRValueReferenceType(QualType T) const
Return the uniqued reference to the type for an rvalue reference to the specified type.
unsigned getIntWidth(QualType T) const
QualType getBlockPointerType(QualType T) const
Return the uniqued reference to the type for a block of the specified type.
QualType getTagDeclType(const TagDecl *Decl) const
Return the unique reference to the type for the specified TagDecl (struct/union/class/enum) decl.
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 getScalableVectorType(QualType EltTy, unsigned NumElts, unsigned NumFields=1) const
Return the unique reference to a scalable vector type of the specified element type and scalable numb...
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 hasSameType(QualType T1, QualType T2) const
Determine whether the given types T1 and T2 are equivalent.
QualType getVectorType(QualType VectorType, unsigned NumElts, VectorKind VecKind) const
Return the unique reference to a vector type of the specified element type and size.
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.
QualType getMSGuidType() const
Retrieve the implicitly-predeclared 'struct _GUID' type.
QualType getReferenceQualifiedType(const Expr *e) const
getReferenceQualifiedType - Given an expr, will return the type for that expression,...
QualType getTypeDeclType(const TypeDecl *Decl, const TypeDecl *PrevDecl=nullptr) const
Return the unique reference to the type for the specified type declaration.
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
bool hasUniqueObjectRepresentations(QualType Ty, bool CheckIfTriviallyCopyable=true) const
Return true if the specified type has unique object representations according to (C++17 [meta....
QualType getBaseElementType(const ArrayType *VAT) const
Return the innermost element type of an array type.
TypeSourceInfo * getTrivialTypeSourceInfo(QualType T, SourceLocation Loc=SourceLocation()) const
Allocate a TypeSourceInfo where all locations have been initialized to a given location,...
CanQualType getSizeType() const
Return the unique type for "size_t" (C99 7.17), defined in <stddef.h>.
CanQualType BoundMemberTy
QualType removeAddrSpaceQualType(QualType T) const
Remove any existing address space on the type and returns the type with qualifiers intact (or that's ...
QualType getQualifiedType(SplitQualType split) const
Un-split a SplitQualType.
QualType getElaboratedType(ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, QualType NamedType, TagDecl *OwnedTagDecl=nullptr) const
CharUnits getExnObjectAlignment() const
Return the alignment (in bytes) of the thrown exception object.
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.
FunctionProtoType::ExceptionSpecInfo mergeExceptionSpecs(FunctionProtoType::ExceptionSpecInfo ESI1, FunctionProtoType::ExceptionSpecInfo ESI2, SmallVectorImpl< QualType > &ExceptionTypeStorage, bool AcceptDependent)
const ArrayType * getAsArrayType(QualType T) const
Type Query functions.
uint64_t getTypeSize(QualType T) const
Return the size of the specified (complete) type T, in bits.
CharUnits getTypeSizeInChars(QualType T) const
Return the size of the specified (complete) type T, in characters.
TypeSourceInfo * CreateTypeSourceInfo(QualType T, unsigned Size=0) const
Allocate an uninitialized TypeSourceInfo.
QualType getExceptionObjectType(QualType T) const
QualType getCommonSugaredType(QualType X, QualType Y, bool Unqualified=false)
QualType getArrayDecayedType(QualType T) const
Return the properly qualified result of decaying the specified array type to a pointer.
unsigned getTypeAlignIfKnown(QualType T, bool NeedsPreferredAlignment=false) const
Return the alignment of a type, in bits, or 0 if the type is incomplete and we cannot determine the a...
QualType getFunctionType(QualType ResultTy, ArrayRef< QualType > Args, const FunctionProtoType::ExtProtoInfo &EPI) const
Return a normal function type with a typed argument list.
QualType getDependentNameType(ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, const IdentifierInfo *Name, QualType Canon=QualType()) const
void addCopyConstructorForExceptionObject(CXXRecordDecl *RD, CXXConstructorDecl *CD)
QualType getCVRQualifiedType(QualType T, unsigned CVR) const
Return a type with additional const, volatile, or restrict qualifiers.
QualType getExtVectorType(QualType VectorType, unsigned NumElts) const
Return the unique reference to an extended vector type of the specified element type and size.
const TargetInfo & getTargetInfo() const
QualType getLifetimeQualifiedType(QualType type, Qualifiers::ObjCLifetime lifetime)
Return a type with the given lifetime qualifier.
bool typesAreCompatible(QualType T1, QualType T2, bool CompareUnqualified=false)
Compatibility predicates used to check assignment expressions.
QualType getAddrSpaceQualType(QualType T, LangAS AddressSpace) const
Return the uniqued reference to the type for an address space qualified type with the specified type ...
QualType getWideCharType() const
Return the type of wide characters.
QualType getLogicalOperationType() const
The result type of logical operations, '<', '>', '!=', etc.
QualType getIncompleteArrayType(QualType EltTy, ArraySizeModifier ASM, unsigned IndexTypeQuals) const
Return a unique reference to the type for an incomplete array of the specified element type.
QualType getUnqualifiedArrayType(QualType T, Qualifiers &Quals) const
Return this type as a completely-unqualified array type, capturing the qualifiers in Quals.
unsigned getTypeAlign(QualType T) const
Return the ABI-specified alignment of a (complete) type T, in bits.
uint64_t getCharWidth() const
Return the size of the character type, in bits.
Represents a constant array type that does not decay to a pointer when used as a function parameter.
QualType getConstantArrayType(const ASTContext &Ctx) const
An Embarcadero array type trait, as used in the implementation of __array_rank and __array_extent.
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.
Represents a C++11 auto or C++14 decltype(auto) type, possibly constrained by a type-constraint.
A builtin binary operation expression such as "x + y" or "x <= y".
static BinaryOperator * Create(const ASTContext &C, Expr *lhs, Expr *rhs, Opcode opc, QualType ResTy, ExprValueKind VK, ExprObjectKind OK, SourceLocation opLoc, FPOptionsOverride FPFeatures)
BlockExpr - Adaptor class for mixing a BlockDecl with expressions.
This class is used for builtin types like 'int'.
Represents a base class of a C++ class.
Represents binding an expression to a temporary.
static CXXBindTemporaryExpr * Create(const ASTContext &C, CXXTemporary *Temp, Expr *SubExpr)
const Expr * getSubExpr() const
A boolean literal, per ([C++ lex.bool] Boolean literals).
Represents a call to a C++ constructor.
Represents a C++ constructor within a class.
Represents a C++ conversion function within a class.
Represents a C++ base or member initializer.
FieldDecl * getMember() const
If this is a member initializer, returns the declaration of the non-static data member being initiali...
Expr * getInit() const
Get the initializer.
Represents a delete expression for memory deallocation and destructor calls, e.g.
SourceLocation getBeginLoc() const
Represents a C++ destructor within a class.
static CXXFunctionalCastExpr * Create(const ASTContext &Context, QualType T, ExprValueKind VK, TypeSourceInfo *Written, CastKind Kind, Expr *Op, const CXXCastPath *Path, FPOptionsOverride FPO, SourceLocation LPLoc, SourceLocation RPLoc)
Represents a static or instance method of a struct/union/class.
bool isUsualDeallocationFunction(SmallVectorImpl< const FunctionDecl * > &PreventedBy) const
Determine whether this is a usual deallocation function (C++ [basic.stc.dynamic.deallocation]p2),...
const CXXRecordDecl * getParent() const
Return the parent of this method declaration, which is the class in which this method is defined.
bool isMoveAssignmentOperator() const
Determine whether this is a move assignment operator.
QualType getFunctionObjectParameterType() const
bool isCopyAssignmentOperator() const
Determine whether this is a copy-assignment operator, regardless of whether it was declared implicitl...
Represents a new-expression for memory allocation and constructor calls, e.g: "new CXXNewExpr(foo)".
static CXXNewExpr * Create(const ASTContext &Ctx, bool IsGlobalNew, FunctionDecl *OperatorNew, FunctionDecl *OperatorDelete, bool ShouldPassAlignment, bool UsualArrayDeleteWantsSize, ArrayRef< Expr * > PlacementArgs, SourceRange TypeIdParens, std::optional< Expr * > ArraySize, CXXNewInitializationStyle InitializationStyle, Expr *Initializer, QualType Ty, TypeSourceInfo *AllocatedTypeInfo, SourceRange Range, SourceRange DirectInitRange)
Create a c++ new expression.
Represents a C++11 noexcept expression (C++ [expr.unary.noexcept]).
The null pointer literal (C++11 [lex.nullptr])
A call to an overloaded operator written using operator syntax.
Represents a C++ pseudo-destructor (C++ [expr.pseudo]).
Represents a C++ struct/union/class.
bool hasTrivialMoveAssignment() const
Determine whether this class has a trivial move assignment operator (C++11 [class....
bool hasNonTrivialCopyAssignment() const
Determine whether this class has a non-trivial copy assignment operator (C++ [class....
bool hasTrivialDefaultConstructor() const
Determine whether this class has a trivial default constructor (C++11 [class.ctor]p5).
bool hasTrivialDestructor() const
Determine whether this class has a trivial destructor (C++ [class.dtor]p3)
bool hasTrivialMoveConstructor() const
Determine whether this class has a trivial move constructor (C++11 [class.copy]p12)
bool hasTrivialCopyConstructor() const
Determine whether this class has a trivial copy constructor (C++ [class.copy]p6, C++11 [class....
bool isPolymorphic() const
Whether this class is polymorphic (C++ [class.virtual]), which means that the class contains or inher...
static CXXRecordDecl * Create(const ASTContext &C, TagKind TK, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, CXXRecordDecl *PrevDecl=nullptr, bool DelayTypeCreation=false)
bool hasTrivialCopyAssignment() const
Determine whether this class has a trivial copy assignment operator (C++ [class.copy]p11,...
capture_const_range captures() const
bool isAbstract() const
Determine whether this class has a pure virtual function.
bool hasIrrelevantDestructor() const
Determine whether this class has a destructor which has no semantic effect.
bool hasNonTrivialMoveConstructor() const
Determine whether this class has a non-trivial move constructor (C++11 [class.copy]p12)
bool hasDefinition() const
bool isEmpty() const
Determine whether this is an empty class in the sense of (C++11 [meta.unary.prop]).
CXXDestructorDecl * getDestructor() const
Returns the destructor decl for this class.
bool hasNonTrivialMoveAssignment() const
Determine whether this class has a non-trivial move assignment operator (C++11 [class....
bool hasNonTrivialDefaultConstructor() const
Determine whether this class has a non-trivial default constructor (C++11 [class.ctor]p5).
bool hasNonTrivialCopyConstructor() const
Determine whether this class has a non-trivial copy constructor (C++ [class.copy]p6,...
CXXMethodDecl * getLambdaCallOperator() const
Retrieve the lambda call operator of the closure type if this is a closure type.
An expression "T()" which creates an rvalue of a non-class type T.
Represents a C++ nested-name-specifier or a global scope specifier.
bool isNotEmpty() const
A scope specifier is present, but may be valid or invalid.
char * location_data() const
Retrieve the data associated with the source-location information.
bool isValid() const
A scope specifier is present, and it refers to a real scope.
void MakeTrivial(ASTContext &Context, NestedNameSpecifier *Qualifier, SourceRange R)
Make a new nested-name-specifier from incomplete source-location information.
SourceLocation getLastQualifierNameLoc() const
Retrieve the location of the name in the last qualifier in this nested name specifier.
SourceLocation getEndLoc() const
SourceRange getRange() const
bool isSet() const
Deprecated.
NestedNameSpecifierLoc getWithLocInContext(ASTContext &Context) const
Retrieve a nested-name-specifier with location information, copied into the given AST context.
NestedNameSpecifier * getScopeRep() const
Retrieve the representation of the nested-name-specifier.
bool isInvalid() const
An error occurred during parsing of the scope specifier.
void Adopt(NestedNameSpecifierLoc Other)
Adopt an existing nested-name-specifier (with source-range information).
Represents a C++ temporary.
void setDestructor(const CXXDestructorDecl *Dtor)
static CXXTemporary * Create(const ASTContext &C, const CXXDestructorDecl *Destructor)
Represents the this expression in C++.
static CXXThisExpr * Create(const ASTContext &Ctx, SourceLocation L, QualType Ty, bool IsImplicit)
A C++ throw-expression (C++ [except.throw]).
A C++ typeid expression (C++ [expr.typeid]), which gets the type_info that corresponds to the supplie...
static CXXUnresolvedConstructExpr * Create(const ASTContext &Context, QualType T, TypeSourceInfo *TSI, SourceLocation LParenLoc, ArrayRef< Expr * > Args, SourceLocation RParenLoc, bool IsListInit)
A Microsoft C++ __uuidof expression, which gets the _GUID that corresponds to the supplied type or ex...
CallExpr - Represents a function call (C99 6.5.2.2, C++ [expr.call]).
Expr * getArg(unsigned Arg)
getArg - Return the specified argument.
void setArg(unsigned Arg, Expr *ArgExpr)
setArg - Set the specified argument.
SourceLocation getBeginLoc() const LLVM_READONLY
FunctionDecl * getDirectCallee()
If the callee is a FunctionDecl, return it. Otherwise return null.
unsigned getNumArgs() const
getNumArgs - Return the number of actual arguments to this call.
CharUnits - This is an opaque type for sizes expressed in character units.
QuantityType getQuantity() const
getQuantity - Get the raw integer representation of this quantity.
Declaration of a class template.
void setExprNeedsCleanups(bool SideEffects)
bool cleanupsHaveSideEffects() const
bool exprNeedsCleanups() const
Complex values, per C99 6.2.5p11.
CompoundStmt - This represents a group of statements like { stmt stmt }.
static CompoundStmt * Create(const ASTContext &C, ArrayRef< Stmt * > Stmts, FPOptionsOverride FPFeatures, SourceLocation LB, SourceLocation RB)
Represents the specialization of a concept - evaluates to a prvalue of type bool.
bool isSatisfied() const
Whether or not the concept with the given arguments was satisfied when the expression was created.
Represents the canonical version of C arrays with a specified constant size.
static unsigned getNumAddressingBits(const ASTContext &Context, QualType ElementType, const llvm::APInt &NumElements)
Determine the number of bits required to address a member of.
static unsigned getMaxSizeBits(const ASTContext &Context)
Determine the maximum number of active bits that an array's size can require, which limits the maximu...
The result of a constraint satisfaction check, containing the necessary information to diagnose an un...
A POD class for pairing a NamedDecl* with an access specifier.
static DeclAccessPair make(NamedDecl *D, AccessSpecifier AS)
The results of name lookup within a DeclContext.
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 isDependentContext() const
Determines whether this context is dependent on a template parameter.
DeclContext * getLexicalParent()
getLexicalParent - Returns the containing lexical DeclContext.
lookup_result lookup(DeclarationName Name) const
lookup - Find the declarations (if any) with the given Name in this context.
void addDecl(Decl *D)
Add the declaration D into this context.
A reference to a declared variable, function, enum, etc.
Captures information about "declaration specifiers".
Expr * getPackIndexingExpr() const
TST getTypeSpecType() const
SourceLocation getBeginLoc() const LLVM_READONLY
static const TST TST_typename_pack_indexing
ParsedType getRepAsType() const
SourceLocation getEllipsisLoc() const
Expr * getRepAsExpr() const
static const TST TST_decltype
SourceLocation getTypeSpecTypeLoc() const
static const TST TST_decltype_auto
static const TST TST_error
SourceRange getTypeofParensRange() const
Decl - This represents one declaration (or definition), e.g.
SourceLocation getEndLoc() 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.
Kind
Lists the kind of concrete classes of Decl.
bool isInvalidDecl() const
SourceLocation getLocation() const
void setLocalOwningModule(Module *M)
void setImplicit(bool I=true)
DeclContext * getDeclContext()
@ ReachableWhenImported
This declaration has an owning module, and is visible to lookups that occurs within that module.
void setModuleOwnershipKind(ModuleOwnershipKind MOK)
Set whether this declaration is hidden from name lookup.
virtual SourceRange getSourceRange() const LLVM_READONLY
Source range that this declaration covers.
The name of a declaration.
bool isDependentName() const
Determines whether the name itself is dependent, e.g., because it involves a C++ type that is itself ...
OverloadedOperatorKind getCXXOverloadedOperator() const
If this name is the name of an overloadable operator in C++ (e.g., operator+), retrieve the kind of o...
SourceLocation getBeginLoc() const LLVM_READONLY
Information about one declarator, including the parsed type information and the identifier.
void setRParenLoc(SourceLocation Loc)
void setDecltypeLoc(SourceLocation Loc)
Common base class for placeholders for types that get replaced by placeholder type deduction: C++11 a...
A little helper class (which is basically a smart pointer that forwards info from DiagnosticsEngine a...
DiagnosticOptions & getDiagnosticOptions() const
Retrieve the diagnostic options.
bool isIgnored(unsigned DiagID, SourceLocation Loc) const
Determine whether the diagnostic is known to be ignored.
Recursive AST visitor that supports extension via dynamic dispatch.
RAII object that enters a new expression evaluation context.
static EnumDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, EnumDecl *PrevDecl, bool IsScoped, bool IsScopedUsingClassTag, bool IsFixed)
bool isFixed() const
Returns true if this is an Objective-C, C++11, or Microsoft-style enumeration with a fixed underlying...
A helper class that allows the use of isa/cast/dyncast to detect TagType objects of enums.
EnumDecl * getDecl() const
static ExprWithCleanups * Create(const ASTContext &C, EmptyShell empty, unsigned numObjects)
This represents one expression.
bool isReadIfDiscardedInCPlusPlus11() const
Determine whether an lvalue-to-rvalue conversion should implicitly be applied to this expression if i...
bool isValueDependent() const
Determines whether the value of this expression depends on.
ExprValueKind getValueKind() const
getValueKind - The value kind that this expression produces.
bool refersToVectorElement() const
Returns whether this expression refers to a vector element.
bool isTypeDependent() const
Determines whether the type of this expression depends on.
Expr * IgnoreParenImpCasts() LLVM_READONLY
Skip past any parentheses and implicit casts which might surround this expression until reaching a fi...
Expr * IgnoreParens() LLVM_READONLY
Skip past any parentheses which might surround this expression until reaching a fixed point.
bool isLValue() const
isLValue - True if this expression is an "l-value" according to the rules of the current language.
static bool hasAnyTypeDependentArguments(ArrayRef< Expr * > Exprs)
hasAnyTypeDependentArguments - Determines if any of the expressions in Exprs is type-dependent.
@ NPC_ValueDependentIsNull
Specifies that a value-dependent expression of integral or dependent type should be considered a null...
ExprObjectKind getObjectKind() const
getObjectKind - The object kind that this expression produces.
bool HasSideEffects(const ASTContext &Ctx, bool IncludePossibleEffects=true) const
HasSideEffects - This routine returns true for all those expressions which have any effect other than...
bool isInstantiationDependent() const
Whether this expression is instantiation-dependent, meaning that it depends in some way on.
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 isOrdinaryOrBitFieldObject() const
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.
An expression trait intrinsic.
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 CreateRemoval(CharSourceRange RemoveRange)
Create a code modification hint that removes the given source range.
static FixItHint CreateInsertion(SourceLocation InsertionLoc, StringRef Code, bool BeforePreviousInsertions=false)
Create a code modification hint that inserts the given code string at a specific location.
FullExpr - Represents a "full-expression" node.
Represents a function declaration or definition.
const ParmVarDecl * getParamDecl(unsigned i) const
bool isFunctionTemplateSpecialization() const
Determine whether this function is a function template specialization.
bool isThisDeclarationADefinition() const
Returns whether this specific declaration of the function is also a definition that does not contain ...
StringLiteral * getDeletedMessage() const
Get the message that indicates why this function was deleted.
QualType getReturnType() const
bool isTrivial() const
Whether this function is "trivial" in some specialized C++ senses.
bool isDeleted() const
Whether this function has been deleted.
bool isReplaceableGlobalAllocationFunction(std::optional< unsigned > *AlignmentParam=nullptr, bool *IsNothrow=nullptr) const
Determines whether this function is one of the replaceable global allocation functions: void *operato...
static FunctionDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, SourceLocation NLoc, DeclarationName N, QualType T, TypeSourceInfo *TInfo, StorageClass SC, bool UsesFPIntrin=false, bool isInlineSpecified=false, bool hasWrittenPrototype=true, ConstexprSpecKind ConstexprKind=ConstexprSpecKind::Unspecified, Expr *TrailingRequiresClause=nullptr)
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.
bool isUserProvided() const
True if this method is user-declared and was not deleted or defaulted on its first declaration.
unsigned getNumParams() const
Return the number of parameters this function must have based on its FunctionType.
bool isDefined(const FunctionDecl *&Definition, bool CheckForPendingFriendDefinition=false) const
Returns true if the function has a definition that does not need to be instantiated.
Represents a prototype with parameter type info, e.g.
unsigned getNumParams() const
QualType getParamType(unsigned i) const
bool isVariadic() const
Whether this function prototype is variadic.
bool isNothrow(bool ResultIfDependent=false) const
Determine whether this function type has a non-throwing exception specification.
Declaration of a template function.
ExtInfo withNoReturn(bool noReturn) const
bool getProducesResult() const
FunctionType - C99 6.7.5.3 - Function Declarators.
ExtInfo getExtInfo() const
One of these records is kept for each identifier that is lexed.
ReservedIdentifierStatus isReserved(const LangOptions &LangOpts) const
Determine whether this is a name reserved for the implementation (C99 7.1.3, C++ [lib....
ReservedLiteralSuffixIdStatus isReservedLiteralSuffixId() const
Determine whether this is a name reserved for future standardization or the implementation (C++ [usrl...
StringRef getName() const
Return the actual identifier string.
bool tryAddTopLevelDecl(NamedDecl *D, DeclarationName Name)
Try to add the given declaration to the top level scope, if it (or a redeclaration of it) hasn't alre...
IdentifierInfo & get(StringRef Name)
Return the identifier token info for the specified named identifier.
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...
@ StaticObjectArgumentConversion
StandardConversionSequence Standard
When ConversionKind == StandardConversion, provides the details of the standard conversion sequence.
UserDefinedConversionSequence UserDefined
When ConversionKind == UserDefinedConversion, provides the details of the user-defined conversion seq...
void DiagnoseAmbiguousConversion(Sema &S, SourceLocation CaretLoc, const PartialDiagnostic &PDiag) const
Diagnoses an ambiguous conversion.
Describes an C or C++ initializer list.
Describes the kind of initialization being performed, along with location information for tokens rela...
static InitializationKind CreateDefault(SourceLocation InitLoc)
Create a default initialization.
static InitializationKind CreateDirect(SourceLocation InitLoc, SourceLocation LParenLoc, SourceLocation RParenLoc)
Create a direct initialization.
static InitializationKind CreateCopy(SourceLocation InitLoc, SourceLocation EqualLoc, bool AllowExplicitConvs=false)
Create a copy initialization.
static InitializationKind CreateDirectList(SourceLocation InitLoc)
static InitializationKind CreateValue(SourceLocation InitLoc, SourceLocation LParenLoc, SourceLocation RParenLoc, bool isImplicit=false)
Create a value initialization.
Describes the sequence of initializations required to initialize a given object or reference with a s...
ExprResult Perform(Sema &S, const InitializedEntity &Entity, const InitializationKind &Kind, MultiExprArg Args, QualType *ResultType=nullptr)
Perform the actual initialization of the given entity based on the computed initialization sequence.
bool isAmbiguous() const
Determine whether this initialization failed due to an ambiguity.
bool Diagnose(Sema &S, const InitializedEntity &Entity, const InitializationKind &Kind, ArrayRef< Expr * > Args)
Diagnose an potentially-invalid initialization sequence.
bool Failed() const
Determine whether the initialization sequence is invalid.
bool isDirectReferenceBinding() const
Determine whether this initialization is a direct reference binding (C++ [dcl.init....
Describes an entity that is being initialized.
static InitializedEntity InitializeException(SourceLocation ThrowLoc, QualType Type)
Create the initialization entity for an exception object.
static InitializedEntity InitializeTemporary(QualType Type)
Create the initialization entity for a temporary.
static InitializedEntity InitializeNew(SourceLocation NewLoc, QualType Type)
Create the initialization entity for an object allocated via new.
static InitializedEntity InitializeParameter(ASTContext &Context, ParmVarDecl *Parm)
Create the initialization entity for a 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'.
A C++ lambda expression, which produces a function object (of unspecified type) that can be invoked l...
clang::ObjCRuntime ObjCRuntime
bool hasGlobalAllocationFunctionVisibility() const
bool allowsNonTrivialObjCLifetimeQualifiers() const
True if any ObjC types may have non-trivial lifetime qualifiers.
bool hasHiddenGlobalAllocationFunctionVisibility() const
bool hasProtectedGlobalAllocationFunctionVisibility() const
static SourceLocation findLocationAfterToken(SourceLocation loc, tok::TokenKind TKind, const SourceManager &SM, const LangOptions &LangOpts, bool SkipTrailingWhitespaceAndNewLine)
Checks that the given token is the first token that occurs after the given location (this excludes co...
A class for iterating through a result set and possibly filtering out results.
void erase()
Erase the last element returned from this iterator.
Represents the results of name lookup.
@ FoundOverloaded
Name lookup found a set of overloaded functions that met the criteria.
@ FoundUnresolvedValue
Name lookup found an unresolvable value declaration and cannot yet complete.
@ Ambiguous
Name lookup results in an ambiguity; use getAmbiguityKind to figure out what kind of ambiguity we hav...
@ NotFound
No entity found met the criteria.
@ NotFoundInCurrentInstantiation
No entity found met the criteria within the current instantiation,, but there were dependent base cla...
@ Found
Name lookup found a single declaration that met the criteria.
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.
void setLookupName(DeclarationName Name)
Sets the name to look up.
bool empty() const
Return true if no decls were found.
SourceLocation getNameLoc() const
Gets the location of the identifier.
Filter makeFilter()
Create a filter for this result set.
CXXRecordDecl * getNamingClass() const
Returns the 'naming class' for this lookup, i.e.
bool isClassLookup() const
Returns whether these results arose from performing a lookup into a class.
void setNamingClass(CXXRecordDecl *Record)
Sets the 'naming class' for this lookup.
LookupResultKind getResultKind() 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.
ValueDecl * getMemberDecl() const
Retrieve the member declaration to which this expression refers.
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
Data structure that captures multiple levels of template argument lists for use in template instantia...
void addOuterRetainedLevels(unsigned Num)
This represents a decl that may have a name.
IdentifierInfo * getIdentifier() const
Get the identifier that names this declaration, if there is one.
DeclarationName getDeclName() const
Get the actual, stored name of the declaration, which may be a special name.
std::string getNameAsString() const
Get a human-readable name for the declaration, even if it is one of the special kinds of names (C++ c...
A C++ nested-name-specifier augmented with source location information.
Represents a C++ nested name specifier, such as "\::std::vector<int>::".
SpecifierKind getKind() const
Determine what kind of nested name specifier is stored.
IdentifierInfo * getAsIdentifier() const
Retrieve the identifier stored in this nested name specifier.
NestedNameSpecifier * getPrefix() const
Return the prefix of this nested name specifier.
@ NamespaceAlias
A namespace alias, stored as a NamespaceAliasDecl*.
@ TypeSpec
A type, stored as a Type*.
@ TypeSpecWithTemplate
A type that was preceded by the 'template' keyword, stored as a Type*.
@ Super
Microsoft's '__super' specifier, stored as a CXXRecordDecl* of the class it appeared in.
@ Identifier
An identifier, stored as an IdentifierInfo*.
@ Global
The global specifier '::'. There is no stored value.
@ Namespace
A namespace, stored as a NamespaceDecl*.
const Type * getAsType() const
Retrieve the type stored in this nested name specifier.
ObjCArrayLiteral - used for objective-c array containers; as in: @["Hello", NSApp,...
ObjCBoxedExpr - used for generalized expression boxing.
ObjCDictionaryLiteral - AST node to represent objective-c dictionary literals; as in:"name" : NSUserN...
Represents an ObjC class declaration.
bool isSuperClassOf(const ObjCInterfaceDecl *I) const
isSuperClassOf - Return true if this class is the specified class or is a super class of the specifie...
An expression that sends a message to the given Objective-C object or class.
ObjCMethodDecl - Represents an instance or class method declaration.
Represents a pointer to an Objective C object.
QualType getPointeeType() const
Gets the type pointed to by this ObjC pointer.
Represents a class type in Objective C.
ObjCInterfaceDecl * getInterface() const
Gets the interface declaration for this object type, if the base type really is an interface.
bool hasEmptyCollections() const
Are the empty collection symbols available?
static OpaquePtr getFromOpaquePtr(void *P)
static OpaquePtr make(QualType P)
OpaqueValueExpr - An expression referring to an opaque object of a fixed type and value class.
OverloadCandidateSet - A set of overload candidates, used in C++ overload resolution (C++ 13....
@ CSK_Normal
Normal lookup.
@ 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...
OverloadingResult BestViableFunction(Sema &S, SourceLocation Loc, OverloadCandidateSet::iterator &Best)
Find the best viable function on this overload set, if it exists.
SmallVector< OverloadCandidate *, 32 > CompleteCandidates(Sema &S, OverloadCandidateDisplayKind OCD, ArrayRef< Expr * > Args, SourceLocation OpLoc=SourceLocation(), llvm::function_ref< bool(OverloadCandidate &)> Filter=[](OverloadCandidate &) { return true;})
void setEllipsisLoc(SourceLocation Loc)
ParenExpr - This represents a parenthesized expression, e.g.
Represents a parameter to a function.
static ParmVarDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, const IdentifierInfo *Id, QualType T, TypeSourceInfo *TInfo, StorageClass S, Expr *DefArg)
PointerType - C99 6.7.5.1 - Pointer Declarators.
QualType getPointeeType() const
IdentifierTable & getIdentifierTable()
const LangOptions & getLangOpts() const
Stores the type being destroyed by a pseudo-destructor expression.
TypeSourceInfo * getTypeSourceInfo() const
A (possibly-)qualified type.
bool isVolatileQualified() const
Determine whether this type is volatile-qualified.
QualType getNonLValueExprType(const ASTContext &Context) const
Determine the type of a (typically non-lvalue) expression with the specified result type.
QualType withConst() const
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.
Qualifiers::ObjCLifetime getObjCLifetime() const
Returns lifetime attribute of 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 getCanonicalType() const
QualType getUnqualifiedType() const
Retrieve the unqualified variant of the given type, removing as little sugar as possible.
bool isWebAssemblyReferenceType() const
Returns true if it is a WebAssembly Reference Type.
DestructionKind isDestructedType() const
Returns a nonzero value if objects of this type require non-trivial work to clean up after.
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 hasNonTrivialObjCLifetime() const
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...
The collection of all-type qualifiers we support.
void removeCVRQualifiers(unsigned mask)
@ OCL_Strong
Assigning into this object requires the old value to be released and the new value to be retained.
@ OCL_ExplicitNone
This object can be modified without requiring retains or releases.
@ OCL_None
There is no lifetime qualification on this type.
@ OCL_Weak
Reading or writing from this object requires a barrier call.
@ OCL_Autoreleasing
Assigning into this object requires a lifetime extension.
bool hasCVRQualifiers() const
bool hasUnaligned() const
unsigned getAddressSpaceAttributePrintValue() const
Get the address space attribute value to be printed by diagnostics.
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 setAddressSpace(LangAS space)
unsigned getCVRUQualifiers() const
void setObjCGCAttr(GC type)
ObjCLifetime getObjCLifetime() const
static Qualifiers fromCVRUMask(unsigned CVRU)
LangAS getAddressSpace() const
void setObjCLifetime(ObjCLifetime type)
Represents a struct/union/class.
bool canPassInRegisters() const
Determine whether this class can be passed in registers.
A helper class that allows the use of isa/cast/dyncast to detect TagType objects of structs/unions/cl...
RecordDecl * getDecl() const
Represents the body of a requires-expression.
static RequiresExprBodyDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation StartLoc)
static RequiresExpr * Create(ASTContext &C, SourceLocation RequiresKWLoc, RequiresExprBodyDecl *Body, SourceLocation LParenLoc, ArrayRef< ParmVarDecl * > LocalParameters, SourceLocation RParenLoc, ArrayRef< concepts::Requirement * > Requirements, SourceLocation RBraceLoc)
Scope - A scope is a transient data structure that is used while parsing the program.
@ BlockScope
This is a scope that corresponds to a block/closure object.
@ ClassScope
The scope of a struct/union/class definition.
@ TryScope
This is the scope of a C++ try statement.
@ FnScope
This indicates that the scope corresponds to a function, which means that labels are set here.
@ ObjCMethodScope
This scope corresponds to an Objective-C method body.
A generic diagnostic builder for errors which may or may not be deferred.
SemaDiagnosticBuilder Diag(SourceLocation Loc, unsigned DiagID, bool DeferHint=false)
Emit a diagnostic.
PartialDiagnostic PDiag(unsigned DiagID=0)
Build a partial diagnostic.
SemaDiagnosticBuilder DiagIfDeviceCode(SourceLocation Loc, unsigned DiagID)
Creates a SemaDiagnosticBuilder that emits the diagnostic if the current context is "used as device c...
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...
ARCConversionResult CheckObjCConversion(SourceRange castRange, QualType castType, Expr *&op, CheckedConversionKind CCK, bool Diagnose=true, bool DiagnoseCFAudited=false, BinaryOperatorKind Opc=BO_PtrMemD)
Checks for invalid conversions and casts between retainable pointers and other pointer kinds for ARC ...
QualType FindCompositeObjCPointerType(ExprResult &LHS, ExprResult &RHS, SourceLocation QuestionLoc)
FindCompositeObjCPointerType - Helper method to find composite type of two objective-c pointer types ...
ExprResult LookupInObjCMethod(LookupResult &LookUp, Scope *S, IdentifierInfo *II, bool AllowBuiltinCreation=false)
The parser has read a name in, and Sema has detected that we're currently inside an ObjC method.
void EmitRelatedResultTypeNote(const Expr *E)
If the given expression involves a message send to a method with a related result type,...
CastKind PrepareCastToObjCObjectPointer(ExprResult &E)
Prepare a conversion of the given expression to an ObjC object pointer type.
bool CheckPPCMMAType(QualType Type, SourceLocation TypeLoc)
CXXThisScopeRAII(Sema &S, Decl *ContextDecl, Qualifiers CXXThisTypeQuals, bool Enabled=true)
Introduce a new scope where 'this' may be allowed (when enabled), using the given declaration (which ...
Abstract base class used to perform a contextual implicit conversion from an expression to any type p...
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.
FunctionDecl * FindUsualDeallocationFunction(SourceLocation StartLoc, bool CanProvideSize, bool Overaligned, DeclarationName Name)
void DeclareGlobalNewDelete()
DeclareGlobalNewDelete - Declare the global forms of operator new and delete.
QualType CheckSizelessVectorConditionalTypes(ExprResult &Cond, ExprResult &LHS, ExprResult &RHS, SourceLocation QuestionLoc)
ParsedType CreateParsedType(QualType T, TypeSourceInfo *TInfo)
Package the given type and TSI into a ParsedType.
ExprResult ActOnCXXTypeid(SourceLocation OpLoc, SourceLocation LParenLoc, bool isType, void *TyOrExpr, SourceLocation RParenLoc)
ActOnCXXTypeid - Parse typeid( something ).
QualType getCurrentThisType()
Try to retrieve the type of the 'this' pointer.
ExprResult ActOnCXXUuidof(SourceLocation OpLoc, SourceLocation LParenLoc, bool isType, void *TyOrExpr, SourceLocation RParenLoc)
ActOnCXXUuidof - Parse __uuidof( something ).
Scope * getCurScope() const
Retrieve the parser's current scope.
QualType CheckVectorConditionalTypes(ExprResult &Cond, ExprResult &LHS, ExprResult &RHS, SourceLocation QuestionLoc)
bool checkArrayElementAlignment(QualType EltTy, SourceLocation Loc)
ExprResult IgnoredValueConversions(Expr *E)
IgnoredValueConversions - Given that an expression's result is syntactically ignored,...
bool RequireCompleteSizedType(SourceLocation Loc, QualType T, unsigned DiagID, const Ts &...Args)
@ LookupOrdinaryName
Ordinary name lookup, which finds ordinary names (functions, variables, typedefs, etc....
@ LookupDestructorName
Look up a name following ~ in a destructor name.
@ LookupTagName
Tag name lookup, which finds the names of enums, classes, structs, and unions.
@ LookupAnyName
Look up any declaration with any name.
void DiagnoseSentinelCalls(const NamedDecl *D, SourceLocation Loc, ArrayRef< Expr * > Args)
DiagnoseSentinelCalls - This routine checks whether a call or message-send is to a declaration with t...
ExprResult ActOnNoexceptExpr(SourceLocation KeyLoc, SourceLocation LParen, Expr *Operand, SourceLocation RParen)
bool BuildTypeConstraint(const CXXScopeSpec &SS, TemplateIdAnnotation *TypeConstraint, TemplateTypeParmDecl *ConstrainedParameter, SourceLocation EllipsisLoc, bool AllowUnexpandedPack)
bool CheckCXXThisType(SourceLocation Loc, QualType Type)
Check whether the type of 'this' is valid in the current context.
TypeResult ActOnTemplateIdType(Scope *S, CXXScopeSpec &SS, SourceLocation TemplateKWLoc, TemplateTy Template, const IdentifierInfo *TemplateII, SourceLocation TemplateIILoc, SourceLocation LAngleLoc, ASTTemplateArgsPtr TemplateArgs, SourceLocation RAngleLoc, bool IsCtorOrDtorName=false, bool IsClassName=false, ImplicitTypenameContext AllowImplicitTypename=ImplicitTypenameContext::No)
IfExistsResult
Describes the result of an "if-exists" condition check.
@ IER_DoesNotExist
The symbol does not exist.
@ IER_Dependent
The name is a dependent name, so the results will differ from one instantiation to the next.
@ IER_Error
An error occurred.
@ IER_Exists
The symbol exists.
QualType UsualArithmeticConversions(ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, ArithConvKind ACK)
UsualArithmeticConversions - Performs various conversions that are common to binary operators (C99 6....
ExprResult ActOnExpressionTrait(ExpressionTrait OET, SourceLocation KWLoc, Expr *Queried, SourceLocation RParen)
ActOnExpressionTrait - Parsed one of the unary type trait support pseudo-functions.
bool CompleteConstructorCall(CXXConstructorDecl *Constructor, QualType DeclInitType, MultiExprArg ArgsPtr, SourceLocation Loc, SmallVectorImpl< Expr * > &ConvertedArgs, bool AllowExplicit=false, bool IsListInitialization=false)
Given a constructor and the set of arguments provided for the constructor, convert the arguments and ...
ExprResult CheckBooleanCondition(SourceLocation Loc, Expr *E, bool IsConstexpr=false)
CheckBooleanCondition - Diagnose problems involving the use of the given expression as a boolean cond...
@ Boolean
A boolean condition, from 'if', 'while', 'for', or 'do'.
@ Switch
An integral condition for a 'switch' statement.
@ ConstexprIf
A constant boolean condition from 'if constexpr'.
bool RequireCompleteDeclContext(CXXScopeSpec &SS, DeclContext *DC)
Require that the context specified by SS be complete.
SmallVector< sema::FunctionScopeInfo *, 4 > FunctionScopes
Stack containing information about each of the nested function, block, and method scopes that are cur...
@ Ref_Compatible
Ref_Compatible - The two types are reference-compatible.
ExprResult BuildCXXFunctionalCastExpr(TypeSourceInfo *TInfo, QualType Type, SourceLocation LParenLoc, Expr *CastExpr, SourceLocation RParenLoc)
bool CheckCXXThisCapture(SourceLocation Loc, bool Explicit=false, bool BuildAndDiagnose=true, const unsigned *const FunctionScopeIndexToStopAt=nullptr, bool ByCopy=false)
Make sure the value of 'this' is actually available in the current context, if it is a potentially ev...
ExprResult MaybeBindToTemporary(Expr *E)
MaybeBindToTemporary - If the passed in expression has a record type with a non-trivial destructor,...
void MarkCaptureUsedInEnclosingContext(ValueDecl *Capture, SourceLocation Loc, unsigned CapturingScopeIndex)
ExprResult ActOnStartCXXMemberReference(Scope *S, Expr *Base, SourceLocation OpLoc, tok::TokenKind OpKind, ParsedType &ObjectType, bool &MayBePseudoDestructor)
ExprResult VerifyIntegerConstantExpression(Expr *E, llvm::APSInt *Result, VerifyICEDiagnoser &Diagnoser, AllowFoldKind CanFold=NoFold)
VerifyIntegerConstantExpression - Verifies that an expression is an ICE, and reports the appropriate ...
QualType CheckVectorOperands(ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, bool IsCompAssign, bool AllowBothBool, bool AllowBoolConversion, bool AllowBoolOperation, bool ReportInvalid)
type checking for vector binary operators.
concepts::Requirement * ActOnSimpleRequirement(Expr *E)
FPOptionsOverride CurFPFeatureOverrides()
concepts::Requirement * ActOnCompoundRequirement(Expr *E, SourceLocation NoexceptLoc)
ExprResult BuildOverloadedArrowExpr(Scope *S, Expr *Base, SourceLocation OpLoc, bool *NoArrowOperatorFound=nullptr)
BuildOverloadedArrowExpr - Build a call to an overloaded operator-> (if one exists),...
concepts::Requirement::SubstitutionDiagnostic * createSubstDiagAt(SourceLocation Location, EntityPrinter Printer)
create a Requirement::SubstitutionDiagnostic with only a SubstitutedEntity and DiagLoc using ASTConte...
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.
ExprResult CheckUnevaluatedOperand(Expr *E)
ExprResult ActOnCXXDelete(SourceLocation StartLoc, bool UseGlobal, bool ArrayForm, Expr *Operand)
ActOnCXXDelete - Parsed a C++ 'delete' expression (C++ 5.3.5), as in:
ExprResult CheckSwitchCondition(SourceLocation SwitchLoc, Expr *Cond)
void diagnoseNullableToNonnullConversion(QualType DstType, QualType SrcType, SourceLocation Loc)
Warn if we're implicitly casting from a _Nullable pointer type to a _Nonnull one.
ExprResult ActOnCXXNullPtrLiteral(SourceLocation Loc)
ActOnCXXNullPtrLiteral - Parse 'nullptr'.
ExprResult BuildCXXTypeId(QualType TypeInfoType, SourceLocation TypeidLoc, TypeSourceInfo *Operand, SourceLocation RParenLoc)
Build a C++ typeid expression with a type operand.
ExprResult SubstExpr(Expr *E, const MultiLevelTemplateArgumentList &TemplateArgs)
DiagnosticsEngine & getDiagnostics() const
ExprResult MaybeConvertParenListExprToParenExpr(Scope *S, Expr *ME)
This is not an AltiVec-style cast or or C++ direct-initialization, so turn the ParenListExpr into a s...
concepts::TypeRequirement * BuildTypeRequirement(TypeSourceInfo *Type)
AccessResult CheckDestructorAccess(SourceLocation Loc, CXXDestructorDecl *Dtor, const PartialDiagnostic &PDiag, QualType objectType=QualType())
FunctionDecl * ResolveAddressOfOverloadedFunction(Expr *AddressOfExpr, QualType TargetType, bool Complain, DeclAccessPair &Found, bool *pHadMultipleCandidates=nullptr)
ResolveAddressOfOverloadedFunction - Try to resolve the address of an overloaded function (C++ [over....
void PushOnScopeChains(NamedDecl *D, Scope *S, bool AddToContext=true)
Add this decl to the scope shadowed decl chains.
ParsedType getDestructorName(const IdentifierInfo &II, SourceLocation NameLoc, Scope *S, CXXScopeSpec &SS, ParsedType ObjectType, bool EnteringContext)
void CleanupVarDeclMarking()
ExprResult DefaultFunctionArrayLvalueConversion(Expr *E, bool Diagnose=true)
ASTContext & getASTContext() const
void DeclareGlobalAllocationFunction(DeclarationName Name, QualType Return, ArrayRef< QualType > Params)
DeclareGlobalAllocationFunction - Declares a single implicit global allocation function if it doesn't...
bool DiagnoseUnexpandedParameterPackInRequiresExpr(RequiresExpr *RE)
If the given requirees-expression contains an unexpanded reference to one of its own parameter packs,...
CXXDestructorDecl * LookupDestructor(CXXRecordDecl *Class)
Look for the destructor of the given class.
bool tryCaptureVariable(ValueDecl *Var, SourceLocation Loc, TryCaptureKind Kind, SourceLocation EllipsisLoc, bool BuildAndDiagnose, QualType &CaptureType, QualType &DeclRefType, const unsigned *const FunctionScopeIndexToStopAt)
Try to capture the given variable.
void LookupBinOp(Scope *S, SourceLocation OpLoc, BinaryOperatorKind Opc, UnresolvedSetImpl &Functions)
AssignConvertType CheckTransparentUnionArgumentConstraints(QualType ArgType, ExprResult &RHS)
NamespaceDecl * getOrCreateStdNamespace()
Retrieve the special "std" namespace, which may require us to implicitly define the namespace.
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.
bool CheckTypeTraitArity(unsigned Arity, SourceLocation Loc, size_t N)
ExprResult ImpCastExprToType(Expr *E, QualType Type, CastKind CK, ExprValueKind VK=VK_PRValue, const CXXCastPath *BasePath=nullptr, CheckedConversionKind CCK=CheckedConversionKind::Implicit)
ImpCastExprToType - If Expr is not of type 'Type', insert an implicit cast.
ExprResult ActOnPseudoDestructorExpr(Scope *S, Expr *Base, SourceLocation OpLoc, tok::TokenKind OpKind, CXXScopeSpec &SS, UnqualifiedId &FirstTypeName, SourceLocation CCLoc, SourceLocation TildeLoc, UnqualifiedId &SecondTypeName)
bool CheckArgsForPlaceholders(MultiExprArg args)
Check an argument list for placeholders that we won't try to handle later.
AccessResult CheckAllocationAccess(SourceLocation OperatorLoc, SourceRange PlacementRange, CXXRecordDecl *NamingClass, DeclAccessPair FoundDecl, bool Diagnose=true)
Checks access to an overloaded operator new or delete.
AccessResult CheckMemberOperatorAccess(SourceLocation Loc, Expr *ObjectExpr, const SourceRange &, DeclAccessPair FoundDecl)
ExprResult ActOnArrayTypeTrait(ArrayTypeTrait ATT, SourceLocation KWLoc, ParsedType LhsTy, Expr *DimExpr, SourceLocation RParen)
ActOnArrayTypeTrait - Parsed one of the binary type trait support pseudo-functions.
void ActOnFinishRequiresExpr()
ExprResult BuildCXXNew(SourceRange Range, bool UseGlobal, SourceLocation PlacementLParen, MultiExprArg PlacementArgs, SourceLocation PlacementRParen, SourceRange TypeIdParens, QualType AllocType, TypeSourceInfo *AllocTypeInfo, std::optional< Expr * > ArraySize, SourceRange DirectInitRange, Expr *Initializer)
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.
ExprResult ActOnCXXThrow(Scope *S, SourceLocation OpLoc, Expr *expr)
DeclRefExpr * BuildDeclRefExpr(ValueDecl *D, QualType Ty, ExprValueKind VK, SourceLocation Loc, const CXXScopeSpec *SS=nullptr)
ExprResult CheckConvertedConstantExpression(Expr *From, QualType T, llvm::APSInt &Value, CCEKind CCE)
EnumDecl * getStdAlignValT() const
LazyDeclPtr StdBadAlloc
The C++ "std::bad_alloc" class, which is defined by the C++ standard library.
NamedReturnInfo getNamedReturnInfo(Expr *&E, SimplerImplicitMoveMode Mode=SimplerImplicitMoveMode::Normal)
Determine whether the given expression might be move-eligible or copy-elidable in either a (co_)retur...
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...
bool checkLiteralOperatorId(const CXXScopeSpec &SS, const UnqualifiedId &Id, bool IsUDSuffix)
void DiagnoseUnusedExprResult(const Stmt *S, unsigned DiagID)
DiagnoseUnusedExprResult - If the statement passed in is an expression whose result is unused,...
FPOptions & getCurFPFeatures()
SourceLocation getLocForEndOfToken(SourceLocation Loc, unsigned Offset=0)
Calls Lexer::getLocForEndOfToken()
@ UPPC_IfExists
Microsoft __if_exists.
@ UPPC_IfNotExists
Microsoft __if_not_exists.
const LangOptions & getLangOpts() const
StmtResult ActOnFinishFullStmt(Stmt *Stmt)
CastKind PrepareScalarCast(ExprResult &src, QualType destType)
Prepares for a scalar cast, performing all the necessary stages except the final cast and returning t...
void diagnoseUnavailableAlignedAllocation(const FunctionDecl &FD, SourceLocation Loc)
Produce diagnostics if FD is an aligned allocation or deallocation function that is unavailable.
bool LookupParsedName(LookupResult &R, Scope *S, CXXScopeSpec *SS, QualType ObjectType, bool AllowBuiltinCreation=false, bool EnteringContext=false)
Performs name lookup for a name that was parsed in the source code, and may contain a C++ scope speci...
bool isPotentialImplicitMemberAccess(const CXXScopeSpec &SS, LookupResult &R, bool IsAddressOfOperand)
Check whether an expression might be an implicit class member access.
bool DiagnoseUnexpandedParameterPack(SourceLocation Loc, TypeSourceInfo *T, UnexpandedParameterPackContext UPPC)
If the given type contains an unexpanded parameter pack, diagnose the error.
bool RequireNonAbstractType(SourceLocation Loc, QualType T, TypeDiagnoser &Diagnoser)
ExprResult ActOnCXXBoolLiteral(SourceLocation OpLoc, tok::TokenKind Kind)
ActOnCXXBoolLiteral - Parse {true,false} literals.
ExprResult BuildCXXTypeConstructExpr(TypeSourceInfo *Type, SourceLocation LParenLoc, MultiExprArg Exprs, SourceLocation RParenLoc, bool ListInitialization)
bool CheckConstraintSatisfaction(const NamedDecl *Template, ArrayRef< const Expr * > ConstraintExprs, const MultiLevelTemplateArgumentList &TemplateArgLists, SourceRange TemplateIDRange, ConstraintSatisfaction &Satisfaction)
Check whether the given list of constraint expressions are satisfied (as if in a 'conjunction') given...
const LangOptions & LangOpts
bool FindAllocationFunctions(SourceLocation StartLoc, SourceRange Range, AllocationFunctionScope NewScope, AllocationFunctionScope DeleteScope, QualType AllocType, bool IsArray, bool &PassAlignment, MultiExprArg PlaceArgs, FunctionDecl *&OperatorNew, FunctionDecl *&OperatorDelete, bool Diagnose=true)
Finds the overloads of operator new and delete that are appropriate for the allocation.
sema::LambdaScopeInfo * getCurLambda(bool IgnoreNonLambdaCapturingScope=false)
Retrieve the current lambda scope info, if any.
ExprResult BuildCXXMemberCallExpr(Expr *Exp, NamedDecl *FoundDecl, CXXConversionDecl *Method, bool HadMultipleCandidates)
ExprResult CheckConditionVariable(VarDecl *ConditionVar, SourceLocation StmtLoc, ConditionKind CK)
Check the use of the given variable as a C++ condition in an if, while, do-while, or switch statement...
ExprResult TemporaryMaterializationConversion(Expr *E)
If E is a prvalue denoting an unmaterialized temporary, materialize it as an xvalue.
CXXRecordDecl * getStdBadAlloc() const
ExprResult ActOnCXXTypeConstructExpr(ParsedType TypeRep, SourceLocation LParenOrBraceLoc, MultiExprArg Exprs, SourceLocation RParenOrBraceLoc, bool ListInitialization)
ActOnCXXTypeConstructExpr - Parse construction of a specified type.
void CheckUnusedVolatileAssignment(Expr *E)
Check whether E, which is either a discarded-value expression or an unevaluated operand,...
QualType CheckTypenameType(ElaboratedTypeKeyword Keyword, SourceLocation KeywordLoc, NestedNameSpecifierLoc QualifierLoc, const IdentifierInfo &II, SourceLocation IILoc, TypeSourceInfo **TSI, bool DeducedTSTContext)
bool CanUseDecl(NamedDecl *D, bool TreatUnavailableAsInvalid)
Determine whether the use of this declaration is valid, without emitting diagnostics.
ConditionResult ActOnConditionVariable(Decl *ConditionVar, SourceLocation StmtLoc, ConditionKind CK)
void MarkAnyDeclReferenced(SourceLocation Loc, Decl *D, bool MightBeOdrUse)
Perform marking for a reference to an arbitrary declaration.
void MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class, bool DefinitionRequired=false)
Note that the vtable for the given class was used at the given location.
bool CheckAllocatedType(QualType AllocType, SourceLocation Loc, SourceRange R)
Checks that a type is suitable as the allocated type in a new-expression.
CleanupInfo Cleanup
Used to control the generation of ExprWithCleanups.
ExprResult BuildTypeTrait(TypeTrait Kind, SourceLocation KWLoc, ArrayRef< TypeSourceInfo * > Args, SourceLocation RParenLoc)
ExprResult ActOnRequiresExpr(SourceLocation RequiresKWLoc, RequiresExprBodyDecl *Body, SourceLocation LParenLoc, ArrayRef< ParmVarDecl * > LocalParameters, SourceLocation RParenLoc, ArrayRef< concepts::Requirement * > Requirements, SourceLocation ClosingBraceLoc)
QualType FindCompositePointerType(SourceLocation Loc, Expr *&E1, Expr *&E2, bool ConvertArgs=true)
Find a merged pointer type and convert the two expressions to it.
ExprResult BuildExpressionTrait(ExpressionTrait OET, SourceLocation KWLoc, Expr *Queried, SourceLocation RParen)
static CastKind ScalarTypeToBooleanCastKind(QualType ScalarTy)
ScalarTypeToBooleanCastKind - Returns the cast kind corresponding to the conversion from scalar type ...
CXXRecordDecl * getCurrentClass(Scope *S, const CXXScopeSpec *SS)
Get the class that is directly named by the current context.
ExprResult BuildCXXUuidof(QualType TypeInfoType, SourceLocation TypeidLoc, TypeSourceInfo *Operand, SourceLocation RParenLoc)
Build a Microsoft __uuidof expression with a type operand.
Expr * BuildCXXThisExpr(SourceLocation Loc, QualType Type, bool IsImplicit)
Build a CXXThisExpr and mark it referenced in the current context.
QualType CheckSizelessVectorOperands(ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, bool IsCompAssign, ArithConvKind OperationKind)
llvm::DenseMap< const VarDecl *, int > RefsMinusAssignments
Increment when we find a reference; decrement when we find an ignored assignment.
std::optional< sema::TemplateDeductionInfo * > isSFINAEContext() const
Determines whether we are currently in a context where template argument substitution failures are no...
QualType DeduceTemplateSpecializationFromInitializer(TypeSourceInfo *TInfo, const InitializedEntity &Entity, const InitializationKind &Kind, MultiExprArg Init)
void MarkThisReferenced(CXXThisExpr *This)
ExprResult DefaultLvalueConversion(Expr *E)
ExprResult BuildDeclarationNameExpr(const CXXScopeSpec &SS, LookupResult &R, bool NeedsADL, bool AcceptInvalidDecl=false)
bool CheckDerivedToBaseConversion(QualType Derived, QualType Base, SourceLocation Loc, SourceRange Range, CXXCastPath *BasePath=nullptr, bool IgnoreAccess=false)
bool isInLifetimeExtendingContext() const
Module * getCurrentModule() const
Get the module unit whose scope we are currently within.
static bool isCast(CheckedConversionKind CCK)
ExprResult prepareVectorSplat(QualType VectorTy, Expr *SplattedExpr)
Prepare SplattedExpr for a vector splat operation, adding implicit casts if necessary.
IfExistsResult CheckMicrosoftIfExistsSymbol(Scope *S, CXXScopeSpec &SS, const DeclarationNameInfo &TargetNameInfo)
DeclContext * CurContext
CurContext - This is the current declaration context of parsing.
bool FindDeallocationFunction(SourceLocation StartLoc, CXXRecordDecl *RD, DeclarationName Name, FunctionDecl *&Operator, bool Diagnose=true, bool WantSize=false, bool WantAligned=false)
DeclarationNameInfo GetNameFromUnqualifiedId(const UnqualifiedId &Name)
Retrieves the declaration name from a parsed unqualified-id.
ExprResult PerformContextuallyConvertToBool(Expr *From)
PerformContextuallyConvertToBool - Perform a contextual conversion of the expression From to bool (C+...
AccessResult CheckConstructorAccess(SourceLocation Loc, CXXConstructorDecl *D, DeclAccessPair FoundDecl, const InitializedEntity &Entity, bool IsCopyBindingRefToTemp=false)
Checks access to a constructor.
bool DiagnoseConditionalForNull(const Expr *LHSExpr, const Expr *RHSExpr, SourceLocation QuestionLoc)
Emit a specialized diagnostic when one expression is a null pointer constant and the other is not a p...
ParsedType getDestructorTypeForDecltype(const DeclSpec &DS, ParsedType ObjectType)
bool isUnevaluatedContext() const
Determines whether we are currently in a context that is not evaluated as per C++ [expr] p5.
DeclContext * getFunctionLevelDeclContext(bool AllowLambda=false) const
If AllowLambda is true, treat lambda as function.
Stmt * MaybeCreateStmtWithCleanups(Stmt *SubStmt)
AssignConvertType
AssignConvertType - All of the 'assignment' semantic checks return this enum to indicate whether the ...
@ Compatible
Compatible - the types are compatible according to the standard.
@ Incompatible
Incompatible - We reject this conversion outright, it is invalid to represent it in the AST.
ExprResult ActOnCXXNew(SourceLocation StartLoc, bool UseGlobal, SourceLocation PlacementLParen, MultiExprArg PlacementArgs, SourceLocation PlacementRParen, SourceRange TypeIdParens, Declarator &D, Expr *Initializer)
Parsed a C++ 'new' expression (C++ 5.3.4).
@ ACK_Conditional
A conditional (?:) operator.
ExprResult BuildCXXNoexceptExpr(SourceLocation KeyLoc, Expr *Operand, SourceLocation RParen)
bool GlobalNewDeleteDeclared
A flag to remember whether the implicit forms of operator new and delete have been declared.
ExprResult ActOnParenExpr(SourceLocation L, SourceLocation R, Expr *E)
ExprResult CheckPlaceholderExpr(Expr *E)
Check for operands with placeholder types and complain if found.
ExprResult TransformToPotentiallyEvaluated(Expr *E)
ExprResult BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType, NamedDecl *FoundDecl, CXXConstructorDecl *Constructor, MultiExprArg Exprs, bool HadMultipleCandidates, bool IsListInitialization, bool IsStdInitListInitialization, bool RequiresZeroInit, CXXConstructionKind ConstructKind, SourceRange ParenRange)
BuildCXXConstructExpr - Creates a complete call to a constructor, including handling of its default a...
bool inTemplateInstantiation() const
Determine whether we are currently performing template instantiation.
SourceManager & getSourceManager() const
QualType CXXThisTypeOverride
When non-NULL, the C++ 'this' expression is allowed despite the current context not being a non-stati...
ExprResult FixOverloadedFunctionReference(Expr *E, DeclAccessPair FoundDecl, FunctionDecl *Fn)
FixOverloadedFunctionReference - E is an expression that refers to a C++ overloaded function (possibl...
ExprResult PerformMoveOrCopyInitialization(const InitializedEntity &Entity, const NamedReturnInfo &NRInfo, Expr *Value, bool SupressSimplerImplicitMoves=false)
Perform the initialization of a potentially-movable value, which is the result of return value.
ExprResult CheckCXXBooleanCondition(Expr *CondExpr, bool IsConstexpr=false)
CheckCXXBooleanCondition - Returns true if conversion to bool is invalid.
CanThrowResult canThrow(const Stmt *E)
bool isThisOutsideMemberFunctionBody(QualType BaseType)
Determine whether the given type is the type of *this that is used outside of the body of a member fu...
ExprResult BuildPossibleImplicitMemberExpr(const CXXScopeSpec &SS, SourceLocation TemplateKWLoc, LookupResult &R, const TemplateArgumentListInfo *TemplateArgs, const Scope *S)
Builds an expression which might be an implicit member expression.
DeclContext * computeDeclContext(QualType T)
Compute the DeclContext that is associated with the given type.
QualType CheckPointerToMemberOperands(ExprResult &LHS, ExprResult &RHS, ExprValueKind &VK, SourceLocation OpLoc, bool isIndirect)
concepts::ExprRequirement * BuildExprRequirement(Expr *E, bool IsSatisfied, SourceLocation NoexceptLoc, concepts::ExprRequirement::ReturnTypeRequirement ReturnTypeRequirement)
QualType CXXCheckConditionalOperands(ExprResult &cond, ExprResult &lhs, ExprResult &rhs, ExprValueKind &VK, ExprObjectKind &OK, SourceLocation questionLoc)
Check the operands of ?: under C++ semantics.
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.
concepts::Requirement * ActOnTypeRequirement(SourceLocation TypenameKWLoc, CXXScopeSpec &SS, SourceLocation NameLoc, const IdentifierInfo *TypeName, TemplateIdAnnotation *TemplateId)
void CheckShadow(NamedDecl *D, NamedDecl *ShadowedDecl, const LookupResult &R)
Diagnose variable or built-in function shadowing.
ParsedType getInheritingConstructorName(CXXScopeSpec &SS, SourceLocation NameLoc, const IdentifierInfo &Name)
Handle the result of the special case name lookup for inheriting constructor declarations.
TypeResult ActOnTypenameType(Scope *S, SourceLocation TypenameLoc, const CXXScopeSpec &SS, const IdentifierInfo &II, SourceLocation IdLoc, ImplicitTypenameContext IsImplicitTypename=ImplicitTypenameContext::No)
Called when the parser has parsed a C++ typename specifier, e.g., "typename T::type".
bool isCompleteType(SourceLocation Loc, QualType T, CompleteTypeKind Kind=CompleteTypeKind::Default)
ExprResult BuildPseudoDestructorExpr(Expr *Base, SourceLocation OpLoc, tok::TokenKind OpKind, const CXXScopeSpec &SS, TypeSourceInfo *ScopeType, SourceLocation CCLoc, SourceLocation TildeLoc, PseudoDestructorTypeStorage DestroyedType)
RecordDecl * CXXTypeInfoDecl
The C++ "type_info" declaration, which is defined in <typeinfo>.
@ CCEK_ArrayBound
Array bound in array declarator or new-expression.
CXXConstructorDecl * LookupCopyingConstructor(CXXRecordDecl *Class, unsigned Quals)
Look up the copying constructor for the given class.
ParsedType getTypeName(const IdentifierInfo &II, SourceLocation NameLoc, Scope *S, CXXScopeSpec *SS=nullptr, bool isClassName=false, bool HasTrailingDot=false, ParsedType ObjectType=nullptr, bool IsCtorOrDtorName=false, bool WantNontrivialTypeSourceInfo=false, bool IsClassTemplateDeductionContext=true, ImplicitTypenameContext AllowImplicitTypename=ImplicitTypenameContext::No, IdentifierInfo **CorrectedII=nullptr)
If the identifier refers to a type name within this scope, return the declaration of that type.
RequiresExprBodyDecl * ActOnStartRequiresExpr(SourceLocation RequiresKWLoc, ArrayRef< ParmVarDecl * > LocalParameters, Scope *BodyScope)
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.
SmallVector< ExprWithCleanups::CleanupObject, 8 > ExprCleanupObjects
ExprCleanupObjects - This is the stack of objects requiring cleanup that are created by the current f...
void NoteDeletedFunction(FunctionDecl *FD)
Emit a note explaining that this function is deleted.
void AddKnownFunctionAttributesForReplaceableGlobalAllocationFunction(FunctionDecl *FD)
If this function is a C++ replaceable global allocation function (C++2a [basic.stc....
@ Unevaluated
The current expression and its subexpressions occur within an unevaluated operand (C++11 [expr]p7),...
QualType BuildDecltypeType(Expr *E, bool AsUnevaluated=true)
If AsUnevaluated is false, E is treated as though it were an evaluated context, such as when building...
TypeSourceInfo * GetTypeForDeclarator(Declarator &D)
GetTypeForDeclarator - Convert the type for the specified declarator to Type instances.
bool CheckCallReturnType(QualType ReturnType, SourceLocation Loc, CallExpr *CE, FunctionDecl *FD)
CheckCallReturnType - Checks that a call expression's return type is complete.
bool RequireCompleteType(SourceLocation Loc, QualType T, CompleteTypeKind Kind, TypeDiagnoser &Diagnoser)
Ensure that the type T is a complete type.
Scope * TUScope
Translation Unit Scope - useful to Objective-C actions that need to lookup file scope declarations in...
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...
ExprResult forceUnknownAnyToType(Expr *E, QualType ToType)
Force an expression with unknown-type to an expression of the given type.
bool LookupQualifiedName(LookupResult &R, DeclContext *LookupCtx, bool InUnqualifiedLookup=false)
Perform qualified name lookup into a given context.
llvm::MapVector< FieldDecl *, DeleteLocs > DeleteExprs
Delete-expressions to be analyzed at the end of translation unit.
Expr * MaybeCreateExprWithCleanups(Expr *SubExpr)
MaybeCreateExprWithCleanups - If the current full-expression requires any cleanups,...
void DiscardCleanupsInEvaluationContext()
SmallVector< ExpressionEvaluationContextRecord, 8 > ExprEvalContexts
A stack of expression evaluation contexts.
void PushDeclContext(Scope *S, DeclContext *DC)
Set the current declaration context until it gets popped.
bool isDependentScopeSpecifier(const CXXScopeSpec &SS)
bool isUnavailableAlignedAllocationFunction(const FunctionDecl &FD) const
Determine whether FD is an aligned allocation or deallocation function that is unavailable.
DiagnosticsEngine & Diags
NamespaceDecl * getStdNamespace() const
ExprResult BuildCXXThrow(SourceLocation OpLoc, Expr *Ex, bool IsThrownVarInScope)
ExprResult DefaultFunctionArrayConversion(Expr *E, bool Diagnose=true)
DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4).
ExprResult PerformCopyInitialization(const InitializedEntity &Entity, SourceLocation EqualLoc, ExprResult Init, bool TopLevelOfInitList=false, bool AllowExplicit=false)
ExprResult ActOnTypeTrait(TypeTrait Kind, SourceLocation KWLoc, ArrayRef< ParsedType > Args, SourceLocation RParenLoc)
Parsed one of the type trait support pseudo-functions.
bool CheckQualifiedFunctionForTypeId(QualType T, SourceLocation Loc)
concepts::NestedRequirement * BuildNestedRequirement(Expr *E)
FunctionDecl * FindDeallocationFunctionForDestructor(SourceLocation StartLoc, CXXRecordDecl *RD)
TemplateDeductionResult DeduceTemplateArguments(ClassTemplatePartialSpecializationDecl *Partial, ArrayRef< TemplateArgument > TemplateArgs, sema::TemplateDeductionInfo &Info)
QualType ActOnPackIndexingType(QualType Pattern, Expr *IndexExpr, SourceLocation Loc, SourceLocation EllipsisLoc)
bool isUsualDeallocationFunction(const CXXMethodDecl *FD)
ExprResult BuildArrayTypeTrait(ArrayTypeTrait ATT, SourceLocation KWLoc, TypeSourceInfo *TSInfo, Expr *DimExpr, SourceLocation RParen)
bool DiagnoseAssignmentResult(AssignConvertType ConvTy, SourceLocation Loc, QualType DstType, QualType SrcType, Expr *SrcExpr, AssignmentAction Action, bool *Complained=nullptr)
DiagnoseAssignmentResult - Emit a diagnostic, if required, for the assignment conversion type specifi...
void MarkFunctionReferenced(SourceLocation Loc, FunctionDecl *Func, bool MightBeOdrUse=true)
Mark a function referenced, and check whether it is odr-used (C++ [basic.def.odr]p2,...
bool GatherArgumentsForCall(SourceLocation CallLoc, FunctionDecl *FDecl, const FunctionProtoType *Proto, unsigned FirstParam, ArrayRef< Expr * > Args, SmallVectorImpl< Expr * > &AllArgs, VariadicCallType CallType=VariadicDoesNotApply, bool AllowExplicit=false, bool IsListInitialization=false)
GatherArgumentsForCall - Collector argument expressions for various form of call prototypes.
SemaDiagnosticBuilder targetDiag(SourceLocation Loc, unsigned DiagID, const FunctionDecl *FD=nullptr)
ExprResult CreateRecoveryExpr(SourceLocation Begin, SourceLocation End, ArrayRef< Expr * > SubExprs, QualType T=QualType())
Attempts to produce a RecoveryExpr after some AST node cannot be created.
ParsedType getConstructorName(const IdentifierInfo &II, SourceLocation NameLoc, Scope *S, CXXScopeSpec &SS, bool EnteringContext)
LazyDeclPtr StdAlignValT
The C++ "std::align_val_t" enum class, which is defined by the C++ standard library.
AssignConvertType CheckAssignmentConstraints(SourceLocation Loc, QualType LHSType, QualType RHSType)
CheckAssignmentConstraints - Perform type checking for assignment, argument passing,...
bool IsDerivedFrom(SourceLocation Loc, QualType Derived, QualType Base)
Determine whether the type Derived is a C++ class that is derived from the type Base.
@ Diagnose
Diagnose issues that are non-constant or that are extensions.
bool CheckCXXThrowOperand(SourceLocation ThrowLoc, QualType ThrowTy, Expr *E)
CheckCXXThrowOperand - Validate the operand of a throw.
TemplateDeductionResult DeduceAutoType(TypeLoc AutoTypeLoc, Expr *Initializer, QualType &Result, sema::TemplateDeductionInfo &Info, bool DependentDeduction=false, bool IgnoreConstraints=false, TemplateSpecCandidateSet *FailedTSC=nullptr)
Deduce the type for an auto type-specifier (C++11 [dcl.spec.auto]p6)
bool LookupName(LookupResult &R, Scope *S, bool AllowBuiltinCreation=false, bool ForceNoCPlusPlus=false)
Perform unqualified name lookup starting from a given scope.
static QualType GetTypeFromParser(ParsedType Ty, TypeSourceInfo **TInfo=nullptr)
concepts::Requirement * ActOnNestedRequirement(Expr *Constraint)
QualType adjustCCAndNoReturn(QualType ArgFunctionType, QualType FunctionType, bool AdjustExceptionSpec=false)
Adjust the type ArgFunctionType to match the calling convention, noreturn, and optionally the excepti...
bool IsStringLiteralToNonConstPointerConversion(Expr *From, QualType ToType)
Helper function to determine whether this is the (deprecated) C++ conversion from a string literal to...
bool CheckExceptionSpecCompatibility(Expr *From, QualType ToType)
static ConditionResult ConditionError()
IdentifierResolver IdResolver
const TypoExprState & getTypoExprState(TypoExpr *TE) const
FullExprArg MakeFullExpr(Expr *Arg)
ExprResult ActOnCXXThis(SourceLocation Loc)
ExprResult ActOnDecltypeExpression(Expr *E)
Process the expression contained within a decltype.
AllocationFunctionScope
The scope in which to find allocation functions.
@ AFS_Both
Look for allocation functions in both the global scope and in the scope of the allocated class.
@ AFS_Class
Only look for allocation functions in the scope of the allocated class.
@ AFS_Global
Only look for allocation functions in the global scope.
bool CheckCXXDefaultArgExpr(SourceLocation CallLoc, FunctionDecl *FD, ParmVarDecl *Param, Expr *Init=nullptr, bool SkipImmediateInvocations=true)
Instantiate or parse a C++ default argument expression as necessary.
ExprResult CorrectDelayedTyposInExpr(Expr *E, VarDecl *InitDecl=nullptr, bool RecoverUncorrectedTypos=false, llvm::function_ref< ExprResult(Expr *)> Filter=[](Expr *E) -> ExprResult { return E;})
Process any TypoExprs in the given Expr and its children, generating diagnostics as appropriate and r...
void CheckVirtualDtorCall(CXXDestructorDecl *dtor, SourceLocation Loc, bool IsDelete, bool CallCanBeVirtual, bool WarnOnNonAbstractTypes, SourceLocation DtorLoc)
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...
void checkCall(NamedDecl *FDecl, const FunctionProtoType *Proto, const Expr *ThisArg, ArrayRef< const Expr * > Args, bool IsMemberFunction, SourceLocation Loc, SourceRange Range, VariadicCallType CallType)
Handles the checks for format strings, non-POD arguments to vararg functions, NULL arguments passed t...
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.
A trivial tuple used to represent a source range.
SourceLocation getEnd() const
SourceLocation getBegin() const
StandardConversionSequence - represents a standard conversion sequence (C++ 13.3.3....
DeclAccessPair FoundCopyConstructor
ImplicitConversionKind Second
Second - The second conversion can be an integral promotion, floating point promotion,...
ImplicitConversionKind First
First – The first conversion can be an lvalue-to-rvalue conversion, array-to-pointer 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...
ImplicitConversionKind Third
Third - The third conversion can be a qualification conversion or a function conversion.
ImplicitConversionKind Dimension
Dimension - Between the second and third conversion a vector or matrix dimension conversion may occur...
StmtExpr - This is the GNU Statement Expression extension: ({int X=4; X;}).
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...
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?
bool isItaniumFamily() const
Does this ABI generally fall into the Itanium family of ABIs?
unsigned getNewAlign() const
Return the largest alignment for which a suitably-sized allocation with '::operator new(size_t)' is g...
const llvm::Triple & getTriple() const
Returns the target triple of the primary target.
unsigned getIntWidth() const
getIntWidth/Align - Return the size of 'signed int' and 'unsigned int' for this target,...
TargetCXXABI getCXXABI() const
Get the C++ ABI currently in use.
A template argument list.
ArrayRef< TemplateArgument > asArray() const
Produce this as an array ref.
Represents a template argument.
@ Declaration
The template argument is a declaration that was provided for a pointer, reference,...
@ Type
The template argument is a type.
Stores a list of template parameters for a TemplateDecl and its derived classes.
NamedDecl * getParam(unsigned Idx)
unsigned getDepth() const
Get the depth of this template parameter list in the set of template parameter lists.
static TemplateParameterList * Create(const ASTContext &C, SourceLocation TemplateLoc, SourceLocation LAngleLoc, ArrayRef< NamedDecl * > Params, SourceLocation RAngleLoc, Expr *RequiresClause)
static TemplateTypeParmDecl * Create(const ASTContext &C, DeclContext *DC, SourceLocation KeyLoc, SourceLocation NameLoc, unsigned D, unsigned P, IdentifierInfo *Id, bool Typename, bool ParameterPack, bool HasTypeConstraint=false, std::optional< unsigned > NumExpanded=std::nullopt)
Models the abbreviated syntax to constrain a template type parameter: template <convertible_to<string...
Expr * getImmediatelyDeclaredConstraint() const
Get the immediately-declared constraint expression introduced by this type-constraint,...
Represents a declaration of a type.
TyLocType push(QualType T)
Pushes space for a new TypeLoc of the given type.
TypeSourceInfo * getTypeSourceInfo(ASTContext &Context, QualType T)
Creates a TypeSourceInfo for the given type.
void pushTrivial(ASTContext &Context, QualType T, SourceLocation Loc)
Pushes 'T' with all locations pointing to 'Loc'.
SourceRange getSourceRange() const LLVM_READONLY
Get the full source range.
SourceLocation getBeginLoc() const
Get the begin source location.
A container of type source information.
TypeLoc getTypeLoc() const
Return the TypeLoc wrapper for the type source info.
QualType getType() const
Return the type wrapped by this type source info.
static TypeTraitExpr * Create(const ASTContext &C, QualType T, SourceLocation Loc, TypeTrait Kind, ArrayRef< TypeSourceInfo * > Args, SourceLocation RParenLoc, bool Value)
Create a new type trait expression.
The base class of the type hierarchy.
bool isSizelessType() const
As an extension, we classify types as one of "sized" or "sizeless"; every type is one or the other.
bool isStructureType() const
CXXRecordDecl * getAsCXXRecordDecl() const
Retrieves the CXXRecordDecl that this type refers to, either because the type is a RecordType or beca...
bool isBlockPointerType() const
bool isBooleanType() const
bool isLiteralType(const ASTContext &Ctx) const
Return true if this is a literal type (C++11 [basic.types]p10)
bool isIncompleteArrayType() const
bool isPlaceholderType() const
Test for a type which does not represent an actual type-system type but is instead used as a placehol...
bool isSignedIntegerType() const
Return true if this is an integer type that is signed, according to C99 6.2.5p4 [char,...
bool isIntegralOrUnscopedEnumerationType() const
Determine whether this type is an integral or unscoped enumeration type.
bool isRValueReferenceType() const
bool isFundamentalType() const
Tests whether the type is categorized as a fundamental type.
bool isVoidPointerType() const
bool isArithmeticType() const
bool isPointerType() const
bool isArrayParameterType() const
CanQualType getCanonicalTypeUnqualified() const
bool isIntegerType() const
isIntegerType() does not include complex integers (a GCC extension).
const T * castAs() const
Member-template castAs<specific type>.
bool isReferenceType() const
bool isHLSLIntangibleType() const
bool isEnumeralType() const
bool isScalarType() const
bool isInterfaceType() const
bool isVariableArrayType() const
bool isSveVLSBuiltinType() const
Determines if this is a sizeless type supported by the 'arm_sve_vector_bits' type attribute,...
bool isIntegralType(const ASTContext &Ctx) const
Determine whether this type is an integral type.
QualType getPointeeType() const
If this is a pointer, ObjC object pointer, or block pointer, this returns the respective pointee.
bool isExtVectorType() const
QualType getSveEltType(const ASTContext &Ctx) const
Returns the representative type for the element of an SVE builtin type.
bool isMemberDataPointerType() const
bool isLValueReferenceType() const
bool isBuiltinType() const
Helper methods to distinguish type categories.
bool isDependentType() const
Whether this type is a dependent type, meaning that its definition somehow depends on a template para...
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.
DeducedType * getContainedDeducedType() const
Get the DeducedType whose type will be deduced for a variable with an initializer of this type.
bool isWebAssemblyTableType() const
Returns true if this is a WebAssembly table type: either an array of reference types,...
bool isCompoundType() const
Tests whether the type is categorized as a compound type.
const Type * getBaseElementTypeUnsafe() const
Get the base element type of this type, potentially discarding type qualifiers.
bool isMemberPointerType() const
bool isAtomicType() const
bool isMatrixType() const
bool isStandardLayoutType() const
Test if this type is a standard-layout type.
bool isVariablyModifiedType() const
Whether this type is a variably-modified type (C99 6.7.5).
bool isObjCLifetimeType() const
Returns true if objects of this type have lifetime semantics under ARC.
bool isObjectType() const
Determine whether this type is an object type.
bool isPointerOrReferenceType() const
Qualifiers::ObjCLifetime getObjCARCImplicitLifetime() const
Return the implicit lifetime for this type, which must not be dependent.
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 isStructureOrClassType() const
bool isMemberFunctionPointerType() const
bool isVectorType() const
bool isRealFloatingType() const
Floating point categories.
bool isFloatingType() 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 isObjCARCImplicitlyUnretainedType() const
Determines if this type, which must satisfy isObjCLifetimeType(), is implicitly __unsafe_unretained r...
bool isNullPtrType() const
bool isRecordType() const
bool isObjCRetainableType() const
TagDecl * getAsTagDecl() const
Retrieves the TagDecl that this type refers to, either because the type is a TagType or because it is...
bool isScopedEnumeralType() const
Determine whether this type is a scoped enumeration type.
Simple class containing the result of Sema::CorrectTypo.
SourceRange getCorrectionRange() const
void WillReplaceSpecifier(bool ForceReplacement)
unsigned getEditDistance(bool Normalized=true) const
Gets the "edit distance" of the typo correction from the typo.
NestedNameSpecifier * getCorrectionSpecifier() const
Gets the NestedNameSpecifier needed to use the typo correction.
void setCorrectionDecl(NamedDecl *CDecl)
Clears the list of NamedDecls before adding the new one.
NamedDecl * getFoundDecl() const
Get the correction declaration found by name lookup (before we looked through using shadow declaratio...
TypoExpr - Internal placeholder for expressions where typo correction still needs to be performed and...
UnaryOperator - This represents the unary-expression's (except sizeof and alignof),...
Represents a C++ unqualified-id that has been parsed.
SourceLocation StartLocation
The location of the first token that describes this unqualified-id, which will be the location of the...
const IdentifierInfo * Identifier
When Kind == IK_Identifier, the parsed identifier, or when Kind == IK_UserLiteralId,...
UnqualifiedIdKind getKind() const
Determine what kind of name we have.
TemplateIdAnnotation * TemplateId
When Kind == IK_TemplateId or IK_ConstructorTemplateId, the template-id annotation that contains the ...
The iterator over UnresolvedSets.
A set of unresolved declarations.
Represent the declaration of a variable (in which case it is an lvalue) a function (in which case it ...
bool isWeak() const
Determine whether this symbol is weakly-imported, or declared with the weak or weak-ref attr.
VarDecl * getPotentiallyDecomposedVarDecl()
Represents a variable declaration or definition.
SourceRange getSourceRange() const override LLVM_READONLY
Source range that this declaration covers.
bool isUsableInConstantExpressions(const ASTContext &C) const
Determine whether this variable's value can be used in a constant expression, according to the releva...
const Expr * getAnyInitializer() const
Get the initializer for this variable, no matter which declaration it is attached to.
Represents a GCC generic vector type.
bool isTypeConstraint() const
TemplateParameterList * getTypeConstraintTemplateParameterList() const
bool isSubstitutionFailure() const
A requires-expression requirement which queries the validity and properties of an expression ('simple...
@ SS_ConstraintsNotSatisfied
@ SS_TypeRequirementSubstitutionFailure
A requires-expression requirement which is satisfied when a general constraint expression is satisfie...
A static requirement that can be used in a requires-expression to check properties of types and expre...
A requires-expression requirement which queries the existence of a type name or type template special...
ImplicitCaptureStyle ImpCaptureStyle
Capture & getCXXThisCapture()
Retrieve the capture of C++ 'this', if it has been captured.
bool isCXXThisCaptured() const
Determine whether the C++ 'this' is captured.
void addThisCapture(bool isNested, SourceLocation Loc, QualType CaptureType, bool ByCopy)
SourceLocation PotentialThisCaptureLocation
bool hasPotentialThisCapture() const
SourceRange IntroducerRange
Source range covering the lambda introducer [...].
bool lambdaCaptureShouldBeConst() const
void clearPotentialCaptures()
bool hasPotentialCaptures() const
bool isVariableExprMarkedAsNonODRUsed(Expr *CapturingVarExpr) const
CXXRecordDecl * Lambda
The class that describes the lambda.
void visitPotentialCaptures(llvm::function_ref< void(ValueDecl *, Expr *)> Callback) const
unsigned NumExplicitCaptures
The number of captures in the Captures list that are explicit captures.
bool AfterParameterList
Indicate that we parsed the parameter list at which point the mutability of the lambda is known.
CXXMethodDecl * CallOperator
The lambda's compiler-generated operator().
Provides information about an attempted template argument deduction, whose success or failure was des...
Defines the clang::TargetInfo interface.
SmallVector< BoundNodes, 1 > match(MatcherT Matcher, const NodeT &Node, ASTContext &Context)
Returns the results of matching Matcher on Node.
bool NE(InterpState &S, CodePtr OpPC)
TokenKind
Provides a simple uniform namespace for tokens from all C languages.
The JSON file list parser is used to communicate input to InstallAPI.
bool isLambdaCallWithImplicitObjectParameter(const DeclContext *DC)
OverloadedOperatorKind
Enumeration specifying the different kinds of C++ overloaded operators.
ArrayTypeTrait
Names for the array type traits.
unsigned getTypeTraitArity(TypeTrait T) LLVM_READONLY
Return the arity of the type trait T.
if(T->getSizeExpr()) TRY_TO(TraverseStmt(const_cast< Expr * >(T -> getSizeExpr())))
@ 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.
CanThrowResult
Possible results from evaluation of a noexcept expression.
DeclContext * getLambdaAwareParentOfDeclContext(DeclContext *DC)
std::optional< unsigned > getStackIndexOfNearestEnclosingCaptureCapableLambda(ArrayRef< const sema::FunctionScopeInfo * > FunctionScopes, ValueDecl *VarToCapture, Sema &S)
Examines the FunctionScopeInfo stack to determine the nearest enclosing lambda (to the current lambda...
bool isReservedInAllContexts(ReservedIdentifierStatus Status)
Determine whether an identifier is reserved in all contexts.
bool isUnresolvedExceptionSpec(ExceptionSpecificationType ESpecType)
@ RQ_None
No ref-qualifier was provided.
@ RQ_LValue
An lvalue ref-qualifier was provided (&).
@ RQ_RValue
An rvalue ref-qualifier was provided (&&).
@ OCD_AmbiguousCandidates
Requests that only tied-for-best candidates be shown.
@ OCD_AllCandidates
Requests that all candidates be shown.
ExprObjectKind
A further classification of the kind of object referenced by an l-value or x-value.
@ OK_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.
@ OK_BitField
A bitfield object is a bitfield on a C or C++ record.
@ LCK_StarThis
Capturing the *this object by copy.
@ Bind
'bind' clause, allowed on routine constructs.
@ Self
'self' clause, allowed on Compute and Combined Constructs, plus 'update'.
@ IK_TemplateId
A template-id, e.g., f<int>.
@ IK_LiteralOperatorId
A user-defined literal name, e.g., operator "" _i.
@ IK_Identifier
An identifier.
bool isLambdaCallWithExplicitObjectParameter(const DeclContext *DC)
bool isLambdaCallOperator(const CXXMethodDecl *MD)
@ Result
The result type of a method or function.
@ 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])
llvm::VersionTuple alignedAllocMinVersion(llvm::Triple::OSType OS)
@ NotStartsWithUnderscore
ActionResult< Expr * > ExprResult
@ Class
The "class" keyword.
LangAS
Defines the address space values used by the address space qualifier of QualType.
CastKind
CastKind - The kind of operation required for a conversion.
bool isPtrSizeAddressSpace(LangAS AS)
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_LValue
An l-value expression is a reference to an object with independent storage.
const char * getTraitSpelling(ExpressionTrait T) LLVM_READONLY
Return the spelling of the type trait TT. Never null.
OpaquePtr< QualType > ParsedType
An opaque type for threading parsed type information through the parser.
const FunctionProtoType * T
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.
@ Success
Template argument deduction was successful.
@ AlreadyDiagnosed
Some error which was already diagnosed.
@ Generic
not a target-specific vector type
@ None
No keyword precedes the qualified type name.
@ Class
The "class" keyword introduces the elaborated-type-specifier.
@ Typename
The "typename" keyword precedes the qualified type name, e.g., typename T::type.
@ Other
Other implicit parameter.
TypeTrait
Names for traits that operate specifically on types.
CXXNewInitializationStyle
@ Parens
New-expression has a C++98 paren-delimited initializer.
@ None
New-expression has no initializer as written.
@ Braces
New-expression has a C++11 list-initializer.
@ EST_BasicNoexcept
noexcept
@ EST_Dynamic
throw(T1, T2)
CheckedConversionKind
The kind of conversion being performed.
@ CStyleCast
A C-style cast.
@ ForBuiltinOverloadedOp
A conversion for an operand of a builtin overloaded operator.
@ FunctionalCast
A functional-style cast.
bool isGenericLambdaCallOperatorSpecialization(const CXXMethodDecl *MD)
MutableArrayRef< Expr * > MultiExprArg
The result of a constraint satisfaction check, containing the necessary information to diagnose an un...
static ASTConstraintSatisfaction * Rebuild(const ASTContext &C, const ASTConstraintSatisfaction &Satisfaction)
DeclarationNameInfo - A collector data type for bundling together a DeclarationName and the correspon...
DeclarationName getName() const
getName - Returns the embedded declaration name.
unsigned hasStatic
True if this dimension included the 'static' keyword.
Expr * NumElts
This is the size of the array, or null if [] or [*] was specified.
One instance of this struct is used for each type in a declarator that is parsed.
SourceLocation Loc
Loc - The place where this type was defined.
ExceptionSpecificationType Type
The kind of exception specification this is.
ArrayRef< QualType > Exceptions
Explicitly-specified list of exception types.
Extra information about a function prototype.
ExceptionSpecInfo ExceptionSpec
FunctionType::ExtInfo ExtInfo
Parts of a decomposed MSGuidDecl.
OverloadCandidate - A single candidate in an overload set (C++ 13.3).
ReferenceConversions
The conversions that would be performed on an lvalue of type T2 when binding a reference of type T1 t...
Information about a template-id annotation token.
const IdentifierInfo * Name
FIXME: Temporarily stores the name of a specialization.
unsigned NumArgs
NumArgs - The number of template arguments.
SourceLocation TemplateNameLoc
TemplateNameLoc - The location of the template name within the source.
ParsedTemplateArgument * getTemplateArgs()
Retrieves a pointer to the template arguments.
SourceLocation RAngleLoc
The location of the '>' after the template argument list.
SourceLocation LAngleLoc
The location of the '<' before the template argument list.
SourceLocation TemplateKWLoc
TemplateKWLoc - The location of the template keyword.
ParsedTemplateTy Template
The declaration of the template corresponding to the template-name.
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...